[Epic-ID: ODUHIGH-517][Task-ID: ODUHIGH-539][SubTask-Id: ODUHIGH-543] Multi UE| DL... 94/12194/3
authorsvaidhya <svaidhya@radisys.com>
Fri, 8 Dec 2023 11:02:46 +0000 (16:32 +0530)
committersvaidhya <svaidhya@radisys.com>
Fri, 8 Dec 2023 13:35:48 +0000 (19:05 +0530)
Change-Id: Idf2e116238d43dcbf3c483e488ddb43f03c8d058
Signed-off-by: svaidhya <svaidhya@radisys.com>
src/5gnrsch/sch.h
src/5gnrsch/sch_utils.c
src/5gnrsch/sch_utils.h

index 95f37f7..3c7591e 100644 (file)
 /*3GPP 38.331,'frequencyDomainResources' :Number of PRBs per Resource Block Group*/
 #define NUM_PRBS_PER_RBG 6 
 
+/*3GPP 38.214 Table 5.2.2.1-2*/
+#define MAX_NUM_CQI_IDX 16
+
+/*3GPP 38.211 Table 7.3.2.1-1*/
+#define MAX_NUM_AGG_LVL 5
+
 typedef struct schDlHqProcCb SchDlHqProcCb;
 typedef struct schUlHqEnt SchUlHqEnt;
 typedef struct schRaReq SchRaReq;
@@ -465,6 +471,17 @@ typedef struct  schDrxUeCb
    CmLList   *shortCycleTmrExpiryNodeInfo; /* Node present in short cycle exp list*/
 }SchDrxUeCb;
 #endif
+
+typedef struct schPdcchInfo
+{
+   SchControlRsrcSet *cRSetRef; /*Coreset Cfg reference from SchUeCfgCb*/
+   SchSearchSpace    *ssRef;    /*SearchSpace Cfg reference from SchUeCfgCb*/
+   uint16_t          totalPrbs; /*Total PRBs configured for this CORESET*/
+   uint8_t           nrOfPRBPerCce; /*CCE Size*/
+   uint8_t           totalCceCount; /*Count of CCE in this CORESET*/
+   uint8_t           cqiIndxAggLvlMap[MAX_NUM_CQI_IDX];/*Agg Level to be used for each CQI Index*/
+}SchPdcchInfo;
+
 /**
  * @brief
  * UE control block
@@ -497,6 +514,7 @@ typedef struct schUeCb
    SchK0K1TimingInfoTbl k0K1InfoTbl;
    bool                 k2TblPrsnt;
    SchK2TimingInfoTbl   k2InfoTbl;
+   SchPdcchInfo         pdcchInfo[MAX_NUM_CRSET];
 }SchUeCb;
 
 /**
index 218b70b..34aa846 100644 (file)
@@ -766,6 +766,36 @@ uint8_t pucchResourceSet[MAX_PUCCH_RES_SET_IDX][4] = {
 { 1,   0, 14,  0 }, /* index 15 */
 };
 
