ec4c91de538b69f745ebc36de855a2bc22f66081
[o-du/l2.git] / src / cm / mac_sch_interface.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 /* events */
20 #define EVENT_SCH_CELL_CFG           1
21 #define EVENT_SCH_CELL_CFG_CFM       2
22 #define EVENT_DL_ALLOC               3 
23 #define EVENT_UL_SCH_INFO            4 
24 #define EVENT_RACH_IND_TO_SCH        5
25 #define EVENT_CRC_IND_TO_SCH         6
26 #define EVENT_DL_RLC_BO_INFO_TO_SCH  7
27 #define EVENT_ADD_UE_CONFIG_REQ_TO_SCH   8
28 #define EVENT_UE_CONFIG_RSP_TO_MAC   9
29 #define EVENT_SLOT_IND_TO_SCH        10
30 #define EVENT_SHORT_BSR              11
31 #define EVENT_UCI_IND_TO_SCH         12
32 #define EVENT_MODIFY_UE_CONFIG_REQ_TO_SCH 13
33 #define EVENT_UE_RECONFIG_RSP_TO_MAC 14
34 #define EVENT_UE_DELETE_REQ_TO_SCH   15
35 #define EVENT_UE_DELETE_RSP_TO_MAC   16
36 #define EVENT_CELL_DELETE_REQ_TO_SCH   17
37 #define EVENT_CELL_DELETE_RSP_TO_MAC   18
38
39
40 /*macros*/
41 #define NO_SSB 0
42 #define SSB_TRANSMISSION 1
43 #define SSB_REPEAT 2
44 #define MAX_SSB_IDX 1 /* forcing it as 1 for now. Right value is 64 */
45 #define SCH_SSB_MASK_SIZE   1
46
47 #define NO_SIB1 0
48 #define SIB1_TRANSMISSION 1
49 #define SIB1_REPITITION 2
50
51 #define MAX_NUM_PRG     1 /* max value should be later 275 */
52 #define MAX_DIG_BF_INTERFACES 0 /* max value should be later 255 */
53 #define MAX_CODEWORDS  1  /* max should be 2 */
54 #define SCH_HARQ_PROC_ID 1 /* harq proc id */
55 #define SCH_ALLOC_TYPE_1 1 /*sch res alloc type */
56
57 /* Datatype in UL SCH Info */
58 #define SCH_DATATYPE_PUSCH 1
59 #define SCH_DATATYPE_PUSCH_UCI 2
60 #define SCH_DATATYPE_UCI 4
61 #define SCH_DATATYPE_SRS 8
62 #define SCH_DATATYPE_PRACH 16
63
64 #define MAX_NUMBER_OF_CRC_IND_BITS 1
65 #define MAX_NUMBER_OF_UCI_IND_BITS 1
66 #define MAX_SR_BITS_IN_BYTES       1
67 #define MAX_NUM_LOGICAL_CHANNEL_GROUPS 8
68 /* can we have a common numslot numscs between mac sch */
69 #ifdef NR_TDD
70 #define MAX_SLOTS 20
71 #else
72 #define MAX_SLOTS 10
73 #endif
74 #define MAX_SFN   1024
75 #define MAX_NUM_SR_CFG_PER_CELL_GRP 8   /* Max number of scheduling request config per cell group */
76 #define MAX_NUM_TAGS 4                  /* Max number of timing advance groups */
77 #define MAX_NUM_BWP  4                  /* Max number of BWP per serving cell */
78 #define MAX_NUM_CRSET  3                /* Max number of control resource set in add/modify/release list */
79 #define MAX_NUM_SEARCH_SPC  10          /* Max number of search space in add/modify/release list */
80 #define FREQ_DOM_RSRC_SIZE  6           /* i.e. 6 bytes because Size of frequency domain resource is 45 bits */
81 #define MONITORING_SYMB_WITHIN_SLOT_SIZE 2  /* i.e. 2 bytes because size of monitoring symbols within slot is 14 bits */
82 #define MAX_NUM_DL_ALLOC 16             /* Max number of pdsch time domain downlink allocation */
83 #define MAX_NUM_UL_ALLOC 16             /* Max number of pusch time domain uplink allocation */
84
85 /* PUCCH Configuration Macro */
86 #define MAX_NUM_PUCCH_RESRC 128
87 #define MAX_NUM_PUCCH_RESRC_SET 4
88 #define MAX_NUM_PUCCH_PER_RESRC_SET 32
89 #define MAX_NUM_SPATIAL_RELATIONS 8
90 #define MAX_NUM_PUCCH_P0_PER_SET 8
91 #define MAX_NUM_PATH_LOSS_REF_RS 4
92 #define MAX_NUM_DL_DATA_TO_UL_ACK 15
93 #define SD_SIZE   3
94
95 #define RAR_PAYLOAD_SIZE 10             /* As per spec 38.321, sections 6.1.5 and 6.2.3, RAR PDU is 8 bytes long and 2 bytes of padding */
96 #define TX_PAYLOAD_HDR_LEN 32           /* Intel L1 requires adding a 32 byte header to transmitted payload */
97
98
99 #define ADD_DELTA_TO_TIME(crntTime, toFill, incr)          \
100 {                                                          \
101    if ((crntTime.slot + incr) > (MAX_SLOTS - 1))           \
102    {                                                       \
103       toFill.sfn = (crntTime.sfn + 1);                     \
104    }                                                       \
105    else                                                    \
106    {                                                       \
107       toFill.sfn = crntTime.sfn;                           \
108    }                                                       \
109    toFill.slot = (crntTime.slot + incr) % MAX_SLOTS;       \
110    if (toFill.sfn >= MAX_SFN)                              \
111    {                                                       \
112       toFill.sfn%=MAX_SFN;                                 \
113    }                                                       \
114 }
115
116 typedef enum
117 {
118    UNSPECIFIED_CAUSE,
119    INVALID_PARAM_VALUE,
120    RESOURCE_UNAVAILABLE,
121    SYSTEM_ERROR
122 }SchFailureCause;
123
124 typedef enum
125 {
126    SR_PROHIBIT_MS1,
127    SR_PROHIBIT_MS2,
128    SR_PROHIBIT_MS4,
129    SR_PROHIBIT_MS8,
130    SR_PROHIBIT_MS16,
131    SR_PROHIBIT_MS32,
132    SR_PROHIBIT_MS64,
133    SR_PROHIBIT_MS128
134 }SchSrProhibitTimer;
135
136 typedef enum
137 {
138    NOT_APPLICABLE,
139    INVALID_CELLID,
140    INVALID_UEIDX
141 }ErrorCause;
142
143 typedef enum
144 {
145    SR_TRANS_MAX_N4,
146    SR_TRANS_MAX_N8,
147    SR_TRANS_MAX_N16,
148    SR_TRANS_MAX_N32,
149    SR_TRANS_MAX_N64,
150    SR_TRANS_MAX_SPARE3,
151    SR_TRANS_MAX_SPARE2,
152    SR_TRANS_MAX_SPARE1
153 }SchSrTransMax;
154
155 typedef enum
156 {
157    TIME_ALIGNMENT_TIMER_MS500,
158    TIME_ALIGNMENT_TIMER_MS750,
159    TIME_ALIGNMENT_TIMER_MS1280,
160    TIME_ALIGNMENT_TIMER_MS1920,
161    TIME_ALIGNMENT_TIMER_MS2560,
162    TIME_ALIGNMENT_TIMER_MS5120,
163    TIME_ALIGNMENT_TIMER_MS10240,
164    TIME_ALIGNMENT_TIMER_INFINITE
165 }SchTimeAlignmentTimer;
166
167 typedef enum
168 {
169    PHR_PERIODIC_TIMER_SF10,
170    PHR_PERIODIC_TIMER_SF20,
171    PHR_PERIODIC_TIMER_SF50,
172    PHR_PERIODIC_TIMER_SF100,
173    PHR_PERIODIC_TIMER_SF200,
174    PHR_PERIODIC_TIMER_SF500,
175    PHR_PERIODIC_TIMER_SF1000,
176    PHR_PERIODIC_TIMER_INFINITE
177 }SchPhrPeriodicTimer;
178
179 typedef enum
180 {
181    PHR_PROHIBIT_TIMER_SF0,
182    PHR_PROHIBIT_TIMER_SF10,
183    PHR_PROHIBIT_TIMER_SF20,
184    PHR_PROHIBIT_TIMER_SF50,
185    PHR_PROHIBIT_TIMER_SF100,
186    PHR_PROHIBIT_TIMER_SF200,
187    PHR_PROHIBIT_TIMER_SF500,
188    PHR_PROHIBIT_TIMER_SF1000
189 }SchPhrProhibitTimer;
190
191 typedef enum
192 {
193    PHR_TX_PWR_FACTOR_CHANGE_DB1,
194    PHR_TX_PWR_FACTOR_CHANGE_DB3,
195    PHR_TX_PWR_FACTOR_CHANGE_DB6,
196    PHR_TX_PWR_FACTOR_CHANGE_INFINITE
197 }SchPhrTxPwrFactorChange;
198
199 typedef enum
200 {
201    PHR_MODE_REAL,
202    PHR_MODE_VIRTUAL
203 }SchPhrModeOtherCG;
204
205 typedef enum
206 {
207    HARQ_ACK_CODEBOOK_SEMISTATIC,
208    HARQ_ACK_CODEBOOK_DYNAMIC
209 }SchPdschHarqAckCodebook;
210
211 typedef enum
212 {
213    NUM_HARQ_PROC_FOR_PDSCH_N2,
214    NUM_HARQ_PROC_FOR_PDSCH_N4,
215    NUM_HARQ_PROC_FOR_PDSCH_N6,
216    NUM_HARQ_PROC_FOR_PDSCH_N10,
217    NUM_HARQ_PROC_FOR_PDSCH_N16
218 }SchNumHarqProcForPdsch;
219
220 typedef enum
221 {
222    MAX_CODE_BLOCK_GROUP_PER_TB_N2,
223    MAX_CODE_BLOCK_GROUP_PER_TB_N4,
224    MAX_CODE_BLOCK_GROUP_PER_TB_N6,
225    MAX_CODE_BLOCK_GROUP_PER_TB_N8
226 }SchMaxCodeBlkGrpPerTB;
227
228 typedef enum
229 {
230    PDSCH_X_OVERHEAD_XOH_6,
231    PDSCH_X_OVERHEAD_XOH_12,
232    PDSCH_X_OVERHEAD_XOH_18
233 }SchPdschXOverhead;
234
235 typedef enum
236 {
237    DMRS_ADDITIONAL_POS0,
238    DMRS_ADDITIONAL_POS1,
239    DMRS_ADDITIONAL_POS3
240 }SchDmrsAdditionPosition;
241
242 typedef enum
243 {
244    RESOURCE_ALLOCTION_TYPE_0,
245    RESOURCE_ALLOCTION_TYPE_1,
246    RESOURCE_ALLOCTION_DYN_SWITCH
247 }SchResourceAllocType;
248
249 typedef enum
250 {
251    TIME_DOMAIN_RSRC_ALLOC_MAPPING_TYPE_A,
252    TIME_DOMAIN_RSRC_ALLOC_MAPPING_TYPE_B
253 }SchTimeDomRsrcAllocMappingType;
254
255 typedef enum
256 {
257    ENABLED_TRANSFORM_PRECODER,
258    DISABLED_TRANSFORM_PRECODER
259 }SchTransformPrecoder;
260
261 typedef enum
262 {
263    INTERLEAVED_CCE_REG_MAPPING = 1,
264    NONINTERLEAVED_CCE_REG_MAPPING
265 }SchREGMappingType;
266
267 typedef enum
268 {
269    SLOT_PERIODICITY_AND_OFFSET_SL_1 = 1,
270    SLOT_PERIODICITY_AND_OFFSET_SL_2,
271    SLOT_PERIODICITY_AND_OFFSET_SL_4,
272    SLOT_PERIODICITY_AND_OFFSET_SL_5,
273    SLOT_PERIODICITY_AND_OFFSET_SL_8,
274    SLOT_PERIODICITY_AND_OFFSET_SL_10,
275    SLOT_PERIODICITY_AND_OFFSET_SL_16,
276    SLOT_PERIODICITY_AND_OFFSET_SL_20,
277    SLOT_PERIODICITY_AND_OFFSET_SL_40,
278    SLOT_PERIODICITY_AND_OFFSET_SL_80,
279    SLOT_PERIODICITY_AND_OFFSET_SL_160,
280    SLOT_PERIODICITY_AND_OFFSET_SL_320,
281    SLOT_PERIODICITY_AND_OFFSET_SL_640,
282    SLOT_PERIODICITY_AND_OFFSET_SL_1280,
283    SLOT_PERIODICITY_AND_OFFSET_SL_2560
284 }SchMSlotPeriodAndOffset;
285
286 typedef enum
287 {
288    SAME_AS_REG_BUNDLE,
289    ALL_CONTIGUOUS_RB
290 }SchPrecoderGranul;
291
292 typedef enum
293 {
294    SEARCH_SPACE_TYPE_COMMON = 1,
295    SEARCH_SPACE_TYPE_UE_SPECIFIC
296 }SchSearchSpaceType;
297
298 typedef enum
299 {
300    SCH_QOS_NON_DYNAMIC = 1,
301    SCH_QOS_DYNAMIC
302 }SchQosType;
303
304 typedef enum
305 {
306    AGGREGATION_LEVEL_N0,
307    AGGREGATION_LEVEL_N1,
308    AGGREGATION_LEVEL_N2,
309    AGGREGATION_LEVEL_N3,
310    AGGREGATION_LEVEL_N4,
311    AGGREGATION_LEVEL_N5,
312    AGGREGATION_LEVEL_N6,
313    AGGREGATION_LEVEL_N8
314 }SchAggrLevel;
315
316 typedef enum
317 {
318    RBG_SIZE_CONFIG_1,
319    RBG_SIZE_CONFIG_2
320 }SchRBGSize;
321
322 typedef enum
323 {
324    CODE_WORDS_SCHED_BY_DCI_N1,
325    CODE_WORDS_SCHED_BY_DCI_N2
326 }SchCodeWordsSchedByDci;
327
328 typedef enum
329 {
330    STATIC_BUNDLING_TYPE = 1,
331    DYNAMIC_BUNDLING_TYPE
332 }SchBundlingType;
333
334 typedef enum
335 {
336    SCH_SET1_SIZE_N4,
337    SCH_SET1_SIZE_WIDEBAND,
338    SCH_SET1_SIZE_N2_WIDEBAND,
339    SCH_SET1_SIZE_N4_WIDEBAND
340 }SchBundlingSizeSet1;
341
342 typedef enum
343 {
344    SCH_SET2_SIZE_N4,
345    SCH_SET2_SIZE_WIDEBAND
346 }SchBundlingSizeSet2;
347
348 typedef enum
349 {
350    DUPLEX_MODE_FDD,
351    DUPLEX_MODE_TDD
352 }SchDuplexMode;
353
354 typedef enum
355 {
356    SSB_PRDCTY_MS5,
357    SSB_PRDCTY_MS10,
358    SSB_PRDCTY_MS20,
359    SSB_PRDCTY_MS40,
360    SSB_PRDCTY_MS80,
361    SSB_PRDCTY_MS160
362 }SchSSBPeriod;
363
364 typedef enum
365 {
366    RSP_OK,
367    RSP_NOK
368 }SchMacRsp;
369
370 typedef enum
371 {
372    SHORT_BSR,
373    LONG_BSR,
374    SHORT_TRUNCATED_BSR,
375    LONG_TRUNCATED_BSR
376 }BsrType;
377
378 typedef enum
379 {
380    FORMAT0_0,
381    FORMAT0_1,
382    FORMAT1_0,
383    FORMAT1_1
384 }FormatType;
385
386 typedef enum
387 {
388    SCH_MCS_TABLE_QAM_64,
389    SCH_MCS_TABLE_QAM_256,
390    SCH_MCS_TABLE_QAM_64_LOW_SE
391 }SchMcsTable;
392
393 /*structures*/
394 typedef struct timeDomainAlloc
395 {
396    uint16_t startSymb;
397    uint16_t numSymb;
398 }TimeDomainAlloc;
399
400 typedef struct freqDomainAlloc
401 {
402    uint16_t startPrb;
403    uint16_t numPrb;
404 }FreqDomainAlloc;
405
406
407 typedef struct
408 {
409    uint32_t    ssbPbchPwr;       /* SSB block power */
410    uint8_t     scsCommon;           /* subcarrier spacing for common [0-3]*/
411    uint8_t     ssbOffsetPointA;  /* SSB sub carrier offset from point A */
412    SchSSBPeriod   ssbPeriod;        /* SSB Periodicity in msec */
413    uint8_t     ssbSubcOffset;    /* Subcarrier Offset(Kssb) */
414    uint32_t    nSSBMask[SCH_SSB_MASK_SIZE];      /* Bitmap for actually transmitted SSB. */
415 }SchSsbCfg;
416
417 typedef struct bwpCfg
418 {
419    uint8_t         subcarrierSpacing;
420    uint8_t         cyclicPrefix;
421    FreqDomainAlloc freqAlloc;   
422 }BwpCfg;
423
424 typedef struct prg
425 {
426    uint16_t pmIdx;
427    uint16_t beamIdx[MAX_DIG_BF_INTERFACES];
428 } Prg;
429
430 typedef struct beamformingInfo
431 {
432    uint16_t numPrgs;
433    uint16_t prgSize;
434    uint8_t  digBfInterfaces;
435    Prg  prg[MAX_NUM_PRG];
436 } BeamformingInfo;
437
438 /* SIB1 PDSCH structures */
439
440 typedef struct codewordinfo
441 {
442    uint16_t targetCodeRate;
443    uint8_t  qamModOrder;
444    uint8_t  mcsIndex;
445    uint8_t  mcsTable;
446    uint8_t  rvIndex;
447    uint32_t tbSize;
448 } CodewordInfo;
449
450 typedef struct dmrsInfo
451 {
452    uint16_t dlDmrsSymbPos;
453    uint8_t  dmrsConfigType;
454    uint16_t dlDmrsScramblingId;
455    uint8_t  scid;
456    uint8_t  numDmrsCdmGrpsNoData;
457    uint16_t dmrsPorts;
458    uint8_t mappingType;
459    uint8_t nrOfDmrsSymbols;
460    uint8_t dmrsAddPos;
461 } DmrsInfo;
462
463 typedef struct pdschFreqAlloc
464 {
465    uint8_t  resourceAllocType;
466    /* since we are using type-1, rbBitmap excluded */
467    FreqDomainAlloc freqAlloc;
468    uint8_t  vrbPrbMapping;
469 } PdschFreqAlloc;
470
471 typedef struct pdschTimeAlloc
472 {
473    uint8_t         rowIndex;
474    TimeDomainAlloc timeAlloc;
475 } PdschTimeAlloc;
476
477 typedef struct txPowerPdschInfo
478 {
479    uint8_t powerControlOffset;
480    uint8_t powerControlOffsetSS;
481 } TxPowerPdschInfo;
482
483 typedef struct pdschCfg
484 {
485    uint16_t         pduBitmap;
486    uint16_t         rnti;
487    uint16_t         pduIndex;
488    uint8_t          numCodewords;
489    CodewordInfo     codeword[MAX_CODEWORDS];
490    uint16_t         dataScramblingId;
491    uint8_t          numLayers;
492    uint8_t          transmissionScheme;
493    uint8_t          refPoint;
494    DmrsInfo         dmrs;
495    PdschFreqAlloc   pdschFreqAlloc;
496    PdschTimeAlloc   pdschTimeAlloc;
497    BeamformingInfo  beamPdschInfo;
498    TxPowerPdschInfo txPdschPower;
499 } PdschCfg;
500 /* SIB1 PDSCH structures end */
501
502 /* SIB1 interface structure */
503
504 typedef struct coresetCfg
505 {
506    uint8_t coreSetSize;
507    uint8_t startSymbolIndex;
508    uint8_t durationSymbols;
509    uint8_t freqDomainResource[6];
510    uint8_t cceRegMappingType;
511    uint8_t regBundleSize;
512    uint8_t interleaverSize;
513    uint8_t coreSetType;
514    uint16_t shiftIndex;
515    uint8_t precoderGranularity;
516    uint8_t cceIndex;
517    uint8_t aggregationLevel;
518 } CoresetCfg;
519
520 typedef struct txPowerPdcchInfo
521 {
522    uint8_t powerValue;
523    uint8_t powerControlOffsetSS;
524 } TxPowerPdcchInfo;
525
526 typedef struct dlDCI
527 {
528    uint16_t rnti;
529    uint16_t scramblingId;
530    uint16_t scramblingRnti;
531    uint8_t cceIndex;
532    uint8_t aggregLevel;
533    BeamformingInfo beamPdcchInfo;
534    TxPowerPdcchInfo txPdcchPower;
535    PdschCfg     *pdschCfg;
536 } DlDCI;
537
538 typedef struct pdcchCfg
539 {
540    /* coreset-0 configuration */
541    CoresetCfg coresetCfg;
542
543    uint16_t numDlDci;
544    DlDCI    dci; /* as of now its only one DCI, later it will be numDlCi */
545 } PdcchCfg;
546 /* end of SIB1 PDCCH structures */
547
548 typedef struct
549 {
550    /* parameters recieved from DU-APP */
551    uint16_t sib1PduLen;
552    uint16_t sib1RepetitionPeriod;
553    uint8_t  coresetZeroIndex;     /* derived from 4 LSB of pdcchSib1 present in MIB */
554    uint8_t  searchSpaceZeroIndex; /* derived from 4 MSB of pdcchSib1 present in MIB */
555    uint16_t sib1Mcs;
556
557    /* parameters derived in scheduler */
558    uint8_t n0;
559    BwpCfg bwp;
560    PdcchCfg sib1PdcchCfg;
561    PdschCfg sib1PdschCfg;
562 }SchSib1Cfg;
563
564 typedef struct schRachCfg
565 {
566    uint8_t      prachCfgIdx;       /* PRACH config idx */
567    uint8_t      prachSubcSpacing;  /* Subcarrier spacing of RACH */
568    uint16_t     msg1FreqStart;     /* Msg1-FrequencyStart */
569    uint8_t      msg1Fdm;           /* PRACH FDM (1,2,4,8) */
570    uint8_t      rootSeqLen;        /* root sequence length */
571    uint16_t     rootSeqIdx;        /* Root sequence index */
572    uint8_t      numRootSeq;        /* Number of root sequences required for FD */
573    uint16_t     k1;                /* Frequency Offset for each FD */
574    uint8_t      ssbPerRach;        /* SSB per RACH occassion */
575    uint8_t      prachMultCarrBand; /* Presence of Multiple carriers in Band */
576    uint8_t      raContResTmr;      /* RA Contention Resoultion Timer */
577    uint8_t      rsrpThreshSsb;     /* RSRP Threshold SSB */
578    uint8_t      raRspWindow;       /* RA Response Window */
579 }SchRachCfg;
580
581 typedef struct schBwpParams
582 {
583    FreqDomainAlloc freqAlloc;
584    uint8_t         scs;
585    uint8_t         cyclicPrefix;
586 }SchBwpParams;
587
588 typedef struct schCandidatesInfo
589 {
590    uint8_t aggLevel1;
591    uint8_t aggLevel2;
592    uint8_t aggLevel4;
593    uint8_t aggLevel8;
594    uint8_t aggLevel16;
595 }SchCandidatesInfo;
596
597 typedef struct schSearchSpaceCfg
598 {
599    uint8_t searchSpaceId;
600    uint8_t coresetId;
601    uint16_t monitoringSlot;
602    uint16_t duration;
603    uint16_t monitoringSymbol;
604    SchCandidatesInfo candidate;
605 }SchSearchSpaceCfg;
606
607 typedef struct schPdcchCfgCmn
608 {
609    SchSearchSpaceCfg commonSearchSpace;
610    uint8_t raSearchSpaceId;
611 }SchPdcchCfgCmn;
612
613 typedef struct schPdschCfgCmn
614 {
615    uint8_t k0;
616    uint8_t mappingType;
617    uint8_t startSymbol;
618    uint8_t lengthSymbol;
619 }SchPdschCfgCmn;
620
621 typedef struct schPucchCfgCmn
622 {
623    uint8_t pucchResourceCommon;
624    uint8_t pucchGroupHopping;
625 }SchPucchCfgCmn;
626
627 typedef struct schPuschCfgCmn
628 {
629    uint8_t k2;
630    uint8_t mappingType;
631    uint8_t startSymbol;
632    uint8_t lengthSymbol;
633 }SchPuschCfgCmn;
634
635 typedef struct schBwpDlCfg
636 {
637    SchBwpParams   bwp;
638    SchPdcchCfgCmn pdcchCommon;
639    SchPdschCfgCmn pdschCommon;
640 }SchBwpDlCfg;
641
642 typedef struct schBwpUlCfg
643 {
644    SchBwpParams   bwp;
645    SchPucchCfgCmn pucchCommon;
646    SchPuschCfgCmn puschCommon;
647 }SchBwpUlCfg;
648
649 typedef struct schCellCfg
650 {
651    uint16_t       cellId;           /* Cell Id */
652    uint16_t       phyCellId;        /* Physical cell id */
653    uint8_t        numerology;       /* Supported numerology */
654    SchDuplexMode  dupMode;          /* Duplex type: TDD/FDD */
655    uint8_t        bandwidth;        /* Supported B/W */
656    uint32_t       dlFreq;           /* DL Frequency */
657    uint32_t       ulFreq;           /* UL Frequency */
658    SchSsbCfg      ssbSchCfg;        /* SSB config */
659    SchSib1Cfg     sib1SchCfg;       /* SIB1 config */
660    SchRachCfg     schRachCfg;       /* PRACH config */
661    SchBwpDlCfg    schInitialDlBwp;  /* Initial DL BWP */
662    SchBwpUlCfg    schInitialUlBwp;  /* Initial UL BWP */
663 #ifdef NR_TDD
664    TDDCfg         tddCfg;           /* TDD Cfg */ 
665 #endif
666 }SchCellCfg;
667
668 typedef struct schCellCfgCfm
669 {
670    uint16_t         cellId;     /* Cell Id */
671    SchMacRsp   rsp;   
672 }SchCellCfgCfm;
673
674 typedef struct ssbInfo
675 {
676    uint8_t         ssbIdx;          /* SSB Index */
677    TimeDomainAlloc tdAlloc; /* Time domain allocation */
678    FreqDomainAlloc fdAlloc; /* Freq domain allocation */
679 }SsbInfo;
680
681 typedef struct sib1AllocInfo
682 {
683    BwpCfg bwp;
684    PdcchCfg sib1PdcchCfg;
685    PdschCfg sib1PdschCfg;
686 } Sib1AllocInfo;
687
688 typedef struct prachSchInfo
689 {
690    uint8_t  numPrachOcas;   /* Num Prach Ocassions */
691    uint8_t  prachFormat;    /* PRACH Format */
692    uint8_t  numRa;          /* Freq domain ocassion */
693    uint8_t  prachStartSymb; /* Freq domain ocassion */
694 }PrachSchInfo;
695
696 /* Interface structure signifying DL broadcast allocation for SSB, SIB1 */
697 typedef struct dlBrdcstAlloc
698 {
699    /* Ssb transmission is determined as follows:
700     * 0 : No tranamission
701     * 1 : SSB Transmission
702     * 2 : SSB Repetition */
703    uint8_t ssbTrans;
704    uint8_t ssbIdxSupported;
705    SsbInfo ssbInfo[MAX_SSB_IDX];
706    /* Sib1 transmission is determined as follows:
707     * 0 : No tranamission
708     * 1 : SIB1 Transmission
709     * 2 : SIB1 Repetition */
710    uint8_t sib1Trans;
711    Sib1AllocInfo sib1Alloc;
712 }DlBrdcstAlloc;
713
714 typedef struct rarInfo
715 {
716    uint16_t        raRnti;
717    uint8_t         RAPID;
718    uint16_t        ta;
719    FreqDomainAlloc msg3FreqAlloc;
720    uint16_t        tcrnti;
721    uint8_t         rarPdu[RAR_PAYLOAD_SIZE];
722    uint8_t         rarPduLen;
723 }RarInfo;
724
725 typedef struct rarAlloc
726 {
727    RarInfo rarInfo;
728    BwpCfg  bwp;
729    PdcchCfg rarPdcchCfg;
730    PdschCfg rarPdschCfg;
731 }RarAlloc;
732
733 typedef struct dlMsgInfo
734 {
735    uint16_t crnti;
736    uint8_t  ndi;
737    uint8_t  harqProcNum;
738    uint8_t  dlAssignIdx;
739    uint8_t  pucchTpc;
740    uint8_t  pucchResInd;
741    uint8_t  harqFeedbackInd;
742    uint8_t  dciFormatId;
743    bool     isMsg4Pdu;
744    uint16_t  dlMsgPduLen;
745    uint8_t  *dlMsgPdu;
746 }DlMsgInfo;
747
748 typedef struct lcSchInfo
749 {
750    uint8_t   lcId;
751    uint32_t  schBytes; /* Number of scheduled bytes */
752 }LcSchInfo;
753
754 typedef struct dlMsgAlloc
755 {
756    uint16_t   crnti;
757    uint8_t    numLc;
758    LcSchInfo  lcSchInfo[MAX_NUM_LC]; /* Scheduled LC info */
759    BwpCfg     bwp;
760    PdcchCfg   dlMsgPdcchCfg;
761    PdschCfg   dlMsgPdschCfg;
762    DlMsgInfo  dlMsgInfo;
763 }DlMsgAlloc;
764
765 typedef struct schSlotValue
766 {
767    SlotIndInfo currentTime;
768    SlotIndInfo broadcastTime;
769    SlotIndInfo rarTime;
770    SlotIndInfo dlMsgTime;
771    SlotIndInfo ulDciTime;
772 }SchSlotValue;
773
774 typedef struct format0_0
775 {
776    uint8_t         resourceAllocType;
777    /* since we are using type-1, hence rbBitmap excluded */
778    FreqDomainAlloc freqAlloc;
779    TimeDomainAlloc timeAlloc;
780    uint16_t        rowIndex;
781    uint8_t         mcs;
782    uint8_t         harqProcId;   /* HARQ Process ID */
783    bool            puschHopFlag;
784    bool            freqHopFlag;
785    uint8_t         ndi;    /* NDI */
786    uint8_t         rv;     /* Redundancy Version */
787    uint8_t         tpcCmd;
788    bool            sUlCfgd;
789 }Format0_0;
790
791 typedef struct format0_1
792 {
793 /* TBD */
794
795 }Format0_1;
796
797 typedef struct format1_0
798 {
799 /* TBD */
800
801 }Format1_0;
802
803 typedef struct format1_1
804 {
805 /* TBD */
806 }Format1_1;
807
808 typedef struct dciInfo
809 {
810    uint16_t      cellId;   
811    uint16_t      crnti;          /* CRNI */
812    SlotIndInfo   slotIndInfo;    /* Slot Info: sfn, slot number */
813    BwpCfg        bwpCfg;         /* BWP Cfg */
814    CoresetCfg    coresetCfg;     /* Coreset1 Cfg */
815    FormatType    formatType;     /* DCI Format */
816    union
817    {
818       Format0_0  format0_0;      /* Format 0_0 */
819       Format0_1  format0_1;      /* Format 0_1 */
820       Format1_0  format1_0;      /* Format 1_0 */
821       Format1_1  format1_1;      /* Format 1_1 */
822    }format;
823    DlDCI    dciInfo;
824 }DciInfo;
825
826
827 typedef struct dlSchedInfo
828 {
829    uint16_t cellId;  /* Cell Id */
830    SchSlotValue schSlotValue;
831
832    /* Allocation for broadcast messages */
833    bool isBroadcastPres;
834    DlBrdcstAlloc brdcstAlloc;
835
836    /* Allocation for RAR message */
837    //uint8_t isRarPres;
838    RarAlloc *rarAlloc;
839
840    /* Allocation from MSG4 */
841    //Msg4Alloc *msg4Alloc;
842
843    /* UL grant in response to BSR */
844    DciInfo    *ulGrant;
845
846    /* Allocation from dedicated DL msg */
847    DlMsgAlloc *dlMsgAlloc;
848
849 }DlSchedInfo;
850
851 typedef struct tbInfo
852 {
853    uint8_t  qamOrder;  /* Modulation Order */
854    uint8_t  mcs;       /* MCS */
855    SchMcsTable  mcsTable;  /* MCS Table */
856    uint8_t  ndi;       /* NDI */
857    uint8_t  rv;        /* Redundancy Version */
858    uint16_t tbSize;    /* TB Size */
859 }TbInfo;
860
861 typedef struct schPuschInfo
862 {
863    uint16_t         crnti;
864    uint8_t          harqProcId;   /* HARQ Process ID */
865    uint8_t          resAllocType; /* Resource allocation type */
866    FreqDomainAlloc  fdAlloc;      /* Freq domain allocation */
867    TimeDomainAlloc  tdAlloc;      /* Time domain allocation */
868    TbInfo           tbInfo;       /* TB info */
869    uint8_t          dmrsMappingType;
870    uint8_t          nrOfDmrsSymbols;
871    uint8_t          dmrsAddPos;
872 }SchPuschInfo;
873
874 typedef struct schPucchFormatCfg
875 {
876    uint8_t interSlotFreqHop;
877    uint8_t addDmrs;
878    uint8_t maxCodeRate;
879    uint8_t numSlots;
880    bool    pi2BPSK;
881    bool    harqAckCSI;
882 }SchPucchFormatCfg;
883
884 typedef struct schPucchInfo
885 {
886    uint16_t         rnti;
887    uint8_t          pucchFormat;
888    FreqDomainAlloc  fdAlloc;      /* Freq domain allocation */
889    TimeDomainAlloc  tdAlloc;      /* Time domain allocation */
890    uint8_t          srFlag;
891    uint8_t          harqFlag;
892    uint8_t          numHarqBits;
893    uint8_t          uciFlag;
894    uint8_t          numUciBits;
895    uint8_t          intraFreqHop;
896    uint16_t         secondPrbHop;
897    uint8_t          initialCyclicShift;
898    uint8_t          occLen;
899    uint8_t          occIdx;
900    uint8_t          timeDomOCC;
901    SchPucchFormatCfg cmnFormatCfg;
902 }SchPucchInfo;
903
904 typedef struct ulSchedInfo
905 {
906    uint16_t      cellId;         /* Cell Id */
907    uint16_t      crnti;          /* CRNI */
908    SlotIndInfo   slotIndInfo;    /* Slot Info: sfn, slot number */
909    uint8_t       dataType;       /* Type of info being scheduled */
910    PrachSchInfo  prachSchInfo;   /* Prach scheduling info */
911    SchPuschInfo  schPuschInfo;   /* Pusch scheduling info */
912    SchPucchInfo  schPucchInfo;   /* Pusch scheduling info */
913 }UlSchedInfo;
914
915 typedef struct rachIndInfo
916 {
917    uint16_t    cellId;
918    uint16_t    crnti;
919    SlotIndInfo timingInfo;
920    uint8_t     slotIdx;
921    uint8_t     symbolIdx;
922    uint8_t     freqIdx;
923    uint8_t     preambleIdx;
924    uint16_t    timingAdv;
925 }RachIndInfo;
926
927
928 typedef struct crcIndInfo
929 {
930    uint16_t    cellId;
931    uint16_t    crnti;
932    SlotIndInfo timingInfo;
933    uint16_t    numCrcInd;
934    uint8_t     crcInd[MAX_NUMBER_OF_CRC_IND_BITS];
935 }CrcIndInfo;
936
937 typedef struct boInfo
938 {
939    uint8_t   lcId;
940    uint32_t  dataVolume;
941 }BOInfo;
942
943 typedef struct dlRlcBOInfo
944 {
945    uint16_t    cellId;
946    uint16_t    crnti;
947    uint8_t     lcId;
948    uint32_t    dataVolume;
949 }DlRlcBoInfo;
950
951 /* Info of Scheduling Request to Add/Modify */
952 typedef struct schSchedReqInfo
953 {
954    uint8_t              schedReqId;
955    SchSrProhibitTimer   srProhibitTmr;
956    SchSrTransMax        srTransMax;
957 }SchSchedReqInfo;
958
959 /* Scheduling Request Configuration */
960 typedef struct schSchedReqCfg
961 {
962    uint8_t          addModListCount;
963    SchSchedReqInfo  addModList[MAX_NUM_SR_CFG_PER_CELL_GRP];   /* List of Scheduling req to be added/modified */
964    uint8_t          relListCount;
965    uint8_t          relList[MAX_NUM_SR_CFG_PER_CELL_GRP];      /* list of scheduling request Id to be deleted */
966 }SchSchedReqCfg;
967
968 /* Info of Tag to Add/Modify */
969 typedef struct schTagInfo
970 {
971    uint8_t       tagId;
972    SchTimeAlignmentTimer  timeAlignmentTmr;
973 }SchTagInfo;
974
975 /* Timing Advance Group Configuration */
976 typedef struct schTagCfg
977 {
978    uint8_t      addModListCount;
979    SchTagInfo   addModList[MAX_NUM_TAGS];    /* List of Tag to Add/Modify */
980    uint8_t      relListCount;
981    uint8_t      relList[MAX_NUM_TAGS];       /* list of Tag Id to release */
982 }SchTagCfg;
983
984 /* Configuration for Power headroom reporting */
985 typedef struct schPhrCfg
986 {
987    SchPhrPeriodicTimer       periodicTmr;
988    SchPhrProhibitTimer       prohibitTmr;
989    SchPhrTxPwrFactorChange   txpowerFactorChange;
990    bool                      multiplePhr;
991    bool                      dummy;
992    bool                      type2OtherCell;
993    SchPhrModeOtherCG         modeOtherCG;
994 }SchPhrCfg;
995
996 /* MAC cell Group configuration */
997 typedef struct schMacCellGrpCfg
998 {
999    SchSchedReqCfg   schedReqCfg;
1000    SchTagCfg        tagCfg;
1001    SchPhrCfg        phrCfg;             /* To be used only if phrCfgSetupPres is true */      
1002 }SchMacCellGrpCfg;
1003
1004 /* Physical Cell Group Configuration */
1005 typedef struct schPhyCellGrpCfg
1006 {
1007    SchPdschHarqAckCodebook    pdschHarqAckCodebook;
1008    int8_t     pNrFr1;
1009 }SchPhyCellGrpCfg;
1010
1011 /* Control resource set info */
1012 typedef struct schControlRsrcSet
1013 {
1014    uint8_t             cRSetId;                /* Control resource set id */
1015    uint8_t             freqDomainRsrc[FREQ_DOM_RSRC_SIZE];  /* Frequency domain resource */
1016    uint8_t             duration;
1017    SchREGMappingType   cceRegMappingType;
1018    SchPrecoderGranul   precoderGranularity;
1019    uint16_t            dmrsScramblingId;
1020 }SchControlRsrcSet;
1021
1022 /* Search Space info */
1023 typedef struct schSearchSpace
1024 {
1025    uint8_t                  searchSpaceId;
1026    uint8_t                  cRSetId;
1027    SchMSlotPeriodAndOffset  mSlotPeriodicityAndOffset;
1028    uint8_t                  mSymbolsWithinSlot[MONITORING_SYMB_WITHIN_SLOT_SIZE];
1029    SchAggrLevel             numCandidatesAggLevel1;      /* Number of candidates for aggregation level 1 */
1030    SchAggrLevel             numCandidatesAggLevel2;      /* Number of candidates for aggregation level 2 */
1031    SchAggrLevel             numCandidatesAggLevel4;      /* Number of candidates for aggregation level 4 */
1032    SchAggrLevel             numCandidatesAggLevel8;      /* Number of candidates for aggregation level 8 */
1033    SchAggrLevel             numCandidatesAggLevel16;     /* Number of candidates for aggregation level 16 */
1034    SchSearchSpaceType       searchSpaceType;
1035    uint8_t                  ueSpecificDciFormat;
1036 }SchSearchSpace;
1037
1038 /* PDCCH cofniguration */
1039 typedef struct schPdcchConfig
1040 {
1041    uint8_t           numCRsetToAddMod;
1042    SchControlRsrcSet  cRSetToAddModList[MAX_NUM_CRSET];           /* List of control resource set to add/modify */
1043    uint8_t           numCRsetToRel;
1044    uint8_t           cRSetToRelList[MAX_NUM_CRSET];              /* List of control resource set to release */
1045    uint8_t           numSearchSpcToAddMod;
1046    SchSearchSpace    searchSpcToAddModList[MAX_NUM_SEARCH_SPC];  /* List of search space to add/modify */
1047    uint8_t           numSearchSpcToRel;
1048    uint8_t           searchSpcToRelList[MAX_NUM_SEARCH_SPC];     /* List of search space to release */
1049 }SchPdcchConfig;
1050
1051 /* PDSCH time domain resource allocation */
1052 typedef struct schPdschTimeDomRsrcAlloc
1053 {
1054    SchTimeDomRsrcAllocMappingType    mappingType;
1055    uint8_t    startSymbol;
1056    uint8_t    symbolLength;
1057 }SchPdschTimeDomRsrcAlloc;
1058
1059
1060 typedef struct schPdschBundling
1061 {
1062    struct schStaticBundling
1063    {
1064      SchBundlingSizeSet2 size;
1065    }SchStaticBundling;
1066    struct schDynamicBundling
1067    {
1068      SchBundlingSizeSet1 sizeSet1;
1069      SchBundlingSizeSet2 sizeSet2;
1070    }SchDynamicBundling;
1071 }SchPdschBundling;
1072
1073 /* DMRS downlink configuration */
1074 typedef struct schDmrsDlCfg
1075 {
1076    SchDmrsAdditionPosition   addPos;       /* DMRS additional position */
1077 }SchDmrsDlCfg;
1078
1079 /* PDSCH Configuration */
1080 typedef struct schPdschConfig
1081 {
1082    SchDmrsDlCfg               dmrsDlCfgForPdschMapTypeA;
1083    SchResourceAllocType       resourceAllocType;
1084    uint8_t                    numTimeDomRsrcAlloc;
1085    SchPdschTimeDomRsrcAlloc   timeDomRsrcAllociList[MAX_NUM_DL_ALLOC]; /* PDSCH time domain DL resource allocation list */
1086    SchRBGSize                 rbgSize;
1087    SchCodeWordsSchedByDci     numCodeWordsSchByDci;                    /* Number of code words scheduled by DCI */
1088    SchBundlingType            bundlingType;
1089    SchPdschBundling           bundlingInfo;
1090 }SchPdschConfig;
1091
1092 /* Initial Downlink BWP */
1093 typedef struct schInitalDlBwp
1094 {
1095    bool             pdcchCfgPres;
1096    SchPdcchConfig   pdcchCfg;
1097    bool             pdschCfgPres;
1098    SchPdschConfig   pdschCfg;
1099 }SchInitalDlBwp;
1100
1101 /* BWP Downlink common */
1102 typedef struct schBwpDlCommon
1103 {
1104 }SchBwpDlCommon;
1105
1106 /* Downlink BWP information */
1107 typedef struct schDlBwpInfo
1108 {
1109    uint8_t          bwpId;
1110 }SchDlBwpInfo;
1111
1112 /* PDCCH Serving Cell configuration */
1113 typedef struct schPdschServCellCfg
1114 {
1115    uint8_t                  *maxMimoLayers;           
1116    SchNumHarqProcForPdsch   numHarqProcForPdsch;
1117    SchMaxCodeBlkGrpPerTB    *maxCodeBlkGrpPerTb;
1118    bool                     *codeBlkGrpFlushInd;
1119    SchPdschXOverhead        *xOverhead;
1120 }SchPdschServCellCfg;
1121
1122 /* PUCCH Configuration */
1123 typedef struct schPucchResrcSetInfo
1124 {
1125    uint8_t resrcSetId;
1126    uint8_t resrcListCount;
1127    uint8_t resrcList[MAX_NUM_PUCCH_PER_RESRC_SET];
1128    uint8_t maxPayLoadSize;
1129 }SchPucchResrcSetInfo;
1130
1131 typedef struct schPucchResrcSetCfg
1132 {
1133    uint8_t resrcSetToAddModListCount;
1134    SchPucchResrcSetInfo resrcSetToAddModList[MAX_NUM_PUCCH_RESRC_SET];
1135    uint8_t resrcSetToRelListCount;
1136    uint8_t resrcSetToRelList[MAX_NUM_PUCCH_RESRC];
1137 }SchPucchResrcSetCfg;
1138
1139 typedef struct schPucchFormat0
1140 {
1141    uint8_t initialCyclicShift;
1142    uint8_t numSymbols;
1143    uint8_t startSymbolIdx;
1144 }SchPucchFormat0;
1145
1146 typedef struct schPucchFormat1
1147 {
1148    uint8_t initialCyclicShift;
1149    uint8_t numSymbols;
1150    uint8_t startSymbolIdx;
1151    uint8_t timeDomOCC;
1152 }SchPucchFormat1;
1153
1154 typedef struct schPucchFormat2_3
1155 {
1156    uint8_t numPrbs;
1157    uint8_t numSymbols;
1158    uint8_t startSymbolIdx;
1159 }SchPucchFormat2_3;
1160
1161 typedef struct schPucchFormat4
1162 {
1163    uint8_t numSymbols;
1164    uint8_t occLen;
1165    uint8_t occIdx;
1166    uint8_t startSymbolIdx;
1167 }SchPucchFormat4;
1168
1169 typedef struct schPucchResrcInfo
1170 {
1171    uint8_t  resrcId;
1172    uint16_t startPrb;
1173    uint8_t  intraFreqHop;
1174    uint16_t secondPrbHop;
1175    uint8_t  pucchFormat;
1176    union{
1177       SchPucchFormat0   *format0; 
1178       SchPucchFormat1   *format1;
1179       SchPucchFormat2_3 *format2;
1180       SchPucchFormat2_3 *format3;
1181       SchPucchFormat4   *format4;
1182    }SchPucchFormat;
1183 }SchPucchResrcInfo;
1184
1185 typedef struct schPucchResrcCfg
1186 {
1187    uint8_t resrcToAddModListCount;
1188    SchPucchResrcInfo resrcToAddModList[MAX_NUM_PUCCH_RESRC];
1189    uint8_t resrcToRelListCount;
1190    uint8_t resrcToRelList[MAX_NUM_PUCCH_RESRC];
1191 }SchPucchResrcCfg;
1192
1193
1194 typedef struct schSchedReqResrcInfo
1195 {
1196    uint8_t resrcId;
1197    uint8_t requestId;
1198    uint8_t periodicity;
1199    uint16_t offset;
1200    uint8_t resrc;
1201 }SchSchedReqResrcInfo;
1202
1203 typedef struct schPucchSchedReqCfg
1204 {
1205    uint8_t           schedAddModListCount;
1206    SchSchedReqResrcInfo schedAddModList[MAX_NUM_SR_CFG_PER_CELL_GRP];
1207    uint8_t           schedRelListCount;
1208    uint8_t           schedRelList[MAX_NUM_SR_CFG_PER_CELL_GRP];
1209 }SchPucchSchedReqCfg;
1210
1211 typedef struct schSpatialRelationInfo
1212 {
1213    uint8_t spatialRelationId;
1214    uint8_t servCellIdx;
1215    uint8_t pathLossRefRSId;
1216    uint8_t p0PucchId;
1217    uint8_t closeLoopIdx;
1218 }SchSpatialRelationInfo;
1219
1220 typedef struct schPucchSpatialCfg
1221 {
1222    uint8_t spatialAddModListCount;
1223    SchSpatialRelationInfo spatialAddModList[MAX_NUM_SPATIAL_RELATIONS];
1224    uint8_t spatialRelListCount;
1225    uint8_t spatialRelList[MAX_NUM_SPATIAL_RELATIONS];
1226 }SchPucchSpatialCfg;
1227
1228 typedef struct schP0PucchCfg
1229 {
1230    uint8_t p0PucchId;
1231    int     p0PucchVal;
1232 }SchP0PucchCfg;
1233
1234 typedef struct schPathLossRefRSCfg
1235 {
1236    uint8_t pathLossRefRSId;
1237 }SchPathLossRefRSCfg;
1238
1239 typedef struct schPucchMultiCsiCfg
1240 {
1241    uint8_t  multiCsiResrcListCount;
1242    uint8_t  multiCsiResrcList[MAX_NUM_PUCCH_RESRC-1];
1243 }SchPucchMultiCsiCfg;
1244
1245 typedef struct schPucchDlDataToUlAck
1246 {
1247    uint8_t  dlDataToUlAckListCount;
1248    uint8_t  dlDataToUlAckList[MAX_NUM_DL_DATA_TO_UL_ACK];
1249 }SchPucchDlDataToUlAck;
1250
1251 typedef struct schPucchPowerControl
1252 {
1253    int deltaF_Format0;
1254    int deltaF_Format1;
1255    int deltaF_Format2;
1256    int deltaF_Format3;
1257    int deltaF_Format4;
1258    uint8_t p0SetCount;
1259    SchP0PucchCfg p0Set[MAX_NUM_PUCCH_P0_PER_SET];
1260    uint8_t pathLossRefRSListCount;
1261    SchPathLossRefRSCfg pathLossRefRSList[MAX_NUM_PATH_LOSS_REF_RS];
1262 }SchPucchPowerControl;
1263
1264 typedef struct schPucchCfg
1265 {
1266    SchPucchResrcSetCfg   *resrcSet;
1267    SchPucchResrcCfg      *resrc;
1268    SchPucchFormatCfg     *format1; 
1269    SchPucchFormatCfg     *format2; 
1270    SchPucchFormatCfg     *format3; 
1271    SchPucchFormatCfg     *format4;
1272    SchPucchSchedReqCfg   *schedReq;
1273    SchPucchMultiCsiCfg   *multiCsiCfg;
1274    SchPucchSpatialCfg    *spatialInfo;
1275    SchPucchDlDataToUlAck *dlDataToUlAck;
1276    SchPucchPowerControl  *powerControl;
1277 }SchPucchCfg;
1278
1279 /* Transform precoding disabled */
1280 typedef struct schTransPrecodDisabled
1281 {
1282    uint16_t   scramblingId0;
1283 }SchTransPrecodDisabled;
1284
1285 /* DMRS Uplink configuration */
1286 typedef struct SchDmrsUlCfg
1287 {
1288    SchDmrsAdditionPosition    addPos;               /* DMRS additional position */
1289    SchTransPrecodDisabled     transPrecodDisabled;  /* Transform precoding disabled */
1290 }SchDmrsUlCfg;
1291
1292 /* PUSCH Time Domain Resource Allocation */
1293 typedef struct schPuschTimeDomRsrcAlloc
1294 {
1295    uint8_t   k2;
1296    SchTimeDomRsrcAllocMappingType   mappingType;
1297    uint8_t   startSymbol;
1298    uint8_t   symbolLength;
1299 }SchPuschTimeDomRsrcAlloc;
1300
1301 /* PUSCH Configuration */
1302 typedef struct schPuschCfg
1303 {
1304    uint8_t                    dataScramblingId;
1305    SchDmrsUlCfg               dmrsUlCfgForPuschMapTypeA;
1306    SchResourceAllocType       resourceAllocType;
1307    uint8_t                    numTimeDomRsrcAlloc;
1308    SchPuschTimeDomRsrcAlloc   timeDomRsrcAllocList[MAX_NUM_UL_ALLOC]; /* PUSCH time domain UL resource allocation list */
1309    SchTransformPrecoder       transformPrecoder;
1310 }SchPuschCfg;
1311
1312 /* Initial Uplink BWP */
1313 typedef struct schInitialUlBwp
1314 {
1315    bool          pucchCfgPres;
1316    SchPucchCfg   pucchCfg;
1317    bool          puschCfgPres;
1318    SchPuschCfg   puschCfg;
1319 }SchInitialUlBwp;
1320
1321 /* Uplink BWP information */
1322 typedef struct schUlBwpInfo
1323 {
1324    uint8_t        bwpId;
1325 }SchUlBwpInfo;
1326
1327 /* Serving cell configuration */
1328 typedef struct schServCellCfgInfo
1329 {
1330    SchInitalDlBwp        initDlBwp;
1331    uint8_t               numDlBwpToAdd;
1332    SchDlBwpInfo          DlBwpToAddList[MAX_NUM_BWP];
1333    uint8_t               firstActvDlBwpId;
1334    uint8_t               defaultDlBwpId;
1335    uint8_t               *bwpInactivityTmr;
1336    SchPdschServCellCfg   pdschServCellCfg;
1337    SchInitialUlBwp       initUlBwp;
1338    uint8_t               numUlBwpToAdd;
1339    SchUlBwpInfo          UlBwpToAddList[MAX_NUM_BWP];
1340    uint8_t               firstActvUlBwpId;
1341 }SchServCellCfgInfo;
1342
1343 typedef struct schNonDynFiveQi
1344 {
1345    uint16_t   fiveQi;
1346    uint8_t    priorLevel;
1347    uint16_t   avgWindow;
1348    uint16_t   maxDataBurstVol;
1349 }SchNonDynFiveQi;
1350
1351 typedef struct schDynFiveQi
1352 {
1353    uint8_t    priorLevel;
1354    uint16_t   packetDelayBudget;
1355    uint8_t    packetErrRateScalar;
1356    uint8_t    packetErrRateExp;
1357    uint16_t   fiveQi;
1358    uint8_t    delayCritical;
1359    uint16_t   avgWindow;
1360    uint16_t   maxDataBurstVol;
1361 }SchDynFiveQi;
1362
1363 typedef struct schNgRanAllocAndRetPri
1364 {
1365    uint8_t priorityLevel;
1366    uint8_t preEmptionCap;
1367    uint8_t preEmptionVul;
1368 }SchNgRanAllocAndRetPri;
1369
1370 typedef struct schGrbQosFlowInfo
1371 {
1372    uint32_t maxFlowBitRateDl;
1373    uint32_t maxFlowBitRateUl;
1374    uint32_t guarFlowBitRateDl;
1375    uint32_t guarFlowBitRateUl;
1376 }SchGrbQosFlowInfo;
1377
1378 /* DRB QoS */
1379 typedef struct schDrbQos
1380 {
1381    SchQosType  fiveQiType;   /* Dynamic or non-dynamic */ 
1382    union
1383    {
1384       SchNonDynFiveQi   nonDyn5Qi;
1385       SchDynFiveQi      dyn5Qi;
1386    }u;
1387    SchNgRanAllocAndRetPri  ngRanRetPri;
1388    SchGrbQosFlowInfo       grbQosFlowInfo;
1389    uint16_t                pduSessionId;
1390    uint32_t                ulPduSessAggMaxBitRate;   /* UL PDU Session Aggregate max bit rate */
1391 }SchDrbQosInfo;
1392
1393 typedef struct schSnssai
1394 {
1395    uint8_t   sst;
1396    uint8_t   sd[SD_SIZE];
1397 }SchSnssai;
1398
1399 /* Special cell configuration */
1400 typedef struct schSpCellCfg
1401 {
1402    uint8_t           servCellIdx;
1403    SchServCellCfgInfo   servCellCfg;
1404 }SchSpCellCfg;
1405
1406 /* Uplink logical channel configuration */
1407 typedef struct SchUlLcCfg
1408 {
1409    uint8_t priority;
1410    uint8_t lcGroup;
1411    uint8_t schReqId;
1412    uint8_t pbr;        // prioritisedBitRate
1413    uint8_t bsd;        // bucketSizeDuration
1414 }SchUlLcCfg;
1415
1416 /* Downlink logical channel configuration */
1417 typedef struct schDlLcCfg
1418 {
1419    uint8_t lcp;      // logical Channel Prioritization
1420 }SchDlLcCfg;
1421
1422 /* Logical Channel configuration */
1423 typedef struct schLcCfg
1424 {
1425    ConfigType     configType;
1426    uint8_t        lcId;
1427    SchDrbQosInfo  *drbQos;
1428    SchSnssai      *snssai;
1429    SchDlLcCfg     dlLcCfg;
1430    SchUlLcCfg     ulLcCfg;
1431 }SchLcCfg;
1432
1433 /* Aggregate max bit rate */
1434 typedef struct schAmbrCfg
1435 {
1436    uint32_t   ulBr;   /* Ul BitRate */
1437 }SchAmbrCfg;
1438
1439 typedef struct schModulationInfo
1440 {
1441    uint8_t      modOrder;
1442    uint8_t      mcsIndex;
1443    SchMcsTable  mcsTable;
1444 }SchModulationInfo;
1445
1446 /* UE configuration */
1447 typedef struct schUeCfg
1448 {
1449    uint16_t        cellId;
1450    uint16_t        crnti;
1451    bool macCellGrpCfgPres;
1452    SchMacCellGrpCfg   macCellGrpCfg;
1453    bool phyCellGrpCfgPres;
1454    SchPhyCellGrpCfg   phyCellGrpCfg;
1455    bool spCellCfgPres;
1456    SchSpCellCfg       spCellCfg;
1457    SchAmbrCfg         *ambrCfg;
1458    SchModulationInfo  dlModInfo;
1459    SchModulationInfo  ulModInfo;
1460    uint8_t            numLcs;
1461    SchLcCfg           schLcCfg[MAX_NUM_LC];
1462 }SchUeCfg;
1463
1464 typedef struct schUeCfgRsp
1465 {
1466    uint16_t   ueIdx;
1467    uint16_t   cellId;
1468    uint16_t   crnti;
1469    SchMacRsp  rsp;
1470    SchFailureCause cause;
1471 }SchUeCfgRsp;
1472
1473 typedef struct schUeDelete
1474 {
1475    uint16_t   cellId;
1476    uint16_t   crnti;
1477 }SchUeDelete;
1478
1479 typedef struct schUeDeleteRsp
1480 {
1481    uint16_t   cellId;
1482    uint16_t   crnti;
1483    SchMacRsp  rsp;
1484    ErrorCause cause;
1485 }SchUeDeleteRsp;
1486
1487 typedef struct schCellDelete 
1488 {
1489    uint16_t   cellId;
1490 }SchCellDelete;
1491
1492
1493 typedef struct schCellDeleteRsp
1494 {
1495    uint16_t   cellId;
1496    SchMacRsp  rsp;
1497 }SchCellDeleteRsp;
1498
1499 typedef struct dataVolInfo
1500 {
1501    uint8_t  lcgId;
1502    uint32_t dataVol;
1503 }DataVolInfo;
1504
1505 typedef struct ulBufferStatusRptInd
1506 {
1507    uint16_t    cellId;
1508    uint16_t    crnti;
1509    BsrType     bsrType;
1510    uint8_t     numLcg;
1511    DataVolInfo dataVolInfo[MAX_NUM_LOGICAL_CHANNEL_GROUPS];
1512 }UlBufferStatusRptInd;
1513
1514 typedef struct srUciIndInfo
1515 {
1516    uint16_t    cellId;
1517    uint16_t    crnti;
1518    SlotIndInfo slotInd;
1519    uint8_t     numSrBits;
1520    uint8_t     srPayload[MAX_SR_BITS_IN_BYTES];
1521 }SrUciIndInfo;
1522
1523 /* function pointers */
1524
1525 typedef uint8_t (*SchCellCfgCfmFunc)    ARGS((
1526          Pst            *pst,           /* Post Structure */                         
1527          SchCellCfgCfm  *schCellCfgCfm  /* Cell Cfg Cfm */
1528          ));
1529
1530 typedef uint8_t (*SchCellCfgFunc)    ARGS((
1531          Pst         *pst,           /* Post Structure */                         
1532          SchCellCfg  *schCellCfg     /* Cell Cfg  */
1533          ));
1534
1535 typedef uint8_t (*SchMacDlAllocFunc)     ARGS((                     
1536          Pst            *pst,          /* Post Structure */                         
1537          DlSchedInfo    *dlSchedInfo   /* dl allocation Info */                      
1538          ));
1539
1540 typedef uint8_t (*SchMacUlSchInfoFunc)     ARGS((                     
1541          Pst         *pst,           /* Post Structure */                         
1542          UlSchedInfo *ulSchedInfo    /* UL Alloc Sch  Info */                      
1543          ));
1544
1545 typedef uint8_t (*MacSchRachIndFunc) ARGS((
1546          Pst         *pst,         /* Post structure */
1547          RachIndInfo *rachInd));    /* Rach Indication Info */
1548
1549 typedef uint8_t (*MacSchCrcIndFunc) ARGS(( 
1550          Pst         *pst,         /* Post structure */
1551          CrcIndInfo  *crcInd));     /* CRC Info */
1552
1553 typedef uint8_t (*MacSchDlRlcBoInfoFunc) ARGS((
1554          Pst         *pst,         /* Post structure */
1555          DlRlcBoInfo *dlBoInfo));   /* DL BO Info */
1556
1557 typedef uint8_t (*MacSchAddUeConfigReqFunc) ARGS((
1558          Pst         *pst,           /* Post structure */
1559          SchUeCfg    *ueCfgToSch));   /* Scheduler UE Cfg */
1560
1561 typedef uint8_t (*SchUeCfgRspFunc) ARGS((
1562          Pst         *pst,           /* Post structure */
1563          SchUeCfgRsp *cfgRsp));       /* Scheduler UE Cfg response */
1564
1565 typedef uint8_t (*MacSchSlotIndFunc) ARGS((
1566          Pst         *pst,          /* Post structure */
1567          SlotIndInfo *slotInd));    /* Slot Info */
1568
1569 typedef uint8_t (*MacSchBsrFunc)       ARGS((
1570    Pst                  *pst,
1571    UlBufferStatusRptInd *bsrInd
1572 ));
1573
1574 typedef uint8_t (*MacSchSrUciIndFunc) ARGS(( 
1575          Pst         *pst,         /* Post structure */
1576          SrUciIndInfo  *uciInd));    /* UCI IND Info */
1577
1578 typedef uint8_t (*MacSchModUeConfigReqFunc) ARGS((
1579          Pst         *pst,           /* Post structure */
1580          SchUeCfg    *ueCfgToSch));   /* Scheduler UE Cfg */
1581
1582 typedef uint8_t (*SchUeReCfgRspFunc) ARGS((
1583          Pst         *pst,           /* Post structure */
1584          SchUeCfgRsp *cfgRsp));       /* Scheduler UE Cfg response */
1585
1586 typedef uint8_t (*MacSchUeDeleteReqFunc) ARGS((
1587    Pst         *pst,           /* Post structure */
1588    SchUeDelete *schUeDel)); /*Scheduler UE Del*/
1589
1590 typedef uint8_t (*SchUeDeleteRspFunc) ARGS((
1591    Pst          *pst,           /* Post structure */
1592    SchUeDeleteRsp *delRsp));       /* Scheduler UE delete response */
1593
1594 typedef uint8_t (*MacSchCellDeleteReqFunc) ARGS((
1595    Pst         *pst,           /* Post structure */
1596    SchCellDelete *schCellDelete)); /*Scheduler UE Del*/
1597
1598 typedef uint8_t (*SchCellDeleteRspFunc) ARGS((
1599    Pst          *pst,           /* Post structure */
1600    SchCellDeleteRsp *schCellDeleteRsp));       /* Scheduler UE delete response */
1601
1602 /* function declarations */
1603 uint8_t packMacSchSlotInd(Pst *pst, SlotIndInfo *slotInd);
1604 uint8_t packSchMacDlAlloc(Pst *pst, DlSchedInfo  *dlSchedInfo);
1605 uint8_t packSchMacUlSchInfo(Pst *pst, UlSchedInfo *ulSchedInfo);
1606 uint8_t packSchCellCfg(Pst *pst, SchCellCfg  *schCellCfg);
1607 uint8_t packSchCellCfgCfm(Pst *pst, SchCellCfgCfm  *schCellCfgCfm);
1608 uint8_t MacProcDlAlloc(Pst *pst, DlSchedInfo *dlSchedInfo);
1609 uint8_t MacProcSchCellCfg(Pst *pst, SchCellCfg  *schCellCfg);
1610 uint8_t MacProcSchCellCfgCfm(Pst *pst, SchCellCfgCfm  *schCellCfgCfm);
1611 uint8_t SchHdlCellCfgReq(Pst *pst, SchCellCfg *schCellCfg);
1612 uint8_t schActvInit(Ent entity, Inst instId, Region region, Reason reason);
1613 uint8_t SchSendCfgCfm(Pst *pst, RgMngmt *cfm);
1614 uint8_t MacProcUlSchInfo(Pst *pst, UlSchedInfo *ulSchedInfo);
1615 uint8_t packMacSchRachInd(Pst *pst, RachIndInfo *rachInd);
1616 uint8_t MacSchRachInd(Pst *pst, RachIndInfo *rachInd);
1617 uint8_t packMacSchCrcInd(Pst *pst, CrcIndInfo *crcInd);
1618 uint8_t MacSchCrcInd(Pst *pst, CrcIndInfo *crcInd);
1619 uint8_t packMacSchDlRlcBoInfo(Pst *pst, DlRlcBoInfo *dlBoInfo);
1620 uint8_t MacSchDlRlcBoInfo(Pst *pst, DlRlcBoInfo *dlBoInfo);
1621 uint8_t packMacSchAddUeConfigReq(Pst *pst, SchUeCfg *ueCfgToSch);
1622 uint8_t MacSchAddUeConfigReq(Pst *pst, SchUeCfg *ueCfgToSch);
1623 uint8_t packSchUeCfgRsp(Pst *pst, SchUeCfgRsp *cfgRsp);
1624 uint8_t MacProcSchUeCfgRsp(Pst *pst, SchUeCfgRsp *cfgRsp);
1625 uint8_t MacSchSlotInd ARGS((Pst * pst, SlotIndInfo * slotInd));
1626 uint8_t packMacSchSlotInd(Pst * pst, SlotIndInfo * slotInd);
1627 uint8_t unpackMacSchSlotInd(MacSchSlotIndFunc func, Pst *pst, Buffer  *mBuf);
1628 uint8_t packMacSchBsr(Pst *pst, UlBufferStatusRptInd *bsrInd);
1629 uint8_t MacSchBsr(Pst *pst, UlBufferStatusRptInd *bsrInd);
1630 uint8_t packMacSchSrUciInd(Pst *pst, SrUciIndInfo *uciInd);
1631 uint8_t MacSchSrUciInd(Pst *pst, SrUciIndInfo *uciInd);
1632 uint8_t packMacSchModUeConfigReq(Pst *pst, SchUeCfg *ueCfgToSch);
1633 uint8_t MacSchModUeConfigReq(Pst *pst, SchUeCfg *ueCfgToSch);
1634 uint8_t packSchUeReconfigRsp(Pst *pst, SchUeCfgRsp *cfgRsp);
1635 uint8_t MacProcSchUeReconfigRsp(Pst *pst, SchUeCfgRsp *cfgRsp);
1636 uint8_t packMacSchUeDeleteReq(Pst *pst,  SchUeDelete *schUeDel);
1637 uint8_t MacSchUeDeleteReq(Pst *pst, SchUeDelete  *ueDelete);
1638 uint8_t packSchUeDeleteRsp(Pst *pst, SchUeDeleteRsp  *delRsp);
1639 uint8_t MacProcSchUeDeleteRsp(Pst *pst, SchUeDeleteRsp *schUeDelRsp);
1640 uint8_t packMacSchCellDeleteReq(Pst *pst,  SchCellDelete *schCellDelete);
1641 uint8_t MacSchCellDeleteReq(Pst *pst, SchCellDelete  *schCellDelete);
1642 uint8_t packSchCellDeleteRsp(Pst *pst, SchCellDeleteRsp  *schCellDeleteRsp);
1643 uint8_t MacProcSchCellDeleteRsp(Pst *pst, SchCellDeleteRsp *schCellDeleteRsp);
1644
1645 /**********************************************************************
1646   End of file
1647  **********************************************************************/
1648