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 /* Defines APIs exchanged between du_app and cl module of MAC */
23 #define NUM_NUMEROLOGY 5 /* Number of numerology */
25 #define NUM_SSB 1 /* max value is 64 */
26 #define SSB_MASK_SIZE 1 /* SSB mask size is 32bit for sub6 */
27 #define SIB1_REPETITION_PERIOD 20
28 #define CORESET_0_INDEX 0
29 #define CORESET_1_INDEX 1
30 #define CORESET_2_INDEX 2
31 #define CORESET_3_INDEX 3
32 #define CORESET_4_INDEX 4
33 #define SEARCHSPACE_0_INDEX 0
34 #define SEARCHSPACE_1_INDEX 1
35 #define SEARCHSPACE_2_INDEX 2
36 #define SEARCHSPACE_3_INDEX 3
37 #define SEARCHSPACE_4_INDEX 4
38 #define SS_MONITORING_SLOT_SL1 0 /* all slots */
39 #define SS_MONITORING_SYMBOL 0x2000; /* symbol-0, set 14th bit */
41 /* Macro for Ue Context */
42 #define MAX_NUM_SR_CFG_PER_CELL_GRP 8 /* Max number of scheduling request config per cell group */
43 #define MAC_NUM_TAGS 4 /* Max number of timing advance groups */
44 #define MAX_NUM_BWP 4 /* Max number of BWP per serving cell */
45 #define MAX_NUM_CRSET 3 /* Max number of control resource set in add/modify/release list */
46 #define MAX_NUM_SEARCH_SPC 10 /* Max number of search space in add/modify/release list */
47 #define MONITORING_SYMB_WITHIN_SLOT_SIZE 2 /* i.e. 2 bytes because size of monitoring symbols within slot is 14 bits */
48 #define MAX_NUM_DL_ALLOC 16 /* Max number of pdsch time domain downlink allocation */
49 #define MAX_NUM_UL_ALLOC 16 /* Max number of pusch time domain uplink allocation */
50 #define MAX_NUM_SCELL 32
52 /* PUCCH Configuration Macro */
53 #define MAX_NUM_PUCCH_RESRC 128
54 #define MAX_NUM_PUCCH_RESRC_SET 4
55 #define MAX_NUM_PUCCH_PER_RESRC_SET 32
56 #define MAX_NUM_SPATIAL_RELATIONS 8
57 #define MAX_NUM_PUCCH_P0_PER_SET 8
58 #define MAX_NUM_PATH_LOSS_REF_RS 4
59 #define MAX_NUM_DL_DATA_TO_UL_ACK 15
62 #define EVENT_MAC_CELL_CONFIG_REQ 200
63 #define EVENT_MAC_CELL_CONFIG_CFM 201
64 #define EVENT_MAC_CELL_START 202
65 #define EVENT_MAC_CELL_STOP 203
66 #define EVENT_MAC_CELL_UP_IND 204
67 #define EVENT_MAC_STOP_IND 205
68 #define EVENT_MAC_UL_CCCH_IND 206
69 #define EVENT_MAC_DL_CCCH_IND 207
70 #define EVENT_MAC_UE_CREATE_REQ 208
71 #define EVENT_MAC_UE_CREATE_RSP 209
72 #define EVENT_MAC_UE_RECONFIG_REQ 210
73 #define EVENT_MAC_UE_RECONFIG_RSP 211
74 #define EVENT_MAC_UE_DELETE_REQ 212
75 #define EVENT_MAC_UE_DELETE_RSP 213
76 #define EVENT_MAC_CELL_DELETE_REQ 214
77 #define EVENT_MAC_CELL_DELETE_RSP 215
78 #define EVENT_MAC_SLICE_CFG_REQ 216
79 #define EVENT_MAC_SLICE_CFG_RSP 217
80 #define EVENT_MAC_SLICE_RECFG_REQ 218
81 #define EVENT_MAC_SLICE_RECFG_RSP 219
82 #define EVENT_MAC_SLOT_IND 220
84 #define BSR_PERIODIC_TIMER_SF_10 10
85 #define BSR_RETX_TIMER_SF_320 320
86 #define BSR_SR_DELAY_TMR_2560 2560
88 #define GET_PAGING_CYCLE(enmValue, T) { \
89 if (enmValue == 0) T = 32; \
90 else if (enmValue == 1) T = 64; \
91 else if (enmValue == 2) T = 128; \
92 else if (enmValue == 3) T = 256; \
96 #define GET_NUM_PAGING_OCC(enmValue, PO) { \
97 if (enmValue == 0) PO = 4; \
98 else if (enmValue == 1) PO = 2; \
99 else if (enmValue == 2) PO = 1; \
103 #define PAGING_SCHED_DELTA 4
138 MAC_GEN_FULL_PBCH_PAYLD, /* MAC generated the full PBCH Payload */
139 PHY_GEN_TIMING_PBCH_BIT, /* PHY generates the timing PBCH bits */
140 PHY_GEN_FULL_PBCH_PAYLD /* PHY generates full PBCH payload */
152 RESTRICTED_SET_TYPE_A,
153 RESTRICTED_SET_TYPE_B
185 /* Enums for Ue Create Request */
187 /* SR PROHIBIT TIMER */
214 TIME_ALIGNMENT_TIMER_MS_500,
215 TIME_ALIGNMENT_TIMER_MS_750,
216 TIME_ALIGNMENT_TIMER_MS_1280,
217 TIME_ALIGNMENT_TIMER_MS_1920,
218 TIME_ALIGNMENT_TIMER_MS_2560,
219 TIME_ALIGNMENT_TIMER_MS_5120,
220 TIME_ALIGNMENT_TIMER_MS_10240,
221 TIME_ALIGNMENT_TIMER_INFINITY
226 PHR_PERIODIC_TIMER_SF_10,
227 PHR_PERIODIC_TIMER_SF_20,
228 PHR_PERIODIC_TIMER_SF_50,
229 PHR_PERIODIC_TIMER_SF_100,
230 PHR_PERIODIC_TIMER_SF_200,
231 PHR_PERIODIC_TIMER_SF_500,
232 PHR_PERIODIC_TIMER_SF_1000,
233 PHR_PERIODIC_TIMER_INFINITY
238 PHR_PROHIBIT_TIMER_SF_0,
239 PHR_PROHIBIT_TIMER_SF_10,
240 PHR_PROHIBIT_TIMER_SF_20,
241 PHR_PROHIBIT_TIMER_SF_50,
242 PHR_PROHIBIT_TIMER_SF_100,
243 PHR_PROHIBIT_TIMER_SF_200,
244 PHR_PROHIBIT_TIMER_SF_500,
245 PHR_PROHIBIT_TIMER_SF_1000
250 PHR_TX_PWR_FACTOR_CHANGE_DB_1,
251 PHR_TX_PWR_FACTOR_CHANGE_DB_3,
252 PHR_TX_PWR_FACTOR_CHANGE_DB_6,
253 PHR_TX_PWR_FACTOR_CHANGE_INFINITY
254 }PhrTxPwrFactorChange;
258 PHR_MODE_OTHER_CG_REAL,
259 PHR_MODE_OTHER_CG_VIRTUAL
264 PDSCH_HARQ_ACK_CODEBOOK_SEMISTATIC,
265 PDSCH_HARQ_ACK_CODEBOOK_DYNAMIC
266 }PdschHarqAckCodebook;
270 NUM_HARQ_PROC_FOR_PDSCH_N_2,
271 NUM_HARQ_PROC_FOR_PDSCH_N_4,
272 NUM_HARQ_PROC_FOR_PDSCH_N_6,
273 NUM_HARQ_PROC_FOR_PDSCH_N_10,
274 NUM_HARQ_PROC_FOR_PDSCH_N_16
275 }NumHarqProcForPdsch;
279 MAX_CODE_BLOCK_GROUP_PER_TB_N_2,
280 MAX_CODE_BLOCK_GROUP_PER_TB_N_4,
281 MAX_CODE_BLOCK_GROUP_PER_TB_N_6,
282 MAX_CODE_BLOCK_GROUP_PER_TB_N_8
294 TRANSFORM_PRECODER_ENABLED,
295 TRANSFORM_PRECODER_DISABLED
300 CCE_REG_MAPPINGTYPE_PR_INTERLEAVED = 1,
301 CCE_REG_MAPPINGTYPE_PR_NONINTERLEAVED
306 SLOTPERIODICITYANDOFFSET_PR_SL1 = 1,
307 SLOTPERIODICITYANDOFFSET_PR_SL2,
308 SLOTPERIODICITYANDOFFSET_PR_SL4,
309 SLOTPERIODICITYANDOFFSET_PR_SL5,
310 SLOTPERIODICITYANDOFFSET_PR_SL8,
311 SLOTPERIODICITYANDOFFSET_PR_SL10,
312 SLOTPERIODICITYANDOFFSET_PR_SL16,
313 SLOTPERIODICITYANDOFFSET_PR_SL20,
314 SLOTPERIODICITYANDOFFSET_PR_SL40,
315 SLOTPERIODICITYANDOFFSET_PR_SL80,
316 SLOTPERIODICITYANDOFFSET_PR_SL160,
317 SLOTPERIODICITYANDOFFSET_PR_SL320,
318 SLOTPERIODICITYANDOFFSET_PR_SL640,
319 SLOTPERIODICITYANDOFFSET_PR_SL1280,
320 SLOTPERIODICITYANDOFFSET_PR_SL2560
321 }MSlotPeriodAndOffset;
331 SEARCHSPACETYPE_PR_COMMON = 1,
332 SEARCHSPACETYPE_PR_UE_SPECIFIC
343 AGGREGATIONLEVEL_N0 = 0,
344 AGGREGATIONLEVEL_N1 = 1,
345 AGGREGATIONLEVEL_N2 = 2,
346 AGGREGATIONLEVEL_N3 = 3,
347 AGGREGATIONLEVEL_N4 = 4,
348 AGGREGATIONLEVEL_N5 = 5,
349 AGGREGATIONLEVEL_N6 = 6,
350 AGGREGATIONLEVEL_N8 = 7
355 ADDITIONALPOSITION_POS0,
356 ADDITIONALPOSITION_POS1,
357 ADDITIONALPOSITION_POS3
368 RESOURCEALLOCATION_TYPE0,
369 RESOURCEALLOCATION_TYPE1,
370 RESOURCEALLOCATION_DYNAMICSWITCH
381 CODEWORDS_SCHED_BY_DCI_N1,
382 CODEWORDS_SCHED_BY_DCI_N2
387 TYPE_STATIC_BUNDLING = 1,
388 TYPE_DYNAMIC_BUNDLING
401 SET1_SIZE_N2_WIDEBAND,
402 SET1_SIZE_N4_WIDEBAND
456 TRANSPORT_LAYER_FAIL,
463 UNSPECIFIED_RADIO_NW_CAUSE,
465 UNKNOWN_GNB_CU_UE_F1AP_ID,
466 ALREADY_ALLOCATED_GNB_CU_UE_F1AP_ID,
467 UNKNOWN_GNB_DU_UE_F1AP_ID,
468 ALREADY_ALLOCATED_GNB_DU_UE_F1AP_ID,
469 UNKNOWN_UE_F1AP_ID_PAIR,
470 INCONSISTENT_UE_F1AP_ID_PAIR,
471 INTERACTION_WITH_OTHER_PROCEDURE,
473 ACTION_REQUIRED_FOR_RADIO_REASONS,
474 RADIO_RESOURCES_UNAVAILABLE,
480 RESOURCES_UNAVAILABLE_FOR_SLICE
485 UNSPECIFIED_TRANSPORT_LAYER_CAUSE,
486 TRANSPORT_RESOURCE_UNAVAILABLE
491 TRANSFER_SYNTAX_ERROR,
492 ABSTRACT_SYNTAX_ERROR_REJECT,
493 ABSTRACT_SYNTAX_ERROR_IGNORE_AND_REJECT,
494 INCOMPATIBLE_MESSAGE_FOR_RECEIVER_STATE,
496 ABSTRAXCT_SYNTAX_ERROR_FALSELY_CONSTRUCTED_MSG,
497 UNSPECIFIED_PROTOCOL_CAUSE
502 CONTROL_PROCESSING_OVERLOAD,
504 PLANE_PROCESSING_RESOURCES,
506 INTERVENTION_BY_O_AND_M,
507 UNSPECIFIED_MISC_CAUSE
514 MCS_TABLE_QAM64_LOW_SE
521 RSRC_RRC_CONNECTED_USERS
526 TRANSMISSION_ALLOWED,
529 }DataTransmissionAction;
531 typedef struct failureCause
536 RadioNwLyrCause radioNwCause;
537 TransLyrCause transportCause;
538 ProtCause protcolCause;
539 MiscFailCause miscCause;
543 typedef struct carrierCfg
546 uint32_t bw; /* DL/UL bandwidth */
547 uint32_t freq; /* Absolute frequency of DL/UL point A in KHz */
548 uint16_t k0[NUM_NUMEROLOGY]; /* K0 for DL/UL */
549 uint16_t gridSize[NUM_NUMEROLOGY]; /* DL/UL Grid size for each numerologies */
550 uint16_t numAnt; /* Number of Tx/Rx antennas */
553 typedef struct ssbCfg
555 uint32_t ssbPbchPwr; /* SSB block power */
556 BchPduOpt bchPayloadFlag; /* Options for generation of payload */
557 uint8_t scsCmn; /* subcarrier spacing for common */
558 uint16_t ssbOffsetPointA; /* SSB subcarrier offset from point A */
560 SSBPeriod ssbPeriod; /* SSB Periodicity in msec */
561 uint8_t ssbScOffset; /* Subcarrier Offset */
562 uint8_t mibPdu[3]; /* MIB payload */
563 uint32_t ssbMask[SSB_MASK_SIZE]; /* Bitmap for actually transmitted SSB. */
564 uint8_t beamId[NUM_SSB];
565 bool multCarrBand; /* Multiple carriers in a band */
566 bool multCellCarr; /* Multiple cells in single carrier */
569 typedef struct fdmInfo
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 zeroCorrZoneCfg; /* Zero correlation zone cofig */
575 uint8_t numUnusedRootSeq; /* Number of unused root sequence */
576 uint8_t *unsuedRootSeq; /* Unused root sequence per FD */
579 typedef struct prachCfg
582 uint8_t prachCfgIdx; /* PRACH Cfg Index */
583 PrachSeqLen prachSeqLen; /* RACH Sequence length: Long/short */
584 uint8_t prachSubcSpacing; /* Subcarrier spacing of RACH */
585 RstSetCfg prachRstSetCfg; /* PRACH restricted set config */
586 uint16_t msg1FreqStart; /* Msg1-FrequencyStart */
587 uint8_t msg1Fdm; /* PRACH FDM (1,2,4,8) */
588 uint8_t rootSeqLen; /* Root sequence length */
589 PrachFdmInfo fdm[8]; /* FDM info */
590 uint8_t ssbPerRach; /* SSB per RACH occassion */
591 bool prachMultCarrBand; /* Multiple carriers in Band */
592 uint8_t prachRestrictedSet; /* Support for PRACH restricted set */
593 uint8_t raContResTmr; /* RA Contention Resoultion Timer */
594 uint8_t rsrpThreshSsb; /* RSRP Threshold SSB */
595 uint8_t raRspWindow; /* RA Response Window */
598 typedef struct schPageCfg
600 uint8_t numPO; /*Derived from Ns*/
601 bool poPresent; /*Whether FirstPDCCH-MonitoringPO is present or not*/
602 uint16_t pagingOcc[MAX_PO_PER_PF]; /*FirstPDCCH-Monitoring Paging Occasion*/
605 typedef struct sib1CellCfg
609 uint16_t sib1RepetitionPeriod;
610 uint8_t coresetZeroIndex; /* derived from 4 LSB of pdcchSib1 present in MIB */
611 uint8_t searchSpaceZeroIndex; /* derived from 4 MSB of pdcchSib1 present in MIB */
613 SchPageCfg pagingCfg;
616 typedef struct bwpParams
621 uint8_t cyclicPrefix;
624 typedef struct candidatesInfo
633 typedef struct searchSpaceCfg
635 uint8_t searchSpaceId;
637 uint16_t monitoringSlot;
639 uint16_t monitoringSymbol;
640 CandidatesInfo candidate;
643 typedef struct pdcchConfigCommon
645 /* only one search space is configured during SIB1 */
646 SearchSpaceCfg commonSearchSpace;
647 uint8_t raSearchSpaceId;
650 typedef struct pdschCfgCommTimeDomRsrcAlloc
655 uint8_t lengthSymbol;
656 }PdschCfgCommTimeDomRsrcAlloc;
658 typedef struct pdschConfigCommon
660 uint8_t numTimeDomAlloc;
661 /* PDSCH time domain DL resource allocation list */
662 PdschCfgCommTimeDomRsrcAlloc timeDomRsrcAllocList[MAX_NUM_DL_ALLOC];
665 typedef struct pucchConfigCommon
667 uint8_t pucchResourceCommon;
668 uint8_t pucchGroupHopping;
671 /* PUSCH Time Domain Resource Allocation */
672 typedef struct puschTimeDomRsrcAlloc
675 CommonMappingType mappingType;
677 uint8_t symbolLength;
678 uint8_t startSymbolAndLength;
679 }PuschTimeDomRsrcAlloc;
682 typedef struct puschConfigCommon
684 /* PUSCH-TimeDomainResourceAllocation info */
685 uint8_t numTimeDomRsrcAlloc;
686 PuschTimeDomRsrcAlloc timeDomRsrcAllocList[MAX_NUM_UL_ALLOC]; /* PUSCH time domain UL resource allocation list */
689 typedef struct bwpDlConfig
692 PdcchConfigCommon pdcchCommon;
693 PdschConfigCommon pdschCommon;
696 typedef struct bwpUlConfig
699 // rach config common sent in PrachCfg
700 PucchConfigCommon pucchCommon;
701 PuschConfigCommon puschCommon;
704 typedef struct plmnInfoList
707 uint8_t numSupportedSlice; /* Total slice supporting */
708 Snssai **snssai; /* List of supporting snssai*/
711 typedef struct macCellCfg
713 uint16_t cellId; /* Cell Id */
714 uint8_t carrierId; /* Carrired Index */
715 uint16_t phyCellId; /* Physical cell id */
716 uint8_t numerology; /* Supported numerology */
717 DuplexMode dupType; /* Duplex type: TDD/FDD */
718 CarrierCfg dlCarrCfg; /* DL Carrier configuration */
719 CarrierCfg ulCarrCfg; /* UL Carrier configuration */
720 bool freqShft; /* Indicates presence of 7.5kHz frequency shift */
721 SsbCfg ssbCfg; /* SSB configuration */
722 PrachCfg prachCfg; /* PRACH Configuration */
724 TDDCfg tddCfg; /* TDD periodicity and slot configuration */
726 RSSIMeasUnit rssiUnit; /* RSSI measurement unit */
727 Sib1CellCfg sib1Cfg; /* SIB1 config */
728 BwpDlConfig initialDlBwp; /* Initial DL BWP */
729 BwpUlConfig initialUlBwp; /* Initial UL BWP */
730 uint8_t dmrsTypeAPos; /* DMRS Type A position */
731 PlmnInfoList plmnInfoList; /* Consits of PlmnId and Snssai list */
732 //RrmPolicy *rrmPolicy; /* RRM policy details */
735 typedef struct macCellCfgCfm
741 typedef struct ulCcchInd
745 uint16_t ulCcchMsgLen;
749 typedef struct dlCcchInd
753 DlCcchMsgType msgType;
754 uint16_t dlCcchMsgLen;
758 typedef struct bsrTmrCfg
760 uint16_t periodicTimer;
762 uint16_t srDelayTimer;
766 /* Info of Scheduling Request to Add/Modify */
767 typedef struct schedReqInfo
770 SrProhibitTimer srProhibitTmr;
771 SrTransMax srTransMax;
774 /* Scheduling Request Configuration */
775 typedef struct schedReqCfg
777 uint8_t addModListCount;
778 SchedReqInfo addModList[MAX_NUM_SR_CFG_PER_CELL_GRP]; /* List of Scheduling req to be added/modified */
779 uint8_t relListCount;
780 uint8_t relList[MAX_NUM_SR_CFG_PER_CELL_GRP]; /* list of scheduling request Id to be deleted */
783 typedef struct tagInfo
786 TimeAlignmentTimer timeAlignTimer;
789 typedef struct tagCfg
791 uint8_t addModListCount;
792 TagInfo addModList[MAC_NUM_TAGS]; /* List of Tag to Add/Modify */
793 uint8_t relListCount;
794 uint8_t relList[MAC_NUM_TAGS]; /* list of Tag Id to release */
797 typedef struct phrCfg
799 PhrPeriodicTimer periodicTimer;
800 PhrProhibitTimer prohibitTimer;
801 PhrTxPwrFactorChange txPowerFactor;
804 bool phrType2OtherCell;
805 PhrModeOtherCG phrOtherCG;
808 typedef struct macCellGrpCfg
810 SchedReqCfg schReqCfg;
813 bool phrCfgSetupPres; /* true/false: phrCfgSetup/phrCfgRelease */
817 typedef struct phyCellGrpCfg
819 PdschHarqAckCodebook pdschHarqAckCodebook;
823 /* Control resource set info */
824 typedef struct controlRsrcSet
826 uint8_t cRSetId; /* Control resource set id */
827 uint8_t freqDomainRsrc[FREQ_DOM_RSRC_SIZE]; /* Frequency domain resource */
829 REGMappingType cceRegMappingType;
830 PrecoderGranul precoderGranularity;
831 uint16_t dmrsScramblingId;
834 /* Search Space info */
835 typedef struct searchSpace
837 uint8_t searchSpaceId;
839 MSlotPeriodAndOffset mSlotPeriodicityAndOffset;
840 uint8_t mSymbolsWithinSlot[MONITORING_SYMB_WITHIN_SLOT_SIZE];
841 AggrLevel numCandidatesAggLevel1; /* Number of candidates for aggregation level 1 */
842 AggrLevel numCandidatesAggLevel2; /* Number of candidates for aggregation level 2 */
843 AggrLevel numCandidatesAggLevel4; /* Number of candidates for aggregation level 4 */
844 AggrLevel numCandidatesAggLevel8; /* Number of candidates for aggregation level 8 */
845 AggrLevel numCandidatesAggLevel16; /* Number of candidates for aggregation level 16 */
846 SearchSpaceType searchSpaceType;
847 uint8_t ueSpecificDciFormat;
850 /* PDCCH cofniguration */
851 typedef struct pdcchConfig
853 uint8_t numCRsetToAddMod;
854 ControlRsrcSet cRSetToAddModList[MAX_NUM_CRSET]; /* List of control resource set to add/modify */
855 uint8_t numCRsetToRel;
856 uint8_t cRSetToRelList[MAX_NUM_CRSET]; /* List of control resource set to release */
857 uint8_t numSearchSpcToAddMod;
858 SearchSpace searchSpcToAddModList[MAX_NUM_SEARCH_SPC]; /* List of search space to add/modify */
859 uint8_t numSearchSpcToRel;
860 uint8_t searchSpcToRelList[MAX_NUM_SEARCH_SPC]; /* List of search space to release */
863 /* PDSCH time domain resource allocation */
864 typedef struct pdschTimeDomRsrcAlloc
867 CommonMappingType mappingType;
869 uint8_t symbolLength;
870 uint8_t startSymbolAndLength;
871 }PdschTimeDomRsrcAlloc;
874 typedef struct pdschBundling
876 struct staticBundling
878 BundlingSizeSet2 size;
880 struct dynamicBundling
882 BundlingSizeSet1 sizeSet1;
883 BundlingSizeSet2 sizeSet2;
887 /* DMRS downlink configuration */
888 typedef struct dmrsDlCfg
890 AddPosType addPos; /* DMRS additional position */
893 /* PDSCH Configuration */
894 typedef struct pdschConfig
896 DmrsDlCfg dmrsDlCfgForPdschMapTypeA;
897 ResAllocType resourceAllocType;
898 uint8_t numTimeDomRsrcAlloc;
899 PdschTimeDomRsrcAlloc timeDomRsrcAllociList[MAX_NUM_DL_ALLOC]; /* PDSCH time domain DL resource allocation list */
901 CodeWordsSchedDci numCodeWordsSchByDci; /* Number of code words scheduled by DCI */
902 BundlingType bundlingType;
903 PdschBundling bundlingInfo;
906 /* Initial Downlink BWP */
907 typedef struct initialDlBwp
910 PdcchConfig pdcchCfg;
912 PdschConfig pdschCfg;
915 /* BWP Downlink common */
916 typedef struct bwpDlCommon
920 /* Downlink BWP information */
921 typedef struct dlBwpInfo
926 /* PDCCH Serving Cell configuration */
927 typedef struct pdschServCellCfg
929 uint8_t *maxMimoLayers;
930 NumHarqProcForPdsch numHarqProcForPdsch;
931 MaxCodeBlkGrpPerTB *maxCodeBlkGrpPerTb;
932 bool *codeBlkGrpFlushInd;
933 PdschXOverhead *xOverhead;
936 /* PUCCH Configuration */
938 typedef struct pucchResrcSetInfo
941 uint8_t resrcListCount;
942 uint8_t resrcList[MAX_NUM_PUCCH_PER_RESRC_SET];
943 uint8_t maxPayLoadSize;
946 typedef struct pucchResrcSetCfg
948 uint8_t resrcSetToAddModListCount;
949 PucchResrcSetInfo resrcSetToAddModList[MAX_NUM_PUCCH_RESRC_SET];
950 uint8_t resrcSetToRelListCount;
951 uint8_t resrcSetToRelList[MAX_NUM_PUCCH_RESRC];
954 typedef struct pucchFormat0
956 uint8_t initialCyclicShift;
958 uint8_t startSymbolIdx;
961 typedef struct pucchFormat1
963 uint8_t initialCyclicShift;
965 uint8_t startSymbolIdx;
969 typedef struct pucchFormat2_3
973 uint8_t startSymbolIdx;
976 typedef struct pucchFormat4
981 uint8_t startSymbolIdx;
984 typedef struct pucchResrcInfo
988 uint8_t intraFreqHop;
989 uint16_t secondPrbHop;
993 PucchFormat0 *format0;
994 PucchFormat1 *format1;
995 PucchFormat2_3 *format2;
996 PucchFormat2_3 *format3;
997 PucchFormat4 *format4;
1001 typedef struct pucchResrcCfg
1003 uint8_t resrcToAddModListCount;
1004 PucchResrcInfo resrcToAddModList[MAX_NUM_PUCCH_RESRC];
1005 uint8_t resrcToRelListCount;
1006 uint8_t resrcToRelList[MAX_NUM_PUCCH_RESRC];
1009 typedef struct pucchFormatCfg
1011 bool interSlotFreqHop;
1013 uint8_t maxCodeRate;
1019 typedef struct schedReqResrcInfo
1023 uint8_t periodicity;
1028 typedef struct pucchSchedReqCfg
1030 uint8_t schedAddModListCount;
1031 SchedReqResrcInfo schedAddModList[MAX_NUM_SR_CFG_PER_CELL_GRP];
1032 uint8_t schedRelListCount;
1033 uint8_t schedRelList[MAX_NUM_SR_CFG_PER_CELL_GRP];
1036 typedef struct spatialRelationInfo
1038 uint8_t spatialRelationId;
1039 uint8_t servCellIdx;
1040 uint8_t pathLossRefRSId;
1042 uint8_t closeLoopIdx;
1043 }SpatialRelationInfo;
1045 typedef struct pucchSpatialCfg
1047 uint8_t spatialAddModListCount;
1048 SpatialRelationInfo spatialAddModList[MAX_NUM_SPATIAL_RELATIONS];
1049 uint8_t spatialRelListCount;
1050 uint8_t spatialRelList[MAX_NUM_SPATIAL_RELATIONS];
1053 typedef struct p0PucchCfg
1059 typedef struct pathLossRefRSCfg
1061 uint8_t pathLossRefRSId;
1064 typedef struct pucchMultiCsiCfg
1066 uint8_t multiCsiResrcListCount;
1067 uint8_t multiCsiResrcList[MAX_NUM_PUCCH_RESRC-1];
1070 typedef struct pucchDlDataToUlAck
1072 uint8_t dlDataToUlAckListCount;
1073 uint8_t dlDataToUlAckList[MAX_NUM_DL_DATA_TO_UL_ACK];
1074 }PucchDlDataToUlAck;
1076 typedef struct pucchPowerControl
1084 P0PucchCfg p0Set[MAX_NUM_PUCCH_P0_PER_SET];
1085 uint8_t pathLossRefRSListCount;
1086 PathLossRefRSCfg pathLossRefRSList[MAX_NUM_PATH_LOSS_REF_RS];
1089 typedef struct pucchCfg
1091 PucchResrcSetCfg *resrcSet;
1092 PucchResrcCfg *resrc;
1093 PucchFormatCfg *format1;
1094 PucchFormatCfg *format2;
1095 PucchFormatCfg *format3;
1096 PucchFormatCfg *format4;
1097 PucchSchedReqCfg *schedReq;
1098 PucchMultiCsiCfg *multiCsiCfg;
1099 PucchSpatialCfg *spatialInfo;
1100 PucchDlDataToUlAck *dlDataToUlAck;
1101 PucchPowerControl *powerControl;
1104 /* Transform precoding disabled */
1105 typedef struct transPrecodDisabled
1107 uint16_t scramblingId0;
1108 }TransPrecodDisabled;
1110 /* DMRS Uplink configuration */
1111 typedef struct dmrsUlCfg
1113 AddPosType addPos; /* DMRS additional position */
1114 TransPrecodDisabled transPrecodDisabled; /* Transform precoding disabled */
1117 /* PUSCH Configuration */
1118 typedef struct puschCfg
1120 uint8_t dataScramblingId;
1121 DmrsUlCfg dmrsUlCfgForPuschMapTypeA;
1122 ResAllocType resourceAllocType;
1123 uint8_t numTimeDomRsrcAlloc;
1124 PuschTimeDomRsrcAlloc timeDomRsrcAllocList[MAX_NUM_UL_ALLOC]; /* PUSCH time domain UL resource allocation list */
1125 TransformPrecoder transformPrecoder;
1128 /* Initial Uplink BWP */
1129 typedef struct initialUlBwp
1137 /* Uplink BWP information */
1138 typedef struct ulBwpInfo
1143 /* Serving cell configuration */
1144 typedef struct servCellCfgInfo
1146 InitialDlBwp initDlBwp;
1147 uint8_t numDlBwpToAdd;
1148 DlBwpInfo DlBwpToAddList[MAX_NUM_BWP];
1149 uint8_t firstActvDlBwpId;
1150 uint8_t defaultDlBwpId;
1151 uint8_t *bwpInactivityTmr;
1152 PdschServCellCfg pdschServCellCfg;
1153 InitialUlBwp initUlBwp;
1154 uint8_t numUlBwpToAdd;
1155 UlBwpInfo UlBwpToAddList[MAX_NUM_BWP];
1156 uint8_t firstActvUlBwpId;
1159 /* Special cell configuration */
1160 typedef struct spCellCfg
1162 uint8_t servCellIdx;
1163 ServCellCfgInfo servCellCfg;
1166 typedef struct ambrCfg
1168 uint32_t ulBr; /* UL Bit rate */
1171 typedef struct nonDynFiveQi
1176 uint16_t maxDataBurstVol;
1179 typedef struct dynFiveQi
1182 uint16_t packetDelayBudget;
1183 uint8_t packetErrRateScalar;
1184 uint8_t packetErrRateExp;
1186 uint8_t delayCritical;
1188 uint16_t maxDataBurstVol;
1191 typedef struct ngRanAllocAndRetPri
1193 uint8_t priorityLevel;
1194 uint8_t preEmptionCap;
1195 uint8_t preEmptionVul;
1196 }NgRanAllocAndRetPri;
1198 typedef struct grbQosInfo
1200 uint32_t maxFlowBitRateDl;
1201 uint32_t maxFlowBitRateUl;
1202 uint32_t guarFlowBitRateDl;
1203 uint32_t guarFlowBitRateUl;
1206 typedef struct drbQos
1208 QosType fiveQiType; /* Dynamic or non-dynamic */
1211 NonDynFiveQi nonDyn5Qi;
1214 NgRanAllocAndRetPri ngRanRetPri;
1215 GrbQosInfo grbQosInfo;
1216 uint16_t pduSessionId;
1217 uint32_t ulPduSessAggMaxBitRate;
1220 typedef struct ulLcCfg
1225 PBitRate pbr; // prioritisedBitRate
1226 BucketSizeDur bsd; // bucketSizeDuration
1229 typedef struct duLcCfg
1231 LcPriority lcp; // logical Channel Prioritization
1234 typedef struct lcCfg
1236 ConfigType configType;
1245 typedef struct modulationInfo
1247 uint8_t modOrder; /* Modulation order */
1248 uint8_t mcsIndex; /* MCS Index */
1249 McsTable mcsTable; /* MCS table */
1252 typedef struct macUeCfg
1257 bool macCellGrpCfgPres;
1258 MacCellGrpCfg macCellGrpCfg;
1259 bool phyCellGrpCfgPres;
1260 PhyCellGrpCfg phyCellGrpCfg;
1262 SpCellCfg spCellCfg;
1264 ModulationInfo dlModInfo; /* DL modulation info */
1265 ModulationInfo ulModInfo; /* UL modulation info */
1267 LcCfg lcCfgList[MAX_NUM_LC];
1268 UeCfgState macUeCfgState; /* InActive / Completed */
1269 DataTransmissionAction transmissionAction;
1272 typedef struct nrcgi
1278 typedef struct srbFailInfo
1284 typedef struct drbFailInfo
1290 typedef struct sCellFailInfo
1296 typedef struct ueCfgRsp
1301 uint8_t numSRBFailed; /* valid values : 0 to MAX_NUM_SRB */
1302 SRBFailInfo *failedSRBlisti;
1303 uint8_t numDRBFailed; /* valid values : 0 to MAX_NUM_DRB */
1304 DRBFailInfo *failedDRBlist;
1305 uint8_t numSCellFailed; /* valid values : 0 to MAX_NUM_SCELL */
1306 SCellFailInfo *failedSCellList;
1309 typedef struct ueDelete
1316 typedef struct ueDeleteRsp
1320 UeDeleteStatus result;
1323 typedef struct macCellDelete
1328 typedef struct macCellDeleteRsp
1331 CellDeleteStatus result;
1334 typedef struct macSliceRsp
1341 typedef struct rrmPolicyRatio
1343 uint8_t policyMaxRatio;
1344 uint8_t policyMinRatio;
1345 uint8_t policyDedicatedRatio;
1348 typedef struct macSliceRrmPolicy
1351 RrmPolicyRatio *rrmPolicyRatio;
1354 typedef struct macSliceCfgReq
1356 uint8_t numOfConfiguredSlice;
1357 MacSliceRrmPolicy **listOfSliceCfg;
1360 typedef struct macSliceCfgRsp
1362 uint8_t numSliceCfgRsp;
1363 MacSliceRsp **listOfSliceCfgRsp;
1366 /* Functions for slot Ind from MAC to DU APP*/
1367 typedef uint8_t (*DuMacCellUpInd) ARGS((
1369 OduCellId *cellId ));
1371 /* Functions for slot Ind from MAC to DU APP*/
1372 typedef uint8_t (*DuMacSlotInd) ARGS((
1374 SlotTimingInfo *slotIndInfo));
1376 /* Functions for stop Ind from MAC to DU APP*/
1377 typedef uint8_t (*DuMacStopInd) ARGS((
1379 OduCellId *cellId ));
1381 /* Functions for mac cell start req */
1382 typedef uint8_t (*DuMacCellStart) ARGS((
1384 OduCellId *cellId));
1386 /* Functions for mac cell stop request */
1387 typedef uint8_t (*DuMacCellStop) ARGS((
1389 OduCellId *cellId ));
1391 /* Function pointers for packing macCellCfg Request and Confirm */
1392 typedef uint8_t (*packMacCellCfgReq) ARGS((
1394 MacCellCfg *macCellCfg ));
1396 typedef uint8_t (*packMacCellCfgConfirm) ARGS((
1398 MacCellCfgCfm *macCellCfgCfm ));
1400 typedef uint8_t (*DuMacCellCfgReq) ARGS((
1402 MacCellCfg *macCellCfg));
1404 typedef uint8_t (*DuMacCellCfgCfm) ARGS((
1406 MacCellCfgCfm *macCellCfgCfm ));
1408 /* Functions for UL CCCH Ind from MAC to DU APP*/
1409 typedef uint8_t (*DuMacUlCcchInd) ARGS((
1411 UlCcchIndInfo *ulCcchIndInfo ));
1413 /* Functions for DL CCCH Ind from DU APP to MAC*/
1414 typedef uint8_t (*DuMacDlCcchInd) ARGS((
1416 DlCcchIndInfo *dlCcchIndInfo ));
1418 /* UE create Request from DU APP to MAC*/
1419 typedef uint8_t (*DuMacUeCreateReq) ARGS((
1423 /* UE create Response from MAC to DU APP */
1424 typedef uint8_t (*MacDuUeCfgRspFunc) ARGS((
1426 MacUeCfgRsp *cfgRsp));
1428 /* UE Reconfig Request from DU APP to MAC*/
1429 typedef uint8_t (*DuMacUeReconfigReq) ARGS((
1433 /* UE Delete Request from DU APP to MAC*/
1434 typedef uint8_t (*DuMacUeDeleteReq) ARGS((
1436 MacUeDelete *ueDel ));
1438 /* UE Delete Response from MAC to DU APP*/
1439 typedef uint8_t (*MacDuUeDeleteRspFunc) ARGS((
1441 MacUeDeleteRsp *deleteRsp));
1443 /* Cell Delete Request from DU APP to MAC*/
1444 typedef uint8_t (*DuMacCellDeleteReq) ARGS((
1446 MacCellDelete *cellDelete ));
1448 /* Cell Delete Response from MAC to DU APP*/
1449 typedef uint8_t (*MacDuCellDeleteRspFunc) ARGS((
1451 MacCellDeleteRsp *cellDeleteRsp));
1453 /* Slice Cfg Request from DU APP to MAC*/
1454 typedef uint8_t (*DuMacSliceCfgReq) ARGS((
1456 MacSliceCfgReq *CfgReq));
1458 /* Slice Cfg Response from MAC to DU APP */
1459 typedef uint8_t (*MacDuSliceCfgRspFunc) ARGS((
1461 MacSliceCfgRsp *cfgRsp));
1463 /* Slice ReReCfg Request from DU APP to MAC*/
1464 typedef uint8_t (*DuMacSliceRecfgReq) ARGS((
1466 MacSliceCfgReq *CfgReq));
1468 /* Slice ReReCfg Response from MAC to DU APP */
1469 typedef uint8_t (*MacDuSliceReCfgRspFunc) ARGS((
1471 MacSliceCfgRsp *cfgRsp));
1473 uint64_t ueBitMapPerCell[MAX_NUM_CELL]; /* Bit Map to store used/free UE-IDX per Cell */
1475 uint8_t packMacCellUpInd(Pst *pst, OduCellId *cellId);
1476 uint8_t unpackMacCellUpInd(DuMacCellUpInd func, Pst *pst, Buffer *mBuf);
1477 uint8_t duHandleCellUpInd(Pst *pst, OduCellId *cellId);
1478 uint8_t packMacCellStart(Pst *pst, OduCellId *cellId);
1479 uint8_t unpackMacCellStart(DuMacCellStart func, Pst *pst, Buffer *mBuf);
1480 uint8_t MacProcCellStart(Pst *pst, OduCellId *cellId);
1481 uint8_t packMacCellStop(Pst *pst, OduCellId *cellId);
1482 uint8_t unpackMacCellStop(DuMacCellStop func, Pst *pst, Buffer *mBuf);
1483 uint8_t MacProcCellStop(Pst *pst, OduCellId *cellId);
1484 uint8_t packMacCellCfg(Pst *pst, MacCellCfg *macCellCfg);
1485 uint8_t unpackDuMacCellCfg(DuMacCellCfgReq func, Pst *pst, Buffer *mBuf);
1486 uint8_t MacProcCellCfgReq(Pst *pst, MacCellCfg *macCellCfg);
1487 uint8_t packMacCellCfgCfm(Pst *pst, MacCellCfgCfm *macCellCfgCfm);
1488 uint8_t unpackMacCellCfgCfm(DuMacCellCfgCfm func, Pst *pst, Buffer *mBuf);
1489 uint8_t duHandleMacCellCfgCfm(Pst *pst, MacCellCfgCfm *macCellCfgCfm);
1490 uint8_t packMacStopInd(Pst *pst, OduCellId *cellId);
1491 uint8_t unpackMacStopInd(DuMacStopInd func, Pst *pst, Buffer *mBuf);
1492 uint8_t duHandleStopInd(Pst *pst, OduCellId *cellId);
1493 uint8_t packMacUlCcchInd(Pst *pst, UlCcchIndInfo *ulCcchIndInfo);
1494 uint8_t unpackMacUlCcchInd(DuMacUlCcchInd func, Pst *pst, Buffer *mBuf);
1495 uint8_t duHandleUlCcchInd(Pst *pst, UlCcchIndInfo *ulCcchIndInfo);
1496 uint8_t packMacDlCcchInd(Pst *pst, DlCcchIndInfo *dlCcchIndInfo);
1497 uint8_t unpackMacDlCcchInd(DuMacDlCcchInd func, Pst *pst, Buffer *mBuf);
1498 uint8_t MacProcDlCcchInd(Pst *pst, DlCcchIndInfo *dlCcchIndInfo);
1499 uint8_t packDuMacUeCreateReq(Pst *pst, MacUeCfg *ueCfg);
1500 uint8_t unpackMacUeCreateReq(DuMacUeCreateReq func, Pst *pst, Buffer *mBuf);
1501 uint8_t MacProcUeCreateReq(Pst *pst, MacUeCfg *ueCfg);
1502 uint8_t sendStopIndMacToDuApp(uint16_t cellId);
1503 uint8_t packDuMacUeCfgRsp(Pst *pst, MacUeCfgRsp *cfgRsp);
1504 uint8_t unpackDuMacUeCfgRsp(MacDuUeCfgRspFunc func, Pst *pst, Buffer *mBuf);
1505 uint8_t DuProcMacUeCfgRsp(Pst *pst, MacUeCfgRsp *cfgRsp);
1506 uint8_t packDuMacUeReconfigReq(Pst *pst, MacUeCfg *ueCfg);
1507 uint8_t unpackMacUeReconfigReq(DuMacUeReconfigReq func, Pst *pst, Buffer *mBuf);
1508 uint8_t MacProcUeReconfigReq(Pst *pst, MacUeCfg *ueCfg);
1509 uint8_t packDuMacUeDeleteReq(Pst *pst, MacUeDelete *ueDelete);
1510 uint8_t MacProcUeDeleteReq(Pst *pst, MacUeDelete *ueDelete);
1511 uint8_t unpackMacUeDeleteReq(DuMacUeDeleteReq func, Pst *pst, Buffer *mBuf);
1512 uint8_t packDuMacUeDeleteRsp(Pst *pst, MacUeDeleteRsp *deleteRsp);
1513 uint8_t DuProcMacUeDeleteRsp(Pst *pst, MacUeDeleteRsp *deleteRsp);
1514 uint8_t unpackDuMacUeDeleteRsp(MacDuUeDeleteRspFunc func, Pst *pst, Buffer *mBuf);
1515 uint8_t packDuMacCellDeleteReq(Pst *pst, MacCellDelete *cellDelete);
1516 uint8_t MacProcCellDeleteReq(Pst *pst, MacCellDelete *cellDelete);
1517 uint8_t unpackMacCellDeleteReq(DuMacCellDeleteReq func, Pst *pst, Buffer *mBuf);
1518 uint8_t packDuMacCellDeleteRsp(Pst *pst, MacCellDeleteRsp *cellDeleteRsp);
1519 uint8_t DuProcMacCellDeleteRsp(Pst *pst, MacCellDeleteRsp *cellDeleteRsp);
1520 uint8_t unpackDuMacCellDeleteRsp(MacDuCellDeleteRspFunc func, Pst *pst, Buffer *mBuf);
1521 uint8_t packDuMacSliceCfgReq(Pst *pst, MacSliceCfgReq *sliceCfgReq);
1522 uint8_t MacProcSliceCfgReq(Pst *pst, MacSliceCfgReq *sliceCfgReq);
1523 uint8_t unpackMacSliceCfgReq(DuMacSliceCfgReq func, Pst *pst, Buffer *mBuf);
1524 uint8_t DuProcMacSliceCfgRsp(Pst *pst, MacSliceCfgRsp *cfgRsp);
1525 uint8_t packDuMacSliceCfgRsp(Pst *pst, MacSliceCfgRsp *cfgRsp);
1526 uint8_t unpackDuMacSliceCfgRsp(MacDuSliceCfgRspFunc func, Pst *pst, Buffer *mBuf);
1527 uint8_t packDuMacSliceRecfgReq(Pst *pst, MacSliceCfgReq *sliceReCfgReq);
1528 uint8_t MacProcSliceReCfgReq(Pst *pst, MacSliceCfgReq *sliceReCfgReq);
1529 uint8_t unpackMacSliceReCfgReq(DuMacSliceRecfgReq func, Pst *pst, Buffer *mBuf);
1530 uint8_t DuProcMacSliceReCfgRsp(Pst *pst, MacSliceCfgRsp *cfgRsp);
1531 uint8_t packDuMacSliceReCfgRsp(Pst *pst, MacSliceCfgRsp *cfgRsp);
1532 uint8_t unpackDuMacSliceReCfgRsp(MacDuSliceReCfgRspFunc func, Pst *pst, Buffer *mBuf);
1533 uint8_t duHandleSlotInd(Pst *pst, SlotTimingInfo *slotIndInfo);
1534 uint8_t packMacSlotInd(Pst *pst, SlotTimingInfo *slotIndInfo);
1535 uint8_t unpackDuMacSlotInd(DuMacSlotInd func, Pst *pst, Buffer *mBuf);
1536 int8_t getFreeBitFromUeBitMap(uint16_t cellId);
1537 void unsetBitInUeBitMap(uint16_t cellId, uint8_t bitPos);
1541 /**********************************************************************
1543 **********************************************************************/