Merge "Deleted the rlog folder"
[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 "OCTET_STRING.h"
31 #include "BIT_STRING.h"
32 #include "odu_common_codec.h"
33 #include "du_sys_info_hdl.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
55 #ifdef O1_ENABLE
56
57 #include "Config.h"
58 extern StartupConfig g_cfg;
59
60 #endif
61
62 DuCfgParams duCfgParam;
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 #ifdef NR_TDD
80 /*******************************************************************
81  *
82  * @brief Fills the Slot configuration 
83  *
84  * @details
85  *
86  *    Function : FillSlotConfig
87  *
88  *    Functionality:Fill the Slot configuration values
89  * 
90  *  @params[in] void
91  * @return ROK     - success
92  *         RFAILED - failure
93  *
94  * ****************************************************************/
95 void FillSlotConfig()
96 {
97    uint8_t slot = 0;
98    uint8_t symbol =0;
99    
100    memset(duCfgParam.macCellCfg.tddCfg.slotCfg, 0, sizeof(duCfgParam.macCellCfg.tddCfg.slotCfg[slot][symbol]* \
101                            MAX_TDD_PERIODICITY_SLOTS*MAX_SYMB_PER_SLOT));
102    
103    //Filling the DL Slots and initializing flexi slot
104    for(slot = 0; slot <= NUM_DL_SLOTS; slot++)
105    {
106       for(symbol =0; symbol < MAX_SYMB_PER_SLOT; symbol++)
107       {
108          duCfgParam.macCellCfg.tddCfg.slotCfg[slot][symbol] = DL_SLOT;
109       }
110    }
111   
112    //Filling UL Slots
113    for(slot = NUM_DL_SLOTS+1; slot <= NUM_DL_SLOTS+NUM_UL_SLOTS; slot++)
114    {
115       for(symbol = 0; symbol < MAX_SYMB_PER_SLOT; symbol++)
116          duCfgParam.macCellCfg.tddCfg.slotCfg[slot][symbol] = UL_SLOT;
117    } 
118    //Updating Flexi Slot
119    slot = NUM_DL_SLOTS;
120    duCfgParam.macCellCfg.tddCfg.slotCfg[slot][12] = FLEXI_SLOT;
121    duCfgParam.macCellCfg.tddCfg.slotCfg[slot][13] = UL_SLOT;
122
123 }
124 #endif
125 /*******************************************************************
126  * @brief Reads the CL Configuration.
127  *
128  * @details
129  *
130  *    Function : readMacCfg
131  *
132  *    Functionality:
133  *       - Fills up the cell configuration for CL.
134  *       - Calls FillSlotConfig()  
135  *
136  * @params[in] void
137  * @return ROK     - success
138  *         RFAILED - failure
139  *
140  * ****************************************************************/
141
142
143 /* This function is used to fill up the cell configuration for CL */
144 uint8_t readMacCfg()
145 {
146    duCfgParam.macCellCfg.carrierId = CARRIER_IDX;
147
148    /* Cell configuration */
149    duCfgParam.macCellCfg.cellId = NR_CELL_ID;
150    duCfgParam.macCellCfg.phyCellId = NR_PCI;
151    duCfgParam.macCellCfg.numerology = NR_NUMEROLOGY;
152    duCfgParam.macCellCfg.dupType = DUPLEX_MODE;
153
154    /* DL carrier configuration */
155    duCfgParam.macCellCfg.dlCarrCfg.pres = TRUE;
156 #ifdef NR_TDD
157    duCfgParam.macCellCfg.dlCarrCfg.bw = BANDWIDTH_100MHZ;
158 #else
159    duCfgParam.macCellCfg.dlCarrCfg.bw = BANDWIDTH_20MHZ;
160 #endif
161    duCfgParam.macCellCfg.dlCarrCfg.freq = NR_DL_ARFCN;
162    duCfgParam.macCellCfg.dlCarrCfg.k0[0] = 1;
163    duCfgParam.macCellCfg.dlCarrCfg.k0[1] = 1;
164    duCfgParam.macCellCfg.dlCarrCfg.k0[2] = 1;
165    duCfgParam.macCellCfg.dlCarrCfg.k0[3] = 1;
166    duCfgParam.macCellCfg.dlCarrCfg.k0[4] = 1;
167    duCfgParam.macCellCfg.dlCarrCfg.gridSize[0] = 273;
168    duCfgParam.macCellCfg.dlCarrCfg.gridSize[1] = 1;
169    duCfgParam.macCellCfg.dlCarrCfg.gridSize[2] = 1;
170    duCfgParam.macCellCfg.dlCarrCfg.gridSize[3] = 1;
171    duCfgParam.macCellCfg.dlCarrCfg.gridSize[4] = 1;
172    duCfgParam.macCellCfg.dlCarrCfg.numAnt = NUM_TX_ANT;
173
174    /* UL Carrier configuration */
175    duCfgParam.macCellCfg.ulCarrCfg.pres = TRUE;
176 #ifdef NR_TDD
177    duCfgParam.macCellCfg.dlCarrCfg.bw = BANDWIDTH_100MHZ;
178 #else
179    duCfgParam.macCellCfg.ulCarrCfg.bw = BANDWIDTH_20MHZ;
180 #endif
181    duCfgParam.macCellCfg.ulCarrCfg.freq = NR_UL_ARFCN;
182    duCfgParam.macCellCfg.ulCarrCfg.k0[0] = 1;
183    duCfgParam.macCellCfg.ulCarrCfg.k0[1] = 1;
184    duCfgParam.macCellCfg.ulCarrCfg.k0[2] = 1;
185    duCfgParam.macCellCfg.ulCarrCfg.k0[3] = 1;
186    duCfgParam.macCellCfg.ulCarrCfg.k0[4] = 1;
187    duCfgParam.macCellCfg.ulCarrCfg.gridSize[0] = 1;
188    duCfgParam.macCellCfg.ulCarrCfg.gridSize[1] = 1;
189    duCfgParam.macCellCfg.ulCarrCfg.gridSize[2] = 1;
190    duCfgParam.macCellCfg.ulCarrCfg.gridSize[3] = 1;
191    duCfgParam.macCellCfg.ulCarrCfg.gridSize[4] = 1;
192    duCfgParam.macCellCfg.ulCarrCfg.numAnt = NUM_RX_ANT;
193
194    duCfgParam.macCellCfg.freqShft = FREQ_SHIFT_7P5KHZ;
195
196    /* SSB configuration */
197    duCfgParam.macCellCfg.ssbCfg.ssbPbchPwr = SSB_PBCH_PWR;
198    duCfgParam.macCellCfg.ssbCfg.bchPayloadFlag = BCH_PAYLOAD;
199 #ifdef NR_TDD
200    duCfgParam.macCellCfg.ssbCfg.scsCmn = SCS_30KHZ;
201 #else
202    duCfgParam.macCellCfg.ssbCfg.scsCmn = SCS_15KHZ;
203 #endif
204    duCfgParam.macCellCfg.ssbCfg.ssbOffsetPointA = OFFSET_TO_POINT_A;
205    duCfgParam.macCellCfg.ssbCfg.betaPss = BETA_PSS;
206    duCfgParam.macCellCfg.ssbCfg.ssbPeriod = SSB_PRDCTY_MS_20;
207    duCfgParam.macCellCfg.ssbCfg.ssbScOffset = SSB_SUBCARRIER_OFFSET;
208    duCfgParam.macCellCfg.ssbCfg.ssbMask[0] = 1; /* only one SSB is transmitted */
209    duCfgParam.macCellCfg.ssbCfg.ssbMask[1] = 0;
210    if(BuildMibPdu() != ROK)
211    {
212       DU_LOG("\nERROR  -->  Failed to build MIB PDU");
213       memset(&duCfgParam.macCellCfg.ssbCfg.mibPdu, 0, 3*sizeof(uint8_t));
214    }
215    else
216    {
217       for(uint8_t idx=0; idx<encBufSize; idx++)
218       {
219          duCfgParam.macCellCfg.ssbCfg.mibPdu[idx]=encBuf[idx];
220       }
221    }
222    duCfgParam.macCellCfg.ssbCfg.multCarrBand = SSB_MULT_CARRIER_BAND;
223    duCfgParam.macCellCfg.ssbCfg.multCellCarr = MULT_CELL_CARRIER;
224
225    /* PRACH configuration */
226    duCfgParam.macCellCfg.prachCfg.pres = TRUE;
227    duCfgParam.macCellCfg.prachCfg.prachCfgIdx = PRACH_CONFIG_IDX;
228    duCfgParam.macCellCfg.prachCfg.prachSeqLen = PRACH_SEQ_LEN;
229    duCfgParam.macCellCfg.prachCfg.prachSubcSpacing = PRACH_SUBCARRIER_SPACING;
230    duCfgParam.macCellCfg.prachCfg.prachRstSetCfg = PRACH_RESTRICTED_SET_CFG;
231    duCfgParam.macCellCfg.prachCfg.msg1Fdm = NUM_PRACH_FDM;
232    duCfgParam.macCellCfg.prachCfg.msg1FreqStart = PRACH_FREQ_START;
233    duCfgParam.macCellCfg.prachCfg.rootSeqLen    = ROOT_SEQ_LEN;
234    duCfgParam.macCellCfg.prachCfg.fdm[0].rootSeqIdx = ROOT_SEQ_IDX;
235    duCfgParam.macCellCfg.prachCfg.fdm[0].numRootSeq = NUM_ROOT_SEQ;
236    duCfgParam.macCellCfg.prachCfg.fdm[0].k1 = 0;
237    duCfgParam.macCellCfg.prachCfg.fdm[0].zeroCorrZoneCfg = ZERO_CORRELATION_ZONE_CFG;
238    duCfgParam.macCellCfg.prachCfg.fdm[0].numUnusedRootSeq = NUM_UNUSED_ROOT_SEQ;
239    if(duCfgParam.macCellCfg.prachCfg.fdm[0].numUnusedRootSeq != 0)
240    {
241         DU_ALLOC_SHRABL_BUF(duCfgParam.macCellCfg.prachCfg.fdm[0].unsuedRootSeq, 
242         NUM_UNUSED_ROOT_SEQ * sizeof(uint8_t));
243         if(duCfgParam.macCellCfg.prachCfg.fdm[0].unsuedRootSeq == NULLP)
244         {
245             DU_LOG("\nERROR  -->  DU_APP : Memory allocation failed at readMacCfg");
246             return RFAILED;
247         }
248         *(duCfgParam.macCellCfg.prachCfg.fdm[0].unsuedRootSeq) = UNUSED_ROOT_SEQ;
249     }
250    duCfgParam.macCellCfg.prachCfg.ssbPerRach = SSB_PER_RACH;
251    duCfgParam.macCellCfg.prachCfg.prachMultCarrBand = PRACH_MULT_CARRIER_BAND;
252    duCfgParam.macCellCfg.prachCfg.raContResTmr = RA_CONT_RES_TIMER;
253    duCfgParam.macCellCfg.prachCfg.rsrpThreshSsb = RSRP_THRESHOLD_SSB;
254    duCfgParam.macCellCfg.prachCfg.raRspWindow = RA_RSP_WINDOW;
255    duCfgParam.macCellCfg.prachCfg.prachRestrictedSet = PRACH_RESTRICTED_SET;
256 #ifdef NR_TDD   
257    /* TDD configuration */
258    duCfgParam.macCellCfg.tddCfg.pres = TRUE;
259    duCfgParam.macCellCfg.tddCfg.tddPeriod = TDD_PERIODICITY;
260
261    FillSlotConfig();
262
263 #endif
264    /* RSSI Measurement configuration */
265    duCfgParam.macCellCfg.rssiUnit = RSS_MEASUREMENT_UNIT;
266
267    /* fill SIB1 configuration */
268    duCfgParam.macCellCfg.sib1Cfg.sib1PduLen = duCfgParam.srvdCellLst[0].duSysInfo.sib1Len;
269    DU_ALLOC_SHRABL_BUF(duCfgParam.macCellCfg.sib1Cfg.sib1Pdu,duCfgParam.srvdCellLst[0].duSysInfo.sib1Len);
270    memcpy(duCfgParam.macCellCfg.sib1Cfg.sib1Pdu, duCfgParam.srvdCellLst[0].duSysInfo.sib1Msg, \
271          duCfgParam.srvdCellLst[0].duSysInfo.sib1Len);
272    duCfgParam.macCellCfg.sib1Cfg.sib1RepetitionPeriod = SIB1_REPETITION_PERIOD;
273    duCfgParam.macCellCfg.sib1Cfg.coresetZeroIndex = CORESET_0_INDEX;
274    duCfgParam.macCellCfg.sib1Cfg.searchSpaceZeroIndex = SEARCHSPACE_0_INDEX;
275    duCfgParam.macCellCfg.sib1Cfg.sib1Mcs = SIB1_MCS;
276
277
278    /* fill Intial DL BWP */
279    duCfgParam.macCellCfg.initialDlBwp.bwp.firstPrb = 0;
280    duCfgParam.macCellCfg.initialDlBwp.bwp.numPrb = TOTAL_PRB_20MHZ_MU0; /* configured to total BW */
281 #ifdef NR_TDD
282    duCfgParam.macCellCfg.initialDlBwp.bwp.scs = SCS_30KHZ; /* numerology is 1, 30Khz */
283 #else
284    duCfgParam.macCellCfg.initialDlBwp.bwp.scs = SCS_15KHZ; /* numerology is 0, 15Khz */
285 #endif
286    duCfgParam.macCellCfg.initialDlBwp.bwp.cyclicPrefix = NORMAL_CYCLIC_PREFIX;
287    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.searchSpaceId = SEARCHSPACE_1_INDEX;
288    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.coresetId = CORESET_0_INDEX;
289    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.monitoringSlot =
290       SS_MONITORING_SLOT_SL1; /* sl1 - all slots */
291    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.duration = 0;
292    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.monitoringSymbol =
293       SS_MONITORING_SYMBOL;
294    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.
295       candidate.aggLevel1       = 8;
296    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.
297       candidate.aggLevel2       = 4;
298    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.
299       candidate.aggLevel4       = 2;
300    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.
301       candidate.aggLevel8       = 1;
302    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.
303       candidate.aggLevel16      = 0;
304    duCfgParam.macCellCfg.initialDlBwp.pdschCommon.k0 = PDSCH_K0;
305    duCfgParam.macCellCfg.initialDlBwp.pdschCommon.mappingType = 
306       PDSCH_MAPPING_TYPE_A;
307    duCfgParam.macCellCfg.initialDlBwp.pdschCommon.startSymbol = 
308       PDSCH_START_SYMBOL;
309    duCfgParam.macCellCfg.initialDlBwp.pdschCommon.lengthSymbol =
310       PDSCH_LENGTH_SYMBOL;
311    /* ra-searchSpace ID is set to 1 */
312    duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.raSearchSpaceId = SEARCHSPACE_1_INDEX;
313
314    /* fill Intial UL BWP */
315    duCfgParam.macCellCfg.initialUlBwp.bwp.firstPrb = 0;
316    duCfgParam.macCellCfg.initialUlBwp.bwp.numPrb = TOTAL_PRB_20MHZ_MU0; /* configured to total BW */
317 #ifdef NR_TDD
318    duCfgParam.macCellCfg.initialUlBwp.bwp.scs = SCS_30KHZ; /* numerology is 1, 30Khz */
319 #else
320    duCfgParam.macCellCfg.initialUlBwp.bwp.scs = SCS_15KHZ; /* numerology is 0, 15Khz */
321 #endif
322    duCfgParam.macCellCfg.initialUlBwp.bwp.cyclicPrefix = NORMAL_CYCLIC_PREFIX;
323    duCfgParam.macCellCfg.initialUlBwp.puschCommon.k2 = PUSCH_K2;
324    duCfgParam.macCellCfg.initialUlBwp.puschCommon.mappingType = 
325       PUSCH_MAPPING_TYPE_A;
326    duCfgParam.macCellCfg.initialUlBwp.puschCommon.startSymbol = 
327       PUSCH_START_SYMBOL;
328    duCfgParam.macCellCfg.initialUlBwp.puschCommon.lengthSymbol =
329       PUSCH_LENGTH_SYMBOL;
330
331    duCfgParam.macCellCfg.dmrsTypeAPos = DMRS_TYPE_A_POS; 
332    /* fill PUCCH config common */
333    duCfgParam.macCellCfg.initialUlBwp.pucchCommon.pucchResourceCommon = PUCCH_RSRC_COMMON;
334    duCfgParam.macCellCfg.initialUlBwp.pucchCommon.pucchGroupHopping = PUCCH_GROUP_HOPPING;
335
336    return ROK;
337 }
338
339 /*******************************************************************
340  *
341  * @brief Configures the DU Parameters
342  *
343  * @details
344  *
345  *    Function : fillDuPort
346  *
347  *    Functionality:
348  *       - fills the DU Ports.  
349  *
350  * @params[in] duPort array to be filled
351  * @return ROK     - success
352  *         RFAILED - failure
353  *
354  * ****************************************************************/
355 uint8_t fillDuPort(uint16_t *duPort)
356 {
357
358 #ifdef O1_ENABLE
359    duPort[F1_INTERFACE]   = g_cfg.DU_Port;
360    duPort[E2_INTERFACE]   = g_cfg.RIC_Port;
361 #else
362    duPort[F1_INTERFACE]   = DU_PORT;     /* DU Port idx  0 38472 */
363    duPort[E2_INTERFACE]   = RIC_PORT;    /* RIC Port idx 1 38482 */
364 #endif
365    return ROK;
366 }
367
368 /*******************************************************************
369  *
370  * @brief Configures the DU Parameters
371  *
372  * @details
373  *
374  *    Function : calcSliv
375  *
376  *    Functionality:
377  *       - calculate SLIV value from start and length field
378  *
379  * @params[in] start symbol
380  * @params[in] length of symbols
381  * @return SLIV value
382  *
383  * ****************************************************************/
384 uint16_t calcSliv(uint8_t startSymbol, uint8_t lengthSymbol)
385 {
386    uint16_t sliv = 0;
387    if((lengthSymbol-1) <= 7)
388    {
389       sliv = NUM_SYMBOLS_PER_SLOT * (lengthSymbol-1) + startSymbol;
390    }
391    else
392    {
393       sliv = NUM_SYMBOLS_PER_SLOT * (NUM_SYMBOLS_PER_SLOT - lengthSymbol + 1) \
394              + (NUM_SYMBOLS_PER_SLOT - 1 - startSymbol);
395    }
396    return sliv;
397 }
398
399
400 /*******************************************************************
401  *
402  * @brief Configures serving cell config common in sib1
403  *
404  * @details
405  *
406  *    Function : fillServCellCfgCommSib
407  *
408  *    Functionality:
409  *       - fills Serving cell config common for SIB1
410  *
411  * @params[in] SrvCellCfgCommSib pointer
412  * @return ROK     - success
413  *         RFAILED - failure
414  * 
415  ** ****************************************************************/
416 uint8_t fillServCellCfgCommSib(SrvCellCfgCommSib *srvCellCfgComm)
417 {
418    PdcchCfgCommon   pdcchCfg;
419    PdschCfgCommon   pdschCfg;
420    PcchCfg          pcchCfg;
421    RachCfgCommon    rachCfg;
422    PuschCfgCommon   puschCfg;
423    PucchCfgCommon   pucchCfg;
424    TddUlDlCfgCommon   tddCfg;
425
426    /* Configuring DL Config Common for SIB1*/
427    srvCellCfgComm->dlCfg.freqBandInd = NR_FREQ_BAND; 
428    srvCellCfgComm->dlCfg.offsetToPointA = OFFSET_TO_POINT_A;
429    srvCellCfgComm->dlCfg.dlScsCarrier.scsOffset = SSB_SUBCARRIER_OFFSET;
430 #ifdef NR_TDD
431    srvCellCfgComm->dlCfg.dlScsCarrier.scs = SCS_30KHZ;
432    srvCellCfgComm->dlCfg.dlScsCarrier.scsBw = BANDWIDTH_100MHZ;
433 #else
434    srvCellCfgComm->dlCfg.dlScsCarrier.scs = SCS_15KHZ;
435    srvCellCfgComm->dlCfg.dlScsCarrier.scsBw = BANDWIDTH_20MHZ;
436 #endif
437    srvCellCfgComm->dlCfg.locAndBw = FREQ_LOC_BW;
438
439    /* Configuring PDCCH Config Common For SIB1 */
440    pdcchCfg.present = BWP_DownlinkCommon__pdcch_ConfigCommon_PR_setup;
441    pdcchCfg.ctrlRsrcSetZero = CORESET_0_INDEX;
442    pdcchCfg.searchSpcZero = SEARCHSPACE_0_INDEX;
443    pdcchCfg.searchSpcId = PDCCH_SEARCH_SPACE_ID;
444    pdcchCfg.ctrlRsrcSetId = PDCCH_CTRL_RSRC_SET_ID;
445    pdcchCfg.monitorSlotPrdAndOffPresent = \
446       SearchSpace__monitoringSlotPeriodicityAndOffset_PR_sl1;
447    //pdcchCfg.monitorSlotPrdAndOff = \
448    SearchSpace__monitoringSlotPeriodicityAndOffset_PR_sl1;
449    pdcchCfg.monitorSymbolsInSlot[0] = 128;
450    pdcchCfg.monitorSymbolsInSlot[1] = 0;
451    pdcchCfg.numCandAggLvl1 = SearchSpace__nrofCandidates__aggregationLevel1_n8;
452    pdcchCfg.numCandAggLvl2 = SearchSpace__nrofCandidates__aggregationLevel2_n4;
453    pdcchCfg.numCandAggLvl4 = SearchSpace__nrofCandidates__aggregationLevel4_n2;
454    pdcchCfg.numCandAggLvl8 = SearchSpace__nrofCandidates__aggregationLevel8_n1;
455    pdcchCfg.numCandAggLvl16 = SearchSpace__nrofCandidates__aggregationLevel16_n0;
456    pdcchCfg.searchSpcType = SearchSpace__searchSpaceType_PR_common;
457    pdcchCfg.commSrchSpcDciFrmt = PDCCH_SERACH_SPACE_DCI_FORMAT;
458    pdcchCfg.searchSpcSib1 = PDCCH_SEARCH_SPACE_ID_SIB1;
459    pdcchCfg.pagingSearchSpc = PDCCH_SEARCH_SPACE_ID_PAGING;
460    pdcchCfg.raSearchSpc = PDCCH_SEARCH_SPACE_ID_PAGING;
461    srvCellCfgComm->dlCfg.pdcchCfg = pdcchCfg;
462
463    /* Configuring PDSCH Config Common For SIB1 */
464    pdschCfg.present = BWP_DownlinkCommon__pdsch_ConfigCommon_PR_setup;
465    pdschCfg.k0 = PDSCH_K0;
466    pdschCfg.mapType = \
467       PDSCH_TimeDomainResourceAllocation__mappingType_typeA;
468    pdschCfg.sliv = calcSliv(PDSCH_START_SYMBOL,PDSCH_LENGTH_SYMBOL);
469    srvCellCfgComm->dlCfg.pdschCfg = pdschCfg;
470
471    /* Configuring BCCH Config for SIB1 */
472    srvCellCfgComm->dlCfg.bcchCfg.modPrdCoeff = \
473       BCCH_Config__modificationPeriodCoeff_n16;
474
475    /* Configuring PCCH Config for SIB1 */
476    pcchCfg.dfltPagingCycle = PagingCycle_rf256;
477    pcchCfg.nAndPagingFrmOffPresent = PCCH_Config__nAndPagingFrameOffset_PR_oneT;
478    pcchCfg.numPagingOcc = PCCH_Config__ns_four;
479    srvCellCfgComm->dlCfg.pcchCfg = pcchCfg;
480
481
482    /* Configuring UL Config Common */
483    srvCellCfgComm->ulCfg.ulScsCarrier.scsOffset = SSB_SUBCARRIER_OFFSET;
484 #ifdef NR_TDD
485    srvCellCfgComm->ulCfg.ulScsCarrier.scs = SCS_30KHZ;
486    srvCellCfgComm->ulCfg.ulScsCarrier.scsBw = BANDWIDTH_100MHZ;
487 #else
488    srvCellCfgComm->ulCfg.ulScsCarrier.scs = SCS_15KHZ;
489    srvCellCfgComm->ulCfg.ulScsCarrier.scsBw = BANDWIDTH_20MHZ;
490 #endif
491    srvCellCfgComm->ulCfg.pMax = UL_P_MAX;
492    srvCellCfgComm->ulCfg.locAndBw = FREQ_LOC_BW;
493    srvCellCfgComm->ulCfg.timeAlignTimerComm = TimeAlignmentTimer_infinity;
494
495    /* Configuring RACH Config Common for SIB1 */
496    rachCfg.present = BWP_UplinkCommon__rach_ConfigCommon_PR_setup;
497    rachCfg.prachCfgIdx = PRACH_CONFIG_IDX;
498    rachCfg.msg1Fdm = RACH_ConfigGeneric__msg1_FDM_one;
499    rachCfg.msg1FreqStart = PRACH_FREQ_START;
500    rachCfg.zeroCorrZoneCfg = ZERO_CORRELATION_ZONE_CFG;
501    rachCfg.preambleRcvdTgtPwr = PRACH_PREAMBLE_RCVD_TGT_PWR;
502    rachCfg.preambleTransMax = RACH_ConfigGeneric__preambleTransMax_n200;
503    rachCfg.pwrRampingStep = RACH_ConfigGeneric__powerRampingStep_dB2;
504    rachCfg.raRspWindow = RACH_ConfigGeneric__ra_ResponseWindow_sl20;
505    rachCfg.numRaPreamble = NUM_RA_PREAMBLE;
506    rachCfg.ssbPerRachOccPresent = \
507       RACH_ConfigCommon__ssb_perRACH_OccasionAndCB_PreamblesPerSSB_PR_one;
508    rachCfg.numSsbPerRachOcc = SSB_PER_RACH;
509    rachCfg.contResTimer = RACH_ConfigCommon__ra_ContentionResolutionTimer_sf64;
510    rachCfg.rsrpThreshSsb = RSRP_THRESHOLD_SSB;
511    rachCfg.rootSeqIdxPresent = RACH_ConfigCommon__prach_RootSequenceIndex_PR_l139;
512    rachCfg.rootSeqIdx = ROOT_SEQ_IDX;
513    rachCfg.msg1Scs = PRACH_SUBCARRIER_SPACING ;
514    rachCfg.restrictedSetCfg = PRACH_RESTRICTED_SET_CFG;
515    srvCellCfgComm->ulCfg.rachCfg = rachCfg;
516
517    /* Configuring PUSCH Config Common for SIB1 */
518    puschCfg.present = BWP_UplinkCommon__pusch_ConfigCommon_PR_setup;
519    puschCfg.k2 = PUSCH_K2;
520    puschCfg.mapType = PUSCH_TimeDomainResourceAllocation__mappingType_typeA;
521    puschCfg.sliv = calcSliv(PUSCH_START_SYMBOL,PUSCH_LENGTH_SYMBOL);
522    puschCfg.msg3DeltaPreamble = PUSCH_MSG3_DELTA_PREAMBLE;
523    puschCfg.p0NominalWithGrant = PUSCH_P0_NOMINAL_WITH_GRANT;
524    srvCellCfgComm->ulCfg.puschCfg = puschCfg;
525
526    /* Configuring PUCCH Config Common for SIB1 */
527    pucchCfg.present = BWP_UplinkCommon__pucch_ConfigCommon_PR_setup;
528    pucchCfg.rsrcComm = PUCCH_RSRC_COMMON;
529    pucchCfg.grpHop = PUCCH_ConfigCommon__pucch_GroupHopping_neither;
530    pucchCfg.p0Nominal = PUCCH_P0_NOMINAL;
531    srvCellCfgComm->ulCfg.pucchCfg = pucchCfg;
532
533    /* Configuring TDD UL DL config common */
534    tddCfg.refScs = SubcarrierSpacing_kHz30;
535    tddCfg.txPrd = TDD_UL_DL_Pattern__dl_UL_TransmissionPeriodicity_ms5;
536    tddCfg.numDlSlots = NUM_DL_SLOTS;
537    tddCfg.numDlSymbols = NUM_DL_SYMBOLS;
538    tddCfg.numUlSlots = NUM_UL_SLOTS;
539    tddCfg.numUlSymbols = NUM_UL_SYMBOLS;
540    srvCellCfgComm->tddCfg = tddCfg;
541
542    srvCellCfgComm->ssbPosInBurst = 192;
543    srvCellCfgComm->ssbPrdServingCell = SSB_PERIODICITY_20MS;
544    srvCellCfgComm->ssPbchBlockPwr = SSB_PBCH_PWR;
545
546    return ROK;
547 }
548
549 /*******************************************************************
550  *
551  * @brief Configures the DU Parameters
552  *
553  * @details
554  *
555  *    Function : readCfg
556  *
557  *    Functionality:
558  *       - Initializes the DuCfg members.  
559  *       - Calls readMacCfg()  
560  *
561  * @params[in] system task ID
562  * @return ROK     - success
563  *         RFAILED - failure
564  *
565  * ****************************************************************/
566
567 uint8_t readCfg()
568 {
569    uint8_t i,j,k;
570    uint32_t ipv4_du, ipv4_cu, ipv4_ric;
571    MibParams mib;
572    Sib1Params sib1;     
573
574 #ifdef O1_ENABLE
575    if( getStartupConfig(&g_cfg) != ROK )
576    {
577       RETVALUE(RFAILED);
578    }
579    cmInetAddr((S8*)g_cfg.DU_IPV4_Addr, &ipv4_du);
580    cmInetAddr((S8*)g_cfg.CU_IPV4_Addr, &ipv4_cu);
581    cmInetAddr((S8*)g_cfg.RIC_IPV4_Addr, &ipv4_ric);
582
583    duCfgParam.sctpParams.cuPort = g_cfg.CU_Port;
584    duCfgParam.sctpParams.ricPort = g_cfg.RIC_Port;
585 #else   
586    cmInetAddr((S8*)DU_IP_V4_ADDR, &ipv4_du);
587    cmInetAddr((S8*)CU_IP_V4_ADDR, &ipv4_cu);
588    cmInetAddr((S8*)RIC_IP_V4_ADDR, &ipv4_ric);
589
590    duCfgParam.sctpParams.cuPort = CU_PORT;
591    duCfgParam.sctpParams.ricPort = RIC_PORT;
592 #endif
593
594    fillDuPort(duCfgParam.sctpParams.duPort);
595
596    /* F1 DU IP Address and Port*/
597    duCfgParam.sctpParams.duIpAddr.ipV4Addr = ipv4_du;
598
599    /* F1 CU IP Address and Port*/
600    duCfgParam.sctpParams.cuIpAddr.ipV4Addr = ipv4_cu;
601
602    /* Fill RIC Params */
603    duCfgParam.sctpParams.ricIpAddr.ipV4Addr = ipv4_ric;
604
605    /* EGTP Parameters */
606    duCfgParam.egtpParams.localIp.ipV4Pres = TRUE;
607    duCfgParam.egtpParams.localIp.ipV4Addr = ipv4_du;
608    duCfgParam.egtpParams.localPort = DU_EGTP_PORT;
609    duCfgParam.egtpParams.destIp.ipV4Pres = TRUE;
610    duCfgParam.egtpParams.destIp.ipV4Addr = ipv4_cu;
611    duCfgParam.egtpParams.destPort = CU_EGTP_PORT;
612    duCfgParam.egtpParams.minTunnelId = 0;
613    duCfgParam.egtpParams.maxTunnelId = 10;
614
615    duCfgParam.maxUe = 32; //TODO: Check
616    /* DU Info */        
617    duCfgParam.duId = DU_ID;     
618    strcpy((char*)duCfgParam.duName,DU_NAME);
619
620    /* Mib Params */
621    mib.sysFrmNum = SYS_FRAME_NUM;
622    mib.subCarrierSpacingCommon = MIB__subCarrierSpacingCommon_scs15or60;
623    mib.ssb_SubcarrierOffset = SSB_SC_OFFSET; 
624    mib.dmrs_TypeA_Position = MIB__dmrs_TypeA_Position_pos2;
625    mib.controlResourceSetZero = CORESET_0_INDEX;
626    mib.searchSpaceZero = SEARCHSPACE_0_INDEX;
627    mib.cellBarred = MIB__cellBarred_notBarred;
628    mib.intraFreqReselection =
629       MIB__intraFreqReselection_notAllowed;
630    duCfgParam.mibParams = mib;
631
632    /* SIB1 Params */
633    memset(&sib1.plmn, 0, sizeof(Plmn));
634    sib1.plmn.mcc[0] = PLMN_MCC0;
635    sib1.plmn.mcc[1] = PLMN_MCC1;
636    sib1.plmn.mcc[2] = PLMN_MCC2;
637    sib1.plmn.mnc[0] = PLMN_MNC0;
638    sib1.plmn.mnc[1] = PLMN_MNC1;
639    sib1.tac = DU_TAC;
640    sib1.ranac = DU_RANAC;
641    sib1.cellIdentity = CELL_IDENTITY;
642    sib1.cellResvdForOpUse =\
643       PLMN_IdentityInfo__cellReservedForOperatorUse_notReserved;
644    sib1.connEstFailCnt = ConnEstFailureControl__connEstFailCount_n3;
645    sib1.connEstFailOffValidity =\
646       ConnEstFailureControl__connEstFailOffsetValidity_s120;
647    sib1.siSchedInfo.winLen = SI_SchedulingInfo__si_WindowLength_s5;
648    sib1.siSchedInfo.broadcastSta = \
649       SchedulingInfo__si_BroadcastStatus_broadcasting;
650    sib1.siSchedInfo.preiodicity = SchedulingInfo__si_Periodicity_rf8;
651    sib1.siSchedInfo.sibType = SIB_TypeInfo__type_sibType2;
652    sib1.siSchedInfo.sibValTag = SIB1_VALUE_TAG;
653
654    fillServCellCfgCommSib(&sib1.srvCellCfgCommSib);
655
656    duCfgParam.sib1Params = sib1;
657
658    for(i=0; i<DEFAULT_CELLS; i++)
659    { 
660       memset(&duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.nrCgi.plmn, 0, sizeof(Plmn));
661       duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.nrCgi.plmn.mcc[0] = PLMN_MCC0;
662       duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.nrCgi.plmn.mcc[1] = PLMN_MCC1;
663       duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.nrCgi.plmn.mcc[2] = PLMN_MCC2;
664       duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.nrCgi.plmn.mnc[0] = PLMN_MNC0;
665       duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.nrCgi.plmn.mnc[1] = PLMN_MNC1;
666
667       /*Cell ID */
668       duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.nrCgi.cellId = NR_CELL_ID;
669       duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.nrPci = NR_PCI;
670
671       /* List of Available PLMN */
672       for(j=0;j<MAX_PLMN;j++)
673       {
674          memset(&duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.plmn[j], 0, sizeof(Plmn));
675          duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.plmn[j].mcc[0] = PLMN_MCC0;
676          duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.plmn[j].mcc[1] = PLMN_MCC1;
677          duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.plmn[j].mcc[2] = PLMN_MCC2;
678          duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.plmn[j].mnc[0] = PLMN_MNC0;
679          duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.plmn[j].mnc[1] = PLMN_MNC1;
680       }
681       /* List of Extended PLMN */
682       for(j=0;j<MAX_PLMN;j++)
683       {
684          memset(&duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.extPlmn[j], 0, sizeof(Plmn));
685          duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.extPlmn[j].mcc[0] = PLMN_MCC0;
686          duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.extPlmn[j].mcc[1] = PLMN_MCC1;
687          duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.extPlmn[j].mcc[2] = PLMN_MCC2;
688          duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.extPlmn[j].mnc[0] = PLMN_MNC0;
689          duCfgParam.srvdCellLst[i].duCellInfo.cellInfo.extPlmn[j].mnc[1] = PLMN_MNC1;
690       } 
691
692       /* TAC and EPSTAC */
693       duCfgParam.srvdCellLst[i].duCellInfo.tac = DU_TAC;
694       duCfgParam.srvdCellLst[i].duCellInfo.epsTac = DU_TAC; //to check and fill
695       /* NR Mode info */
696       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.fdd.ulNrFreqInfo.nrArfcn = NR_UL_ARFCN;
697       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.fdd.ulNrFreqInfo.sulInfo.sulArfcn = SUL_ARFCN;
698       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.fdd.ulNrFreqInfo.sulInfo.sulTxBw.nrScs = SCS_15;
699       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.fdd.ulNrFreqInfo.sulInfo.sulTxBw.nrb = NRB_106;
700
701 #if 0
702       /* NR Mode info */
703       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.tdd.nrFreqInfo.nrArfcn = NR_ARFCN;
704       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.tdd.nrFreqInfo.sulInfo.sulArfcn = SUL_ARFCN;
705       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.tdd.nrFreqInfo.sulInfo.sulTxBw.nrScs = SCS_15;           
706       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.tdd.nrFreqInfo.sulInfo.sulTxBw.nrb = NRB_106;           
707
708       for(j=0;j<MAXNRCELLBANDS;j++)
709       {
710          duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.tdd.nrFreqInfo.freqBand[j].nrFreqBand = NR_FREQ_BAND;
711          for(k=0;k<MAXNRCELLBANDS;k++)
712          {
713             duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.tdd.nrFreqInfo.freqBand[j].sulBand[k] = SUL_BAND;  
714          }
715       }
716 #endif
717       for(j=0;j<MAXNRCELLBANDS;j++)
718       {
719          duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.fdd.ulNrFreqInfo.freqBand[j].nrFreqBand = NR_FREQ_BAND;
720          for(k=0;k<MAXNRCELLBANDS;k++)
721          {
722             duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.fdd.ulNrFreqInfo.freqBand[j].sulBand[k] = SUL_BAND;
723          }
724       }
725       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.fdd.dlNrFreqInfo.nrArfcn = NR_DL_ARFCN;
726       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.fdd.dlNrFreqInfo.sulInfo.sulArfcn = SUL_ARFCN;
727       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.fdd.dlNrFreqInfo.sulInfo.sulTxBw.nrScs = SCS_15;
728       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.fdd.dlNrFreqInfo.sulInfo.sulTxBw.nrb = NRB_106;
729       for(j=0;j<MAXNRCELLBANDS;j++)
730       {
731          duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.fdd.dlNrFreqInfo.freqBand[j].nrFreqBand = NR_FREQ_BAND;
732          for(k=0;k<MAXNRCELLBANDS;k++)
733          {
734             duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.fdd.dlNrFreqInfo.freqBand[j].sulBand[k] = SUL_BAND;
735          }
736       }
737
738       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.fdd.ulTxBw.nrScs = SCS_15;
739       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.fdd.ulTxBw.nrb = NRB_106;
740
741       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.fdd.dlTxBw.nrScs = SCS_15;
742       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.fdd.dlTxBw.nrb = NRB_106;
743
744 #if 0
745       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.tdd.nrTxBw.nrScs = SCS_15;
746       duCfgParam.srvdCellLst[i].duCellInfo.f1Mode.mode.tdd.nrTxBw.nrb = NRB_106;
747 #endif
748       /*Measurement Config and Cell Config */ 
749       duCfgParam.srvdCellLst[i].duCellInfo.measTimeCfg = TIME_CFG; 
750
751       duCfgParam.srvdCellLst[i].duCellInfo.cellDir = DL_UL; 
752
753       duCfgParam.srvdCellLst[i].duCellInfo.cellType=CELL_TYPE;
754
755       /* Broadcast PLMN Identity */
756       for(j=0;j<MAXBPLMNNRMINUS1;j++)
757       { 
758          for(k=0;k<MAX_PLMN;k++)
759          {
760             memset(&duCfgParam.srvdCellLst[i].duCellInfo.brdcstPlmnInfo[j].plmn[k], 0, sizeof(Plmn));
761             duCfgParam.srvdCellLst[i].duCellInfo.brdcstPlmnInfo[j].plmn[k].mcc[0] = PLMN_MCC0;
762             duCfgParam.srvdCellLst[i].duCellInfo.brdcstPlmnInfo[j].plmn[k].mcc[1] = PLMN_MCC1;
763             duCfgParam.srvdCellLst[i].duCellInfo.brdcstPlmnInfo[j].plmn[k].mcc[2] = PLMN_MCC2;
764             duCfgParam.srvdCellLst[i].duCellInfo.brdcstPlmnInfo[j].plmn[k].mnc[0] = PLMN_MNC0;
765             duCfgParam.srvdCellLst[i].duCellInfo.brdcstPlmnInfo[j].plmn[k].mnc[1] = PLMN_MNC1;                                         
766          }
767          /* Extended PLMN List */        
768          for(k=0;k<MAX_PLMN;k++)
769          {
770             memset(&duCfgParam.srvdCellLst[i].duCellInfo.brdcstPlmnInfo[j].extPlmn[k], 0, sizeof(Plmn));
771             duCfgParam.srvdCellLst[i].duCellInfo.brdcstPlmnInfo[j].extPlmn[k].mcc[0] = PLMN_MCC0;
772             duCfgParam.srvdCellLst[i].duCellInfo.brdcstPlmnInfo[j].extPlmn[k].mcc[1] = PLMN_MCC1;
773             duCfgParam.srvdCellLst[i].duCellInfo.brdcstPlmnInfo[j].extPlmn[k].mcc[2] = PLMN_MCC2;
774             duCfgParam.srvdCellLst[i].duCellInfo.brdcstPlmnInfo[j].extPlmn[k].mnc[0] = PLMN_MNC0;
775             duCfgParam.srvdCellLst[i].duCellInfo.brdcstPlmnInfo[j].extPlmn[k].mnc[1] = PLMN_MNC1;
776          }
777
778          duCfgParam.srvdCellLst[i].duCellInfo.brdcstPlmnInfo[j].tac = DU_TAC;
779          duCfgParam.srvdCellLst[i].duCellInfo.brdcstPlmnInfo[j].nrCellId = NR_CELL_ID;
780          duCfgParam.srvdCellLst[i].duCellInfo.brdcstPlmnInfo[j].ranac = NR_RANAC;
781       }
782
783       /*gnb DU System Info mib msg*/
784       BuildMibMsg();
785       DU_ALLOC(duCfgParam.srvdCellLst[i].duSysInfo.mibMsg, encBufSize);
786       if(!(duCfgParam.srvdCellLst[i].duSysInfo.mibMsg))
787       {
788          DU_LOG("\nERROR  -->  DU APP : Memory allocation failure at readCfg");
789          return RFAILED;
790       }
791       memcpy(duCfgParam.srvdCellLst[i].duSysInfo.mibMsg, encBuf, encBufSize);
792       duCfgParam.srvdCellLst[i].duSysInfo.mibLen = encBufSize;
793
794       /*gnb DU System Info mib msg*/
795       BuildSib1Msg();
796       DU_ALLOC(duCfgParam.srvdCellLst[i].duSysInfo.sib1Msg,\
797             encBufSize);
798       if(!(duCfgParam.srvdCellLst[i].duSysInfo.sib1Msg))
799       {
800          DU_LOG("\nERROR  -->  DU APP : Memory allocation failure at readCfg");
801          return RFAILED;
802       }
803       memcpy(duCfgParam.srvdCellLst[i].duSysInfo.sib1Msg,\
804             encBuf,encBufSize);
805       duCfgParam.srvdCellLst[i].duSysInfo.sib1Len = encBufSize;
806
807    }
808
809    if(readMacCfg() != ROK)
810    {
811       DU_LOG("\nERROR  -->  DU_APP : Failed while reading MAC config");
812       return RFAILED;
813    }
814
815    return ROK;
816 }
817
818 /*******************************************************************
819  *
820  * @brief Reads config and posts message to du_app on completion
821  *
822  * @details
823  *
824  *    Function : main
825  *
826  *    Functionality:
827  *      - Calls readCfg()
828  *      - Post to du_app for further processing
829  *
830  * @params[in] void
831  * @return ROK     - success
832  *         RFAILED - failure
833  *
834  * ****************************************************************/
835 uint8_t duReadCfg()
836 {
837    Pst pst;
838    Buffer *mBuf;
839
840    memset(&duCfgParam, 0, sizeof(DuCfgParams));
841    //Read configs into duCfgParams
842    if(readCfg() != ROK)
843    {
844       DU_LOG("\nERROR  -->  DU_APP : Reading configuration failed");
845       return RFAILED;
846    }
847
848    //Fill pst structure
849    memset(&(pst), 0, sizeof(Pst));
850    pst.srcEnt = (Ent)ENTDUAPP;
851    pst.srcInst = (Inst)DU_INST;
852    pst.srcProcId = DU_PROC;
853    pst.dstEnt = pst.srcEnt;
854    pst.dstInst = pst.srcInst;
855    pst.dstProcId = pst.srcProcId;
856    pst.event = EVTCFG;
857    pst.selector = ODU_SELECTOR_TC;
858    pst.pool= DU_POOL;
859
860
861    if(ODU_GET_MSG_BUF(DFLT_REGION, DU_POOL, &mBuf) != ROK)
862    {
863       DU_LOG("\nERROR  -->  DU_APP : Memory allocation failed in duReadCfg");
864       return RFAILED;
865    }
866
867    if (ODU_POST_TASK(&pst, mBuf) != ROK)
868    {
869       DU_LOG("\nERROR  -->  DU_APP : ODU_POST_TASK failed in duReadCfg");
870       return RFAILED;
871    }
872
873    return ROK;
874 }
875
876 /**********************************************************************
877   End of file
878  **********************************************************************/
879