4df452ad5e06f7c6ec706fd9dcef3ea815c7c025
[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  *
85  * @brief Handles slot indication at SCH 
86  *
87  * @details
88  *
89  *    Function : schCalcSlotValues
90  *
91  *    Functionality:
92  *     Handles TTI indication received from PHY
93  *
94  * @params[in] 
95  * @return ROK     - success
96  *         RFAILED - failure
97  *
98  * ****************************************************************/
99 void schCalcSlotValues(SlotIndInfo slotInd, SchSlotValue *schSlotValue)
100 {
101    /****************************************************************
102     * PHY_DELTA - the physical layer delta                         * 
103     * SCHED_DELTA - scheduler schedules one slot ahead             *
104     * BO_DELTA - this delay is considered for BO response and      *
105     *            RLC buffer packet to received at MAC              *
106     * lower-mac (FAPI filling) will be working on PHY_DELTA        *
107     * brdcast scheduler will working on PHY_DELTA + SCHED_DELTA    *
108     * RAR scheduler will working on PHY_DELTA + SCHED_DELTA        *
109     * msg4 scheduler will working on PHY_DELTA + SCHED_DELTA       *
110     * dedicated DL msg scheduler will working                      *
111     *        on PHY_DELTA + SCHED_DELTA + BO_DELTA                 *
112     ****************************************************************/
113
114    ADD_DELTA_TO_TIME(slotInd, schSlotValue->currentTime, PHY_DELTA_DL);
115    ADD_DELTA_TO_TIME(slotInd, schSlotValue->broadcastTime, PHY_DELTA_DL + SCHED_DELTA);
116    ADD_DELTA_TO_TIME(slotInd, schSlotValue->rarTime, PHY_DELTA_DL + SCHED_DELTA);
117    ADD_DELTA_TO_TIME(slotInd, schSlotValue->dlMsgTime, PHY_DELTA_DL + SCHED_DELTA);
118 }
119
120 /*******************************************************************
121  *
122  * @brief 
123  *
124  * @details
125  *
126  *    Function : 
127  *
128  *    Functionality:
129  
130  *
131  * @params[in] 
132  * @return ROK     - success
133  *         RFAILED - failure
134  *
135  * ****************************************************************/
136 uint8_t schFillBoGrantDlSchedInfo(SchCellCb *cell, DlSchedInfo *dlSchedInfo, DlMsgAlloc *dlMsgAlloc)
137 {
138    uint8_t ueIdx, lcIdx;
139    uint16_t slot;
140    uint16_t crnti = 0;
141    uint32_t accumalatedSize = 0;
142    SchUeCb *ueCb = NULLP;
143
144    while(cell->boIndBitMap)
145    {
146       slot = dlSchedInfo->schSlotValue.dlMsgTime.slot;
147
148       GET_RIGHT_MOST_SET_BIT(cell->boIndBitMap, ueIdx);
149       GET_CRNTI(crnti,ueIdx);
150       ueCb = &cell->ueCb[ueIdx-1];
151
152       /* allocate PDCCH and PDSCH resources for the ue */
153       SCH_ALLOC(dlMsgAlloc, sizeof(DlMsgAlloc));
154       if(!dlMsgAlloc)
155       {
156          DU_LOG("\nERROR  -->  SCH : Memory Allocation failed for ded DL msg alloc");
157          return RFAILED;
158       }
159       memset(dlMsgAlloc, 0, sizeof(DlMsgAlloc));
160       dlSchedInfo->dlMsgAlloc = dlMsgAlloc;
161       dlMsgAlloc->crnti = crnti;
162
163       /* Dl ded Msg info is copied, this was earlier filled in macSchDlRlcBoInfo */
164       memcpy(&dlMsgAlloc->dlMsgInfo, cell->schDlSlotInfo[slot]->dlMsgInfo, \
165             sizeof(DlMsgInfo));
166
167       /* scheduled LC data fill */
168       dlMsgAlloc->numLc = 0;
169       for(lcIdx = 0; lcIdx < MAX_NUM_LC; lcIdx++)
170       {
171          if(ueCb->dlInfo.dlLcCtxt[lcIdx].bo)
172          {
173             dlMsgAlloc->lcSchInfo[dlMsgAlloc->numLc].lcId = lcIdx;
174
175             /* calculation for BO includse RLC and MAC header size */
176             dlMsgAlloc->lcSchInfo[dlMsgAlloc->numLc].schBytes = \
177                                                                 ueCb->dlInfo.dlLcCtxt[lcIdx].bo + MAC_HDR_SIZE;
178             accumalatedSize += dlMsgAlloc->lcSchInfo[dlMsgAlloc->numLc].schBytes;
179             dlMsgAlloc->numLc++;
180          }
181          ueCb->dlInfo.dlLcCtxt[lcIdx].bo = 0;
182       }
183       
184       if (!dlMsgAlloc->numLc)
185       {
186          DU_LOG("\nDEBUG  -->  SCH : No bo for any lcid\n");
187          return ROK;
188       }
189
190       /* pdcch and pdsch data is filled */
191       schDlRsrcAllocDlMsg(dlMsgAlloc, cell, crnti, &accumalatedSize, slot);
192       /* Calculated TB size could be less than the total size requested.
193        * Hence, updated the scheduled bytes report. Following is valid only for
194        * one LC.
195        * TODO : Update the scheduling byte report for multiple LC based on QCI
196        * and Priority */
197       dlMsgAlloc->lcSchInfo[dlMsgAlloc->numLc -1].schBytes = accumalatedSize;
198
199       /* PUCCH resource */
200       schAllocPucchResource(cell, dlMsgAlloc->crnti, slot);
201
202       /* Free the dl ded msg info allocated in macSchDlRlcBoInfo */
203       SCH_FREE(cell->schDlSlotInfo[dlSchedInfo->schSlotValue.dlMsgTime.slot]->dlMsgInfo, \
204             sizeof(DlMsgInfo));
205       cell->schDlSlotInfo[dlSchedInfo->schSlotValue.dlMsgTime.slot]->dlMsgInfo = NULL;
206
207       /* after allocation is done, unset the bo bit for that ue */
208       UNSET_ONE_BIT(ueIdx, cell->boIndBitMap);
209    }
210
211    return ROK;
212 }
213
214 /*******************************************************************
215  *
216  * @brief Handles slot indication at SCH 
217  *
218  * @details
219  *
220  *    Function : schProcessSlotInd
221  *
222  *    Functionality:
223  *     Handles TTI indication received from PHY
224  *
225  * @params[in] 
226  * @return ROK     - success
227  *         RFAILED - failure
228  *
229  * ****************************************************************/
230 uint8_t schProcessSlotInd(SlotIndInfo *slotInd, Inst schInst)
231 {
232    uint8_t  ssb_rep, ueIdx, lcgIdx, ret = ROK;
233    uint16_t slot;
234    DlSchedInfo dlSchedInfo;
235    DlBrdcstAlloc *dlBrdcstAlloc = NULLP;
236    RarAlloc   *rarAlloc = NULLP;
237    DlMsgAlloc  *msg4Alloc = NULLP;
238    DlMsgAlloc *dlMsgAlloc = NULLP;
239    SchCellCb  *cell = NULLP;
240
241
242    memset(&dlSchedInfo,0,sizeof(DlSchedInfo));
243    dlSchedInfo.dlMsgAlloc = NULLP;
244    schCalcSlotValues(*slotInd, &dlSchedInfo.schSlotValue);
245    dlBrdcstAlloc = &dlSchedInfo.brdcstAlloc;
246    dlBrdcstAlloc->ssbTrans = NO_SSB;
247    dlBrdcstAlloc->sib1Trans = NO_SIB1;
248
249    cell = schCb[schInst].cells[schInst];
250    if(cell == NULLP)
251    {
252       DU_LOG("\nERROR  -->  SCH : Cell Does not exist");
253       return RFAILED;
254    }
255    ssb_rep = cell->cellCfg.ssbSchCfg.ssbPeriod;
256    memcpy(&cell->slotInfo, slotInd, sizeof(SlotIndInfo));
257    dlBrdcstAlloc->ssbIdxSupported = 1;
258
259    slot = dlSchedInfo.schSlotValue.currentTime.slot;
260
261    dlSchedInfo.cellId = cell->cellId;
262
263    /* Identify SSB ocassion*/
264    if ((dlSchedInfo.schSlotValue.broadcastTime.sfn % SCH_MIB_TRANS == 0) && (dlSchedInfo.schSlotValue.broadcastTime.slot ==0))
265    {
266       dlBrdcstAlloc->ssbTrans = SSB_TRANSMISSION;
267       if(!cell->firstSsbTransmitted)
268          cell->firstSsbTransmitted = true;
269    }
270    else if (cell->firstSsbTransmitted) 
271    {
272       if((ssb_rep == 5) && ((dlSchedInfo.schSlotValue.broadcastTime.slot == 0 || dlSchedInfo.schSlotValue.broadcastTime.slot == 10)))
273          dlBrdcstAlloc->ssbTrans = SSB_REPEAT;
274       else if((dlSchedInfo.schSlotValue.broadcastTime.sfn % (ssb_rep/10) == 0) && dlSchedInfo.schSlotValue.broadcastTime.slot == 0)
275          dlBrdcstAlloc->ssbTrans = SSB_REPEAT;
276    }
277    else
278    {
279       /* not SSB occassion */
280    }
281
282    /* Identify SIB1 occasions */
283    if((dlSchedInfo.schSlotValue.broadcastTime.sfn % SCH_SIB1_TRANS == 0) && (dlSchedInfo.schSlotValue.broadcastTime.slot ==0))
284    {
285       dlBrdcstAlloc->sib1Trans = SIB1_TRANSMISSION;
286       if(!cell->firstSib1Transmitted)
287          cell->firstSib1Transmitted = true;
288    }
289    else if (cell->firstSib1Transmitted) 
290    {
291       if((dlSchedInfo.schSlotValue.broadcastTime.sfn % (cell->cellCfg.sib1SchCfg.sib1RepetitionPeriod/10) == 0) &&
292             (dlSchedInfo.schSlotValue.broadcastTime.slot == 0))
293       {
294          dlBrdcstAlloc->sib1Trans = SIB1_REPITITION;
295       }
296    }
297    else
298    {
299       /* not SIB1 occassion */
300    }
301
302
303    if(dlBrdcstAlloc->ssbTrans || dlBrdcstAlloc->sib1Trans)
304    {
305       dlSchedInfo.isBroadcastPres = true;
306       slot = dlSchedInfo.schSlotValue.broadcastTime.slot;
307       ret = schBroadcastAlloc(cell,dlBrdcstAlloc,slot);
308       if(ret != ROK)
309       {
310          DU_LOG("\nERROR  -->  SCH : schBroadcastAlloc failed");
311          return ret;
312       }
313    }
314
315    /* check for RAR */
316    if(cell->schDlSlotInfo[dlSchedInfo.schSlotValue.rarTime.slot]->rarInfo != NULLP)
317    {
318       slot = dlSchedInfo.schSlotValue.rarTime.slot;
319       SCH_ALLOC(rarAlloc, sizeof(RarAlloc));
320       if(!rarAlloc)
321       {
322          DU_LOG("\nERROR  -->  SCH : Memory Allocation failed for RAR alloc");
323          return RFAILED;
324       }
325
326       dlSchedInfo.rarAlloc = rarAlloc;
327
328       /* RAR info is copied, this was earlier filled in schProcessRachInd */
329       memcpy(&rarAlloc->rarInfo,cell->schDlSlotInfo[slot]->rarInfo, sizeof(RarInfo));
330
331       /* pdcch and pdsch data is filled */
332       schFillRar(rarAlloc,
333             cell->schDlSlotInfo[slot]->rarInfo->raRnti,
334             cell->cellCfg.phyCellId,
335             cell->cellCfg.ssbSchCfg.ssbOffsetPointA,
336        dlBrdcstAlloc->ssbTrans,
337        dlBrdcstAlloc->sib1Trans);
338
339       SCH_FREE(cell->schDlSlotInfo[slot]->rarInfo,sizeof(RarInfo));
340       cell->schDlSlotInfo[slot]->rarInfo = NULLP;
341    }
342
343    /* check for MSG4 */
344    if((cell->schDlSlotInfo[dlSchedInfo.schSlotValue.dlMsgTime.slot]->dlMsgInfo != NULLP) &&
345       (cell->schDlSlotInfo[dlSchedInfo.schSlotValue.dlMsgTime.slot]->dlMsgInfo->isMsg4Pdu))
346    {
347       slot = dlSchedInfo.schSlotValue.dlMsgTime.slot;
348
349       SCH_ALLOC(msg4Alloc, sizeof(DlMsgAlloc));
350       if(!msg4Alloc)
351       {
352          DU_LOG("\nERROR  -->  SCH : Memory Allocation failed for msg4 alloc");
353          return RFAILED;
354       }
355
356       dlSchedInfo.dlMsgAlloc = msg4Alloc;
357
358       /* Msg4 info is copied, this was earlier filled in macSchDlRlcBoInfo */
359       memcpy(&msg4Alloc->dlMsgInfo, cell->schDlSlotInfo[slot]->dlMsgInfo, \
360             sizeof(DlMsgInfo));
361
362       /* pdcch and pdsch data is filled */
363       schDlRsrcAllocMsg4(msg4Alloc, cell, dlSchedInfo.schSlotValue.dlMsgTime.slot, dlBrdcstAlloc->ssbTrans, dlBrdcstAlloc->sib1Trans); 
364
365       /* PUCCH resource */
366       schAllocPucchResource(cell, msg4Alloc->dlMsgInfo.crnti, dlSchedInfo.schSlotValue.dlMsgTime.slot);
367
368       SCH_FREE(cell->schDlSlotInfo[dlSchedInfo.schSlotValue.dlMsgTime.slot]->dlMsgInfo, sizeof(DlMsgInfo));
369       cell->schDlSlotInfo[dlSchedInfo.schSlotValue.dlMsgTime.slot]->dlMsgInfo = NULL;
370    }
371    /* check if UL grant must be sent in this slot for a SR/BSR that had been received */
372    for(ueIdx=0; ueIdx<cell->numActvUe; ueIdx++)
373    {
374       uint32_t totDataReq = 0; /* in bytes */
375       DciInfo  *dciInfo = NULLP;
376       SchUeCb *ueCb = NULLP;
377    
378       ueCb = &cell->ueCb[ueIdx];
379       /* check for SR */
380       if(ueCb->srRcvd)
381       {
382          totDataReq = UL_GRANT_SIZE; /*fixing so that all control msgs can be handled in SR */
383          ueCb->srRcvd = false;
384       }
385       /* check for BSR */
386       for(lcgIdx=0; lcgIdx<MAX_NUM_LOGICAL_CHANNEL_GROUPS; lcgIdx++)
387       {
388         totDataReq+= ueCb->bsrInfo[lcgIdx].dataVol;
389         ueCb->bsrInfo[lcgIdx].dataVol = 0;
390       }
391       if(totDataReq > 0) /* UL grant must be provided for this UE in this slot */
392       {
393          SchPuschInfo schPuschInfo;
394          memset(&schPuschInfo, 0, sizeof(SchPuschInfo));
395
396          SCH_ALLOC(dciInfo, sizeof(DciInfo));
397          if(!dciInfo)
398          {
399             DU_LOG("\nERROR  -->  SCH : Memory Allocation failed for dciInfo alloc");
400             return RFAILED;
401          }
402          memset(dciInfo,0,sizeof(DciInfo));
403          /* update the SFN and SLOT */
404          memcpy(&dlSchedInfo.schSlotValue.ulDciTime, slotInd, sizeof(SlotIndInfo));
405          slot = dlSchedInfo.schSlotValue.ulDciTime.slot;
406          /* Update PUSCH allocation */
407          schFillPuschAlloc(ueCb, slot, totDataReq, &schPuschInfo);
408          /* Fill DCI for UL grant */
409          schFillUlDci(ueCb, schPuschInfo, dciInfo);
410          memcpy(&dciInfo->slotIndInfo, &dlSchedInfo.schSlotValue.ulDciTime, sizeof(SlotIndInfo));
411          dlSchedInfo.ulGrant = dciInfo;
412       }
413    }
414
415    /* Check for pending BO grant for LC */
416    if((cell->schDlSlotInfo[dlSchedInfo.schSlotValue.dlMsgTime.slot]->dlMsgInfo != NULLP) &&
417       (!cell->schDlSlotInfo[dlSchedInfo.schSlotValue.dlMsgTime.slot]->dlMsgInfo->isMsg4Pdu))
418    {
419       schFillBoGrantDlSchedInfo(cell, &dlSchedInfo, dlMsgAlloc);
420    }
421
422    /* send msg to MAC */
423    ret = sendDlAllocToMac(&dlSchedInfo, schInst);
424    if(ret != ROK)
425    {
426       DU_LOG("\nERROR  -->  SCH : Sending DL Broadcast allocation from SCH to MAC failed");
427       return (ret);
428    }
429
430    schInitDlSlot(cell->schDlSlotInfo[slot]);
431    schUlResAlloc(cell, schInst);
432
433
434    return ret;
435 }
436
437 /**********************************************************************
438   End of file
439  **********************************************************************/
440
441