[Epic-ID: ODUHIGH-405][Task-ID: ODUHIGH-423]Filled ReconfigurationWithSync IE,
[o-du/l2.git] / src / du_app / du_cfg.c
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2017-2019] [Radisys]                                        #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17  *******************************************************************************/
18
19 /* This file contains all utility functions */
20 #include "common_def.h"
21 #include "legtp.h"
22 #include "lrg.h"
23 #include "lkw.x"
24 #include "lrg.x"
25 #include "du_app_mac_inf.h"
26 #include "du_app_rlc_inf.h"
27 #include "du_cfg.h"
28 #include "du_mgr.h"
29 #include "du_utils.h"
30 #include "du_f1ap_conversions.h"
31 #include "OCTET_STRING.h"
32 #include "BIT_STRING.h"
33 #include "odu_common_codec.h"
34 #include "MIB.h"
35 #include "SearchSpace.h"
36 #include "SIB-TypeInfo.h"
37 #include "SchedulingInfo.h"
38 #include "SI-SchedulingInfo.h"
39 #include "ConnEstFailureControl.h"
40 #include "PLMN-IdentityInfo.h"
41 #include "PDSCH-TimeDomainResourceAllocation.h"
42 #include "BCCH-Config.h"
43 #include "PagingCycle.h"
44 #include "PCCH-Config.h"
45 #include "TimeAlignmentTimer.h"
46 #include "RACH-ConfigGeneric.h"
47 #include "PUSCH-TimeDomainResourceAllocation.h"
48 #include "PUCCH-ConfigCommon.h"
49 #include "SubcarrierSpacing.h"
50 #include "TDD-UL-DL-Pattern.h"
51 #include "RACH-ConfigCommon.h"
52 #include "BWP-DownlinkCommon.h"
53 #include "BWP-UplinkCommon.h"
54 #include "TDD-UL-DL-ConfigCommon.h"
55 #include "du_sys_info_hdl.h"
56
57 #ifdef O1_ENABLE
58 #include "CmInterface.h"
59 extern StartupConfig g_cfg;
60 extern NRCellDU cellParams;
61 #endif
62
63 char encBuf[ENC_BUF_MAX_LEN];
64
65
66 /* Filling Slot configuration as :
67  * Slot Sym 0 Sym 1 Sym 2 Sym 3 Sym 4 Sym 5 Sym 6 Sym 7 Sym 8 Sym 9 Sym10 Sym11 Sym12 Sym13
68  *   0   DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL
69  *   1   DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL
70  *   2   DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL
71      3   DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL
72      4   DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL
73      5   DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL
74      6   DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL
75      7   DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    DL    F     UL
76      8   UL    UL    UL    UL    UL    UL    UL    UL    UL    UL    UL    UL    UL    UL
77      9   UL    UL    UL    UL    UL    UL    UL    UL    UL    UL    UL    UL    UL    UL  
78  */
79
80 #ifdef NR_TDD
81 /*******************************************************************
82  *
83  * @brief Fills the Slot configuration 
84  *
85  * @details
86  *
87  *    Function : FillSlotConfig
88  *
89  *    Functionality:Fill the Slot configuration values
90  * 
91  *  @params[in] void
92  * @return ROK     - success
93  *         RFAILED - failure
94  *
95  * ****************************************************************/
96 void FillSlotConfig()
97 {
98    uint8_t slot = 0;
99    uint8_t symbol =0;
100    
101    memset(duCfgParam.macCellCfg.tddCfg.slotCfg, 0, sizeof(duCfgParam.macCellCfg.tddCfg.slotCfg[slot][symbol]* \
102                            MAX_TDD_PERIODICITY_SLOTS*MAX_SYMB_PER_SLOT));
103    
104    //Filling the DL Slots and initializing flexi slot
105    for(slot = 0; slot <= NUM_DL_SLOTS; slot++)
106    {
107       for(symbol =0; symbol < MAX_SYMB_PER_SLOT; symbol++)
108       {
109          duCfgParam.macCellCfg.tddCfg.slotCfg[slot][symbol] = DL_SLOT;
110       }
111    }
112   
113    //Filling UL Slots
114    for(slot = NUM_DL_SLOTS+1; slot <= NUM_DL_SLOTS+NUM_UL_SLOTS; slot++)
115    {
116       for(symbol = 0; symbol < MAX_SYMB_PER_SLOT; symbol++)
117          duCfgParam.macCellCfg.tddCfg.slotCfg[slot][symbol] = UL_SLOT;
118    } 
119    //Updating Flexi Slot
120    slot = NUM_DL_SLOTS;
121    duCfgParam.macCellCfg.tddCfg.slotCfg[slot][12] = FLEXI_SLOT;
122    duCfgParam.macCellCfg.tddCfg.slotCfg[slot][13] = UL_SLOT;
123
124 }
125 #endif
126
127 /*******************************************************************
128  * @brief Reads the CL Configuration.
129  *
130  * @details
131  *
132  *    Function : readMacCfg
133  *
134  *    Functionality:
135  *       - Fills up the cell configuration for CL.
136  *       - Calls FillSlotConfig()  
137  *
138  * @params[in] void
139  * @return ROK     - success
140  *         RFAILED - failure
141  *
142  * ****************************************************************/
143
144 uint8_t readMacCfg()
145 {
146    uint8_t idx=0, sliceIdx=0;
147    F1TaiSliceSuppLst *taiSliceSuppLst;
148
149    duCfgParam.macCellCfg.carrierId = CARRIER_IDX;
150
151    /* Cell configuration */
152    duCfgParam.macCellCfg.numerology = NR_NUMEROLOGY;
153    duCfgParam.macCellCfg.dupType = DUPLEX_MODE;
154
155    /* DL carrier configuration */
156    duCfgParam.macCellCfg.dlCarrCfg.pres = TRUE;
157 #ifdef O1_ENABLE
158    duCfgParam.macCellCfg.cellId = cellParams.cellLocalId;
159    duCfgParam.macCellCfg.phyCellId = cellParams.nRPCI;
160    duCfgParam.macCellCfg.dlCarrCfg.bw = cellParams.bSChannelBwUL;
161    duCfgParam.macCellCfg.dlCarrCfg.freq = cellParams.bSChannelBwDL;
162 #else
163    duCfgParam.macCellCfg.cellId = NR_CELL_ID;
164    duCfgParam.macCellCfg.phyCellId = NR_PCI;
165    duCfgParam.macCellCfg.dlCarrCfg.bw = NR_BANDWIDTH;
166    duCfgParam.macCellCfg.dlCarrCfg.freq = NR_DL_ARFCN;
167 #endif
168    
169    duCfgParam.macCellCfg.dlCarrCfg.k0[0] = 1;
170    duCfgParam.macCellCfg.dlCarrCfg.k0[1] = 1;
171    duCfgParam.macCellCfg.dlCarrCfg.k0[2] = 1;
172    duCfgParam.macCellCfg.dlCarrCfg.k0[3] = 1;
173    duCfgParam.macCellCfg.dlCarrCfg.k0[4] = 1;
174    duCfgParam.macCellCfg.dlCarrCfg.gridSize[0] = 273;
175    duCfgParam.macCellCfg.dlCarrCfg.gridSize[1] = 1;
176    duCfgParam.macCellCfg.dlCarrCfg.gridSize[2] = 1;
177    duCfgParam.macCellCfg.dlCarrCfg.gridSize[3] = 1;
178    duCfgParam.macCellCfg.dlCarrCfg.gridSize[4] = 1;
179    duCfgParam.macCellCfg.dlCarrCfg.numAnt = NUM_TX_ANT;
180
181    /* UL Carrier configuration */
182    duCfgParam.macCellCfg.ulCarrCfg.pres = TRUE;
183 #ifdef O1_ENABLE
184    duCfgParam.macCellCfg.ulCarrCfg.bw = cellParams.bSChannelBwUL;
185    duCfgParam.macCellCfg.ulCarrCfg.freq = cellParams.bSChannelBwDL;
186 #else   
187    duCfgParam.macCellCfg.ulCarrCfg.bw = NR_BANDWIDTH;
188    duCfgParam.macCellCfg.ulCarrCfg.freq =  NR_UL_ARFCN;
189 #endif   
190    duCfgParam.macCellCfg.ulCarrCfg.k0[0] = 1;
191    duCfgParam.macCellCfg.ulCarrCfg.k0[1] = 1;
192    duCfgParam.macCellCfg.ulCarrCfg.k0[2] = 1;
193    duCfgParam.macCellCfg.ulCarrCfg.k0[3] = 1;
194    duCfgParam.macCellCfg.ulCarrCfg.k0[4] = 1;
195    duCfgParam.macCellCfg.ulCarrCfg.gridSize[0] = 1;
196    duCfgParam.macCellCfg.ulCarrCfg.gridSize[1] = 1;
197    duCfgParam.macCellCfg.ulCarrCfg.gridSize[2] = 1;
198    duCfgParam.macCellCfg.ulCarrCfg.gridSize[3] = 1;
199    duCfgParam.macCellCfg.ulCarrCfg.gridSize[4] = 1;
200    duCfgParam.macCellCfg.ulCarrCfg.numAnt = NUM_RX_ANT;
201
202    duCfgParam.macCellCfg.freqShft = FREQ_SHIFT_7P5KHZ;
203
204    /* SSB configuration */
205    duCfgParam.macCellCfg.ssbCfg.ssbPbchPwr = SSB_PBCH_PWR;
206    duCfgParam.macCellCfg.ssbCfg.bchPayloadFlag = BCH_PAYLOAD;
207    duCfgParam.macCellCfg.ssbCfg.ssbOffsetPointA = OFFSET_TO_POINT_A;
208    duCfgParam.macCellCfg.ssbCfg.betaPss = BETA_PSS;
209 #ifdef O1_ENABLE
210    duCfgParam.macCellCfg.ssbCfg.scsCmn = convertScsValToScsEnum(cellParams.ssbSubCarrierSpacing);
211    duCfgParam.macCellCfg.ssbCfg.ssbPeriod = convertScsPeriodicityToEnum(cellParams.ssbPeriodicity);
212    duCfgParam.macCellCfg.ssbCfg.ssbScOffset = cellParams.ssbOffset;
213 #else
214    duCfgParam.macCellCfg.ssbCfg.scsCmn = NR_SCS;
215    duCfgParam.macCellCfg.ssbCfg.ssbPeriod = SSB_PRDCTY_MS_20;
216    duCfgParam.macCellCfg.ssbCfg.ssbScOffset = SSB_SUBCARRIER_OFFSET;
217 #endif
218    duCfgParam.macCellCfg.ssbCfg.ssbMask[0] = 1; /* only one SSB is transmitted */
219    if(BuildMibPdu() != ROK)
220    {
221       DU_LOG("\nERROR  -->  Failed to build MIB PDU");
222       memset(&duCfgParam.macCellCfg.ssbCfg.mibPdu, 0, 3*sizeof(uint8_t));
223    }
224    else
225    {
226       memcpy(&duCfgParam.macCellCfg.ssbCfg.mibPdu, encBuf,encBufSize);
227    }
228    duCfgParam.macCellCfg.ssbCfg.multCarrBand = SSB_MULT_CARRIER_BAND;
229    duCfgParam.macCellCfg.ssbCfg.multCellCarr = MULT_CELL_CARRIER;
230
231    /* PRACH configuration */
232    duCfgParam.macCellCfg.prachCfg.pres = TRUE;
233    duCfgParam.macCellCfg.prachCfg.prachCfgIdx = PRACH_CONFIG_IDX;
234    duCfgParam.macCellCfg.prachCfg.prachSeqLen = PRACH_SEQ_LEN;
235    duCfgParam.macCellCfg.prachCfg.prachSubcSpacing = convertScsEnumValToScsVal(PRACH_SUBCARRIER_SPACING);
236    duCfgParam.macCellCfg.prachCfg.prachRstSetCfg = PRACH_RESTRICTED_SET_CFG;
237    duCfgParam.macCellCfg.prachCfg.msg1Fdm = NUM_PRACH_FDM;
238    duCfgParam.macCellCfg.prachCfg.msg1FreqStart = PRACH_FREQ_START;
239    duCfgParam.macCellCfg.prachCfg.rootSeqLen    = ROOT_SEQ_LEN;
240    duCfgParam.macCellCfg.prachCfg.fdm[0].rootSeqIdx = ROOT_SEQ_IDX;
241    duCfgParam.macCellCfg.prachCfg.fdm[0].numRootSeq = NUM_ROOT_SEQ;
242    duCfgParam.macCellCfg.prachCfg.fdm[0].k1 = 0;
243    duCfgParam.macCellCfg.prachCfg.fdm[0].zeroCorrZoneCfg = ZERO_CORRELATION_ZONE_CFG;
244    duCfgParam.macCellCfg.prachCfg.fdm[0].numUnusedRootSeq = NUM_UNUSED_ROOT_SEQ;
245    if(duCfgParam.macCellCfg.prachCfg.fdm[0].numUnusedRootSeq != 0)
246    {
247         DU_ALLOC_SHRABL_BUF(duCfgParam.macCellCfg.prachCfg.fdm[0].unsuedRootSeq, 
248         NUM_UNUSED_ROOT_SEQ * sizeof(uint8_t));
249         if(duCfgParam.macCellCfg.prachCfg.fdm[0].unsuedRootSeq == NULLP)
250         {
251             DU_LOG("\nERROR  -->  DU_APP : Memory allocation failed at readMacCfg");
252             return RFAILED;
253         }
254         *(duCfgParam.macCellCfg.prachCfg.fdm[0].unsuedRootSeq) = UNUSED_ROOT_SEQ;
255     }
256
257    duCfgParam.macCellCfg.prachCfg.totalNumRaPreamble = NUM_RA_PREAMBLE;
258    duCfgParam.macCellCfg.prachCfg.ssbPerRach = SSB_PER_RACH;
259    duCfgParam.macCellCfg.prachCfg.numCbPreamblePerSsb = CB_PREAMBLE_PER_SSB;
260    duCfgParam.macCellCfg.prachCfg.prachMultCarrBand = PRACH_MULT_CARRIER_BAND;
261    duCfgParam.macCellCfg.prachCfg.raContResTmr = RA_CONT_RES_TIMER;
262    duCfgParam.macCellCfg.prachCfg.rsrpThreshSsb = RSRP_THRESHOLD_SSB;
263    duCfgParam.macCellCfg.prachCfg.raRspWindow = RA_RSP_WINDOW;
264    duCfgParam.macCellCfg.prachCfg.prachRestrictedSet = PRACH_RESTRICTED_SET;
265 #ifdef NR_TDD   
266    /* TDD configuration */
267    duCfgParam.macCellCfg.tddCfg.pres = TRUE;
268    duCfgParam.macCellCfg.tddCfg.tddPeriod = TDD_PERIODICITY;
269
270    FillSlotConfig();
271
272 #endif
273    /* RSSI Measurement configuration */
274    duCfgParam.macCellCfg.rssiUnit = RSS_MEASUREMENT_UNIT;
275
276    /* fill SIB1 configuration */
277    duCfgParam.macCellCfg.sib1Cfg.sib1PduLen = duCfgParam.srvdCellLst[0].duSysInfo.sib1Len;
278    DU_ALLOC_SHRABL_BUF(duCfgParam.macCellCfg.sib1Cfg.sib1Pdu,duCfgParam.srvdCellLst[0].duSysInfo.sib1Len);
279    memcpy(duCfgParam.macCellCfg.sib1Cfg.sib1Pdu, duCfgParam.srvdCellLst[0].duSysInfo.sib1Msg, \
280          duCfgParam.srvdCellLst[0].duSysInfo.sib1Len);
281    duCfgParam.macCellCfg.sib1Cfg.sib1RepetitionPeriod = SIB1_REPETITION_PERIOD;
282    duCfgParam.macCellCfg.sib1Cfg.coresetZeroIndex = CORESET_0_INDEX;
283    duCfgParam.macCellCfg.sib1Cfg.searchSpaceZeroIndex = SEARCHSPACE_0_INDEX;
284    duCfgParam.macCellCfg.sib1Cfg.sib1Mcs = DEFAULT_MCS;
285   
286    duCfgParam.macCellCfg.sib1Cfg.pagingCfg.numPO = duCfgParam.sib1Params.srvCellCfgCommSib.dlCfg.pcchCfg.ns;
287    if((duCfgParam.sib1Params.srvCellCfgCommSib.dlCfg.pcchCfg.firstPDCCHMontioringType != \
288              PCCH_Config__firstPDCCH_MonitoringOccasionOfPO_PR_NOTHING) && (duCfgParam.macCellCfg.sib1Cfg.pagingCfg.numPO != 0))
289    {
290       duCfgParam.macCellCfg.sib1Cfg.pagingCfg.poPresent = TRUE;
291       memcpy(duCfgParam.macCellCfg.sib1Cfg.pagingCfg.pagingOcc, 
292               duCfgParam.sib1Params.srvCellCfgCommSib.dlCfg.pcchCfg.firstPDCCHMontioringInfo,MAX_PO_PER_PF);
293    }
294    else
295    {
296       duCfgParam.macCellCfg.sib1Cfg.pagingCfg.poPresent = FALSE;
297    }
298
299    /* fill Intial DL BWP */
300    duCfgParam.macCellCfg.initialDlBwp.bwp.firstPrb = 0;
301    duCfgParam.macCellCfg.initialDlBwp.bwp.numPrb = TOTAL_PRB_20MHZ_MU0; /* configured to total BW */
302    duCfgParam.macCellCfg.initialDlBwp.bwp.scs = duCfgParam.macCellCfg.ssbCfg.scsCmn;
303    duCfgParam.macCellCfg.initialDlBwp.bwp.cyclicPrefix = NORMAL_CYCLIC_PREFIX;
304    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.searchSpaceId = SEARCHSPACE_1_INDEX;
305    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.coresetId = CORESET_0_INDEX;
306    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.monitoringSlot =
307       SS_MONITORING_SLOT_SL1; /* sl1 - all slots */
308    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.duration = 0;
309    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.monitoringSymbol =
310       SS_MONITORING_SYMBOL;
311    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.
312       candidate.aggLevel1       = 8;
313    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.
314       candidate.aggLevel2       = 4;
315    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.
316       candidate.aggLevel4       = 2;
317    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.
318       candidate.aggLevel8       = 1;
319    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.
320       candidate.aggLevel16      = 0;
321
322    duCfgParam.macCellCfg.initialDlBwp.pdschCommon.numTimeDomAlloc = NUM_TIME_DOM_RSRC_ALLOC;
323    idx = 0;
324    duCfgParam.macCellCfg.initialDlBwp.pdschCommon.timeDomRsrcAllocList[idx].k0 = PDSCH_K0_CFG1;
325    duCfgParam.macCellCfg.initialDlBwp.pdschCommon.timeDomRsrcAllocList[idx].mappingType = 
326       PDSCH_MAPPING_TYPE_A;
327    duCfgParam.macCellCfg.initialDlBwp.pdschCommon.timeDomRsrcAllocList[idx].startSymbol = 
328       PDSCH_START_SYMBOL;
329    duCfgParam.macCellCfg.initialDlBwp.pdschCommon.timeDomRsrcAllocList[idx].lengthSymbol =
330       PDSCH_LENGTH_SYMBOL;
331  
332    idx++;
333    duCfgParam.macCellCfg.initialDlBwp.pdschCommon.timeDomRsrcAllocList[idx].k0 = PDSCH_K0_CFG2;
334    duCfgParam.macCellCfg.initialDlBwp.pdschCommon.timeDomRsrcAllocList[idx].mappingType = 
335       PDSCH_MAPPING_TYPE_A;
336    duCfgParam.macCellCfg.initialDlBwp.pdschCommon.timeDomRsrcAllocList[idx].startSymbol = 
337       PDSCH_START_SYMBOL;
338    duCfgParam.macCellCfg.initialDlBwp.pdschCommon.timeDomRsrcAllocList[idx].lengthSymbol =
339       PDSCH_LENGTH_SYMBOL;
340
341    /* ra-searchSpace ID is set to 1 */
342    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.raSearchSpaceId = SEARCHSPACE_1_INDEX;
343
344    /* fill Intial UL BWP */
345    duCfgParam.macCellCfg.initialUlBwp.bwp.firstPrb = 0;
346    duCfgParam.macCellCfg.initialUlBwp.bwp.numPrb = TOTAL_PRB_20MHZ_MU0; /* configured to total BW */
347    duCfgParam.macCellCfg.initialUlBwp.bwp.scs = duCfgParam.macCellCfg.ssbCfg.scsCmn;
348    duCfgParam.macCellCfg.initialUlBwp.bwp.cyclicPrefix = NORMAL_CYCLIC_PREFIX;
349    duCfgParam.macCellCfg.initialUlBwp.puschCommon.numTimeDomRsrcAlloc = 2;
350    duCfgParam.macCellCfg.initialUlBwp.puschCommon.timeDomRsrcAllocList[0].k2 = PUSCH_K2_CFG1;
351    duCfgParam.macCellCfg.initialUlBwp.puschCommon.timeDomRsrcAllocList[0].mappingType = 
352       PUSCH_MAPPING_TYPE_A;
353    duCfgParam.macCellCfg.initialUlBwp.puschCommon.timeDomRsrcAllocList[0].startSymbol = 
354       PUSCH_START_SYMBOL;
355    duCfgParam.macCellCfg.initialUlBwp.puschCommon.timeDomRsrcAllocList[0].symbolLength =
356       PUSCH_LENGTH_SYMBOL;
357
358    duCfgParam.macCellCfg.initialUlBwp.puschCommon.timeDomRsrcAllocList[1].k2 = PUSCH_K2_CFG2;
359    duCfgParam.macCellCfg.initialUlBwp.puschCommon.timeDomRsrcAllocList[1].mappingType = 
360       PUSCH_MAPPING_TYPE_A;
361    duCfgParam.macCellCfg.initialUlBwp.puschCommon.timeDomRsrcAllocList[1].startSymbol = 
362       PUSCH_START_SYMBOL;
363    duCfgParam.macCellCfg.initialUlBwp.puschCommon.timeDomRsrcAllocList[1].symbolLength =
364       PUSCH_LENGTH_SYMBOL;
365
366    duCfgParam.macCellCfg.dmrsTypeAPos = DMRS_TYPE_A_POS; 
367
368    /* fill PUCCH config common */
369    duCfgParam.macCellCfg.initialUlBwp.pucchCommon.pucchResourceCommon = PUCCH_RSRC_COMMON;
370    duCfgParam.macCellCfg.initialUlBwp.pucchCommon.pucchGroupHopping = PUCCH_GROUP_HOPPING;
371    
372    /* Plmn And SNSSAI Configuration */
373    memcpy(&duCfgParam.macCellCfg.plmnInfoList.plmn, &duCfgParam.srvdCellLst[0].duCellInfo.cellInfo.srvdPlmn[0].plmn,\
374    sizeof(Plmn));
375    taiSliceSuppLst = &duCfgParam.srvdCellLst[0].duCellInfo.cellInfo.srvdPlmn[0].taiSliceSuppLst;
376    duCfgParam.macCellCfg.plmnInfoList.numSupportedSlice = taiSliceSuppLst->numSupportedSlices;
377    if(taiSliceSuppLst->snssai)
378    {
379       DU_ALLOC_SHRABL_BUF(duCfgParam.macCellCfg.plmnInfoList.snssai, (duCfgParam.macCellCfg.plmnInfoList.numSupportedSlice) * sizeof(Snssai*));
380       if(duCfgParam.macCellCfg.plmnInfoList.snssai == NULLP)
381       {
382          DU_LOG("\nERROR  --> DU_APP: Memory allocation failed at readMacCfg");
383          return RFAILED;
384       }
385    }
386    for(sliceIdx=0; sliceIdx<taiSliceSuppLst->numSupportedSlices; sliceIdx++)
387    {
388       if(taiSliceSuppLst->snssai[sliceIdx] != NULLP)
389       {
390          DU_ALLOC_SHRABL_BUF(duCfgParam.macCellCfg.plmnInfoList.snssai[sliceIdx], sizeof(Snssai));
391          if(duCfgParam.macCellCfg.plmnInfoList.snssai[sliceIdx] == NULLP)
392          {
393             DU_LOG("\nERROR  --> DU_APP: Memory allocation failed at readMacCfg");
394             return RFAILED;
395          }
396          memcpy(duCfgParam.macCellCfg.plmnInfoList.snssai[sliceIdx], taiSliceSuppLst->snssai[sliceIdx], sizeof(Snssai));
397       }
398    }
399
400 #ifndef O1_ENABLE
401
402    /*Note: Static Configuration, when O1 is not configuring the RRM policy*/
403    RrmPolicyList rrmPolicy;
404    rrmPolicy.id[0] = 1;
405    rrmPolicy.resourceType = PRB;
406    rrmPolicy.rRMMemberNum = 1;
407    memcpy(rrmPolicy.rRMPolicyMemberList[0].mcc,duCfgParam.macCellCfg.plmnInfoList.plmn.mcc, 3*sizeof(uint8_t));
408    memcpy(rrmPolicy.rRMPolicyMemberList[0].mnc,duCfgParam.macCellCfg.plmnInfoList.plmn.mnc, 3*sizeof(uint8_t));
409    rrmPolicy.rRMPolicyMemberList[0].sst = 1;
410    rrmPolicy.rRMPolicyMemberList[0].sd[0] = 2;
411    rrmPolicy.rRMPolicyMemberList[0].sd[1] = 3;
412    rrmPolicy.rRMPolicyMemberList[0].sd[2] = 4;
413    rrmPolicy.rRMPolicyMaxRatio = 90;
414    rrmPolicy.rRMPolicyMinRatio = 30;
415    rrmPolicy.rRMPolicyDedicatedRatio = 10;
416
417    cpyRrmPolicyInDuCfgParams(&rrmPolicy, 1, &duCfgParam.tempSliceCfg);
418   
419 #endif
420    return ROK;
421 }
422
423 /*******************************************************************
424  *
425  * @brief Configures the DU Parameters
426  *
427  * @details
428  *
429  *    Function : fillDuPort
430  *
431  *    Functionality:
432  *       - fills the DU Ports.  
433  *
434  * @params[in] duPort array to be filled
435  * @return ROK     - success
436  *         RFAILED - failure
437  *
438  * ****************************************************************/
439 uint8_t fillDuPort(uint16_t *duPort)
440 {
441
442 #ifdef O1_ENABLE
443    duPort[F1_INTERFACE]   = g_cfg.DU_Port;
444    duPort[E2_INTERFACE]   = g_cfg.RIC_Port;
445 #else
446    duPort[F1_INTERFACE]   = DU_PORT;     /* DU Port idx  0 38472 */
447    duPort[E2_INTERFACE]   = RIC_PORT;    /* RIC Port idx 1 38482 */
448 #endif
449    return ROK;
450 }
451
452 /*******************************************************************
453  *
454  * @brief Configures the DU Parameters
455  *
456  * @details
457  *
458  *    Function : calcSliv
459  *
460  *    Functionality:
461  *       - calculate SLIV value from start and length field
462  *
463  * @params[in] start symbol
464  * @params[in] length of symbols
465  * @return SLIV value
466  *
467  * ****************************************************************/
468 uint16_t calcSliv(uint8_t startSymbol, uint8_t lengthSymbol)
469 {
470    uint16_t sliv = 0;
471    if((lengthSymbol-1) <= 7)
472    {
473       sliv = NUM_SYMBOLS_PER_SLOT * (lengthSymbol-1) + startSymbol;
474    }
475    else
476    {
477       sliv = NUM_SYMBOLS_PER_SLOT * (NUM_SYMBOLS_PER_SLOT - lengthSymbol + 1) \
478              + (NUM_SYMBOLS_PER_SLOT - 1 - startSymbol);
479    }
480    return sliv;
481 }
482
483
484 /*******************************************************************
485  *
486  * @brief Configures serving cell config common in sib1
487  *
488  * @details
489  *
490  *    Function : fillServCellCfgCommSib
491  *
492  *    Functionality:
493  *       - fills Serving cell config common for SIB1
494  *
495  * @params[in] SrvCellCfgCommSib pointer
496  * @return ROK     - success
497  *         RFAILED - failure
498  * 
499  ** ****************************************************************/
500 uint8_t fillServCellCfgCommSib(SrvCellCfgCommSib *srvCellCfgComm)
501 {
502    PdcchCfgCommon   pdcchCfg;
503    PdschCfgCommon   pdschCfg;
504    PcchCfg          pcchCfg;
505    RachCfgCommon    rachCfg;
506    PuschCfgCommon   puschCfg;
507    PucchCfgCommon   pucchCfg;
508    TddUlDlCfgCommon   tddCfg;
509
510 #ifdef O1_ENABLE
511    srvCellCfgComm->scs = convertScsValToScsEnum(cellParams.ssbSubCarrierSpacing);
512 #else
513    srvCellCfgComm->scs = NR_SCS;
514 #endif
515
516    /* Configuring DL Config Common for SIB1*/
517    srvCellCfgComm->dlCfg.freqBandInd = NR_FREQ_BAND; 
518    srvCellCfgComm->dlCfg.offsetToPointA = OFFSET_TO_POINT_A;
519 #ifdef O1_ENABLE
520    srvCellCfgComm->dlCfg.dlScsCarrier.scsOffset =  cellParams.ssbOffset;
521    srvCellCfgComm->dlCfg.dlScsCarrier.scs = convertScsValToScsEnum(cellParams.ssbSubCarrierSpacing);
522    srvCellCfgComm->dlCfg.dlScsCarrier.scsBw =  cellParams.bSChannelBwUL;
523 #else
524    srvCellCfgComm->dlCfg.dlScsCarrier.scsOffset = SSB_SUBCARRIER_OFFSET;
525    srvCellCfgComm->dlCfg.dlScsCarrier.scs = NR_SCS;
526    srvCellCfgComm->dlCfg.dlScsCarrier.scsBw = NR_BANDWIDTH;
527 #endif   
528    srvCellCfgComm->dlCfg.locAndBw = FREQ_LOC_BW;
529
530    /* Configuring PDCCH Config Common For SIB1 */
531    pdcchCfg.present = BWP_DownlinkCommon__pdcch_ConfigCommon_PR_setup;
532    pdcchCfg.ctrlRsrcSetZero = CORESET_0_INDEX;
533    pdcchCfg.searchSpcZero = SEARCHSPACE_0_INDEX;
534    pdcchCfg.searchSpcId = PDCCH_SEARCH_SPACE_ID;
535    pdcchCfg.ctrlRsrcSetId = PDCCH_CTRL_RSRC_SET_ID;
536    pdcchCfg.monitorSlotPrdAndOffPresent = SearchSpace__monitoringSlotPeriodicityAndOffset_PR_sl1;
537    //pdcchCfg.monitorSlotPrdAndOff = \
538    SearchSpace__monitoringSlotPeriodicityAndOffset_PR_sl1;
539    pdcchCfg.monitorSymbolsInSlot[0] = 128;
540    pdcchCfg.monitorSymbolsInSlot[1] = 0;
541    pdcchCfg.numCandAggLvl1 = SearchSpace__nrofCandidates__aggregationLevel1_n8;
542    pdcchCfg.numCandAggLvl2 = SearchSpace__nrofCandidates__aggregationLevel2_n4;
543    pdcchCfg.numCandAggLvl4 = SearchSpace__nrofCandidates__aggregationLevel4_n2;
544    pdcchCfg.numCandAggLvl8 = SearchSpace__nrofCandidates__aggregationLevel8_n1;
545    pdcchCfg.numCandAggLvl16 = SearchSpace__nrofCandidates__aggregationLevel16_n0;
546    pdcchCfg.searchSpcType = SearchSpace__searchSpaceType_PR_common;
547    pdcchCfg.commSrchSpcDciFrmt = PDCCH_SERACH_SPACE_DCI_FORMAT;
548    pdcchCfg.searchSpcSib1 = PDCCH_SEARCH_SPACE_ID_SIB1;
549    pdcchCfg.pagingSearchSpc = PDCCH_SEARCH_SPACE_ID_PAGING;
550    pdcchCfg.raSearchSpc = PDCCH_SEARCH_SPACE_ID_PAGING;
551    srvCellCfgComm->dlCfg.pdcchCfg = pdcchCfg;
552
553    /* Configuring PDSCH Config Common For SIB1 */
554    pdschCfg.present = BWP_DownlinkCommon__pdsch_ConfigCommon_PR_setup;
555    pdschCfg.numTimeDomRsrcAlloc = 2;
556    pdschCfg.timeDomAlloc[0].k0 = PDSCH_K0_CFG1;
557    pdschCfg.timeDomAlloc[0].mapType = PDSCH_TimeDomainResourceAllocation__mappingType_typeA;
558    pdschCfg.timeDomAlloc[0].sliv = calcSliv(PDSCH_START_SYMBOL,PDSCH_LENGTH_SYMBOL);
559
560    pdschCfg.timeDomAlloc[1].k0 = PDSCH_K0_CFG2;
561    pdschCfg.timeDomAlloc[1].mapType = PDSCH_TimeDomainResourceAllocation__mappingType_typeA;
562    pdschCfg.timeDomAlloc[1].sliv = calcSliv(PDSCH_START_SYMBOL,PDSCH_LENGTH_SYMBOL);
563
564    srvCellCfgComm->dlCfg.pdschCfg = pdschCfg;
565
566    /* Configuring BCCH Config for SIB1 */
567    srvCellCfgComm->dlCfg.bcchCfg.modPrdCoeff = BCCH_Config__modificationPeriodCoeff_n16;
568
569    /* Configuring PCCH Config for SIB1 */
570    pcchCfg.dfltPagingCycle = convertPagingCycleEnumToValue(PagingCycle_rf256);
571    pcchCfg.nAndPagingFrmOffsetType = PCCH_Config__nAndPagingFrameOffset_PR_oneT;
572    pcchCfg.pageFrameOffset = 0;
573    pcchCfg.ns = convertNsEnumToValue(PCCH_Config__ns_one);
574    pcchCfg.firstPDCCHMontioringType = PCCH_Config__firstPDCCH_MonitoringOccasionOfPO_PR_sCS30KHZoneT_SCS15KHZhalfT;
575    memset(pcchCfg.firstPDCCHMontioringInfo, 0, sizeof(uint16_t));
576    pcchCfg.firstPDCCHMontioringInfo[0] = 44;
577    
578    srvCellCfgComm->dlCfg.pcchCfg = pcchCfg;
579
580
581    /* Configuring UL Config Common */
582 #ifdef O1_ENABLE
583    srvCellCfgComm->ulCfg.ulScsCarrier.scsOffset =  cellParams.ssbOffset;
584    srvCellCfgComm->ulCfg.ulScsCarrier.scs = convertScsValToScsEnum(cellParams.ssbSubCarrierSpacing);
585    srvCellCfgComm->ulCfg.ulScsCarrier.scsBw = cellParams.bSChannelBwUL; 
586 #else
587    srvCellCfgComm->ulCfg.ulScsCarrier.scsOffset = SSB_SUBCARRIER_OFFSET;
588    srvCellCfgComm->ulCfg.ulScsCarrier.scs = NR_SCS;
589    srvCellCfgComm->ulCfg.ulScsCarrier.scsBw = NR_BANDWIDTH;
590 #endif   
591    srvCellCfgComm->ulCfg.freqBandInd = NR_FREQ_BAND;
592    srvCellCfgComm->ulCfg.pMax = UL_P_MAX;
593    srvCellCfgComm->ulCfg.locAndBw = FREQ_LOC_BW;
594    srvCellCfgComm->ulCfg.timeAlignTimerComm = TimeAlignmentTimer_infinity;
595
596    /* Configuring RACH Config Common for SIB1 */
597    rachCfg.present = BWP_UplinkCommon__rach_ConfigCommon_PR_setup;
598    rachCfg.prachCfgIdx = PRACH_CONFIG_IDX;
599    rachCfg.msg1Fdm = RACH_ConfigGeneric__msg1_FDM_one;
600    rachCfg.msg1FreqStart = PRACH_FREQ_START;
601    rachCfg.zeroCorrZoneCfg = ZERO_CORRELATION_ZONE_CFG;
602    rachCfg.preambleRcvdTgtPwr = PRACH_PREAMBLE_RCVD_TGT_PWR;
603    rachCfg.preambleTransMax = RACH_ConfigGeneric__preambleTransMax_n200;
604    rachCfg.pwrRampingStep = RACH_ConfigGeneric__powerRampingStep_dB2;
605    rachCfg.raRspWindow = RACH_ConfigGeneric__ra_ResponseWindow_sl10;
606    rachCfg.numRaPreamble = NUM_RA_PREAMBLE;
607    rachCfg.numSsbPerRachOcc = RACH_ConfigCommon__ssb_perRACH_OccasionAndCB_PreamblesPerSSB_PR_one;
608    rachCfg.numCbPreamblePerSsb = CB_PREAMBLE_PER_SSB;
609    rachCfg.contResTimer = RACH_ConfigCommon__ra_ContentionResolutionTimer_sf64;
610    rachCfg.rsrpThreshSsb = RSRP_THRESHOLD_SSB;
611    rachCfg.rootSeqIdxPresent = RACH_ConfigCommon__prach_RootSequenceIndex_PR_l139;
612    rachCfg.rootSeqIdx = ROOT_SEQ_IDX;
613    rachCfg.msg1Scs = PRACH_SUBCARRIER_SPACING ;
614    rachCfg.restrictedSetCfg = PRACH_RESTRICTED_SET_CFG;
615    srvCellCfgComm->ulCfg.rachCfg = rachCfg;
616
617    /* Configuring PUSCH Config Common for SIB1 */
618    puschCfg.puschCfgPresent = BWP_UplinkCommon__pusch_ConfigCommon_PR_setup;
619    puschCfg.numTimeDomRsrcAlloc = 2;
620    puschCfg.timeDomAllocList[0].k2 = PUSCH_K2_CFG1;
621    puschCfg.timeDomAllocList[0].mapType = PUSCH_TimeDomainResourceAllocation__mappingType_typeA;
622    puschCfg.timeDomAllocList[0].sliv = calcSliv(PUSCH_START_SYMBOL,PUSCH_LENGTH_SYMBOL);
623    puschCfg.timeDomAllocList[1].k2 = PUSCH_K2_CFG2;
624    puschCfg.timeDomAllocList[1].mapType = PUSCH_TimeDomainResourceAllocation__mappingType_typeA;
625    puschCfg.timeDomAllocList[1].sliv = calcSliv(PUSCH_START_SYMBOL,PUSCH_LENGTH_SYMBOL);
626    puschCfg.msg3DeltaPreamble = PUSCH_MSG3_DELTA_PREAMBLE;
627    puschCfg.p0NominalWithGrant = PUSCH_P0_NOMINAL_WITH_GRANT;
628    srvCellCfgComm->ulCfg.puschCfg = puschCfg;
629
630    /* Configuring PUCCH Config Common for SIB1 */
631    pucchCfg.present = BWP_UplinkCommon__pucch_ConfigCommon_PR_setup;
632    pucchCfg.rsrcComm = PUCCH_RSRC_COMMON;
633    pucchCfg.grpHop = PUCCH_ConfigCommon__pucch_GroupHopping_neither;
634    pucchCfg.p0Nominal = PUCCH_P0_NOMINAL;
635    srvCellCfgComm->ulCfg.pucchCfg = pucchCfg;
636
637    /* Configuring TDD UL DL config common */
638    tddCfg.refScs = SubcarrierSpacing_kHz30;
639    tddCfg.txPrd = TDD_UL_DL_Pattern__dl_UL_TransmissionPeriodicity_ms5;
640    tddCfg.numDlSlots = NUM_DL_SLOTS;
641    tddCfg.numDlSymbols = NUM_DL_SYMBOLS;
642    tddCfg.numUlSlots = NUM_UL_SLOTS;
643    tddCfg.numUlSymbols = NUM_UL_SYMBOLS;
644    srvCellCfgComm->tddCfg = tddCfg;
645
646    srvCellCfgComm->ssbPosInBurst = 192;
647    srvCellCfgComm->ssbPrdServingCell = SSB_PERIODICITY;
648    srvCellCfgComm->ssPbchBlockPwr = SSB_PBCH_PWR;
649
650    return ROK;
651 }
652
653 /*******************************************************************
654  *
655  * @brief Configures the DU Parameters
656  *
657  * @details
658  *
659  *    Function : readCfg
660  *
661  *    Functionality:
662  *       - Initializes the DuCfg members.  
663  *       - Calls readMacCfg()  
664  *
665  * @params[in] system task ID
666  * @return ROK     - success
667  *         RFAILED - failure
668  *
669  * ****************************************************************/
670
671 uint8_t readCfg()
672 {
673    uint8_t srvdCellIdx, bandIdx, sliceIdx, plmnIdx;
674    uint8_t brdcstPlmnIdx, freqBandIdx, srvdPlmnIdx;
675    uint32_t ipv4_du, ipv4_cu, ipv4_ric;
676    MibParams mib;
677    Sib1Params sib1;
678    F1TaiSliceSuppLst *taiSliceSuppLst;
679
680 #ifndef O1_ENABLE
681    /* Note: Added these below variable for local testing*/
682    Snssai snssai[NUM_OF_SUPPORTED_SLICE] = {{1,{2,3,4}},{5,{6,7,8}}};
683 #endif
684
685 #ifdef O1_ENABLE
686    if( getStartupConfig(&g_cfg) != ROK )
687    {
688       RETVALUE(RFAILED);
689    }
690    cmInetAddr((S8*)g_cfg.DU_IPV4_Addr, &ipv4_du);
691    cmInetAddr((S8*)g_cfg.CU_IPV4_Addr, &ipv4_cu);
692    cmInetAddr((S8*)g_cfg.RIC_IPV4_Addr, &ipv4_ric);
693
694    duCfgParam.sctpParams.cuPort = g_cfg.CU_Port;
695    duCfgParam.sctpParams.ricPort = g_cfg.RIC_Port;
696 #else   
697    cmInetAddr((S8*)DU_IP_V4_ADDR, &ipv4_du);
698    cmInetAddr((S8*)CU_IP_V4_ADDR, &ipv4_cu);
699    cmInetAddr((S8*)RIC_IP_V4_ADDR, &ipv4_ric);
700
701    duCfgParam.sctpParams.cuPort = CU_PORT;
702    duCfgParam.sctpParams.ricPort = RIC_PORT;
703 #endif
704
705    fillDuPort(duCfgParam.sctpParams.duPort);
706
707    /* F1 DU IP Address and Port*/
708    duCfgParam.sctpParams.duIpAddr.ipV4Addr = ipv4_du;
709
710    /* F1 CU IP Address and Port*/
711    duCfgParam.sctpParams.cuIpAddr.ipV4Addr = ipv4_cu;
712
713    /* Fill RIC Params */
714    duCfgParam.sctpParams.ricIpAddr.ipV4Addr = ipv4_ric;
715
716    /* EGTP Parameters */
717    duCfgParam.egtpParams.localIp.ipV4Pres = TRUE;
718    duCfgParam.egtpParams.localIp.ipV4Addr = ipv4_du;
719    duCfgParam.egtpParams.localPort = DU_EGTP_PORT;
720    duCfgParam.egtpParams.destIp.ipV4Pres = TRUE;
721    duCfgParam.egtpParams.destIp.ipV4Addr = ipv4_cu;
722    duCfgParam.egtpParams.destPort = CU_EGTP_PORT;
723    duCfgParam.egtpParams.minTunnelId = MIN_TEID;
724    duCfgParam.egtpParams.maxTunnelId = MAX_TEID;
725
726    duCfgParam.maxUe = 32; //TODO: Check
727    /* DU Info */        
728    duCfgParam.duId = DU_ID;     
729    strcpy((char*)duCfgParam.duName,DU_NAME);
730
731    /* Mib Params */
732    mib.sysFrmNum = SYS_FRAME_NUM;
733 #ifdef NR_TDD
734    mib.subCarrierSpacingCommon = MIB__subCarrierSpacingCommon_scs30or120;
735 #else
736    mib.subCarrierSpacingCommon = MIB__subCarrierSpacingCommon_scs15or60;
737 #endif
738    mib.ssb_SubcarrierOffset = SSB_SC_OFFSET; //Kssb
739    mib.dmrs_TypeA_Position = MIB__dmrs_TypeA_Position_pos2;
740    mib.controlResourceSetZero = CORESET_0_INDEX;
741    mib.searchSpaceZero = SEARCHSPACE_0_INDEX;
742    mib.cellBarred = MIB__cellBarred_notBarred;
743    mib.intraFreqReselection =
744       MIB__intraFreqReselection_notAllowed;
745    duCfgParam.mibParams = mib;
746
747    /* SIB1 Params */
748    memset(&sib1.plmn, 0, sizeof(Plmn));
749    sib1.plmn.mcc[0] = PLMN_MCC0;
750    sib1.plmn.mcc[1] = PLMN_MCC1;
751    sib1.plmn.mcc[2] = PLMN_MCC2;
752    sib1.plmn.mnc[0] = PLMN_MNC0;
753    sib1.plmn.mnc[1] = PLMN_MNC1;
754    sib1.ranac = DU_RANAC;
755
756 #ifdef O1_ENABLE
757    sib1.tac =  cellParams.nRTAC;
758    sib1.cellIdentity =  CELL_IDENTITY *  cellParams.cellLocalId;
759       DU_LOG("\n*********DEBUG --> DU_APP: readCfg(): OAM CellLocalId=%d", \
760               sib1.cellIdentity);
761 #else
762    sib1.tac = DU_TAC;
763    sib1.cellIdentity = CELL_IDENTITY * NR_CELL_ID;
764 #endif
765    sib1.cellResvdForOpUse = PLMN_IdentityInfo__cellReservedForOperatorUse_notReserved;
766    sib1.connEstFailCnt = ConnEstFailureControl__connEstFailCount_n3;
767    sib1.connEstFailOffValidity = ConnEstFailureControl__connEstFailOffsetValidity_s120;
768    sib1.siSchedInfo.winLen = SI_SchedulingInfo__si_WindowLength_s5;
769    sib1.siSchedInfo.broadcastSta = SchedulingInfo__si_BroadcastStatus_broadcasting;
770    sib1.siSchedInfo.preiodicity = SchedulingInfo__si_Periodicity_rf8;
771    sib1.siSchedInfo.sibType = SIB_TypeInfo__type_sibType2;
772    sib1.siSchedInfo.sibValTag = SIB1_VALUE_TAG;
773
774    fillServCellCfgCommSib(&sib1.srvCellCfgCommSib);
775
776    duCfgParam.sib1Params = sib1;
777
778    for(srvdCellIdx=0; srvdCellIdx<DEFAULT_CELLS; srvdCellIdx++)
779    { 
780       memset(&duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.nrCgi.plmn, 0, sizeof(Plmn));
781       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.nrCgi.plmn.mcc[0] = PLMN_MCC0;
782       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.nrCgi.plmn.mcc[1] = PLMN_MCC1;
783       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.nrCgi.plmn.mcc[2] = PLMN_MCC2;
784       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.nrCgi.plmn.mnc[0] = PLMN_MNC0;
785       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.nrCgi.plmn.mnc[1] = PLMN_MNC1;
786
787       /*Cell ID */
788  #ifdef O1_ENABLE
789       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.nrPci = cellParams.nRPCI;
790  #else
791       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.nrPci = NR_PCI;
792 #endif
793       /* List of Available PLMN */
794       for(srvdPlmnIdx=0; srvdPlmnIdx<MAX_PLMN; srvdPlmnIdx++)
795       {
796          /* As per spec 38.473, Plmn identity consists of 3 digit from mcc
797           * followed by either 2 digit or 3 digits of mnc */ 
798
799          memset(&duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].plmn, 0,\
800          sizeof(Plmn));
801  #ifdef O1_ENABLE
802          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].plmn.mcc[0] = cellParams.plmnList[srvdPlmnIdx].mcc[0];
803          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].plmn.mcc[1] = cellParams.plmnList[srvdPlmnIdx].mcc[1];
804          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].plmn.mcc[2] = cellParams.plmnList[srvdPlmnIdx].mcc[2];
805          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].plmn.mnc[0] = cellParams.plmnList[srvdPlmnIdx].mnc[0];
806          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].plmn.mnc[1] = cellParams.plmnList[srvdPlmnIdx].mnc[1];
807          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].plmn.mnc[2] = cellParams.plmnList[srvdPlmnIdx].mnc[2];
808  #else
809          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].plmn.mcc[0] = PLMN_MCC0;
810          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].plmn.mcc[1] = PLMN_MCC1;
811          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].plmn.mcc[2] = PLMN_MCC2;
812          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].plmn.mnc[0] = PLMN_MNC0;
813          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].plmn.mnc[1] = PLMN_MNC1;
814 #endif
815       }
816       /* List of Extended PLMN */
817       for(srvdPlmnIdx=0; srvdPlmnIdx<MAX_PLMN; srvdPlmnIdx++)
818       {
819          /* As per spec 38.473, Plmn identity consists of 3 digit from mcc
820           * followed by either 2 digit or 3 digits of mnc */ 
821
822          memset(&duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].extPlmn, 0, sizeof(Plmn));
823          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].extPlmn.mcc[0] = PLMN_MCC0;
824          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].extPlmn.mcc[1] = PLMN_MCC1;
825          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].extPlmn.mcc[2] = PLMN_MCC2;
826          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].extPlmn.mnc[0] = PLMN_MNC0;
827          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].extPlmn.mnc[1] = PLMN_MNC1;
828       } 
829       /* List of Supporting Slices */
830       for(srvdPlmnIdx=0; srvdPlmnIdx<MAX_PLMN; srvdPlmnIdx++)
831       {
832          taiSliceSuppLst = &duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellInfo.srvdPlmn[srvdPlmnIdx].\
833          taiSliceSuppLst;
834          
835          /* TODO Calculte the exact number of supported slices once will get
836           * cell configuration from O1 */
837          taiSliceSuppLst->numSupportedSlices = NUM_OF_SUPPORTED_SLICE;
838          if(taiSliceSuppLst->numSupportedSlices > MAX_NUM_OF_SLICE_ITEMS)
839          {
840             DU_LOG("\nERROR --> DU_APP: readCfg(): Number of supported slice [%d] is more than 1024",\
841             taiSliceSuppLst->numSupportedSlices);
842             return RFAILED;
843          }
844
845          DU_ALLOC(taiSliceSuppLst->snssai, taiSliceSuppLst->numSupportedSlices*sizeof(Snssai*));
846          if(taiSliceSuppLst->snssai == NULLP)
847          {
848             DU_LOG("\nERROR --> DU_APP: readCfg():Memory allocation failed");
849             return RFAILED;
850          }
851          
852          for(sliceIdx=0; sliceIdx<taiSliceSuppLst->numSupportedSlices; sliceIdx++)
853          {
854             DU_ALLOC(taiSliceSuppLst->snssai[sliceIdx], sizeof(Snssai));
855             if(taiSliceSuppLst->snssai[sliceIdx] == NULLP)
856             {
857                DU_LOG("\nERROR --> DU_APP: readCfg():Memory allocation failed");
858                return RFAILED;
859             }
860 #ifdef O1_ENABLE
861             memcpy(taiSliceSuppLst->snssai[sliceIdx]->sd, cellParams.plmnList[sliceIdx].sd, \
862                   SD_SIZE*sizeof(uint8_t));
863             taiSliceSuppLst->snssai[sliceIdx]->sst = cellParams.plmnList[sliceIdx].sst;
864 #else
865             memcpy(taiSliceSuppLst->snssai[sliceIdx], &snssai[sliceIdx], sizeof(Snssai));
866 #endif
867          }
868       }
869
870       /* NR Mode info */
871 #ifdef NR_TDD
872       /* NR TDD Mode info */
873 #ifdef O1_ENABLE      
874       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.tdd.nrFreqInfo.nrArfcn = cellParams.arfcnUL;
875       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.tdd.nrFreqInfo.sulInfo.sulArfcn = cellParams.arfcnSUL;
876       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.tdd.nrFreqInfo.sulInfo.sulTxBw.nrScs = convertScsPeriodicityToEnum(cellParams.ssbPeriodicity);                 
877 #else
878       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.tdd.nrFreqInfo.nrArfcn = NR_UL_ARFCN;
879       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.tdd.nrFreqInfo.sulInfo.sulArfcn = SUL_ARFCN;
880       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.tdd.nrFreqInfo.sulInfo.sulTxBw.nrScs = SSB_PRDCTY_MS_20;               
881 #endif      
882       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.tdd.nrFreqInfo.sulInfo.sulTxBw.nrb = NRB_106;         
883
884       for(freqBandIdx=0; freqBandIdx<MAX_NRCELL_BANDS; freqBandIdx++)
885       {
886          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.tdd.nrFreqInfo.freqBand[freqBandIdx].nrFreqBand =\
887                                                                                                                      NR_FREQ_BAND;
888          for(bandIdx=0; bandIdx<MAX_NRCELL_BANDS; bandIdx++)
889          {
890             duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.tdd.nrFreqInfo.freqBand[freqBandIdx].sulBand[bandIdx]\
891                = SUL_BAND;      
892          }
893       }
894 #else
895       /* NR FDD Mode info */
896 #ifdef O1_ENABLE
897       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.ulNrFreqInfo.nrArfcn = cellParams.arfcnUL;
898       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.ulNrFreqInfo.sulInfo.sulArfcn = cellParams.arfcnSUL;
899       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.ulTxBw.nrScs = convertScsPeriodicityToEnum(cellParams.ssbPeriodicity);
900       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.ulNrFreqInfo.sulInfo.sulTxBw.nrScs = convertScsPeriodicityToEnum(cellParams.ssbPeriodicity);
901       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.dlNrFreqInfo.nrArfcn = cellParams.arfcnDL;
902       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.dlNrFreqInfo.sulInfo.sulArfcn = cellParams.arfcnSUL;
903       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.dlNrFreqInfo.sulInfo.sulTxBw.nrScs = convertScsPeriodicityToEnum(cellParams.ssbPeriodicity);
904       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.dlTxBw.nrScs = convertScsPeriodicityToEnum(cellParams.ssbPeriodicity);
905 #else
906       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.ulNrFreqInfo.nrArfcn = NR_UL_ARFCN;
907       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.ulNrFreqInfo.sulInfo.sulArfcn = SUL_ARFCN;
908       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.ulTxBw.nrScs = SSB_PRDCTY_MS_20;
909       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.ulNrFreqInfo.sulInfo.sulTxBw.nrScs = SSB_PRDCTY_MS_20;
910       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.dlNrFreqInfo.nrArfcn = NR_DL_ARFCN;
911       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.dlNrFreqInfo.sulInfo.sulArfcn = SUL_ARFCN;
912       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.dlNrFreqInfo.sulInfo.sulTxBw.nrScs = SSB_PRDCTY_MS_20;
913       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.dlTxBw.nrScs = SSB_PRDCTY_MS_20;
914 #endif
915       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.ulNrFreqInfo.sulInfo.sulTxBw.nrb = NRB_106;
916       for(freqBandIdx=0; freqBandIdx<MAX_NRCELL_BANDS; freqBandIdx++)
917       {
918          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.ulNrFreqInfo.freqBand[freqBandIdx].\
919          nrFreqBand = NR_FREQ_BAND;
920          for(bandIdx=0; bandIdx<MAX_NRCELL_BANDS; bandIdx++)
921          {
922             duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.ulNrFreqInfo.freqBand[freqBandIdx].\
923             sulBand[bandIdx] = SUL_BAND;
924          }
925       }
926       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.dlNrFreqInfo.sulInfo.sulTxBw.nrb = NRB_106;
927       for(freqBandIdx=0; freqBandIdx<MAX_NRCELL_BANDS; freqBandIdx++)
928       {
929          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.dlNrFreqInfo.freqBand[freqBandIdx].\
930          nrFreqBand = NR_FREQ_BAND;
931          for(bandIdx=0; bandIdx<MAX_NRCELL_BANDS; bandIdx++)
932          {
933             duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.dlNrFreqInfo.freqBand[freqBandIdx].\
934             sulBand[bandIdx] = SUL_BAND;
935          }
936       }
937
938       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.ulTxBw.nrb = NRB_106;
939       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.f1Mode.mode.fdd.dlTxBw.nrb = NRB_106;
940 #endif
941
942       /*Measurement Config and Cell Config */ 
943       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.measTimeCfg = TIME_CFG; 
944
945       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellDir = DL_UL; 
946
947       duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.cellType=CELL_TYPE;
948
949       /* Broadcast PLMN Identity */
950       for(brdcstPlmnIdx=0; brdcstPlmnIdx<MAX_BPLMN_NRCELL_MINUS_1; brdcstPlmnIdx++)
951       { 
952          for(plmnIdx=0; plmnIdx<MAX_PLMN; plmnIdx++)
953          {
954             memset(&duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.brdcstPlmnInfo[brdcstPlmnIdx].plmn[plmnIdx],\
955             0, sizeof(Plmn));
956             duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.brdcstPlmnInfo[brdcstPlmnIdx].plmn[plmnIdx].mcc[0] =\
957             PLMN_MCC0;
958             duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.brdcstPlmnInfo[brdcstPlmnIdx].plmn[plmnIdx].mcc[1] =\
959             PLMN_MCC1;
960             duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.brdcstPlmnInfo[brdcstPlmnIdx].plmn[plmnIdx].mcc[2] =\
961             PLMN_MCC2;
962             duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.brdcstPlmnInfo[brdcstPlmnIdx].plmn[plmnIdx].mnc[0] =\
963             PLMN_MNC0;
964             duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.brdcstPlmnInfo[brdcstPlmnIdx].plmn[plmnIdx].mnc[1] =\
965             PLMN_MNC1;
966          }
967          /* Extended PLMN List */        
968          for(plmnIdx=0; plmnIdx<MAX_PLMN; plmnIdx++)
969          {
970             memset(&duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.brdcstPlmnInfo[brdcstPlmnIdx].\
971             extPlmn[plmnIdx], 0, sizeof(Plmn));
972             duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.brdcstPlmnInfo[brdcstPlmnIdx].\
973             extPlmn[plmnIdx].mcc[0] = PLMN_MCC0;
974             duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.brdcstPlmnInfo[brdcstPlmnIdx].\
975             extPlmn[plmnIdx].mcc[1] = PLMN_MCC1;
976             duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.brdcstPlmnInfo[brdcstPlmnIdx].\
977             extPlmn[plmnIdx].mcc[2] = PLMN_MCC2;
978             duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.brdcstPlmnInfo[brdcstPlmnIdx].\
979             extPlmn[plmnIdx].mnc[0] = PLMN_MNC0;
980             duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.brdcstPlmnInfo[brdcstPlmnIdx].\
981             extPlmn[plmnIdx].mnc[1] = PLMN_MNC1;
982          }
983 #ifdef O1_ENABLE
984          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.epsTac = cellParams.nRTAC; //TODO : to check and fill
985          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.tac = cellParams.nRTAC;
986          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.brdcstPlmnInfo[brdcstPlmnIdx].tac = cellParams.nRTAC;
987          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.brdcstPlmnInfo[brdcstPlmnIdx].nrCellId = cellParams.cellLocalId;
988 #else       
989          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.epsTac = DU_TAC; //TODO : to check and fill
990          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.tac = DU_TAC;
991          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.brdcstPlmnInfo[brdcstPlmnIdx].tac = DU_TAC;
992          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.brdcstPlmnInfo[brdcstPlmnIdx].nrCellId = NR_CELL_ID;
993 #endif     
994          duCfgParam.srvdCellLst[srvdCellIdx].duCellInfo.brdcstPlmnInfo[brdcstPlmnIdx].ranac = NR_RANAC;
995       }
996
997       /*gnb DU System Info mib msg*/
998       BuildMibMsg();
999       DU_ALLOC(duCfgParam.srvdCellLst[srvdCellIdx].duSysInfo.mibMsg, encBufSize);
1000       if(!(duCfgParam.srvdCellLst[srvdCellIdx].duSysInfo.mibMsg))
1001       {
1002          DU_LOG("\nERROR  -->  DU APP : Memory allocation failure at readCfg");
1003          return RFAILED;
1004       }
1005       memcpy(duCfgParam.srvdCellLst[srvdCellIdx].duSysInfo.mibMsg, encBuf, encBufSize);
1006       duCfgParam.srvdCellLst[srvdCellIdx].duSysInfo.mibLen = encBufSize;
1007
1008       /*gnb DU System Info mib msg*/
1009       BuildSib1Msg();
1010       DU_ALLOC(duCfgParam.srvdCellLst[srvdCellIdx].duSysInfo.sib1Msg,\
1011             encBufSize);
1012       if(!(duCfgParam.srvdCellLst[srvdCellIdx].duSysInfo.sib1Msg))
1013       {
1014          DU_LOG("\nERROR  -->  DU APP : Memory allocation failure at readCfg");
1015          return RFAILED;
1016       }
1017       memcpy(duCfgParam.srvdCellLst[srvdCellIdx].duSysInfo.sib1Msg,\
1018             encBuf,encBufSize);
1019       duCfgParam.srvdCellLst[srvdCellIdx].duSysInfo.sib1Len = encBufSize;
1020
1021    }
1022
1023    if(readMacCfg() != ROK)
1024    {
1025       DU_LOG("\nERROR  -->  DU_APP : Failed while reading MAC config");
1026       return RFAILED;
1027    }
1028
1029    return ROK;
1030 }
1031
1032 /*******************************************************************
1033  *
1034  * @brief Copy Slice Cfg in temp structre in duCfgParams 
1035  *
1036  * @details
1037  *
1038  *    Function : cpyRrmPolicyInDuCfgParams
1039  *
1040  *    Functionality:
1041  *      - Copy Slice Cfg in temp structre in duCfgParams 
1042  *
1043  * @params[in] RrmPolicy rrmPolicy[], uint8_t policyNum, uint8_t memberList
1044  * @return ROK     - success
1045  *         RFAILED - failure
1046  *
1047  * ****************************************************************/
1048 uint8_t cpyRrmPolicyInDuCfgParams(RrmPolicyList rrmPolicy[], uint8_t policyNum, CopyOfRecvdSliceCfg *tempSliceCfg)
1049 {
1050    uint8_t policyIdx = 0, memberListIdx = 0, count = 0;
1051
1052    if(policyNum)
1053    {
1054       tempSliceCfg->totalRrmPolicy = policyNum;
1055       DU_ALLOC(tempSliceCfg->rrmPolicy, tempSliceCfg->totalRrmPolicy * sizeof(RrmPolicy*));
1056       if(tempSliceCfg->rrmPolicy == NULLP)
1057       {
1058          DU_LOG("\nERROR  --> DU APP : Memory allocation failed in cpyRrmPolicyInDuCfgParams");
1059          return RFAILED;
1060       }
1061
1062       for(policyIdx = 0; policyIdx<tempSliceCfg->totalRrmPolicy; policyIdx++)
1063       {
1064          DU_ALLOC(tempSliceCfg->rrmPolicy[policyIdx],  sizeof(RrmPolicy));
1065          if(tempSliceCfg->rrmPolicy[policyIdx] == NULLP)
1066          {
1067             DU_LOG("\nERROR  --> DU APP : Memory allocation failed in cpyRrmPolicyInDuCfgParams");
1068             return RFAILED;
1069          }
1070          
1071          if(rrmPolicy[policyIdx].rRMMemberNum)
1072          {
1073             tempSliceCfg->rrmPolicy[policyIdx]->numMemberList = rrmPolicy[policyIdx].rRMMemberNum;  
1074             DU_ALLOC(tempSliceCfg->rrmPolicy[policyIdx]->memberList, tempSliceCfg->rrmPolicy[policyIdx]->numMemberList * sizeof(PolicyMemberList*))
1075             if(tempSliceCfg->rrmPolicy[policyIdx]->memberList == NULLP)
1076             {
1077                DU_LOG("\nERROR  --> DU APP : Memory allocation failed in cpyRrmPolicyInDuCfgParams");
1078                return RFAILED;
1079             }
1080
1081             for(memberListIdx = 0; memberListIdx<tempSliceCfg->rrmPolicy[policyIdx]->numMemberList; memberListIdx++)
1082             {
1083                DU_ALLOC(tempSliceCfg->rrmPolicy[policyIdx]->memberList[memberListIdx], sizeof(PolicyMemberList))
1084                if(tempSliceCfg->rrmPolicy[policyIdx]->memberList[memberListIdx] == NULLP)
1085                {
1086                   DU_LOG("\nERROR  --> DU APP : Memory allocation failed in cpyRrmPolicyInDuCfgParams");
1087                   return RFAILED;
1088                }
1089                memcpy(&tempSliceCfg->rrmPolicy[policyIdx]->memberList[memberListIdx]->snssai.sd, &rrmPolicy[policyIdx].rRMPolicyMemberList[memberListIdx].sd, 3 * sizeof(uint8_t));
1090                memcpy(&tempSliceCfg->rrmPolicy[policyIdx]->memberList[memberListIdx]->snssai.sst, &rrmPolicy[policyIdx].rRMPolicyMemberList[memberListIdx].sst, sizeof(uint8_t));
1091                memcpy(&tempSliceCfg->rrmPolicy[policyIdx]->memberList[memberListIdx]->plmn.mcc, &rrmPolicy[policyIdx].rRMPolicyMemberList[memberListIdx].mcc, 3 * sizeof(uint8_t));
1092                memcpy(&tempSliceCfg->rrmPolicy[policyIdx]->memberList[memberListIdx]->plmn.mnc, &rrmPolicy[policyIdx].rRMPolicyMemberList[memberListIdx].mnc, 3 * sizeof(uint8_t));
1093                count++;
1094             }
1095          }
1096          
1097          tempSliceCfg->rrmPolicy[policyIdx]->rsrcType  = rrmPolicy[policyIdx].resourceType;
1098          tempSliceCfg->rrmPolicy[policyIdx]->policyMaxRatio = rrmPolicy[policyIdx].rRMPolicyMaxRatio;
1099          tempSliceCfg->rrmPolicy[policyIdx]->policyMinRatio = rrmPolicy[policyIdx].rRMPolicyMinRatio;
1100          tempSliceCfg->rrmPolicy[policyIdx]->policyDedicatedRatio = rrmPolicy[policyIdx].rRMPolicyDedicatedRatio;
1101
1102       }
1103       tempSliceCfg->totalSliceCount = count;
1104    }
1105    return ROK;
1106 }
1107 /*******************************************************************
1108  *
1109  * @brief Reads config and posts message to du_app on completion
1110  *
1111  * @details
1112  *
1113  *    Function : main
1114  *
1115  *    Functionality:
1116  *      - Calls readCfg()
1117  *      - Post to du_app for further processing
1118  *
1119  * @params[in] void
1120  * @return ROK     - success
1121  *         RFAILED - failure
1122  *
1123  * ****************************************************************/
1124 uint8_t duReadCfg()
1125 {
1126    Pst pst;
1127    Buffer *mBuf;
1128
1129    memset(&duCfgParam, 0, sizeof(DuCfgParams));
1130
1131    //Read configs into duCfgParams
1132    if(readCfg() != ROK)
1133    {
1134       DU_LOG("\nERROR  -->  DU_APP : Reading configuration failed");
1135       return RFAILED;
1136    }
1137
1138    //Fill pst structure
1139    memset(&(pst), 0, sizeof(Pst));
1140    pst.srcEnt = (Ent)ENTDUAPP;
1141    pst.srcInst = (Inst)DU_INST;
1142    pst.srcProcId = DU_PROC;
1143    pst.dstEnt = pst.srcEnt;
1144    pst.dstInst = pst.srcInst;
1145    pst.dstProcId = pst.srcProcId;
1146    pst.event = EVTCFG;
1147    pst.selector = ODU_SELECTOR_TC;
1148    pst.pool= DU_POOL;
1149
1150
1151    if(ODU_GET_MSG_BUF(DFLT_REGION, DU_POOL, &mBuf) != ROK)
1152    {
1153       DU_LOG("\nERROR  -->  DU_APP : Memory allocation failed in duReadCfg");
1154       return RFAILED;
1155    }
1156
1157    if (ODU_POST_TASK(&pst, mBuf) != ROK)
1158    {
1159       DU_LOG("\nERROR  -->  DU_APP : ODU_POST_TASK failed in duReadCfg");
1160       return RFAILED;
1161    }
1162
1163    return ROK;
1164 }
1165
1166 /**********************************************************************
1167   End of file
1168  **********************************************************************/
1169