Addressing flow wise comments
[o-du/l2.git] / src / du_app / du_cfg.c
index 7217d10..3afa2c7 100644 (file)
 
 /* This file contains all utility functions */
 #include "du_mgr.h"
+#include "du_sys_info_hdl.h"
 #include "MIB.h"
+#include "SearchSpace.h"
+#include "SIB-TypeInfo.h"
+#include "SchedulingInfo.h"
+#include "SI-SchedulingInfo.h"
+#include "ConnEstFailureControl.h"
 #include "PLMN-IdentityInfo.h"
 #include "odu_common_codec.h"
+#include "PDSCH-TimeDomainResourceAllocation.h"
+#include "BCCH-Config.h"
+#include "PagingCycle.h"
+#include "PCCH-Config.h"
+#include "TimeAlignmentTimer.h"
+#include "RACH-ConfigGeneric.h"
+#include "PUSCH-TimeDomainResourceAllocation.h"
+#include "PUCCH-ConfigCommon.h"
+#include "SubcarrierSpacing.h"
+#include "TDD-UL-DL-Pattern.h"
+#include "RACH-ConfigCommon.h"
+#include "BWP-DownlinkCommon.h"
+#include "BWP-UplinkCommon.h"
 
 extern DuCfgParams duCfgParam;
 extern char encBuf[ENC_BUF_MAX_LEN];
@@ -102,7 +121,7 @@ S16 readMacCfg()
 
    /* DL carrier configuration */
    duCfgParam.macCellCfg.dlCarrCfg.pres = TRUE;
-   duCfgParam.macCellCfg.dlCarrCfg.bw = SUL_ARFCN;
+   duCfgParam.macCellCfg.dlCarrCfg.bw = BANDWIDTH;
    duCfgParam.macCellCfg.dlCarrCfg.freq = NR_ARFCN;
    duCfgParam.macCellCfg.dlCarrCfg.k0[0] = 1;
    duCfgParam.macCellCfg.dlCarrCfg.k0[1] = 1;
@@ -140,37 +159,56 @@ S16 readMacCfg()
    duCfgParam.macCellCfg.ssbCfg.scsCmn = SUBCARRIER_SPACING;
    duCfgParam.macCellCfg.ssbCfg.ssbOffsetPointA = OFFSET_TO_POINT_A;
    duCfgParam.macCellCfg.ssbCfg.betaPss = BETA_PSS;
-   duCfgParam.macCellCfg.ssbCfg.ssbPeriod = SSB_PERIODICITTY;
+   duCfgParam.macCellCfg.ssbCfg.ssbPeriod = SSB_PERIODICITY;
    duCfgParam.macCellCfg.ssbCfg.ssbScOffset = SSB_SUBCARRIER_OFFSET;
-   duCfgParam.macCellCfg.ssbCfg.mibPdu[0] = 0x01;
-   duCfgParam.macCellCfg.ssbCfg.mibPdu[1] = 0x01;
-   duCfgParam.macCellCfg.ssbCfg.mibPdu[2] = 0x84;
    duCfgParam.macCellCfg.ssbCfg.ssbMask[0] = 1; /* only one SSB is transmitted */
    duCfgParam.macCellCfg.ssbCfg.ssbMask[1] = 0;
+   if(BuildMibPdu() != ROK)
+       {
+               DU_LOG("\nFailed to build MIB PDU");
+               memset(&duCfgParam.macCellCfg.ssbCfg.mibPdu, 0, 3*sizeof(uint8_t));
+   }
+       else
+       {
+          for(uint8_t idx=0; idx<encBufSize; idx++)
+               {
+                       duCfgParam.macCellCfg.ssbCfg.mibPdu[idx]=encBuf[idx];
+               }
+       }
    duCfgParam.macCellCfg.ssbCfg.multCarrBand = SSB_MULT_CARRIER_BAND;
    duCfgParam.macCellCfg.ssbCfg.multCellCarr = MULT_CELL_CARRIER;
 
    /* PRACH configuration */
    duCfgParam.macCellCfg.prachCfg.pres = TRUE;
