[EPIC-ID: ODUHIGH-488][TASK-ID: ODUHIGH-494]Framework to support for slice based...
[o-du/l2.git] / src / 5gnrsch / sch.c
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2017-2019] [Radisys]                                        #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17 *******************************************************************************/
18
19 /************************************************************************
20  
21      Name:     sch.c
22   
23      Type:     C source file
24   
25      Desc:     C source code for scheduler fucntions
26   
27      File:     sch.c
28   
29 **********************************************************************/
30
31 /** @file sch.c
32 @brief This file implements the schedulers main access to MAC layer code.
33 */
34 #include "common_def.h" 
35 #include "du_app_mac_inf.h"
36 #include "lrg.h"
37 #include "tfu.h"
38 #include "du_log.h"
39 #include "rgr.h"
40 #include "rg_sch_inf.h"
41 #include "rg_sch.h"
42
43 #include "tfu.x"           /* TFU types */
44 #include "lrg.x"           /* layer management typedefs for MAC */
45 #include "rgr.x"           /* layer management typedefs for MAC */
46 #include "rg_sch_inf.x"         /* typedefs for Scheduler */
47 #include "mac_sch_interface.h"
48 #include "sch.h"
49 #include "sch_utils.h"
50 #include "sch_fcfs.h"
51 #include "sch_slice_based.h"
52
53 /**
54  * @brief Task Initiation function. 
55  *
56  * @details
57  *
58  *     Function : schActvInit
59  *     
60  *     This function is supplied as one of parameters during MAC's 
61  *     task registration. MAC will invoke this function once, after
62  *     it creates and attaches this TAPA Task to a system task.
63  *     
64  *  @param[in]  Ent Entity, the entity ID of this task.     
65  *  @param[in]  Inst Inst, the instance ID of this task.
66  *  @param[in]  Region Region, the region ID registered for memory 
67  *              usage of this task.
68  *  @param[in]  Reason Reason.
69  *  @return  int
70  *      -# ROK
71  **/
72 uint8_t schActvInit(Ent entity, Inst instId, Region region, Reason reason)
73 {
74    Inst inst = (instId  - SCH_INST_START);
75
76    /* Initialize the MAC TskInit structure to zero */
77    memset ((uint8_t *)&schCb[inst], 0, sizeof(schCb));
78
79    /* Initialize the MAC TskInit with received values */
80    schCb[inst].schInit.ent = entity;
81    schCb[inst].schInit.inst = inst;
82    schCb[inst].schInit.region = region;
83    schCb[inst].schInit.pool = 0;
84    schCb[inst].schInit.reason = reason;
85    schCb[inst].schInit.cfgDone = FALSE;
86    schCb[inst].schInit.acnt = FALSE;
87    schCb[inst].schInit.usta = FALSE;
88    schCb[inst].schInit.trc = FALSE;
89    schCb[inst].schInit.procId = ODU_GET_PROCID();
90
91    return ROK;
92 } /* schActvInit */
93
94 /**
95  * @brief Scheduler All Apis initialized. 
96  *
97  * @details
98  *
99  *     Function : schAllApisInit
100  *     
101  *     This function initializes all Scheduler APIs/functionality for each kind
102  *     of scheduler type. 
103  *     
104  *  @param[in]  Inst inst, the Scheduler instance 
105  *  @return  void
106  **/
107 void schAllApisInit(Inst inst)
108 {
109     schFcfsAllApisInit(&schCb[inst].allApis[SCH_FCFS]);  
110     schSliceBasedAllApisInit(&schCb[inst].allApis[SCH_SLICE_BASED]);
111 }
112
113 /**
114  * @brief Scheduler instance Configuration Handler. 
115  *
116  * @details
117  *
118  *     Function : SchInstCfg
119  *     
120  *     This function in called by SchProcGenCfgReq(). It handles the
121  *     general configurations of the scheduler instance. Returns
122  *     reason for success/failure of this function.
123  *     
124  *  @param[in]  RgCfg *cfg, the Configuaration information 
125  *  @return  uint16_t
126  *      -# LCM_REASON_NOT_APPL 
127  *      -# LCM_REASON_INVALID_MSGTYPE
128  *      -# LCM_REASON_MEM_NOAVAIL
129  **/
130 uint8_t SchInstCfg(RgCfg *cfg, Inst  dInst)
131 {
132    uint16_t ret = LCM_REASON_NOT_APPL;
133    Inst     inst = (dInst - SCH_INST_START);
134
135    DU_LOG("\nDEBUG  -->  SCH : Entered SchInstCfg()");
136    /* Check if Instance Configuration is done already */
137    if (schCb[inst].schInit.cfgDone == TRUE)
138    {
139       return LCM_REASON_INVALID_MSGTYPE;
140    }
141    /* Update the Pst structure for LM interface */
142    memcpy(&schCb[inst].schInit.lmPst, &cfg->s.schInstCfg.genCfg.lmPst, sizeof(Pst));
143
144    schCb[inst].schInit.inst = inst;
145    schCb[inst].schInit.lmPst.srcProcId = schCb[inst].schInit.procId;
146    schCb[inst].schInit.lmPst.srcEnt = schCb[inst].schInit.ent;
147    schCb[inst].schInit.lmPst.srcInst = schCb[inst].schInit.inst +
148       SCH_INST_START;
149    schCb[inst].schInit.lmPst.event = EVTNONE;
150
151    schCb[inst].schInit.region = cfg->s.schInstCfg.genCfg.mem.region;
152    schCb[inst].schInit.pool = cfg->s.schInstCfg.genCfg.mem.pool;
153    schCb[inst].genCfg.tmrRes = cfg->s.schInstCfg.genCfg.tmrRes;
154 #ifdef LTE_ADV
155    schCb[inst].genCfg.forceCntrlSrbBoOnPCel =  cfg->s.schInstCfg.genCfg.forceCntrlSrbBoOnPCel;
156    schCb[inst].genCfg.isSCellActDeactAlgoEnable =  cfg->s.schInstCfg.genCfg.isSCellActDeactAlgoEnable;
157 #endif
158    schCb[inst].genCfg.startCellId    = cfg->s.schInstCfg.genCfg.startCellId;
159
160    /* Initialzie the timer queue */   
161    memset(&schCb[inst].tmrTq, 0, sizeof(CmTqType) * SCH_TQ_SIZE);
162    /* Initialize the timer control point */
163    memset(&schCb[inst].tmrTqCp, 0, sizeof(CmTqCp));
164    schCb[inst].tmrTqCp.tmrLen = RGSCH_TQ_SIZE;
165
166    /* SS_MT_TMR needs to be enabled as schActvTmr needs instance information */
167    /* Timer Registration request to system services */
168    if (ODU_REG_TMR_MT(schCb[inst].schInit.ent, dInst, (int)schCb[inst].genCfg.tmrRes, schActvTmr) != ROK)
169    {
170       DU_LOG("\nERROR  -->  SCH : SchInstCfg(): Failed to "
171             "register timer.");
172       return (LCM_REASON_MEM_NOAVAIL);
173    }   
174               
175    /* Set Config done in TskInit */
176    schCb[inst].schInit.cfgDone = TRUE;
177    DU_LOG("\nINFO   -->  SCH : Scheduler gen config done");
178    
179    schAllApisInit(inst);
180    return ret;
181 }
182
183 /**
184  * @brief Layer Manager Configuration request handler. 
185  *
186  * @details
187  *
188  *     Function : SchProcGenCfgReq
189  *     
190  *     This function handles the configuration
191  *     request received at scheduler instance from the Layer Manager.
192  *     -# Based on the cfg->hdr.elmId.elmnt value it invokes one of the
193  *        functions rgHdlGenCfg() or rgHdlSapCfg().
194  *     -# Invokes RgMiLrgSchCfgCfm() to send back the confirmation to the LM.
195  *     
196  *  @param[in]  Pst *pst, the post structure     
197  *  @param[in]  RgMngmt *cfg, the configuration parameter's structure
198  *  @return  S16
199  *      -# ROK
200  **/
201 uint8_t SchProcGenCfgReq(Pst *pst, RgMngmt *cfg)
202 {
203    uint8_t   ret = LCM_PRIM_OK;
204    uint16_t  reason = LCM_REASON_NOT_APPL;
205    RgMngmt   cfm;
206    Pst       cfmPst;
207
208    if(pst->dstInst < SCH_INST_START)
209    {
210       DU_LOG("\nERROR  -->  SCH : Invalid inst ID");
211       DU_LOG("\nERROR  -->  SCH : SchProcGenCfgReq(): "
212             "pst->dstInst=%d SCH_INST_START=%d", pst->dstInst,SCH_INST_START); 
213       return ROK;
214    }
215    DU_LOG("\nINFO   -->  SCH : Received scheduler gen config");
216    /* Fill the post structure for sending the confirmation */
217    memset(&cfmPst, 0 , sizeof(Pst));
218    SchFillCfmPst(pst, &cfmPst, cfg);
219
220    memset(&cfm, 0, sizeof(RgMngmt));
221
222 #ifdef LMINT3
223    cfm.hdr.transId =
224       cfg->hdr.transId;
225 #endif
226
227    cfm.hdr.elmId.elmnt = cfg->hdr.elmId.elmnt;
228    switch(cfg->hdr.elmId.elmnt)
229    {
230       case STSCHINST:
231          reason = SchInstCfg(&cfg->t.cfg,pst->dstInst );
232          break;
233       default:
234          ret = LCM_PRIM_NOK;
235          reason = LCM_REASON_INVALID_ELMNT;
236          DU_LOG("\nERROR  -->  SCH : Invalid Elmnt=%d", cfg->hdr.elmId.elmnt);
237          break;
238    }
239
240    if (reason != LCM_REASON_NOT_APPL)
241    {
242       ret = LCM_PRIM_NOK;
243    }
244
245    cfm.cfm.status = ret;
246    cfm.cfm.reason = reason;
247
248    SchSendCfgCfm(&cfmPst, &cfm);
249    /*   SCH_FREE(pst->region, pst->pool, (Data *)cfg, sizeof(RgMngmt)); */
250
251    return ROK;
252 }/*-- SchProcGenCfgReq --*/
253
254 #ifdef NR_TDD
255 /**
256  *@brief Returns TDD periodicity in micro seconds
257  *
258  * @details
259  * 
260  * Function : schGetPeriodicityInMsec 
261  * 
262  * This API retunrs TDD periodicity in micro seconds
263  * 
264  * @param[in] DlUlTxPeriodicity 
265  * @return  periodicityInMsec
266  * **/
267
268 uint16_t schGetPeriodicityInMsec(DlUlTxPeriodicity tddPeriod)
269 {
270    uint16_t  periodicityInMsec = 0;
271    switch(tddPeriod)
272    {
273       case TX_PRDCTY_MS_0P5:
274       {
275          periodicityInMsec = 500;
276          break;
277       }
278       case TX_PRDCTY_MS_0P625:
279       {
280          periodicityInMsec = 625;
281          break;
282       }
283       case TX_PRDCTY_MS_1:
284       {
285          periodicityInMsec = 1000;
286          break;
287       }
288       case TX_PRDCTY_MS_1P25:
289       {
290          periodicityInMsec = 1250;
291          break;
292       }
293       case TX_PRDCTY_MS_2:
294       {
295          periodicityInMsec = 2000;
296          break;
297       }
298       case TX_PRDCTY_MS_2P5:
299       {
300          periodicityInMsec = 2500;
301          break;
302       }
303       case TX_PRDCTY_MS_5:
304       {
305          periodicityInMsec = 5000;
306          break;
307       }
308       case TX_PRDCTY_MS_10:
309       {
310          periodicityInMsec = 10000;
311          break;
312       }
313       default:
314       {
315          DU_LOG("\nERROR  -->  SCH : Invalid DlUlTxPeriodicity:%d", tddPeriod);
316       }
317    }
318
319    return periodicityInMsec;
320 }
321
322
323 /**
324  * @brief init TDD slot config 
325  *
326  * @details
327  *
328  *     Function : schInitTddSlotCfg 
329  *      
330  *      This API is invoked after receiving schCellCfg
331  *           
332  *  @param[in]  schCellCb *cell
333  *  @param[in]  SchCellCfg *schCellCfg
334  *  @return  void
335  **/
336 void schInitTddSlotCfg(SchCellCb *cell, SchCellCfg *schCellCfg)
337 {
338    uint16_t periodicityInMicroSec = 0;
339    int8_t slotIdx, symbIdx;
340
341    periodicityInMicroSec = schGetPeriodicityInMsec(schCellCfg->tddCfg.tddPeriod);
342    cell->numSlotsInPeriodicity = (periodicityInMicroSec * pow(2, schCellCfg->numerology))/1000;
343    cell->slotFrmtBitMap = 0;
344    cell->symbFrmtBitMap = 0;
345    for(slotIdx = cell->numSlotsInPeriodicity-1; slotIdx >= 0; slotIdx--)
346    {
347       symbIdx = 0;
348       /* If the first and last symbol are the same, the entire slot is the same type */
349       if((schCellCfg->tddCfg.slotCfg[slotIdx][symbIdx] == schCellCfg->tddCfg.slotCfg[slotIdx][MAX_SYMB_PER_SLOT-1]) &&
350               schCellCfg->tddCfg.slotCfg[slotIdx][symbIdx] != FLEXI_SLOT)
351       {
352          switch(schCellCfg->tddCfg.slotCfg[slotIdx][symbIdx])
353          {
354             case DL_SLOT:
355             {
356                /*BitMap to be set to 00 */
357                cell->slotFrmtBitMap = (cell->slotFrmtBitMap<<2);
358                break;
359             }
360             case UL_SLOT:
361             {
362                /*BitMap to be set to 01 */
363                cell->slotFrmtBitMap = ((cell->slotFrmtBitMap<<2) | (UL_SLOT));
364                break;
365             }
366             default:
367                DU_LOG("\nERROR  -->  SCH : Invalid slot Config in schInitTddSlotCfg");
368            }
369          continue;
370       }
371       /* slot config is flexible. First set slotBitMap to 10 */
372       cell->slotFrmtBitMap = ((cell->slotFrmtBitMap<<2) | (FLEXI_SLOT));
373
374       /* Now set symbol bitmap */ 
375       for(symbIdx = MAX_SYMB_PER_SLOT-1; symbIdx >= 0; symbIdx--)
376       {
377          switch(schCellCfg->tddCfg.slotCfg[slotIdx][symbIdx])
378          {
379             case DL_SLOT:
380             {
381                /*symbol BitMap to be set to 00 */
382                cell->symbFrmtBitMap = (cell->symbFrmtBitMap<<2);
383                break;
384             }
385             case UL_SLOT:
386             {
387                /*symbol BitMap to be set to 01 */
388                cell->symbFrmtBitMap = ((cell->symbFrmtBitMap<<2) | (UL_SLOT));
389                break;
390             }
391             case FLEXI_SLOT:
392             {
393                /*symbol BitMap to be set to 10 */
394                cell->symbFrmtBitMap = ((cell->symbFrmtBitMap<<2) | (FLEXI_SLOT));
395                break;
396             }
397             default:
398                DU_LOG("\nERROR  -->  SCH : Invalid slot Config in schInitTddSlotCfg");
399          }
400       }
401    }
402 }
403 #endif
404
405 /**
406  * @brief Fill SSB start symbol
407  *
408  * @details
409  *
410  *     Function : fillSsbStartSymb 
411  *      
412  *      This API stores SSB start index per beam
413  *           
414  *  @param[in]  SchCellCb     *cellCb
415  *  @return  int
416  *      -# ROK 
417  *      -# RFAILED 
418  **/
419 void fillSsbStartSymb(SchCellCb *cellCb)
420 {
421    uint8_t cnt, scs, symbIdx, ssbStartSymbArr[SCH_MAX_SSB_BEAM];
422
423    scs = cellCb->cellCfg.ssbSchCfg.scsCommon;
424
425    memset(ssbStartSymbArr, 0, sizeof(SCH_MAX_SSB_BEAM));
426    symbIdx = 0;
427    /* Determine value of "n" based on Section 4.1 of 3GPP TS 38.213 */
428    switch(scs)
429    {
430       case SCS_15KHZ:
431          {
432             if(cellCb->cellCfg.dlFreq <= 300000)
433                cnt = 2;/* n = 0, 1 */
434             else
435                cnt = 4; /* n = 0, 1, 2, 3 */
436             for(uint8_t idx=0; idx<cnt; idx++)
437             {
438                /* start symbol determined using {2, 8} + 14n */
439                ssbStartSymbArr[symbIdx++] = 2 +  MAX_SYMB_PER_SLOT*idx;
440                ssbStartSymbArr[symbIdx++] = 8 +  MAX_SYMB_PER_SLOT*idx;
441             }
442          }
443          break;
444       case SCS_30KHZ:
445          {
446             if(cellCb->cellCfg.dlFreq <= 300000)
447                cnt = 1;/* n = 0 */
448             else
449                cnt = 2; /* n = 0, 1 */
450             for(uint8_t idx=0; idx<cnt; idx++)
451             {
452                /* start symbol determined using {4, 8, 16, 20} + 28n */
453                ssbStartSymbArr[symbIdx++] = 4 +  MAX_SYMB_PER_SLOT*idx;
454                ssbStartSymbArr[symbIdx++] = 8 +  MAX_SYMB_PER_SLOT*idx;
455                ssbStartSymbArr[symbIdx++] = 16 +  MAX_SYMB_PER_SLOT*idx;
456                ssbStartSymbArr[symbIdx++] = 20 +  MAX_SYMB_PER_SLOT*idx;
457             }
458          }
459          break;
460       default:
461          DU_LOG("\nERROR  -->  SCH : SCS %d is currently not supported", scs);
462    }
463    memset(cellCb->ssbStartSymbArr, 0, sizeof(SCH_MAX_SSB_BEAM));
464    memcpy(cellCb->ssbStartSymbArr, ssbStartSymbArr, SCH_MAX_SSB_BEAM);
465
466 }
467
468
469 /**
470  * @brief init cellCb based on cellCfg
471  *
472  * @details
473  *
474  *     Function : schInitCellCb 
475  *      
476  *      This API is invoked after receiving schCellCfg
477  *           
478  *  @param[in]  schCellCb *cell
479  *  @param[in]  SchCellCfg *schCellCfg
480  *  @return  int
481  *      -# ROK 
482  *      -# RFAILED 
483  **/
484 uint8_t schInitCellCb(Inst inst, SchCellCfg *schCellCfg)
485 {
486    SchCellCb *cell= NULLP;
487    SCH_ALLOC(cell, sizeof(SchCellCb));
488    if(!cell)
489    {
490       DU_LOG("\nERROR  -->  SCH : Memory allocation failed in schInitCellCb");
491       return RFAILED;
492    }
493
494    cell->cellId = schCellCfg->cellId; 
495    cell->instIdx = inst;
496    switch(schCellCfg->numerology)
497    {
498       case SCH_NUMEROLOGY_0:
499          {
500             cell->numSlots = SCH_MU0_NUM_SLOTS;
501          }
502          break;
503       case SCH_NUMEROLOGY_1:
504          {
505             cell->numSlots = SCH_MU1_NUM_SLOTS;
506          }
507          break;
508       case SCH_NUMEROLOGY_2:
509          {
510             cell->numSlots = SCH_MU2_NUM_SLOTS;
511          }
512          break;
513       case SCH_NUMEROLOGY_3:
514          {
515             cell->numSlots = SCH_MU3_NUM_SLOTS;
516          }
517          break;
518       case SCH_NUMEROLOGY_4:
519          {
520             cell->numSlots = SCH_MU4_NUM_SLOTS;
521          }
522          break;
523       default:
524          DU_LOG("\nERROR  -->  SCH : Numerology %d not supported", schCellCfg->numerology);
525    }
526 #ifdef NR_TDD
527    schInitTddSlotCfg(cell, schCellCfg);   
528 #endif
529
530    SCH_ALLOC(cell->schDlSlotInfo, cell->numSlots * sizeof(SchDlSlotInfo*));
531    if(!cell->schDlSlotInfo)
532    {
533       DU_LOG("\nERROR  -->  SCH : Memory allocation failed in schInitCellCb for schDlSlotInfo");
534       return RFAILED;
535    }
536
537    SCH_ALLOC(cell->schUlSlotInfo, cell->numSlots * sizeof(SchUlSlotInfo*));
538    if(!cell->schUlSlotInfo)
539    {
540       DU_LOG("\nERROR  -->  SCH : Memory allocation failed in schInitCellCb for schUlSlotInfo");
541       return RFAILED;
542    }
543
544    for(uint8_t idx=0; idx<cell->numSlots; idx++)
545    {
546       SchDlSlotInfo *schDlSlotInfo;
547       SchUlSlotInfo *schUlSlotInfo;
548
549       /* DL Alloc */
550       SCH_ALLOC(schDlSlotInfo, sizeof(SchDlSlotInfo));
551       if(!schDlSlotInfo)
552       {
553          DU_LOG("\nERROR  -->  SCH : Memory allocation failed in schInitCellCb");
554          return RFAILED;
555       }
556
557       /* UL Alloc */
558       SCH_ALLOC(schUlSlotInfo, sizeof(SchUlSlotInfo));
559       if(!schUlSlotInfo)
560       {
561          DU_LOG("\nERROR  -->  SCH : Memory allocation failed in schInitCellCb");
562          return RFAILED;
563       }
564
565       schInitDlSlot(schDlSlotInfo);
566       schInitUlSlot(schUlSlotInfo);
567
568       cell->schDlSlotInfo[idx] = schDlSlotInfo;
569       cell->schUlSlotInfo[idx] = schUlSlotInfo;
570
571    }
572    cell->firstSsbTransmitted = false;
573    cell->firstSib1Transmitted = false;
574    fillSsbStartSymb(cell);
575
576 #ifdef NR_DRX
577    memset(cell->drxCb, 0, MAX_DRX_SIZE*sizeof(SchDrxCb));
578 #endif   
579    schCb[inst].cells[inst] = cell;
580
581    DU_LOG("\nINFO  -->  SCH : Cell init completed for cellId:%d", cell->cellId);
582
583    return ROK;   
584 }
585
586 /**
587  * @brief Fill SIB1 configuration
588  *
589  * @details
590  *
591  *     Function : fillSchSib1Cfg
592  *
593  *     Fill SIB1 configuration
594  *
595  *  @param[in]  uint8_t bandwidth : total available bandwidth
596  *              uint8_t numSlots : total slots per SFN
597  *              SchSib1Cfg *sib1SchCfg : cfg to be filled
598  *              uint16_t pci : physical cell Id
599  *              uint8_t offsetPointA : offset
600  *  @return  void
601  **/
602 void fillSchSib1Cfg(uint8_t mu, uint8_t bandwidth, uint8_t numSlots, SchSib1Cfg *sib1SchCfg, uint16_t pci, uint8_t offsetPointA)
603 {
604    uint8_t coreset0Idx = 0;
605    uint8_t searchSpace0Idx = 0;
606    //uint8_t ssbMuxPattern = 0;
607    uint8_t numRbs = 0;
608    uint8_t numSymbols = 0;
609    uint8_t offset = 0;
610    uint8_t oValue = 0;
611    //uint8_t numSearchSpacePerSlot = 0;
612    uint8_t mValue = 0;
613    uint8_t firstSymbol = 0; /* need to calculate using formula mentioned in 38.213 */
614    uint8_t slotIndex = 0;
615    uint8_t FreqDomainResource[FREQ_DOM_RSRC_SIZE] = {0};
616    uint16_t tbSize = 0;
617    uint8_t ssbIdx = 0;
618
619    PdcchCfg *pdcch = &(sib1SchCfg->sib1PdcchCfg);
620    PdschCfg *pdsch = &(sib1SchCfg->sib1PdschCfg);
621    BwpCfg *bwp = &(sib1SchCfg->bwp);
622
623    coreset0Idx     = sib1SchCfg->coresetZeroIndex;
624    searchSpace0Idx = sib1SchCfg->searchSpaceZeroIndex;
625
626    /* derive the sib1 coreset0 params from table 13-1 spec 38.213 */
627    //ssbMuxPattern = coresetIdxTable[coreset0Idx][0];
628    numRbs        = coresetIdxTable[coreset0Idx][1];
629    numSymbols    = coresetIdxTable[coreset0Idx][2];
630    offset        = coresetIdxTable[coreset0Idx][3];
631
632    /* derive the search space params from table 13-11 spec 38.213 */
633    oValue                = searchSpaceIdxTable[searchSpace0Idx][0];
634    //numSearchSpacePerSlot = searchSpaceIdxTable[searchSpace0Idx][1];
635    mValue                = searchSpaceIdxTable[searchSpace0Idx][2];
636    firstSymbol           = searchSpaceIdxTable[searchSpace0Idx][3];
637
638    /* calculate the n0, need to add the formulae, as of now the value is 0 
639     * Need to add the even and odd values of i during configuration 
640     * [(O . 2^u + i . M )  ] mod numSlotsPerSubframe 
641     * assuming u = 0, i = 0, numSlotsPerSubframe = 10
642     * Also, from this configuration, coreset0 is only on even subframe */
643    slotIndex = (int)((oValue*pow(2, mu)) + floor(ssbIdx*mValue))%numSlots;
644    sib1SchCfg->n0 = slotIndex;
645
646    /* fill BWP */
647    switch(bandwidth)
648    {
649       case BANDWIDTH_20MHZ:
650          {
651             bwp->freqAlloc.numPrb = TOTAL_PRB_20MHZ_MU0;
652          }
653          break;
654       case BANDWIDTH_100MHZ:
655          {
656             bwp->freqAlloc.numPrb = TOTAL_PRB_100MHZ_MU1;
657          }
658          break;
659       default:
660          DU_LOG("\nERROR  -->  SCH : Bandwidth %d not supported", bandwidth);
661
662    }
663    bwp->freqAlloc.startPrb = 0;
664    bwp->subcarrierSpacing  = 0;         /* 15Khz */
665    bwp->cyclicPrefix       = 0;              /* normal */
666
667    /* fill the PDCCH PDU */
668    pdcch->coresetCfg.coreSetSize = numRbs;
669    pdcch->coresetCfg.startSymbolIndex = firstSymbol;
670    pdcch->coresetCfg.durationSymbols = numSymbols;
671    
672    /* Fill Bitmap for PRBs in coreset */
673    fillCoresetFeqDomAllocMap(((offsetPointA-offset)/6), (numRbs/6), FreqDomainResource);
674    covertFreqDomRsrcMapToIAPIFormat(FreqDomainResource, pdcch->coresetCfg.freqDomainResource);
675
676    pdcch->coresetCfg.cceRegMappingType = 1; /* coreset0 is always interleaved */
677    pdcch->coresetCfg.regBundleSize = 6;    /* spec-38.211 sec 7.3.2.2 */
678    pdcch->coresetCfg.interleaverSize = 2;  /* spec-38.211 sec 7.3.2.2 */
679    pdcch->coresetCfg.coreSetType = 0;
680    pdcch->coresetCfg.shiftIndex = pci;
681    pdcch->coresetCfg.precoderGranularity = 0; /* sameAsRegBundle */
682    pdcch->numDlDci = 1;
683    pdcch->dci.rnti = SI_RNTI;
684    pdcch->dci.scramblingId = pci;
685    pdcch->dci.scramblingRnti = 0;
686    pdcch->dci.cceIndex = 0;
687    pdcch->dci.aggregLevel = 4;
688    pdcch->dci.beamPdcchInfo.numPrgs = 1;
689    pdcch->dci.beamPdcchInfo.prgSize = 1;
690    pdcch->dci.beamPdcchInfo.digBfInterfaces = 0;
691    pdcch->dci.beamPdcchInfo.prg[0].pmIdx = 0;
692    pdcch->dci.beamPdcchInfo.prg[0].beamIdx[0] = 0;
693    pdcch->dci.txPdcchPower.powerValue = 0;
694    pdcch->dci.txPdcchPower.powerControlOffsetSS = 0;
695    /* Storing pdschCfg pointer here. Required to access pdsch config while
696       fillig up pdcch pdu */
697    pdcch->dci.pdschCfg = pdsch; 
698
699    /* fill the PDSCH PDU */
700    uint8_t cwCount = 0;
701    pdsch->pduBitmap = 0; /* PTRS and CBG params are excluded */
702    pdsch->rnti = 0xFFFF; /* SI-RNTI */
703    pdsch->pduIndex = 0;
704    pdsch->numCodewords = 1;
705    for(cwCount = 0; cwCount < pdsch->numCodewords; cwCount++)
706    {
707       pdsch->codeword[cwCount].targetCodeRate = 308;
708       pdsch->codeword[cwCount].qamModOrder = 2;
709       pdsch->codeword[cwCount].mcsIndex = sib1SchCfg->sib1Mcs;
710       pdsch->codeword[cwCount].mcsTable = 0; /* notqam256 */
711       pdsch->codeword[cwCount].rvIndex = 0;
712       tbSize = schCalcTbSize(sib1SchCfg->sib1PduLen + TX_PAYLOAD_HDR_LEN);
713       pdsch->codeword[cwCount].tbSize = tbSize;
714    }
715    pdsch->dataScramblingId                   = pci;
716    pdsch->numLayers                          = 1;
717    pdsch->transmissionScheme                 = 0;
718    pdsch->refPoint                           = 0;
719    pdsch->dmrs.dlDmrsSymbPos                 = 4; /* Bitmap value 00000000000100 i.e. using 3rd symbol for PDSCH DMRS */
720    pdsch->dmrs.dmrsConfigType                = 0; /* type-1 */
721    pdsch->dmrs.dlDmrsScramblingId            = pci;
722    pdsch->dmrs.scid                          = 0;
723    pdsch->dmrs.numDmrsCdmGrpsNoData          = 1;
724    pdsch->dmrs.dmrsPorts                     = 0x0001;
725    pdsch->dmrs.mappingType                   = DMRS_MAP_TYPE_A; /* Type-A */
726    pdsch->dmrs.nrOfDmrsSymbols               = NUM_DMRS_SYMBOLS;
727    pdsch->dmrs.dmrsAddPos                    = DMRS_ADDITIONAL_POS;
728
729    pdsch->pdschFreqAlloc.resourceAllocType   = 1; /* RAT type-1 RIV format */
730    /* the RB numbering starts from coreset0, and PDSCH is always above SSB */
731    pdsch->pdschFreqAlloc.freqAlloc.startPrb  = offsetPointA + SCH_SSB_NUM_PRB;
732    pdsch->pdschFreqAlloc.freqAlloc.numPrb    = schCalcNumPrb(tbSize,sib1SchCfg->sib1Mcs, NUM_PDSCH_SYMBOL);
733    pdsch->pdschFreqAlloc.vrbPrbMapping       = 0; /* non-interleaved */
734    pdsch->pdschTimeAlloc.rowIndex            = 1;
735    /* This is Intel's requirement. PDSCH should start after PDSCH DRMS symbol */
736    pdsch->pdschTimeAlloc.timeAlloc.startSymb = 3; /* spec-38.214, Table 5.1.2.1-1 */
737    pdsch->pdschTimeAlloc.timeAlloc.numSymb   = NUM_PDSCH_SYMBOL;
738    pdsch->beamPdschInfo.numPrgs              = 1;
739    pdsch->beamPdschInfo.prgSize              = 1;
740    pdsch->beamPdschInfo.digBfInterfaces      = 0;
741    pdsch->beamPdschInfo.prg[0].pmIdx         = 0;
742    pdsch->beamPdschInfo.prg[0].beamIdx[0]    = 0;
743    pdsch->txPdschPower.powerControlOffset    = 0;
744    pdsch->txPdschPower.powerControlOffsetSS  = 0;
745
746 }
747
748 /**
749  * @brief cell config from MAC to SCH.
750  *
751  * @details
752  *
753  *     Function : macSchCellCfgReq
754  *      
755  *      This API is invoked by MAC to send cell config to SCH
756  *           
757  *  @param[in]  Pst            *pst
758  *  @param[in]  SchCellCfg     *schCellCfg
759  *  @return  int
760  *      -# ROK 
761  *      -# RFAILED 
762  **/
763 uint8_t SchProcCellCfgReq(Pst *pst, SchCellCfg *schCellCfg)
764 {
765    uint8_t ret = ROK;
766    SchCellCb *cellCb;
767    SchCellCfgCfm schCellCfgCfm;
768    Pst rspPst;
769    Inst inst = pst->dstInst - SCH_INST_START; 
770    uint8_t coreset0Idx = 0;
771    uint8_t numRbs = 0;
772    uint8_t offset = 0;
773    uint8_t freqDomainResource[FREQ_DOM_RSRC_SIZE] = {0};
774    SchPdschConfig pdschCfg;
775
776    schInitCellCb(inst, schCellCfg);
777    cellCb = schCb[inst].cells[inst]; //cells is of MAX_CELLS, why inst
778    cellCb->macInst = pst->srcInst;
779
780    /* derive the SIB1 config parameters */
781    fillSchSib1Cfg(schCellCfg->numerology, schCellCfg->bandwidth, cellCb->numSlots,
782          &(schCellCfg->sib1SchCfg), schCellCfg->phyCellId,
783          schCellCfg->ssbSchCfg.ssbOffsetPointA);
784    
785    
786    memcpy(&cellCb->cellCfg, schCellCfg, sizeof(SchCellCfg));
787    schProcPagingCfg(cellCb);
788
789    /* Fill coreset frequencyDomainResource bitmap */
790    coreset0Idx = cellCb->cellCfg.schInitialDlBwp.pdcchCommon.commonSearchSpace.coresetId;
791    numRbs = coresetIdxTable[coreset0Idx][1];
792    offset = coresetIdxTable[coreset0Idx][3];
793    fillCoresetFeqDomAllocMap(((cellCb->cellCfg.ssbSchCfg.ssbOffsetPointA - offset)/6), (numRbs/6), freqDomainResource);
794    covertFreqDomRsrcMapToIAPIFormat(freqDomainResource, \
795       cellCb->cellCfg.schInitialDlBwp.pdcchCommon.commonSearchSpace.freqDomainRsrc);
796
797    /* Fill K0 - K1 table for common cfg*/ 
798    BuildK0K1Table(cellCb, &cellCb->cellCfg.schInitialDlBwp.k0K1InfoTbl, true, cellCb->cellCfg.schInitialDlBwp.pdschCommon,
799    pdschCfg, DEFAULT_UL_ACK_LIST_COUNT, defaultUlAckTbl);
800    
801    BuildK2InfoTable(cellCb, cellCb->cellCfg.schInitialUlBwp.puschCommon.timeDomRsrcAllocList,\
802    cellCb->cellCfg.schInitialUlBwp.puschCommon.numTimeDomRsrcAlloc, &cellCb->cellCfg.schInitialUlBwp.msg3K2InfoTbl, \
803    &cellCb->cellCfg.schInitialUlBwp.k2InfoTbl);
804    /* Initializing global variables */
805    cellCb->actvUeBitMap = 0;
806    cellCb->boIndBitMap = 0;
807
808    cellCb->cellCfg.schHqCfg.maxDlDataHqTx = SCH_MAX_NUM_DL_HQ_TX;
809    cellCb->cellCfg.schHqCfg.maxMsg4HqTx = SCH_MAX_NUM_MSG4_TX;
810    cellCb->cellCfg.schHqCfg.maxUlDataHqTx = SCH_MAX_NUM_UL_HQ_TX;
811    cellCb->cellCfg.schRachCfg.maxMsg3Tx = SCH_MAX_NUM_MSG3_TX;
812
813    cellCb->schAlgoType = SCH_FCFS;
814    cellCb->api = &schCb[inst].allApis[cellCb->schAlgoType]; /* For FCFS */
815    cellCb->api->SchCellCfgReq(cellCb);
816    
817    /* Fill and send Cell config confirm */
818    memset(&rspPst, 0, sizeof(Pst));
819    FILL_PST_SCH_TO_MAC(rspPst, pst->dstInst);
820    rspPst.event = EVENT_SCH_CELL_CFG_CFM;
821
822    schCellCfgCfm.cellId = schCellCfg->cellId; 
823    schCellCfgCfm.rsp = RSP_OK;
824
825    ret = MacMessageRouter(&rspPst, (void *)&schCellCfgCfm);
826    return ret;
827
828 }
829
830 /*******************************************************************
831  *
832  * @brief Fill and send Cell delete response to MAC
833  *
834  * @details
835  *
836  *    Function :  SchSendCellDeleteRspToMac
837  *
838  *    Functionality: Fill and send Cell delete response to MAC
839  *
840  * @params[in] SchCellDelete  *ueDelete, Inst inst, SchMacRsp result
841  * @return ROK     - success
842  *         RFAILED - failure
843  *
844  * ****************************************************************/
845 uint8_t SchSendCellDeleteRspToMac(SchCellDeleteReq  *ueDelete, Inst inst, SchMacRsp result)
846 {
847    Pst rspPst;
848    uint8_t ret=0;
849    
850    SchCellDeleteRsp  delRsp;
851
852    DU_LOG("\nINFO   --> SCH : Filling Cell Delete response");
853    memset(&delRsp, 0, sizeof(SchCellDeleteRsp));
854    delRsp.cellId = ueDelete->cellId;
855    delRsp.rsp = result;
856
857    /* Filling response post */
858    memset(&rspPst, 0, sizeof(Pst));
859    FILL_PST_SCH_TO_MAC(rspPst, inst);
860    rspPst.event = EVENT_CELL_DELETE_RSP_TO_MAC;
861    ret = MacMessageRouter(&rspPst, (void *)&delRsp);
862    if(ret == RFAILED)
863    {
864       DU_LOG("\nERROR  -->  SCH : SchSendCellDeleteRspToMac(): failed to send the Cell Delete response");
865       return ret;
866    }
867    return ret;
868 }
869
870 /*******************************************************************
871  *
872  * @brief Function for cellCb Deletion 
873  *
874  * @details
875  *
876  *    Function : deleteSchCellCb 
877  *
878  *    Functionality: Function for cellCb Deletion 
879  *
880  * @params[in] SchCellDelete  *cellDelete
881  * @return ROK     - success
882  *         RFAILED - failure
883  *
884  * ****************************************************************/
885 void deleteSchCellCb(SchCellCb *cellCb)
886 {
887    uint8_t sliceIdx=0, slotIdx=0;
888    CmLListCp *list=NULL;
889    CmLList *node=NULL, *next=NULL;
890    SchPageInfo *tempNode = NULLP;
891
892    if(cellCb->schDlSlotInfo)
893    {
894       for(slotIdx=0; slotIdx<cellCb->numSlots; slotIdx++)
895       {
896          list = &cellCb->schDlSlotInfo[slotIdx]->prbAlloc.freePrbBlockList;
897          node = list->first;
898          while(node)
899          {
900             next = node->next;
901             SCH_FREE(node->node, sizeof(FreePrbBlock));
902             deleteNodeFromLList(list, node);
903             node = next;
904          }
905          SCH_FREE(cellCb->schDlSlotInfo[slotIdx], sizeof(SchDlSlotInfo));
906       }
907       SCH_FREE(cellCb->schDlSlotInfo, cellCb->numSlots *sizeof(SchDlSlotInfo*));
908    }
909
910    if(cellCb->schUlSlotInfo)
911    {
912       for(slotIdx=0; slotIdx<cellCb->numSlots; slotIdx++)
913       {
914          list = &cellCb->schUlSlotInfo[slotIdx]->prbAlloc.freePrbBlockList;
915          node = list->first;
916          while(node)
917          {
918             next = node->next;
919             SCH_FREE(node->node, sizeof(FreePrbBlock));
920             deleteNodeFromLList(list, node);
921             node = next;
922          }
923          SCH_FREE(cellCb->schUlSlotInfo[slotIdx], sizeof(SchUlSlotInfo));  
924       }
925       SCH_FREE(cellCb->schUlSlotInfo,  cellCb->numSlots * sizeof(SchUlSlotInfo*));
926    }
927
928    if(cellCb->cellCfg.plmnInfoList.snssai)
929    {
930       for(sliceIdx=0; sliceIdx<cellCb->cellCfg.plmnInfoList.numSliceSupport; sliceIdx++)
931       {
932          SCH_FREE(cellCb->cellCfg.plmnInfoList.snssai[sliceIdx], sizeof(Snssai));
933       }
934       SCH_FREE(cellCb->cellCfg.plmnInfoList.snssai, cellCb->cellCfg.plmnInfoList.numSliceSupport*sizeof(Snssai*));
935    }
936    
937    for(uint16_t idx =0; idx<MAX_SFN; idx++)
938    {
939       list = &cellCb->pageCb.pageIndInfoRecord[idx];
940       node = list->first;
941       while(node)
942       {
943          next = node->next;
944          if(node->node)
945          {
946             tempNode = (SchPageInfo*)(node->node);
947             SCH_FREE(tempNode->pagePdu, tempNode->msgLen);
948             SCH_FREE(node->node,  sizeof(SchPageInfo));
949          }
950          deleteNodeFromLList(list, node);
951          node = next;
952       }
953    }
954
955    cellCb->api->SchCellDeleteReq(cellCb);
956
957    memset(cellCb, 0, sizeof(SchCellCb));
958 }
959
960 /*******************************************************************
961  *
962  * @brief Function for cell Delete request from MAC to SCH
963  *
964  * @details
965  *
966  *    Function : SchProcCellDeleteReq
967  *
968  *    Functionality: Function for cell Delete request from MAC to SCH
969  *
970  * @params[in] Pst *pst, SchCellDelete  *cellDelete
971  * @return ROK     - success
972  *         RFAILED - failure
973  *
974  * ****************************************************************/
975 uint8_t SchProcCellDeleteReq(Pst *pst, SchCellDeleteReq  *cellDelete)
976 {
977    uint8_t   cellIdx=0, ret = RFAILED;
978    Inst      inst = pst->dstInst - SCH_INST_START;
979    SchMacRsp result= RSP_OK;
980    
981    if(!cellDelete)
982    {
983       DU_LOG("\nERROR  -->  SCH : SchProcCellDeleteReq(): Ue Delete request failed");
984    }
985    else
986    {
987       GET_CELL_IDX(cellDelete->cellId, cellIdx);
988       if(schCb[inst].cells[cellIdx] == NULLP)
989       { 
990          DU_LOG("\nERROR  -->  SCH : SchProcCellDeleteReq(): cell Id[%d] is not available", cellDelete->cellId);
991          result = RSP_NOK;
992       }
993       else
994       {
995          if(schCb[inst].cells[cellIdx]->cellId == cellDelete->cellId)
996          {
997             deleteSchCellCb(schCb[inst].cells[cellIdx]);
998             result = RSP_OK;
999             ret = ROK;
1000             SCH_FREE(schCb[inst].cells[cellIdx], sizeof(SchCellCb));
1001             DU_LOG("\nINFO   -->  SCH : Sending Cell Delete response to MAC");
1002          }
1003          else
1004          {
1005             DU_LOG("\nERROR  -->  SCH : SchProcCellDeleteReq(): cell Id[%d] is not available",cellDelete->cellId);
1006             result = RSP_NOK;
1007          }
1008       }
1009
1010       if(SchSendCellDeleteRspToMac(cellDelete, inst, result)!=ROK)
1011       {
1012          DU_LOG("\nERROR  -->  SCH : SchProcCellDeleteReq(): failed to send Cell Delete response");
1013          ret =  RFAILED;
1014       }
1015    }
1016    return ret;   
1017 }
1018
1019 /*******************************************************************
1020  *
1021  * @brief Processes DL RLC BO info from MAC
1022  *
1023  * @details
1024  *
1025  *    Function : SchProcDlRlcBoInfo
1026  *
1027  *    Functionality:
1028  *       Processes DL RLC BO info from MAC
1029  *
1030  * @params[in] 
1031  * @return ROK     - success
1032  *         RFAILED - failure
1033  *
1034  * ****************************************************************/
1035 uint8_t SchProcDlRlcBoInfo(Pst *pst, DlRlcBoInfo *dlBoInfo)
1036 {
1037    uint8_t  lcId = 0;
1038    uint16_t ueId = 0;
1039    bool isLcIdValid = false;
1040    SchUeCb *ueCb = NULLP;
1041    SchCellCb *cell = NULLP;
1042    Inst  inst = pst->dstInst-SCH_INST_START;   
1043
1044    DU_LOG("\nDEBUG  -->  SCH : Received RLC BO Status indication LCId [%d] BO [%d]", dlBoInfo->lcId, dlBoInfo->dataVolume);
1045    cell = schCb[inst].cells[inst];
1046
1047    if(cell == NULLP)
1048    {
1049       DU_LOG("\nERROR  -->  SCH : SchProcDlRlcBoInfo(): Cell does not exists");
1050       return RFAILED;
1051    }
1052
1053    GET_UE_ID(dlBoInfo->crnti, ueId);
1054    ueCb = &cell->ueCb[ueId-1];
1055    if(ueCb->ueCfg.dataTransmissionAction == STOP_DATA_TRANSMISSION)
1056    {
1057       DU_LOG("INFO  --> SCH : DL Data transmission not allowed for UE %d", ueCb->ueCfg.ueId);
1058       return ROK;
1059    }
1060    
1061    lcId  = dlBoInfo->lcId;
1062    CHECK_LCID(lcId, isLcIdValid);
1063    if(isLcIdValid == FALSE)
1064    {
1065       DU_LOG("ERROR --> SCH: LCID:%d is not valid", lcId);
1066       return RFAILED;
1067    }
1068
1069    /*Expected when theres a case of Retransmission Failure or Resetablishment
1070     *By Zero BO, the RLC is informing that previous data can be cleared out
1071     *Thus clearing out the LC from the Lc priority list*/
1072    if(dlBoInfo->dataVolume == 0)
1073    {
1074       /* TODO : Check the LC is Dedicated or default and accordingly LCList
1075        * will be used*/
1076       return ROK;
1077    }
1078
1079    if(lcId == SRB0_LCID)
1080    {
1081       cell->raCb[ueId -1].msg4recvd = true;
1082       cell->raCb[ueId -1].dlMsgPduLen = dlBoInfo->dataVolume;      
1083    }
1084    else
1085    {
1086       /* TODO : These part of changes will be corrected during DL scheduling as
1087        * per K0 - K1 -K2 */
1088       SET_ONE_BIT(ueId, cell->boIndBitMap);
1089       if(ueCb->dlInfo.dlLcCtxt[lcId].lcId == lcId)
1090       {
1091          ueCb->dlInfo.dlLcCtxt[lcId].bo = dlBoInfo->dataVolume;
1092       }
1093       else
1094       {
1095          DU_LOG("ERROR --> SCH: LCID:%d is not configured in SCH Cb",lcId);
1096          return RFAILED;
1097       }
1098    }
1099    /* Adding UE Id to list of pending UEs to be scheduled */
1100    cell->api->SchDlRlcBoInfo(cell, ueId);
1101    return ROK;
1102 }
1103
1104 /*******************************************************************
1105  *
1106  * @brief Processes BSR indiation from MAC
1107  *
1108  * @details
1109  *
1110  *    Function : SchProcBsr
1111  *
1112  *    Functionality:
1113  *       Processes DL BSR from MAC
1114  *
1115  * @params[in]    Pst pst
1116  *                UlBufferStatusRptInd bsrInd
1117  * @return ROK     - success
1118  *         RFAILED - failure
1119  *
1120  * ****************************************************************/
1121 uint8_t SchProcBsr(Pst *pst, UlBufferStatusRptInd *bsrInd)
1122 {
1123    Inst           schInst       = pst->dstInst-SCH_INST_START;
1124    SchCellCb      *cellCb       = NULLP;
1125    SchUeCb        *ueCb         = NULLP;
1126    uint8_t        lcgIdx = 0;
1127
1128    DU_LOG("\nDEBUG  -->  SCH : Received BSR");
1129    if(bsrInd == NULLP)
1130    {
1131       DU_LOG("\nERROR  -->  SCH : BSR Ind is empty");
1132       return RFAILED;
1133    }
1134    cellCb = schCb[schInst].cells[schInst];
1135    if(cellCb == NULLP)
1136    {
1137       DU_LOG("\nERROR  -->  SCH : CellCb is empty");
1138       return RFAILED;
1139    }
1140    ueCb = schGetUeCb(cellCb, bsrInd->crnti);
1141
1142    if(ueCb == NULLP)
1143    {
1144       DU_LOG("\nERROR  -->  SCH : UeCB is empty");
1145       return RFAILED;
1146    }
1147
1148    if(ueCb->ueCfg.dataTransmissionAction == STOP_DATA_TRANSMISSION)
1149    {
1150       DU_LOG("\nINFO --> SCH: UL Data transmission not allowed for UE %d", ueCb->ueCfg.ueId);
1151       return ROK;
1152    }
1153    
1154    ueCb->bsrRcvd = true;
1155    /* store dataVolume per lcg in uecb */
1156    for(lcgIdx = 0; lcgIdx < bsrInd->numLcg; lcgIdx++)
1157    {
1158       ueCb->bsrInfo[bsrInd->dataVolInfo[lcgIdx].lcgId].priority = 1; //TODO: determining LCG priority?
1159       ueCb->bsrInfo[bsrInd->dataVolInfo[lcgIdx].lcgId].dataVol = bsrInd->dataVolInfo[lcgIdx].dataVol;
1160    }
1161    
1162    /* Adding UE Id to list of pending UEs to be scheduled */
1163    cellCb->api->SchBsr(cellCb, ueCb->ueId);
1164    return ROK;
1165 }
1166
1167 /*******************************************************************
1168  *
1169  * @brief Processes SR UCI indication from MAC 
1170  *
1171  * @details
1172  *
1173  *    Function : SchProcSrUciInd
1174  *
1175  *    Functionality:
1176  *      Processes SR UCI indication from MAC
1177  *
1178  * @params[in] Post structure
1179  *             UCI Indication
1180  * @return ROK     - success
1181  *         RFAILED - failure
1182  *
1183  * ****************************************************************/
1184 uint8_t SchProcSrUciInd(Pst *pst, SrUciIndInfo *uciInd)
1185 {
1186    Inst  inst = pst->dstInst-SCH_INST_START;
1187
1188    SchUeCb   *ueCb; 
1189    SchCellCb *cellCb = schCb[inst].cells[inst];
1190
1191    DU_LOG("\nDEBUG  -->  SCH : Received SR");
1192
1193    ueCb = schGetUeCb(cellCb, uciInd->crnti);
1194    
1195    if(ueCb->state == SCH_UE_STATE_INACTIVE)
1196    {
1197       DU_LOG("\nERROR  -->  SCH : Crnti %d is inactive", uciInd->crnti);
1198       return ROK;  
1199    }
1200    if(ueCb->ueCfg.dataTransmissionAction == STOP_DATA_TRANSMISSION)
1201    {
1202       DU_LOG("\nINFO --> SCH: UL Data transmission not allowed for UE %d", ueCb->ueCfg.ueId);
1203       return ROK;
1204    }
1205    if(uciInd->numSrBits)
1206    {
1207       ueCb->srRcvd = true;      
1208       /* Adding UE Id to list of pending UEs to be scheduled */
1209       cellCb->api->SchSrUciInd(cellCb, ueCb->ueId);
1210    }
1211    return ROK;
1212 }
1213
1214 /*******************************************************************
1215  *
1216  * @brief Processes DL HARQ indication from MAC 
1217  *
1218  * @details
1219  *
1220  *    Function : SchProcDlHarqInd
1221  *
1222  *    Functionality:
1223  *      Processes DL HARQ indication from MAC
1224  *
1225  * @params[in] Post structure
1226  *             DL HARQ Indication
1227  * @return ROK     - success
1228  *         RFAILED - failure
1229  *
1230  * ****************************************************************/
1231 uint8_t SchProcDlHarqInd(Pst *pst, DlHarqInd *dlHarqInd)
1232 {
1233    Inst  inst = pst->dstInst-SCH_INST_START;
1234    SchUeCb   *ueCb;
1235    SchCellCb *cellCb = schCb[inst].cells[inst];
1236
1237    DU_LOG("\nDEBUG  -->  SCH : Received HARQ");
1238
1239    ueCb = schGetUeCb(cellCb, dlHarqInd->crnti);
1240
1241    if(ueCb->state == SCH_UE_STATE_INACTIVE)
1242    {
1243       DU_LOG("\nERROR  -->  SCH : Crnti %d is inactive", dlHarqInd->crnti);
1244       return ROK;
1245    }
1246
1247    schUpdateHarqFdbk(ueCb, dlHarqInd->numHarq, dlHarqInd->harqPayload, &dlHarqInd->slotInd);
1248
1249    return ROK;
1250 }
1251
1252 /*******************************************************************
1253  *
1254  * @brief Allocates requested PRBs for DL
1255  *
1256  * @details
1257  *
1258  *    Function : allocatePrbDl
1259  *
1260  *    Functionality:
1261  *      Allocates requested PRBs in DL
1262  *      Keeps track of allocated PRB (using bitmap) and remaining PRBs
1263  *
1264  * @params[in] prbAlloc table
1265  *             Start symbol
1266  *             Number of symbols
1267  *             Start PRB
1268  *             Number of PRBs
1269  *
1270  * @return ROK     - success
1271  *         RFAILED - failure
1272  *
1273  * ****************************************************************/
1274 uint8_t allocatePrbDl(SchCellCb *cell, SlotTimingInfo slotTime, \
1275    uint8_t startSymbol, uint8_t symbolLength, uint16_t *startPrb, uint16_t numPrb)
1276 {
1277    uint8_t        symbol = 0;
1278    uint16_t       broadcastPrbStart=0, broadcastPrbEnd=0;
1279    FreePrbBlock   *freePrbBlock = NULLP;
1280    CmLList        *freePrbNode = NULLP;
1281    PduTxOccsaion  ssbOccasion=0, sib1Occasion=0;
1282    SchDlSlotInfo  *schDlSlotInfo = cell->schDlSlotInfo[slotTime.slot];
1283    SchPrbAlloc    *prbAlloc = &schDlSlotInfo->prbAlloc;
1284
1285    /* If startPrb is set to MAX_NUM_RB, it means startPrb is not known currently.
1286     * Search for an appropriate location in PRB grid and allocate requested resources */
1287    if(*startPrb == MAX_NUM_RB)
1288    {
1289       /* Check if SSB/SIB1 is also scheduled in this slot  */
1290       ssbOccasion = schCheckSsbOcc(cell, slotTime);
1291       sib1Occasion = schCheckSib1Occ(cell, slotTime);
1292
1293       if(ssbOccasion && sib1Occasion)
1294       {
1295          broadcastPrbStart = cell->cellCfg.ssbSchCfg.ssbOffsetPointA; 
1296          broadcastPrbEnd = broadcastPrbStart + SCH_SSB_NUM_PRB + cell->cellCfg.sib1SchCfg.sib1PdschCfg.pdschFreqAlloc.freqAlloc.numPrb -1;
1297       }
1298       else if(ssbOccasion)
1299       {
1300          broadcastPrbStart = cell->cellCfg.ssbSchCfg.ssbOffsetPointA;
1301          broadcastPrbEnd = broadcastPrbStart + SCH_SSB_NUM_PRB -1;
1302       }
1303       else if(sib1Occasion)
1304       {
1305          broadcastPrbStart = cell->cellCfg.sib1SchCfg.sib1PdschCfg.pdschFreqAlloc.freqAlloc.startPrb;
1306          broadcastPrbEnd = broadcastPrbStart + cell->cellCfg.sib1SchCfg.sib1PdschCfg.pdschFreqAlloc.freqAlloc.numPrb -1;
1307       }
1308
1309       /* Iterate through all free PRB blocks */
1310       freePrbNode = prbAlloc->freePrbBlockList.first; 
1311       while(freePrbNode)
1312       {
1313          freePrbBlock = (FreePrbBlock *)freePrbNode->node; 
1314
1315          /* If broadcast message is scheduled in this slot, then check if its PRBs belong to the current free block.
1316           * Since SSB/SIB1 PRB location is fixed, these PRBs cannot be allocated to other message in same slot */
1317          if((ssbOccasion || sib1Occasion) && 
1318             ((broadcastPrbStart >= freePrbBlock->startPrb) && (broadcastPrbStart <= freePrbBlock->endPrb)) && \
1319             ((broadcastPrbEnd >= freePrbBlock->startPrb) && (broadcastPrbEnd <= freePrbBlock->endPrb)))
1320          {
1321             /* Implmentation is done such that highest-numbered free-RB is allocated first */ 
1322             if((freePrbBlock->endPrb > broadcastPrbEnd) && ((freePrbBlock->endPrb - broadcastPrbEnd) >= numPrb))
1323             {
1324                /* If sufficient free PRBs are available above bradcast message then,
1325                 * endPrb = freePrbBlock->endPrb
1326                 * startPrb = endPrb - numPrb +1;
1327                 */
1328                *startPrb = freePrbBlock->endPrb - numPrb +1;
1329                break;
1330             }
1331             else if((broadcastPrbStart > freePrbBlock->startPrb) && ((broadcastPrbStart - freePrbBlock->startPrb) >= numPrb))
1332             {
1333                /* If free PRBs are available below broadcast message then,
1334                 * endPrb = broadcastPrbStart - 1
1335                 * startPrb = endPrb - numPrb +1
1336                 */
1337                *startPrb = broadcastPrbStart - numPrb; 
1338                break;
1339             }
1340             else
1341             {
1342                freePrbNode = freePrbNode->next;
1343                continue;
1344             }
1345          }
1346          else
1347          {
1348             /* Check if requested number of blocks can be allocated from the current block */ 
1349             if (freePrbBlock->numFreePrb < numPrb)
1350             {
1351                freePrbNode = freePrbNode->next;
1352                continue;
1353             }
1354             *startPrb = freePrbBlock->endPrb - numPrb +1;
1355             break;  
1356          }
1357       }
1358
1359       /* If no free block can be used to allocated request number of RBs */
1360       if(*startPrb == MAX_NUM_RB)
1361          return RFAILED;
1362    }
1363
1364    /* If startPrb is known already, check if requested PRBs are available for allocation */
1365    else
1366    {
1367       freePrbNode = isPrbAvailable(&prbAlloc->freePrbBlockList, *startPrb, numPrb);
1368       if(!freePrbNode)
1369       {
1370          DU_LOG("\nERROR  -->  SCH: Requested DL PRB unavailable");
1371          return RFAILED;
1372       }
1373    }
1374
1375    /* Update bitmap to allocate PRBs */
1376    for(symbol=startSymbol; symbol < (startSymbol+symbolLength); symbol++)
1377    {
1378       if(fillPrbBitmap(prbAlloc->prbBitMap[symbol], *startPrb, numPrb) != ROK)
1379       {
1380          DU_LOG("\nERROR  -->  SCH: fillPrbBitmap() failed for symbol [%d] in DL", symbol);
1381          return RFAILED;
1382       }
1383    }
1384
1385    /* Update the remaining number for free PRBs */
1386    removeAllocatedPrbFromFreePrbList(&prbAlloc->freePrbBlockList, freePrbNode, *startPrb, numPrb);
1387
1388    return ROK;
1389 }
1390
1391 /*******************************************************************
1392  *
1393  * @brief Allocates requested PRBs for UL
1394  *
1395  * @details
1396  *
1397  *    Function : allocatePrbUl
1398  *
1399  *    Functionality:
1400  *      Allocates requested PRBs in UL
1401  *      Keeps track of allocated PRB (using bitmap) and remaining PRBs
1402  *
1403  * @params[in] prbAlloc table
1404  *             Start symbol
1405  *             Number of symbols
1406  *             Start PRB
1407  *             Number of PRBs
1408  *
1409  * @return ROK     - success
1410  *         RFAILED - failure
1411  *
1412  * ****************************************************************/
1413 uint8_t allocatePrbUl(SchCellCb *cell, SlotTimingInfo slotTime, \
1414    uint8_t startSymbol, uint8_t symbolLength, uint16_t *startPrb, uint16_t numPrb)
1415 {
1416    uint8_t        symbol = 0;
1417    uint16_t       prachStartPrb, prachNumPrb, prachEndPrb;
1418    bool           isPrachOccasion;
1419    FreePrbBlock   *freePrbBlock = NULLP;
1420    CmLList        *freePrbNode = NULLP;
1421    SchPrbAlloc    *prbAlloc = NULLP;
1422
1423    if(cell == NULLP)
1424    {
1425       DU_LOG("\nERROR  --> SCH : allocatePrbUl(): Received cellCb is null");
1426       return RFAILED;
1427    }
1428    
1429    prbAlloc =   &cell->schUlSlotInfo[slotTime.slot]->prbAlloc;
1430    /* If startPrb is set to MAX_NUM_RB, it means startPrb is not known currently.
1431     * Search for an appropriate location in PRB grid and allocate requested resources */
1432    if(*startPrb == MAX_NUM_RB)
1433    {
1434       /* Check if PRACH is also scheduled in this slot */
1435       isPrachOccasion = schCheckPrachOcc(cell, slotTime);
1436       if(isPrachOccasion)
1437       {
1438          prachStartPrb =  cell->cellCfg.schRachCfg.msg1FreqStart;
1439          prachNumPrb = schCalcPrachNumRb(cell);
1440          prachEndPrb = prachStartPrb + prachNumPrb -1;
1441       }
1442
1443       /* Iterate through all free PRB blocks */
1444       freePrbNode = prbAlloc->freePrbBlockList.first; 
1445       while(freePrbNode)
1446       {
1447          freePrbBlock = (FreePrbBlock *)freePrbNode->node; 
1448
1449          /* If PRACH is scheduled in this slot, then check if its PRBs belong to the current free block.
1450           * PRBs required for PRACH cannot be allocated to any other message */
1451          if((isPrachOccasion) &&
1452             ((prachStartPrb >= freePrbBlock->startPrb) && (prachStartPrb <= freePrbBlock->endPrb)) &&
1453             ((prachEndPrb >= freePrbBlock->startPrb) && (prachEndPrb <= freePrbBlock->endPrb)))
1454          {
1455             /* Implmentation is done such that highest-numbered free-RB is allocated first */ 
1456             if((freePrbBlock->endPrb > prachEndPrb) && ((freePrbBlock->endPrb - prachEndPrb) >= numPrb))
1457             {
1458                /* If sufficient free PRBs are available above PRACH message then,
1459                 * endPrb = freePrbBlock->endPrb
1460                 * startPrb = endPrb - numPrb +1;
1461                 */
1462                *startPrb = freePrbBlock->endPrb - numPrb +1;
1463                break;
1464             }
1465             else if((prachStartPrb > freePrbBlock->startPrb) && ((prachStartPrb - freePrbBlock->startPrb) >= numPrb))
1466             {
1467                /* If free PRBs are available below PRACH message then,
1468                 * endPrb = prachStartPrb - 1
1469                 * startPrb = endPrb - numPrb +1
1470                 */
1471                *startPrb = prachStartPrb - numPrb; 
1472                break;
1473             }
1474             else
1475             {
1476                freePrbNode = freePrbNode->next;
1477                continue;
1478             } 
1479          }
1480          else
1481          {
1482             /* Check if requested number of PRBs can be allocated from currect block */
1483             if(freePrbBlock->numFreePrb < numPrb)
1484             {
1485                freePrbNode = freePrbNode->next;
1486                continue;
1487             }
1488             *startPrb = freePrbBlock->endPrb - numPrb +1;
1489             break;
1490          }
1491       }
1492
1493       /* If no free block can be used to allocated requested number of RBs */
1494       if(*startPrb == MAX_NUM_RB)
1495          return RFAILED;
1496    }
1497    else
1498    {
1499       /* If startPrb is known already, check if requested PRBs are available for allocation */
1500       freePrbNode = isPrbAvailable(&prbAlloc->freePrbBlockList, *startPrb, numPrb);
1501       if(!freePrbNode)
1502       {
1503          DU_LOG("\nERROR  -->  SCH: Requested UL PRB unavailable");
1504          return RFAILED;
1505       }
1506    }
1507
1508    /* Update bitmap to allocate PRBs */
1509    for(symbol=startSymbol; symbol < (startSymbol+symbolLength); symbol++)
1510    {
1511       if(fillPrbBitmap(prbAlloc->prbBitMap[symbol], *startPrb, numPrb) != ROK)
1512       {
1513          DU_LOG("\nERROR  -->  SCH: fillPrbBitmap() failed for symbol [%d] in UL", symbol);
1514          return RFAILED;
1515       }
1516    }
1517
1518    /* Update the remaining number for free PRBs */
1519    removeAllocatedPrbFromFreePrbList(&prbAlloc->freePrbBlockList, freePrbNode, *startPrb, numPrb);
1520
1521    return ROK;
1522 }
1523
1524 /*******************************************************************************
1525  *
1526  * @brief Try to find Best Free Block with Max Num PRB 
1527  *
1528  * @details
1529  *
1530  *    Function : searchLargestFreeBlock
1531  *
1532  *    Functionality:
1533  *     Finds the FreeBlock with MaxNum of FREE PRB considering SSB/SIB1 ocassions.
1534  *
1535  * @params[in] I/P > prbAlloc table (FreeBlock list)
1536  *             I/P > Slot timing Info
1537  *             O/P > Start PRB
1538  *             I/P > Direction (UL/DL)
1539  *       
1540  *
1541  * @return Max Number of Free PRB 
1542  *         If 0, then no Suitable Free Block
1543  *
1544  * ********************************************************************************/
1545
1546 uint16_t searchLargestFreeBlock(SchCellCb *cell, SlotTimingInfo slotTime,uint16_t *startPrb, Direction dir)
1547 {
1548    uint16_t       reservedPrbStart=0, reservedPrbEnd=0, maxFreePRB = 0;
1549    FreePrbBlock   *freePrbBlock = NULLP;
1550    CmLList        *freePrbNode = NULLP;
1551    SchPrbAlloc    *prbAlloc = NULLP;
1552    bool           checkOccasion = FALSE;
1553
1554    *startPrb = 0; /*Initialize the StartPRB to zero*/
1555
1556    /*Based on Direction, Reserved Messsages will differi.e.
1557     * DL >> SSB and SIB1 ocassions wheres for UL, PRACH ocassions to be checked
1558     * and reserved before allocation for dedicated DL/UL msg*/
1559    if(dir == DIR_DL)
1560    {
1561       SchDlSlotInfo  *schDlSlotInfo = cell->schDlSlotInfo[slotTime.slot];
1562       PduTxOccsaion  ssbOccasion=0, sib1Occasion=0;
1563
1564       prbAlloc = &schDlSlotInfo->prbAlloc;
1565
1566       ssbOccasion = schCheckSsbOcc(cell, slotTime);
1567       sib1Occasion = schCheckSib1Occ(cell, slotTime);
1568
1569       checkOccasion = TRUE;
1570       if(ssbOccasion && sib1Occasion)
1571       {
1572          reservedPrbStart = cell->cellCfg.ssbSchCfg.ssbOffsetPointA; 
1573          reservedPrbEnd = reservedPrbStart + SCH_SSB_NUM_PRB + \
1574                           cell->cellCfg.sib1SchCfg.sib1PdschCfg.pdschFreqAlloc.freqAlloc.numPrb -1;
1575       }
1576       else if(ssbOccasion)
1577       {
1578          reservedPrbStart = cell->cellCfg.ssbSchCfg.ssbOffsetPointA;
1579          reservedPrbEnd = reservedPrbStart + SCH_SSB_NUM_PRB -1;
1580       }
1581       else if(sib1Occasion)
1582       {
1583          reservedPrbStart = cell->cellCfg.sib1SchCfg.sib1PdschCfg.pdschFreqAlloc.freqAlloc.startPrb;
1584          reservedPrbEnd = reservedPrbStart + cell->cellCfg.sib1SchCfg.sib1PdschCfg.pdschFreqAlloc.freqAlloc.numPrb -1;
1585       }
1586       else
1587       {
1588          checkOccasion = FALSE;  
1589       }
1590    }
1591    else if(dir == DIR_UL)
1592    {
1593       prbAlloc = &cell->schUlSlotInfo[slotTime.slot]->prbAlloc;
1594
1595       /* Check if PRACH is also scheduled in this slot */
1596       checkOccasion = schCheckPrachOcc(cell, slotTime);
1597       if(checkOccasion)
1598       {
1599          reservedPrbStart =  cell->cellCfg.schRachCfg.msg1FreqStart;
1600          reservedPrbEnd = reservedPrbStart + (schCalcPrachNumRb(cell)) -1;
1601       }
1602    }
1603    else
1604    {
1605       DU_LOG("\nERROR --> SCH: Invalid Direction!");
1606       return (maxFreePRB);
1607    }
1608
1609    freePrbNode = prbAlloc->freePrbBlockList.first; 
1610    while(freePrbNode)
1611    {
1612       freePrbBlock = (FreePrbBlock *)freePrbNode->node;
1613
1614       /*For block with same numFreeBlocks, choose the one with HighestPRB range
1615        *Since FreeBLockList are arranged in Descending order of PRB range thus Skipping this block*/
1616       if(maxFreePRB >= freePrbBlock->numFreePrb) 
1617       {
1618          //skip this block
1619          freePrbNode = freePrbNode->next;
1620          continue;
1621       }
1622
1623       /* If Broadcast/Prach message is scheduled in this slot, then check if its PRBs belong to the current free block.
1624        * Since SSB/SIB1 PRB location is fixed, these PRBs cannot be allocated to other message in same slot */
1625       if(checkOccasion && 
1626             ((reservedPrbStart >= freePrbBlock->startPrb) && (reservedPrbStart <= freePrbBlock->endPrb)) && \
1627             ((reservedPrbEnd >= freePrbBlock->startPrb) && (reservedPrbEnd <= freePrbBlock->endPrb)))
1628       {
1629
1630          /* Implmentation is done such that highest-numbered free-RB is Checked first
1631             and freePRB in this block is greater than Max till now */
1632          if((freePrbBlock->endPrb > reservedPrbEnd) && ((freePrbBlock->endPrb - reservedPrbEnd) > maxFreePRB))
1633          {
1634             /* If sufficient free PRBs are available above reserved message*/
1635             *startPrb = reservedPrbEnd + 1;
1636             maxFreePRB = (freePrbBlock->endPrb - reservedPrbEnd);                
1637          }
1638          /*Also check the other freeBlock (i.e. Above the reserved message) for MAX FREE PRB*/
1639          if((reservedPrbStart > freePrbBlock->startPrb) && ((reservedPrbStart - freePrbBlock->startPrb) > maxFreePRB))
1640          {
1641             /* If free PRBs are available below reserved message*/
1642             *startPrb = freePrbBlock->startPrb;
1643             maxFreePRB = (reservedPrbStart - freePrbBlock->startPrb);
1644          }
1645       }
1646       else  //Best Block
1647       {
1648          if(maxFreePRB < freePrbBlock->numFreePrb)
1649          {
1650             *startPrb = freePrbBlock->startPrb;
1651             maxFreePRB = freePrbBlock->numFreePrb;
1652          }
1653
1654       }
1655       freePrbNode = freePrbNode->next;
1656    }  
1657    return(maxFreePRB);
1658 }
1659
1660 /*******************************************************************************
1661  *
1662  * @brief This function is used to send Slice Cfg rsp to MAC
1663  *
1664  * @details
1665  *
1666  *    Function : SchSendSliceCfgRspToMac
1667  *
1668  *    Functionality:
1669  *     function is used to send Slice Cfg rsp to MAC
1670  *
1671  * @params[in] Pst *pst, SchSliceCfgRsp sliceCfgRsp
1672  *
1673  * @return- void
1674  *
1675  * ********************************************************************************/
1676 void SchSendSliceCfgRspToMac(Inst inst, SchSliceCfgRsp sliceCfgRsp)
1677 {
1678    Pst rspPst;
1679    
1680    memset(&rspPst, 0, sizeof(Pst));
1681    FILL_PST_SCH_TO_MAC(rspPst, inst);
1682    rspPst.event = EVENT_SLICE_CFG_RSP_TO_MAC;
1683    
1684    MacMessageRouter(&rspPst, (void *)&sliceCfgRsp);
1685
1686 }
1687 /*******************************************************************************
1688  *
1689  * @brief fill slice configuration response
1690  *
1691  * @details
1692  *
1693  *    Function : fillSliceCfgRsp
1694  *
1695  *    Functionality:
1696  *     fill slice configuration response
1697  *
1698  * @params[in] SchCellCb, SchSliceCfgReq, SchSliceCfgRsp,uint8_t  count
1699  *
1700  * @return
1701  *        ROK - Success
1702  *        RFAILED - Failure
1703  *
1704  * ********************************************************************************/
1705 uint8_t fillSliceCfgRsp(bool sliceRecfg, SchSliceCfg *storedSliceCfg, SchCellCb *cellCb, SchSliceCfgReq *schSliceCfgReq, SchSliceCfgRsp *schSliceCfgRsp, uint8_t *count)
1706 {
1707    bool sliceFound = false;
1708    uint8_t cfgIdx = 0, sliceIdx = 0;
1709
1710    schSliceCfgRsp->numSliceCfgRsp  = schSliceCfgReq->numOfConfiguredSlice;
1711    SCH_ALLOC(schSliceCfgRsp->listOfSliceCfgRsp, schSliceCfgRsp->numSliceCfgRsp * sizeof(SliceRsp*));
1712    if(schSliceCfgRsp->listOfSliceCfgRsp == NULLP)
1713    {
1714       DU_LOG("\nERROR  --> SCH : Memory allocation failed at fillSliceCfgRsp");
1715       return RFAILED;
1716    }
1717    
1718    for(cfgIdx = 0; cfgIdx<schSliceCfgRsp->numSliceCfgRsp ; cfgIdx++)
1719    {
1720       sliceFound = false;
1721       /* Here comparing the slice cfg request with the slice stored in cellCfg */
1722       if(sliceRecfg != true)
1723       {
1724          for(sliceIdx = 0; sliceIdx<cellCb->cellCfg.plmnInfoList.numSliceSupport; sliceIdx++)
1725          {
1726             if(!memcmp(&schSliceCfgReq->listOfSlices[cfgIdx]->snssai, cellCb->cellCfg.plmnInfoList.snssai[sliceIdx], sizeof(Snssai)))
1727             {
1728                (*count)++;
1729                sliceFound = true;
1730                break;
1731             }
1732          }
1733       }
1734       else
1735       {
1736          /* Here comparing the slice cfg request with the slice stored in SchDb */
1737          if(storedSliceCfg->listOfSlices)
1738          {
1739             for(sliceIdx = 0; sliceIdx<storedSliceCfg->numOfSliceConfigured; sliceIdx++)
1740             {
1741                if(!memcmp(&schSliceCfgReq->listOfSlices[cfgIdx]->snssai, &storedSliceCfg->listOfSlices[sliceIdx]->snssai,\
1742                         sizeof(Snssai)))
1743                {
1744                   (*count)++;
1745                   sliceFound = true;
1746                   break;
1747                }
1748             }
1749          }
1750       }
1751
1752       SCH_ALLOC(schSliceCfgRsp->listOfSliceCfgRsp[cfgIdx], sizeof(SliceRsp));
1753       if(schSliceCfgRsp->listOfSliceCfgRsp[cfgIdx] == NULLP)
1754       {
1755          DU_LOG("\nERROR  -->  SCH : Failed to allocate memory in fillSliceCfgRsp");
1756          return RFAILED;
1757       }
1758
1759       
1760       schSliceCfgRsp->listOfSliceCfgRsp[cfgIdx]->snssai = schSliceCfgReq->listOfSlices[cfgIdx]->snssai;
1761       if(sliceFound == true)
1762          schSliceCfgRsp->listOfSliceCfgRsp[cfgIdx]->rsp    = RSP_OK;
1763       else
1764       {
1765          schSliceCfgRsp->listOfSliceCfgRsp[cfgIdx]->rsp    = RSP_NOK;
1766          schSliceCfgRsp->listOfSliceCfgRsp[cfgIdx]->cause  = SLICE_NOT_FOUND;
1767       }
1768    }
1769    return ROK;
1770 }
1771
1772 /*******************************************************************************
1773  *
1774  * @brief This function is used to store the slice configuration Sch DB
1775  *
1776  * @details
1777  *
1778  *    Function : addSliceCfgInSchDb 
1779  *
1780  *    Functionality:
1781  *     function is used to store the slice configuration Sch DB
1782  *
1783  * @params[in] SchSliceCfg *storeSliceCfg, SchSliceCfgReq *cfgReq,
1784  * SchSliceCfgRsp cfgRsp, uint8_t count
1785  *
1786  * @return
1787  *        ROK - Success
1788  *        RFAILED - Failure
1789  *
1790  * ********************************************************************************/
1791 uint8_t addSliceCfgInSchDb(SchSliceCfg *storeSliceCfg, SchSliceCfgReq *cfgReq, SchSliceCfgRsp cfgRsp, uint8_t count)
1792 {
1793    uint8_t cfgIdx = 0, sliceIdx = 0; 
1794    
1795    if(count)
1796    {
1797       storeSliceCfg->numOfSliceConfigured = count;
1798       SCH_ALLOC(storeSliceCfg->listOfSlices, storeSliceCfg->numOfSliceConfigured * sizeof(SchRrmPolicyOfSlice*));
1799       if(storeSliceCfg->listOfSlices == NULLP)
1800       {
1801          DU_LOG("\nERROR  -->  SCH : Failed to allocate memory in addSliceCfgInSchDb");
1802          return RFAILED;
1803       }
1804
1805       for(cfgIdx = 0; cfgIdx<storeSliceCfg->numOfSliceConfigured; cfgIdx++)
1806       {
1807          if(cfgRsp.listOfSliceCfgRsp[cfgIdx]->rsp == RSP_OK)
1808          {
1809             SCH_ALLOC(storeSliceCfg->listOfSlices[sliceIdx], sizeof(SchRrmPolicyOfSlice));
1810             if(storeSliceCfg->listOfSlices[sliceIdx] == NULLP)
1811             {
1812                DU_LOG("\nERROR  -->  SCH : Failed to allocate memory in addSliceCfgInSchDb");
1813                return RFAILED;
1814             }
1815
1816             memcpy(&storeSliceCfg->listOfSlices[sliceIdx]->snssai, &cfgReq->listOfSlices[sliceIdx]->snssai, sizeof(Snssai));
1817             memcpy(&storeSliceCfg->listOfSlices[sliceIdx]->rrmPolicyRatioInfo, &cfgReq->listOfSlices[sliceIdx]->rrmPolicyRatioInfo,
1818                       sizeof(SchRrmPolicyRatio));
1819             sliceIdx++;
1820          }
1821       }
1822    }
1823    return ROK;
1824 }
1825
1826 /*******************************************************************************
1827  *
1828  * @brief This function is used to free the slice cfg and re cfg request pointer
1829  *
1830  * @details
1831  *
1832  *    Function : freeSchSliceCfgReq 
1833  *
1834  *    Functionality:
1835  *     function is used to free the slice cfg and re cfg request pointer
1836  *
1837  * @params[in] Pst *pst, SchSliceCfgReq *schSliceCfgReq
1838  *
1839  * @return
1840  *        ROK - Success
1841  *        RFAILED - Failure
1842  * ********************************************************************************/
1843 void freeSchSliceCfgReq(SchSliceCfgReq *sliceCfgReq)
1844 {
1845    uint8_t cfgIdx = 0;
1846    
1847    if(sliceCfgReq)
1848    {
1849       if(sliceCfgReq->numOfConfiguredSlice)
1850       {
1851          for(cfgIdx = 0; cfgIdx<sliceCfgReq->numOfConfiguredSlice; cfgIdx++)
1852          {
1853             if(sliceCfgReq->listOfSlices[cfgIdx])
1854             {
1855                SCH_FREE(sliceCfgReq->listOfSlices[cfgIdx], sizeof(SchRrmPolicyOfSlice));
1856             }
1857          }
1858          SCH_FREE(sliceCfgReq->listOfSlices, sliceCfgReq->numOfConfiguredSlice * sizeof(SchRrmPolicyOfSlice*));
1859       }
1860       SCH_FREE(sliceCfgReq, sizeof(SchSliceCfgReq));
1861    }
1862 }
1863 /*******************************************************************************
1864  *
1865  * @brief This function is used to store the slice configuration Sch DB
1866  *
1867  * @details
1868  *
1869  *    Function : SchProcSliceCfgReq 
1870  *
1871  *    Functionality:
1872  *     function is used to store the slice configuration Sch DB
1873  *
1874  * @params[in] Pst *pst, SchSliceCfgReq *schSliceCfgReq
1875  *
1876  * @return
1877  *        ROK - Success
1878  *        RFAILED - Failure
1879  *
1880  * ********************************************************************************/
1881 uint8_t SchProcSliceCfgReq(Pst *pst, SchSliceCfgReq *schSliceCfgReq)
1882 {
1883    uint8_t count = 0;
1884    Inst   inst = pst->dstInst - SCH_INST_START;
1885    SchSliceCfgRsp sliceCfgRsp;
1886
1887    DU_LOG("\nINFO  -->  SCH : Received Slice Cfg request from MAC");
1888    if(schSliceCfgReq)
1889    {
1890       if(schSliceCfgReq->listOfSlices)
1891       {
1892          /* filling the slice configuration response of each slice */
1893          if(fillSliceCfgRsp(false, NULLP, schCb[inst].cells[0], schSliceCfgReq, &sliceCfgRsp, &count) != ROK)
1894          {
1895             DU_LOG("\nERROR  -->  SCH : Failed to fill the slice cfg rsp");
1896             return RFAILED;
1897          }
1898
1899          if(addSliceCfgInSchDb(&schCb[inst].sliceCfg, schSliceCfgReq, sliceCfgRsp, count) != ROK)
1900          {
1901             DU_LOG("\nERROR  -->  SCH : Failed to add slice cfg in sch database");
1902             return RFAILED;
1903          }
1904          freeSchSliceCfgReq(schSliceCfgReq);
1905          SchSendSliceCfgRspToMac(inst, sliceCfgRsp);
1906       }
1907    }
1908    else
1909    {
1910       DU_LOG("\nERROR  -->  SCH : Received SchSliceCfgReq is NULL");
1911    }
1912    return ROK;
1913 }
1914
1915 /*******************************************************************************
1916  *
1917  * @brief This function is used to store the slice reconfiguration Sch DB
1918  *
1919  * @details
1920  *
1921  *    Function : modifySliceCfgInSchDb 
1922  *
1923  *    Functionality:
1924  *     function is used to store the slice re configuration Sch DB
1925  *
1926  * @params[in] Pst *pst, SchSliceCfgReq *schSliceCfgReq
1927  *
1928  * @return
1929  *        ROK - Success
1930  *        RFAILED - Failure
1931  *
1932  * ********************************************************************************/
1933 uint8_t modifySliceCfgInSchDb(SchSliceCfg *storeSliceCfg, SchSliceRecfgReq *recfgReq, SchSliceRecfgRsp recfgRsp, uint8_t count)
1934 {
1935    uint8_t cfgIdx = 0, sliceIdx = 0; 
1936
1937    if(count)
1938    {
1939       if(storeSliceCfg->listOfSlices == NULLP)
1940       {
1941          DU_LOG("\nINFO  -->  SCH : Memory allocation failed in modifySliceCfgInSchDb");
1942          return RFAILED;
1943       }
1944
1945       for(cfgIdx = 0; cfgIdx<recfgReq->numOfConfiguredSlice; cfgIdx++)
1946       {
1947          if(recfgRsp.listOfSliceCfgRsp[cfgIdx]->rsp == RSP_OK)
1948          {
1949             for(sliceIdx = 0; sliceIdx<storeSliceCfg->numOfSliceConfigured; sliceIdx++)
1950             {
1951                if(!memcmp(&storeSliceCfg->listOfSlices[sliceIdx]->snssai, &recfgReq->listOfSlices[cfgIdx]->snssai, sizeof(Snssai)))
1952                {
1953                   memcpy(&storeSliceCfg->listOfSlices[sliceIdx]->rrmPolicyRatioInfo, &recfgReq->listOfSlices[cfgIdx]->rrmPolicyRatioInfo,
1954                            sizeof(SchRrmPolicyRatio));
1955                   break;
1956                }
1957             }
1958          }
1959       }
1960    }
1961    freeSchSliceCfgReq(recfgReq);
1962    return ROK;
1963 }
1964 /*******************************************************************************
1965  *
1966  * @brief This function is used to send Slice re Cfg rsp to MAC
1967  *
1968  * @details
1969  *
1970  *    Function : SchSendSliceRecfgRspToMac
1971  *
1972  *    Functionality:
1973  *     function is used to send Slice re Cfg rsp to MAC
1974  *
1975  * @params[in] Pst *pst, SchSliceRecfgRsp schSliceRecfgRsp
1976  *
1977  * @return- void
1978  *
1979  * ********************************************************************************/
1980 void SchSendSliceRecfgRspToMac(Inst inst, SchSliceRecfgRsp schSliceRecfgRsp)
1981 {
1982    Pst rspPst;
1983    
1984    memset(&rspPst, 0, sizeof(Pst));
1985    FILL_PST_SCH_TO_MAC(rspPst, inst);
1986    rspPst.event = EVENT_SLICE_RECFG_RSP_TO_MAC;
1987    
1988    MacMessageRouter(&rspPst, (void *)&schSliceRecfgRsp);
1989 }
1990 /*******************************************************************************
1991  *
1992  * @brief This function is used to store the slice reconfiguration Sch DB
1993  *
1994  * @details
1995  *
1996  *    Function : SchProcSliceRecfgReq 
1997  *
1998  *    Functionality:
1999  *     function is used to store the slice re configuration Sch DB
2000  *
2001  * @params[in] Pst *pst, SchSliceRecfgReq *schSliceRecfgReq
2002  *
2003  * @return
2004  *        ROK - Success
2005  *        RFAILED - Failure
2006  *
2007  * ********************************************************************************/
2008 uint8_t SchProcSliceRecfgReq(Pst *pst, SchSliceRecfgReq *schSliceRecfgReq)
2009 {
2010    uint8_t count = 0;
2011    Inst   inst = pst->dstInst - SCH_INST_START;
2012    SchSliceRecfgRsp schSliceRecfgRsp;
2013
2014    DU_LOG("\nINFO  -->  SCH : Received Slice ReCfg request from MAC");
2015    if(schSliceRecfgReq)
2016    {
2017       if(schSliceRecfgReq->listOfSlices)
2018       {
2019          /* filling the slice configuration response of each slice */
2020          if(fillSliceCfgRsp(true, &schCb[inst].sliceCfg, NULLP, schSliceRecfgReq, &schSliceRecfgRsp, &count) != ROK)
2021          {
2022             DU_LOG("\nERROR  -->  SCH : Failed to fill sch slice cfg response");
2023             return RFAILED;
2024          }
2025          
2026          /* Modify the slice configuration stored in schCb */
2027          if(modifySliceCfgInSchDb(&schCb[inst].sliceCfg, schSliceRecfgReq, schSliceRecfgRsp, count) != ROK)
2028          {
2029             DU_LOG("\nERROR  -->  SCH : Failed to modify slice cfg of SchDb");
2030             return RFAILED;
2031          }
2032          SchSendSliceRecfgRspToMac(inst, schSliceRecfgRsp);
2033       }
2034    }
2035    else
2036    {
2037       DU_LOG("\nERROR  -->  SCH : Received SchSliceRecfgReq is NULL");
2038    }
2039    return ROK;
2040 }
2041
2042 /****************************************************************************
2043  *
2044  * @brief Stores the Paging Configuration from DU APP in CellCb 
2045  *
2046  * @details
2047  *
2048  *    Function : schProcPagingParam
2049  *
2050  *    Functionality:
2051  *          Process the Paging Configuration when FirstPDCCHMonitoring for
2052  *          Paging Ocassion is not present.
2053  *
2054  *          As per 38.304 Sec 7.1,
2055  *          "When firstPDCCH-MonitoringOccasionOfPO is present, the
2056  *          starting PDCCH monitoring occasion number of (i_s + 1)th PO is the
2057  *          (i_s + 1)th value of the firstPDCCHMonitoringOccasionOfPO
2058  *          parameter; otherwise, it is equal to i_s * S."
2059  *          "S = number of actual transmitted SSBs determined according 
2060  *              to ssb-PositionsInBurst in SIB1"
2061  *
2062  * @params[in] SchCellCb *cell 
2063  *       
2064  * @return void 
2065  *        
2066  *************************************************************************/
2067 void schProcPagingCfg(SchCellCb *cell)
2068 {
2069    PageCfg *pageCfgRcvd = NULL;
2070    uint8_t i_sIdx = 0;
2071
2072    pageCfgRcvd = &(cell->cellCfg.sib1SchCfg.pageCfg);
2073
2074    if(pageCfgRcvd->poPresent == TRUE)
2075    {
2076       /*Fetching first Pdcch Monitoring Occasion for SFN (i_s + 1)th*/
2077       for(i_sIdx = 0; i_sIdx < pageCfgRcvd->numPO; i_sIdx++)
2078       {
2079          cell->pageCb.pagMonOcc[i_sIdx].pagingOccSlot = pageCfgRcvd->pagingOcc[i_sIdx] / MAX_SYMB_PER_SLOT ;
2080          if ((pageCfgRcvd->pagingOcc[i_sIdx] % MAX_SYMB_PER_SLOT) != 0 )
2081          {
2082             cell->pageCb.pagMonOcc[i_sIdx].pagingOccSlot++;
2083          }
2084
2085          cell->pageCb.pagMonOcc[i_sIdx].frameOffset = 0;
2086
2087       }
2088    }
2089    else
2090    {
2091       schCfgPdcchMonOccOfPO(cell);                  
2092    }
2093 }
2094
2095 /****************************************************************************
2096  *
2097  * @brief Calculate PO if not present in Configuration 
2098  *
2099  * @details
2100  *
2101  *    Function : schCfgPdcchMonOccOfPO
2102  *
2103  *    Functionality: In this function, PO are calculated i_s * S because
2104  *    FirstPDCCHMonitoring_ForPO is not present.
2105  *
2106  * @params[in] SchCellCb *cellCb
2107  *       
2108  * @return void 
2109  *        
2110  *************************************************************************/
2111 void schCfgPdcchMonOccOfPO(SchCellCb *cell)
2112 {
2113    uint8_t         cnt = 0, incr = 1, i_sIdx = 0, frameOffSet = 0;
2114    uint8_t         nsValue = cell->cellCfg.sib1SchCfg.pageCfg.numPO;
2115    uint8_t         totalNumSsb = cell->cellCfg.ssbSchCfg.totNumSsb;
2116    SlotTimingInfo  tmpTimingInfo, pdcchTime; 
2117
2118    /*Starting with First Sfn and slot*/
2119    tmpTimingInfo.sfn = 0;
2120    tmpTimingInfo.slot = 0;
2121
2122    pdcchTime = tmpTimingInfo;
2123
2124    while(i_sIdx < nsValue)
2125    {
2126       /*Increment frame Offset if PO falls on next SFN*/
2127       if(pdcchTime.sfn != tmpTimingInfo.sfn)
2128       {
2129          frameOffSet++;
2130       }
2131       pdcchTime = tmpTimingInfo;
2132       schIncrSlot(&(tmpTimingInfo), incr, cell->numSlots);
2133
2134       if (i_sIdx == 0)
2135       {
2136          cell->pageCb.pagMonOcc[i_sIdx].pagingOccSlot = pdcchTime.slot;
2137          cell->pageCb.pagMonOcc[i_sIdx].frameOffset = frameOffSet;
2138          i_sIdx++;
2139       }
2140       else
2141       {
2142          cnt++;
2143          if((cnt == totalNumSsb) && (i_sIdx < MAX_PO_PER_PF)) 
2144          {
2145             cell->pageCb.pagMonOcc[i_sIdx].pagingOccSlot = pdcchTime.slot;
2146             cell->pageCb.pagMonOcc[i_sIdx].frameOffset = frameOffSet;
2147             cnt = 0;
2148             i_sIdx++;
2149          }
2150       }
2151    }
2152 }
2153
2154 /****************************************************************************
2155  *
2156  * @brief Storing the paging information in SCH database 
2157  *
2158  * @details
2159  *
2160  *    Function : schAddPagingIndtoList
2161  *
2162  *    Functionality: Storing the paging information in SCH database
2163  *
2164  * @params[in] CmLListCp *storedPageList, CmLList *pageIndInfo
2165  *       
2166  * @return ROK - sucess
2167  *         RFAILED - failure
2168  *        
2169  *************************************************************************/
2170 uint8_t schAddPagingIndtoList(CmLListCp *storedPageList,void * pageIndInfo)
2171 {
2172    CmLList  *firstNodeOfList = NULLP;
2173    CmLList  *currentNodeInfo = NULLP;
2174    SchPageInfo *tempNode = NULLP, *recvdNode = NULLP;
2175    
2176    recvdNode = (SchPageInfo*) pageIndInfo;
2177    CM_LLIST_FIRST_NODE(storedPageList,firstNodeOfList);
2178    
2179    SCH_ALLOC(currentNodeInfo, sizeof(CmLList));
2180    if(!currentNodeInfo)
2181    {  
2182       DU_LOG("\nERROR  --> SCH : schAddPagingIndtoList() : Memory allocation failed");
2183       return RFAILED;
2184    }
2185    
2186    currentNodeInfo->node = (PTR)pageIndInfo;
2187    while(firstNodeOfList)
2188    {
2189       tempNode = (SchPageInfo*)(firstNodeOfList->node);
2190       if ((recvdNode->pageTxTime.slot < tempNode->pageTxTime.slot))
2191       {
2192          cmLListInsCrnt(storedPageList, currentNodeInfo);
2193          break;
2194       }
2195       else if ((recvdNode->pageTxTime.slot == tempNode->pageTxTime.slot))
2196       {
2197          DU_LOG("\nERROR  --> SCH : schAddPagingIndtoList() : Slot[%d] is already present in the list", recvdNode->pageTxTime.slot);
2198          return RFAILED;
2199       }
2200       else
2201       {
2202          CM_LLIST_NEXT_NODE(storedPageList, firstNodeOfList);
2203       }
2204    } 
2205    
2206    if(!firstNodeOfList)
2207    {
2208       cmLListAdd2Tail(storedPageList, currentNodeInfo);
2209    }
2210    DU_LOG("\nDEBUG   -->  SCH : Paging information is stored successfully for PF:%d, Slot:%d",\
2211               recvdNode->pageTxTime.sfn, recvdNode->pageTxTime.slot);
2212    return ROK;
2213 }
2214
2215 /****************************************************************************
2216  *
2217  * @brief Process paging indication at  SCH recevied form MAC 
2218  *
2219  * @details
2220  *
2221  *    Function : SchProcPagingInd
2222  *
2223  *    Functionality: Process paging indication at SCH recevied form MAC 
2224  *
2225  * @params[in] Pst *pst,  SchPageInd *pageInd 
2226  *       
2227  * @return void 
2228  *        
2229  *************************************************************************/
2230 uint8_t SchProcPagingInd(Pst *pst,  SchPageInd *pageInd)
2231 {
2232    uint8_t ret = RFAILED;
2233    uint16_t cellIdx = 0;
2234    Inst  inst = pst->dstInst - SCH_INST_START;
2235    SchCellCb *cellCb = NULLP;
2236    SchPageInfo *pageInfo = NULLP;
2237
2238    if(pageInd)
2239    {
2240       DU_LOG("\nDEBUG   -->  SCH : Received paging indication from MAC for cellId[%d]",\
2241                   pageInd->cellId);
2242
2243       /* Fetch Cell CB */
2244       for(cellIdx = 0; cellIdx < MAX_NUM_CELL; cellIdx++)
2245       {
2246          if((schCb[inst].cells[cellIdx]) && (schCb[inst].cells[cellIdx]->cellId == pageInd->cellId))
2247          {
2248             cellCb = schCb[inst].cells[cellIdx];
2249             break;
2250          }
2251       }
2252       if(cellCb)
2253       {
2254          if(pageInd->i_s > cellCb->cellCfg.sib1SchCfg.pageCfg.numPO)
2255          {
2256             DU_LOG("\nERROR --> SCH : SchProcPagingInd(): i_s should not be greater than number of paging occasion");
2257          }
2258          else
2259          {
2260             SCH_ALLOC(pageInfo, sizeof(SchPageInfo));
2261             if(pageInfo)
2262             {
2263                pageInfo->pf = pageInd->pf; 
2264                pageInfo->i_s = pageInd->i_s;
2265                pageInfo->pageTxTime.cellId = pageInd->cellId;
2266                pageInfo->pageTxTime.sfn = (pageInd->pf +  cellCb->pageCb.pagMonOcc[pageInd->i_s].frameOffset) % MAX_SFN;
2267                pageInfo->pageTxTime.slot = cellCb->pageCb.pagMonOcc[pageInd->i_s].pagingOccSlot;
2268                pageInfo->mcs = DEFAULT_MCS;
2269                pageInfo->msgLen =  pageInd->pduLen;
2270                SCH_ALLOC(pageInfo->pagePdu, pageInfo->msgLen);
2271                if(!pageInfo->pagePdu)
2272                {
2273                   DU_LOG("\nERROR  --> SCH : SchProcPagingInd(): Failed to allocate memory");
2274                }
2275                else
2276                {
2277                   memcpy(pageInfo->pagePdu, pageInd->pagePdu, pageInfo->msgLen);
2278                   ret = schAddPagingIndtoList(&cellCb->pageCb.pageIndInfoRecord[pageInfo->pageTxTime.sfn], pageInfo);
2279                   if(ret != ROK)
2280                   {
2281                      DU_LOG("\nERROR  --> SCH : SchProcPagingInd(): Failed to store paging record");
2282                   }
2283                }
2284             }
2285             else
2286             {
2287                DU_LOG("\nERROR  --> SCH : SchProcPagingInd(): Failed to allocate memory");
2288             }
2289          }
2290       }
2291       else
2292       {
2293          DU_LOG("\nERROR  -->  SCH : Cell ID [%d] not found", pageInd->cellId);
2294       }
2295       SCH_FREE(pageInd->pagePdu, pageInd->pduLen);
2296       SCH_FREE(pageInd, sizeof(SchPageInd));
2297    }
2298    else
2299    {
2300       DU_LOG("\nERROR  --> SCH : SchProcPagingInd(): Received null pointer");
2301    }
2302    return ret;
2303 }
2304
2305 \f
2306 /***********************************************************
2307  *
2308  *     Func : SchFillCfmPst 
2309  *        
2310  *
2311  *     Desc : Fills the Confirmation Post Structure cfmPst using the reqPst 
2312  *            and the cfm->hdr.response.
2313  *            
2314  *
2315  *     Ret  : Void
2316  *
2317  *     Notes: 
2318  *
2319  *     File : rg_sch_lmm.c 
2320  *
2321  **********************************************************/
2322 Void SchFillCfmPst
2323 (
2324 Pst           *reqPst,
2325 Pst           *cfmPst,
2326 RgMngmt       *cfm
2327 )
2328 {
2329    Inst inst;
2330
2331    inst = (reqPst->dstInst - SCH_INST_START);
2332
2333    cfmPst->srcEnt    = ENTMAC;
2334    cfmPst->srcInst   = (Inst) 1;
2335    cfmPst->srcProcId = schCb[inst].schInit.procId;
2336    cfmPst->dstEnt    = ENTMAC;
2337    cfmPst->dstInst   = (Inst) 0;
2338    cfmPst->dstProcId = reqPst->srcProcId;
2339
2340    cfmPst->selector  = cfm->hdr.response.selector;
2341    cfmPst->region    = cfm->hdr.response.mem.region;
2342    cfmPst->pool      = cfm->hdr.response.mem.pool;
2343
2344    return;
2345 }
2346
2347 /**********************************************************************
2348   End of file
2349  **********************************************************************/