RLC DL AMD PDU changes [Issue-ID: ODUHIGH-290]
[o-du/l2.git] / src / 5gnrsch / sch.h
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 /* macros */
20 #define SCH_INST_START 1
21 #define SCH_MAX_INST 1
22 #define SCH_MU0_NUM_SLOTS 10 
23 #define SCH_MU1_NUM_SLOTS 20 
24 #define SCH_MU2_NUM_SLOTS 30 
25 #define SCH_MU3_NUM_SLOTS 40 
26 #define SCH_MU4_NUM_SLOTS 50 
27 #define SCH_MAX_SFN 1024
28 #define MAX_NUM_RB 106 /* value for numerology 0 15Khz */
29 #define SCH_MIB_TRANS 80 
30 #define SCH_NUM_SC_PRB 12 /* number of SCs in a PRB */
31 #define SCH_MAX_SSB_BEAM 4 /* since we are supporting only SCS=15KHz */
32 #define SCH_SCS_15KHZ 0 /* numerology 0 and 15Khz */
33 #define SCH_SYMBOL_PER_SLOT 14
34 #define SCH_SSB_NUM_SYMB 4
35 #define SCH_SSB_NUM_PRB 20
36 #define SCHED_DELTA 1
37 #define BO_DELTA 1
38 #define RAR_DELAY   2
39 #define MSG4_DELAY  1
40 #define PUSCH_START_RB 15
41 #define PUCCH_NUM_PRB_FORMAT_0_1_4 1  /* number of PRBs in freq domain, spec 38.213 - 9.2.1 */
42 #define SI_RNTI 0xFFFF
43 #define P_RNTI  0xFFFE
44 #define DMRS_MAP_TYPE_A 1
45 #define NUM_DMRS_SYMBOLS 12
46 #define DMRS_ADDITIONAL_POS 2
47 #define SCH_DEFAULT_K1 1
48
49 #define CRC_FAILED 0
50 #define CRC_PASSED 1
51
52 #define MAC_HDR_SIZE  3   /* 3 bytes of MAC Header */
53 #define UL_GRANT_SIZE 224
54
55 typedef struct schCellCb SchCellCb;
56 typedef struct schUeCb SchUeCb;
57
58 typedef enum
59 {
60    SCH_NUMEROLOGY_0,
61    SCH_NUMEROLOGY_1,
62    SCH_NUMEROLOGY_2,
63    SCH_NUMEROLOGY_3,
64    SCH_NUMEROLOGY_4
65 }SchNumerology;
66
67 typedef enum
68 {
69    SCH_UE_STATE_INACTIVE,
70    SCH_UE_STATE_ACTIVE
71 }SchUeState;
72
73 typedef enum
74 {
75    SCH_LC_STATE_INACTIVE,
76    SCH_LC_STATE_ACTIVE
77 }SchLcState;
78
79 /**
80  * @brief
81  * Structure holding LTE MAC's General Configuration information.
82  */
83 typedef struct schGenCb
84 {
85    uint8_t         tmrRes;           /*!< Timer resolution */
86    uint8_t         startCellId;      /*!< Starting Cell Id */
87 #ifdef LTE_ADV
88    bool            forceCntrlSrbBoOnPCel; /*!< value 1 means force scheduling
89                                             of RLC control BO and SRB BO on
90                                             PCell. val 0 means don't force*/
91    bool            isSCellActDeactAlgoEnable; /*!< TRUE will enable activation/deactivation algo at Schd */
92 #endif
93 }SchGenCb;
94
95 /**
96  * @brief
97  * scheduler allocationsfor DL per cell.
98  */
99 typedef struct schDlSlotInfo
100 {
101    uint16_t  totalPrb;                          /*!< Number of RBs in the cell */
102    uint16_t  assignedPrb[SCH_SYMBOL_PER_SLOT];  /*!< Num RBs and corresponding symbols allocated */
103    bool      ssbPres;                           /*!< Flag to determine if SSB is present in this slot */
104    uint8_t   ssbIdxSupported;                   /*!< Max SSB index */
105    SsbInfo   ssbInfo[MAX_SSB_IDX];              /*!< SSB info */
106    bool      sib1Pres;                          /*!< Flag to determine if SIB1 is present in this slot */
107    RarInfo   *rarInfo;                          /*!< RAR info */
108    DlMsgInfo *dlMsgInfo;                       /*!< DL dedicated Msg info */
109 }SchDlSlotInfo;
110
111 typedef struct schRaCb
112 {
113    uint16_t tcrnti;
114 }SchRaCb;
115
116 /**
117  * @brief
118  * scheduler allocationsfor UL per cell.
119  */
120 typedef struct schUlSlotInfo
121 {
122    uint16_t     totalPrb;  /*!< Number of RBs in the cell */
123    uint16_t     assignedPrb[SCH_SYMBOL_PER_SLOT]; /*!< Num RBs and corresponding symbols allocated */
124    uint8_t      puschCurrentPrb; /* Current PRB for PUSCH allocation */
125    bool         puschPres; /*!< PUSCH presence field */
126    SchPuschInfo *schPuschInfo; /*!< PUSCH info */
127    bool         pucchPres; /*!< PUCCH presence field */
128    SchPucchInfo schPucchInfo; /*!< PUCCH info */
129 }SchUlSlotInfo;
130
131 /**
132 @brief
133 * BSR info per slot per UE.
134 */
135 typedef struct bsrInfo
136 {
137    uint8_t    priority;  /* CG priority */
138    uint32_t   dataVol;   /* Data volume requested in bytes */
139 }BsrInfo;
140
141 typedef struct schLcCtxt
142 {
143    uint8_t lcId;     // logical Channel ID
144    uint8_t lcp;      // logical Channel Prioritization
145    SchLcState lcState;
146    uint16_t bo;
147 }SchDlLcCtxt;
148
149 typedef struct schDlCb
150 {
151    uint8_t       numDlLc;
152    SchDlLcCtxt   dlLcCtxt[MAX_NUM_LC];
153 }SchDlCb;
154
155 typedef struct schUlLcCtxt
156 {
157    SchLcState  lcState;
158    uint8_t lcId;       
159    uint8_t priority;
160    uint8_t lcGroup;
161    uint8_t schReqId;
162    uint8_t pbr;        // prioritisedBitRate
163    uint8_t bsd;        // bucketSizeDuration
164 }SchUlLcCtxt;
165
166 typedef struct schUlCb
167 {
168    uint8_t     numUlLc;
169    SchUlLcCtxt ulLcCtxt[MAX_NUM_LC];
170 }SchUlCb;
171
172 /**
173  * @brief
174  * UE control block
175  */
176 typedef struct schUeCb
177 {
178    uint16_t   ueIdx;
179    uint16_t   crnti;
180    SchUeCfg   ueCfg;
181    SchUeState state;
182    SchCellCb  *cellCb;
183    bool       srRcvd;
184    BsrInfo    bsrInfo[MAX_NUM_LOGICAL_CHANNEL_GROUPS];
185    SchUlCb    ulInfo;
186    SchDlCb    dlInfo;
187 }SchUeCb;
188
189 /**
190  * @brief
191  * Cell Control block per cell.
192  */
193 typedef struct schCellCb
194 {
195    uint16_t      cellId;                            /*!< Cell ID */
196    Inst          instIdx;                           /*!< Index of the scheduler instance */
197    Inst          macInst;                           /*!< Index of the MAC instance */
198    uint8_t       numSlots;                          /*!< Number of slots in current frame */
199    SlotIndInfo   slotInfo;                          /*!< SFN, Slot info being processed*/
200    SchDlSlotInfo **schDlSlotInfo;                   /*!< SCH resource allocations in DL */
201    SchUlSlotInfo **schUlSlotInfo;                   /*!< SCH resource allocations in UL */
202    SchCellCfg    cellCfg;                           /*!< Cell ocnfiguration */
203    uint8_t       ssbStartSymbArr[SCH_MAX_SSB_BEAM]; /*!<start symbol per SSB beam */
204    SchRaCb       raCb[MAX_NUM_UE];                  /*!< Rach Cb */
205    uint16_t      numActvUe;                         /*!<Number of active UEs */
206    uint32_t      actvUeBitMap;                      /*!<Bit map to find active UEs */
207    uint32_t      boIndBitMap;                       /*!<Bit map to indicate UEs that have recevied BO */
208    SchUeCb       ueCb[MAX_NUM_UE];                  /*!<Pointer to UE contexts of this cell */
209 #ifdef NR_TDD
210    uint8_t       numSlotsInPeriodicity;             /*!< number of slots in configured periodicity and SCS */
211    uint32_t      slotFrmtBitMap;                    /*!< 2 bits must be read together to determine D/U/S slots. 00-D, 01-U, 10-S */
212    uint32_t      symbFrmtBitMap;                    /*!< 2 bits must be read together to determine D/U/S symbols. 00-D, 01-U, 10-S */
213 #endif
214 }SchCellCb;
215
216 /**
217  * @brief
218  * Control block for sch
219  */
220 typedef struct schCb
221 {
222    TskInit       schInit;              /*!< Task Init info */
223    SchGenCb      genCfg;                 /*!< General Config info */
224    SchCellCb     *cells[MAX_NUM_CELL];  /* Array to store cellCb ptr */  
225 }SchCb;
226
227 /* Declaration for scheduler control blocks */
228 SchCb schCb[SCH_MAX_INST];
229
230 /* function declarations */
231 uint8_t schBroadcastAlloc(SchCellCb *cell, DlBrdcstAlloc *dlBrdcstAlloc,uint16_t slot);
232 uint8_t schProcessSlotInd(SlotIndInfo *slotInd, Inst inst);
233 uint8_t schUlResAlloc(SchCellCb *cell, Inst schInst);
234 uint8_t schDlRsrcAllocMsg4(DlMsgAlloc *msg4Alloc, SchCellCb *cell, uint16_t slot);
235 uint16_t schCalcTbSize(uint16_t payLoadSize);
236 uint16_t schCalcNumPrb(uint16_t tbSize, uint16_t mcs, uint8_t numSymbols);
237 uint16_t schAllocPucchResource(SchCellCb *cell, uint16_t crnti, uint16_t slot);
238 uint8_t schProcessRachInd(RachIndInfo *rachInd, Inst schInst);
239 uint8_t schFillUlDci(SchUeCb *ueCb, SchPuschInfo puschInfo, DciInfo *dciInfo);
240 uint8_t schFillPuschAlloc(SchUeCb *ueCb, uint16_t pdcchSlot, uint32_t dataVol, SchPuschInfo *puschInfo);
241 uint8_t schDlRsrcAllocDlMsg(DlMsgAlloc *dlMsgAlloc, SchCellCb *cell, uint16_t crnti,
242    uint16_t accumalatedSize, uint16_t slot);
243 uint16_t schAccumalateLcBoSize(SchCellCb *cell, uint16_t ueIdx);
244
245 /**********************************************************************
246   End of file
247  **********************************************************************/