+       duCfgParam.macCellCfg.prachCfg.prachCfgIdx = PRACH_CONFIG_IDX;
    duCfgParam.macCellCfg.prachCfg.prachSeqLen = PRACH_SEQ_LEN;
    duCfgParam.macCellCfg.prachCfg.prachSubcSpacing = PRACH_SUBCARRIER_SPACING;
    duCfgParam.macCellCfg.prachCfg.prachRstSetCfg = PRACH_RESTRICTED_SET_CFG;
-   duCfgParam.macCellCfg.prachCfg.prachFdm = NUM_PRACH_FDM;
+   duCfgParam.macCellCfg.prachCfg.msg1Fdm = NUM_PRACH_FDM;
+       duCfgParam.macCellCfg.prachCfg.msg1FreqStart = PRACH_FREQ_START;
+       duCfgParam.macCellCfg.prachCfg.rootSeqLen    = ROOT_SEQ_LEN;
    duCfgParam.macCellCfg.prachCfg.fdm[0].rootSeqIdx = ROOT_SEQ_IDX;
    duCfgParam.macCellCfg.prachCfg.fdm[0].numRootSeq = NUM_ROOT_SEQ;
    duCfgParam.macCellCfg.prachCfg.fdm[0].k1 = 1;
    duCfgParam.macCellCfg.prachCfg.fdm[0].zeroCorrZoneCfg = ZERO_CORRELATION_ZONE_CFG;
    duCfgParam.macCellCfg.prachCfg.fdm[0].numUnusedRootSeq = NUM_UNUSED_ROOT_SEQ;
-   DU_ALLOC(duCfgParam.macCellCfg.prachCfg.fdm[0].unsuedRootSeq, NUM_UNUSED_ROOT_SEQ * sizeof(U8));
-   if(duCfgParam.macCellCfg.prachCfg.fdm[0].unsuedRootSeq == NULLP)
-   {
-      DU_LOG("\nDU_APP : Memory allocation failed");
-      RETVALUE(RFAILED);
-   }
-   *(duCfgParam.macCellCfg.prachCfg.fdm[0].unsuedRootSeq) = UNUSED_ROOT_SEQ;
+       if(duCfgParam.macCellCfg.prachCfg.fdm[0].numUnusedRootSeq != 0)
+       {
+               DU_ALLOC(duCfgParam.macCellCfg.prachCfg.fdm[0].unsuedRootSeq, 
+                               NUM_UNUSED_ROOT_SEQ * sizeof(U8));
+               if(duCfgParam.macCellCfg.prachCfg.fdm[0].unsuedRootSeq == NULLP)
+               {
+                       DU_LOG("\nDU_APP : Memory allocation failed");
+                       RETVALUE(RFAILED);
+               }
+               *(duCfgParam.macCellCfg.prachCfg.fdm[0].unsuedRootSeq) = UNUSED_ROOT_SEQ;
+       }
    duCfgParam.macCellCfg.prachCfg.ssbPerRach = SSB_PER_RACH;
    duCfgParam.macCellCfg.prachCfg.prachMultCarrBand = PRACH_MULT_CARRIER_BAND;
-
+   duCfgParam.macCellCfg.prachCfg.raContResTmr = RA_CONT_RES_TIMER;
+       duCfgParam.macCellCfg.prachCfg.rsrpThreshSsb = RSRP_THRESHOLD_SSB;
+       duCfgParam.macCellCfg.prachCfg.raRspWindow = RA_RSP_WINDOW;
+   duCfgParam.macCellCfg.prachCfg.prachRestrictedSet = PRACH_RESTRICTED_SET;
    /* TDD configuration */
    duCfgParam.macCellCfg.tddCfg.pres = TRUE;
    duCfgParam.macCellCfg.tddCfg.tddPeriod = TDD_PERIODICITY;
@@ -191,6 +229,51 @@ S16 readMacCfg()
    duCfgParam.macCellCfg.sib1Cfg.searchSpaceZeroIndex = SEARCHSPACE_0_INDEX;
    duCfgParam.macCellCfg.sib1Cfg.sib1Mcs = SIB1_MCS;
 
