JIRA ID = ODUHIGH-334 Implementation of DLRRC message for RRC RELEASE
[o-du/l2.git] / src / cm / common_def.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 #ifndef __COMMON_DEF_H__
19 #define __COMMON_DEF_H__
20
21 #include <stdio.h>
22 #include <ctype.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <stdbool.h>
26 #include <stdint.h>
27
28 #include "cm_mem.h"
29 #include "envopt.h"
30 #include "envdep.h"
31 #include "envind.h"
32 #include "gen.h" 
33 #include "ssi.h" 
34 #include "cm_math.h"
35 #include "cm5.h"
36 #include "cm_tkns.h"
37 #include "cm_mblk.h"
38 #include "cm_llist.h"
39 #include "cm_hash.h"
40 #include "cm_lte.h"
41 #include "cm_err.h"
42 #include "cm_tpt.h"
43 #include "cm.h"
44 #include "gen.x"           /* general */
45 #include "ssi.x"           /* system services */
46 #include "cm_tpt.x"
47 #include "cm_tkns.x" 
48 #include "cm_mblk.x"
49 #include "cm_llist.x"
50 #include "cm5.x" 
51 #include "cm_hash.x"
52 #include "cm_lte.x"
53 #include "cm_lib.x"
54 #include "du_log.h"
55
56 #define RADIO_FRAME_DURATION 10 /* Time duration of a radio frame in ms */
57 /* MAX values */
58 #define MAX_NUM_CELL 1
59 #define MAX_NUM_UE   1
60 #define MAX_NUM_LC   11
61 #define MAX_NUM_SRB  3    /* Max. no of Srbs */
62 #define MAX_NUM_DRB  29   /* spec 38.331, maxDRB */
63
64 /* 5G ORAN phy delay */
65 #define PHY_DELTA_DL 1
66 #define PHY_DELTA_UL 0
67
68  /* SELECTORS */ 
69 #define ODU_SELECTOR_LC 0
70 #define ODU_SELECTOR_TC 1
71 #define ODU_SELECTOR_LWLC 2
72
73 #define ODU_START_CRNTI   100
74 #define ODU_END_CRNTI     500
75
76 /* LCID */
77 #define SRB0_LCID  0
78 #define SRB1_LCID  1
79 #define SRB2_LCID  2
80 #define SRB3_LCID  3
81 #define MIN_DRB_LCID 4
82 #define MAX_DRB_LCID 32
83
84 #define FREQ_DOM_RSRC_SIZE  6      /* i.e. 6 bytes because Size of frequency domain resource is 45 bits */
85 #define PUCCH_FORMAT_0 0
86 #define PUCCH_FORMAT_1 1
87 #define PUCCH_FORMAT_2 2
88 #define PUCCH_FORMAT_3 3 
89 #define PUCCH_FORMAT_4 4
90
91 #define BANDWIDTH_20MHZ 20
92 #define BANDWIDTH_100MHZ 100
93
94 /* PRB allocation as per 38.101, Section 5.3.2 */
95 #define TOTAL_PRB_20MHZ_MU0 106
96 #define TOTAL_PRB_100MHZ_MU1 273
97
98 #define ODU_THROUGHPUT_PRINT_TIME_INTERVAL  5 /* in milliseconds */
99
100 /* Defining macros for common utility functions */
101 #define ODU_GET_MSG_BUF SGetMsg
102 #define ODU_PUT_MSG_BUF SPutMsg
103 #define ODU_ADD_PRE_MSG_MULT SAddPreMsgMult
104 #define ODU_ADD_PRE_MSG_MULT_IN_ORDER SAddPreMsgMultInOrder
105 #define ODU_ADD_POST_MSG_MULT SAddPstMsgMult
106 #define ODU_START_TASK SStartTask
107 #define ODU_STOP_TASK SStopTask
108 #define ODU_ATTACH_TTSK SAttachTTsk
109 #define ODU_POST_TASK SPstTsk
110 #define ODU_COPY_MSG_TO_FIX_BUF SCpyMsgFix
111 #define ODU_COPY_FIX_BUF_TO_MSG SCpyFixMsg
112 #define ODU_REG_TTSK SRegTTsk
113 #define ODU_SET_PROC_ID SSetProcId
114 #define ODU_GET_MSG_LEN SFndLenMsg
115 #define ODU_EXIT_TASK SExitTsk
116 #define ODU_PRINT_MSG SPrntMsg
117 #define ODU_REM_PRE_MSG SRemPreMsg
118 #define ODU_REM_PRE_MSG_MULT SRemPreMsgMult
119 #define ODU_REG_TMR_MT SRegTmrMt
120 #define ODU_SEGMENT_MSG SSegMsg
121 #define ODU_CAT_MSG SCatMsg
122 #define ODU_GET_PROCID SFndProcId
123 #define ODU_SET_THREAD_AFFINITY SSetAffinity
124 #define ODU_CREATE_TASK SCreateSTsk
125
126 #ifdef NR_TDD
127 /* Maximum slots for max periodicity and highest numerology is 320.
128  * However, aligning to fapi_interface.h, setting this macro to 160 */
129 #define MAX_TDD_PERIODICITY_SLOTS 160 
130 #define MAX_SYMB_PER_SLOT 14 
131 #endif
132
133 #define GET_UE_IDX( _crnti,_ueIdx)         \
134 {                                          \
135    _ueIdx = _crnti - ODU_START_CRNTI + 1;  \
136 }
137
138 #define GET_CRNTI( _crnti,_ueIdx)          \
139 {                                          \
140    _crnti = _ueIdx + ODU_START_CRNTI - 1;  \
141 }
142
143 /* Calculates cellIdx from cellId */
144 #define GET_CELL_IDX(_cellId, _cellIdx)   \
145 {                                         \
146    _cellIdx = _cellId - 1;                \
147 }
148
149 #define SET_BITS_MSB(_startBit, _numBits, _byte) \
150 {                                                \
151    _byte = (~((0xFF) >> _numBits));              \
152        _byte >>= _startBit;                          \
153 }
154
155 #define SET_BITS_LSB(_startBit, _numBits, _byte) \
156 {                                                \
157    _byte = (~((0xFF) << _numBits));              \
158        _byte <<= _startBit;                          \
159 }
160
161 /* this MACRO set 1 bit at the bit position */
162 #define SET_ONE_BIT(_bitPos, _out)            \
163 {                                             \
164    _out = ((1<<_bitPos) | _out);              \
165 }
166
167 /* this MACRO un-set 1 bit at the bit position */
168 #define UNSET_ONE_BIT(_bitPos, _out)            \
169 {                                               \
170    _out = (~(1<<_bitPos) & _out);               \
171 }
172
173 /* this MACRO finds the index of the rightmost set bit */
174 #define GET_RIGHT_MOST_SET_BIT( _in,_bitPos)        \
175 {                                                \
176    _bitPos = __builtin_ctz(_in);                 \
177 }
178
179 typedef enum
180 {
181    UE_CFG_INACTIVE,
182    UE_CFG_INPROGRESS,
183    UE_CREATE_COMPLETE,
184    UE_DELETE_COMPLETE,
185    UE_RECFG_COMPLETE
186 }UeCfgState;
187
188 typedef enum
189 {
190    CONFIG_UNKNOWN,
191    CONFIG_ADD,
192    CONFIG_MOD,
193    CONFIG_DEL
194 }ConfigType;
195
196 #ifdef NR_TDD
197 typedef enum
198 {
199    DL_SLOT,
200    UL_SLOT,
201    FLEXI_SLOT
202 }SlotConfig;
203
204 typedef enum
205 {
206    TX_PRDCTY_MS_0P5,
207    TX_PRDCTY_MS_0P625,
208    TX_PRDCTY_MS_1,
209    TX_PRDCTY_MS_1P25,
210    TX_PRDCTY_MS_2,
211    TX_PRDCTY_MS_2P5,
212    TX_PRDCTY_MS_5,
213    TX_PRDCTY_MS_10
214 }DlUlTxPeriodicity;
215 #endif
216
217 typedef enum
218 {
219    SCS_15KHZ,
220    SCS_30KHZ,
221    SCS_60KHZ,
222    SCS_120KHZ,
223    SCS_240KHZ
224 }SCS;
225
226 typedef enum
227 {
228    CELL_UP,
229    CELL_DOWN
230 }OduCellStatus;
231
232 typedef struct slotIndInfo
233 {
234    uint16_t cellId;
235    uint16_t sfn;
236    uint16_t slot;
237 }SlotIndInfo;
238
239 typedef struct PlmnIdentity
240 {
241    uint8_t mcc[3];
242    uint8_t mnc[3];
243 }Plmn;
244
245 typedef struct oduCellId
246 {
247    uint16_t cellId;
248 }OduCellId;
249
250 #ifdef NR_TDD
251 typedef struct tddCfg
252 {
253    bool               pres;
254    DlUlTxPeriodicity  tddPeriod;      /* DL UL Transmission periodicity */
255    SlotConfig         slotCfg[MAX_TDD_PERIODICITY_SLOTS][MAX_SYMB_PER_SLOT]; 
256 }TDDCfg;
257 #endif
258
259 OduCellStatus gCellStatus;
260 uint64_t gSlotCount;
261 uint64_t gDlDataRcvdCnt;   /* Number of DL data received at EGTP */
262
263 void freqDomRscAllocType0(uint16_t startPrb, uint16_t prbSize, uint8_t *freqDomain);
264 void oduCpyFixBufToMsg(uint8_t *fixBuf, Buffer *mBuf, uint16_t len);
265 uint8_t buildPlmnId(Plmn plmn, uint8_t *buf);
266
267 #endif
268
269 /**********************************************************************
270   End of file
271 ***********************************************************************/