1 /*******************************************************************************
2 ################################################################################
3 # Copyright (c) [2017-2019] [Radisys] #
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 #
9 # http://www.apache.org/licenses/LICENSE-2.0 #
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 *******************************************************************************/
19 /************************************************************************
25 Desc: C source code for Entry point fucntions
29 **********************************************************************/
31 /** @file sch_common.c
32 @brief This module performs common scheduling
34 #include "common_def.h"
41 #include "du_app_mac_inf.h"
42 #include "mac_sch_interface.h"
44 #include "sch_utils.h"
46 extern SchCb schCb[SCH_MAX_INST];
47 extern uint16_t prachCfgIdxTable[MAX_PRACH_CONFIG_IDX][8];
48 extern uint16_t numRbForPrachTable[MAX_RACH_NUM_RB_IDX][5];
49 extern uint8_t pucchResourceSet[MAX_PUCCH_RES_SET_IDX][4];
51 SchMacUlSchInfoFunc schMacUlSchInfoOpts[] =
59 * @brief common resource allocation for SSB
63 * Function : schBroadcastAlloc
65 * This function handles common scheduling for DL
67 * @param[in] SchCellCb *cell, cell cb
68 * @param[in] DlBrdcstAlloc *dlBrdcstAlloc, DL brdcst allocation
71 uint8_t schBroadcastAlloc(SchCellCb *cell, DlBrdcstAlloc *dlBrdcstAlloc,
75 uint8_t ssbStartPrb, ssbStartSymb, idx;
76 SchDlSlotInfo *schDlSlotInfo;
79 schDlSlotInfo = cell->schDlSlotInfo[slot];
80 if(dlBrdcstAlloc->ssbTrans)
82 ssbStartPrb = cell->cellCfg.ssbSchCfg.ssbOffsetPointA;
83 ssbStartSymb = cell->ssbStartSymbArr[dlBrdcstAlloc->ssbIdxSupported-1]; /*since we are
84 supporting only 1 ssb beam */
86 /* Assign interface structure */
87 for(idx=0; idx<dlBrdcstAlloc->ssbIdxSupported; idx++)
90 ssbInfo.fdAlloc.startPrb = ssbStartPrb;
91 ssbInfo.fdAlloc.numPrb = SCH_SSB_NUM_PRB;
92 ssbInfo.tdAlloc.startSymb = ssbStartSymb;
93 ssbInfo.tdAlloc.numSymb = SCH_SSB_NUM_SYMB;
94 dlBrdcstAlloc->ssbInfo[idx] = ssbInfo;
95 schDlSlotInfo->ssbInfo[idx] = ssbInfo;
98 schDlSlotInfo->ssbPres = true;
99 schDlSlotInfo->ssbIdxSupported = dlBrdcstAlloc->ssbIdxSupported;
100 for(idx=ssbStartSymb; idx<ssbStartSymb+SCH_SSB_NUM_SYMB; idx++)
102 schDlSlotInfo->assignedPrb[idx] = ssbStartPrb + SCH_SSB_NUM_PRB + 1; /* +1 for kSsb */
106 /* SIB1 allocation */
107 if(dlBrdcstAlloc->sib1Trans)
109 schDlSlotInfo->sib1Pres = true;
110 for(idx=0; idx<SCH_SYMBOL_PER_SLOT; idx++)
112 schDlSlotInfo->assignedPrb[idx] = ssbStartPrb + SCH_SSB_NUM_PRB + 1 + 10; /* 10 PRBs for sib1 */
114 memcpy(&dlBrdcstAlloc->sib1Alloc.bwp, &cell->cellCfg.sib1SchCfg.bwp, sizeof(BwpCfg));
115 memcpy(&dlBrdcstAlloc->sib1Alloc.sib1PdcchCfg, &cell->cellCfg.sib1SchCfg.sib1PdcchCfg, sizeof(PdcchCfg));
116 memcpy(&dlBrdcstAlloc->sib1Alloc.sib1PdschCfg, &cell->cellCfg.sib1SchCfg.sib1PdschCfg, sizeof(PdschCfg));
121 /*******************************************************************
123 * @brief Handles sending UL scheduler info to MAC
127 * Function : sendUlSchInfoToMac
130 * Sends UL Sch info to MAC from SCH
133 * @return ROK - success
136 * ****************************************************************/
137 int sendUlSchInfoToMac(UlSchedInfo *ulSchedInfo, Inst inst)
141 memset(&pst, 0, sizeof(Pst));
142 SCH_FILL_RSP_PST(pst, inst);
143 pst.event = EVENT_UL_SCH_INFO;
145 return(*schMacUlSchInfoOpts[pst.selector])(&pst, ulSchedInfo);
148 * @brief resource allocation for PRACH
152 * Function : schPrachResAlloc
154 * This function handles PRACH allocation
156 * @param[in] SchCellCb *cell, cell cb
157 * @param[in] UlSchedInfo *ulSchedInfo, UL scheduling info
160 void schPrachResAlloc(SchCellCb *cell, UlSchedInfo *ulSchedInfo, SlotIndInfo prachOccasionTimingInfo)
163 uint8_t numPrachRb = 0;
165 uint8_t freqStart = 0;
166 uint8_t prachCfgIdx = 0;
167 uint8_t prachFormat = 0;
170 uint16_t prachSubframe = 0;
171 uint8_t prachStartSymbol = 0;
172 uint8_t prachOcas = 0;
173 uint8_t dataType = 0;
175 SchUlSlotInfo *schUlSlotInfo = NULLP;
177 puschScs = cell->cellCfg.schInitialUlBwp.bwp.scs;
178 schUlSlotInfo = cell->schUlSlotInfo[prachOccasionTimingInfo.slot];
179 prachCfgIdx = cell->cellCfg.schRachCfg.prachCfgIdx;
181 /* derive the prachCfgIdx table paramters */
182 x = prachCfgIdxTable[prachCfgIdx][1];
183 y = prachCfgIdxTable[prachCfgIdx][2];
184 prachSubframe = prachCfgIdxTable[prachCfgIdx][3];
186 if((prachOccasionTimingInfo.sfn%x) == y)
188 /* check for subFrame number */
189 if ((1 << prachOccasionTimingInfo.slot) & prachSubframe)
191 /* prach ocassion present in this subframe */
193 prachFormat = prachCfgIdxTable[prachCfgIdx][0];
194 prachStartSymbol = prachCfgIdxTable[prachCfgIdx][4];
195 prachOcas = prachCfgIdxTable[prachCfgIdx][6];
197 /* freq domain resource determination for RACH*/
198 freqStart = cell->cellCfg.schRachCfg.msg1FreqStart;
199 /* numRa determined as 𝑛 belonging {0,1,.., M − 1},
200 * where M is given by msg1Fdm */
201 numRa = (cell->cellCfg.schRachCfg.msg1Fdm - 1);
202 for(idx=0; idx<MAX_RACH_NUM_RB_IDX; idx++)
204 if(numRbForPrachTable[idx][0] == cell->cellCfg.schRachCfg.rootSeqLen)
206 if(numRbForPrachTable[idx][1] == cell->cellCfg.schRachCfg.prachSubcSpacing)
208 if(numRbForPrachTable[idx][2] == puschScs)
215 numPrachRb = numRbForPrachTable[idx][3];
216 dataType |= SCH_DATATYPE_PRACH;
217 /* Considering first slot in the frame for PRACH */
219 schUlSlotInfo->assignedPrb[idx] = freqStart+numPrachRb;
221 ulSchedInfo->dataType = dataType;
223 ulSchedInfo->prachSchInfo.numPrachOcas = prachOcas;
224 ulSchedInfo->prachSchInfo.prachFormat = prachFormat;
225 ulSchedInfo->prachSchInfo.numRa = numRa;
226 ulSchedInfo->prachSchInfo.prachStartSymb = prachStartSymbol;
230 uint16_t fillPucchResourceInfo(SchPucchInfo *schPucchInfo, Inst inst)
232 /* derive pucchResourceSet from schCellCfg */
233 SchCellCb *cell = schCb[inst].cells[inst];
234 SchPucchCfgCmn *pucchCfg = &cell->cellCfg.schInitialUlBwp.pucchCommon;
235 uint8_t pucchIdx = pucchCfg->pucchResourceCommon;
236 SchBwpParams *ulBwp = &cell->cellCfg.schInitialUlBwp.bwp;
238 schPucchInfo->fdAlloc.startPrb = ulBwp->freqAlloc.startPrb + pucchResourceSet[pucchIdx][3];
239 schPucchInfo->fdAlloc.numPrb = PUCCH_NUM_PRB_FORMAT_0;
240 schPucchInfo->tdAlloc.startSymb = pucchResourceSet[pucchIdx][1];
241 schPucchInfo->tdAlloc.numSymb = pucchResourceSet[pucchIdx][2];
242 schPucchInfo->pucchFormat = pucchResourceSet[pucchIdx][0];
244 /* set HARQ flag to true */
245 schPucchInfo->harqFlag = true;
246 schPucchInfo->numHarqBits = 1; /* 1 bit for HARQ */
248 /* set SR and UCI flag to false */
249 schPucchInfo->srFlag = false;
250 schPucchInfo->uciFlag = false;
256 * @brief resource allocation for UL
260 * Function : schUlResAlloc
262 * This function handles UL Resource allocation
264 * @param[in] SchCellCb *cell, cellCb
267 uint8_t schUlResAlloc(SchCellCb *cell, Inst schInst)
270 UlSchedInfo ulSchedInfo;
271 SchUlSlotInfo *schUlSlotInfo = NULLP;
272 SlotIndInfo ulTimingInfo;
273 memset(&ulSchedInfo, 0, sizeof(UlSchedInfo));
276 ADD_DELTA_TO_TIME(cell->slotInfo,ulTimingInfo,PHY_DELTA+SCHED_DELTA);
278 ulSchedInfo.cellId = cell->cellId;
279 ulSchedInfo.slotIndInfo.sfn = ulTimingInfo.sfn;
280 ulSchedInfo.slotIndInfo.slot = ulTimingInfo.slot;
282 /* Schedule resources for PRACH */
283 schPrachResAlloc(cell, &ulSchedInfo, ulTimingInfo);
285 schUlSlotInfo = cell->schUlSlotInfo[ulTimingInfo.slot];
286 if(schUlSlotInfo->schPuschInfo)
288 ulSchedInfo.crnti = cell->raCb[0].tcrnti;
289 ulSchedInfo.dataType |= SCH_DATATYPE_PUSCH;
290 memcpy(&ulSchedInfo.schPuschInfo, schUlSlotInfo->schPuschInfo,
291 sizeof(SchPuschInfo));
292 SCH_FREE(schUlSlotInfo->schPuschInfo, sizeof(SchPuschInfo));
293 schUlSlotInfo->schPuschInfo = NULL;
296 if(schUlSlotInfo->pucchPres)
298 ulSchedInfo.dataType |= SCH_DATATYPE_UCI;
299 fillPucchResourceInfo(&schUlSlotInfo->schPucchInfo, schInst);
300 memcpy(&ulSchedInfo.schPucchInfo, &schUlSlotInfo->schPucchInfo,
301 sizeof(SchPucchInfo));
302 memset(&schUlSlotInfo->schPucchInfo, 0, sizeof(SchPucchInfo));
306 ret = sendUlSchInfoToMac(&ulSchedInfo, schInst);
309 DU_LOG("\nSending UL Sch info from SCH to MAC failed");
311 memset(cell->schUlSlotInfo[ulTimingInfo.slot], 0, sizeof(SchUlSlotInfo));
316 /*******************************************************************
318 * @brief Fills pdcch and pdsch info for msg4
322 * Function : schDlRsrcAllocMsg4
325 * Fills pdcch and pdsch info for msg4
328 * @return ROK - success
331 * ****************************************************************/
332 uint8_t schDlRsrcAllocMsg4(Msg4Alloc *msg4Alloc, SchCellCb *cell, uint16_t slot)
334 uint8_t coreset0Idx = 0;
336 uint8_t firstSymbol = 0;
337 uint8_t numSymbols = 0;
339 uint8_t offsetPointA;
340 uint8_t FreqDomainResource[6] = {0};
342 uint8_t numPdschSymbols = 12; /* considering pdsch region from 2 to 13 */
343 uint8_t mcs = 4; /* MCS fixed to 4 */
344 SchBwpDlCfg *initialBwp;
346 PdcchCfg *pdcch = &msg4Alloc->msg4PdcchCfg;
347 PdschCfg *pdsch = &msg4Alloc->msg4PdschCfg;
348 BwpCfg *bwp = &msg4Alloc->bwp;
350 initialBwp = &cell->cellCfg.schInitialDlBwp;
351 offsetPointA = cell->cellCfg.ssbSchCfg.ssbOffsetPointA;
352 coreset0Idx = initialBwp->pdcchCommon.commonSearchSpace.coresetId;
354 /* derive the sib1 coreset0 params from table 13-1 spec 38.213 */
355 numRbs = coresetIdxTable[coreset0Idx][1];
356 numSymbols = coresetIdxTable[coreset0Idx][2];
357 offset = coresetIdxTable[coreset0Idx][3];
359 /* calculate time domain parameters */
360 uint16_t mask = 0x2000;
361 for(firstSymbol=0; firstSymbol<14;firstSymbol++)
363 if(initialBwp->pdcchCommon.commonSearchSpace.monitoringSymbol & mask)
369 /* calculate the PRBs */
370 schAllocFreqDomRscType0(((offsetPointA-offset)/6), (numRbs/6), FreqDomainResource);
373 bwp->freqAlloc.numPrb = initialBwp->bwp.freqAlloc.numPrb;
374 bwp->freqAlloc.startPrb = initialBwp->bwp.freqAlloc.startPrb;
375 bwp->subcarrierSpacing = initialBwp->bwp.scs;
376 bwp->cyclicPrefix = initialBwp->bwp.cyclicPrefix;
378 /* fill the PDCCH PDU */
379 pdcch->coreset0Cfg.startSymbolIndex = firstSymbol;
380 pdcch->coreset0Cfg.durationSymbols = numSymbols;
381 memcpy(pdcch->coreset0Cfg.freqDomainResource,FreqDomainResource,6);
382 pdcch->coreset0Cfg.cceRegMappingType = 1; /* coreset0 is always interleaved */
383 pdcch->coreset0Cfg.regBundleSize = 6; /* spec-38.211 sec 7.3.2.2 */
384 pdcch->coreset0Cfg.interleaverSize = 2; /* spec-38.211 sec 7.3.2.2 */
385 pdcch->coreset0Cfg.coreSetType = 0;
386 pdcch->coreset0Cfg.coreSet0Size = numRbs;
387 pdcch->coreset0Cfg.shiftIndex = cell->cellCfg.phyCellId;
388 pdcch->coreset0Cfg.precoderGranularity = 0; /* sameAsRegBundle */
390 pdcch->dci.rnti = cell->schDlSlotInfo[slot]->msg4Info->crnti;
391 pdcch->dci.scramblingId = cell->cellCfg.phyCellId;
392 pdcch->dci.scramblingRnti = 0;
393 pdcch->dci.cceIndex = 4; /* considering SIB1 is sent at cce 0-1-2-3 */
394 pdcch->dci.aggregLevel = 4;
395 pdcch->dci.beamPdcchInfo.numPrgs = 1;
396 pdcch->dci.beamPdcchInfo.prgSize = 1;
397 pdcch->dci.beamPdcchInfo.digBfInterfaces = 0;
398 pdcch->dci.beamPdcchInfo.prg[0].pmIdx = 0;
399 pdcch->dci.beamPdcchInfo.prg[0].beamIdx[0] = 0;
400 pdcch->dci.txPdcchPower.powerValue = 0;
401 pdcch->dci.txPdcchPower.powerControlOffsetSS = 0;
403 /* fill the PDSCH PDU */
405 pdsch->pduBitmap = 0; /* PTRS and CBG params are excluded */
406 pdsch->rnti = cell->schDlSlotInfo[slot]->msg4Info->crnti;
408 pdsch->numCodewords = 1;
409 for(cwCount = 0; cwCount < pdsch->numCodewords; cwCount++)
411 pdsch->codeword[cwCount].targetCodeRate = 308;
412 pdsch->codeword[cwCount].qamModOrder = 2;
413 pdsch->codeword[cwCount].mcsIndex = mcs; /* mcs configured to 4 */
414 pdsch->codeword[cwCount].mcsTable = 0; /* notqam256 */
415 pdsch->codeword[cwCount].rvIndex = 0;
416 /* 38.214: Table 5.1.3.2-1, divided by 8 to get the value in bytes */
417 /* TODO : Calculate tbSize based of DL CCCH msg size */
418 tbSize = schCalcTbSize(2664/8); /* send this value to the func in bytes when considering msg4 size */
419 pdsch->codeword[cwCount].tbSize = tbSize;
421 pdsch->dataScramblingId = cell->cellCfg.phyCellId;
422 pdsch->numLayers = 1;
423 pdsch->transmissionScheme = 0;
425 pdsch->dmrs.dlDmrsSymbPos = 2;
426 pdsch->dmrs.dmrsConfigType = 0; /* type-1 */
427 pdsch->dmrs.dlDmrsScramblingId = cell->cellCfg.phyCellId;
428 pdsch->dmrs.scid = 0;
429 pdsch->dmrs.numDmrsCdmGrpsNoData = 1;
430 pdsch->dmrs.dmrsPorts = 0;
431 pdsch->dmrs.mappingType = DMRS_MAP_TYPE_A; /* Setting to Type-A */
432 pdsch->dmrs.nrOfDmrsSymbols = NUM_DMRS_SYMBOLS;
433 pdsch->dmrs.dmrsAddPos = DMRS_ADDITIONAL_POS;
434 pdsch->pdschFreqAlloc.resourceAllocType = 1; /* RAT type-1 RIV format */
435 /* the RB numbering starts from coreset0, and PDSCH is always above SSB */
436 pdsch->pdschFreqAlloc.freqAlloc.startPrb = offset + SCH_SSB_NUM_PRB;
437 pdsch->pdschFreqAlloc.freqAlloc.numPrb = schCalcNumPrb(tbSize,mcs,numPdschSymbols);
438 pdsch->pdschFreqAlloc.vrbPrbMapping = 0; /* non-interleaved */
439 pdsch->pdschTimeAlloc.timeAlloc.startSymb = 2; /* spec-38.214, Table 5.1.2.1-1 */
440 pdsch->pdschTimeAlloc.timeAlloc.numSymb = 12;
441 pdsch->beamPdschInfo.numPrgs = 1;
442 pdsch->beamPdschInfo.prgSize = 1;
443 pdsch->beamPdschInfo.digBfInterfaces = 0;
444 pdsch->beamPdschInfo.prg[0].pmIdx = 0;
445 pdsch->beamPdschInfo.prg[0].beamIdx[0] = 0;
446 pdsch->txPdschPower.powerControlOffset = 0;
447 pdsch->txPdschPower.powerControlOffsetSS = 0;
449 pdcch->dci.pdschCfg = pdsch;
453 uint16_t schAllocPucchResource(SchCellCb *cell,uint16_t crnti, uint16_t slot)
455 uint8_t k1 = 1; /* dl-DataToUL-ACK RRC parameter will received from DU-APP msg4-pucch config */
456 uint16_t pucchSlot = (slot + k1) % SCH_NUM_SLOTS;
457 SchUlSlotInfo *schUlSlotInfo = NULLP;
459 schUlSlotInfo = cell->schUlSlotInfo[pucchSlot];
460 memset(&schUlSlotInfo->schPucchInfo, 0, sizeof(SchPucchInfo));
462 schUlSlotInfo->pucchPres = true;
463 schUlSlotInfo->schPucchInfo.rnti = crnti;
468 /**********************************************************************
470 **********************************************************************/