+
+   /* fill Intial DL BWP */
+   duCfgParam.macCellCfg.initialDlBwp.bwp.firstPrb = 0;
+   duCfgParam.macCellCfg.initialDlBwp.bwp.numPrb = TOTAL_PRB_BW; /* configured to total BW */
+   duCfgParam.macCellCfg.initialDlBwp.bwp.scs = SUBCARRIER_SPACING; /* numerology is 0, 15Khz */
+   duCfgParam.macCellCfg.initialDlBwp.bwp.cyclicPrefix = NORMAL_CYCLIC_PREFIX;
+   duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.searchSpaceId = SEARCHSPACE_1_INDEX;
+   duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.coresetId = CORESET_0_INDEX;
+   duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.monitoringSlot =
+          SS_MONITORING_SLOT_SL1; /* sl1 - all slots */
+   duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.duration = 0;
+   duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.monitoringSymbol =
+          SS_MONITORING_SYMBOL;
+   duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.
+          candidate.aggLevel1  = 8;
+   duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.
+          candidate.aggLevel2  = 4;
+   duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.
+          candidate.aggLevel4  = 2;
+   duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.
+          candidate.aggLevel8  = 1;
+   duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.
+          candidate.aggLevel16 = 0;
+   duCfgParam.macCellCfg.initialDlBwp.pdschCommon.k0 = PDSCH_K0;
+       duCfgParam.macCellCfg.initialDlBwp.pdschCommon.mappingType = 
+          PDSCH_MAPPING_TYPE_A;
+       duCfgParam.macCellCfg.initialDlBwp.pdschCommon.startSymbol = 
+          PDSCH_START_SYMBOL;
+       duCfgParam.macCellCfg.initialDlBwp.pdschCommon.lengthSymbol =
+          PDSCH_LENGTH_SYMBOL;
+       /* ra-searchSpace ID is set to 1 */
+   duCfgParam.macCellCfg.initialDlBwp.pdcchCommon.raSearchSpaceId = SEARCHSPACE_1_INDEX;
+   /* fill Intial UL BWP */
+   duCfgParam.macCellCfg.initialUlBwp.bwp.firstPrb = 0;
+   duCfgParam.macCellCfg.initialUlBwp.bwp.numPrb = TOTAL_PRB_BW; /* configured to total BW */
+   duCfgParam.macCellCfg.initialUlBwp.bwp.scs = SUBCARRIER_SPACING; /* numerology is 0, 15Khz */
+   duCfgParam.macCellCfg.initialUlBwp.bwp.cyclicPrefix = NORMAL_CYCLIC_PREFIX;
+   duCfgParam.macCellCfg.initialUlBwp.puschCommon.k2 = PUSCH_K2;
+       duCfgParam.macCellCfg.initialUlBwp.puschCommon.mappingType = 
+          PUSCH_MAPPING_TYPE_A;
+       duCfgParam.macCellCfg.initialUlBwp.puschCommon.startSymbol = 
+          PUSCH_START_SYMBOL;
+       duCfgParam.macCellCfg.initialUlBwp.puschCommon.lengthSymbol =
+          PUSCH_LENGTH_SYMBOL;
+
    /* This should be calculated based on
       (number of mandatory parameters) + (number of otional parameters being filled) */
    duCfgParam.macCellCfg.numTlv = 39;
@@ -198,29 +281,198 @@ S16 readMacCfg()
    RETVALUE(ROK);
 }
 
