Merge "Restructure O1 module to run as a thread in O-DU High binary [Issue-Id: ODUHIG...
[o-du/l2.git] / src / cm / du_app_mac_inf.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 /* Defines APIs exchanged between du_app and cl module of MAC */
20 #ifndef __MACINT_H__
21 #define __MACINT_H__
22
23 #define NUM_NUMEROLOGY 5  /* Number of numerology */
24
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 */
40 #define SIB1_MCS  4
41
42 /* Macro for Ue Context */
43 #define MAX_NUM_SR_CFG_PER_CELL_GRP 8   /* Max number of scheduling request config per cell group */
44 #define MAC_NUM_TAGS 4                  /* Max number of timing advance groups */
45 #define MAX_NUM_BWP  4                  /* Max number of BWP per serving cell */
46 #define MAX_NUM_CRSET  3                /* Max number of control resource set in add/modify/release list */
47 #define MAX_NUM_SEARCH_SPC  10          /* Max number of search space in add/modify/release list */
48 #define MONITORING_SYMB_WITHIN_SLOT_SIZE 2  /* i.e. 2 bytes because size of monitoring symbols within slot is 14 bits */
49 #define MAX_NUM_DL_ALLOC 16             /* Max number of pdsch time domain downlink allocation */
50 #define MAX_NUM_UL_ALLOC 16             /* Max number of pusch time domain uplink allocation */
51 #define SD_SIZE   3                     /* Max size of Slice Differentiator in S-NSSAI */
52
53 #define MAX_NUM_SCELL  32
54
55 /* PUCCH Configuration Macro */
56 #define MAX_NUM_PUCCH_RESRC 128
57 #define MAX_NUM_PUCCH_RESRC_SET 4
58 #define MAX_NUM_PUCCH_PER_RESRC_SET 32
59 #define MAX_NUM_SPATIAL_RELATIONS 8
60 #define MAX_NUM_PUCCH_P0_PER_SET 8
61 #define MAX_NUM_PATH_LOSS_REF_RS 4
62 #define MAX_NUM_DL_DATA_TO_UL_ACK 15
63
64 /* Event IDs */
65 #define EVENT_MAC_CELL_CONFIG_REQ    200
66 #define EVENT_MAC_CELL_CONFIG_CFM    201
67 #define EVENT_MAC_CELL_START         202
68 #define EVENT_MAC_CELL_STOP          203
69 #define EVENT_MAC_CELL_UP_IND        204
70 #define EVENT_MAC_STOP_IND           205
71 #define EVENT_MAC_UL_CCCH_IND        206
72 #define EVENT_MAC_DL_CCCH_IND        207
73 #define EVENT_MAC_UE_CREATE_REQ      208
74 #define EVENT_MAC_UE_CREATE_RSP      209
75 #define EVENT_MAC_UE_RECONFIG_REQ    210
76 #define EVENT_MAC_UE_RECONFIG_RSP    211
77 #define EVENT_MAC_UE_DELETE_REQ      212
78 #define EVENT_MAC_UE_DELETE_RSP      213
79 #define EVENT_MAC_CELL_DELETE_REQ    214
80 #define EVENT_MAC_CELL_DELETE_RSP    215
81
82 #define BSR_PERIODIC_TIMER_SF_10 10
83 #define BSR_RETX_TIMER_SF_320 320
84 #define BSR_SR_DELAY_TMR_2560 2560
85
86 typedef enum
87 {
88    MAC_DU_APP_RSP_NOK,
89    MAC_DU_APP_RSP_OK
90 }MacRsp;
91
92 typedef enum
93 {
94    SUCCESS,
95    CELLID_INVALID,
96    UEIDX_INVALID
97 }UeDeleteStatus;
98
99 typedef enum
100 {
101    SUCCESSFUL_RSP,
102    CELL_ID_INVALID
103 }CellDeleteStatus;
104
105 typedef enum
106 {
107    DUP_MODE_FDD,
108    DUP_MODE_TDD
109 }DuplexMode;
110
111 typedef enum
112 {
113    MAC_GEN_FULL_PBCH_PAYLD,   /* MAC generated the full PBCH Payload */
114    PHY_GEN_TIMING_PBCH_BIT,   /* PHY generates the timing PBCH bits */
115    PHY_GEN_FULL_PBCH_PAYLD    /* PHY generates full PBCH payload */
116 }BchPduOpt;
117
118 typedef enum
119 {
120    LONG_SEQUENCE,
121    SHORT_SEQUENCE
122 }PrachSeqLen;
123
124 typedef enum
125 {
126    UNRESTRICTED,
127    RESTRICTED_SET_TYPE_A,
128    RESTRICTED_SET_TYPE_B
129 }RstSetCfg;
130
131 typedef enum
132 {
133    DONT_REPORT_RSSI,
134    RSSI_UNIT_DBM,
135    RSSI_UNIT_DBFS
136 }RSSIMeasUnit;
137
138 typedef enum
139 {
140    BETA_PSS_0DB,
141    BETA_PSS_1DB
142 }BetaPss;
143
144 typedef enum 
145 {
146    SSB_PRDCTY_MS_5,
147    SSB_PRDCTY_MS_10,
148    SSB_PRDCTY_MS_20,
149    SSB_PRDCTY_MS_40,
150    SSB_PRDCTY_MS_80,
151    SSB_PRDCTY_MS_160
152 }SSBPeriod;
153
154 typedef enum
155 {
156    RRC_REJECT,
157    RRC_SETUP
158 }DlCcchMsgType;
159
160 /* Enums for Ue Create Request */
161
162 /* SR PROHIBIT TIMER */
163 typedef enum
164 {
165    SR_PROHIBIT_MS_1,
166    SR_PROHIBIT_MS_2,
167    SR_PROHIBIT_MS_4,
168    SR_PROHIBIT_MS_8,
169    SR_PROHIBIT_MS_16,
170    SR_PROHIBIT_MS_32,
171    SR_PROHIBIT_MS_64,
172    SR_PROHIBIT_MS_128
173 }SrProhibitTimer;
174
175 typedef enum
176 {
177    SR_TRANS_MAX_N_4,
178    SR_TRANS_MAX_N_8,
179    SR_TRANS_MAX_N_16,
180    SR_TRANS_MAX_N_32,
181    SR_TRANS_MAX_N_64,
182    SR_TRANS_MAX_spare3,
183    SR_TRANS_MAX_spare2,
184    SR_TRANS_MAX_spare1
185 }SrTransMax;
186
187 typedef enum
188 {
189    TIME_ALIGNMENT_TIMER_MS_500,
190    TIME_ALIGNMENT_TIMER_MS_750,
191    TIME_ALIGNMENT_TIMER_MS_1280,
192    TIME_ALIGNMENT_TIMER_MS_1920,
193    TIME_ALIGNMENT_TIMER_MS_2560,
194    TIME_ALIGNMENT_TIMER_MS_5120,
195    TIME_ALIGNMENT_TIMER_MS_10240,
196    TIME_ALIGNMENT_TIMER_INFINITY
197 }TimeAlignmentTimer;
198
199 typedef enum
200 {
201    PHR_PERIODIC_TIMER_SF_10,
202    PHR_PERIODIC_TIMER_SF_20,
203    PHR_PERIODIC_TIMER_SF_50,
204    PHR_PERIODIC_TIMER_SF_100,
205    PHR_PERIODIC_TIMER_SF_200,
206    PHR_PERIODIC_TIMER_SF_500,
207    PHR_PERIODIC_TIMER_SF_1000,
208    PHR_PERIODIC_TIMER_INFINITY
209 }PhrPeriodicTimer;
210
211 typedef enum
212 {
213    PHR_PROHIBIT_TIMER_SF_0,
214    PHR_PROHIBIT_TIMER_SF_10,
215    PHR_PROHIBIT_TIMER_SF_20,
216    PHR_PROHIBIT_TIMER_SF_50,
217    PHR_PROHIBIT_TIMER_SF_100,
218    PHR_PROHIBIT_TIMER_SF_200,
219    PHR_PROHIBIT_TIMER_SF_500,
220    PHR_PROHIBIT_TIMER_SF_1000
221 }PhrProhibitTimer;
222
223 typedef enum
224 {
225    PHR_TX_PWR_FACTOR_CHANGE_DB_1,
226    PHR_TX_PWR_FACTOR_CHANGE_DB_3,
227    PHR_TX_PWR_FACTOR_CHANGE_DB_6,
228    PHR_TX_PWR_FACTOR_CHANGE_INFINITY
229 }PhrTxPwrFactorChange;
230
231 typedef enum
232 {
233    PHR_MODE_OTHER_CG_REAL,
234    PHR_MODE_OTHER_CG_VIRTUAL
235 }PhrModeOtherCG;
236
237 typedef enum
238 {
239    PDSCH_HARQ_ACK_CODEBOOK_SEMISTATIC,
240    PDSCH_HARQ_ACK_CODEBOOK_DYNAMIC
241 }PdschHarqAckCodebook;
242
243 typedef enum
244 {
245    NUM_HARQ_PROC_FOR_PDSCH_N_2,
246    NUM_HARQ_PROC_FOR_PDSCH_N_4,
247    NUM_HARQ_PROC_FOR_PDSCH_N_6,
248    NUM_HARQ_PROC_FOR_PDSCH_N_10,
249    NUM_HARQ_PROC_FOR_PDSCH_N_16
250 }NumHarqProcForPdsch;
251
252 typedef enum
253 {
254    MAX_CODE_BLOCK_GROUP_PER_TB_N_2,
255    MAX_CODE_BLOCK_GROUP_PER_TB_N_4,
256    MAX_CODE_BLOCK_GROUP_PER_TB_N_6,
257    MAX_CODE_BLOCK_GROUP_PER_TB_N_8
258 }MaxCodeBlkGrpPerTB;
259
260 typedef enum
261 {
262    PDSCH_X_OVERHEAD_6,
263    PDSCH_X_OVERHEAD_12,
264    PDSCH_X_OVERHEAD_18
265 }PdschXOverhead;
266
267 typedef enum
268 {
269    TRANSFORM_PRECODER_ENABLED,
270    TRANSFORM_PRECODER_DISABLED
271 }TransformPrecoder;
272
273 typedef enum 
274 {
275    CCE_REG_MAPPINGTYPE_PR_INTERLEAVED = 1,
276    CCE_REG_MAPPINGTYPE_PR_NONINTERLEAVED
277 }REGMappingType;
278
279 typedef enum
280 {
281    SLOTPERIODICITYANDOFFSET_PR_SL1 = 1,
282    SLOTPERIODICITYANDOFFSET_PR_SL2,
283    SLOTPERIODICITYANDOFFSET_PR_SL4,
284    SLOTPERIODICITYANDOFFSET_PR_SL5,
285    SLOTPERIODICITYANDOFFSET_PR_SL8,
286    SLOTPERIODICITYANDOFFSET_PR_SL10,
287    SLOTPERIODICITYANDOFFSET_PR_SL16,
288    SLOTPERIODICITYANDOFFSET_PR_SL20,
289    SLOTPERIODICITYANDOFFSET_PR_SL40,
290    SLOTPERIODICITYANDOFFSET_PR_SL80,
291    SLOTPERIODICITYANDOFFSET_PR_SL160,
292    SLOTPERIODICITYANDOFFSET_PR_SL320,
293    SLOTPERIODICITYANDOFFSET_PR_SL640,
294    SLOTPERIODICITYANDOFFSET_PR_SL1280,
295    SLOTPERIODICITYANDOFFSET_PR_SL2560
296 }MSlotPeriodAndOffset;
297
298 typedef enum
299 {
300    SAMEASREG_BUNDLE,
301    ALL_CONTIGUOUS_RBS
302 }PrecoderGranul;
303
304 typedef enum
305 {
306    SEARCHSPACETYPE_PR_COMMON = 1,
307    SEARCHSPACETYPE_PR_UE_SPECIFIC
308 }SearchSpaceType;
309
310 typedef enum
311 {
312    QOS_NON_DYNAMIC = 1,
313    QOS_DYNAMIC
314 }QosType;
315
316 typedef enum
317 {
318    AGGREGATIONLEVEL_N0  = 0,  
319    AGGREGATIONLEVEL_N1  = 1,
320    AGGREGATIONLEVEL_N2  = 2,
321    AGGREGATIONLEVEL_N3  = 3,
322    AGGREGATIONLEVEL_N4  = 4,
323    AGGREGATIONLEVEL_N5  = 5,
324    AGGREGATIONLEVEL_N6  = 6,
325    AGGREGATIONLEVEL_N8  = 7
326 }AggrLevel;
327
328 typedef enum
329 {
330    ADDITIONALPOSITION_POS0,
331    ADDITIONALPOSITION_POS1,
332    ADDITIONALPOSITION_POS3
333 }AddPosType;
334
335 typedef enum
336 {
337    MAPPING_TYPEA,
338    MAPPING_TYPEB
339 }CommonMappingType;
340
341 typedef enum
342 {
343    RESOURCEALLOCATION_TYPE0,
344    RESOURCEALLOCATION_TYPE1,
345    RESOURCEALLOCATION_DYNAMICSWITCH
346 }ResAllocType;
347
348 typedef enum
349 {
350    RBG_SIZE_CONFIG1,
351    RBG_SIZE_CONFIG2
352 }RBGSize;
353
354 typedef enum
355 {
356    CODEWORDS_SCHED_BY_DCI_N1,
357    CODEWORDS_SCHED_BY_DCI_N2
358 }CodeWordsSchedDci;
359
360 typedef enum
361 {
362    TYPE_STATIC_BUNDLING = 1,
363    TYPE_DYNAMIC_BUNDLING
364 }BundlingType;
365
366 typedef enum
367 {
368    SET2_SIZE_N4,
369    SET2_SIZE_WIDEBAND
370 }BundlingSizeSet2;
371
372 typedef enum
373 {
374    SET1_SIZE_N4,
375    SET1_SIZE_WIDEBAND,
376    SET1_SIZE_N2_WIDEBAND,
377    SET1_SIZE_N4_WIDEBAND
378 }BundlingSizeSet1;
379
380 typedef enum
381 {
382    LC_PRIORITY_1 = 1,
383    LC_PRIORITY_2,
384    LC_PRIORITY_3
385 }LcPriority;
386
387 typedef enum
388 {
389   PBR_KBPS_0,
390   PBR_KBPS_8,
391   PBR_KBPS_16,
392   PBR_KBPS_32,
393   PBR_KBPS_64,
394   PBR_KBPS_128,
395   PBR_KBPS_256,
396   PBR_KBPS_512,
397   PBR_KBPS_1024,
398   PBR_KBPS_2048,
399   PBR_KBPS_4096,
400   PBR_KBPS_8192,
401   PBR_KBPS_16384,
402   PBR_KBPS_32768,
403   PBR_KBPS_65536,
404   PBR_KBPS_INFINITY
405 }PBitRate;
406
407 typedef enum
408 {
409    BSD_MS_5,
410    BSD_MS_10,
411    BSD_MS_20,
412    BSD_MS_50,
413    BSD_MS_100,
414    BSD_MS_150,
415    BSD_MS_300,
416    BSD_MS_500,
417    BSD_MS_1000,
418    BSD_SPARE_7,
419    BSD_SPARE_6,
420    BSD_SPARE_5,
421    BSD_SPARE_4,
422    BSD_SPARE_3,
423    BSD_SPARE_2,
424    BSD_SPARE_1
425
426 }BucketSizeDur;
427
428 typedef enum
429 {
430    RADIO_NW_LAYER_FAIL,
431    TRANSPORT_LAYER_FAIL,
432    PROTOCOL_FAIL,
433    MISCELLANEOUS
434 }CauseGrp;
435
436 typedef enum
437 {
438    UNSPECIFIED_RADIO_NW_CAUSE,
439    RL_FAIL_RLC,
440    UNKNOWN_GNB_CU_UE_F1AP_ID,
441    ALREADY_ALLOCATED_GNB_CU_UE_F1AP_ID,
442    UNKNOWN_GNB_DU_UE_F1AP_ID,
443    ALREADY_ALLOCATED_GNB_DU_UE_F1AP_ID,
444    UNKNOWN_UE_F1AP_ID_PAIR,
445    INCONSISTENT_UE_F1AP_ID_PAIR,
446    INTERACTION_WITH_OTHER_PROCEDURE,
447    UNSUPPORTED_QCI,
448    ACTION_REQUIRED_FOR_RADIO_REASONS,
449    RADIO_RESOURCES_UNAVAILABLE,
450    CANCELLED_PROCEDURE,
451    RELEASE_NORMAL,
452    CELL_UNAVAILABLE,
453    OTHER_RL_FAILURE,
454    UE_REJECTION,
455    RESOURCES_UNAVAILABLE_FOR_SLICE
456 }RadioNwLyrCause;
457
458 typedef enum
459 {
460    UNSPECIFIED_TRANSPORT_LAYER_CAUSE,
461    TRANSPORT_RESOURCE_UNAVAILABLE
462 }TransLyrCause;
463
464 typedef enum
465 {
466    TRANSFER_SYNTAX_ERROR,
467    ABSTRACT_SYNTAX_ERROR_REJECT,
468    ABSTRACT_SYNTAX_ERROR_IGNORE_AND_REJECT,
469    INCOMPATIBLE_MESSAGE_FOR_RECEIVER_STATE,
470    SEMANTIC_ERR,
471    ABSTRAXCT_SYNTAX_ERROR_FALSELY_CONSTRUCTED_MSG,
472    UNSPECIFIED_PROTOCOL_CAUSE
473 }ProtCause;
474
475 typedef enum
476 {
477    CONTROL_PROCESSING_OVERLOAD,
478    NOT_ENOUGH_USER,
479    PLANE_PROCESSING_RESOURCES,
480    HARDWARE_FAIL,
481    INTERVENTION_BY_O_AND_M,
482    UNSPECIFIED_MISC_CAUSE
483 }MiscFailCause;
484
485 typedef enum
486 {
487    MCS_TABLE_QAM64,
488    MCS_TABLE_QAM256,
489    MCS_TABLE_QAM64_LOW_SE
490 }McsTable;
491
492 typedef struct failureCause
493 {
494    CauseGrp   type;
495    union
496    {
497       RadioNwLyrCause   radioNwCause;
498       TransLyrCause     transportCause;
499       ProtCause         protcolCause;
500       MiscFailCause     miscCause;
501    }u;
502 }FailureCause;
503
504 typedef struct carrierCfg
505 {
506    bool  pres;
507    uint32_t   bw;             /* DL/UL bandwidth */
508    uint32_t   freq;           /* Absolute frequency of DL/UL point A in KHz */
509    uint16_t   k0[NUM_NUMEROLOGY];          /* K0 for DL/UL */
510    uint16_t   gridSize[NUM_NUMEROLOGY];    /* DL/UL Grid size for each numerologies */
511    uint16_t   numAnt;         /* Number of Tx/Rx antennas */
512 }CarrierCfg;
513
514 typedef struct ssbCfg
515 {
516    uint32_t    ssbPbchPwr;       /* SSB block power */
517    BchPduOpt   bchPayloadFlag;   /* Options for generation of payload */
518    uint8_t     scsCmn;           /* subcarrier spacing for common */
519    uint16_t    ssbOffsetPointA;  /* SSB subcarrier offset from point A */
520    BetaPss     betaPss;
521    SSBPeriod   ssbPeriod;        /* SSB Periodicity in msec */
522    uint8_t     ssbScOffset;       /* Subcarrier Offset */
523    uint8_t     mibPdu[3];           /* MIB payload */
524    uint32_t    ssbMask[SSB_MASK_SIZE];      /* Bitmap for actually transmitted SSB. */
525    uint8_t     beamId[NUM_SSB];
526    bool        multCarrBand;     /* Multiple carriers in a band */
527    bool        multCellCarr;     /* Multiple cells in single carrier */
528 }SsbCfg;
529
530 typedef struct fdmInfo
531 {
532    uint16_t   rootSeqIdx;        /* Root sequence index */
533    uint8_t    numRootSeq;        /* Number of root sequences required for FD */
534    uint16_t   k1;                /* Frequency Offset for each FD */
535    uint8_t    zeroCorrZoneCfg;   /* Zero correlation zone cofig */
536    uint8_t    numUnusedRootSeq;  /* Number of unused root sequence */
537    uint8_t    *unsuedRootSeq;     /* Unused root sequence per FD */
538 }PrachFdmInfo;
539
540 typedef struct prachCfg
541 {
542    bool          pres;
543    uint8_t       prachCfgIdx;         /* PRACH Cfg Index */
544    PrachSeqLen   prachSeqLen;         /* RACH Sequence length: Long/short */
545    uint8_t       prachSubcSpacing;    /* Subcarrier spacing of RACH */
546    RstSetCfg     prachRstSetCfg;      /* PRACH restricted set config */
547    uint16_t      msg1FreqStart;       /* Msg1-FrequencyStart */
548    uint8_t       msg1Fdm;             /* PRACH FDM (1,2,4,8) */
549    uint8_t       rootSeqLen;          /* Root sequence length */
550    PrachFdmInfo  fdm[8];              /* FDM info */
551    uint8_t       ssbPerRach;          /* SSB per RACH occassion */
552    bool          prachMultCarrBand;   /* Multiple carriers in Band */
553    uint8_t       prachRestrictedSet; /* Support for PRACH restricted set */
554    uint8_t       raContResTmr;        /* RA Contention Resoultion Timer */
555    uint8_t       rsrpThreshSsb;       /* RSRP Threshold SSB */
556    uint8_t       raRspWindow;         /* RA Response Window */
557 }PrachCfg;
558
559 typedef struct sib1CellCfg
560 {
561    uint8_t  *sib1Pdu;
562    uint16_t sib1PduLen;
563    uint16_t sib1RepetitionPeriod;
564    uint8_t coresetZeroIndex;     /* derived from 4 LSB of pdcchSib1 present in MIB */
565    uint8_t searchSpaceZeroIndex; /* derived from 4 MSB of pdcchSib1 present in MIB */
566    uint16_t sib1Mcs;
567 } Sib1CellCfg; 
568
569 typedef struct bwpParams
570 {
571    uint16_t firstPrb;
572    uint16_t numPrb;
573    uint8_t  scs;
574    uint8_t  cyclicPrefix;
575 }BwpParams;
576
577 typedef struct candidatesInfo
578 {
579    uint8_t aggLevel1;
580    uint8_t aggLevel2;
581    uint8_t aggLevel4;
582    uint8_t aggLevel8;
583    uint8_t aggLevel16;
584 }CandidatesInfo;
585
586 typedef struct searchSpaceCfg
587 {
588    uint8_t searchSpaceId;
589    uint8_t coresetId;
590    uint16_t monitoringSlot;
591    uint16_t duration;
592    uint16_t monitoringSymbol;
593    CandidatesInfo candidate;
594 }SearchSpaceCfg;
595
596 typedef struct pdcchConfigCommon
597 {
598    /* only one search space is configured during SIB1 */
599    SearchSpaceCfg commonSearchSpace;
600    uint8_t raSearchSpaceId;
601 }PdcchConfigCommon;
602
603 typedef struct pdschConfigCommon
604 {
605    uint8_t k0;
606    uint8_t mappingType;
607    uint8_t startSymbol;
608    uint8_t lengthSymbol;
609 }PdschConfigCommon;
610
611 typedef struct pucchConfigCommon
612 {
613    uint8_t pucchResourceCommon;
614    uint8_t pucchGroupHopping;
615 }PucchConfigCommon;
616
617 typedef struct puschConfigCommon
618 {
619    /* PUSCH-TimeDomainResourceAllocation info */
620    uint8_t k2;
621    uint8_t mappingType;
622    uint8_t startSymbol;
623    uint8_t lengthSymbol;
624 }PuschConfigCommon;
625
626 typedef struct bwpDlConfig
627 {
628    BwpParams      bwp;
629    PdcchConfigCommon pdcchCommon;
630    PdschConfigCommon pdschCommon;
631 }BwpDlConfig;
632
633 typedef struct bwpUlConfig
634 {
635    BwpParams      bwp;
636    // rach config common sent in PrachCfg
637    PucchConfigCommon pucchCommon;
638    PuschConfigCommon puschCommon;
639 }BwpUlConfig;
640
641 typedef struct macCellCfg
642 {
643    uint16_t       cellId;           /* Cell Id */
644    uint8_t        carrierId;        /* Carrired Index */
645    uint16_t       phyCellId;        /* Physical cell id */
646    uint8_t        numerology;       /* Supported numerology */
647    DuplexMode     dupType;          /* Duplex type: TDD/FDD */
648    CarrierCfg     dlCarrCfg;        /* DL Carrier configuration */
649    CarrierCfg     ulCarrCfg;        /* UL Carrier configuration */
650    bool           freqShft;         /* Indicates presence of 7.5kHz frequency shift */
651    SsbCfg         ssbCfg;           /* SSB configuration */          
652    PrachCfg       prachCfg;         /* PRACH Configuration */
653 #ifdef NR_TDD
654    TDDCfg         tddCfg;           /* TDD periodicity and slot configuration */
655 #endif
656    RSSIMeasUnit   rssiUnit;         /* RSSI measurement unit */
657    Sib1CellCfg    sib1Cfg;          /* SIB1 config */
658    BwpDlConfig    initialDlBwp;     /* Initial DL BWP */
659    BwpUlConfig    initialUlBwp;     /* Initial UL BWP */
660    uint8_t        dmrsTypeAPos;     /* DMRS Type A position */
661 }MacCellCfg;
662
663 typedef struct macCellCfgCfm
664 {
665    uint16_t       cellId;
666    uint8_t        rsp; 
667 }MacCellCfgCfm;
668
669 typedef struct ulCcchInd
670 {
671    uint16_t cellId;
672    uint16_t crnti;
673    uint16_t ulCcchMsgLen;
674    uint8_t  *ulCcchMsg;
675 }UlCcchIndInfo;
676
677 typedef struct dlCcchInd
678 {
679    uint16_t      cellId;
680    uint16_t      crnti;
681    DlCcchMsgType msgType;
682    uint16_t      dlCcchMsgLen;
683    uint8_t       *dlCcchMsg;
684 }DlCcchIndInfo;
685
686 typedef struct bsrTmrCfg
687 {
688    uint16_t     periodicTimer;
689    uint16_t     retxTimer;
690    uint16_t     srDelayTimer;
691 }BsrTmrCfg;
692
693
694 /* Info of Scheduling Request to Add/Modify */
695 typedef struct schedReqInfo
696 {
697    uint8_t         schedReqId;
698    SrProhibitTimer srProhibitTmr;
699    SrTransMax      srTransMax;
700 }SchedReqInfo;
701
702 /* Scheduling Request Configuration */
703 typedef struct schedReqCfg
704 {
705    uint8_t       addModListCount;
706    SchedReqInfo  addModList[MAX_NUM_SR_CFG_PER_CELL_GRP];   /* List of Scheduling req to be added/modified */
707    uint8_t       relListCount;
708    uint8_t       relList[MAX_NUM_SR_CFG_PER_CELL_GRP];      /* list of scheduling request Id to be deleted */
709 }SchedReqCfg;
710
711 typedef struct tagInfo
712 {
713    uint8_t tagId;
714    TimeAlignmentTimer timeAlignTimer;
715 }TagInfo;
716
717 typedef struct tagCfg
718 {
719    uint8_t      addModListCount;
720    TagInfo      addModList[MAC_NUM_TAGS];  /* List of Tag to Add/Modify */
721    uint8_t      relListCount;
722    uint8_t      relList[MAC_NUM_TAGS];     /* list of Tag Id to release */
723 }TagCfg;
724
725 typedef struct phrCfg
726 {
727    PhrPeriodicTimer periodicTimer;
728    PhrProhibitTimer prohibitTimer; 
729    PhrTxPwrFactorChange txPowerFactor;
730    bool     multiplePHR;       
731    bool     dummy;
732    bool     phrType2OtherCell;
733    PhrModeOtherCG phrOtherCG;
734 }PhrCfg;
735
736 typedef struct macCellGrpCfg
737 {
738    SchedReqCfg schReqCfg;
739    TagCfg      tagCfg;
740    BsrTmrCfg   bsrTmrCfg;
741    bool        phrCfgSetupPres;   /* true/false: phrCfgSetup/phrCfgRelease */
742    PhrCfg      phrCfg;
743 }MacCellGrpCfg;
744
745 typedef struct phyCellGrpCfg
746 {
747    PdschHarqAckCodebook  pdschHarqAckCodebook;
748    uint8_t    pNrFr1;
749 }PhyCellGrpCfg;
750
751 /* Control resource set info */
752 typedef struct controlRsrcSet
753 {
754    uint8_t     cRSetId;                /* Control resource set id */
755    uint8_t     freqDomainRsrc[FREQ_DOM_RSRC_SIZE];  /* Frequency domain resource */
756    uint8_t     duration;
757    REGMappingType cceRegMappingType;
758    PrecoderGranul precoderGranularity;
759    uint16_t    dmrsScramblingId;
760 }ControlRsrcSet;
761
762 /* Search Space info */
763 typedef struct searchSpace
764 {
765    uint8_t     searchSpaceId;
766    uint8_t     cRSetId;
767    MSlotPeriodAndOffset  mSlotPeriodicityAndOffset;
768    uint8_t     mSymbolsWithinSlot[MONITORING_SYMB_WITHIN_SLOT_SIZE];
769    AggrLevel   numCandidatesAggLevel1;      /* Number of candidates for aggregation level 1 */
770    AggrLevel   numCandidatesAggLevel2;      /* Number of candidates for aggregation level 2 */
771    AggrLevel   numCandidatesAggLevel4;      /* Number of candidates for aggregation level 4 */
772    AggrLevel   numCandidatesAggLevel8;      /* Number of candidates for aggregation level 8 */
773    AggrLevel   numCandidatesAggLevel16;     /* Number of candidates for aggregation level 16 */
774    SearchSpaceType searchSpaceType;
775    uint8_t     ueSpecificDciFormat;
776 }SearchSpace;
777
778 /* PDCCH cofniguration */
779 typedef struct pdcchConfig
780 {
781    uint8_t           numCRsetToAddMod;
782    ControlRsrcSet    cRSetToAddModList[MAX_NUM_CRSET];           /* List of control resource set to add/modify */
783    uint8_t           numCRsetToRel;
784    uint8_t           cRSetToRelList[MAX_NUM_CRSET];              /* List of control resource set to release */
785    uint8_t           numSearchSpcToAddMod;
786    SearchSpace       searchSpcToAddModList[MAX_NUM_SEARCH_SPC];  /* List of search space to add/modify */
787    uint8_t           numSearchSpcToRel;
788    uint8_t           searchSpcToRelList[MAX_NUM_SEARCH_SPC];     /* List of search space to release */
789 }PdcchConfig;
790
791 /* PDSCH time domain resource allocation */
792 typedef struct pdschTimeDomRsrcAlloc
793 {
794    CommonMappingType mappingType;
795    uint8_t           startSymbol;
796    uint8_t           symbolLength;
797    uint8_t           startSymbolAndLength;
798 }PdschTimeDomRsrcAlloc;
799
800
801 typedef struct pdschBundling
802 {
803    struct staticBundling
804    {
805      BundlingSizeSet2 size;
806    }StaticBundling;
807    struct dynamicBundling
808    {
809      BundlingSizeSet1 sizeSet1;
810      BundlingSizeSet2 sizeSet2;
811    }DynamicBundling;
812 }PdschBundling;
813
814 /* DMRS downlink configuration */
815 typedef struct dmrsDlCfg
816 {
817    AddPosType  addPos;       /* DMRS additional position */
818 }DmrsDlCfg;
819
820 /* PDSCH Configuration */
821 typedef struct pdschConfig
822 {
823    DmrsDlCfg               dmrsDlCfgForPdschMapTypeA;
824    ResAllocType            resourceAllocType;
825    uint8_t                 numTimeDomRsrcAlloc;
826    PdschTimeDomRsrcAlloc   timeDomRsrcAllociList[MAX_NUM_DL_ALLOC]; /* PDSCH time domain DL resource allocation list */
827    RBGSize                 rbgSize;
828    CodeWordsSchedDci       numCodeWordsSchByDci;                    /* Number of code words scheduled by DCI */
829    BundlingType            bundlingType;
830    PdschBundling           bundlingInfo;
831 }PdschConfig;
832
833 /* Initial Downlink BWP */
834 typedef struct initialDlBwp
835 {
836    bool          pdcchPresent;
837    PdcchConfig   pdcchCfg;
838    bool          pdschPresent;
839    PdschConfig   pdschCfg;
840 }InitialDlBwp;
841
842 /* BWP Downlink common */
843 typedef struct bwpDlCommon
844 {
845 }BwpDlCommon;
846
847 /* Downlink BWP information */
848 typedef struct dlBwpInfo
849 {
850    uint8_t          bwpId;
851 }DlBwpInfo;
852
853 /* PDCCH Serving Cell configuration */
854 typedef struct pdschServCellCfg
855 {
856    uint8_t              *maxMimoLayers;           
857    NumHarqProcForPdsch  numHarqProcForPdsch;
858    MaxCodeBlkGrpPerTB   *maxCodeBlkGrpPerTb;
859    bool                 *codeBlkGrpFlushInd;
860    PdschXOverhead       *xOverhead;
861 }PdschServCellCfg;
862
863 /* PUCCH Configuration */
864
865 typedef struct pucchResrcSetInfo
866 {
867    uint8_t resrcSetId;
868    uint8_t resrcListCount;
869    uint8_t resrcList[MAX_NUM_PUCCH_PER_RESRC_SET];
870    uint8_t maxPayLoadSize;
871 }PucchResrcSetInfo;
872
873 typedef struct pucchResrcSetCfg
874 {
875    uint8_t resrcSetToAddModListCount;
876    PucchResrcSetInfo resrcSetToAddModList[MAX_NUM_PUCCH_RESRC_SET];
877    uint8_t resrcSetToRelListCount;
878    uint8_t resrcSetToRelList[MAX_NUM_PUCCH_RESRC];
879 }PucchResrcSetCfg;
880
881 typedef struct pucchFormat0
882 {
883    uint8_t initialCyclicShift;
884    uint8_t numSymbols;
885    uint8_t startSymbolIdx;
886 }PucchFormat0;
887
888 typedef struct pucchFormat1
889 {
890    uint8_t initialCyclicShift;
891    uint8_t numSymbols;
892    uint8_t startSymbolIdx;
893    uint8_t timeDomOCC;
894 }PucchFormat1;
895
896 typedef struct pucchFormat2_3
897 {
898    uint8_t numPrbs;
899    uint8_t numSymbols;
900    uint8_t startSymbolIdx;
901 }PucchFormat2_3;
902
903 typedef struct pucchFormat4
904 {
905    uint8_t numSymbols;
906    uint8_t occLen;
907    uint8_t occIdx;
908    uint8_t startSymbolIdx;
909 }PucchFormat4;
910
911 typedef struct pucchResrcInfo
912 {
913    uint8_t  resrcId;
914    uint16_t startPrb;
915    uint8_t  intraFreqHop;
916    uint16_t secondPrbHop;
917    uint8_t  pucchFormat;
918    union
919    {
920       PucchFormat0   *format0; 
921       PucchFormat1   *format1;
922       PucchFormat2_3 *format2;
923       PucchFormat2_3 *format3;
924       PucchFormat4   *format4;
925    }PucchFormat;
926 }PucchResrcInfo;
927
928 typedef struct pucchResrcCfg
929 {
930    uint8_t resrcToAddModListCount;
931    PucchResrcInfo resrcToAddModList[MAX_NUM_PUCCH_RESRC];
932    uint8_t resrcToRelListCount;
933    uint8_t resrcToRelList[MAX_NUM_PUCCH_RESRC];
934 }PucchResrcCfg;
935
936 typedef struct pucchFormatCfg
937 {
938    uint8_t interSlotFreqHop;
939    uint8_t addDmrs;
940    uint8_t maxCodeRate;
941    uint8_t numSlots;
942    bool    pi2BPSK;
943    bool    harqAckCSI;
944 }PucchFormatCfg;
945
946 typedef struct schedReqResrcInfo
947 {
948    uint8_t resrcId;
949    uint8_t requestId;
950    uint8_t periodicity;
951    uint16_t offset;
952    uint8_t resrc;
953 }SchedReqResrcInfo;
954
955 typedef struct pucchSchedReqCfg
956 {
957    uint8_t           schedAddModListCount;
958    SchedReqResrcInfo schedAddModList[MAX_NUM_SR_CFG_PER_CELL_GRP];
959    uint8_t           schedRelListCount;
960    uint8_t           schedRelList[MAX_NUM_SR_CFG_PER_CELL_GRP];
961 }PucchSchedReqCfg;
962
963 typedef struct spatialRelationInfo
964 {
965    uint8_t spatialRelationId;
966    uint8_t servCellIdx;
967    uint8_t pathLossRefRSId;
968    uint8_t p0PucchId;
969    uint8_t closeLoopIdx;
970 }SpatialRelationInfo;
971
972 typedef struct pucchSpatialCfg
973 {
974    uint8_t spatialAddModListCount;
975    SpatialRelationInfo spatialAddModList[MAX_NUM_SPATIAL_RELATIONS];
976    uint8_t spatialRelListCount;
977    uint8_t spatialRelList[MAX_NUM_SPATIAL_RELATIONS];
978 }PucchSpatialCfg;
979
980 typedef struct p0PucchCfg
981 {
982    uint8_t p0PucchId;
983    int     p0PucchVal;
984 }P0PucchCfg;
985
986 typedef struct pathLossRefRSCfg
987 {
988    uint8_t pathLossRefRSId;
989 }PathLossRefRSCfg;
990
991 typedef struct pucchMultiCsiCfg
992 {
993    uint8_t  multiCsiResrcListCount;
994    uint8_t  multiCsiResrcList[MAX_NUM_PUCCH_RESRC-1];
995 }PucchMultiCsiCfg;
996
997 typedef struct pucchDlDataToUlAck
998 {
999    uint8_t  dlDataToUlAckListCount;
1000    uint8_t  dlDataToUlAckList[MAX_NUM_DL_DATA_TO_UL_ACK];
1001 }PucchDlDataToUlAck;
1002
1003 typedef struct pucchPowerControl
1004 {
1005    int deltaF_Format0;
1006    int deltaF_Format1;
1007    int deltaF_Format2;
1008    int deltaF_Format3;
1009    int deltaF_Format4;
1010    uint8_t p0SetCount;
1011    P0PucchCfg p0Set[MAX_NUM_PUCCH_P0_PER_SET];
1012    uint8_t pathLossRefRSListCount;
1013    PathLossRefRSCfg pathLossRefRSList[MAX_NUM_PATH_LOSS_REF_RS];
1014 }PucchPowerControl;
1015
1016 typedef struct pucchCfg
1017 {
1018    PucchResrcSetCfg  *resrcSet;
1019    PucchResrcCfg     *resrc;
1020    PucchFormatCfg    *format1; 
1021    PucchFormatCfg    *format2; 
1022    PucchFormatCfg    *format3; 
1023    PucchFormatCfg    *format4;
1024    PucchSchedReqCfg  *schedReq;
1025    PucchMultiCsiCfg  *multiCsiCfg;
1026    PucchSpatialCfg   *spatialInfo;
1027    PucchDlDataToUlAck *dlDataToUlAck;
1028    PucchPowerControl *powerControl;
1029 }PucchCfg;
1030
1031 /* Transform precoding disabled */
1032 typedef struct transPrecodDisabled
1033 {
1034    uint16_t   scramblingId0;
1035 }TransPrecodDisabled;
1036
1037 /* DMRS Uplink configuration */
1038 typedef struct dmrsUlCfg
1039 {
1040    AddPosType            addPos;               /* DMRS additional position */
1041    TransPrecodDisabled   transPrecodDisabled;  /* Transform precoding disabled */
1042 }DmrsUlCfg;
1043
1044 /* PUSCH Time Domain Resource Allocation */
1045 typedef struct puschTimeDomRsrcAlloc
1046 {
1047    uint8_t   k2;
1048    CommonMappingType   mappingType;
1049    uint8_t           startSymbol;
1050    uint8_t           symbolLength;
1051    uint8_t   startSymbolAndLength;
1052 }PuschTimeDomRsrcAlloc;
1053
1054 /* PUSCH Configuration */
1055 typedef struct puschCfg
1056 {
1057    uint8_t                 dataScramblingId;
1058    DmrsUlCfg               dmrsUlCfgForPuschMapTypeA;
1059    ResAllocType            resourceAllocType;
1060    uint8_t                 numTimeDomRsrcAlloc;
1061    PuschTimeDomRsrcAlloc   timeDomRsrcAllocList[MAX_NUM_UL_ALLOC]; /* PUSCH time domain UL resource allocation list */
1062    TransformPrecoder       transformPrecoder;
1063 }PuschCfg;
1064
1065 /* Initial Uplink BWP */
1066 typedef struct initialUlBwp
1067 {
1068    bool       pucchPresent;
1069    PucchCfg   pucchCfg; 
1070    bool       puschPresent;
1071    PuschCfg   puschCfg;
1072 }InitialUlBwp;
1073
1074 /* Uplink BWP information */
1075 typedef struct ulBwpInfo
1076 {
1077    uint8_t        bwpId;
1078 }UlBwpInfo;
1079
1080 /* Serving cell configuration */
1081 typedef struct servCellCfgInfo
1082 {
1083    InitialDlBwp       initDlBwp;
1084    uint8_t            numDlBwpToAdd;
1085    DlBwpInfo          DlBwpToAddList[MAX_NUM_BWP];
1086    uint8_t            firstActvDlBwpId;
1087    uint8_t            defaultDlBwpId;
1088    uint8_t            *bwpInactivityTmr;
1089    PdschServCellCfg   pdschServCellCfg;
1090    InitialUlBwp       initUlBwp;
1091    uint8_t            numUlBwpToAdd;
1092    UlBwpInfo          UlBwpToAddList[MAX_NUM_BWP];
1093    uint8_t            firstActvUlBwpId;
1094 }ServCellCfgInfo;
1095
1096 /* Special cell configuration */
1097 typedef struct spCellCfg
1098 {
1099    uint8_t           servCellIdx;
1100    ServCellCfgInfo   servCellCfg;
1101 }SpCellCfg;
1102
1103 typedef struct ambrCfg
1104 {
1105    uint32_t ulBr;   /* UL Bit rate */
1106 }AmbrCfg;
1107
1108 /* Single Network Slice Selection assistance Info */
1109 typedef struct snssai
1110 {
1111    uint8_t sst;                /* Slice Type */
1112    uint8_t sd[SD_SIZE];        /* Slice Differentiator */
1113 }Snssai;
1114
1115 typedef struct nonDynFiveQi
1116 {
1117    uint16_t   fiveQi;
1118    uint8_t    priorLevel;
1119    uint16_t   avgWindow;
1120    uint16_t   maxDataBurstVol;
1121 }NonDynFiveQi;
1122
1123 typedef struct dynFiveQi
1124 {
1125    uint8_t    priorLevel;
1126    uint16_t   packetDelayBudget;
1127    uint8_t    packetErrRateScalar;
1128    uint8_t    packetErrRateExp;
1129    uint16_t   fiveQi;
1130    uint8_t    delayCritical;
1131    uint16_t   avgWindow;
1132    uint16_t   maxDataBurstVol;
1133 }DynFiveQi;
1134
1135 typedef struct ngRanAllocAndRetPri
1136 {
1137    uint8_t priorityLevel;
1138    uint8_t preEmptionCap;
1139    uint8_t preEmptionVul;
1140 }NgRanAllocAndRetPri;
1141
1142 typedef struct grbQosInfo
1143 {
1144    uint32_t maxFlowBitRateDl;
1145    uint32_t maxFlowBitRateUl;
1146    uint32_t guarFlowBitRateDl;
1147    uint32_t guarFlowBitRateUl;
1148 }GrbQosInfo;
1149
1150 typedef struct drbQos
1151 {
1152    QosType  fiveQiType;   /* Dynamic or non-dynamic */ 
1153    union
1154    {
1155       NonDynFiveQi   nonDyn5Qi;
1156       DynFiveQi      dyn5Qi;
1157    }u;
1158    NgRanAllocAndRetPri ngRanRetPri;
1159    GrbQosInfo grbQosInfo;
1160    uint16_t             pduSessionId;
1161    uint32_t             ulPduSessAggMaxBitRate;
1162 }DrbQosInfo;
1163
1164 typedef struct ulLcCfg
1165 {
1166    uint8_t priority;
1167    uint8_t lcGroup;
1168    uint8_t schReqId;
1169    PBitRate pbr;        // prioritisedBitRate
1170    BucketSizeDur bsd;        // bucketSizeDuration
1171 }UlLcCfg;
1172
1173 typedef struct duLcCfg
1174 {
1175    LcPriority lcp;      // logical Channel Prioritization
1176 }DlLcCfg;
1177
1178 typedef struct lcCfg
1179 {
1180    ConfigType configType;
1181    uint8_t lcId;
1182    DrbQosInfo *drbQos; 
1183    Snssai  *snssai;
1184    bool ulLcCfgPres;
1185    UlLcCfg ulLcCfg;
1186    DlLcCfg dlLcCfg;
1187 }LcCfg;
1188
1189 typedef struct modulationInfo
1190 {
1191    uint8_t     modOrder;    /* Modulation order */
1192    uint8_t     mcsIndex;    /* MCS Index */
1193    McsTable    mcsTable;    /* MCS table */
1194 }ModulationInfo;
1195
1196 typedef struct macUeCfg
1197 {
1198    uint16_t cellId;
1199    uint8_t  ueIdx;
1200    uint16_t crnti;
1201    bool macCellGrpCfgPres;
1202    MacCellGrpCfg macCellGrpCfg;
1203    bool phyCellGrpCfgPres;
1204    PhyCellGrpCfg phyCellGrpCfg;
1205    bool spCellCfgPres;
1206    SpCellCfg spCellCfg;
1207    AmbrCfg   *ambrCfg;
1208    ModulationInfo dlModInfo;    /* DL modulation info */
1209    ModulationInfo ulModInfo;    /* UL modulation info */
1210    uint8_t numLcs;
1211    LcCfg lcCfgList[MAX_NUM_LC];
1212    UeCfgState macUeCfgState;    /* InActive / Completed */
1213 }MacUeCfg;
1214
1215 typedef struct nrcgi
1216 {
1217    Plmn      plmn;
1218    uint16_t  cellId;
1219 }Nrcgi;
1220
1221 typedef struct srbFailInfo
1222 {
1223    uint8_t       srbId;
1224    FailureCause  cause;
1225 }SRBFailInfo;
1226
1227 typedef struct drbFailInfo
1228 {
1229    uint8_t       drbId;
1230    FailureCause  cause;
1231 }DRBFailInfo;
1232
1233 typedef struct sCellFailInfo
1234 {
1235    Nrcgi         nrcgi;
1236    FailureCause  cause;
1237 }SCellFailInfo;
1238
1239 typedef struct ueCfgRsp
1240 {
1241    uint16_t       cellId;
1242    uint16_t       ueIdx;
1243    MacRsp         result;
1244    uint8_t        numSRBFailed;   /* valid values : 0 to MAX_NUM_SRB */ 
1245    SRBFailInfo    *failedSRBlisti;
1246    uint8_t        numDRBFailed;   /* valid values : 0 to MAX_NUM_DRB */
1247    DRBFailInfo    *failedDRBlist;
1248    uint8_t        numSCellFailed; /* valid values : 0 to MAX_NUM_SCELL */
1249    SCellFailInfo  *failedSCellList;
1250 }MacUeCfgRsp;
1251
1252 typedef struct ueDelete
1253 {
1254     uint16_t cellId;
1255     uint8_t  ueIdx;
1256     uint16_t crnti;
1257 }MacUeDelete;
1258
1259 typedef struct ueDeleteRsp
1260 {
1261    uint16_t cellId;
1262    uint8_t  ueIdx;
1263    UeDeleteStatus result;
1264 }MacUeDeleteRsp;
1265
1266 typedef struct macCellDelete
1267 {
1268    uint16_t cellId;
1269 }MacCellDelete;
1270
1271 typedef struct macCellDeleteRsp
1272 {
1273    uint16_t cellId;
1274    CellDeleteStatus result;
1275 }
1276 MacCellDeleteRsp;
1277
1278 /* Functions for slot Ind from MAC to DU APP*/
1279 typedef uint8_t (*DuMacCellUpInd) ARGS((
1280          Pst       *pst,
1281          OduCellId *cellId ));
1282
1283 /* Functions for stop Ind from MAC to DU APP*/
1284 typedef uint8_t (*DuMacStopInd) ARGS((
1285          Pst        *pst,
1286          OduCellId  *cellId ));
1287
1288 /* Functions for mac cell start req */
1289 typedef uint8_t (*DuMacCellStart) ARGS((
1290          Pst        *pst, 
1291          OduCellId  *cellId));
1292
1293 /* Functions for mac cell stop request */
1294 typedef uint8_t (*DuMacCellStop) ARGS((
1295          Pst        *pst,
1296          OduCellId  *cellId ));
1297
1298 /* Function pointers for packing macCellCfg Request and Confirm */
1299 typedef uint8_t (*packMacCellCfgReq) ARGS((
1300          Pst           *pst,
1301          MacCellCfg    *macCellCfg ));
1302
1303 typedef uint8_t (*packMacCellCfgConfirm) ARGS((
1304          Pst              *pst,
1305          MacCellCfgCfm    *macCellCfgCfm ));
1306
1307 typedef uint8_t (*DuMacCellCfgReq) ARGS((
1308          Pst        *pst,        
1309          MacCellCfg *macCellCfg));
1310
1311 typedef uint8_t (*DuMacCellCfgCfm) ARGS((
1312          Pst        *pst,        
1313          MacCellCfgCfm *macCellCfgCfm ));
1314
1315 /* Functions for UL CCCH Ind from MAC to DU APP*/
1316 typedef uint8_t (*DuMacUlCcchInd) ARGS((
1317          Pst           *pst,
1318          UlCcchIndInfo *ulCcchIndInfo ));
1319
1320 /* Functions for DL CCCH Ind from DU APP to MAC*/
1321 typedef uint8_t (*DuMacDlCcchInd) ARGS((
1322          Pst           *pst,
1323          DlCcchIndInfo *dlCcchIndInfo ));
1324
1325 /* UE create Request from DU APP to MAC*/
1326 typedef uint8_t (*DuMacUeCreateReq) ARGS((
1327          Pst           *pst,
1328          MacUeCfg      *ueCfg ));
1329
1330 /* UE create Response from MAC to DU APP */
1331 typedef uint8_t (*MacDuUeCfgRspFunc) ARGS((
1332          Pst           *pst, 
1333          MacUeCfgRsp   *cfgRsp));
1334
1335 /* UE Reconfig Request from DU APP to MAC*/
1336 typedef uint8_t (*DuMacUeReconfigReq) ARGS((
1337          Pst           *pst,
1338          MacUeCfg      *ueCfg ));
1339
1340 /* UE Delete Request from DU APP to MAC*/
1341 typedef uint8_t (*DuMacUeDeleteReq) ARGS((
1342      Pst           *pst,
1343      MacUeDelete   *ueDel ));
1344
1345 /* UE Delete Response from MAC to DU APP*/
1346 typedef uint8_t (*MacDuUeDeleteRspFunc) ARGS((
1347      Pst            *pst,
1348      MacUeDeleteRsp *deleteRsp));
1349
1350 /* Cell Delete Request from DU APP to MAC*/
1351 typedef uint8_t (*DuMacCellDeleteReq) ARGS((
1352      Pst           *pst,
1353      MacCellDelete *cellDelete ));
1354
1355 /* Cell Delete Response from MAC to DU APP*/
1356 typedef uint8_t (*MacDuCellDeleteRspFunc) ARGS((
1357      Pst            *pst,
1358      MacCellDeleteRsp *cellDeleteRsp));
1359
1360 uint8_t packMacCellUpInd(Pst *pst, OduCellId *cellId);
1361 uint8_t unpackMacCellUpInd(DuMacCellUpInd func, Pst *pst, Buffer *mBuf);
1362 uint8_t duHandleCellUpInd(Pst *pst, OduCellId *cellId);
1363 uint8_t packMacCellStart(Pst *pst, OduCellId *cellId);
1364 uint8_t unpackMacCellStart(DuMacCellStart func, Pst *pst, Buffer *mBuf);
1365 uint8_t MacProcCellStart(Pst *pst, OduCellId *cellId);
1366 uint8_t packMacCellStop(Pst *pst, OduCellId *cellId);
1367 uint8_t unpackMacCellStop(DuMacCellStop func, Pst *pst, Buffer *mBuf);
1368 uint8_t MacProcCellStop(Pst *pst, OduCellId *cellId);
1369 uint8_t packMacCellCfg(Pst *pst, MacCellCfg *macCellCfg);
1370 uint8_t unpackDuMacCellCfg(DuMacCellCfgReq func,  Pst *pst,  Buffer *mBuf);
1371 uint8_t MacProcCellCfgReq(Pst *pst, MacCellCfg *macCellCfg);
1372 uint8_t packMacCellCfgCfm(Pst *pst, MacCellCfgCfm *macCellCfgCfm);
1373 uint8_t unpackMacCellCfgCfm(DuMacCellCfgCfm func, Pst *pst, Buffer *mBuf);
1374 uint8_t duHandleMacCellCfgCfm(Pst *pst, MacCellCfgCfm *macCellCfgCfm);
1375 uint8_t packMacStopInd(Pst *pst, OduCellId *cellId);
1376 uint8_t unpackMacStopInd(DuMacStopInd func, Pst *pst, Buffer *mBuf);
1377 uint8_t duHandleStopInd(Pst *pst, OduCellId *cellId);
1378 uint8_t packMacUlCcchInd(Pst *pst, UlCcchIndInfo *ulCcchIndInfo);
1379 uint8_t unpackMacUlCcchInd(DuMacUlCcchInd func, Pst *pst, Buffer *mBuf);
1380 uint8_t duHandleUlCcchInd(Pst *pst, UlCcchIndInfo *ulCcchIndInfo);
1381 uint8_t packMacDlCcchInd(Pst *pst, DlCcchIndInfo *dlCcchIndInfo);
1382 uint8_t unpackMacDlCcchInd(DuMacDlCcchInd func, Pst *pst, Buffer *mBuf);
1383 uint8_t MacProcDlCcchInd(Pst *pst, DlCcchIndInfo *dlCcchIndInfo);
1384 uint8_t packDuMacUeCreateReq(Pst *pst, MacUeCfg *ueCfg);
1385 uint8_t unpackMacUeCreateReq(DuMacUeCreateReq func, Pst *pst, Buffer *mBuf);
1386 uint8_t MacProcUeCreateReq(Pst *pst, MacUeCfg *ueCfg);
1387 uint8_t sendStopIndMacToDuApp(uint16_t cellId);
1388 uint8_t packDuMacUeCfgRsp(Pst *pst, MacUeCfgRsp *cfgRsp);
1389 uint8_t unpackDuMacUeCfgRsp(MacDuUeCfgRspFunc func, Pst *pst, Buffer *mBuf);
1390 uint8_t DuProcMacUeCfgRsp(Pst *pst, MacUeCfgRsp *cfgRsp);
1391 uint8_t packDuMacUeReconfigReq(Pst *pst, MacUeCfg *ueCfg);
1392 uint8_t unpackMacUeReconfigReq(DuMacUeReconfigReq func, Pst *pst, Buffer *mBuf);
1393 uint8_t MacProcUeReconfigReq(Pst *pst, MacUeCfg *ueCfg);
1394 uint8_t packDuMacUeDeleteReq(Pst *pst, MacUeDelete *ueDelete);
1395 uint8_t MacProcUeDeleteReq(Pst *pst,  MacUeDelete *ueDelete);
1396 uint8_t unpackMacUeDeleteReq(DuMacUeDeleteReq func, Pst *pst, Buffer *mBuf);
1397 uint8_t packDuMacUeDeleteRsp(Pst *pst, MacUeDeleteRsp *deleteRsp);
1398 uint8_t DuProcMacUeDeleteRsp(Pst *pst, MacUeDeleteRsp *deleteRsp);
1399 uint8_t unpackDuMacUeDeleteRsp(MacDuUeDeleteRspFunc func, Pst *pst, Buffer *mBuf);
1400 uint8_t packDuMacCellDeleteReq(Pst *pst, MacCellDelete *cellDelete);
1401 uint8_t MacProcCellDeleteReq(Pst *pst, MacCellDelete *cellDelete);
1402 uint8_t unpackMacCellDeleteReq(DuMacCellDeleteReq func, Pst *pst, Buffer *mBuf);
1403 uint8_t packDuMacCellDeleteRsp(Pst *pst, MacCellDeleteRsp *cellDeleteRsp);
1404 uint8_t DuProcMacCellDeleteRsp(Pst *pst, MacCellDeleteRsp *cellDeleteRsp);
1405 uint8_t unpackDuMacCellDeleteRsp(MacDuCellDeleteRspFunc func, Pst *pst, Buffer *mBuf);
1406
1407 #endif
1408
1409
1410 /**********************************************************************
1411   End of file
1412  **********************************************************************/