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 *******************************************************************************/
18 #ifndef __COMMON_DEF_H__
19 #define __COMMON_DEF_H__
44 #include "gen.x" /* general */
45 #include "ssi.x" /* system services */
56 #define RADIO_FRAME_DURATION 10 /* Time duration of a radio frame in ms */
58 #define MAX_NUM_CELL 1
61 #define MAX_NUM_UE_PER_TTI 1
62 #define MAX_NUM_LC MAX_DRB_LCID + 1 /*Spec 38.331: Sec 6.4: maxLC-ID Keyword*/
63 #define MAX_NUM_SRB 3 /* Max. no of Srbs */
64 #define MAX_NUM_DRB 29 /* spec 38.331, maxDRB */
66 /* 5G ORAN phy delay */
67 #define PHY_DELTA_DL 1
68 #define PHY_DELTA_UL 0
71 #define ODU_SELECTOR_LC 0
72 #define ODU_SELECTOR_TC 1
73 #define ODU_SELECTOR_LWLC 2
75 #define ODU_START_CRNTI 100
76 #define ODU_END_CRNTI 500
83 #define MIN_DRB_LCID 4
84 #define MAX_DRB_LCID 32
86 #define FREQ_DOM_RSRC_SIZE 6 /* i.e. 6 bytes because Size of frequency domain resource is 45 bits */
87 #define PUCCH_FORMAT_0 0
88 #define PUCCH_FORMAT_1 1
89 #define PUCCH_FORMAT_2 2
90 #define PUCCH_FORMAT_3 3
91 #define PUCCH_FORMAT_4 4
95 #define BANDWIDTH_20MHZ 20
96 #define BANDWIDTH_100MHZ 100
98 /* PRB allocation as per 38.101, Section 5.3.2 */
99 #define TOTAL_PRB_20MHZ_MU0 106
100 #define TOTAL_PRB_100MHZ_MU1 273
102 #define MAX_NUM_RB TOTAL_PRB_100MHZ_MU1 /* value for numerology 1, 100 MHz */
104 #define MAX_NUM_RB TOTAL_PRB_20MHZ_MU0 /* value for numerology 0, 20 MHz */
107 #define ODU_UE_THROUGHPUT_PRINT_TIME_INTERVAL 5 /* in milliseconds */
108 #define ODU_SNSSAI_THROUGHPUT_PRINT_TIME_INTERVAL 60000 /* in milliseconds */
110 /* Defining macros for common utility functions */
111 #define ODU_GET_MSG_BUF SGetMsg
112 #define ODU_PUT_MSG_BUF SPutMsg
113 #define ODU_ADD_PRE_MSG_MULT SAddPreMsgMult
114 #define ODU_ADD_PRE_MSG_MULT_IN_ORDER SAddPreMsgMultInOrder
115 #define ODU_ADD_POST_MSG_MULT SAddPstMsgMult
116 #define ODU_START_TASK SStartTask
117 #define ODU_STOP_TASK SStopTask
118 #define ODU_ATTACH_TTSK SAttachTTsk
119 #define ODU_POST_TASK SPstTsk
120 #define ODU_COPY_MSG_TO_FIX_BUF SCpyMsgFix
121 #define ODU_COPY_FIX_BUF_TO_MSG SCpyFixMsg
122 #define ODU_REG_TTSK SRegTTsk
123 #define ODU_SET_PROC_ID SSetProcId
124 #define ODU_GET_MSG_LEN SFndLenMsg
125 #define ODU_EXIT_TASK SExitTsk
126 #define ODU_PRINT_MSG SPrntMsg
127 #define ODU_REM_PRE_MSG SRemPreMsg
128 #define ODU_REM_PRE_MSG_MULT SRemPreMsgMult
129 #define ODU_REG_TMR_MT SRegTmrMt
130 #define ODU_SEGMENT_MSG SSegMsg
131 #define ODU_CAT_MSG SCatMsg
132 #define ODU_GET_PROCID SFndProcId
133 #define ODU_SET_THREAD_AFFINITY SSetAffinity
134 #define ODU_CREATE_TASK SCreateSTsk
136 #define MAX_SYMB_PER_SLOT 14
142 /* Maximum slots for max periodicity and highest numerology is 320.
143 * However, aligning to fapi_interface.h, setting this macro to 160 */
144 #define MAX_TDD_PERIODICITY_SLOTS 160
147 /* TODO : Delete GET_UE_IDX once replaced with GET_UE_ID at all places */
148 #define GET_UE_IDX( _crnti,_ueIdx) \
150 _ueIdx = _crnti - ODU_START_CRNTI + 1; \
153 #define GET_UE_ID( _crnti,_ueId) \
155 _ueId = _crnti - ODU_START_CRNTI + 1; \
158 #define GET_CRNTI( _crnti,_ueIdx) \
160 _crnti = _ueIdx + ODU_START_CRNTI - 1; \
163 /* Calculates cellIdx from cellId */
164 #define GET_CELL_IDX(_cellId, _cellIdx) \
166 _cellIdx = _cellId - 1; \
169 #define SET_BITS_MSB(_startBit, _numBits, _byte) \
171 _byte = (~((0xFF) >> _numBits)); \
172 _byte >>= _startBit; \
175 #define SET_BITS_LSB(_startBit, _numBits, _byte) \
177 _byte = (~((0xFF) << _numBits)); \
178 _byte <<= _startBit; \
181 /* this MACRO set 1 bit at the bit position */
182 #define SET_ONE_BIT(_bitPos, _out) \
184 _out = ((1<<_bitPos) | _out); \
187 /* this MACRO un-set 1 bit at the bit position */
188 #define UNSET_ONE_BIT(_bitPos, _out) \
190 _out = (~(1<<_bitPos) & _out); \
193 /* this MACRO finds the index of the rightmost set bit */
194 #define GET_RIGHT_MOST_SET_BIT( _in,_bitPos) \
196 _bitPos = __builtin_ctz(_in); \
199 /* MACRO for checking CRNTI range*/
200 #define CHECK_CRNTI(_crnti, _isCrntiValid) \
202 _isCrntiValid = ((_crnti >= ODU_START_CRNTI && _crnti <= ODU_END_CRNTI ) ? 1 : 0); \
205 #define CHECK_LCID(_lcId, _isLcidValid) \
207 _isLcidValid = ((_lcId >= SRB0_LCID && _lcId <= MAX_DRB_LCID) ? 1 : 0);\
282 typedef struct slotTimingInfo
289 typedef struct PlmnIdentity
295 typedef struct snssai
301 typedef struct oduCellId
307 typedef struct tddCfg
310 DlUlTxPeriodicity tddPeriod; /* DL UL Transmission periodicity */
311 SlotConfig slotCfg[MAX_TDD_PERIODICITY_SLOTS][MAX_SYMB_PER_SLOT];
315 OduCellStatus gCellStatus;
317 uint64_t gDlDataRcvdCnt; /* Number of DL data received at EGTP */
319 void fillCoresetFeqDomAllocMap(uint16_t startPrb, uint16_t prbSize, uint8_t *freqDomain);
320 void oduCpyFixBufToMsg(uint8_t *fixBuf, Buffer *mBuf, uint16_t len);
321 uint8_t buildPlmnId(Plmn plmn, uint8_t *buf);
322 uint16_t convertScsEnumValToScsVal(uint8_t scsEnumValue);
324 uint8_t SGetSBufNewForDebug(char *file, char *func, char *line, Region region, Pool pool, Data **ptr, Size size);
325 uint8_t SPutSBufNewForDebug(char *file, char *func, char *line, Region region, Pool pool, Data *ptr, Size size);
326 uint8_t SGetStaticBufNewForDebug(char *file, char *func, char *line, \
327 Region region, Pool pool, Data **ptr, Size size, uint8_t memType);
328 uint8_t SPutStaticBufNewForDebug(char *file, char *func, char *line, \
329 Region region, Pool pool, Data *ptr, Size size, uint8_t memType);
333 /**********************************************************************
335 ***********************************************************************/