+/*******************************************************************
+*
+* @brief Configures the DU Parameters
+*
+* @details
+*
+*    Function : fillDuPort
+*
+*    Functionality:
+*       - fills the DU Ports.  
+*
+* @params[in] duPort array to be filled
+* @return ROK     - success
+*         RFAILED - failure
+*
+* ****************************************************************/
+S16 fillDuPort(U16 *duPort)
+{
+       duPort[F1_INTERFACE]   = DU_PORT;     /* DU Port idx  0 38472 */
+       duPort[E2_INTERFACE]   = RIC_PORT;    /* RIC Port idx 1 38482 */
+
+       RETVALUE(ROK);
+}
+
+/*******************************************************************
+*
+* @brief Configures the DU Parameters
+*
+* @details
+*
+*    Function : calcSliv
+*
+*    Functionality:
+*       - calculate SLIV value from start and length field
+*
+* @params[in] start symbol
+* @params[in] length of symbols
+* @return SLIV value
+*
+* ****************************************************************/
+uint16_t calcSliv(uint8_t startSymbol, uint8_t lengthSymbol)
+{
+   uint16_t sliv = 0;
+       if((lengthSymbol-1) <= 7)
+       {
+          sliv = 14 * (lengthSymbol-1) + startSymbol;
+       }
+       else
+       {
+          sliv = 14 * (14-lengthSymbol+1) + (14-1-startSymbol);
+       }
+       return sliv;
+}
+
+
 /*******************************************************************
  *
- * @brief Configures the DU Parameters
+ * @brief Configures serving cell config common in sib1
  *
  * @details
  *
- *    Function : fillDuPort
+ *    Function : fillServCellCfgCommSib
  *
  *    Functionality:
- *       - fills the DU Ports.  
+ *       - fills Serving cell config common for SIB1
  *
- * @params[in] duPort array to be filled
+ * @params[in] SrvCellCfgCommSib pointer
  * @return ROK     - success
  *         RFAILED - failure
- *
- * ****************************************************************/
-
-S16 fillDuPort(U16 *duPort)
+ * 
+ ** ****************************************************************/
+S16 fillServCellCfgCommSib(SrvCellCfgCommSib *srvCellCfgComm)
 {
-   duPort[F1_INTERFACE]   = DU_PORT;     /* DU Port idx  0 38472 */
-   duPort[E2_INTERFACE]   = RIC_PORT;    /* RIC Port idx 1 38482 */
+   PdcchCfgCommon   pdcchCfg;
+   PdschCfgCommon   pdschCfg;
+   PcchCfg          pcchCfg;
+   RachCfgCommon    rachCfg;
+   PuschCfgCommon   puschCfg;
+   PucchCfgCommon   pucchCfg;
+   TddUlDlCfgCommon   tddCfg;
+
+   /* Configuring DL Config Common for SIB1*/
+   srvCellCfgComm->dlCfg.freqBandInd = NR_FREQ_BAND_IND; 
+   srvCellCfgComm->dlCfg.offsetToPointA = OFFSET_TO_POINT_A;
+   srvCellCfgComm->dlCfg.dlScsCarrier.scsOffset = SSB_SUBCARRIER_OFFSET;
+   srvCellCfgComm->dlCfg.dlScsCarrier.scs = SUBCARRIER_SPACING;
+   srvCellCfgComm->dlCfg.dlScsCarrier.scsBw = SCS_CARRIER_BANDWIDTH;
+   srvCellCfgComm->dlCfg.locAndBw = FREQ_LOC_BW;
+   
+   /* Configuring PDCCH Config Common For SIB1 */
+   pdcchCfg.present = BWP_DownlinkCommon__pdcch_ConfigCommon_PR_setup;
+   pdcchCfg.ctrlRsrcSetZero = PDCCH_CTRL_RSRC_SET_ZERO;
+   pdcchCfg.searchSpcZero = PDCCH_SEARCH_SPACE_ZERO;
+   pdcchCfg.searchSpcId = PDCCH_SEARCH_SPACE_ID;
+   pdcchCfg.ctrlRsrcSetId = PDCCH_CTRL_RSRC_SET_ID;
+   pdcchCfg.monitorSlotPrdAndOffPresent = \
+      SearchSpace__monitoringSlotPeriodicityAndOffset_PR_sl1;
+   //pdcchCfg.monitorSlotPrdAndOff = \
+      SearchSpace__monitoringSlotPeriodicityAndOffset_PR_sl1;
+   pdcchCfg.monitorSymbolsInSlot[0] = 128;
+   pdcchCfg.monitorSymbolsInSlot[1] = 0;
+   pdcchCfg.numCandAggLvl1 = SearchSpace__nrofCandidates__aggregationLevel1_n8;
+   pdcchCfg.numCandAggLvl2 = SearchSpace__nrofCandidates__aggregationLevel2_n4;
+   pdcchCfg.numCandAggLvl4 = SearchSpace__nrofCandidates__aggregationLevel4_n2;
+   pdcchCfg.numCandAggLvl8 = SearchSpace__nrofCandidates__aggregationLevel8_n1;
+   pdcchCfg.numCandAggLvl16 = SearchSpace__nrofCandidates__aggregationLevel16_n0;
+   pdcchCfg.searchSpcType = SearchSpace__searchSpaceType_PR_common;
+   pdcchCfg.commSrchSpcDciFrmt = PDCCH_SERACH_SPACE_DCI_FORMAT;
+   pdcchCfg.searchSpcSib1 = PDCCH_SEARCH_SPACE_ID_SIB1;
+   pdcchCfg.pagingSearchSpc = PDCCH_SEARCH_SPACE_ID_PAGING;
+   pdcchCfg.raSearchSpc = PDCCH_SEARCH_SPACE_ID_PAGING;
+   srvCellCfgComm->dlCfg.pdcchCfg = pdcchCfg;
+
+   /* Configuring PDSCH Config Common For SIB1 */
+   pdschCfg.present = BWP_DownlinkCommon__pdsch_ConfigCommon_PR_setup;
+   pdschCfg.k0 = PDSCH_K0;
+   pdschCfg.mapType = \
+      PDSCH_TimeDomainResourceAllocation__mappingType_typeA;
+   pdschCfg.sliv = calcSliv(PDSCH_START_SYMBOL,PDSCH_LENGTH_SYMBOL);
+   srvCellCfgComm->dlCfg.pdschCfg = pdschCfg;
+
+   /* Configuring BCCH Config for SIB1 */
+   srvCellCfgComm->dlCfg.bcchCfg.modPrdCoeff = \
+      BCCH_Config__modificationPeriodCoeff_n16;
+
+   /* Configuring PCCH Config for SIB1 */
+   pcchCfg.dfltPagingCycle = PagingCycle_rf64;
+   pcchCfg.nAndPagingFrmOffPresent = PCCH_Config__nAndPagingFrameOffset_PR_oneT;
+   pcchCfg.numPagingOcc = PCCH_Config__ns_four;
+   srvCellCfgComm->dlCfg.pcchCfg = pcchCfg;
+
+
+   /* Configuring UL Config Common */
+   srvCellCfgComm->ulCfg.ulScsCarrier.scsOffset = SSB_SUBCARRIER_OFFSET;
+   srvCellCfgComm->ulCfg.ulScsCarrier.scs = SUBCARRIER_SPACING;
+   srvCellCfgComm->ulCfg.ulScsCarrier.scsBw = SCS_CARRIER_BANDWIDTH;
+   srvCellCfgComm->ulCfg.pMax = UL_P_MAX;
+   srvCellCfgComm->ulCfg.locAndBw = FREQ_LOC_BW;
+   srvCellCfgComm->ulCfg.timeAlignTimerComm = TimeAlignmentTimer_infinity;
+
+   /* Configuring RACH Config Common for SIB1 */
+   rachCfg.present = BWP_UplinkCommon__rach_ConfigCommon_PR_setup;
+   rachCfg.prachCfgIdx = PRACH_CONFIG_IDX;
+   rachCfg.msg1Fdm = RACH_ConfigGeneric__msg1_FDM_one;
+   rachCfg.msg1FreqStart = PRACH_FREQ_START;
+   rachCfg.zeroCorrZoneCfg = ZERO_CORRELATION_ZONE_CFG;
+   rachCfg.preambleRcvdTgtPwr = PRACH_PREAMBLE_RCVD_TGT_PWR;
+   rachCfg.preambleTransMax = RACH_ConfigGeneric__preambleTransMax_n200;
+   rachCfg.pwrRampingStep = RACH_ConfigGeneric__powerRampingStep_dB2;
+   rachCfg.raRspWindow = RACH_ConfigGeneric__ra_ResponseWindow_sl20;
+   rachCfg.numRaPreamble = NUM_RA_PREAMBLE;
+   rachCfg.ssbPerRachOccPresent = \
+      RACH_ConfigCommon__ssb_perRACH_OccasionAndCB_PreamblesPerSSB_PR_one;
+   rachCfg.numSsbPerRachOcc = SSB_PER_RACH;
+   rachCfg.contResTimer = RACH_ConfigCommon__ra_ContentionResolutionTimer_sf64;
+   rachCfg.rsrpThreshSsb = RSRP_THRESHOLD_SSB;
+   rachCfg.rootSeqIdxPresent = RACH_ConfigCommon__prach_RootSequenceIndex_PR_l139;
+   rachCfg.rootSeqIdx = ROOT_SEQ_IDX;
+   rachCfg.msg1Scs = PRACH_SUBCARRIER_SPACING ;
+   rachCfg.restrictedSetCfg = PRACH_RESTRICTED_SET_CFG;
+   srvCellCfgComm->ulCfg.rachCfg = rachCfg;
+
+   /* Configuring PUSCH Config Common for SIB1 */
+   puschCfg.present = BWP_UplinkCommon__pusch_ConfigCommon_PR_setup;
+   puschCfg.k2 = PUSCH_K2;
+   puschCfg.mapType = PUSCH_TimeDomainResourceAllocation__mappingType_typeA;
+   puschCfg.sliv = calcSliv(PUSCH_START_SYMBOL,PUSCH_LENGTH_SYMBOL);
+   puschCfg.msg3DeltaPreamble = PUSCH_MSG3_DELTA_PREAMBLE;
+   puschCfg.p0NominalWithGrant = PUSCH_P0_NOMINAL_WITH_GRANT;
+   srvCellCfgComm->ulCfg.puschCfg = puschCfg;
+
+   /* Configuring PUCCH Config Common for SIB1 */
+   pucchCfg.present = BWP_UplinkCommon__pucch_ConfigCommon_PR_setup;
+   pucchCfg.rsrcComm = PUCCH_RSRC_COMMON;
+   pucchCfg.grpHop = PUCCH_ConfigCommon__pucch_GroupHopping_neither;
+   pucchCfg.p0Nominal = PUCCH_P0_NOMINAL;
+   srvCellCfgComm->ulCfg.pucchCfg = pucchCfg;
+
+   /* Configuring TDD UL DL config common */
+   tddCfg.refScs = SubcarrierSpacing_kHz30;
+   tddCfg.txPrd = TDD_UL_DL_Pattern__dl_UL_TransmissionPeriodicity_ms2p5;
+   tddCfg.numDlSlots = NUM_DL_SLOTS;
+   tddCfg.numDlSymbols = NUM_DL_SYMBOLS;
+   tddCfg.numUlSlots = NUM_UL_SLOTS;
+   tddCfg.numUlSymbols = NUM_UL_SYMBOLS;
+   srvCellCfgComm->tddCfg = tddCfg;
+
+   srvCellCfgComm->ssbPosInBurst = 192;
+   srvCellCfgComm->ssbPrdServingCell = SSB_PERIODICITY;
+   srvCellCfgComm->ssPbchBlockPwr = SSB_PBCH_PWR;
 
-   RETVALUE(ROK);
+   return ROK;
 }
 
 /*******************************************************************
@@ -250,8 +502,8 @@ S16 readCfg()
 
    cmInetAddr((S8*)DU_IP_V4_ADDR, &ipv4_du);
    cmInetAddr((S8*)CU_IP_V4_ADDR, &ipv4_cu);
-   cmInetAddr((S8*)RIC_IP_V4_ADDR, &ipv4_ric);
-   fillDuPort(duCfgParam.sctpParams.duPort);
+       cmInetAddr((S8*)RIC_IP_V4_ADDR, &ipv4_ric);
+       fillDuPort(duCfgParam.sctpParams.duPort);
 
    /* F1 DU IP Address and Port*/
    duCfgParam.sctpParams.duIpAddr.ipV4Addr = ipv4_du;
