1 /*******************************************************************************
2 ################################################################################
3 # Copyright (c) [2017-2019] [Radisys] #
5 # Licensed under the Apache License, Version 2.0 (the "License"); #
6 # you may not use this file except in compliance with the License. #
7 # You may obtain a copy of the License at #
9 # http://www.apache.org/licenses/LICENSE-2.0 #
11 # Unless required by applicable law or agreed to in writing, software #
12 # distributed under the License is distributed on an "AS IS" BASIS, #
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
14 # See the License for the specific language governing permissions and #
15 # limitations under the License. #
16 ################################################################################
17 *******************************************************************************/
19 #ifndef __CU_MGR_MAIN_H__
20 #define __CU_MGR_MAIN_H__
23 #define CU_NAME "ORAN_OAM_CU"
25 #define DU_IP_V6_ADDR "0000:0000:0000:0000:0000:0000:0000:0001"
26 #define CU_IP_V6_ADDR "0000:0000:0000:0000:0000:0000:0000:0011"
29 #define DU_IP_V4_ADDR (char*[]){"192.168.130.81", "192.168.130.83"}
30 #define DU_SCTP_PORT (int[]){38472, 38473}
32 #define CU_IP_V4_ADDR "192.168.130.82"
33 #define CU_SCTP_PORT_TO_DU (int[]){38472, 38473}
36 #define DU_EGTP_PORT 39001
37 #define CU_EGTP_PORT 39002
47 #define CU_DU_NAME_LEN_MAX 30 /* Max length of CU/DU name string */
49 #define CU_APP_MEM_REG 1
52 #define MAX_NUM_OF_SLICE 1024 /* As per the spec 38.473, maxnoofSliceItems = 1024*/
54 /* allocate and zero out a static buffer */
56 #define CU_ALLOC(_datPtr, _size) \
59 _ret = SGetSBuf(CU_APP_MEM_REG, CU_POOL, \
60 (Data **)&_datPtr, _size); \
62 memset(_datPtr, 0, _size); \
67 /* free a static buffer */
68 #define CU_FREE(_datPtr, _size) \
70 SPutSBuf(CU_APP_MEM_REG, CU_POOL, \
71 (Data *)_datPtr, _size);
73 #define SEARCH_DU_DB(_duIdx, _duId, _duDb){\
75 for(_duIdx=0; _duIdx < cuCb.numDu; _duIdx++)\
77 if(cuCb.duInfo[_duIdx].duId == _duId)\
79 _duDb = (&cuCb.duInfo[_duIdx]);\
85 #define SEARCH_CELL_DB(_cellIdx, _duDb, _nrCellId, _cellCb){\
87 for(_cellIdx=0; _cellIdx < _duDb->numCells; _cellIdx++)\
89 if(_duDb->cellCb[_cellIdx].nrCellId == _nrCellId)\
91 _cellCb = (&(_duDb->cellCb[_cellIdx]));\
101 UE_ATTACH_IN_PROGRESS,
103 UE_HANDOVER_IN_PROGRESS
106 typedef struct RrcVersion
108 uint8_t rrcVer; /* Latest RRC Version */
109 uint32_t extRrcVer; /* Latest RRC version extended */
112 typedef struct cuCfgParams
115 char cuName[CU_DU_NAME_LEN_MAX];
116 CuSctpParams sctpParams;
118 EgtpParams egtpParams;
119 RrcVersion rrcVersion;
122 typedef struct cuCellCb CuCellCb;
124 typedef struct cuUeCb
128 uint8_t gnbDuUeF1apId;
129 uint8_t gnbCuUeF1apId;
138 CuUeCb *ueCb[MAX_NUM_UE];
144 char duName[CU_DU_NAME_LEN_MAX];
146 CuCellCb cellCb[MAX_NUM_CELL];
148 CuUeCb ueCb[MAX_NUM_CELL * MAX_NUM_UE];
151 typedef struct cuGlobalCb
153 CuCfgParams cuCfgParams;
154 uint8_t numSnssaiSupported;
155 Snssai *snssaiList[MAX_NUM_OF_SLICE];
157 DuDb duInfo[MAX_DU_SUPPORTED];
158 uint32_t gnbCuUeF1apIdGenerator; /* Generating CU UE F1AP ID */
164 void cuAppInmsgHdlr(Buffer *mBuf);
165 void sctpNtfyInd(CmInetSctpNotification *ntfy);
166 uint8_t egtpInitReq();
167 void *cuConsoleHandler(void *);
171 /**********************************************************************
173 **********************************************************************/