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