@@ -260,11 +512,9 @@ S16 readCfg()
    duCfgParam.sctpParams.cuIpAddr.ipV4Addr = ipv4_cu;
    duCfgParam.sctpParams.cuPort = CU_PORT;
 
-   /* Fill RIC Params */
-   duCfgParam.sctpParams.ricIpAddr.ipV4Addr = ipv4_ric;
-   duCfgParam.sctpParams.ricPort            = RIC_PORT;
-
-
+       /* Fill RIC Params */
+       duCfgParam.sctpParams.ricIpAddr.ipV4Addr = ipv4_ric;
+       duCfgParam.sctpParams.ricPort            = RIC_PORT;
    /* EGTP Parameters */
    duCfgParam.egtpParams.localIp.ipV4Pres = TRUE;
    duCfgParam.egtpParams.localIp.ipV4Addr = ipv4_du;
@@ -302,8 +552,20 @@ S16 readCfg()
        sib1.tac = DU_TAC;
        sib1.ranac = DU_RANAC;
        sib1.cellIdentity = CELL_IDENTITY;
-       sib1.cellResvdForOpUse =\ 
+       sib1.cellResvdForOpUse =\
                PLMN_IdentityInfo__cellReservedForOperatorUse_notReserved;
+   sib1.connEstFailCnt = ConnEstFailureControl__connEstFailCount_n3;
+   sib1.connEstFailOffValidity =\
+      ConnEstFailureControl__connEstFailOffsetValidity_s120;
+   sib1.siSchedInfo.winLen = SI_SchedulingInfo__si_WindowLength_s5;
+   sib1.siSchedInfo.broadcastSta = \
+      SchedulingInfo__si_BroadcastStatus_broadcasting;
+   sib1.siSchedInfo.preiodicity = SchedulingInfo__si_Periodicity_rf8;
+   sib1.siSchedInfo.sibType = SIB_TypeInfo__type_sibType2;
+   sib1.siSchedInfo.sibValTag = SIB1_VALUE_TAG;
+
+   fillServCellCfgCommSib(&sib1.srvCellCfgCommSib);
+
        duCfgParam.sib1Params = sib1;
 
    for(i=0; i<DEFAULT_CELLS; i++)
