X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2F5gnrsch%2Fsch_utils.c;h=5e014f91f4f53318b8005eb7bf21bede523ad2b6;hb=9665386af091888e0e62b83ce91c25c973eb33aa;hp=3b9ef66b7f23f3ca86822bf6fea5069b1efe9e9e;hpb=fdf994581c1b672158c911a9a5f7a4191832c695;p=o-du%2Fl2.git diff --git a/src/5gnrsch/sch_utils.c b/src/5gnrsch/sch_utils.c index 3b9ef66b7..5e014f91f 100644 --- a/src/5gnrsch/sch_utils.c +++ b/src/5gnrsch/sch_utils.c @@ -44,7 +44,30 @@ #include "sch_utils.h" #include "math.h" -/* spec-38.213 Table 13-1 */ +#ifdef NR_TDD +/* spec-38.213 Table 13-4 for SCS=30KHz */ +/* Note: Picking Table 13-4 and not 13-6 since band supported is n78 and + * corresponding minimum B/W is 10 MHz */ +int8_t coresetIdxTable[MAX_CORESET_INDEX][4] = { +{ 1, 24, 2, 0}, /* index 0 */ +{ 1, 24, 2, 1}, /* index 1 */ +{ 1, 24, 2, 2}, /* index 2 */ +{ 1, 24, 2, 3}, /* index 3 */ +{ 1, 24, 2, 4}, /* index 4 */ +{ 1, 24, 3, 0}, /* index 5 */ +{ 1, 24, 3, 1}, /* index 6 */ +{ 1, 24, 3, 2}, /* index 7 */ +{ 1, 24, 3, 3}, /* index 8 */ +{ 1, 24, 3, 4}, /* index 9 */ +{ 1, 48, 1, 12}, /* index 10 */ +{ 1, 48, 1, 14}, /* index 11 */ +{ 1, 48, 1, 16}, /* index 12 */ +{ 1, 48, 2, 12}, /* index 13 */ +{ 1, 48, 2, 14}, /* index 14 */ +{ 1, 48, 2, 16}, /* index 15 */ +}; +#else +/* spec-38.213 Table 13-1 for SCS=15KHz */ int8_t coresetIdxTable[MAX_CORESET_INDEX][4] = { { 1, 24, 2, 0}, /* index 0 */ { 1, 24, 2, 2}, /* index 1 */ @@ -63,6 +86,7 @@ int8_t coresetIdxTable[MAX_CORESET_INDEX][4] = { { 1, 96, 3, 38}, /* index 14 */ { 0, 0, 0, 0}, /* index 15 */ }; +#endif /* spec-38.213 Table 13-11 */ /* m value is scaled to 2, when using it in formula, divide by 2 */ @@ -514,8 +538,8 @@ uint16_t schCalcNumPrb(uint16_t tbSize, uint16_t mcs, uint8_t numSymbols) tbSize = tbSize * 8; //Calculate tbSize in bits - /* formula used for calculation of rbSize, 38.213 section 5.1.3.2 * - * Ninfo = Nre . R . Qm . v * + /* formula used for calculation of rbSize, 38.214 section 5.1.3.2 * + * Ninfo = S . Nre . R . Qm . v * * Nre' = Nsc . NsymPdsch - NdmrsSymb - Noh * * Nre = min(156,Nre') . nPrb */ @@ -529,6 +553,7 @@ uint16_t schCalcNumPrb(uint16_t tbSize, uint16_t mcs, uint8_t numSymbols) numPrb = ceil((float)nre / nreDash); return numPrb; } + /** * @brief calculation of transport block size. * @@ -545,36 +570,65 @@ uint16_t schCalcNumPrb(uint16_t tbSize, uint16_t mcs, uint8_t numSymbols) **/ uint16_t schCalcTbSizeFromNPrb(uint16_t numPrb, uint16_t mcs, uint8_t numSymbols) { - uint16_t tbSize = 0; - uint16_t tbsIndex = 0; - uint16_t nre = 0; - uint16_t nreDash = 0; uint8_t qm = mcsTable[mcs][1]; uint16_t rValue = mcsTable[mcs][2]; - uint8_t numLayer = 1; /* v value */ + uint16_t tbsIndex = 0; + uint32_t tbSize = 0; + uint32_t nre = 0; + uint32_t nreDash = 0; + uint32_t nInfo = 0; + uint32_t n = 0; + uint32_t nInfoDash = 0; + uint32_t c = 0; + const uint8_t numLayer = 1; + const uint16_t numRbSc = 12; + const uint16_t numDmrsRes = 12; + const uint16_t sf = 1; +// uint16_t numPrbOvrHead = 0; - /* formula used for calculation of rbSize, 38.213 section 5.1.3.2 * - * Ninfo = Nre . R . Qm . v where [ NInfo is tbSize] * + /* formula used for calculation of rbSize, 38.214 section 5.1.3.2 * + * Ninfo = Nre . R . Qm . v where [ NInfo is tbSize] * * Nre' = Nsc . NsymPdsch - NdmrsSymb - Noh * * Nre = min(156,Nre') . nPrb */ - - nreDash = ceil( (12 * numSymbols) - NUM_DMRS_SYMBOLS - 0); - - if(nreDash > 156) - nreDash = 156; + nreDash = MIN(156, ceil( (numRbSc * numSymbols) - numDmrsRes - 0)); nre = nreDash * numPrb; - tbSize = ceil(nre * qm * numLayer * rValue/1024.0); - tbSize = ceil(tbSize/8.0); - - while(tbSize > tbSizeTable[tbsIndex]) + nInfo = ceil(nre * qm * numLayer * rValue/(1024.0 * sf)); + + if(nInfo <= 3824) { - tbsIndex++; + n = MAX(3, (uint32_t)cmLog2(nInfo) - 6); + nInfoDash = MAX(24, (1< tbSizeTable[tbsIndex]) + { + tbsIndex++; + } + tbSize = tbSizeTable[tbsIndex]; + } + else + { + n = (uint32_t)cmLog2(nInfo - 24) - 5; + nInfoDash = MAX(3840, (1< 8424) + { + c = ceil((nInfoDash + 24)/8424); + tbSize = 8 * c * ceil((nInfoDash + 24)/(8 * c)) - 24; + } + else + { + tbSize = 8 * ceil((nInfoDash + 24)/(8)) - 24; + } + } } - tbSize = tbSizeTable[tbsIndex]; - return tbSize; - } /** * @brief fetching ueCb from cellCb @@ -647,6 +701,14 @@ void schInitDlSlot(SchDlSlotInfo *schDlSlotInfo) { memset(&schDlSlotInfo->ssbInfo[itr], 0, sizeof(SsbInfo)); } +#if 0 + //make allocation for SSB + if(cell->firstSsbTransmitted) + { + //TODO check if this slot and sfn are for ssb + + } +#endif } #ifdef NR_TDD