[Epic-ID: ODUHIGH-538][Issue-ID: ODUHIGH-575] Deallocating the variables allocated...
[o-du/l2.git] / src / 5gnrmac / mac_cfg_hdl.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 /* This file stores handler for MAC and SCH configuration requests */
19 /* header include files (.h) */
20 #include "common_def.h"
21 #include "lrg.h"
22 #include "lrg.x"
23 #include "du_app_mac_inf.h"
24 #include "mac_sch_interface.h"
25 #include "lwr_mac_upr_inf.h"
26 #include "mac.h"
27 #include "rlc_mac_inf.h"
28 #include "mac_upr_inf_api.h"
29 #include "lwr_mac.h"
30 #include "lwr_mac_fsm.h"
31 #include "mac_utils.h"
32 #include "lwr_mac_phy.h"
33
34 uint8_t ssbPeriodicity[6] = {5, 10, 20, 40, 80, 160};
35
36 uint8_t MacSchCellCfgReq(Pst *pst, MacCellCfg  *macCellCfg);
37
38 packMacCellCfgConfirm packMacCellCfmOpts[] =
39 {
40    packMacCellCfgCfm,      /* packing for loosely coupled */
41    duHandleMacCellCfgCfm,      /* packing for tightly coupled */
42    packMacCellCfgCfm,    /* packing for light weight loosly coupled */
43 };
44
45 MacDuCellDeleteRspFunc macDuCellDeleteRspOpts[] =
46 {
47    packDuMacCellDeleteRsp,   /* packing for loosely coupled */
48    DuProcMacCellDeleteRsp,   /* packing for tightly coupled */
49    packDuMacCellDeleteRsp   /* packing for light weight loosly coupled */
50 };
51
52 MacDuSliceCfgRspFunc macDuSliceCfgRspOpts[] =
53 {
54    packDuMacSliceCfgRsp,   /* packing for loosely coupled */
55    DuProcMacSliceCfgRsp,   /* packing for tightly coupled */
56    packDuMacSliceCfgRsp   /* packing for light weight loosly coupled */
57 };
58
59 MacDuSliceRecfgRspFunc macDuSliceRecfgRspOpts[] =
60 {
61    packDuMacSliceRecfgRsp,   /* packing for loosely coupled */
62    DuProcMacSliceRecfgRsp,   /* packing for tightly coupled */
63    packDuMacSliceRecfgRsp    /* packing for light weight loosly coupled */
64 };
65
66 MacDuStatsRspFunc macDuStatsRspOpts[] =
67 {
68    packDuMacStatsRsp,   /* packing for loosely coupled */
69    DuProcMacStatsRsp,   /* packing for tightly coupled */
70    packDuMacStatsRsp   /* packing for light weight loosly coupled */
71 };
72
73 MacDuStatsDeleteRspFunc macDuStatsDeleteRspOpts[] =
74 {
75    packDuMacStatsDeleteRsp,   /* packing for loosely coupled */
76    DuProcMacStatsDeleteRsp,   /* packing for tightly coupled */
77    packDuMacStatsDeleteRsp   /* packing for light weight loosly coupled */
78 };
79
80 MacDuStatsModificationRspFunc macDuStatsModificationRspOpts[] =
81 {
82    packDuMacStatsModificationRsp,   /* packing for loosely coupled */
83    DuProcMacStatsModificationRsp,   /* packing for tightly coupled */
84    packDuMacStatsModificationRsp   /* packing for light weight loosly coupled */
85 };
86
87 /**
88  * @brief Layer Manager  Configuration request handler for Scheduler
89  *
90  * @details
91  *
92  *     Function : MacSchGenCfgReq
93  *
94  *     This function receives general configurations for Scheduler
95  *     from DU APP and forwards to Scheduler.
96  *
97  *  @param[in]  Pst *pst, the post structure
98  *  @param[in]  RgMngmt *cfg, the configuration parameter's structure
99  *  @return 
100  *      -# ROK
101  **/
102 uint8_t MacSchGenCfgReq(Pst *pst, RgMngmt *cfg)
103 {
104    Pst schPst;
105
106    DU_LOG("\nINFO  -->  MAC : Received Scheduler gen config at MAC");
107    memset(&schPst, 0, sizeof(Pst));
108    FILL_PST_MAC_TO_SCH(schPst, EVENT_SCH_GEN_CFG);
109    
110    return(SchMessageRouter(&schPst, (void *)cfg));
111 }
112
113 /**
114  * @brief Layer Manager Configuration response from Scheduler
115  *
116  * @details
117  *
118  *     Function : SchSendCfgCfm
119  *
120  *     This function sends general configurations response from
121  *     Scheduler to DU APP.
122  *
123  *  @param[in]  Pst *pst, the post structure
124  *  @param[in]  RgMngmt *cfm, the configuration confirm structure
125  *  @return 
126  *      -# ROK
127  **/
128 uint8_t SchSendCfgCfm(Pst *pst, RgMngmt  *cfm)
129 {
130    DU_LOG("\nDEBUG  -->  MAC : Sending Scheduler config confirm to DU APP");
131    pst->dstEnt = ENTDUAPP;
132    pst->dstInst = 0;
133    pst->srcInst = 0;
134    pst->selector = ODU_SELECTOR_LC;
135    RgMiLrgSchCfgCfm(pst, cfm);
136
137    return ROK;
138 }
139
140 /**
141  * @brief Layer Manager Configuration request handler.
142  *
143  * @details
144  *
145  *     Function : MacProcCellCfgReq
146  *
147  *     This function handles the gNB and cell configuration
148  *     request received from DU APP.
149  *     This API unapcks and forwards the config towards SCH
150  *
151  *  @param[in]  Pst           *pst
152  *  @param[in]  MacCellCfg    *macCellCfg
153  *  @return  
154  *      -# ROK
155  **/
156 uint8_t MacProcCellCfgReq(Pst *pst, MacCellCfg *macCellCfg)
157 {
158    Pst cfmPst;
159    uint16_t cellIdx, scsInKhz = 0;
160    uint8_t ret = ROK, plmnIdx = 0,sliceIdx = 0;
161    MacCellCb     *macCellCb;
162
163    memset((uint8_t *)&cfmPst, 0, sizeof(Pst));
164
165    MAC_ALLOC(macCellCb, sizeof(MacCellCb));
166    if(macCellCb == NULLP)
167    {
168       DU_LOG("\nERROR  -->  MAC : macCellCb is NULL at handling of macCellCfg\n");
169       return RFAILED;
170    }
171    memset(macCellCb, 0, sizeof(MacCellCb));
172
173    GET_CELL_IDX(macCellCfg->cellId, cellIdx);
174    macCb.macCell[cellIdx] = macCellCb;
175    macCb.macCell[cellIdx]->cellId = macCellCfg->cellId;
176    scsInKhz = convertScsEnumValToScsVal(macCellCfg->cellCfg.subCarrSpacing);
177    
178    /*Ref : 3GPP 38.211 Table 4.2-1: SCS = (2 ^ numerology * 15kHz)*/
179    macCb.macCell[cellIdx]->numerology = log2(scsInKhz/BASE_SCS);
180    macCb.macCell[cellIdx]->numOfSlots = 10 * (1 << (macCb.macCell[cellIdx]->numerology));
181    memcpy(&macCb.macCell[cellIdx]->macCellCfg, macCellCfg, sizeof(MacCellCfg));
182
183    MAC_ALLOC(macCb.macCell[cellIdx]->macCellCfg.cellCfg.sib1Cfg.sib1Pdu, \
184          macCb.macCell[cellIdx]->macCellCfg.cellCfg.sib1Cfg.sib1PduLen);
185    if(macCb.macCell[cellIdx]->macCellCfg.cellCfg.sib1Cfg.sib1Pdu == NULLP)
186    {
187       DU_LOG("\nERROR  -->  MAC : macCellCb is NULL at handling of sib1Pdu of macCellCfg\n");
188       return RFAILED;
189    }
190    memcpy(macCb.macCell[cellIdx]->macCellCfg.cellCfg.sib1Cfg.sib1Pdu, macCellCfg->cellCfg.sib1Cfg.sib1Pdu, \
191          macCb.macCell[cellIdx]->macCellCfg.cellCfg.sib1Cfg.sib1PduLen);
192
193    for(plmnIdx = 0; plmnIdx < MAX_PLMN; plmnIdx++)
194    {
195       macCb.macCell[cellIdx]->macCellCfg.cellCfg.plmnInfoList[plmnIdx].suppSliceList.numSupportedSlices = macCellCfg->cellCfg.plmnInfoList[plmnIdx].suppSliceList.numSupportedSlices;
196       MAC_ALLOC(macCb.macCell[cellIdx]->macCellCfg.cellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai, macCb.macCell[cellIdx]->macCellCfg.cellCfg.plmnInfoList[plmnIdx].suppSliceList.numSupportedSlices\
197             * sizeof(Snssai*));
198       if(macCb.macCell[cellIdx]->macCellCfg.cellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai == NULLP)
199       {
200          DU_LOG("\nERROR  --> MAC: Memory allocation failed at MacProcCellCfgReq");
201          return RFAILED;
202       }
203
204       if(macCb.macCell[cellIdx]->macCellCfg.cellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai)
205       {
206          for(sliceIdx=0; sliceIdx<macCb.macCell[cellIdx]->macCellCfg.cellCfg.plmnInfoList[plmnIdx].suppSliceList.numSupportedSlices; sliceIdx++)
207          {
208             if(macCellCfg->cellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai[sliceIdx])
209             {
210                MAC_ALLOC(macCb.macCell[cellIdx]->macCellCfg.cellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai[sliceIdx], sizeof(Snssai));
211                if(!macCb.macCell[cellIdx]->macCellCfg.cellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai[sliceIdx])
212                {
213                   DU_LOG("\nERROR  --> MAC: Memory allocation failed at MacProcCellCfgReq");
214                   return RFAILED;
215                }
216                memcpy(macCb.macCell[cellIdx]->macCellCfg.cellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai[sliceIdx], macCellCfg->cellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai[sliceIdx],\
217                      sizeof(Snssai));
218             }
219          }
220       }
221    }
222    /* Send cell cfg to scheduler */
223    ret = MacSchCellCfgReq(pst, macCellCfg);
224    if(ret != ROK)
225    {
226       MacCellCfgCfm macCellCfgCfm;
227       macCellCfgCfm.rsp = RSP_NOK;
228       macCellCfgCfm.cellId = macCellCfg->cellId;
229       /* Fill Pst */
230       FILL_PST_MAC_TO_DUAPP(cfmPst, EVENT_MAC_CELL_CONFIG_CFM);
231       cfmPst.selector  = ODU_SELECTOR_LC;
232
233       ret = (*packMacCellCfmOpts[cfmPst.selector])(&cfmPst,&macCellCfgCfm);
234    }
235    else
236    {
237       MAC_FREE_SHRABL_BUF(pst->region, pst->pool, macCellCfg ,sizeof(MacCellCfg));
238    }
239    return ret;
240 } /* end of MacProcCellCfgReq */
241
242 /**
243  * @brief Layer Manager Configuration request handler.
244  *
245  * @details
246  *
247  *     Function : MacSchCellCfgReq
248  *
249  *     This function sends cell configuration to SCH
250  *
251  *  @param[in]  Pst           *pst
252  *  @param[in]  MacCellCfg    *macCellCfg
253  *  @return  
254  *      -# ROK
255  **/
256 uint8_t MacSchCellCfgReq(Pst *pst, MacCellCfg *macCellCfg)
257 {
258    SchCellCfg schCellCfg;
259    Pst        cfgPst;
260    uint8_t    ssbMaskIdx = 0, rsrcListIdx = 0, sliceIdx=0, plmnIdx = 0;
261
262    memset(&cfgPst, 0, sizeof(Pst));
263    memset(&schCellCfg, 0, sizeof(SchCellCfg));
264    schCellCfg.cellId = macCellCfg->cellId;
265    schCellCfg.phyCellId = macCellCfg->cellCfg.phyCellId;
266
267    for(plmnIdx = 0; plmnIdx < MAX_PLMN; plmnIdx++)
268    {
269       schCellCfg.plmnInfoList[plmnIdx].plmn = macCellCfg->cellCfg.plmnInfoList[plmnIdx].plmn;
270       if(macCellCfg->cellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai) 
271       {
272          schCellCfg.plmnInfoList[plmnIdx].suppSliceList.numSupportedSlices = macCellCfg->cellCfg.plmnInfoList[plmnIdx].suppSliceList.numSupportedSlices;
273          MAC_ALLOC(schCellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai, schCellCfg.plmnInfoList[plmnIdx].suppSliceList.numSupportedSlices * sizeof(Snssai*));
274          if(!schCellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai)
275          {
276             DU_LOG("\nERROR  --> MAC: Memory allocation failed at MacSchCellCfgReq");
277             return RFAILED;
278          }
279          for(sliceIdx=0; sliceIdx<schCellCfg.plmnInfoList[plmnIdx].suppSliceList.numSupportedSlices; sliceIdx++)
280          {
281             if(macCellCfg->cellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai[sliceIdx])
282             {
283                MAC_ALLOC(schCellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai[sliceIdx], sizeof(Snssai));
284                if(!schCellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai[sliceIdx])
285                {
286                   DU_LOG("\nERROR  --> MAC: Memory allocation failed at MacSchCellCfgReq");
287                   return RFAILED;
288                }
289                memcpy(schCellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai[sliceIdx], macCellCfg->cellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai[sliceIdx],  sizeof(Snssai));
290             }
291          }
292       }
293    }
294
295    schCellCfg.dupMode = macCellCfg->cellCfg.dupType;
296    schCellCfg.dlBandwidth = macCellCfg->carrCfg.dlBw;
297    schCellCfg.ulBandwidth = macCellCfg->carrCfg.ulBw;
298
299    schCellCfg.dlCfgCommon.schFreqInfoDlSib.offsetToPointA = macCellCfg->ssbCfg.ssbOffsetPointA;
300    schCellCfg.dlCfgCommon.schFreqInfoDlSib.schSpcCarrier[0].subCarrierSpacing = macCellCfg->ssbCfg.scsCmn;
301
302    /* fill initial DL BWP */
303    schCellCfg.dlCfgCommon.schInitialDlBwp.bwp.freqAlloc.startPrb = macCellCfg->cellCfg.initialDlBwp.bwp.firstPrb;
304    schCellCfg.dlCfgCommon.schInitialDlBwp.bwp.freqAlloc.numPrb = macCellCfg->cellCfg.initialDlBwp.bwp.numPrb;
305    schCellCfg.dlCfgCommon.schInitialDlBwp.bwp.scs = macCellCfg->cellCfg.initialDlBwp.bwp.scs;
306    schCellCfg.dlCfgCommon.schInitialDlBwp.bwp.cyclicPrefix = macCellCfg->cellCfg.initialDlBwp.bwp.cyclicPrefix;
307    
308    schCellCfg.dlCfgCommon.schInitialDlBwp.pdcchCommon.commonSearchSpace.searchSpaceId =
309       macCellCfg->cellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.searchSpaceId;
310    schCellCfg.dlCfgCommon.schInitialDlBwp.pdcchCommon.commonSearchSpace.coresetId =
311       macCellCfg->cellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.coresetId;
312    schCellCfg.dlCfgCommon.schInitialDlBwp.pdcchCommon.commonSearchSpace.monitoringSlot =
313       macCellCfg->cellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.monitoringSlot;
314    schCellCfg.dlCfgCommon.schInitialDlBwp.pdcchCommon.commonSearchSpace.duration =
315       macCellCfg->cellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.duration;
316    schCellCfg.dlCfgCommon.schInitialDlBwp.pdcchCommon.commonSearchSpace.monitoringSymbol =
317       macCellCfg->cellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.monitoringSymbol;
318    schCellCfg.dlCfgCommon.schInitialDlBwp.pdcchCommon.commonSearchSpace.candidate.aggLevel1 =
319       macCellCfg->cellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.candidate.aggLevel1;
320    schCellCfg.dlCfgCommon.schInitialDlBwp.pdcchCommon.commonSearchSpace.candidate.aggLevel2 =
321       macCellCfg->cellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.candidate.aggLevel2;
322    schCellCfg.dlCfgCommon.schInitialDlBwp.pdcchCommon.commonSearchSpace.candidate.aggLevel4 =
323       macCellCfg->cellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.candidate.aggLevel4;
324    schCellCfg.dlCfgCommon.schInitialDlBwp.pdcchCommon.commonSearchSpace.candidate.aggLevel8 =
325       macCellCfg->cellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.candidate.aggLevel8;
326    schCellCfg.dlCfgCommon.schInitialDlBwp.pdcchCommon.commonSearchSpace.candidate.aggLevel16 =
327       macCellCfg->cellCfg.initialDlBwp.pdcchCommon.commonSearchSpace.candidate.aggLevel16;
328    
329    schCellCfg.dlCfgCommon.schInitialDlBwp.pdschCommon.numTimeDomAlloc = macCellCfg->cellCfg.initialDlBwp.pdschCommon.numTimeDomAlloc;
330    for(rsrcListIdx = 0; rsrcListIdx<macCellCfg->cellCfg.initialDlBwp.pdschCommon.numTimeDomAlloc; rsrcListIdx++)
331    {
332       schCellCfg.dlCfgCommon.schInitialDlBwp.pdschCommon.timeDomRsrcAllocList[rsrcListIdx].k0 = 
333          macCellCfg->cellCfg.initialDlBwp.pdschCommon.timeDomRsrcAllocList[rsrcListIdx].k0;
334       schCellCfg.dlCfgCommon.schInitialDlBwp.pdschCommon.timeDomRsrcAllocList[rsrcListIdx].mappingType =
335          macCellCfg->cellCfg.initialDlBwp.pdschCommon.timeDomRsrcAllocList[rsrcListIdx].mappingType;
336       schCellCfg.dlCfgCommon.schInitialDlBwp.pdschCommon.timeDomRsrcAllocList[rsrcListIdx].startSymbol =
337          macCellCfg->cellCfg.initialDlBwp.pdschCommon.timeDomRsrcAllocList[rsrcListIdx].startSymbol;
338       schCellCfg.dlCfgCommon.schInitialDlBwp.pdschCommon.timeDomRsrcAllocList[rsrcListIdx].lengthSymbol =
339          macCellCfg->cellCfg.initialDlBwp.pdschCommon.timeDomRsrcAllocList[rsrcListIdx].lengthSymbol;
340    }
341
342    /* fill SIB1 scheduler parameters */
343    schCellCfg.dlCfgCommon.schPcchCfg.numPO  =  macCellCfg->cellCfg.sib1Cfg.pagingCfg.numPO;
344    schCellCfg.dlCfgCommon.schPcchCfg.poPresent = macCellCfg->cellCfg.sib1Cfg.pagingCfg.poPresent;
345    if(schCellCfg.dlCfgCommon.schPcchCfg.poPresent)
346    {
347       memcpy(schCellCfg.dlCfgCommon.schPcchCfg.pagingOcc, macCellCfg->cellCfg.sib1Cfg.pagingCfg.pagingOcc, MAX_PO_PER_PF);
348    }
349
350    /* fill initial UL BWP */
351    schCellCfg.ulCfgCommon.schInitialUlBwp.bwp.freqAlloc.startPrb = macCellCfg->cellCfg.initialUlBwp.bwp.firstPrb;
352    schCellCfg.ulCfgCommon.schInitialUlBwp.bwp.freqAlloc.numPrb = macCellCfg->cellCfg.initialUlBwp.bwp.numPrb;
353    schCellCfg.ulCfgCommon.schInitialUlBwp.bwp.scs = macCellCfg->cellCfg.initialUlBwp.bwp.scs;
354    schCellCfg.ulCfgCommon.schInitialUlBwp.bwp.cyclicPrefix = macCellCfg->cellCfg.initialUlBwp.bwp.cyclicPrefix;
355    /* fill RACH config params */
356    schCellCfg.ulCfgCommon.schInitialUlBwp.schRachCfg.prachCfgGeneric.prachCfgIdx   = macCellCfg->prachCfg.prachCfgIdx;
357    schCellCfg.ulCfgCommon.schInitialUlBwp.schRachCfg.prachCfgGeneric.msg1Fdm       = macCellCfg->prachCfg.msg1Fdm;
358    schCellCfg.ulCfgCommon.schInitialUlBwp.schRachCfg.prachCfgGeneric.msg1FreqStart = macCellCfg->prachCfg.msg1FreqStart;
359    schCellCfg.ulCfgCommon.schInitialUlBwp.schRachCfg.prachCfgGeneric.zeroCorrZoneCfg = macCellCfg->prachCfg.fdm[0].zeroCorrZoneCfg; 
360    schCellCfg.ulCfgCommon.schInitialUlBwp.schRachCfg.prachCfgGeneric.raRspWindow = macCellCfg->prachCfg.raRspWindow;
361
362    schCellCfg.ulCfgCommon.schInitialUlBwp.schRachCfg.totalNumRaPreamble = macCellCfg->prachCfg.totalNumRaPreamble;
363    schCellCfg.ulCfgCommon.schInitialUlBwp.schRachCfg.ssbPerRach    = macCellCfg->prachCfg.ssbPerRach;
364    schCellCfg.ulCfgCommon.schInitialUlBwp.schRachCfg.numCbPreamblePerSsb = macCellCfg->prachCfg.numCbPreamblePerSsb;
365    schCellCfg.ulCfgCommon.schInitialUlBwp.schRachCfg.raContResTmr = macCellCfg->prachCfg.raContResTmr;
366    schCellCfg.ulCfgCommon.schInitialUlBwp.schRachCfg.rsrpThreshSsb = macCellCfg->prachCfg.rsrpThreshSsb;
367    schCellCfg.ulCfgCommon.schInitialUlBwp.schRachCfg.rootSeqIdx    = macCellCfg->prachCfg.fdm[0].rootSeqIdx;
368    schCellCfg.ulCfgCommon.schInitialUlBwp.schRachCfg.numRootSeq    = macCellCfg->prachCfg.fdm[0].numRootSeq;
369    schCellCfg.ulCfgCommon.schInitialUlBwp.schRachCfg.msg1SubcSpacing = \
370                                             macCellCfg->prachCfg.prachSubcSpacing;
371
372    schCellCfg.ulCfgCommon.schInitialUlBwp.pucchCommon.pucchResourceCommon = \
373                                                                 macCellCfg->cellCfg.initialUlBwp.pucchCommon.pucchResourceCommon;
374    schCellCfg.ulCfgCommon.schInitialUlBwp.pucchCommon.pucchGroupHopping = \
375                                                                 macCellCfg->cellCfg.initialUlBwp.pucchCommon.pucchGroupHopping;
376    schCellCfg.ulCfgCommon.schInitialUlBwp.puschCommon.numTimeDomRsrcAlloc = \
377                                                                 macCellCfg->cellCfg.initialUlBwp.puschCommon.numTimeDomRsrcAlloc;
378    for(rsrcListIdx = 0; rsrcListIdx < macCellCfg->cellCfg.initialUlBwp.puschCommon.numTimeDomRsrcAlloc; rsrcListIdx++)
379    {
380       schCellCfg.ulCfgCommon.schInitialUlBwp.puschCommon.timeDomRsrcAllocList[rsrcListIdx].k2 = 
381          macCellCfg->cellCfg.initialUlBwp.puschCommon.timeDomRsrcAllocList[rsrcListIdx].k2;
382       schCellCfg.ulCfgCommon.schInitialUlBwp.puschCommon.timeDomRsrcAllocList[rsrcListIdx].mappingType =
383          macCellCfg->cellCfg.initialUlBwp.puschCommon.timeDomRsrcAllocList[rsrcListIdx].mappingType;
384       schCellCfg.ulCfgCommon.schInitialUlBwp.puschCommon.timeDomRsrcAllocList[rsrcListIdx].startSymbol =
385          macCellCfg->cellCfg.initialUlBwp.puschCommon.timeDomRsrcAllocList[rsrcListIdx].startSymbol;
386       schCellCfg.ulCfgCommon.schInitialUlBwp.puschCommon.timeDomRsrcAllocList[rsrcListIdx].symbolLength =
387          macCellCfg->cellCfg.initialUlBwp.puschCommon.timeDomRsrcAllocList[rsrcListIdx].symbolLength;
388    }
389
390 #ifdef NR_TDD
391    memcpy(&schCellCfg.tddCfg, &macCellCfg->tddCfg, sizeof(TDDCfg));
392 #endif
393
394    /* fill ssb scheduler parameters */
395    for(ssbMaskIdx=0; ssbMaskIdx<SSB_MASK_SIZE; ssbMaskIdx++)
396    {
397       schCellCfg.ssbPosInBurst[ssbMaskIdx] = macCellCfg->ssbCfg.ssbMask[ssbMaskIdx];
398    }
399    schCellCfg.ssbPeriod    = ssbPeriodicity[macCellCfg->ssbCfg.ssbPeriod];
400    schCellCfg.ssbFrequency = macCellCfg->cellCfg.ssbFreq;
401    schCellCfg.dmrsTypeAPos = macCellCfg->ssbCfg.dmrsTypeAPos;
402    schCellCfg.ssbScs       = macCellCfg->cellCfg.subCarrSpacing;
403    schCellCfg.pdcchCfgSib1.coresetZeroIndex = macCellCfg->cellCfg.sib1Cfg.pdcchCfgSib1.coresetZeroIndex;
404    schCellCfg.pdcchCfgSib1.searchSpaceZeroIndex = macCellCfg->cellCfg.sib1Cfg.pdcchCfgSib1.searchSpaceZeroIndex;
405    schCellCfg.ssbPbchPwr = macCellCfg->ssbCfg.ssbPbchPwr;
406    schCellCfg.ssbSubcOffset = macCellCfg->ssbCfg.ssbScOffset;
407    schCellCfg.sib1PduLen = macCellCfg->cellCfg.sib1Cfg.sib1PduLen;
408    
409    FILL_PST_MAC_TO_SCH(cfgPst, EVENT_SCH_CELL_CFG);
410
411    return(SchMessageRouter(&cfgPst, (void *)&schCellCfg));
412 } /* end of MacSchCellCfgReq */
413
414
415 /*******************************************************************
416  *
417  * @brief Sends Cell config confirm to DU APP
418  *
419  * @details
420  *
421  *    Function : MacSendCellCfgCfm
422  *
423  *    Functionality:
424  *      Sends Cell config confirm to DU APP
425  *
426  * @params[in] Response status
427  * @return void
428  *
429  * ****************************************************************/
430 void MacSendCellCfgCfm(uint16_t cellId, uint8_t response)
431 {
432    Pst pst;
433    uint16_t   cellIdx;
434    MacCellCfgCfm macCellCfgCfm;
435
436    memset(&pst, 0, sizeof(Pst));
437
438    GET_CELL_IDX(cellId, cellIdx);
439    macCellCfgCfm.cellId = macCb.macCell[cellIdx]->macCellCfg.cellId;
440    macCellCfgCfm.rsp = response;
441
442    /* Fill Pst */
443    FILL_PST_MAC_TO_DUAPP(pst, EVENT_MAC_CELL_CONFIG_CFM);
444    pst.selector  = ODU_SELECTOR_LC;
445
446    (*packMacCellCfmOpts[pst.selector])(&pst,&macCellCfgCfm);
447 }
448
449
450 /**
451  * @brief Layer Manager Configuration response handler.
452  *
453  * @details
454  *
455  *     Function : MacProcSchCellCfgCfm
456  *
457  *     This function processes cell configuration to SCH
458  *
459  *  @param[in]  Pst           *pst
460  *  @param[in]  SchCellCfgCfm *schCellCfgCfm
461  *  @return  int
462  *      -# ROK
463  **/
464 uint8_t MacProcSchCellCfgCfm(Pst *pst, SchCellCfgCfm *schCellCfgCfm)
465 {
466    uint16_t *cellId = NULLP;
467
468 #ifdef CALL_FLOW_DEBUG_LOG
469    DU_LOG("\nCall Flow: ENTSCH -> ENTMAC : EVENT_SCH_CELL_CFG_CFM\n");
470 #endif
471
472    if(schCellCfgCfm->rsp == RSP_OK)
473    {
474       cellId = &schCellCfgCfm->cellId;
475 #ifdef INTEL_TIMER_MODE
476       sendToLowerMac(UL_IQ_SAMPLE, 0, (void *)cellId);
477 #else
478       sendToLowerMac(CONFIG_REQUEST, 0, (void *)cellId);
479 #endif
480    }
481    else
482    {
483       MacSendCellCfgCfm(schCellCfgCfm->cellId, RSP_NOK);
484    }
485    return ROK;
486 }
487
488 /*******************************************************************
489  *
490  * @brief MAC handler for config response from PHY
491  *
492  * @details
493  *
494  *    Function : fapiMacConfigRsp
495  *
496  *    Functionality:
497  *     Processes config response from PHY and sends cell config
498  *     confirm to DU APP
499  *
500  * @params[in]
501  * @return void
502  *
503  * ****************************************************************/
504 void fapiMacConfigRsp(uint16_t cellId)
505 {
506    /* TODO : Processing of config response from PHY */
507
508    /* Send cell config cfm to DU APP */
509    MacSendCellCfgCfm(cellId, RSP_OK);
510 }
511
512 /*******************************************************************
513  *
514  * @brief Fill and Send Cell Delete response from MAC to DU APP
515  *
516  * @details
517  *
518  *    Function : MacSendCellDeleteRsp
519  *
520  *    Functionality: Fill and Send Cell Delete response from MAC to DUAPP
521  *
522  * @params[in] MAC Cell delete result
523  *             SCH Cell delete response
524  * @return ROK     - success
525  *         RFAILED - failure
526  *
527  * ****************************************************************/
528 uint8_t MacSendCellDeleteRsp(CauseOfResult  status, uint8_t cellId)
529 {
530    MacCellDeleteRsp *deleteRsp=NULLP;
531    Pst            rspPst;
532
533    MAC_ALLOC_SHRABL_BUF(deleteRsp, sizeof(MacCellDeleteRsp));
534    if(!deleteRsp)
535    {
536       DU_LOG("\nERROR  -->  MAC : MacSendCellDeleteRsp(): Memory allocation for Cell delete response failed");
537       return RFAILED;
538    }
539
540    /* Filling CELL delete response */
541    
542    memset(deleteRsp, 0, sizeof(MacCellDeleteRsp));
543    deleteRsp->cellId = cellId;
544    deleteRsp->status = status;
545
546    /* Fill Post structure and send CELL delete response*/
547    memset(&rspPst, 0, sizeof(Pst));
548    FILL_PST_MAC_TO_DUAPP(rspPst, EVENT_MAC_CELL_DELETE_RSP);
549    return (*macDuCellDeleteRspOpts[rspPst.selector])(&rspPst, deleteRsp);
550 }
551
552 /*******************************************************************
553  *
554  * @brief  Processes CELL delete response from scheduler
555  *
556  * @details
557  *
558  *    Function : MacProcSchCellDeleteRsp
559  *
560  *    Functionality:
561  *      Processes CELL delete from scheduler
562  *
563  * @params[in] Pst : Post structure
564  *             schCellDelRsp : Scheduler CELL delete respons
565  * @return ROK     - success
566  *         RFAILED - failure
567  *
568  * * ****************************************************************/
569 uint8_t MacProcSchCellDeleteRsp(Pst *pst, SchCellDeleteRsp *schCellDelRsp)
570 {
571    uint8_t  ret = ROK, sliceIdx = 0, plmnIdx = 0;
572    uint16_t cellIdx=0;
573    CauseOfResult  cause;
574
575 #ifdef CALL_FLOW_DEBUG_LOG
576    DU_LOG("\nCall Flow: ENTSCH -> ENTMAC : EVENT_CELL_DELETE_RSP_TO_MAC\n");
577 #endif  
578
579    if(schCellDelRsp)
580    {
581       if(schCellDelRsp->rsp == RSP_OK)
582       {
583          DU_LOG("\nINFO   -->  MAC : SCH CELL Delete response for cellId[%d] is successful ", \
584                schCellDelRsp->cellId);
585          GET_CELL_IDX(schCellDelRsp->cellId, cellIdx);
586          if(macCb.macCell[cellIdx])
587          {
588             if(macCb.macCell[cellIdx]->cellId == schCellDelRsp->cellId)
589             {
590                cause = SUCCESSFUL;
591                for(plmnIdx = 0; plmnIdx < MAX_PLMN; plmnIdx++)
592                {
593                   if(macCb.macCell[cellIdx]->macCellCfg.cellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai)
594                   {
595                      for(sliceIdx = 0; sliceIdx<macCb.macCell[cellIdx]->macCellCfg.cellCfg.plmnInfoList[plmnIdx].suppSliceList.numSupportedSlices; sliceIdx++)
596                      {
597                         MAC_FREE(macCb.macCell[cellIdx]->macCellCfg.cellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai[sliceIdx], sizeof(Snssai));
598                      }
599                      MAC_FREE(macCb.macCell[cellIdx]->macCellCfg.cellCfg.plmnInfoList[plmnIdx].suppSliceList.snssai, macCb.macCell[cellIdx]->macCellCfg.cellCfg.plmnInfoList[plmnIdx].\
600                            suppSliceList.numSupportedSlices * sizeof(Snssai*));
601                   }
602                }
603                MAC_FREE(macCb.macCell[cellIdx]->macCellCfg.cellCfg.sib1Cfg.sib1Pdu, \
604                      macCb.macCell[cellIdx]->macCellCfg.cellCfg.sib1Cfg.sib1PduLen);
605                MAC_FREE(macCb.macCell[cellIdx], sizeof(MacCellCb));
606             }
607             else
608             {
609                DU_LOG("ERROR  -->  MAC : MacProcSchCellDeleteRsp(): CellId[%d] does not exists", schCellDelRsp->cellId);
610                cause = CELLID_INVALID;
611                ret = RFAILED;
612             }
613          }
614          else
615          {
616             DU_LOG("ERROR  -->  MAC : MacProcSchCellDeleteRsp(): CellId[%d] does not exists", schCellDelRsp->cellId);
617             cause = CELLID_INVALID;
618             ret = RFAILED;
619          }
620       }
621       else
622       {
623          DU_LOG("ERROR  -->  MAC : MacProcSchCellDeleteRsp(): CellId[%d] does not exists", schCellDelRsp->cellId);
624          cause = CELLID_INVALID;
625          ret = RFAILED;
626       }
627       if(MacSendCellDeleteRsp(cause, schCellDelRsp->cellId) != ROK)
628       {
629          DU_LOG("\nERROR  -->  MAC: MacProcSchCellDeleteRsp(): Failed to send CELL delete response");
630          ret = RFAILED;
631       }
632
633    }
634    else
635    {
636       DU_LOG("\nERROR  -->  MAC: MacProcSchCellDeleteRsp(): schCellDelRsp is NULL");
637       ret = RFAILED;
638    }
639    return ret;
640 }
641
642 /*******************************************************************
643  *
644  * @brief Sends Cell delete req to Scheduler
645  *
646  * @details
647  *
648  *    Function : sendCellDelReqToSch
649  *
650  *    Functionality: sends Cell delete req to Scheduler
651  *
652  * @params[in]  SchCellDelete *schCellDel
653  * @return ROK     - success
654  *         RFAILED - failure
655  *
656  * ****************************************************************/
657
658 uint8_t sendCellDelReqToSch(SchCellDeleteReq *schCellDelReq)
659 {
660    Pst schPst;
661    FILL_PST_MAC_TO_SCH(schPst, EVENT_CELL_DELETE_REQ_TO_SCH);
662    return(SchMessageRouter(&schPst, (void *)schCellDelReq));
663 }
664
665 /*******************************************************************
666  *
667  * @brief Handles CELL Delete requst from DU APP
668  *
669  * @details
670  *
671  *    Function : MacProcCellDeleteReq
672  *
673  *    Functionality: Handles CELL Delete requst from DU APP
674  *
675  * @params[in] Pst *pst, MacCellDelete *cellDelete
676  * @return ROK     - success
677  *         RFAILED - failure
678  *
679  *
680  * ****************************************************************/
681 uint8_t MacProcCellDeleteReq(Pst *pst, MacCellDeleteReq *cellDelete)
682 {
683    uint8_t ret = ROK, cellIdx=0;
684    SchCellDeleteReq schCellDelete;
685
686    DU_LOG("\nINFO   -->  MAC : Cell Delete Request received for cellId[%d]", cellDelete->cellId);
687
688    if(cellDelete)
689    {
690       GET_CELL_IDX(cellDelete->cellId, cellIdx);
691       if(macCb.macCell[cellIdx])
692       {
693          if(macCb.macCell[cellIdx]->cellId == cellDelete->cellId)
694          {
695             memset(&schCellDelete, 0, sizeof(SchCellDeleteReq ));
696             schCellDelete.cellId =  cellDelete->cellId;
697             ret = sendCellDelReqToSch(&schCellDelete);
698             if(ret != ROK)
699             {
700                DU_LOG("\nERROR  -->  MAC : MacProcCellDeleteReq(): Failed to send UE Delete Request to SCH");
701                ret = RFAILED;
702             }
703          }
704          else
705          {
706             DU_LOG("\nERROR  -->  MAC : MacProcCellDeleteReq(): Failed to find the MacUeCb of CellId = %d",\
707             cellDelete->cellId);
708             ret = RFAILED;
709          }
710       }
711       else
712       {
713          DU_LOG("\nERROR  -->  MAC : MacProcCellDeleteReq(): Failed to find the MacUeCb of CellId = %d",\
714                cellDelete->cellId);
715          ret = RFAILED;
716       }
717
718       if(ret == RFAILED)
719       {
720           DU_LOG("\nERROR  -->  MAC : MacProcCellDeleteReq(): Sending failure response to DU");
721           if(MacSendCellDeleteRsp(CELLID_INVALID, cellDelete->cellId) != ROK)
722           {
723              DU_LOG("\nERROR  -->  MAC : MacProcCellDeleteReq(): failed to send cell delete rsp for cellID[%d]",\
724              cellDelete->cellId);
725           }
726
727       }
728       MAC_FREE_SHRABL_BUF(pst->region, pst->pool, cellDelete, sizeof(MacCellDeleteReq));
729    }
730    else
731    {
732       DU_LOG("\nERROR  -->  MAC : MacProcCellDeleteReq(): Received MacCellDelete is NULL");
733       ret = RFAILED;
734    }
735    return ret;
736 }
737
738 /**
739  * @brief free the temporary slice cfg stored in macCb.
740  *
741  * @details
742  *
743  *     Function : freeMacSliceCfgReq 
744  *
745  *   free the temporary slice cfg stored in macCb
746  *
747  *  @param[in]  
748  *  @return  int
749  *      -# ROK
750  **/
751 void freeMacSliceCfgReq(MacSliceCfgReq *cfgReq,Pst *pst)
752 {
753     uint8_t policyIdx = 0, memberListIdx=0;
754
755     if(cfgReq->numOfRrmPolicy)
756     {
757        if(cfgReq->listOfRrmPolicy)
758        {
759           for(policyIdx = 0; policyIdx<cfgReq->numOfRrmPolicy; policyIdx++)
760           {
761              if(cfgReq->listOfRrmPolicy[policyIdx])
762              {
763                 if(cfgReq->listOfRrmPolicy[policyIdx]->numOfRrmPolicyMem)
764                 {
765                    if(cfgReq->listOfRrmPolicy[policyIdx]->rRMPolicyMemberList)
766                    {
767                       for(memberListIdx = 0; memberListIdx<cfgReq->listOfRrmPolicy[policyIdx]->numOfRrmPolicyMem; memberListIdx++)
768                       {
769                          MAC_FREE_SHRABL_BUF(pst->region, pst->pool, cfgReq->listOfRrmPolicy[policyIdx]->rRMPolicyMemberList[memberListIdx], sizeof(RrmPolicyMemberList));
770                       }
771                       MAC_FREE_SHRABL_BUF(pst->region, pst->pool, cfgReq->listOfRrmPolicy[policyIdx]->rRMPolicyMemberList,\
772                       cfgReq->listOfRrmPolicy[policyIdx]->numOfRrmPolicyMem * sizeof(RrmPolicyMemberList*));
773                    }
774                 }
775                 MAC_FREE_SHRABL_BUF(pst->region, pst->pool, cfgReq->listOfRrmPolicy[policyIdx], sizeof(MacSliceRrmPolicy));
776              }
777           }
778           MAC_FREE_SHRABL_BUF(pst->region, pst->pool, cfgReq->listOfRrmPolicy, cfgReq->numOfRrmPolicy  * sizeof(MacSliceRrmPolicy*));
779        }
780     }
781     MAC_FREE_SHRABL_BUF(pst->region, pst->pool, cfgReq, sizeof(MacSliceCfgReq));
782
783 }
784
785 /**
786  * @brief send slice cfg response to duapp.
787  *
788  * @details
789  *
790  *     Function : MacSendSliceConfigRsp
791  *
792  *   sends  slice cfg response to duapp
793  *
794  *  @param[in] MacSliceCfgRsp macSliceCfgRsp 
795  *  @return  int
796  *      -# ROK
797  **/
798 uint8_t MacSendSliceConfigRsp(MacSliceCfgRsp *macSliceCfgRsp)
799 {
800     Pst  rspPst;
801     
802     memset(&rspPst, 0, sizeof(Pst));
803     FILL_PST_MAC_TO_DUAPP(rspPst, EVENT_MAC_SLICE_CFG_RSP);
804     return (*macDuSliceCfgRspOpts[rspPst.selector])(&rspPst, macSliceCfgRsp);
805
806 }
807
808 /**
809  * @brief Mac process the slice cfg rsp received from sch.
810  *
811  * @details
812  *
813  *     Function : MacProcSchSliceCfgRsp 
814  *
815  *     This function  process the slice cfg rsp received from sch
816  *
817  *  @param[in]  Pst           *pst
818  *  @param[in]  SchSliceCfgRsp *sliceCfgrsp
819  *  @return  int
820  *      -# ROK
821  **/
822
823 uint8_t MacProcSchSliceCfgRsp(Pst *pst, SchSliceCfgRsp *schSliceCfgRsp)
824 {
825    MacSliceCfgRsp *macSliceCfgRsp = NULLP;
826
827    if(schSliceCfgRsp)
828    {
829       MAC_ALLOC_SHRABL_BUF(macSliceCfgRsp, sizeof(MacSliceCfgRsp));
830       if(macSliceCfgRsp == NULLP)
831       {
832           DU_LOG("\nERROR  -->  MAC : Failed to allocate memory in MacProcSchSliceCfgRsp");
833           return RFAILED;
834       }
835       macSliceCfgRsp->snssai = schSliceCfgRsp->snssai;
836       if(schSliceCfgRsp->rsp == RSP_OK)
837          macSliceCfgRsp->rsp    = MAC_DU_APP_RSP_OK;
838       else
839       {
840          macSliceCfgRsp->rsp    = MAC_DU_APP_RSP_NOK;
841       }
842       macSliceCfgRsp->cause  = schSliceCfgRsp->cause;
843       MacSendSliceConfigRsp(macSliceCfgRsp);
844    }
845    return ROK;
846 }
847
848 /**
849  * @brief send slice cfg response to duapp.
850  *
851  * @details
852  *
853  *     Function : MacSendSliceReconfigRsp 
854  *
855  *   sends  slice cfg response to duapp
856  *
857  *  @param[in] MacSliceRecfgRsp macSliceRecfgRsp
858  *  @return  int
859  *      -# ROK
860  **/
861 uint8_t MacSendSliceReconfigRsp(MacSliceRecfgRsp *macSliceRecfgRsp)
862 {
863    Pst  rspPst;
864
865    memset(&rspPst, 0, sizeof(Pst));
866    FILL_PST_MAC_TO_DUAPP(rspPst, EVENT_MAC_SLICE_RECFG_RSP);
867    return (*macDuSliceRecfgRspOpts[rspPst.selector])(&rspPst, macSliceRecfgRsp);
868
869 }
870
871 /**
872  * @brief Mac process the slice cfg rsp received from sch.
873  *
874  * @details
875  *
876  *     Function : MacProcSchSliceRecfgRsp 
877  *
878  *     This function  process the slice cfg rsp received from sch
879  *
880  *  @param[in]  Pst           *pst
881  *  @param[in]  SchSliceCfgRsp *schSliceRecfgRsp
882  *  @return  int
883  *      -# ROK
884  **/
885 uint8_t MacProcSchSliceRecfgRsp(Pst *pst, SchSliceRecfgRsp *schSliceRecfgRsp)
886 {
887    MacSliceRecfgRsp *macSliceRecfgRsp = NULLP;
888
889    if(schSliceRecfgRsp)
890    {
891       MAC_ALLOC_SHRABL_BUF(macSliceRecfgRsp, sizeof(MacSliceRecfgRsp));
892       if(macSliceRecfgRsp == NULLP)
893       {
894           DU_LOG("\nERROR  -->  MAC : Failed to allocate memory in MacProcSchSliceRecfgRsp");
895           return RFAILED;
896       }
897
898       macSliceRecfgRsp->snssai = schSliceRecfgRsp->snssai;
899       if(schSliceRecfgRsp->rsp == RSP_OK)
900          macSliceRecfgRsp->rsp    = MAC_DU_APP_RSP_OK;
901       else
902       {
903          macSliceRecfgRsp->rsp    = MAC_DU_APP_RSP_NOK;
904       }
905       macSliceRecfgRsp->cause  = schSliceRecfgRsp->cause;
906       MacSendSliceReconfigRsp(macSliceRecfgRsp);
907    }
908    return ROK;
909 }
910
911 /**
912  * @brief Mac process the downlink pcch indication received from DUAPP
913  *
914  * @details
915  *
916  *     Function : MacProcDlPcchInd 
917  *
918  *     This function process the downlink pcch indication received from DUAPP
919  *
920  *  @param[in]  Pst           *pst
921  *  @param[in]  DlPcchInd    *pcchInd 
922  *  @return  int
923  *      -# ROK
924  **/
925 uint8_t MacProcDlPcchInd(Pst *pst, DlPcchInd *pcchInd)
926 {
927    uint8_t ret = RFAILED;
928    uint16_t cellIdx = 0;
929    Pst       schPst;
930    SchPageInd *schPageInd = NULLP;
931
932    if(pcchInd)
933    {
934       DU_LOG("\nINFO   -->  MAC : Received DL PCCH IND from DU_APP for cellId[%d]", pcchInd->cellId);
935       
936       GET_CELL_IDX(pcchInd->cellId, cellIdx);
937
938       if(macCb.macCell[cellIdx] == NULLP || macCb.macCell[cellIdx]->cellId != pcchInd->cellId)
939       {
940          DU_LOG("\nERROR  -->  MAC : MacProcDlPcchInd(): CellId[%d] does not exist", pcchInd->cellId);
941       }
942       else
943       {
944          if((pcchInd->pcchPdu == NULLP) || (pcchInd->pduLen <= 0))
945          {
946             DU_LOG("\nERROR  -->  MAC : MacProcDlPcchInd(): Received Pcch pdu is null");
947          }
948          else
949          {
950             MAC_ALLOC(schPageInd, sizeof(SchPageInd));
951             if(schPageInd == NULLP)
952             {
953                DU_LOG("\nERROR  -->  MAC : MacProcDlPcchInd(): Failed to allocate memory");
954             }
955             else
956             {
957                schPageInd->cellId = pcchInd->cellId;
958                schPageInd->pf = pcchInd->pf;
959                schPageInd->i_s = pcchInd->i_s;
960                schPageInd->pduLen = pcchInd->pduLen;
961                
962                MAC_ALLOC(schPageInd->pagePdu, pcchInd->pduLen);
963                if(schPageInd->pagePdu == NULLP)
964                {
965                   DU_LOG("\nERROR  -->  MAC : MacProcDlPcchInd(): Failed to allocate memory");
966                   MAC_FREE(schPageInd, sizeof(SchPageInd));
967                }
968                else
969                {
970                   memcpy(schPageInd->pagePdu, pcchInd->pcchPdu, pcchInd->pduLen);
971
972                   FILL_PST_MAC_TO_SCH(schPst, EVENT_PAGING_IND_TO_SCH);
973                   ret = SchMessageRouter(&schPst, (void *)schPageInd);
974                }
975             }
976          }
977       }
978       if((pcchInd->pcchPdu) && (pcchInd->pduLen > 0))
979       {
980          MAC_FREE_SHRABL_BUF(pst->region, pst->pool, pcchInd->pcchPdu, pcchInd->pduLen);
981       }
982       MAC_FREE_SHRABL_BUF(pst->region, pst->pool, pcchInd, sizeof(DlPcchInd));
983    }
984    else
985    {
986       DU_LOG("\nERROR  -->  MAC : MacProcDlPcchInd(): Received Null pointer");
987    }
988    return ret;
989 }
990
991 /**
992  * @brief Mac process the downlink Broadcast Req received from DUAPP
993  *
994  * @details
995  *
996  *     Function : MacProcDlBroadcastReq 
997  *
998  *     This function process the downlink Broadcast Req received from DUAPP
999  *
1000  *  @param[in]  Pst           *pst
1001  *  @param[in]  DlBroadcastReq    *dlBroadcastReq 
1002  *  @return  int
1003  *      -# ROK
1004  **/
1005 uint8_t MacProcDlBroadcastReq(Pst *pst, MacDlBroadcastReq *dlBroadcastReq)
1006 {
1007    uint8_t ret = ROK, idx=0;
1008    uint16_t cellIdx = 0;
1009
1010    if(dlBroadcastReq)
1011    {
1012       DU_LOG("\nINFO   -->  MAC : Received DL braodcast req from DU_APP for cellId[%d]", dlBroadcastReq->cellId);
1013       
1014       GET_CELL_IDX(dlBroadcastReq->cellId, cellIdx);
1015
1016       if(macCb.macCell[cellIdx] == NULLP || macCb.macCell[cellIdx]->cellId != dlBroadcastReq->cellId)
1017       {
1018          ret = RFAILED;
1019          DU_LOG("\nERROR  -->  MAC : MacProcDlBroadcastReq(): CellId[%d] does not exist", dlBroadcastReq->cellId);
1020       }
1021       else
1022       {
1023          /*TODO - Complete the processing of DL Broadcast Request*/
1024       }
1025       for(idx = 0; idx<dlBroadcastReq->numSiBlock; idx++)
1026       {
1027          MAC_FREE_SHRABL_BUF(pst->region, pst->pool, dlBroadcastReq->siSchedulingInfo[idx]->siAreaID, sizeof(uint8_t));
1028          MAC_FREE_SHRABL_BUF(pst->region, pst->pool, dlBroadcastReq->siSchedulingInfo[idx], sizeof(SiSchedulingInfo));
1029       }
1030       MAC_FREE_SHRABL_BUF(pst->region, pst->pool, dlBroadcastReq, sizeof(MacDlBroadcastReq));
1031    }
1032    else
1033    {
1034       ret = RFAILED;
1035       DU_LOG("\nERROR  -->  MAC : MacProcDlBroadcastReq(): Received Null pointer");
1036    }
1037    return ret;
1038 }
1039
1040 /**
1041  * @brief Fill and send statistics response to DU APP
1042  *
1043  * @details
1044  *
1045  *     Function : MacSendStatsRspToDuApp
1046  *
1047  *     Fill and send statistics response to DU APP
1048  *
1049  *  @param[in]  Response
1050  *  @param[in]  Cause of response
1051  *  @return  int
1052  *      -# ROK
1053  **/
1054 uint8_t MacSendStatsRspToDuApp(MacStatsRsp *statsRsp)
1055 {
1056    uint8_t ret = ROK;
1057    Pst  pst;
1058    MacStatsRsp *macStatsRsp = NULLP;
1059
1060     DU_LOG("\nINFO  -->  MAC : MacSendStatsRspToDuApp: Sending Statistics Response to DU APP");
1061
1062    MAC_ALLOC_SHRABL_BUF(macStatsRsp, sizeof(MacStatsRsp));
1063    if(macStatsRsp == NULLP)
1064    {
1065       DU_LOG("\nERROR  -->  MAC : Failed to allocate memory in MacProcSchStatsRsp");
1066       ret = RFAILED;
1067    }
1068    else
1069    {
1070       memcpy(macStatsRsp, statsRsp, sizeof(MacStatsRsp));
1071       memset(statsRsp, 0, sizeof(MacStatsRsp));
1072
1073       memset(&pst, 0, sizeof(Pst));
1074       FILL_PST_MAC_TO_DUAPP(pst, EVENT_MAC_STATISTICS_RSP);
1075       if(((*macDuStatsRspOpts[pst.selector])(&pst, macStatsRsp))!= ROK)
1076       {
1077          DU_LOG("\nERROR  -->  MAC : Failed to send statistics response to DU APP");
1078          MAC_FREE_SHRABL_BUF(MAC_MEM_REGION, MAC_POOL, macStatsRsp, sizeof(MacStatsRsp));
1079          ret = RFAILED;
1080       }
1081    }
1082
1083    return ret;
1084 }
1085
1086 /*******************************************************************
1087  *
1088  * @brief Rejects all statistics group requested by DU APP
1089  *
1090  * @details
1091  *
1092  *    Function : MacRejectAllStats
1093  *
1094  *    Functionality: Add all statistics group received in statistics
1095  *       request from DU APP, to Reject-Stats-Group-List in statistics
1096  *       response to DU APP
1097  *
1098  * @params[in]  Statistics request from DU APP
1099  *              Cause of rejection
1100  * @return ROK     - success
1101  *         RFAILED - failure
1102  *
1103  * ****************************************************************/
1104 uint8_t MacRejectAllStats(MacStatsReq *macStatsReq, CauseOfResult cause)
1105 {
1106    uint8_t grpIdx = 0;
1107    MacStatsRsp macStatsRsp;
1108
1109    memset(&macStatsRsp, 0, sizeof(MacStatsRsp));
1110
1111    /* Copying all stats group from stats request to stats response */
1112    macStatsRsp.subscriptionId = macStatsReq->subscriptionId;
1113    for(grpIdx = 0; grpIdx < macStatsReq->numStatsGroup; grpIdx++)
1114    {
1115       macStatsRsp.statsGrpRejectedList[grpIdx].groupId = macStatsReq->statsGrpList[grpIdx].groupId;
1116       macStatsRsp.statsGrpRejectedList[grpIdx].cause = cause;
1117    }
1118    macStatsRsp.numGrpRejected = macStatsReq->numStatsGroup;
1119
1120    return MacSendStatsRspToDuApp(&macStatsRsp);
1121 }
1122
1123 /**
1124  * @brief Mac process the statistics Req received from DUAPP
1125  *
1126  * @details
1127  *
1128  *     Function : MacProcStatsReq
1129  *
1130  *     This function process the statistics request from duapp:
1131  *     [Step 1] Basic validation. If fails, all stats group in stats request are
1132  *     rejected.
1133  *     [Step 2] If basic validations passed, traverse all stats group and
1134  *     validate each measurement types in each group.
1135  *     [Step 3] If any measurement type validation fails in a group, that group 
1136  *     is not configured and it is added to stats-group-rejected-list in
1137  *     mac-stats-response message.
1138  *     [Step 4] Even if one group passes all validation, it is sent to SCH in
1139  *     statistics request. The mac-stats-response message is added to
1140  *     pending-response list. This will be sent to DU APP after stats response
1141  *     is received from SCH.
1142  *     [Step 5] If none of the groups passes all validation, mac-stats-response
1143  *     is sent to du app with all group as part of stats-group-rejected-list.
1144  *
1145  *  @param[in]  Pst      *pst
1146  *  @param[in]  StatsReq *statsReq
1147  *  @return  int
1148  *      -# ROK
1149  **/
1150 uint8_t MacProcStatsReq(Pst *pst, MacStatsReq *macStatsReq)
1151 {
1152    uint8_t       macStatsGrpIdx = 0, macStatsIdx = 0, schStatsGrpIdx = 0, schStatsIdx = 0;
1153    uint8_t       ret = RFAILED;
1154    bool          measTypeInvalid = false;
1155    Pst           schPst;
1156    MacStatsGrpInfo *macStatsGrp = NULLP;
1157    SchStatsReq     *schStatsReq = NULLP;
1158    MacStatsRsp     *macStatsRsp = NULLP;
1159
1160    DU_LOG("\nINFO   -->  MAC : Received Statistics Request from DU_APP");
1161
1162    if(macStatsReq == NULLP)
1163    {
1164       DU_LOG("\nERROR  -->  MAC : MacProcStatsReq(): Received Null pointer");
1165       return RFAILED;
1166    }
1167    
1168    /* [Step 1] Basic validation. If fails, statistics response is sent to DU APP
1169     * that rejectes all stats */
1170
1171    /* If number of statistics request for which response is still pending
1172     * towards DU APP has reached its maximum limit */
1173    if(macCb.statistics.numPendingStatsRsp >= MAX_PENDING_STATS_RSP)
1174    {
1175       DU_LOG("\nERROR  -->  MAC : MacProcStatsReq: Maximum number of statistics response is pending. \
1176          Cannot process new request."); 
1177       MacRejectAllStats(macStatsReq, RESOURCE_UNAVAILABLE);
1178       MAC_FREE_SHRABL_BUF(pst->region, pst->pool, macStatsReq, sizeof(MacStatsReq));
1179       return RFAILED;
1180    }
1181
1182    /* If memory resources are unavailable */
1183    MAC_ALLOC(schStatsReq, sizeof(SchStatsReq));
1184    if(schStatsReq == NULLP)
1185    {
1186       DU_LOG("\nERROR  -->  MAC : MacProcStatsReq: Failed to allocate memory");
1187       MacRejectAllStats(macStatsReq, RESOURCE_UNAVAILABLE);
1188       MAC_FREE_SHRABL_BUF(pst->region, pst->pool, macStatsReq, sizeof(MacStatsReq));
1189       return RFAILED;
1190    }
1191
1192    /* Add stats response to pending response list */ 
1193    macStatsRsp = &macCb.statistics.pendingStatsRsp[macCb.statistics.numPendingStatsRsp];
1194    memset(macStatsRsp, 0, sizeof(MacStatsRsp));
1195
1196    /* [Step 2] Traverse all stats group and validate each measurement types in each group */
1197    schStatsReq->subscriptionId = macStatsReq->subscriptionId;
1198    schStatsReq->numStatsGroup = 0;
1199    for(macStatsGrpIdx = 0; macStatsGrpIdx < macStatsReq->numStatsGroup; macStatsGrpIdx++)
1200    {
1201       measTypeInvalid = false;
1202       schStatsIdx = 0;
1203       macStatsGrp = &macStatsReq->statsGrpList[macStatsGrpIdx];
1204
1205       for(macStatsIdx=0; macStatsIdx < macStatsGrp->numStats; macStatsIdx++)
1206       {
1207          /* Validate each measurement type */
1208          switch(macStatsGrp->statsList[macStatsIdx])
1209          {
1210             case MAC_DL_TOTAL_PRB_USAGE:
1211                {
1212                   schStatsReq->statsGrpList[schStatsGrpIdx].statsList[schStatsIdx] = SCH_DL_TOTAL_PRB_USAGE;
1213                   break;
1214                }
1215             case MAC_UL_TOTAL_PRB_USAGE:
1216                {
1217                   schStatsReq->statsGrpList[schStatsGrpIdx].statsList[schStatsIdx] = SCH_UL_TOTAL_PRB_USAGE;
1218                   break;
1219                }
1220             default:
1221                {
1222                   DU_LOG("\nERROR  -->  MAC : MacProcStatsReq: Invalid measurement type [%d]", \
1223                      macStatsGrp->statsList[macStatsIdx]);
1224                   measTypeInvalid = true;
1225                }
1226          }
1227
1228          /* Even if one measurement type is invalid, this group is rejected */
1229          if(measTypeInvalid)
1230          {
1231             memset(&schStatsReq->statsGrpList[schStatsGrpIdx], 0, sizeof(SchStatsGrpInfo));
1232             break;
1233          }
1234          
1235          schStatsIdx++;
1236       }
1237
1238       /* If all measurement type is valid, add group info to send to SCH */
1239       if(!measTypeInvalid)
1240       {
1241          schStatsReq->statsGrpList[schStatsGrpIdx].groupId = macStatsGrp->groupId;
1242          schStatsReq->statsGrpList[schStatsGrpIdx].periodicity = macStatsGrp->periodicity;
1243          schStatsReq->statsGrpList[schStatsGrpIdx].numStats = schStatsIdx;
1244          schStatsGrpIdx++;
1245       }
1246       else
1247       {
1248          /* [Step 3] If any measurement type validation fails in a group, that group 
1249           * is not configured and it is added to stats-group-rejected-list in
1250           * mac-stats-response message */
1251          macStatsRsp->statsGrpRejectedList[macStatsRsp->numGrpRejected].groupId = macStatsGrp->groupId;
1252          macStatsRsp->statsGrpRejectedList[macStatsRsp->numGrpRejected].cause = PARAM_INVALID;
1253          macStatsRsp->numGrpRejected++;
1254       }
1255    }
1256    schStatsReq->numStatsGroup = schStatsGrpIdx;
1257
1258    macStatsRsp->subscriptionId = macStatsReq->subscriptionId;
1259
1260    if(schStatsReq->numStatsGroup)
1261    {
1262       /* [Step 4] Even if one group passes all validation, it is sent to SCH in
1263        * statistics request. The mac-stats-response message is added to
1264        * pending-response list. */     
1265       macCb.statistics.numPendingStatsRsp++;
1266
1267       FILL_PST_MAC_TO_SCH(schPst, EVENT_STATISTICS_REQ_TO_SCH);
1268       ret = SchMessageRouter(&schPst, (void *)schStatsReq);
1269    }
1270    else
1271    {
1272       /* [Step 5] If none of the groups passes all validation, mac-stats-response
1273        * is sent to du app with all group as part of stats-group-rejected-list. */
1274       DU_LOG("\nERROR  -->  MAC : MacProcStatsReq: All statistics group found invalid");
1275       MAC_FREE(schStatsReq, sizeof(SchStatsReq));
1276       ret = MacSendStatsRspToDuApp(macStatsRsp);
1277    }
1278
1279    MAC_FREE_SHRABL_BUF(pst->region, pst->pool, macStatsReq, sizeof(MacStatsReq));
1280    return ret;
1281 }
1282
1283 /**
1284  * @brief Mac process the statistics rsp received from sch.
1285  *
1286  * @details
1287  *
1288  *     Function : MacProcSchStatsRsp
1289  *
1290  *     This function  process the statistics response received from sch
1291  *
1292  *  @param[in]  Pst           *pst
1293  *  @param[in]  SchStatsRsp *schStatsRsp
1294  *  @return  int
1295  *      -# ROK
1296  **/
1297 uint8_t MacProcSchStatsRsp(Pst *pst, SchStatsRsp *schStatsRsp)
1298 {
1299    uint8_t idx = 0, accptdIdx = 0, rjctdIdx = 0;
1300    uint8_t ret = RFAILED;
1301    MacStatsRsp *macStatsRsp = NULLP;
1302
1303    if(schStatsRsp)
1304    {
1305       /* Fetch pointer to statistics response from pending list saved at MAC 
1306        * during processing statistics request from DU APP */ 
1307       for(idx = 0; idx < macCb.statistics.numPendingStatsRsp; idx++)
1308       {
1309          if(macCb.statistics.pendingStatsRsp[idx].subscriptionId == schStatsRsp->subscriptionId)
1310          {
1311             macStatsRsp = &macCb.statistics.pendingStatsRsp[idx];
1312             break;
1313          }
1314       }
1315
1316       if(macStatsRsp == NULLP)
1317       {
1318          MAC_FREE(schStatsRsp, sizeof(SchStatsRsp));
1319          return RFAILED;
1320       }
1321       
1322       /* Copy Stats-group-accpeted list received from SCH */
1323       for(accptdIdx = 0; accptdIdx<schStatsRsp->numGrpAccepted && macStatsRsp->numGrpAccepted<MAX_NUM_STATS_GRP; accptdIdx++)
1324       {
1325          macStatsRsp->statsGrpAcceptedList[macStatsRsp->numGrpAccepted++] = schStatsRsp->statsGrpAcceptedList[accptdIdx];
1326       }
1327
1328       /* List together all stats group rejected by MAC and by SCH */
1329       for(rjctdIdx = 0; rjctdIdx < schStatsRsp->numGrpRejected && macStatsRsp->numGrpRejected<MAX_NUM_STATS_GRP; rjctdIdx++)
1330       {
1331          macStatsRsp->statsGrpRejectedList[macStatsRsp->numGrpRejected].groupId = \
1332             schStatsRsp->statsGrpRejectedList[rjctdIdx].groupId;
1333          macStatsRsp->statsGrpRejectedList[macStatsRsp->numGrpRejected].cause = \
1334             schStatsRsp->statsGrpRejectedList[rjctdIdx].cause;
1335          macStatsRsp->numGrpRejected++;
1336       }
1337       
1338       /* Send statistics response to DU APP */
1339       ret = MacSendStatsRspToDuApp(macStatsRsp);
1340    }
1341    MAC_FREE(schStatsRsp, sizeof(SchStatsRsp));
1342    return ret;
1343 }
1344
1345 /**
1346  * @brief Fill and send statistics delete response to DU APP
1347  *
1348  * @details
1349  *
1350  *     Function : MacSendStatsDeleteRspToDuApp
1351  *
1352  *     Fill and send statistics delete response to DU APP
1353  *  [Step-1] In SCH delete response is received, fill MAC stats delete 
1354  *    response with info from SCH stats delete response.
1355  *  [Step-2] If a failure occurs while processing MAC stats delete request, 
1356  *    then fill MAC stats delete rsp with failure using info from MAC stats delete request.
1357  *  [Step-3] Else if numStatsGroup > 0, then send stats delete response 
1358  *    with deletion status of each stats group.
1359  *  [Step-4] If numStatsGroup = 0, send Stats delete response 
1360  *    for deletion of complete subscription.
1361  *
1362  *  @param[in]  SchStatsDeleteRsp
1363  *  @param[in]  MacStatsDeleteReq
1364  *  @return  int
1365  *      -# ROK
1366  **/
1367 uint8_t MacSendStatsDeleteRspToDuApp(SchStatsDeleteRsp *schStatsDeleteRsp,  MacStatsDeleteReq *macStatsDeleteReq)
1368 {
1369    Pst  pst;
1370    uint8_t ret = ROK, idx=0;
1371    MacStatsDeleteRsp *macStatsDeleteRsp=NULLP;
1372
1373    MAC_ALLOC_SHRABL_BUF(macStatsDeleteRsp, sizeof(MacStatsDeleteRsp));
1374    if(macStatsDeleteRsp == NULLP)
1375    {
1376       DU_LOG("\nERROR  -->  MAC : Failed to allocate memory in MacProcSchStatsDeleteRsp");
1377       ret = RFAILED;
1378    }
1379    
1380    if(schStatsDeleteRsp)
1381    {
1382       /* [Step-1] */ 
1383       macStatsDeleteRsp->subscriptionId = schStatsDeleteRsp->subscriptionId;
1384       macStatsDeleteRsp->numStatsGroupDeleted = schStatsDeleteRsp->numStatsGroupDeleted;
1385
1386       if(macStatsDeleteRsp->numStatsGroupDeleted)
1387       {
1388          /* [Step-3] */ 
1389          for(idx =0;idx<macStatsDeleteRsp->numStatsGroupDeleted; idx++)
1390          {
1391             if(schStatsDeleteRsp->statsGrpDelInfo[idx].statsGrpDelRsp == RSP_OK)
1392             {
1393                macStatsDeleteRsp->statsGrpDelInfo[idx].statsGrpDelRsp =MAC_DU_APP_RSP_OK;
1394                macStatsDeleteRsp->statsGrpDelInfo[idx].statsGrpDelCause =schStatsDeleteRsp->statsGrpDelInfo[idx].statsGrpDelCause;
1395             }
1396             else
1397             {
1398                macStatsDeleteRsp->statsGrpDelInfo[idx].statsGrpDelRsp =MAC_DU_APP_RSP_NOK;
1399                macStatsDeleteRsp->statsGrpDelInfo[idx].statsGrpDelCause =schStatsDeleteRsp->statsGrpDelInfo[idx].statsGrpDelCause;
1400             }
1401          }
1402       }
1403       else
1404       {
1405          /* [Step-4] */ 
1406          if(schStatsDeleteRsp->subsDelRsp == RSP_OK)
1407             macStatsDeleteRsp->subsDelRsp = MAC_DU_APP_RSP_OK;
1408          else
1409             macStatsDeleteRsp->subsDelRsp = MAC_DU_APP_RSP_NOK;
1410          macStatsDeleteRsp->subsDelCause = schStatsDeleteRsp->subsDelCause;
1411       }
1412    }
1413    else
1414    {
1415       /* [Step-2] */ 
1416       macStatsDeleteRsp->subscriptionId = macStatsDeleteReq->subscriptionId;
1417       macStatsDeleteRsp->numStatsGroupDeleted= macStatsDeleteReq->numStatsGroupToBeDeleted;
1418       
1419       if(macStatsDeleteRsp->numStatsGroupDeleted)
1420       {
1421          /* [Step-3] */ 
1422          for(idx =0;idx<macStatsDeleteRsp->numStatsGroupDeleted; idx++)
1423          {
1424             macStatsDeleteRsp->statsGrpDelInfo[idx].statsGrpDelRsp =MAC_DU_APP_RSP_NOK;
1425             macStatsDeleteRsp->statsGrpDelInfo[idx].statsGrpDelCause = RESOURCE_UNAVAILABLE;
1426          }
1427       }
1428       else
1429       {
1430          /* [Step-4] */ 
1431          macStatsDeleteRsp->subsDelRsp = MAC_DU_APP_RSP_NOK;
1432          macStatsDeleteRsp->subsDelCause = RESOURCE_UNAVAILABLE;
1433       }
1434    }
1435
1436    DU_LOG("\nINFO  -->  MAC : MacSendStatsDeleteRspToDuApp: Sending Delete Statistics Response to DU APP");
1437
1438    memset(&pst, 0, sizeof(Pst));
1439    FILL_PST_MAC_TO_DUAPP(pst, EVENT_MAC_STATS_DELETE_RSP);
1440    if(((*macDuStatsDeleteRspOpts[pst.selector])(&pst, macStatsDeleteRsp))!= ROK)
1441    {
1442       DU_LOG("\nERROR  -->  MAC : Failed to send statistics delete response to DU APP");
1443       MAC_FREE_SHRABL_BUF(MAC_MEM_REGION, MAC_POOL, macStatsDeleteRsp, sizeof(MacStatsDeleteRsp));
1444       ret = RFAILED;
1445    }
1446
1447    return ret;
1448 }
1449                  
1450 /**
1451  * @brief Mac process the statistics delete rsp received from sch.
1452  *
1453  * @details
1454  *
1455  *     Function : MacProcSchStatsDeleteRsp
1456  *
1457  *     This function  process the statistics delete response received from sch
1458  *
1459  *  @param[in]  Pst           *pst
1460  *  @param[in]  SchStatsDeleteRsp *schStatsDeleteRsp
1461  *  @return  int
1462  *      -# ROK
1463  **/
1464 uint8_t MacProcSchStatsDeleteRsp(Pst *pst, SchStatsDeleteRsp *schStatsDeleteRsp)
1465 {
1466    uint8_t ret = RFAILED;
1467
1468    if(schStatsDeleteRsp)
1469    {
1470       ret = MacSendStatsDeleteRspToDuApp(schStatsDeleteRsp, NULLP);
1471       MAC_FREE(schStatsDeleteRsp, sizeof(SchStatsDeleteRsp));
1472    }
1473    return ret;
1474 }
1475
1476 /**
1477  * @brief Mac process the statistics delete Req received from DUAPP
1478  *
1479  * @details
1480  *
1481  *     Function : MacProcStatsDeleteReq
1482  *
1483  *     Functionality: Process the statistics delete request from duapp
1484  *  @param[in]  Pst      *pst
1485  *  @param[in]  StatsDeleteReq *statsReq
1486  *  @return  int
1487  *      -# ROK
1488  **/
1489
1490 uint8_t MacProcStatsDeleteReq(Pst *pst, MacStatsDeleteReq *macStatsDeleteReq)
1491 {
1492    Pst       schPst;
1493    uint8_t   ret = RFAILED;
1494    SchStatsDeleteReq  *schStatsDeleteReq = NULLP;
1495  
1496    DU_LOG("\nINFO   -->  MAC : Received Statistics delete Request from DU_APP");
1497
1498    if(macStatsDeleteReq == NULLP)
1499    {
1500       DU_LOG("\nERROR  -->  MAC : MacProcStatsDeleteReq(): Received Null pointer");
1501       return RFAILED;
1502    }
1503    
1504    MAC_ALLOC(schStatsDeleteReq, sizeof(SchStatsDeleteReq));
1505    if(schStatsDeleteReq == NULLP)
1506    {
1507       DU_LOG("\nERROR  -->  MAC : MacProcStatsDeleteReq: Failed to allocate memory");
1508    }
1509    else
1510    {
1511       /* fill all the information in schStatsDeleteReq structure */
1512       schStatsDeleteReq->subscriptionId = macStatsDeleteReq->subscriptionId;
1513       schStatsDeleteReq->numStatsGroupToBeDeleted = macStatsDeleteReq->numStatsGroupToBeDeleted;
1514       memcpy(&schStatsDeleteReq->statsGrpIdToBeDelList, &macStatsDeleteReq->statsGrpIdToBeDelList, schStatsDeleteReq->numStatsGroupToBeDeleted*sizeof(uint8_t)); 
1515       FILL_PST_MAC_TO_SCH(schPst, EVENT_STATISTICS_DELETE_REQ_TO_SCH);
1516       ret = SchMessageRouter(&schPst, (void *)schStatsDeleteReq);
1517    }
1518
1519    if(ret != ROK)
1520    {
1521       ret = MacSendStatsDeleteRspToDuApp(NULLP, macStatsDeleteReq);
1522    }
1523
1524    MAC_FREE_SHRABL_BUF(pst->region, pst->pool, macStatsDeleteReq, sizeof(MacStatsDeleteReq));
1525    return ret;
1526 }
1527
1528 /**
1529  * @brief Fill and send statistics modification response to DU APP
1530  *
1531  * @details
1532  *
1533  *     Function : MacSendStatsModificationRspToDuApp 
1534  *
1535  *     Fill and send statistics modification response to DU APP
1536  *
1537  *  @param[in]  Stats modification Response
1538  *  @return  int
1539  *      -# ROK
1540  **/
1541 uint8_t MacSendStatsModificationRspToDuApp(MacStatsModificationRsp *tmpMacStatsModRsp)
1542 {
1543    Pst  pst;
1544    uint8_t ret = ROK;
1545    MacStatsModificationRsp *macStatsModificationRsp = NULLP;
1546
1547    DU_LOG("\nINFO  -->  MAC : MacSendStatsModificationRspToDuApp: Sending Statistics Modification Response to DU APP");
1548
1549
1550    MAC_ALLOC_SHRABL_BUF(macStatsModificationRsp, sizeof(MacStatsModificationRsp));
1551    if(macStatsModificationRsp == NULLP)
1552    {
1553       DU_LOG("\nERROR  -->  MAC : Failed to allocate memory in MacProcSchStatsModificationRsp");
1554       ret = RFAILED;
1555    }
1556    else
1557    {
1558       memcpy(macStatsModificationRsp, tmpMacStatsModRsp, sizeof(MacStatsModificationRsp));
1559       memset(tmpMacStatsModRsp, 0, sizeof(MacStatsModificationRsp));
1560
1561       memset(&pst, 0, sizeof(Pst));
1562       FILL_PST_MAC_TO_DUAPP(pst, EVENT_MAC_STATISTICS_MODIFY_RSP);
1563       if(((*macDuStatsModificationRspOpts[pst.selector])(&pst, macStatsModificationRsp))!= ROK)
1564       {
1565          DU_LOG("\nERROR  -->  MAC : Failed to send statistics modification response to DU APP");
1566          MAC_FREE_SHRABL_BUF(MAC_MEM_REGION, MAC_POOL, macStatsModificationRsp, sizeof(MacStatsModificationRsp));
1567          ret = RFAILED;
1568       }
1569    }
1570
1571    return ret;
1572 }
1573
1574 /**
1575  * @brief Mac process the statistics modification rsp received from sch.
1576  *
1577  * @details
1578  *
1579  *     Function : MacProcSchStatsModificationRsp
1580  *
1581  *     This function  process the statistics modification response received from sch
1582  *     [Step -1] Fetch pointer to statistics response from pending list saved at
1583  *     MAC during processing statistics request from DU APP
1584  *     [Step -2] Fill the list of accepted list
1585  *     [Step -3] Fill the list of rejected list
1586  *     [Step -4] Send statistics modification response to DU APP
1587  *
1588  *  @param[in]  Pst           *pst
1589  *  @param[in]  SchStatsModificationRsp *schStatsModificationRsp
1590  *  @return  int
1591  *      -# ROK
1592  **/
1593 uint8_t MacProcSchStatsModificationRsp(Pst *pst, SchStatsModificationRsp *schStatsModificationRsp)
1594 {
1595    uint8_t ret = RFAILED;
1596    uint8_t idx = 0, accptdIdx = 0, rjctdIdx = 0;
1597    MacStatsModificationRsp *macStatsModificationRsp = NULLP;
1598
1599    if(schStatsModificationRsp)
1600    {
1601       /* [Step -1] */
1602       for(idx = 0; idx < macCb.statistics.numPendingStatsRsp; idx++)
1603       {
1604          if(macCb.statistics.pendingStatsRsp[idx].subscriptionId == schStatsModificationRsp->subscriptionId)
1605          {
1606             macStatsModificationRsp = &macCb.statistics.pendingStatsRsp[idx];
1607             break;
1608          }
1609       }
1610
1611       if(macStatsModificationRsp == NULLP)
1612       {
1613          MAC_FREE(schStatsModificationRsp, sizeof(SchStatsModificationRsp));
1614          return RFAILED;
1615       }
1616       
1617       /* [Step -2] */
1618       for(accptdIdx = 0; accptdIdx<schStatsModificationRsp->numGrpAccepted && macStatsModificationRsp->numGrpAccepted<MAX_NUM_STATS_GRP; accptdIdx++)
1619       {
1620          macStatsModificationRsp->statsGrpAcceptedList[macStatsModificationRsp->numGrpAccepted++] = schStatsModificationRsp->statsGrpAcceptedList[accptdIdx];
1621       }
1622
1623       /* [Step -3] */
1624       for(rjctdIdx = 0; rjctdIdx < schStatsModificationRsp->numGrpRejected && macStatsModificationRsp->numGrpRejected<MAX_NUM_STATS_GRP; rjctdIdx++)
1625       {
1626          macStatsModificationRsp->statsGrpRejectedList[macStatsModificationRsp->numGrpRejected].groupId = \
1627             schStatsModificationRsp->statsGrpRejectedList[rjctdIdx].groupId;
1628          macStatsModificationRsp->statsGrpRejectedList[macStatsModificationRsp->numGrpRejected].cause = \
1629             schStatsModificationRsp->statsGrpRejectedList[rjctdIdx].cause;
1630          macStatsModificationRsp->numGrpRejected++;
1631       }
1632
1633       /* [Step -4] */
1634       ret = MacSendStatsModificationRspToDuApp(macStatsModificationRsp);
1635    }
1636    MAC_FREE(schStatsModificationRsp, sizeof(SchStatsModificationRsp));
1637    return ret;
1638 }
1639
1640 /*******************************************************************
1641  *
1642  * @brief Rejects all statistics modification group requested by DU APP
1643  *
1644  * @details
1645  *
1646  *    Function : MacRejectAllStatsModification
1647  *
1648  *    Functionality: Add all statistics modification group received in statistics
1649  *       request from DU APP, to Reject-StatsModification-Group-List in statistics
1650  *       response to DU APP
1651  *
1652  * @params[in]  Statistics request from DU APP
1653  *              Cause of rejection
1654  * @return ROK     - success
1655  *         RFAILED - failure
1656  *
1657  * ****************************************************************/
1658 uint8_t MacRejectAllStatsModification(MacStatsModificationReq *macStatsModificationReq, CauseOfResult cause)
1659 {
1660    uint8_t grpIdx = 0;
1661    MacStatsModificationRsp macStatsModificationRsp;
1662
1663    memset(&macStatsModificationRsp, 0, sizeof(MacStatsModificationRsp));
1664
1665    /* fill the subscriptionId and the rejected list in stats modification rsp */
1666    macStatsModificationRsp.subscriptionId = macStatsModificationReq->subscriptionId;
1667    for(grpIdx = 0; grpIdx < macStatsModificationReq->numStatsGroup; grpIdx++)
1668    {
1669       macStatsModificationRsp.statsGrpRejectedList[grpIdx].groupId = macStatsModificationReq->statsGrpList[grpIdx].groupId;
1670       macStatsModificationRsp.statsGrpRejectedList[grpIdx].cause = cause;
1671    }
1672    macStatsModificationRsp.numGrpRejected = macStatsModificationReq->numStatsGroup;
1673
1674    return MacSendStatsModificationRspToDuApp(&macStatsModificationRsp);
1675 }
1676
1677 /**
1678  * @brief Mac process the statistics Modification Req received from DUAPP
1679  *
1680  * @details
1681  *
1682  *     Function : MacProcStatsModificationReq
1683  *
1684  *     This function process the statistics Modification request from duapp:
1685  *     [Step 1] Basic validation. If fails, all stats group in stats request are
1686  *     rejected.
1687  *     [Step 2] If basic validations passed, traverse all stats group and
1688  *     validate each measurement types in each group.
1689  *     [Step 3] If any measurement type validation fails in a group, that group
1690  *     is not configured and it is added to stats-group-rejected-list in
1691  *     mac-stats-response message.
1692  *     [Step 4] Even if one group passes all validation, it is sent to SCH in
1693  *     statistics request. The mac-stats-response message is added to
1694  *     pending-response list. This will be sent to DU APP after stats response
1695  *     is received from SCH.
1696  *     [Step 5] If none of the groups passes all validation, mac-stats-response
1697  *     is sent to du app with all group as part of stats-group-rejected-list.
1698  *
1699  *  @param[in]  Pst      *pst
1700  *  @param[in]  StatsModificationReq *statsModificationReq
1701  *  @return  int
1702  *      -# ROK
1703  **/
1704 uint8_t MacProcStatsModificationReq(Pst *pst, MacStatsModificationReq *macStatsModificationReq)
1705 {
1706    Pst           schPst;
1707    uint8_t       ret = RFAILED;
1708    bool          measTypeInvalid = false;
1709    uint8_t       macStatsGrpIdx = 0, macStatsIdx = 0;
1710    uint8_t       schStatsGrpIdx = 0, schStatsIdx = 0;
1711    MacStatsGrpInfo          *macStatsGrp = NULLP;
1712    SchStatsModificationReq  *schStatsModificationReq = NULLP;
1713    MacStatsModificationRsp  *macStatsModificationRsp = NULLP;
1714
1715    DU_LOG("\nINFO   -->  MAC : Received Statistics Modification Request from DU_APP");
1716
1717    if(macStatsModificationReq == NULLP)
1718    {
1719       DU_LOG("\nERROR  -->  MAC : MacProcStatsModificationReq(): Received Null pointer");
1720       return RFAILED;
1721    }
1722
1723    /* [Step -1] */
1724    if(macCb.statistics.numPendingStatsRsp >= MAX_PENDING_STATS_RSP)
1725    {
1726       DU_LOG("\nERROR  -->  MAC : MacProcStatsModificationReq: Maximum number of statistics response is pending. \
1727          Cannot process new request.");
1728       MacRejectAllStatsModification(macStatsModificationReq, RESOURCE_UNAVAILABLE);
1729       MAC_FREE_SHRABL_BUF(pst->region, pst->pool, macStatsModificationReq, sizeof(MacStatsModificationReq));
1730       return RFAILED;
1731    }
1732
1733    MAC_ALLOC(schStatsModificationReq, sizeof(SchStatsModificationReq));
1734    if(schStatsModificationReq == NULLP)
1735    {
1736       DU_LOG("\nERROR  -->  MAC : MacProcStatsModificationReq: Failed to allocate memory");
1737       MacRejectAllStatsModification(macStatsModificationReq, RESOURCE_UNAVAILABLE);
1738       MAC_FREE_SHRABL_BUF(pst->region, pst->pool, macStatsModificationReq, sizeof(MacStatsModificationReq));
1739       return RFAILED;
1740    }
1741
1742    macStatsModificationRsp = &macCb.statistics.pendingStatsRsp[macCb.statistics.numPendingStatsRsp];
1743    memset(macStatsModificationRsp, 0, sizeof(MacStatsModificationRsp));
1744
1745    /* [Step 2]  */
1746    schStatsModificationReq->subscriptionId = macStatsModificationReq->subscriptionId;
1747    schStatsModificationReq->numStatsGroup = 0;
1748    for(macStatsGrpIdx = 0; macStatsGrpIdx < macStatsModificationReq->numStatsGroup; macStatsGrpIdx++)
1749    {
1750       measTypeInvalid = false;
1751       schStatsIdx = 0;
1752       macStatsGrp = &macStatsModificationReq->statsGrpList[macStatsGrpIdx];
1753
1754       for(macStatsIdx=0; macStatsIdx < macStatsGrp->numStats; macStatsIdx++)
1755       {
1756          switch(macStatsGrp->statsList[macStatsIdx])
1757          {
1758             case MAC_DL_TOTAL_PRB_USAGE:
1759                {
1760                   schStatsModificationReq->statsGrpList[schStatsGrpIdx].statsList[schStatsIdx] = SCH_DL_TOTAL_PRB_USAGE;
1761                   break;
1762                }
1763             case MAC_UL_TOTAL_PRB_USAGE:
1764                {
1765                   schStatsModificationReq->statsGrpList[schStatsGrpIdx].statsList[schStatsIdx] = SCH_UL_TOTAL_PRB_USAGE;
1766                   break;
1767                }
1768             default:
1769                {
1770                   DU_LOG("\nERROR  -->  MAC : MacProcStatsModificationReq: Invalid measurement type [%d]", \
1771                      macStatsGrp->statsList[macStatsIdx]);
1772                   measTypeInvalid = true;
1773                }
1774          }
1775
1776          if(measTypeInvalid)
1777          {
1778             memset(&schStatsModificationReq->statsGrpList[schStatsGrpIdx], 0, sizeof(SchStatsGrpInfo));
1779             break;
1780          }
1781
1782          schStatsIdx++;
1783       }
1784
1785       if(!measTypeInvalid)
1786       {
1787          schStatsModificationReq->statsGrpList[schStatsGrpIdx].groupId = macStatsGrp->groupId;
1788          schStatsModificationReq->statsGrpList[schStatsGrpIdx].periodicity = macStatsGrp->periodicity;
1789          schStatsModificationReq->statsGrpList[schStatsGrpIdx].numStats = schStatsIdx;
1790          schStatsGrpIdx++;
1791       }
1792       else
1793       {
1794          /* [Step 3] */
1795          macStatsModificationRsp->statsGrpRejectedList[macStatsModificationRsp->numGrpRejected].groupId = macStatsGrp->groupId;
1796          macStatsModificationRsp->statsGrpRejectedList[macStatsModificationRsp->numGrpRejected].cause = PARAM_INVALID;
1797          macStatsModificationRsp->numGrpRejected++;
1798       }
1799    }
1800    schStatsModificationReq->numStatsGroup = schStatsGrpIdx;
1801
1802    macStatsModificationRsp->subscriptionId = macStatsModificationReq->subscriptionId;
1803    if(schStatsModificationReq->numStatsGroup)
1804    {
1805       /* [Step 4] */
1806       macCb.statistics.numPendingStatsRsp++;
1807
1808       FILL_PST_MAC_TO_SCH(schPst, EVENT_STATISTICS_MODIFY_REQ_TO_SCH);
1809       ret = SchMessageRouter(&schPst, (void *)schStatsModificationReq);
1810    }
1811    else
1812    {
1813       /* [Step 5] */
1814       DU_LOG("\nERROR  -->  MAC : MacProcStatsModificationReq: All statistics group found invalid");
1815       MAC_FREE(schStatsModificationReq, sizeof(SchStatsModificationReq));
1816       ret = MacSendStatsModificationRspToDuApp(macStatsModificationRsp);
1817    }
1818
1819    MAC_FREE_SHRABL_BUF(pst->region, pst->pool, macStatsModificationReq, sizeof(MacStatsModificationReq));
1820    return ret;
1821 }
1822
1823 /**********************************************************************
1824   End of file
1825  **********************************************************************/