a29faaf5b53e35db3ba1c1084324ee6d4ccea522
[o-du/l2.git] / src / 5gnrsch / sch_slot_ind.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:     5G NR SCH layer
22
23 Type:     C source file
24
25 Desc:     C source code for Entry point fucntions for slot indications
26
27 File:     sch_slot_ind.c
28
29  **********************************************************************/
30
31 /** @file sch_slot_ind.c
32   @brief This module processes slot indications
33  */
34 #include "common_def.h"
35 #include "tfu.h"
36 #include "lrg.h"
37 #include "tfu.x"
38 #include "lrg.x"
39 #include "du_log.h"
40 #include "du_app_mac_inf.h"
41 #include "mac_sch_interface.h"
42 #include "sch.h"
43 #include "sch_utils.h"
44
45 SchMacDlAllocFunc schMacDlAllocOpts[] =
46 {
47    packSchMacDlAlloc,
48    MacProcDlAlloc,
49    packSchMacDlAlloc
50 };
51
52 SchCb schCb[SCH_MAX_INST];
53
54 /*******************************************************************
55  *
56  * @brief Handles sending DL broadcast alloc to MAC 
57  *
58  * @details
59  *
60  *    Function : sendDlAllocToMac
61  *
62  *    Functionality:
63  *     Sends DL Broadcast Resource Allocation to MAC from SCH
64  *
65  * @params[in] 
66  * @return ROK     - success
67  *         RFAILED - failure
68  *
69  * ****************************************************************/
70 uint8_t sendDlAllocToMac(DlSchedInfo *dlSchedInfo, Inst inst)
71 {
72    Pst pst;
73
74    memset(&pst, 0, sizeof(Pst));
75    FILL_PST_SCH_TO_MAC(pst, inst);
76    pst.event = EVENT_DL_SCH_INFO;
77
78    return(*schMacDlAllocOpts[pst.selector])(&pst, dlSchedInfo);
79
80 }
81
82 /*******************************************************************
83  *
84  * @brief Handles slot indication at SCH 
85  *
86  * @details
87  *
88  *    Function : schCalcSlotValues
89  *
90  *    Functionality:
91  *     Handles TTI indication received from PHY
92  *
93  * @params[in] 
94  * @return ROK     - success
95  *         RFAILED - failure
96  *
97  * ****************************************************************/
98 void schCalcSlotValues(SlotTimingInfo slotInd, SchSlotValue *schSlotValue)
99 {
100    /****************************************************************
101     * PHY_DELTA - the physical layer delta                         * 
102     * SCHED_DELTA - scheduler schedules one slot ahead             *
103     * BO_DELTA - this delay is considered for BO response and      *
104     *            RLC buffer packet to received at MAC              *
105     * lower-mac (FAPI filling) will be working on PHY_DELTA        *
106     * brdcast scheduler will working on PHY_DELTA + SCHED_DELTA    *
107     * RAR scheduler will working on PHY_DELTA + SCHED_DELTA        *
108     * msg4 scheduler will working on PHY_DELTA + SCHED_DELTA       *
109     * dedicated DL msg scheduler will working                      *
110     *        on PHY_DELTA + SCHED_DELTA + BO_DELTA                 *
111     ****************************************************************/
112
113    ADD_DELTA_TO_TIME(slotInd, schSlotValue->currentTime, PHY_DELTA_DL);
114    ADD_DELTA_TO_TIME(slotInd, schSlotValue->broadcastTime, PHY_DELTA_DL + SCHED_DELTA);
115    ADD_DELTA_TO_TIME(slotInd, schSlotValue->rarTime, PHY_DELTA_DL + SCHED_DELTA);
116    ADD_DELTA_TO_TIME(slotInd, schSlotValue->dlMsgTime, PHY_DELTA_DL + SCHED_DELTA);
117 }
118
119 /*******************************************************************
120  *
121  * @brief Checks if a slot is to be scheduled for SSB transmission
122  *
123  * @details
124  *
125  *    Function : schCheckSsbOcc 
126  *
127  *    Functionality:
128  *       Checks if a slot is to be scheduled for SSB transmission
129  *
130  * @params[in] SlotTimingInfo slotTime
131  *             SchCellCb *cell 
132  * @return  Pdu transmission 
133  *
134  * ****************************************************************/
135 PduTxOccsaion schCheckSsbOcc(SlotTimingInfo slotTime, SchCellCb *cell)
136 {
137    uint8_t  ssb_rep;
138
139    ssb_rep = cell->cellCfg.ssbSchCfg.ssbPeriod;
140
141    /* Identify SSB ocassion*/
142    if ((slotTime.sfn % SCH_MIB_TRANS == 0) && (slotTime.slot ==0))
143    {
144       return NEW_TRANSMISSION;
145    }
146    else if(cell->firstSsbTransmitted) 
147    {
148       if((ssb_rep == 5) && ((slotTime.slot == 0 || slotTime.slot == 10)))
149          return REPEATITION;
150       else if((slotTime.sfn % (ssb_rep/10) == 0) && slotTime.slot == 0)
151          return REPEATITION;
152    }
153    /* not SSB occassion */
154    return NO_TRANSMISSION;
155 }
156
157 /*******************************************************************
158  *
159  * @brief Checks if a slot is to be scheduled for SIB1 transmission
160  *
161  * @details
162  *
163  *    Function : schCheckSib1Occ
164  *
165  *    Functionality:
166  *       Checks if a slot is to be scheduled for SIB1 transmission
167  *
168  * @params[in] SlotTimingInfo slotTime
169  *             SchCellCb *cell
170  * @return  Pdu transmission
171  *
172  * ****************************************************************/
173 PduTxOccsaion schCheckSib1Occ(SlotTimingInfo slotTime, SchCellCb *cell)
174 {
175    /* Identify SIB1 occasions */
176    if((slotTime.sfn % SCH_SIB1_TRANS == 0) && (slotTime.slot ==0))
177    {
178       return NEW_TRANSMISSION;
179    }
180    else if(cell->firstSib1Transmitted) 
181    {
182       if((slotTime.sfn % (cell->cellCfg.sib1SchCfg.sib1RepetitionPeriod/10) == 0) &&
183             (slotTime.slot == 0))
184       {
185          return REPEATITION;
186       }
187    }
188    /* not SIB1 occassion */
189    return NO_TRANSMISSION;
190 }
191
192 /*******************************************************************
193  *
194  * @brief 
195  *
196  * @details
197  *
198  *    Function : 
199  *
200  *    Functionality:
201  
202  *
203  * @params[in] 
204  * @return ROK     - success
205  *         RFAILED - failure
206  *
207  * ****************************************************************/
208 uint8_t schFillBoGrantDlSchedInfo(SchCellCb *cell, DlSchedInfo *dlSchedInfo, DlMsgAlloc *dlMsgAlloc)
209 {
210    uint8_t ueIdx, lcIdx;
211    uint16_t slot;
212    uint16_t crnti = 0;
213    uint32_t accumalatedSize = 0;
214    SchUeCb *ueCb = NULLP;
215
216    while(cell->boIndBitMap)
217    {
218       slot = dlSchedInfo->schSlotValue.dlMsgTime.slot;
219
220       GET_RIGHT_MOST_SET_BIT(cell->boIndBitMap, ueIdx);
221       GET_CRNTI(crnti,ueIdx);
222       ueCb = &cell->ueCb[ueIdx-1];
223
224       /* allocate PDCCH and PDSCH resources for the ue */
225       SCH_ALLOC(dlMsgAlloc, sizeof(DlMsgAlloc));
226       if(!dlMsgAlloc)
227       {
228          DU_LOG("\nERROR  -->  SCH : Memory Allocation failed for ded DL msg alloc");
229          return RFAILED;
230       }
231       memset(dlMsgAlloc, 0, sizeof(DlMsgAlloc));
232       dlSchedInfo->dlMsgAlloc = dlMsgAlloc;
233       dlMsgAlloc->crnti = crnti;
234
235       /* Dl ded Msg info is copied, this was earlier filled in macSchDlRlcBoInfo */
236       memcpy(&dlMsgAlloc->dlMsgInfo, cell->schDlSlotInfo[slot]->dlMsgInfo, \
237             sizeof(DlMsgInfo));
238
239       /* scheduled LC data fill */
240       dlMsgAlloc->numLc = 0;
241       for(lcIdx = 0; lcIdx < MAX_NUM_LC; lcIdx++)
242       {
243          if(ueCb->dlInfo.dlLcCtxt[lcIdx].bo)
244          {
245             dlMsgAlloc->lcSchInfo[dlMsgAlloc->numLc].lcId = lcIdx;
246
247             /* calculation for BO includse RLC and MAC header size */
248             dlMsgAlloc->lcSchInfo[dlMsgAlloc->numLc].schBytes = \
249                                                                 ueCb->dlInfo.dlLcCtxt[lcIdx].bo + MAC_HDR_SIZE;
250             accumalatedSize += dlMsgAlloc->lcSchInfo[dlMsgAlloc->numLc].schBytes;
251             dlMsgAlloc->numLc++;
252          }
253          ueCb->dlInfo.dlLcCtxt[lcIdx].bo = 0;
254       }
255       
256       if (!dlMsgAlloc->numLc)
257       {
258          DU_LOG("\nDEBUG  -->  SCH : No pending BO for any LC id\n");
259          /* Free the dl ded msg info allocated in macSchDlRlcBoInfo */
260          SCH_FREE(cell->schDlSlotInfo[dlSchedInfo->schSlotValue.dlMsgTime.slot]->dlMsgInfo, \
261                sizeof(DlMsgInfo));
262          return ROK;
263       }
264
265       /* pdcch and pdsch data is filled */
266       schDlRsrcAllocDlMsg(dlMsgAlloc, cell, crnti, &accumalatedSize, slot);
267       /* Calculated TB size could be less than the total size requested.
268        * Hence, updated the scheduled bytes report. Following is valid only for
269        * one LC.
270        * TODO : Update the scheduling byte report for multiple LC based on QCI
271        * and Priority */
272       dlMsgAlloc->lcSchInfo[dlMsgAlloc->numLc -1].schBytes = accumalatedSize;
273
274       /* PUCCH resource */
275       schAllocPucchResource(cell, dlMsgAlloc->crnti, slot);
276
277       /* Free the dl ded msg info allocated in macSchDlRlcBoInfo */
278       SCH_FREE(cell->schDlSlotInfo[dlSchedInfo->schSlotValue.dlMsgTime.slot]->dlMsgInfo, \
279             sizeof(DlMsgInfo));
280       cell->schDlSlotInfo[dlSchedInfo->schSlotValue.dlMsgTime.slot]->dlMsgInfo = NULL;
281
282       /* after allocation is done, unset the bo bit for that ue */
283       UNSET_ONE_BIT(ueIdx, cell->boIndBitMap);
284    }
285
286    return ROK;
287 }
288
289 /*******************************************************************
290  *
291  * @brief Handles slot indication at SCH 
292  *
293  * @details
294  *
295  *    Function : schProcessSlotInd
296  *
297  *    Functionality:
298  *     Handles TTI indication received from PHY
299  *
300  * @params[in] 
301  * @return ROK     - success
302  *         RFAILED - failure
303  *
304  * ****************************************************************/
305 uint8_t schProcessSlotInd(SlotTimingInfo *slotInd, Inst schInst)
306 {
307    uint8_t  ueIdx, lcgIdx, ret = ROK;
308    uint16_t slot;
309    DlSchedInfo dlSchedInfo;
310    DlBrdcstAlloc *dlBrdcstAlloc = NULLP;
311    DlMsgAlloc  *msg4Alloc = NULLP;
312    DlMsgAlloc *dlMsgAlloc = NULLP;
313    SchCellCb  *cell = NULLP;
314
315    memset(&dlSchedInfo,0,sizeof(DlSchedInfo));
316    dlSchedInfo.dlMsgAlloc = NULLP;
317    schCalcSlotValues(*slotInd, &dlSchedInfo.schSlotValue);
318    dlBrdcstAlloc = &dlSchedInfo.brdcstAlloc;
319    dlBrdcstAlloc->ssbTrans = NO_TRANSMISSION;
320    dlBrdcstAlloc->sib1Trans = NO_TRANSMISSION;
321
322    cell = schCb[schInst].cells[schInst];
323    if(cell == NULLP)
324    {
325       DU_LOG("\nERROR  -->  SCH : Cell Does not exist");
326       return RFAILED;
327    }
328    memcpy(&cell->slotInfo, slotInd, sizeof(SlotTimingInfo));
329    dlBrdcstAlloc->ssbIdxSupported = SSB_IDX_SUPPORTED;
330
331    slot = dlSchedInfo.schSlotValue.currentTime.slot;
332
333    dlSchedInfo.cellId = cell->cellId;
334
335    /* Check if this slot is SSB occassion */
336    dlBrdcstAlloc->ssbTrans = schCheckSsbOcc(dlSchedInfo.schSlotValue.broadcastTime, cell); 
337    if((dlBrdcstAlloc->ssbTrans == NEW_TRANSMISSION) && (!cell->firstSsbTransmitted))
338       cell->firstSsbTransmitted = true;
339
340    /* Check if this slot is SIB1 occassion */
341    dlBrdcstAlloc->sib1Trans = schCheckSib1Occ(dlSchedInfo.schSlotValue.broadcastTime, cell);
342    if((dlBrdcstAlloc->sib1Trans == NEW_TRANSMISSION) && (!cell->firstSib1Transmitted))
343       cell->firstSib1Transmitted = true;
344
345    if(dlBrdcstAlloc->ssbTrans || dlBrdcstAlloc->sib1Trans)
346    {
347       dlSchedInfo.isBroadcastPres = true;
348       slot = dlSchedInfo.schSlotValue.broadcastTime.slot;
349       ret = schBroadcastAlloc(cell,dlBrdcstAlloc,slot);
350       if(ret != ROK)
351       {
352          DU_LOG("\nERROR  -->  SCH : schBroadcastAlloc failed");
353          return ret;
354       }
355    }
356
357    /* Check for Pending RA Requests */
358    schProcessRaReq(*slotInd, cell);
359
360    /* check for RAR */
361    if(cell->schDlSlotInfo[dlSchedInfo.schSlotValue.rarTime.slot]->rarAlloc != NULLP)
362    {
363       slot = dlSchedInfo.schSlotValue.rarTime.slot;
364       dlSchedInfo.rarAlloc = cell->schDlSlotInfo[slot]->rarAlloc;
365       cell->schDlSlotInfo[slot]->rarAlloc = NULLP;
366    }
367
368    /* check for MSG4 */
369    if((cell->schDlSlotInfo[dlSchedInfo.schSlotValue.dlMsgTime.slot]->dlMsgInfo != NULLP) &&
370       (cell->schDlSlotInfo[dlSchedInfo.schSlotValue.dlMsgTime.slot]->dlMsgInfo->isMsg4Pdu))
371    {
372       slot = dlSchedInfo.schSlotValue.dlMsgTime.slot;
373
374       SCH_ALLOC(msg4Alloc, sizeof(DlMsgAlloc));
375       if(!msg4Alloc)
376       {
377          DU_LOG("\nERROR  -->  SCH : Memory Allocation failed for msg4 alloc");
378          return RFAILED;
379       }
380
381       dlSchedInfo.dlMsgAlloc = msg4Alloc;
382
383       /* Msg4 info is copied, this was earlier filled in macSchDlRlcBoInfo */
384       memcpy(&msg4Alloc->dlMsgInfo, cell->schDlSlotInfo[slot]->dlMsgInfo, \
385             sizeof(DlMsgInfo));
386
387       /* pdcch and pdsch data is filled */
388       schDlRsrcAllocMsg4(msg4Alloc, cell, dlSchedInfo.schSlotValue.dlMsgTime.slot, dlBrdcstAlloc->ssbTrans, dlBrdcstAlloc->sib1Trans); 
389
390       /* PUCCH resource */
391       schAllocPucchResource(cell, msg4Alloc->dlMsgInfo.crnti, dlSchedInfo.schSlotValue.dlMsgTime.slot);
392
393       SCH_FREE(cell->schDlSlotInfo[dlSchedInfo.schSlotValue.dlMsgTime.slot]->dlMsgInfo, sizeof(DlMsgInfo));
394       cell->schDlSlotInfo[dlSchedInfo.schSlotValue.dlMsgTime.slot]->dlMsgInfo = NULL;
395    }
396
397    /* check if UL grant must be sent in this slot for a SR/BSR that had been received */
398    for(ueIdx=0; ueIdx<cell->numActvUe; ueIdx++)
399    {
400       uint32_t totDataReq = 0; /* in bytes */
401       DciInfo  *dciInfo = NULLP;
402       SchUeCb *ueCb = NULLP;
403    
404       ueCb = &cell->ueCb[ueIdx];
405       /* check for SR */
406       if(ueCb->srRcvd)
407       {
408          totDataReq = UL_GRANT_SIZE; /*fixing so that all control msgs can be handled in SR */
409          ueCb->srRcvd = false;
410       }
411       /* check for BSR */
412       for(lcgIdx=0; lcgIdx<MAX_NUM_LOGICAL_CHANNEL_GROUPS; lcgIdx++)
413       {
414         totDataReq+= ueCb->bsrInfo[lcgIdx].dataVol;
415         ueCb->bsrInfo[lcgIdx].dataVol = 0;
416       }
417       if(totDataReq > 0) /* UL grant must be provided for this UE in this slot */
418       {
419          SchPuschInfo schPuschInfo;
420          memset(&schPuschInfo, 0, sizeof(SchPuschInfo));
421
422          SCH_ALLOC(dciInfo, sizeof(DciInfo));
423          if(!dciInfo)
424          {
425             DU_LOG("\nERROR  -->  SCH : Memory Allocation failed for dciInfo alloc");
426             return RFAILED;
427          }
428          memset(dciInfo,0,sizeof(DciInfo));
429          /* update the SFN and SLOT */
430          memcpy(&dlSchedInfo.schSlotValue.ulDciTime, slotInd, sizeof(SlotTimingInfo));
431          slot = dlSchedInfo.schSlotValue.ulDciTime.slot;
432          /* Update PUSCH allocation */
433          schFillPuschAlloc(ueCb, slot, totDataReq, &schPuschInfo);
434          /* Fill DCI for UL grant */
435          schFillUlDci(ueCb, schPuschInfo, dciInfo);
436          memcpy(&dciInfo->slotIndInfo, &dlSchedInfo.schSlotValue.ulDciTime, sizeof(SlotTimingInfo));
437          dlSchedInfo.ulGrant = dciInfo;
438       }
439    }
440
441    /* Check for pending BO grant for LC */
442    if((cell->schDlSlotInfo[dlSchedInfo.schSlotValue.dlMsgTime.slot]->dlMsgInfo != NULLP) &&
443       (!cell->schDlSlotInfo[dlSchedInfo.schSlotValue.dlMsgTime.slot]->dlMsgInfo->isMsg4Pdu))
444    {
445       schFillBoGrantDlSchedInfo(cell, &dlSchedInfo, dlMsgAlloc);
446    }
447
448    /* send msg to MAC */
449    ret = sendDlAllocToMac(&dlSchedInfo, schInst);
450    if(ret != ROK)
451    {
452       DU_LOG("\nERROR  -->  SCH : Sending DL Broadcast allocation from SCH to MAC failed");
453       return (ret);
454    }
455
456    schInitDlSlot(cell->schDlSlotInfo[slot]);
457    schUlResAlloc(cell, schInst);
458
459
460    return ret;
461 }
462
463 /**********************************************************************
464   End of file
465  **********************************************************************/
466
467