@@ -440,8 +702,8 @@ S16 readCfg()
          DU_LOG("\nDU_APP: Memory allocation failure");
                        return RFAILED;
                }
-               strcpy(duCfgParam.srvdCellLst[i].duSysInfo.mibMsg, encBuf);
-                duCfgParam.srvdCellLst[i].duSysInfo.mibLen = encBufSize;
+      strcpy((char *)duCfgParam.srvdCellLst[i].duSysInfo.mibMsg, encBuf);
+      duCfgParam.srvdCellLst[i].duSysInfo.mibLen = encBufSize;
 
       /*gnb DU System Info mib msg*/
       BuildSib1Msg();
@@ -543,21 +805,21 @@ S16 duReadCfg()
  * ****************************************************************/
 S16 bitStringToInt(BIT_STRING_t *bitString, U16 *val)
 {
-   U16 numOctets, idx;
+   U16 idx;
    if(bitString->buf == NULL || bitString->size <= 0)
    {
       DU_LOG("\nDU_APP : Bit string is empty");
       return RFAILED;
    }
 
-   for(idx=0; idx<bitString->size-1; idx++)
+   for(idx=0; idx< bitString->size-1; idx++)
    {
       *val |= bitString->buf[idx];
       *val <<= 8;
    }
 
    *val |= bitString->buf[idx];
-   *val >>= bitString->bits_unused;
+       *val >>= bitString->bits_unused;
 
    return ROK;
 }