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