448434cad5e9838c6779572e12dfa2ff6f9d5d8b
[o-du/l2.git] / src / 5gnrsch / sch_common.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
26
27 File:     sch_common.c
28
29  **********************************************************************/
30
31 /** @file sch_common.c
32   @brief This module performs common scheduling
33  */
34 #include "common_def.h"
35 #include "tfu.h"
36 #include "lrg.h"
37
38 #include "tfu.x"
39 #include "lrg.x"
40 #include "du_log.h"
41 #include "du_app_mac_inf.h"
42 #include "mac_sch_interface.h"
43 #include "sch.h"
44 #include "sch_utils.h"
45
46 SchCb schCb[SCH_MAX_INST];
47 uint16_t prachCfgIdxTable[MAX_PRACH_CONFIG_IDX][8];
48 uint16_t numRbForPrachTable[MAX_RACH_NUM_RB_IDX][5];
49 uint8_t pucchResourceSet[MAX_PUCCH_RES_SET_IDX][4];
50
51 SchMacUlSchInfoFunc schMacUlSchInfoOpts[] =
52 {
53    packSchMacUlSchInfo,
54    MacProcUlSchInfo,
55    packSchMacUlSchInfo
56 };
57
58 /**
59  * @brief common resource allocation for SSB
60  *
61  * @details
62  *
63  *     Function : schBroadcastAlloc
64  *     
65  *     This function handles common scheduling for DL
66  *     
67  *  @param[in]  SchCellCb *cell, cell cb
68  *  @param[in]  DlBrdcstAlloc *dlBrdcstAlloc, DL brdcst allocation
69  *  @return  void
70  **/
71 uint8_t schBroadcastAlloc(SchCellCb *cell, DlBrdcstAlloc *dlBrdcstAlloc,
72       uint16_t slot)
73 {
74    /* schedule SSB */
75    uint8_t ssbStartPrb, ssbStartSymb, idx;
76    SchDlSlotInfo *schDlSlotInfo;
77    SsbInfo ssbInfo;
78
79    schDlSlotInfo = cell->schDlSlotInfo[slot];
80
81    if(dlBrdcstAlloc->ssbTrans)
82    {
83       ssbStartPrb = cell->cellCfg.ssbSchCfg.ssbOffsetPointA; //+Kssb
84       ssbStartSymb = cell->ssbStartSymbArr[dlBrdcstAlloc->ssbIdxSupported-1]; /*since we are
85                                                                                 supporting only 1 ssb beam */
86
87       /* Assign interface structure */
88       for(idx=0; idx<dlBrdcstAlloc->ssbIdxSupported; idx++)
89       {
90          ssbInfo.ssbIdx              = idx;
91          ssbInfo.fdAlloc.startPrb    = ssbStartPrb;
92          ssbInfo.fdAlloc.numPrb      = SCH_SSB_NUM_PRB;
93          ssbInfo.tdAlloc.startSymb   = ssbStartSymb;
94          ssbInfo.tdAlloc.numSymb     = SCH_SSB_NUM_SYMB;
95          dlBrdcstAlloc->ssbInfo[idx] = ssbInfo;
96          schDlSlotInfo->ssbInfo[idx] = ssbInfo;
97       }
98
99       schDlSlotInfo->ssbPres = true;
100       schDlSlotInfo->ssbIdxSupported = dlBrdcstAlloc->ssbIdxSupported;
101       for(idx=ssbStartSymb; idx<ssbStartSymb+SCH_SSB_NUM_SYMB; idx++)
102       {
103          schDlSlotInfo->assignedPrb[idx] = ssbStartPrb + SCH_SSB_NUM_PRB + 1; /* +1 for kSsb */
104       }
105    }
106
107    /* SIB1 allocation */
108    if(dlBrdcstAlloc->sib1Trans)
109    {
110       uint16_t tbSize         = 0;
111       uint8_t numPdschSymbols = 12; /* considering pdsch region from 2 to 13 */
112       uint8_t mcs             = 4;  /* MCS fixed to 4 */
113       uint8_t numSib1Prb      = 0;
114       schDlSlotInfo->sib1Pres = true;
115
116       tbSize = schCalcTbSize(cell->cellCfg.sib1SchCfg.sib1PduLen); /* send this value to the func in bytes when considering sib1 size */
117       numSib1Prb = schCalcNumPrb(tbSize,mcs,numPdschSymbols);
118       for(idx=0; idx<SCH_SYMBOL_PER_SLOT; idx++)
119       {
120          schDlSlotInfo->assignedPrb[idx] = ssbStartPrb + SCH_SSB_NUM_PRB + 1 + numSib1Prb; /* 10 PRBs for sib1 */
121       }
122       memcpy(&dlBrdcstAlloc->sib1Alloc.bwp, &cell->cellCfg.sib1SchCfg.bwp, sizeof(BwpCfg)); 
123       memcpy(&dlBrdcstAlloc->sib1Alloc.sib1PdcchCfg, &cell->cellCfg.sib1SchCfg.sib1PdcchCfg, sizeof(PdcchCfg)); 
124       memcpy(&dlBrdcstAlloc->sib1Alloc.sib1PdschCfg, &cell->cellCfg.sib1SchCfg.sib1PdschCfg, sizeof(PdschCfg)); 
125       dlBrdcstAlloc->sib1Alloc.sib1PdcchCfg.dci.pdschCfg = &dlBrdcstAlloc->sib1Alloc.sib1PdschCfg;
126    }
127    return ROK;
128 }
129
130 /*******************************************************************
131  *
132  * @brief Handles sending UL scheduler info to MAC 
133  *
134  * @details
135  *
136  *    Function : sendUlSchInfoToMac
137  *
138  *    Functionality:
139  *     Sends UL Sch info to MAC from SCH
140  *
141  * @params[in] 
142  * @return ROK     - success
143  *         RFAILED - failure
144  *
145  * ****************************************************************/
146 int sendUlSchInfoToMac(UlSchedInfo *ulSchedInfo, Inst inst)
147 {
148    Pst pst;
149
150    memset(&pst, 0, sizeof(Pst));
151    FILL_PST_SCH_TO_MAC(pst, inst);
152    pst.event = EVENT_UL_SCH_INFO;
153
154    return(*schMacUlSchInfoOpts[pst.selector])(&pst, ulSchedInfo);
155 }
156 /**
157  * @brief resource allocation for PRACH
158  *
159  * @details
160  *
161  *     Function : schPrachResAlloc
162  *     
163  *     This function handles PRACH allocation
164  *     
165  *  @param[in]  SchCellCb *cell, cell cb
166  *  @param[in]  UlSchedInfo *ulSchedInfo, UL scheduling info
167  *  @return  void
168  **/
169 void schPrachResAlloc(SchCellCb *cell, UlSchedInfo *ulSchedInfo, SlotIndInfo prachOccasionTimingInfo)
170 {
171    uint8_t  puschScs;
172    uint8_t  numPrachRb = 0;
173    uint8_t  numRa = 0;
174    uint8_t  freqStart = 0;
175    uint8_t  prachCfgIdx = 0;
176    uint8_t  prachFormat = 0;
177    uint8_t  x = 0;
178    uint8_t  y = 0;
179    uint16_t prachSubframe = 0;
180    uint8_t  prachStartSymbol = 0;
181    uint8_t  prachOcas = 0;
182    uint8_t  dataType = 0;
183    uint8_t  idx = 0;
184    uint8_t  subFrame = 0;
185    SchUlSlotInfo *schUlSlotInfo = NULLP;
186
187    puschScs      = cell->cellCfg.schInitialUlBwp.bwp.scs;
188    schUlSlotInfo = cell->schUlSlotInfo[prachOccasionTimingInfo.slot];
189    prachCfgIdx   = cell->cellCfg.schRachCfg.prachCfgIdx;
190
191    /* derive the prachCfgIdx table paramters */
192    x                = prachCfgIdxTable[prachCfgIdx][1];
193    y                = prachCfgIdxTable[prachCfgIdx][2];
194    prachSubframe    = prachCfgIdxTable[prachCfgIdx][3];
195
196    if((prachOccasionTimingInfo.sfn%x) == y)
197    {
198 #ifdef NR_TDD
199       subFrame = prachOccasionTimingInfo.slot/2;
200 #else
201       subFrame = prachOccasionTimingInfo.slot;
202 #endif
203       /* check for subFrame number */
204       if ((1 << subFrame) & prachSubframe)
205       {
206          /* prach ocassion present in this subframe */
207 #ifdef NR_TDD
208          if(UL_SLOT != schGetSlotSymbFrmt(prachOccasionTimingInfo.slot%cell->numSlotsInPeriodicity,\
209          cell->slotFrmtBitMap))
210          {
211             DU_LOG("\nERROR  --> SCH : PrachCfgIdx %d doesn't support UL slot", prachCfgIdx);
212          }
213          else
214 #endif
215          {
216             prachFormat      = prachCfgIdxTable[prachCfgIdx][0];
217             prachStartSymbol = prachCfgIdxTable[prachCfgIdx][4];
218             prachOcas        = prachCfgIdxTable[prachCfgIdx][6];
219
220             /* freq domain resource determination for RACH*/
221             freqStart = cell->cellCfg.schRachCfg.msg1FreqStart;
222             /* numRa determined as 𝑛 belonging {0,1,.., M − 1}, 
223              * where M is given by msg1Fdm */
224             numRa = (cell->cellCfg.schRachCfg.msg1Fdm - 1);
225             for(idx=0; idx<MAX_RACH_NUM_RB_IDX; idx++)
226             {
227                if(numRbForPrachTable[idx][0] == cell->cellCfg.schRachCfg.rootSeqLen)
228                {
229                   if(numRbForPrachTable[idx][1] == cell->cellCfg.schRachCfg.prachSubcSpacing)
230                   {
231                      if(numRbForPrachTable[idx][2] == puschScs)
232                      {
233                         break;
234                      }
235                   }
236                }
237             }
238             numPrachRb = numRbForPrachTable[idx][3];
239             dataType |= SCH_DATATYPE_PRACH;
240             /* Considering first slot in the frame for PRACH */
241             idx = 0;
242             schUlSlotInfo->assignedPrb[idx] = freqStart+numPrachRb;
243          }
244          ulSchedInfo->dataType = dataType;
245          /* prach info */
246          ulSchedInfo->prachSchInfo.numPrachOcas   = prachOcas;
247          ulSchedInfo->prachSchInfo.prachFormat    = prachFormat;
248          ulSchedInfo->prachSchInfo.numRa          = numRa;
249          ulSchedInfo->prachSchInfo.prachStartSymb = prachStartSymbol;
250          DU_LOG("\nINFO  --> SCH : RACH occassion set for slot %d", prachOccasionTimingInfo.slot);
251       }
252    }
253 }
254
255
256 /**
257  * @brief Function to fill Pucch Format 0
258  *
259  * @details
260  *
261  *     Function : fillPucchFormat0
262  *     
263  *     Function to fill Pucch format 0
264  *     
265  *  @param[in]  SchPucchInfo pointer, SchPucchResrcInfo pointer
266  *  @return  void
267  **/
268
269 void fillPucchFormat0(SchPucchInfo *ulSchedPucch, SchPucchResrcInfo *resrcInfo)
270 {
271    if(resrcInfo->SchPucchFormat.format0)
272    {
273       ulSchedPucch->fdAlloc.numPrb = PUCCH_NUM_PRB_FORMAT_0_1_4;
274       ulSchedPucch->pucchFormat  = PUCCH_FORMAT_0;
275       ulSchedPucch->initialCyclicShift =  resrcInfo->SchPucchFormat.format0->initialCyclicShift;
276       ulSchedPucch->tdAlloc.numSymb = resrcInfo->SchPucchFormat.format0->numSymbols;
277       ulSchedPucch->tdAlloc.startSymb = resrcInfo->SchPucchFormat.format0->startSymbolIdx;
278    }
279 }
280
281 /**
282  * @brief Function to fill Pucch Format 1
283  *
284  * @details
285  *
286  *     Function : fillPucchFormat1
287  *     
288  *     Function to fill Pucch format 1
289  *     
290  *  @param[in]  SchPucchInfo pointer, SchPucchResrcInfo pointer
291  *  @return  void
292  **/
293
294 void fillPucchFormat1(SchPucchInfo *ulSchedPucch, SchPucchResrcInfo *resrcInfo)
295 {
296    if(resrcInfo->SchPucchFormat.format1)
297    {
298       ulSchedPucch->fdAlloc.numPrb = PUCCH_NUM_PRB_FORMAT_0_1_4;
299       ulSchedPucch->pucchFormat  = PUCCH_FORMAT_1;
300       ulSchedPucch->initialCyclicShift =  resrcInfo->SchPucchFormat.format1->initialCyclicShift;
301       ulSchedPucch->tdAlloc.numSymb = resrcInfo->SchPucchFormat.format1->numSymbols;
302       ulSchedPucch->tdAlloc.startSymb = resrcInfo->SchPucchFormat.format1->startSymbolIdx;
303       ulSchedPucch->timeDomOCC =  resrcInfo->SchPucchFormat.format1->timeDomOCC;
304   }
305 }
306
307 /**
308  * @brief Function to fill Pucch format for UL Sched Info
309  *
310  * @details
311  *
312  *     Function : fillUlSchedPucchFormat
313  *     
314  *     Function to fill Pucch format for UL Sched Info
315  *     
316  *  @param[in]  pucchFormat , SchPucchInfo pointer,
317  *  @param[in]  SchPucchFormatCfg pointer, SchPucchResrcInfo pointer
318  *  @return  void
319  **/
320
321 uint8_t fillUlSchedPucchFormat(uint8_t pucchFormat, SchPucchInfo *ulSchedPucch,\
322    SchPucchResrcInfo *resrcInfo, SchPucchFormatCfg *formatCfg)
323 {
324    uint8_t ret = ROK;
325
326    switch(pucchFormat)
327    {
328       case PUCCH_FORMAT_0:
329          {
330             if(resrcInfo)
331                fillPucchFormat0(ulSchedPucch, resrcInfo);
332             return ret;
333          }
334       case PUCCH_FORMAT_1:
335          {
336             if(resrcInfo)
337             {
338                fillPucchFormat1(ulSchedPucch, resrcInfo);
339             }
340             if(formatCfg)
341             {
342                memcpy(&ulSchedPucch->cmnFormatCfg, formatCfg, sizeof(SchPucchFormatCfg));
343             }
344             return ret;
345          }/* To Add support for more Pucch Format */
346       
347       default:
348          DU_LOG("\nERROR  --> SCH : Invalid PUCCH format[%d] in fillUlSchedPucchFormatCfg()", pucchFormat);
349          ret = RFAILED;
350          return ret;
351    }
352    return ret;
353 }
354
355 /**
356  * @brief Function to fill Pucch Dedicated Cfg for UL Sched Info
357  *
358  * @details
359  *
360  *     Function : fillUlSchedPucchDedicatedCfg
361  *     
362  *     Function to fill Pucch Dedicated Cfg for UL Sched Info
363  *     
364  *  @param[in]  pucchFormat to be filled
365  *  @param[in]  SchPucchFormatCfg pointer, SchPucchCfg pointer
366  *  @return  void
367  **/
368
369 uint8_t fillUlSchedPucchDedicatedCfg(uint16_t numSlots, SchPucchCfg *pucchDedCfg,\
370    SlotIndInfo *slotInfo, SchPucchInfo *ulSchedPucch)
371 {
372    uint8_t ret, resrcSetIdx, resrcIdx, schedReqIdx, srPeriodicity = 0;
373    uint16_t srOffset = 0;
374
375    ret = ROK;
376    if(pucchDedCfg->resrcSet && pucchDedCfg->resrc)
377    {
378       //Assuming one entry in the list
379       for(resrcSetIdx = 0; resrcSetIdx < pucchDedCfg->resrcSet->resrcSetToAddModListCount; resrcSetIdx++)
380       {
381          for(resrcIdx = 0; resrcIdx < pucchDedCfg->resrc->resrcToAddModListCount; resrcIdx++)
382          {
383             if(pucchDedCfg->resrcSet->resrcSetToAddModList[resrcSetIdx].resrcList[resrcSetIdx] ==\
384                pucchDedCfg->resrc->resrcToAddModList[resrcIdx].resrcId)
385             {
386                ulSchedPucch->intraFreqHop = pucchDedCfg->resrc->resrcToAddModList[resrcIdx].intraFreqHop;
387                ulSchedPucch->secondPrbHop = pucchDedCfg->resrc->resrcToAddModList[resrcIdx].secondPrbHop;
388                ulSchedPucch->fdAlloc.startPrb = pucchDedCfg->resrc->resrcToAddModList[resrcIdx].startPrb;
389                ulSchedPucch->pucchFormat = pucchDedCfg->resrc->resrcToAddModList[resrcIdx].pucchFormat;
390                ret = fillUlSchedPucchFormat(ulSchedPucch->pucchFormat, ulSchedPucch,\
391                         &pucchDedCfg->resrc->resrcToAddModList[resrcIdx], NULLP);
392                if(ret == RFAILED)
393                   return ret;
394             }
395          }
396       }
397    }
398    if(pucchDedCfg->format1)
399    {
400       memset(&ulSchedPucch->cmnFormatCfg, 0, sizeof(SchPucchFormatCfg));
401       ret = fillUlSchedPucchFormat(ulSchedPucch->pucchFormat, ulSchedPucch, NULLP, pucchDedCfg->format1);
402       if(ret == RFAILED)
403          return ret;
404    }
405    
406    /* setting SR and UCI flag */
407    if(pucchDedCfg->schedReq)
408    {
409       for(schedReqIdx = 0; schedReqIdx < pucchDedCfg->schedReq->schedAddModListCount; schedReqIdx++)
410       {
411          srPeriodicity = pucchDedCfg->schedReq->schedAddModList[schedReqIdx].periodicity;
412          srOffset      = pucchDedCfg->schedReq->schedAddModList[schedReqIdx].offset;
413          break;
414       }
415       if(((numSlots * slotInfo->sfn + slotInfo->slot - srOffset) % srPeriodicity) == 0)
416       {
417          ulSchedPucch->srFlag  = true;
418          ulSchedPucch->uciFlag = true;
419       }
420    }
421    return ret;
422 }
423
424 /**
425  * @brief Function to fill Pucch Resource Info
426  *
427  * @details
428  *
429  *     Function : fillPucchResourceInfo
430  *     
431  *     Function to fill Pucch Resource Info
432  *     
433  *  @param[in]  SchPucchInfo *schPucchInfo, Inst inst
434  *  @return  ROK/RFAILED
435  **/
436
437 uint16_t fillPucchResourceInfo(SchPucchInfo *schPucchInfo, Inst inst)
438 {
439    uint8_t ret = ROK, ueIdx = 0, pucchIdx = 0;
440    SchCellCb  *cell = schCb[inst].cells[inst];
441    SchPucchCfgCmn *pucchCfg = NULLP;
442    SchBwpParams *ulBwp = NULLP;
443
444    GET_UE_IDX(schPucchInfo->rnti, ueIdx);
445    if(cell->ueCb[ueIdx].ueCfg.spCellCfg.servCellCfg.initUlBwp.pucchCfgPres)
446    {
447       /* fill pucch dedicated cfg */
448       ret = fillUlSchedPucchDedicatedCfg(cell->numSlots,\
449        &cell->ueCb[ueIdx].ueCfg.spCellCfg.servCellCfg.initUlBwp.pucchCfg, &cell->slotInfo, schPucchInfo);
450       if(ret == RFAILED)
451       {
452          memset(schPucchInfo, 0, sizeof(SchPucchInfo));
453          DU_LOG("\nERROR  --> SCH : Filling PUCCH dedicated cfg failed at fillPucchResourceInfo()");
454          return ret;
455       }
456    }
457    else
458    {
459       /* fill pucch common cfg */
460       /* derive pucchResourceSet from schCellCfg */
461       pucchCfg = &cell->cellCfg.schInitialUlBwp.pucchCommon;
462       pucchIdx = pucchCfg->pucchResourceCommon;
463       ulBwp = &cell->cellCfg.schInitialUlBwp.bwp;
464       schPucchInfo->fdAlloc.startPrb = ulBwp->freqAlloc.startPrb + pucchResourceSet[pucchIdx][3];
465       schPucchInfo->fdAlloc.numPrb = PUCCH_NUM_PRB_FORMAT_0_1_4;
466       schPucchInfo->tdAlloc.startSymb = pucchResourceSet[pucchIdx][1];
467       schPucchInfo->tdAlloc.numSymb = pucchResourceSet[pucchIdx][2];
468       schPucchInfo->pucchFormat = pucchResourceSet[pucchIdx][0];
469
470       /* set SR and UCI flag to false */
471       schPucchInfo->srFlag  = true;
472       schPucchInfo->uciFlag = true;
473    }
474    /* set HARQ flag to true */
475    schPucchInfo->harqFlag = true;
476    schPucchInfo->numHarqBits = 1; /* 1 bit for HARQ */
477
478    return ROK;
479 }
480
481 /**
482  * @brief resource allocation for UL
483  *
484  * @details
485  *
486  *     Function : schUlResAlloc
487  *     
488  *     This function handles UL Resource allocation
489  *     
490  *  @param[in]  SchCellCb *cell, cellCb
491  *  @return  void
492  **/
493 uint8_t schUlResAlloc(SchCellCb *cell, Inst schInst)
494 {
495    int ret = ROK;
496    UlSchedInfo ulSchedInfo;
497    SchUlSlotInfo  *schUlSlotInfo = NULLP;
498    SlotIndInfo ulTimingInfo;
499    memset(&ulSchedInfo, 0, sizeof(UlSchedInfo));
500
501    /* add PHY delta */
502    ADD_DELTA_TO_TIME(cell->slotInfo,ulTimingInfo,PHY_DELTA_UL+SCHED_DELTA);
503
504    ulSchedInfo.cellId = cell->cellId;
505    ulSchedInfo.slotIndInfo.cellId = ulSchedInfo.cellId;
506    ulSchedInfo.slotIndInfo.sfn = ulTimingInfo.sfn;
507    ulSchedInfo.slotIndInfo.slot = ulTimingInfo.slot;
508
509    /* Schedule resources for PRACH */
510    if(cell->firstSib1Transmitted)
511     schPrachResAlloc(cell, &ulSchedInfo, ulTimingInfo);
512
513    schUlSlotInfo = cell->schUlSlotInfo[ulTimingInfo.slot]; 
514    if(schUlSlotInfo->schPuschInfo)
515    {
516       ulSchedInfo.crnti = schUlSlotInfo->schPuschInfo->crnti;
517       ulSchedInfo.dataType |= SCH_DATATYPE_PUSCH;
518       memcpy(&ulSchedInfo.schPuschInfo, schUlSlotInfo->schPuschInfo,
519             sizeof(SchPuschInfo));
520       SCH_FREE(schUlSlotInfo->schPuschInfo, sizeof(SchPuschInfo));
521       schUlSlotInfo->schPuschInfo = NULL;
522    }
523
524    if(schUlSlotInfo->pucchPres)
525    {
526       ulSchedInfo.dataType |= SCH_DATATYPE_UCI;
527       fillPucchResourceInfo(&schUlSlotInfo->schPucchInfo, schInst);
528       memcpy(&ulSchedInfo.schPucchInfo, &schUlSlotInfo->schPucchInfo,
529             sizeof(SchPucchInfo));
530       memset(&schUlSlotInfo->schPucchInfo, 0, sizeof(SchPucchInfo));
531    }
532
533    //send msg to MAC
534    ret = sendUlSchInfoToMac(&ulSchedInfo, schInst);
535    if(ret != ROK)
536    {
537       DU_LOG("\nERROR  -->  SCH : Sending UL Sch info from SCH to MAC failed");
538    }
539
540    schInitUlSlot(schUlSlotInfo);
541    return ret;
542 }
543
544 /*******************************************************************
545  *
546  * @brief Fills pdcch and pdsch info for msg4
547  *
548  * @details
549  *
550  *    Function : schDlRsrcAllocMsg4
551  *
552  *    Functionality:
553  *       Fills pdcch and pdsch info for msg4
554  *
555  * @params[in] 
556  * @return ROK     - success
557  *         RFAILED - failure
558  *
559  * ****************************************************************/
560 uint8_t schDlRsrcAllocMsg4(DlMsgAlloc *msg4Alloc, SchCellCb *cell, uint16_t slot, bool ssbPresent, bool sib1Present)
561 {
562    uint8_t coreset0Idx = 0;
563    uint8_t numRbs = 0;
564    uint8_t firstSymbol = 0;
565    uint8_t numSymbols = 0;
566    uint8_t offset = 0;
567    uint8_t offsetPointA;
568    uint8_t FreqDomainResource[6] = {0};
569    uint16_t tbSize = 0;
570    uint8_t numPdschSymbols = 11;            /* considering pdsch region from 3 to 13 */
571    uint8_t mcs = 4;                         /* MCS fixed to 4 */
572    SchBwpDlCfg *initialBwp;
573    FreqDomainAlloc *sib1PdschFreqAlloc = NULL;
574
575    PdcchCfg *pdcch = &msg4Alloc->dlMsgPdcchCfg;
576    PdschCfg *pdsch = &msg4Alloc->dlMsgPdschCfg;
577    BwpCfg *bwp = &msg4Alloc->bwp;
578
579    initialBwp   = &cell->cellCfg.schInitialDlBwp;
580    offsetPointA = cell->cellCfg.ssbSchCfg.ssbOffsetPointA;
581    coreset0Idx  = initialBwp->pdcchCommon.commonSearchSpace.coresetId;
582
583    /* derive the sib1 coreset0 params from table 13-1 spec 38.213 */
584    numRbs        = coresetIdxTable[coreset0Idx][1];
585    numSymbols    = coresetIdxTable[coreset0Idx][2];
586    offset        = coresetIdxTable[coreset0Idx][3];
587
588    /* calculate time domain parameters */
589    uint16_t mask = 0x2000;
590    for(firstSymbol=0; firstSymbol<14;firstSymbol++)
591    {
592       if(initialBwp->pdcchCommon.commonSearchSpace.monitoringSymbol & mask)
593          break;
594       else
595          mask = mask>>1;
596    }
597
598    /* calculate the PRBs */
599    freqDomRscAllocType0(((offsetPointA-offset)/6), (numRbs/6), FreqDomainResource);
600
601    /* fill BWP */
602    bwp->freqAlloc.numPrb   = initialBwp->bwp.freqAlloc.numPrb;
603    bwp->freqAlloc.startPrb = initialBwp->bwp.freqAlloc.startPrb;
604    bwp->subcarrierSpacing  = initialBwp->bwp.scs;
605    bwp->cyclicPrefix       = initialBwp->bwp.cyclicPrefix;
606
607    /* fill the PDCCH PDU */
608    pdcch->coresetCfg.startSymbolIndex = firstSymbol;
609    pdcch->coresetCfg.durationSymbols = numSymbols;
610    memcpy(pdcch->coresetCfg.freqDomainResource,FreqDomainResource,6);
611    pdcch->coresetCfg.cceRegMappingType = 1; /* coreset0 is always interleaved */
612    pdcch->coresetCfg.regBundleSize = 6;    /* spec-38.211 sec 7.3.2.2 */
613    pdcch->coresetCfg.interleaverSize = 2;  /* spec-38.211 sec 7.3.2.2 */
614    pdcch->coresetCfg.coreSetType = 0;
615    pdcch->coresetCfg.coreSetSize = numRbs;
616    pdcch->coresetCfg.shiftIndex = cell->cellCfg.phyCellId;
617    pdcch->coresetCfg.precoderGranularity = 0; /* sameAsRegBundle */
618    pdcch->numDlDci = 1;
619    pdcch->dci.rnti = cell->schDlSlotInfo[slot]->dlMsgInfo->crnti;
620    pdcch->dci.scramblingId = cell->cellCfg.phyCellId;
621    pdcch->dci.scramblingRnti = 0;
622    pdcch->dci.cceIndex = 4; /* considering SIB1 is sent at cce 0-1-2-3 */
623    pdcch->dci.aggregLevel = 4;
624    pdcch->dci.beamPdcchInfo.numPrgs = 1;
625    pdcch->dci.beamPdcchInfo.prgSize = 1;
626    pdcch->dci.beamPdcchInfo.digBfInterfaces = 0;
627    pdcch->dci.beamPdcchInfo.prg[0].pmIdx = 0;
628    pdcch->dci.beamPdcchInfo.prg[0].beamIdx[0] = 0;
629    pdcch->dci.txPdcchPower.powerValue = 0;
630    pdcch->dci.txPdcchPower.powerControlOffsetSS = 0;
631
632    /* fill the PDSCH PDU */
633    uint8_t cwCount = 0;
634    pdsch->pduBitmap = 0; /* PTRS and CBG params are excluded */
635    pdsch->rnti = cell->schDlSlotInfo[slot]->dlMsgInfo->crnti;
636    pdsch->pduIndex = 0;
637    pdsch->numCodewords = 1;
638    for(cwCount = 0; cwCount < pdsch->numCodewords; cwCount++)
639    {
640       pdsch->codeword[cwCount].targetCodeRate = 308;
641       pdsch->codeword[cwCount].qamModOrder = 2;
642       pdsch->codeword[cwCount].mcsIndex = mcs; /* mcs configured to 4 */
643       pdsch->codeword[cwCount].mcsTable = 0; /* notqam256 */
644       pdsch->codeword[cwCount].rvIndex = 0;
645       tbSize = schCalcTbSize(msg4Alloc->dlMsgInfo.dlMsgPduLen + TX_PAYLOAD_HDR_LEN); /* MSG4 size + FAPI header size*/
646       pdsch->codeword[cwCount].tbSize = tbSize;
647    }
648    pdsch->dataScramblingId = cell->cellCfg.phyCellId;
649    pdsch->numLayers = 1;
650    pdsch->transmissionScheme = 0;
651    pdsch->refPoint = 0;
652    pdsch->dmrs.dlDmrsSymbPos = 4; /* Bitmap value 00000000000100 i.e. using 3rd symbol for PDSCH DMRS */
653    pdsch->dmrs.dmrsConfigType = 0; /* type-1 */
654    pdsch->dmrs.dlDmrsScramblingId = cell->cellCfg.phyCellId;
655    pdsch->dmrs.scid = 0;
656    pdsch->dmrs.numDmrsCdmGrpsNoData = 1;
657    pdsch->dmrs.dmrsPorts = 0;
658    pdsch->dmrs.mappingType      = DMRS_MAP_TYPE_A; /* Setting to Type-A */
659    pdsch->dmrs.nrOfDmrsSymbols  = NUM_DMRS_SYMBOLS;
660    pdsch->dmrs.dmrsAddPos       = DMRS_ADDITIONAL_POS;
661    pdsch->pdschFreqAlloc.resourceAllocType = 1; /* RAT type-1 RIV format */
662    /* The RB numbering starts from coreset0 */ 
663    pdsch->pdschFreqAlloc.freqAlloc.startPrb = PDSCH_START_RB;
664    if(ssbPresent)
665    {
666       /* PDSCH is always above SSB */
667       pdsch->pdschFreqAlloc.freqAlloc.startPrb = offsetPointA + SCH_SSB_NUM_PRB + 1;
668    }
669    if(sib1Present)
670    {
671       /* Must not overlap with SIB1 */
672       sib1PdschFreqAlloc = &cell->cellCfg.sib1SchCfg.sib1PdschCfg.pdschFreqAlloc.freqAlloc;
673       pdsch->pdschFreqAlloc.freqAlloc.startPrb = sib1PdschFreqAlloc->startPrb + sib1PdschFreqAlloc->numPrb + 1; 
674    }
675    pdsch->pdschFreqAlloc.freqAlloc.numPrb = schCalcNumPrb(tbSize, mcs, numPdschSymbols);
676    pdsch->pdschFreqAlloc.vrbPrbMapping = 0; /* non-interleaved */
677    pdsch->pdschTimeAlloc.timeAlloc.startSymb = 3; /* spec-38.214, Table 5.1.2.1-1 */
678    pdsch->pdschTimeAlloc.timeAlloc.numSymb = numPdschSymbols;
679    pdsch->beamPdschInfo.numPrgs = 1;
680    pdsch->beamPdschInfo.prgSize = 1;
681    pdsch->beamPdschInfo.digBfInterfaces = 0;
682    pdsch->beamPdschInfo.prg[0].pmIdx = 0;
683    pdsch->beamPdschInfo.prg[0].beamIdx[0] = 0;
684    pdsch->txPdschPower.powerControlOffset = 0;
685    pdsch->txPdschPower.powerControlOffsetSS = 0;
686
687    pdcch->dci.pdschCfg = pdsch;
688
689    return ROK;
690 }
691  
692 uint16_t schAllocPucchResource(SchCellCb *cell, uint16_t crnti, uint16_t slot)
693 {
694    uint8_t k1 = SCH_DEFAULT_K1, ueIdx = 0, dlToUlAckIdx;
695    uint16_t pucchSlot = 0;
696    SchUlSlotInfo  *schUlSlotInfo = NULLP;
697    SchPucchCfg    *schPucchCfg = NULLP;
698
699    GET_UE_IDX(crnti, ueIdx);
700    if(cell->ueCb[ueIdx].ueCfg.spCellCfg.servCellCfg.initUlBwp.pucchCfgPres)
701    {
702       schPucchCfg = &(cell->ueCb[ueIdx].ueCfg.spCellCfg.servCellCfg.initUlBwp.pucchCfg);
703      if(schPucchCfg->dlDataToUlAck)
704      {
705         for(dlToUlAckIdx = 0; dlToUlAckIdx < schPucchCfg->dlDataToUlAck->dlDataToUlAckListCount; dlToUlAckIdx++)
706         {
707            //For now considering only the first value in the list
708            k1 = schPucchCfg->dlDataToUlAck->dlDataToUlAckList[dlToUlAckIdx];
709            break;
710         }
711      }
712    }
713    
714    pucchSlot = (slot + k1)  % cell->numSlots;
715    schUlSlotInfo = cell->schUlSlotInfo[pucchSlot];
716    memset(&schUlSlotInfo->schPucchInfo, 0, sizeof(SchPucchInfo));
717
718    schUlSlotInfo->pucchPres = true;
719    schUlSlotInfo->schPucchInfo.rnti = crnti;
720
721    return ROK;
722 }
723
724 /*******************************************************************
725  *
726  * @brief Fills pdcch and pdsch info for dedicated DL msg
727  *
728  * @details
729  *
730  *    Function : schDlRsrcAllocDlMsg
731  *
732  *    Functionality:
733  *       Fills pdcch and pdsch info for dl msg
734  *
735  * @params[in]
736  * @return ROK     - success
737  *         RFAILED - failure
738  *
739  * ****************************************************************/
740 uint8_t schDlRsrcAllocDlMsg(DlMsgAlloc *dlMsgAlloc, SchCellCb *cell, uint16_t crnti,
741       uint32_t *accumalatedSize, uint16_t slot)
742 {
743    uint8_t ueIdx;
744    uint16_t tbSize = 0;
745    PdcchCfg *pdcch = NULLP;
746    PdschCfg *pdsch = NULLP;
747    BwpCfg *bwp = NULLP;
748    SchUeCb ueCb;
749    SchControlRsrcSet coreset1;
750    SchPdschConfig pdschCfg;
751
752    pdcch = &dlMsgAlloc->dlMsgPdcchCfg;
753    pdsch = &dlMsgAlloc->dlMsgPdschCfg;
754    bwp = &dlMsgAlloc->bwp;
755
756    GET_UE_IDX(crnti, ueIdx);
757    ueCb  = cell->ueCb[ueIdx-1];
758    coreset1 = ueCb.ueCfg.spCellCfg.servCellCfg.initDlBwp.pdcchCfg.cRSetToAddModList[0];
759    pdschCfg = ueCb.ueCfg.spCellCfg.servCellCfg.initDlBwp.pdschCfg;
760
761    /* fill BWP */
762    bwp->freqAlloc.numPrb = MAX_NUM_RB;
763    bwp->freqAlloc.startPrb = 0;
764    bwp->subcarrierSpacing = cell->cellCfg.sib1SchCfg.bwp.subcarrierSpacing;
765    bwp->cyclicPrefix = cell->cellCfg.sib1SchCfg.bwp.cyclicPrefix;
766
767    /* fill the PDCCH PDU */
768    //Considering coreset1 also starts from same symbol as coreset0
769    pdcch->coresetCfg.startSymbolIndex = coresetIdxTable[0][3];
770    pdcch->coresetCfg.durationSymbols = coreset1.duration;
771    memcpy(pdcch->coresetCfg.freqDomainResource, coreset1.freqDomainRsrc, FREQ_DOM_RSRC_SIZE);
772    pdcch->coresetCfg.cceRegMappingType = coreset1.cceRegMappingType; /* non-interleaved */
773    pdcch->coresetCfg.regBundleSize = 6;   /* must be 6 for non-interleaved */
774    pdcch->coresetCfg.interleaverSize = 0; /* NA for non-interleaved */
775    pdcch->coresetCfg.coreSetType = 1; /* non PBCH coreset */
776    //Considering number of RBs in coreset1 is same as coreset0
777    pdcch->coresetCfg.coreSetSize = coresetIdxTable[0][1];
778    pdcch->coresetCfg.shiftIndex = cell->cellCfg.phyCellId;
779    pdcch->coresetCfg.precoderGranularity =  coreset1.precoderGranularity;
780    pdcch->numDlDci = 1;
781    pdcch->dci.rnti = ueCb.crnti;
782    pdcch->dci.scramblingId = cell->cellCfg.phyCellId;
783    pdcch->dci.scramblingRnti = 0;
784    pdcch->dci.cceIndex = 0; /* 0-3 for UL and 4-7 for DL */
785    pdcch->dci.aggregLevel = 4;
786    pdcch->dci.beamPdcchInfo.numPrgs = 1;
787    pdcch->dci.beamPdcchInfo.prgSize = 1;
788    pdcch->dci.beamPdcchInfo.digBfInterfaces = 0;
789    pdcch->dci.beamPdcchInfo.prg[0].pmIdx = 0;
790    pdcch->dci.beamPdcchInfo.prg[0].beamIdx[0] = 0;
791    pdcch->dci.txPdcchPower.powerValue = 0;
792    pdcch->dci.txPdcchPower.powerControlOffsetSS = 0;
793
794    /* fill the PDSCH PDU */
795    uint8_t cwCount = 0;
796    pdsch->pduBitmap = 0; /* PTRS and CBG params are excluded */
797    pdsch->rnti = ueCb.crnti;
798    pdsch->pduIndex = 0;
799    pdsch->numCodewords = 1;
800    for(cwCount = 0; cwCount < pdsch->numCodewords; cwCount++)
801    {
802       pdsch->codeword[cwCount].targetCodeRate = 308;
803       pdsch->codeword[cwCount].qamModOrder = ueCb.ueCfg.dlModInfo.modOrder;
804       pdsch->codeword[cwCount].mcsIndex = ueCb.ueCfg.dlModInfo.mcsIndex;
805       pdsch->codeword[cwCount].mcsTable = ueCb.ueCfg.dlModInfo.mcsTable;
806       pdsch->codeword[cwCount].rvIndex = 0;
807       tbSize = schCalcTbSize(*accumalatedSize + TX_PAYLOAD_HDR_LEN);
808       if(tbSize < *accumalatedSize)
809          *accumalatedSize = tbSize - TX_PAYLOAD_HDR_LEN;
810       pdsch->codeword[cwCount].tbSize = tbSize;
811    }
812    pdsch->dataScramblingId = cell->cellCfg.phyCellId;
813    pdsch->numLayers = 1;
814    pdsch->transmissionScheme = 0;
815    pdsch->refPoint = 0;
816    pdsch->dmrs.dlDmrsSymbPos = 4; /* Bitmap value 00000000000100 i.e. using 3rd symbol for PDSCH DMRS */
817    pdsch->dmrs.dmrsConfigType = 0; /* type-1 */
818    pdsch->dmrs.dlDmrsScramblingId = cell->cellCfg.phyCellId;
819    pdsch->dmrs.scid = 0;
820    pdsch->dmrs.numDmrsCdmGrpsNoData = 1;
821    pdsch->dmrs.dmrsPorts = 0;
822    pdsch->dmrs.mappingType      = DMRS_MAP_TYPE_A; /* Setting to Type-A */
823    pdsch->dmrs.nrOfDmrsSymbols  = NUM_DMRS_SYMBOLS;
824    pdsch->dmrs.dmrsAddPos       = pdschCfg.dmrsDlCfgForPdschMapTypeA.addPos;
825    pdsch->pdschFreqAlloc.resourceAllocType = 1; /* RAT type-1 RIV format */
826    pdsch->pdschFreqAlloc.freqAlloc.startPrb = PDSCH_START_RB;
827    pdsch->pdschFreqAlloc.freqAlloc.numPrb = schCalcNumPrb(tbSize, ueCb.ueCfg.dlModInfo.mcsIndex, \
828                    pdschCfg.timeDomRsrcAllociList[0].symbolLength);
829    pdsch->pdschFreqAlloc.vrbPrbMapping = 0; /* non-interleaved */
830    pdsch->pdschTimeAlloc.timeAlloc.startSymb = pdschCfg.timeDomRsrcAllociList[0].startSymbol;
831    pdsch->pdschTimeAlloc.timeAlloc.numSymb = pdschCfg.timeDomRsrcAllociList[0].symbolLength;
832    pdsch->beamPdschInfo.numPrgs = 1;
833    pdsch->beamPdschInfo.prgSize = 1;
834    pdsch->beamPdschInfo.digBfInterfaces = 0;
835    pdsch->beamPdschInfo.prg[0].pmIdx = 0;
836    pdsch->beamPdschInfo.prg[0].beamIdx[0] = 0;
837    pdsch->txPdschPower.powerControlOffset = 0;
838    pdsch->txPdschPower.powerControlOffsetSS = 0;
839
840    pdcch->dci.pdschCfg = pdsch;
841    return ROK;
842 }
843
844 /**********************************************************************
845   End of file
846  **********************************************************************/
847