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 *******************************************************************************/
20 #define EVENT_SCH_GEN_CFG 1
21 #define EVENT_SCH_CELL_CFG 2
22 #define EVENT_SCH_CELL_CFG_CFM 3
23 #define EVENT_DL_SCH_INFO 4
24 #define EVENT_UL_SCH_INFO 5
25 #define EVENT_RACH_IND_TO_SCH 6
26 #define EVENT_CRC_IND_TO_SCH 7
27 #define EVENT_DL_RLC_BO_INFO_TO_SCH 8
28 #define EVENT_ADD_UE_CONFIG_REQ_TO_SCH 9
29 #define EVENT_UE_CONFIG_RSP_TO_MAC 10
30 #define EVENT_SLOT_IND_TO_SCH 11
31 #define EVENT_SHORT_BSR 12
32 #define EVENT_UCI_IND_TO_SCH 13
33 #define EVENT_MODIFY_UE_CONFIG_REQ_TO_SCH 14
34 #define EVENT_UE_RECONFIG_RSP_TO_MAC 15
35 #define EVENT_UE_DELETE_REQ_TO_SCH 16
36 #define EVENT_UE_DELETE_RSP_TO_MAC 17
37 #define EVENT_CELL_DELETE_REQ_TO_SCH 18
38 #define EVENT_CELL_DELETE_RSP_TO_MAC 19
39 #define EVENT_LONG_BSR 20
40 #define EVENT_SLICE_CFG_REQ_TO_SCH 21
41 #define EVENT_SLICE_CFG_RSP_TO_MAC 22
42 #define EVENT_SLICE_RECFG_REQ_TO_SCH 23
43 #define EVENT_SLICE_RECFG_RSP_TO_MAC 24
46 #define MAX_SSB_IDX 1 /* forcing it as 1 for now. Right value is 64 */
47 #define SCH_SSB_MASK_SIZE 1
49 #define MAX_NUM_PRG 1 /* max value should be later 275 */
50 #define MAX_DIG_BF_INTERFACES 0 /* max value should be later 255 */
51 #define MAX_CODEWORDS 1 /* max should be 2 */
52 #define SCH_HARQ_PROC_ID 1 /* harq proc id */
53 #define SCH_ALLOC_TYPE_1 1 /*sch res alloc type */
55 /* Datatype in UL SCH Info */
56 #define SCH_DATATYPE_PUSCH 1
57 #define SCH_DATATYPE_PUSCH_UCI 2
58 #define SCH_DATATYPE_UCI 4
59 #define SCH_DATATYPE_SRS 8
60 #define SCH_DATATYPE_PRACH 16
62 #define MAX_NUMBER_OF_CRC_IND_BITS 1
63 #define MAX_NUMBER_OF_UCI_IND_BITS 1
64 #define MAX_SR_BITS_IN_BYTES 1
65 #define MAX_NUM_LOGICAL_CHANNEL_GROUPS 8
66 /* can we have a common numslot numscs between mac sch */
73 #define MAX_NUM_SR_CFG_PER_CELL_GRP 8 /* Max number of scheduling request config per cell group */
74 #define MAX_NUM_TAGS 4 /* Max number of timing advance groups */
75 #define MAX_NUM_BWP 4 /* Max number of BWP per serving cell */
76 #define MAX_NUM_CRSET 3 /* Max number of control resource set in add/modify/release list */
77 #define MAX_NUM_SEARCH_SPC 10 /* Max number of search space in add/modify/release list */
78 #define FREQ_DOM_RSRC_SIZE 6 /* i.e. 6 bytes because Size of frequency domain resource is 45 bits */
79 #define MONITORING_SYMB_WITHIN_SLOT_SIZE 2 /* i.e. 2 bytes because size of monitoring symbols within slot is 14 bits */
80 #define MAX_NUM_DL_ALLOC 16 /* Max number of pdsch time domain downlink allocation */
81 #define MAX_NUM_UL_ALLOC 16 /* Max number of pusch time domain uplink allocation */
83 /* PUCCH Configuration Macro */
84 #define MAX_NUM_PUCCH_RESRC 128
85 #define MAX_NUM_PUCCH_RESRC_SET 4
86 #define MAX_NUM_PUCCH_PER_RESRC_SET 32
87 #define MAX_NUM_SPATIAL_RELATIONS 8
88 #define MAX_NUM_PUCCH_P0_PER_SET 8
89 #define MAX_NUM_PATH_LOSS_REF_RS 4
90 #define MAX_NUM_DL_DATA_TO_UL_ACK 15
91 #define QPSK_MODULATION 2
93 #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 */
94 #define TX_PAYLOAD_HDR_LEN 32 /* Intel L1 requires adding a 32 byte header to transmitted payload */
95 #define UL_TX_BUFFER_SIZE 5
97 #define MAX_NUM_CONFIG_SLOTS 160 /*Max number of slots as per the numerology*/
98 #define MAX_NUM_K0_IDX 16 /* Max number of pdsch time domain downlink allocation */
99 #define MAX_NUM_K1_IDX 8 /* As per spec 38.213 section 9.2.3 Max number of PDSCH-to-HARQ resource indication */
100 #define MIN_NUM_K1_IDX 4 /* Min K1 values */
101 #define MAX_NUM_K2_IDX 16 /* PUSCH time domain UL resource allocation list */
102 #define DEFAULT_K0_VALUE 0 /* As per 38.331, PDSCH-TimeDomainResourceAllocation field descriptions */
103 /* As per 38.331, PUSCH-TimeDomainResourceAllocationList field descriptions */
104 #define DEFAULT_K2_VALUE_FOR_SCS15 1
105 #define DEFAULT_K2_VALUE_FOR_SCS30 1
106 #define DEFAULT_K2_VALUE_FOR_SCS60 2
107 #define DEFAULT_K2_VALUE_FOR_SCS120 3
109 #define ADD_DELTA_TO_TIME(crntTime, toFill, incr) \
111 if ((crntTime.slot + incr) > (MAX_SLOTS - 1)) \
113 toFill.sfn = (crntTime.sfn + 1); \
117 toFill.sfn = crntTime.sfn; \
119 toFill.slot = (crntTime.slot + incr) % MAX_SLOTS; \
120 if (toFill.sfn >= MAX_SFN) \
122 toFill.sfn%=MAX_SFN; \
130 RRC_CONNECTED_USERS_RSRC
150 RESOURCE_UNAVAILABLE,
187 TIME_ALIGNMENT_TIMER_MS500,
188 TIME_ALIGNMENT_TIMER_MS750,
189 TIME_ALIGNMENT_TIMER_MS1280,
190 TIME_ALIGNMENT_TIMER_MS1920,
191 TIME_ALIGNMENT_TIMER_MS2560,
192 TIME_ALIGNMENT_TIMER_MS5120,
193 TIME_ALIGNMENT_TIMER_MS10240,
194 TIME_ALIGNMENT_TIMER_INFINITE
195 }SchTimeAlignmentTimer;
199 PHR_PERIODIC_TIMER_SF10,
200 PHR_PERIODIC_TIMER_SF20,
201 PHR_PERIODIC_TIMER_SF50,
202 PHR_PERIODIC_TIMER_SF100,
203 PHR_PERIODIC_TIMER_SF200,
204 PHR_PERIODIC_TIMER_SF500,
205 PHR_PERIODIC_TIMER_SF1000,
206 PHR_PERIODIC_TIMER_INFINITE
207 }SchPhrPeriodicTimer;
211 PHR_PROHIBIT_TIMER_SF0,
212 PHR_PROHIBIT_TIMER_SF10,
213 PHR_PROHIBIT_TIMER_SF20,
214 PHR_PROHIBIT_TIMER_SF50,
215 PHR_PROHIBIT_TIMER_SF100,
216 PHR_PROHIBIT_TIMER_SF200,
217 PHR_PROHIBIT_TIMER_SF500,
218 PHR_PROHIBIT_TIMER_SF1000
219 }SchPhrProhibitTimer;
223 PHR_TX_PWR_FACTOR_CHANGE_DB1,
224 PHR_TX_PWR_FACTOR_CHANGE_DB3,
225 PHR_TX_PWR_FACTOR_CHANGE_DB6,
226 PHR_TX_PWR_FACTOR_CHANGE_INFINITE
227 }SchPhrTxPwrFactorChange;
237 HARQ_ACK_CODEBOOK_SEMISTATIC,
238 HARQ_ACK_CODEBOOK_DYNAMIC
239 }SchPdschHarqAckCodebook;
243 NUM_HARQ_PROC_FOR_PDSCH_N2,
244 NUM_HARQ_PROC_FOR_PDSCH_N4,
245 NUM_HARQ_PROC_FOR_PDSCH_N6,
246 NUM_HARQ_PROC_FOR_PDSCH_N10,
247 NUM_HARQ_PROC_FOR_PDSCH_N16
248 }SchNumHarqProcForPdsch;
252 MAX_CODE_BLOCK_GROUP_PER_TB_N2,
253 MAX_CODE_BLOCK_GROUP_PER_TB_N4,
254 MAX_CODE_BLOCK_GROUP_PER_TB_N6,
255 MAX_CODE_BLOCK_GROUP_PER_TB_N8
256 }SchMaxCodeBlkGrpPerTB;
260 PDSCH_X_OVERHEAD_XOH_6,
261 PDSCH_X_OVERHEAD_XOH_12,
262 PDSCH_X_OVERHEAD_XOH_18
267 DMRS_ADDITIONAL_POS0,
268 DMRS_ADDITIONAL_POS1,
270 }SchDmrsAdditionPosition;
274 RESOURCE_ALLOCTION_TYPE_0,
275 RESOURCE_ALLOCTION_TYPE_1,
276 RESOURCE_ALLOCTION_DYN_SWITCH
277 }SchResourceAllocType;
281 TIME_DOMAIN_RSRC_ALLOC_MAPPING_TYPE_A,
282 TIME_DOMAIN_RSRC_ALLOC_MAPPING_TYPE_B
283 }SchTimeDomRsrcAllocMappingType;
287 ENABLED_TRANSFORM_PRECODER,
288 DISABLED_TRANSFORM_PRECODER
289 }SchTransformPrecoder;
293 INTERLEAVED_CCE_REG_MAPPING = 1,
294 NONINTERLEAVED_CCE_REG_MAPPING
299 SLOT_PERIODICITY_AND_OFFSET_SL_1 = 1,
300 SLOT_PERIODICITY_AND_OFFSET_SL_2,
301 SLOT_PERIODICITY_AND_OFFSET_SL_4,
302 SLOT_PERIODICITY_AND_OFFSET_SL_5,
303 SLOT_PERIODICITY_AND_OFFSET_SL_8,
304 SLOT_PERIODICITY_AND_OFFSET_SL_10,
305 SLOT_PERIODICITY_AND_OFFSET_SL_16,
306 SLOT_PERIODICITY_AND_OFFSET_SL_20,
307 SLOT_PERIODICITY_AND_OFFSET_SL_40,
308 SLOT_PERIODICITY_AND_OFFSET_SL_80,
309 SLOT_PERIODICITY_AND_OFFSET_SL_160,
310 SLOT_PERIODICITY_AND_OFFSET_SL_320,
311 SLOT_PERIODICITY_AND_OFFSET_SL_640,
312 SLOT_PERIODICITY_AND_OFFSET_SL_1280,
313 SLOT_PERIODICITY_AND_OFFSET_SL_2560
314 }SchMSlotPeriodAndOffset;
324 SEARCH_SPACE_TYPE_COMMON = 1,
325 SEARCH_SPACE_TYPE_UE_SPECIFIC
330 SCH_QOS_NON_DYNAMIC = 1,
336 AGGREGATION_LEVEL_N0,
337 AGGREGATION_LEVEL_N1,
338 AGGREGATION_LEVEL_N2,
339 AGGREGATION_LEVEL_N3,
340 AGGREGATION_LEVEL_N4,
341 AGGREGATION_LEVEL_N5,
342 AGGREGATION_LEVEL_N6,
354 CODE_WORDS_SCHED_BY_DCI_N1,
355 CODE_WORDS_SCHED_BY_DCI_N2
356 }SchCodeWordsSchedByDci;
360 STATIC_BUNDLING_TYPE = 1,
361 DYNAMIC_BUNDLING_TYPE
367 SCH_SET1_SIZE_WIDEBAND,
368 SCH_SET1_SIZE_N2_WIDEBAND,
369 SCH_SET1_SIZE_N4_WIDEBAND
370 }SchBundlingSizeSet1;
375 SCH_SET2_SIZE_WIDEBAND
376 }SchBundlingSizeSet2;
418 SCH_MCS_TABLE_QAM_64,
419 SCH_MCS_TABLE_QAM_256,
420 SCH_MCS_TABLE_QAM_64_LOW_SE
432 typedef struct timeDomainAlloc
438 typedef struct freqDomainAlloc
447 uint32_t ssbPbchPwr; /* SSB block power */
448 uint8_t scsCommon; /* subcarrier spacing for common [0-3]*/
449 uint8_t ssbOffsetPointA; /* SSB sub carrier offset from point A */
450 SchSSBPeriod ssbPeriod; /* SSB Periodicity in msec */
451 uint8_t ssbSubcOffset; /* Subcarrier Offset(Kssb) */
452 uint32_t nSSBMask[SCH_SSB_MASK_SIZE]; /* Bitmap for actually transmitted SSB. */
454 /*Ref:Spec 38.331 "ssb-PositionsInBurst", Value 0 in Bitmap => corresponding SS/PBCH block is not transmitted
455 *value 1 => corresponding SS/PBCH block is transmitted*/
456 uint8_t totNumSsb; /*S = Total Number of Actual SSB transmitted*/
459 typedef struct bwpCfg
461 uint8_t subcarrierSpacing;
462 uint8_t cyclicPrefix;
463 FreqDomainAlloc freqAlloc;
469 uint16_t beamIdx[MAX_DIG_BF_INTERFACES];
472 typedef struct beamformingInfo
476 uint8_t digBfInterfaces;
477 Prg prg[MAX_NUM_PRG];
480 /* SIB1 PDSCH structures */
482 typedef struct codewordinfo
484 uint16_t targetCodeRate;
492 typedef struct dmrsInfo
494 uint16_t dlDmrsSymbPos;
495 uint8_t dmrsConfigType;
496 uint16_t dlDmrsScramblingId;
498 uint8_t numDmrsCdmGrpsNoData;
501 uint8_t nrOfDmrsSymbols;
505 typedef struct pdschFreqAlloc
507 uint8_t resourceAllocType;
508 /* since we are using type-1, rbBitmap excluded */
509 FreqDomainAlloc freqAlloc;
510 uint8_t vrbPrbMapping;
513 typedef struct pdschTimeAlloc
516 TimeDomainAlloc timeAlloc;
519 typedef struct txPowerPdschInfo
521 uint8_t powerControlOffset;
522 uint8_t powerControlOffsetSS;
525 typedef struct pdschCfg
530 uint8_t numCodewords;
531 CodewordInfo codeword[MAX_CODEWORDS];
532 uint16_t dataScramblingId;
534 uint8_t transmissionScheme;
537 PdschFreqAlloc pdschFreqAlloc;
538 PdschTimeAlloc pdschTimeAlloc;
539 BeamformingInfo beamPdschInfo;
540 TxPowerPdschInfo txPdschPower;
542 /* SIB1 PDSCH structures end */
544 /* SIB1 interface structure */
546 typedef struct coresetCfg
549 uint8_t startSymbolIndex;
550 uint8_t durationSymbols;
551 uint8_t freqDomainResource[6];
552 uint8_t cceRegMappingType;
553 uint8_t regBundleSize;
554 uint8_t interleaverSize;
557 uint8_t precoderGranularity;
559 uint8_t aggregationLevel;
562 typedef struct txPowerPdcchInfo
565 uint8_t powerControlOffsetSS;
571 uint16_t scramblingId;
572 uint16_t scramblingRnti;
575 BeamformingInfo beamPdcchInfo;
576 TxPowerPdcchInfo txPdcchPower;
580 typedef struct pdcchCfg
582 /* coreset-0 configuration */
583 CoresetCfg coresetCfg;
586 DlDCI dci; /* as of now its only one DCI, later it will be numDlCi */
588 /* end of SIB1 PDCCH structures */
590 typedef struct pageCfg
592 uint8_t numPO; /*Derived from Ns*/
593 bool poPresent; /*FirstPDCCH-MonitoringPO is present or not*/
594 uint16_t pagingOcc[MAX_PO_PER_PF]; /*FirstPDCCH-Monitoring Paging Occasion*/
599 /* parameters recieved from DU-APP */
601 uint16_t sib1RepetitionPeriod;
602 uint8_t coresetZeroIndex; /* derived from 4 LSB of pdcchSib1 present in MIB */
603 uint8_t searchSpaceZeroIndex; /* derived from 4 MSB of pdcchSib1 present in MIB */
606 /* parameters derived in scheduler */
609 PdcchCfg sib1PdcchCfg;
610 PdschCfg sib1PdschCfg;
611 PageCfg pageCfg; /*Config of Paging*/
614 typedef struct schRachCfg
616 uint8_t prachCfgIdx; /* PRACH config idx */
617 uint8_t prachSubcSpacing; /* Subcarrier spacing of RACH */
618 uint16_t msg1FreqStart; /* Msg1-FrequencyStart */
619 uint8_t msg1Fdm; /* PRACH FDM (1,2,4,8) */
620 uint8_t rootSeqLen; /* root sequence length */
621 uint16_t rootSeqIdx; /* Root sequence index */
622 uint8_t numRootSeq; /* Number of root sequences required for FD */
623 uint16_t k1; /* Frequency Offset for each FD */
624 uint8_t ssbPerRach; /* SSB per RACH occassion */
625 uint8_t prachMultCarrBand; /* Presence of Multiple carriers in Band */
626 uint8_t raContResTmr; /* RA Contention Resoultion Timer */
627 uint8_t rsrpThreshSsb; /* RSRP Threshold SSB */
628 uint8_t raRspWindow; /* RA Response Window */
631 typedef struct schBwpParams
633 FreqDomainAlloc freqAlloc;
635 uint8_t cyclicPrefix;
638 typedef struct schCandidatesInfo
647 typedef struct schSearchSpaceCfg
649 uint8_t searchSpaceId;
651 uint8_t freqDomainRsrc[FREQ_DOM_RSRC_SIZE]; /* Frequency domain resource */
652 uint16_t monitoringSlot;
654 uint16_t monitoringSymbol;
655 SchCandidatesInfo candidate;
658 typedef struct schPdcchCfgCmn
660 SchSearchSpaceCfg commonSearchSpace;
661 uint8_t raSearchSpaceId;
664 typedef struct schPdschCfgCmnTimeDomRsrcAlloc
669 uint8_t lengthSymbol;
670 }SchPdschCfgCmnTimeDomRsrcAlloc;
672 typedef struct schPdschCfgCmn
674 uint8_t numTimeDomAlloc;
675 SchPdschCfgCmnTimeDomRsrcAlloc timeDomRsrcAllocList[MAX_NUM_DL_ALLOC];
678 typedef struct schPucchCfgCmn
680 uint8_t pucchResourceCommon;
681 uint8_t pucchGroupHopping;
684 /* PUSCH Time Domain Resource Allocation */
685 typedef struct schPuschTimeDomRsrcAlloc
688 SchTimeDomRsrcAllocMappingType mappingType;
690 uint8_t symbolLength;
691 }SchPuschTimeDomRsrcAlloc;
693 typedef struct schPuschCfgCmn
695 uint8_t numTimeDomRsrcAlloc;
696 SchPuschTimeDomRsrcAlloc timeDomRsrcAllocList[MAX_NUM_UL_ALLOC]; /* PUSCH time domain UL resource allocation list */
699 typedef struct schK1TimingInfo
702 uint8_t k1Indexes[MAX_NUM_K1_IDX];
705 typedef struct schK0TimingInfo
708 SchK1TimingInfo k1TimingInfo;
711 typedef struct schK0K1TimingInfo
714 SchK0TimingInfo k0Indexes[MAX_NUM_K0_IDX];
717 typedef struct schK0K1TimingInfoTbl
720 SchK0K1TimingInfo k0k1TimingInfo[MAX_NUM_CONFIG_SLOTS];
721 }SchK0K1TimingInfoTbl;
723 typedef struct schBwpDlCfg
726 SchPdcchCfgCmn pdcchCommon;
727 SchPdschCfgCmn pdschCommon;
728 SchK0K1TimingInfoTbl k0K1InfoTbl;
731 typedef struct schK2TimingInfo
734 uint8_t k2Indexes[MAX_NUM_K2_IDX];
737 typedef struct schK2TimingInfoTbl
740 SchK2TimingInfo k2TimingInfo[MAX_NUM_CONFIG_SLOTS];
743 typedef struct schBwpUlCfg
746 SchPucchCfgCmn pucchCommon;
747 SchPuschCfgCmn puschCommon;
748 SchK2TimingInfoTbl msg3K2InfoTbl;
749 SchK2TimingInfoTbl k2InfoTbl;
752 typedef struct schPlmnInfoList
755 uint8_t numSliceSupport; /* Total slice supporting */
756 Snssai **snssai; /* List of supporting snssai*/
759 typedef struct schCellCfg
761 uint16_t cellId; /* Cell Id */
762 uint16_t phyCellId; /* Physical cell id */
763 uint8_t numerology; /* Supported numerology */
764 SchDuplexMode dupMode; /* Duplex type: TDD/FDD */
765 uint8_t bandwidth; /* Supported B/W */
766 uint32_t dlFreq; /* DL Frequency */
767 uint32_t ulFreq; /* UL Frequency */
768 SchSsbCfg ssbSchCfg; /* SSB config */
769 SchSib1Cfg sib1SchCfg; /* SIB1 config */
770 SchRachCfg schRachCfg; /* PRACH config */
771 SchBwpDlCfg schInitialDlBwp; /* Initial DL BWP */
772 SchBwpUlCfg schInitialUlBwp; /* Initial UL BWP */
773 SchPlmnInfoList plmnInfoList; /* Consits of PlmnId and Snssai list */
775 TDDCfg tddCfg; /* TDD Cfg */
779 typedef struct schCellCfgCfm
781 uint16_t cellId; /* Cell Id */
785 typedef struct ssbInfo
787 uint8_t ssbIdx; /* SSB Index */
788 TimeDomainAlloc tdAlloc; /* Time domain allocation */
789 FreqDomainAlloc fdAlloc; /* Freq domain allocation */
792 typedef struct sib1AllocInfo
795 PdcchCfg sib1PdcchCfg;
796 PdschCfg sib1PdschCfg;
799 typedef struct prachSchInfo
801 uint8_t numPrachOcas; /* Num Prach Ocassions */
802 uint8_t prachFormat; /* PRACH Format */
803 uint8_t numRa; /* Freq domain ocassion */
804 uint8_t prachStartSymb; /* Freq domain ocassion */
807 /* Interface structure signifying DL broadcast allocation for SSB, SIB1 */
808 typedef struct dlBrdcstAlloc
810 /* Ssb transmission is determined as follows:
811 * 0 : No tranamission
812 * 1 : SSB Transmission
813 * 2 : SSB Repetition */
815 uint8_t ssbIdxSupported;
816 SsbInfo ssbInfo[MAX_SSB_IDX];
817 /* Sib1 transmission is determined as follows:
818 * 0 : No tranamission
819 * 1 : SIB1 Transmission
820 * 2 : SIB1 Repetition */
822 Sib1AllocInfo sib1Alloc;
825 typedef struct msg3UlGrant
829 FreqDomainAlloc msg3FreqAlloc;
836 typedef struct rarInfo
843 uint8_t rarPdu[RAR_PAYLOAD_SIZE];
847 typedef struct rarAlloc
853 PdcchCfg rarPdcchCfg;
854 PdschCfg rarPdschCfg;
857 typedef struct dlMsgInfo
865 uint8_t harqFeedbackInd;
868 uint16_t dlMsgPduLen;
872 typedef struct lcSchInfo
875 uint32_t schBytes; /* Number of scheduled bytes */
878 typedef struct dlMsgSchedInfo
881 LcSchInfo lcSchInfo[MAX_NUM_LC]; /* Scheduled LC info */
883 PdcchCfg dlMsgPdcchCfg;
884 PdschCfg dlMsgPdschCfg;
890 typedef struct dlMsgAlloc
893 uint8_t numSchedInfo;
894 DlMsgSchInfo dlMsgSchedInfo[2];
897 typedef struct schSlotValue
899 SlotTimingInfo currentTime;
900 SlotTimingInfo broadcastTime;
901 SlotTimingInfo rarTime;
902 SlotTimingInfo dlMsgTime;
903 SlotTimingInfo ulDciTime;
906 typedef struct format0_0
908 uint8_t resourceAllocType;
909 /* since we are using type-1, hence rbBitmap excluded */
910 FreqDomainAlloc freqAlloc;
911 TimeDomainAlloc timeAlloc;
914 uint8_t harqProcId; /* HARQ Process ID */
917 uint8_t ndi; /* NDI */
918 uint8_t rv; /* Redundancy Version */
923 typedef struct format0_1
929 typedef struct format1_0
935 typedef struct format1_1
940 typedef struct dciInfo
943 uint16_t crnti; /* CRNI */
944 SlotTimingInfo slotIndInfo; /* Slot Info: sfn, slot number */
945 BwpCfg bwpCfg; /* BWP Cfg */
946 CoresetCfg coresetCfg; /* Coreset1 Cfg */
947 FormatType formatType; /* DCI Format */
950 Format0_0 format0_0; /* Format 0_0 */
951 Format0_1 format0_1; /* Format 0_1 */
952 Format1_0 format1_0; /* Format 1_0 */
953 Format1_1 format1_1; /* Format 1_1 */
959 typedef struct dlSchedInfo
961 uint16_t cellId; /* Cell Id */
962 SchSlotValue schSlotValue;
964 /* Allocation for broadcast messages */
965 bool isBroadcastPres;
966 DlBrdcstAlloc brdcstAlloc;
968 /* Allocation for RAR message */
969 RarAlloc *rarAlloc[MAX_NUM_UE];
971 /* UL grant in response to BSR */
974 /* Allocation from dedicated DL msg */
975 DlMsgAlloc *dlMsgAlloc[MAX_NUM_UE];
979 typedef struct tbInfo
981 uint8_t qamOrder; /* Modulation Order */
982 uint8_t mcs; /* MCS */
983 SchMcsTable mcsTable; /* MCS Table */
984 uint8_t ndi; /* NDI */
985 uint8_t rv; /* Redundancy Version */
986 uint16_t tbSize; /* TB Size */
989 typedef struct schPuschInfo
992 uint8_t harqProcId; /* HARQ Process ID */
993 uint8_t resAllocType; /* Resource allocation type */
994 FreqDomainAlloc fdAlloc; /* Freq domain allocation */
995 TimeDomainAlloc tdAlloc; /* Time domain allocation */
996 TbInfo tbInfo; /* TB info */
997 uint8_t dmrsMappingType;
998 uint8_t nrOfDmrsSymbols;
1002 typedef struct schPucchFormatCfg
1004 uint8_t interSlotFreqHop;
1006 uint8_t maxCodeRate;
1012 typedef struct schPucchInfo
1015 uint8_t pucchFormat;
1016 FreqDomainAlloc fdAlloc; /* Freq domain allocation */
1017 TimeDomainAlloc tdAlloc; /* Time domain allocation */
1020 uint8_t numHarqBits;
1023 uint8_t intraFreqHop;
1024 uint16_t secondPrbHop;
1025 uint8_t initialCyclicShift;
1029 SchPucchFormatCfg cmnFormatCfg;
1032 typedef struct ulSchedInfo
1034 uint16_t cellId; /* Cell Id */
1035 uint16_t crnti; /* CRNI */
1036 SlotTimingInfo slotIndInfo; /* Slot Info: sfn, slot number */
1037 uint8_t dataType; /* Type of info being scheduled */
1038 PrachSchInfo prachSchInfo; /* Prach scheduling info */
1039 SchPuschInfo schPuschInfo; /* Pusch scheduling info */
1040 SchPucchInfo schPucchInfo; /* Pusch scheduling info */
1043 typedef struct rachIndInfo
1047 SlotTimingInfo timingInfo;
1051 uint8_t preambleIdx;
1056 typedef struct crcIndInfo
1060 SlotTimingInfo timingInfo;
1062 uint8_t crcInd[MAX_NUMBER_OF_CRC_IND_BITS];
1065 typedef struct boInfo
1068 uint32_t dataVolume;
1071 typedef struct dlRlcBOInfo
1076 uint32_t dataVolume;
1079 /* Info of Scheduling Request to Add/Modify */
1080 typedef struct schSchedReqInfo
1083 SchSrProhibitTimer srProhibitTmr;
1084 SchSrTransMax srTransMax;
1087 /* Scheduling Request Configuration */
1088 typedef struct schSchedReqCfg
1090 uint8_t addModListCount;
1091 SchSchedReqInfo addModList[MAX_NUM_SR_CFG_PER_CELL_GRP]; /* List of Scheduling req to be added/modified */
1092 uint8_t relListCount;
1093 uint8_t relList[MAX_NUM_SR_CFG_PER_CELL_GRP]; /* list of scheduling request Id to be deleted */
1096 /* Info of Tag to Add/Modify */
1097 typedef struct schTagInfo
1100 SchTimeAlignmentTimer timeAlignmentTmr;
1103 /* Timing Advance Group Configuration */
1104 typedef struct schTagCfg
1106 uint8_t addModListCount;
1107 SchTagInfo addModList[MAX_NUM_TAGS]; /* List of Tag to Add/Modify */
1108 uint8_t relListCount;
1109 uint8_t relList[MAX_NUM_TAGS]; /* list of Tag Id to release */
1112 /* Configuration for Power headroom reporting */
1113 typedef struct schPhrCfg
1115 SchPhrPeriodicTimer periodicTmr;
1116 SchPhrProhibitTimer prohibitTmr;
1117 SchPhrTxPwrFactorChange txpowerFactorChange;
1120 bool type2OtherCell;
1121 SchPhrModeOtherCG modeOtherCG;
1124 /* MAC cell Group configuration */
1125 typedef struct schMacCellGrpCfg
1127 SchSchedReqCfg schedReqCfg;
1129 SchPhrCfg phrCfg; /* To be used only if phrCfgSetupPres is true */
1132 /* Physical Cell Group Configuration */
1133 typedef struct schPhyCellGrpCfg
1135 SchPdschHarqAckCodebook pdschHarqAckCodebook;
1139 /* Control resource set info */
1140 typedef struct schControlRsrcSet
1142 uint8_t cRSetId; /* Control resource set id */
1143 uint8_t freqDomainRsrc[FREQ_DOM_RSRC_SIZE]; /* Frequency domain resource */
1145 SchREGMappingType cceRegMappingType;
1146 SchPrecoderGranul precoderGranularity;
1147 uint16_t dmrsScramblingId;
1150 /* Search Space info */
1151 typedef struct schSearchSpace
1153 uint8_t searchSpaceId;
1155 SchMSlotPeriodAndOffset mSlotPeriodicityAndOffset;
1156 uint8_t mSymbolsWithinSlot[MONITORING_SYMB_WITHIN_SLOT_SIZE];
1157 SchAggrLevel numCandidatesAggLevel1; /* Number of candidates for aggregation level 1 */
1158 SchAggrLevel numCandidatesAggLevel2; /* Number of candidates for aggregation level 2 */
1159 SchAggrLevel numCandidatesAggLevel4; /* Number of candidates for aggregation level 4 */
1160 SchAggrLevel numCandidatesAggLevel8; /* Number of candidates for aggregation level 8 */
1161 SchAggrLevel numCandidatesAggLevel16; /* Number of candidates for aggregation level 16 */
1162 SchSearchSpaceType searchSpaceType;
1163 uint8_t ueSpecificDciFormat;
1166 /* PDCCH cofniguration */
1167 typedef struct schPdcchConfig
1169 uint8_t numCRsetToAddMod;
1170 SchControlRsrcSet cRSetToAddModList[MAX_NUM_CRSET]; /* List of control resource set to add/modify */
1171 uint8_t numCRsetToRel;
1172 uint8_t cRSetToRelList[MAX_NUM_CRSET]; /* List of control resource set to release */
1173 uint8_t numSearchSpcToAddMod;
1174 SchSearchSpace searchSpcToAddModList[MAX_NUM_SEARCH_SPC]; /* List of search space to add/modify */
1175 uint8_t numSearchSpcToRel;
1176 uint8_t searchSpcToRelList[MAX_NUM_SEARCH_SPC]; /* List of search space to release */
1179 /* PDSCH time domain resource allocation */
1180 typedef struct schPdschTimeDomRsrcAlloc
1183 SchTimeDomRsrcAllocMappingType mappingType;
1184 uint8_t startSymbol;
1185 uint8_t symbolLength;
1186 }SchPdschTimeDomRsrcAlloc;
1189 typedef struct schPdschBundling
1191 struct schStaticBundling
1193 SchBundlingSizeSet2 size;
1195 struct schDynamicBundling
1197 SchBundlingSizeSet1 sizeSet1;
1198 SchBundlingSizeSet2 sizeSet2;
1199 }SchDynamicBundling;
1202 /* DMRS downlink configuration */
1203 typedef struct schDmrsDlCfg
1205 SchDmrsAdditionPosition addPos; /* DMRS additional position */
1208 /* PDSCH Configuration */
1209 typedef struct schPdschConfig
1211 SchDmrsDlCfg dmrsDlCfgForPdschMapTypeA;
1212 SchResourceAllocType resourceAllocType;
1213 uint8_t numTimeDomRsrcAlloc;
1214 SchPdschTimeDomRsrcAlloc timeDomRsrcAllociList[MAX_NUM_DL_ALLOC]; /* PDSCH time domain DL resource allocation list */
1216 SchCodeWordsSchedByDci numCodeWordsSchByDci; /* Number of code words scheduled by DCI */
1217 SchBundlingType bundlingType;
1218 SchPdschBundling bundlingInfo;
1221 /* Initial Downlink BWP */
1222 typedef struct schInitalDlBwp
1225 SchPdcchConfig pdcchCfg;
1227 SchPdschConfig pdschCfg;
1229 SchK0K1TimingInfoTbl k0K1InfoTbl;
1232 /* BWP Downlink common */
1233 typedef struct schBwpDlCommon
1237 /* Downlink BWP information */
1238 typedef struct schDlBwpInfo
1243 /* PDCCH Serving Cell configuration */
1244 typedef struct schPdschServCellCfg
1246 uint8_t *maxMimoLayers;
1247 SchNumHarqProcForPdsch numHarqProcForPdsch;
1248 SchMaxCodeBlkGrpPerTB *maxCodeBlkGrpPerTb;
1249 bool *codeBlkGrpFlushInd;
1250 SchPdschXOverhead *xOverhead;
1251 }SchPdschServCellCfg;
1253 /* PUCCH Configuration */
1254 typedef struct schPucchResrcSetInfo
1257 uint8_t resrcListCount;
1258 uint8_t resrcList[MAX_NUM_PUCCH_PER_RESRC_SET];
1259 uint8_t maxPayLoadSize;
1260 }SchPucchResrcSetInfo;
1262 typedef struct schPucchResrcSetCfg
1264 uint8_t resrcSetToAddModListCount;
1265 SchPucchResrcSetInfo resrcSetToAddModList[MAX_NUM_PUCCH_RESRC_SET];
1266 uint8_t resrcSetToRelListCount;
1267 uint8_t resrcSetToRelList[MAX_NUM_PUCCH_RESRC];
1268 }SchPucchResrcSetCfg;
1270 typedef struct schPucchFormat0
1272 uint8_t initialCyclicShift;
1274 uint8_t startSymbolIdx;
1277 typedef struct schPucchFormat1
1279 uint8_t initialCyclicShift;
1281 uint8_t startSymbolIdx;
1285 typedef struct schPucchFormat2_3
1289 uint8_t startSymbolIdx;
1292 typedef struct schPucchFormat4
1297 uint8_t startSymbolIdx;
1300 typedef struct schPucchResrcInfo
1304 uint8_t intraFreqHop;
1305 uint16_t secondPrbHop;
1306 uint8_t pucchFormat;
1308 SchPucchFormat0 *format0;
1309 SchPucchFormat1 *format1;
1310 SchPucchFormat2_3 *format2;
1311 SchPucchFormat2_3 *format3;
1312 SchPucchFormat4 *format4;
1316 typedef struct schPucchResrcCfg
1318 uint8_t resrcToAddModListCount;
1319 SchPucchResrcInfo resrcToAddModList[MAX_NUM_PUCCH_RESRC];
1320 uint8_t resrcToRelListCount;
1321 uint8_t resrcToRelList[MAX_NUM_PUCCH_RESRC];
1325 typedef struct schSchedReqResrcInfo
1329 uint8_t periodicity;
1332 }SchSchedReqResrcInfo;
1334 typedef struct schPucchSchedReqCfg
1336 uint8_t schedAddModListCount;
1337 SchSchedReqResrcInfo schedAddModList[MAX_NUM_SR_CFG_PER_CELL_GRP];
1338 uint8_t schedRelListCount;
1339 uint8_t schedRelList[MAX_NUM_SR_CFG_PER_CELL_GRP];
1340 }SchPucchSchedReqCfg;
1342 typedef struct schSpatialRelationInfo
1344 uint8_t spatialRelationId;
1345 uint8_t servCellIdx;
1346 uint8_t pathLossRefRSId;
1348 uint8_t closeLoopIdx;
1349 }SchSpatialRelationInfo;
1351 typedef struct schPucchSpatialCfg
1353 uint8_t spatialAddModListCount;
1354 SchSpatialRelationInfo spatialAddModList[MAX_NUM_SPATIAL_RELATIONS];
1355 uint8_t spatialRelListCount;
1356 uint8_t spatialRelList[MAX_NUM_SPATIAL_RELATIONS];
1357 }SchPucchSpatialCfg;
1359 typedef struct schP0PucchCfg
1365 typedef struct schPathLossRefRSCfg
1367 uint8_t pathLossRefRSId;
1368 }SchPathLossRefRSCfg;
1370 typedef struct schPucchMultiCsiCfg
1372 uint8_t multiCsiResrcListCount;
1373 uint8_t multiCsiResrcList[MAX_NUM_PUCCH_RESRC-1];
1374 }SchPucchMultiCsiCfg;
1376 typedef struct schPucchDlDataToUlAck
1378 uint8_t dlDataToUlAckListCount;
1379 uint8_t dlDataToUlAckList[MAX_NUM_DL_DATA_TO_UL_ACK];
1380 }SchPucchDlDataToUlAck;
1382 typedef struct schPucchPowerControl
1390 SchP0PucchCfg p0Set[MAX_NUM_PUCCH_P0_PER_SET];
1391 uint8_t pathLossRefRSListCount;
1392 SchPathLossRefRSCfg pathLossRefRSList[MAX_NUM_PATH_LOSS_REF_RS];
1393 }SchPucchPowerControl;
1395 typedef struct schPucchCfg
1397 SchPucchResrcSetCfg *resrcSet;
1398 SchPucchResrcCfg *resrc;
1399 SchPucchFormatCfg *format1;
1400 SchPucchFormatCfg *format2;
1401 SchPucchFormatCfg *format3;
1402 SchPucchFormatCfg *format4;
1403 SchPucchSchedReqCfg *schedReq;
1404 SchPucchMultiCsiCfg *multiCsiCfg;
1405 SchPucchSpatialCfg *spatialInfo;
1406 SchPucchDlDataToUlAck *dlDataToUlAck;
1407 SchPucchPowerControl *powerControl;
1410 /* Transform precoding disabled */
1411 typedef struct schTransPrecodDisabled
1413 uint16_t scramblingId0;
1414 }SchTransPrecodDisabled;
1416 /* DMRS Uplink configuration */
1417 typedef struct SchDmrsUlCfg
1419 SchDmrsAdditionPosition addPos; /* DMRS additional position */
1420 SchTransPrecodDisabled transPrecodDisabled; /* Transform precoding disabled */
1423 /* PUSCH Configuration */
1424 typedef struct schPuschCfg
1426 uint8_t dataScramblingId;
1427 SchDmrsUlCfg dmrsUlCfgForPuschMapTypeA;
1428 SchResourceAllocType resourceAllocType;
1429 uint8_t numTimeDomRsrcAlloc;
1430 SchPuschTimeDomRsrcAlloc timeDomRsrcAllocList[MAX_NUM_UL_ALLOC]; /* PUSCH time domain UL resource allocation list */
1431 SchTransformPrecoder transformPrecoder;
1434 /* Initial Uplink BWP */
1435 typedef struct schInitialUlBwp
1438 SchPucchCfg pucchCfg;
1440 SchPuschCfg puschCfg;
1442 SchK2TimingInfoTbl k2InfoTbl;
1445 /* Uplink BWP information */
1446 typedef struct schUlBwpInfo
1451 /* Serving cell configuration */
1452 typedef struct schServCellCfgInfo
1454 SchInitalDlBwp initDlBwp;
1455 uint8_t numDlBwpToAdd;
1456 SchDlBwpInfo DlBwpToAddList[MAX_NUM_BWP];
1457 uint8_t firstActvDlBwpId;
1458 uint8_t defaultDlBwpId;
1459 uint8_t *bwpInactivityTmr;
1460 SchPdschServCellCfg pdschServCellCfg;
1461 SchInitialUlBwp initUlBwp;
1462 uint8_t numUlBwpToAdd;
1463 SchUlBwpInfo UlBwpToAddList[MAX_NUM_BWP];
1464 uint8_t firstActvUlBwpId;
1465 }SchServCellCfgInfo;
1467 typedef struct schNonDynFiveQi
1472 uint16_t maxDataBurstVol;
1475 typedef struct schDynFiveQi
1478 uint16_t packetDelayBudget;
1479 uint8_t packetErrRateScalar;
1480 uint8_t packetErrRateExp;
1482 uint8_t delayCritical;
1484 uint16_t maxDataBurstVol;
1487 typedef struct schNgRanAllocAndRetPri
1489 uint8_t priorityLevel;
1490 uint8_t preEmptionCap;
1491 uint8_t preEmptionVul;
1492 }SchNgRanAllocAndRetPri;
1494 typedef struct schGrbQosFlowInfo
1496 uint32_t maxFlowBitRateDl;
1497 uint32_t maxFlowBitRateUl;
1498 uint32_t guarFlowBitRateDl;
1499 uint32_t guarFlowBitRateUl;
1503 typedef struct schDrbQos
1505 SchQosType fiveQiType; /* Dynamic or non-dynamic */
1508 SchNonDynFiveQi nonDyn5Qi;
1509 SchDynFiveQi dyn5Qi;
1511 SchNgRanAllocAndRetPri ngRanRetPri;
1512 SchGrbQosFlowInfo grbQosFlowInfo;
1513 uint16_t pduSessionId;
1514 uint32_t ulPduSessAggMaxBitRate; /* UL PDU Session Aggregate max bit rate */
1517 /* Special cell configuration */
1518 typedef struct schSpCellCfg
1520 uint8_t servCellIdx;
1521 SchServCellCfgInfo servCellCfg;
1524 /* Uplink logical channel configuration */
1525 typedef struct SchUlLcCfg
1530 uint8_t pbr; // prioritisedBitRate
1531 uint8_t bsd; // bucketSizeDuration
1534 /* Downlink logical channel configuration */
1535 typedef struct schDlLcCfg
1537 uint8_t lcp; // logical Channel Prioritization
1540 /* Logical Channel configuration */
1541 typedef struct schLcCfg
1543 ConfigType configType;
1545 SchDrbQosInfo *drbQos;
1551 /* Aggregate max bit rate */
1552 typedef struct schAmbrCfg
1554 uint32_t ulBr; /* Ul BitRate */
1557 typedef struct schModulationInfo
1561 SchMcsTable mcsTable;
1564 /* UE configuration */
1565 typedef struct schUeCfg
1569 bool macCellGrpCfgPres;
1570 SchMacCellGrpCfg macCellGrpCfg;
1571 bool phyCellGrpCfgPres;
1572 SchPhyCellGrpCfg phyCellGrpCfg;
1574 SchSpCellCfg spCellCfg;
1575 SchAmbrCfg *ambrCfg;
1576 SchModulationInfo dlModInfo;
1577 SchModulationInfo ulModInfo;
1579 SchLcCfg schLcCfg[MAX_NUM_LC];
1582 typedef struct schUeCfgRsp
1588 SchFailureCause cause;
1591 typedef struct schUeDelete
1597 typedef struct schUeDeleteRsp
1605 typedef struct schCellDelete
1611 typedef struct schCellDeleteRsp
1617 typedef struct dataVolInfo
1623 typedef struct ulBufferStatusRptInd
1629 DataVolInfo dataVolInfo[MAX_NUM_LOGICAL_CHANNEL_GROUPS];
1630 }UlBufferStatusRptInd;
1632 typedef struct srUciIndInfo
1636 SlotTimingInfo slotInd;
1638 uint8_t srPayload[MAX_SR_BITS_IN_BYTES];
1641 typedef struct schRrmPolicyRatio
1643 uint8_t policyMaxRatio;
1644 uint8_t policyMinRatio;
1645 uint8_t policyDedicatedRatio;
1648 typedef struct schRrmPolicyOfSlice
1651 SchRrmPolicyRatio *rrmPolicyRatioInfo;
1652 }SchRrmPolicyOfSlice;
1654 typedef struct schSliceCfgReq
1656 uint8_t numOfConfiguredSlice;
1657 SchRrmPolicyOfSlice **listOfConfirguration;
1660 typedef struct sliceRsp
1667 typedef struct schSliceRsp
1669 uint8_t numSliceCfgRsp;
1670 SliceRsp **listOfSliceCfgRsp;
1673 /* function pointers */
1674 typedef uint8_t (*SchCellCfgCfmFunc) ARGS((
1675 Pst *pst, /* Post Structure */
1676 SchCellCfgCfm *schCellCfgCfm /* Cell Cfg Cfm */
1679 typedef uint8_t (*SchCellCfgFunc) ARGS((
1680 Pst *pst, /* Post Structure */
1681 SchCellCfg *schCellCfg /* Cell Cfg */
1684 typedef uint8_t (*SchMacDlAllocFunc) ARGS((
1685 Pst *pst, /* Post Structure */
1686 DlSchedInfo *dlSchedInfo /* dl allocation Info */
1689 typedef uint8_t (*SchMacUlSchInfoFunc) ARGS((
1690 Pst *pst, /* Post Structure */
1691 UlSchedInfo *ulSchedInfo /* UL Alloc Sch Info */
1694 typedef uint8_t (*MacSchRachIndFunc) ARGS((
1695 Pst *pst, /* Post structure */
1696 RachIndInfo *rachInd)); /* Rach Indication Info */
1698 typedef uint8_t (*MacSchCrcIndFunc) ARGS((
1699 Pst *pst, /* Post structure */
1700 CrcIndInfo *crcInd)); /* CRC Info */
1702 typedef uint8_t (*MacSchDlRlcBoInfoFunc) ARGS((
1703 Pst *pst, /* Post structure */
1704 DlRlcBoInfo *dlBoInfo)); /* DL BO Info */
1706 typedef uint8_t (*MacSchAddUeConfigReqFunc) ARGS((
1707 Pst *pst, /* Post structure */
1708 SchUeCfg *ueCfgToSch)); /* Scheduler UE Cfg */
1710 typedef uint8_t (*SchUeCfgRspFunc) ARGS((
1711 Pst *pst, /* Post structure */
1712 SchUeCfgRsp *cfgRsp)); /* Scheduler UE Cfg response */
1714 typedef uint8_t (*MacSchSlotIndFunc) ARGS((
1715 Pst *pst, /* Post structure */
1716 SlotTimingInfo *slotInd)); /* Slot Info */
1718 typedef uint8_t (*MacSchBsrFunc) ARGS((
1720 UlBufferStatusRptInd *bsrInd
1723 typedef uint8_t (*MacSchSrUciIndFunc) ARGS((
1724 Pst *pst, /* Post structure */
1725 SrUciIndInfo *uciInd)); /* UCI IND Info */
1727 typedef uint8_t (*MacSchModUeConfigReqFunc) ARGS((
1728 Pst *pst, /* Post structure */
1729 SchUeCfg *ueCfgToSch)); /* Scheduler UE Cfg */
1731 typedef uint8_t (*SchUeReCfgRspFunc) ARGS((
1732 Pst *pst, /* Post structure */
1733 SchUeCfgRsp *cfgRsp)); /* Scheduler UE Cfg response */
1735 typedef uint8_t (*MacSchUeDeleteReqFunc) ARGS((
1736 Pst *pst, /* Post structure */
1737 SchUeDelete *schUeDel)); /*Scheduler UE Del*/
1739 typedef uint8_t (*SchUeDeleteRspFunc) ARGS((
1740 Pst *pst, /* Post structure */
1741 SchUeDeleteRsp *delRsp)); /* Scheduler UE delete response */
1743 typedef uint8_t (*MacSchCellDeleteReqFunc) ARGS((
1744 Pst *pst, /* Post structure */
1745 SchCellDelete *schCellDelete)); /*Scheduler UE Del*/
1747 typedef uint8_t (*SchCellDeleteRspFunc) ARGS((
1748 Pst *pst, /* Post structure */
1749 SchCellDeleteRsp *schCellDeleteRsp)); /* Scheduler UE delete response */
1751 typedef uint8_t (*MacSchSliceCfgReqFunc) ARGS((
1752 Pst *pst, /* Post structure */
1753 SchSliceCfgReq *schSliceCfgReq)); /* Scheduler Slice Cfg Req */
1755 typedef uint8_t (*SchSliceCfgRspFunc) ARGS((
1756 Pst *pst, /* Post Structure */
1757 SchSliceCfgRsp *schSliceCfgRsp /* Cell Cfg Cfm */
1760 typedef uint8_t (*MacSchSliceReCfgReqFunc) ARGS((
1761 Pst *pst, /* Post structure */
1762 SchSliceCfgReq *schSliceReCfgReq)); /* Scheduler Slice ReCfg Req */
1764 typedef uint8_t (*SchSliceReCfgRspFunc) ARGS((
1765 Pst *pst, /* Post Structure */
1766 SchSliceCfgRsp *schSliceReCfgRsp /* Cell ReCfg Cfm */
1768 /* function declarations */
1769 uint8_t packMacSchSlotInd(Pst *pst, SlotTimingInfo *slotInd);
1770 uint8_t packSchMacDlAlloc(Pst *pst, DlSchedInfo *dlSchedInfo);
1771 uint8_t packSchMacUlSchInfo(Pst *pst, UlSchedInfo *ulSchedInfo);
1772 uint8_t packSchCellCfg(Pst *pst, SchCellCfg *schCellCfg);
1773 uint8_t packSchCellCfgCfm(Pst *pst, SchCellCfgCfm *schCellCfgCfm);
1774 uint8_t MacProcDlAlloc(Pst *pst, DlSchedInfo *dlSchedInfo);
1775 uint8_t MacProcSchCellCfg(Pst *pst, SchCellCfg *schCellCfg);
1776 uint8_t MacProcSchCellCfgCfm(Pst *pst, SchCellCfgCfm *schCellCfgCfm);
1777 uint8_t SchHdlCellCfgReq(Pst *pst, SchCellCfg *schCellCfg);
1778 uint8_t schActvInit(Ent entity, Inst instId, Region region, Reason reason);
1779 uint8_t MacProcUlSchInfo(Pst *pst, UlSchedInfo *ulSchedInfo);
1780 uint8_t packMacSchRachInd(Pst *pst, RachIndInfo *rachInd);
1781 uint8_t MacSchRachInd(Pst *pst, RachIndInfo *rachInd);
1782 uint8_t packMacSchCrcInd(Pst *pst, CrcIndInfo *crcInd);
1783 uint8_t MacSchCrcInd(Pst *pst, CrcIndInfo *crcInd);
1784 uint8_t packMacSchDlRlcBoInfo(Pst *pst, DlRlcBoInfo *dlBoInfo);
1785 uint8_t MacSchDlRlcBoInfo(Pst *pst, DlRlcBoInfo *dlBoInfo);
1786 uint8_t packMacSchAddUeConfigReq(Pst *pst, SchUeCfg *ueCfgToSch);
1787 uint8_t MacSchAddUeConfigReq(Pst *pst, SchUeCfg *ueCfgToSch);
1788 uint8_t packSchUeCfgRsp(Pst *pst, SchUeCfgRsp *cfgRsp);
1789 uint8_t MacProcSchUeCfgRsp(Pst *pst, SchUeCfgRsp *cfgRsp);
1790 uint8_t MacSchSlotInd ARGS((Pst * pst, SlotTimingInfo * slotInd));
1791 uint8_t packMacSchSlotInd(Pst * pst, SlotTimingInfo * slotInd);
1792 uint8_t unpackMacSchSlotInd(MacSchSlotIndFunc func, Pst *pst, Buffer *mBuf);
1793 uint8_t packMacSchBsr(Pst *pst, UlBufferStatusRptInd *bsrInd);
1794 uint8_t MacSchBsr(Pst *pst, UlBufferStatusRptInd *bsrInd);
1795 uint8_t packMacSchSrUciInd(Pst *pst, SrUciIndInfo *uciInd);
1796 uint8_t MacSchSrUciInd(Pst *pst, SrUciIndInfo *uciInd);
1797 uint8_t packMacSchModUeConfigReq(Pst *pst, SchUeCfg *ueCfgToSch);
1798 uint8_t MacSchModUeConfigReq(Pst *pst, SchUeCfg *ueCfgToSch);
1799 uint8_t packSchUeReconfigRsp(Pst *pst, SchUeCfgRsp *cfgRsp);
1800 uint8_t MacProcSchUeReconfigRsp(Pst *pst, SchUeCfgRsp *cfgRsp);
1801 uint8_t packMacSchUeDeleteReq(Pst *pst, SchUeDelete *schUeDel);
1802 uint8_t MacSchUeDeleteReq(Pst *pst, SchUeDelete *ueDelete);
1803 uint8_t packSchUeDeleteRsp(Pst *pst, SchUeDeleteRsp *delRsp);
1804 uint8_t MacProcSchUeDeleteRsp(Pst *pst, SchUeDeleteRsp *schUeDelRsp);
1805 uint8_t packMacSchCellDeleteReq(Pst *pst, SchCellDelete *schCellDelete);
1806 uint8_t MacSchCellDeleteReq(Pst *pst, SchCellDelete *schCellDelete);
1807 uint8_t packSchCellDeleteRsp(Pst *pst, SchCellDeleteRsp *schCellDeleteRsp);
1808 uint8_t MacProcSchCellDeleteRsp(Pst *pst, SchCellDeleteRsp *schCellDeleteRsp);
1809 uint8_t packMacSchSliceCfgReq(Pst *pst, SchSliceCfgReq *cfgReq);
1810 uint8_t MacSchSliceCfgReq(Pst *pst, SchSliceCfgReq *schSliceCfgReq);
1811 uint8_t packSchSliceCfgRsp(Pst *pst, SchSliceCfgRsp *cfgRsp);
1812 uint8_t MacProcSchSliceCfgRsp(Pst *pst, SchSliceCfgRsp *cfgRsp);
1813 uint8_t packMacSchSliceReCfgReq(Pst *pst, SchSliceCfgReq *cfgReq);
1814 uint8_t MacSchSliceReCfgReq(Pst *pst, SchSliceCfgReq *schSliceCfgReq);
1815 uint8_t packSchSliceReCfgRsp(Pst *pst, SchSliceCfgRsp *cfgRsp);
1816 uint8_t MacProcSchSliceReCfgRsp(Pst *pst, SchSliceCfgRsp *sliceReCfgrsp);
1817 /**********************************************************************
1819 **********************************************************************/