+/*CQI Table From Spec 38.214 Table 5.2.2.1-2
+ * {Modulation Scheme, CodeRate, Efficiency(bits per symbol)}
+ * Modulation Scheme is numbered based on bit rate as follows
+ * QPSK = 2, 16QAM = 4, 64QAM = 6
+ * */
+unsigned long cqiTable1[MAX_NUM_CQI_IDX][3] = {
+{ 0, 0, 0},        /*index 0*/
+{ 2, 78, 0.1523},  /*index 1*/
+{ 2, 120, 0.2344}, /*index 2*/
+{ 2, 193, 0.3770}, /*index 3*/
+{ 2, 308, 0.6016}, /*index 4*/
+{ 2, 449, 0.8770}, /*index 5*/
+{ 2, 602, 1.1758}, /*index 6*/
+{ 4, 378, 1.4766}, /*index 7*/
+{ 4, 490, 1.9141}, /*index 8*/
+{ 4, 616, 2.4063}, /*index 9*/
+{ 6, 466, 2.7305}, /*index 10*/
+{ 6, 567, 3.3223}, /*index 11*/
+{ 6, 666, 3.9023}, /*index 12*/
+{ 6, 772, 4.5234}, /*index 13*/
+{ 6, 873, 5.1152}, /*index 14*/
+{ 6, 948, 5.5547}, /*index 15*/
+};
+
+/*As per Spec 38.211 Table 7.3.2.1-1, using number of CCE per AggLevel 
+ * Num of RE for Agg Level = numCCEPerAggLevel * (6 REG) * (12 Subcarriers)
+ */
+uint16_t totalRE_PerAggLevel[MAX_NUM_AGG_LVL]= {72, 144, 288, 576, 1152};
+
+
 /* Minimum Msg3 scheduling time should be calculated based on N1+N2+NTAmax+0.5
  * ms formula.
  * Refer spec 38.213 section 8.3.
@@ -1871,6 +1901,110 @@ uint8_t countRBGFrmCoresetFreqRsrc(uint8_t *freqDomainRsrc)
    return count;
 }
 
+/*
+ * @brief Function to calculate the DciSize in bits for format 1_0 
+ *
+ * @details
+ *
+ *   Function: calcUeDciSizeFormat1_0
+ *   Calculates the totalBit Size for sending this DCI format 1_0 
+ *   Spec Reference: 38.212, Format 1_0 scrambled using C_RNTI
+ *
+ * @Params[in] : CoresetSize (for calculating Frequency domain
+ *          resource assignment)
+ **/
+
+uint16_t calcUeDciSizeFormat1_0(uint16_t coresetSize)
+{
+   uint16_t dciSizeInBits = 0;
+
+   /* Size(in bits) of each field in DCI format 1_0 */
+   /*Below fields are identified from 3gpp spec 38.212, 38.213, 38.214*/
+   uint8_t dciFormatIdSize    = 1;
+   uint8_t freqDomResAssignSize = 0;
+   uint8_t timeDomResAssignSize = 4;
+   uint8_t VRB2PRBMapSize       = 1;
+   uint8_t modNCodSchemeSize    = 5;
+   uint8_t ndiSize              = 1;
+   uint8_t redundancyVerSize    = 2;
+   uint8_t harqProcessNumSize   = 4;
+   uint8_t dlAssignmentIdxSize  = 2;
+   uint8_t pucchTpcSize         = 2;
+   uint8_t pucchResoIndSize     = 3;
+   uint8_t harqFeedbackIndSize  = 3;
+
+   freqDomResAssignSize = ceil(log2(coresetSize * (coresetSize + 1) / 2));
+
+   dciSizeInBits = (dciFormatIdSize + freqDomResAssignSize\
+         + timeDomResAssignSize + VRB2PRBMapSize + modNCodSchemeSize\
+         + ndiSize + redundancyVerSize + harqProcessNumSize + dlAssignmentIdxSize\
+         + pucchTpcSize + pucchResoIndSize + harqFeedbackIndSize);
+
+   return(dciSizeInBits);
+}
+
+/*
+ * @brief Function to calculate the aggLvl mapping with CQI index
+ *
+ * @details
+ *
+ *   Function: fillCqiAggLvlMapping
+ *
+ *   Fills the CQI index and Agg level mapping based on 3gpp 38.214,Table 5.2.2.1-2
+ *   The mapping will be later during PDCCH allocation
+ *   [Step 1]: Calculate the DciSize in bits. This will be UE-specific as it depends
+ *             on CORESETsize
+ *   [Step 2]: Starting from CqiIdx = 0, calculate the efficientPdcchBits which
+ *   can be sent for that CQI and check if the availBits for each agg level is
+ *   sufficient for that pdcch required bits.
+ *        > If the bits required by PDCCH can be contained with Agg Level's
+ *        availBits then that is assigned.
+ *  Note:: Good channel, CQI (high value) then Aggrevation level is assigned
+ *  less(less number of CCE is sufficient) and vice versa for low CQI
+ *
+ *  @param[in]: PDCCH Info inside ueCb
+ *
+ *       [return]: void
+ **/
+
+void fillCqiAggLvlMapping(SchPdcchInfo *pdcchInfo)
+{
+   uint8_t cqiIdx = 0, aggLvlIdx =0;
+   uint16_t numOfBitsAvailForAggLevel = 0, dciSize = 0, pdcchBits = 0;
+
+   /*[Step 1]:*/
+   dciSize = calcUeDciSizeFormat1_0(pdcchInfo->totalPrbs);
+
+   /* Initializing the map array*/
+   memset(pdcchInfo->cqiIndxAggLvlMap, 0, MAX_NUM_CQI_IDX);
+
+   /*Note: For CqiIdx = 0, aggLevel is marked as 0 which means that Channel
+    * Quality is not suitable for any transmission*/
+   for(cqiIdx = 1; cqiIdx < MAX_NUM_CQI_IDX; cqiIdx++)
+   {
+      /*CQI table number 1 is used Spec 38.214 Table 5.2.2.1-2 by default.
+       *TODO: cqi-table param in CSI-RepotConfig(3gpp 38.331) will report
+       * which table to be used*/
+      pdcchBits = dciSize / cqiTable1[cqiIdx][2];
+      for(aggLvlIdx = 0; (aggLvlIdx < MAX_NUM_AGG_LVL) && (pdcchBits != 0); aggLvlIdx++)
+      {
+         numOfBitsAvailForAggLevel = (totalRE_PerAggLevel[aggLvlIdx] * cqiTable1[cqiIdx][0]);
+         /*Check if AggLevel has sufficient bits available for pdcchBits*/
+         if(pdcchBits < numOfBitsAvailForAggLevel)
+         {
+            pdcchInfo->cqiIndxAggLvlMap[cqiIdx] = 1 << aggLvlIdx;
+            break;
+         }
+      }
+
+      /*Below case will hit when required pdcchBits is not accomated by any Agg
+       * Levl which means Channel quality is worse. Thus transmission has to be
+       * most aggressive thus highest value of Agg level will be used.*/
+      if(!pdcchInfo->cqiIndxAggLvlMap[cqiIdx])
+         pdcchInfo->cqiIndxAggLvlMap[cqiIdx] = 16;
+   }
+}
+
 /**********************************************************************
          End of file
 **********************************************************************/
index c6b7fab..c9edbad 100644 (file)
@@ -138,6 +138,7 @@ void schDeleteFromPageInfoList(CmLListCp *list, CmLList *node);
 
 uint8_t countRBGFrmCoresetFreqRsrc(uint8_t *freqDomainRsrc);
 uint8_t findSsStartSymbol(uint8_t *mSymbolsWithinSlot);
+void fillCqiAggLvlMapping(SchPdcchInfo *pdcchInfo);
 #if 0
 /*Will be enabled for debugging*/
 void printLcLL(CmLListCp *lcLL);