2bfaabfce077ec04599196f3b0b795e44f3d4847
[o-du/l2.git] / src / cu_stub / cu_stub.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 #ifndef __CU_MGR_MAIN_H__
20 #define __CU_MGR_MAIN_H__
21
22 #define MAX_IPV6_LEN 16
23 #define CU_DU_NAME_LEN_MAX 30      /* Max length of CU/DU name string */
24
25 #define CU_APP_MEM_REG 1
26 #define CU_POOL 1
27 #define MAX_DU_PORT 2
28 #define DU_PORT 38472
29 #define MAX_NUM_OF_SLICE 1024 /* As per the spec 38.473, maxnoofSliceItems = 1024*/
30
31 /*VALID Tunnel ID*/
32 #define MIN_TEID 1   /*[Spec 29.281,Sec 5.1]: All Zero TEIDs are never assigned for setting up GTP-U Tunnel*/
33 #define MAX_TEID MAX_NUM_DRB * MAX_NUM_UE /*[Spec 29.281]: Max limit is not mentioned but as per GTP-U Header Format, TEID occupies 4 octets */
34 /* allocate and zero out a static buffer */
35
36 #define CU_ALLOC(_datPtr, _size)                             \
37 {                                                            \
38    S16 _ret;                                                 \
39    _ret = SGetSBuf(CU_APP_MEM_REG, CU_POOL,                  \
40                      (Data **)&_datPtr, _size);              \
41    if(_ret == ROK)                                           \
42       memset(_datPtr, 0, _size);                      \
43    else                                                      \
44       _datPtr = NULLP;                                       \
45 }
46  
47 /* free a static buffer */
48 #define CU_FREE(_datPtr, _size)                              \
49    if(_datPtr)                                               \
50    SPutSBuf(CU_APP_MEM_REG, CU_POOL,                         \
51          (Data *)_datPtr, _size);
52
53 typedef struct ipAddr
54 {
55  Bool      ipV4Pres;
56  uint32_t  ipV4Addr;
57  Bool      ipV6Pres;
58  uint8_t   ipV6Addr[MAX_IPV6_LEN];
59 }SctpIpAddr;
60
61 typedef struct RrcVersion
62 {
63   uint8_t    rrcVer;     /* Latest RRC Version */
64   uint32_t   extRrcVer;  /* Latest RRC version extended */
65 }RrcVersion;
66
67 typedef struct egtpParams
68 {
69    SctpIpAddr  localIp;
70    uint16_t    localPort;
71    SctpIpAddr  destIp;
72    uint16_t    destPort;
73    uint32_t    currTunnelId;
74    uint32_t    minTunnelId;
75    uint32_t    maxTunnelId;
76 }EgtpParams;
77
78 typedef struct CuSctpParams
79 {
80    SctpIpAddr  duIpAddr;
81    uint16_t    duPort;
82    SctpIpAddr  cuIpAddr;
83    uint16_t    cuPort;
84 }CuSctpParams;
85
86 typedef struct cuCfgParams
87 {
88    uint32_t         cuId;
89    char             cuName[CU_DU_NAME_LEN_MAX];
90    CuSctpParams     sctpParams;
91    Plmn             plmn;
92    EgtpParams       egtpParams;
93    RrcVersion       rrcVersion;
94    uint8_t          numSnssaiSupported;
95    Snssai           *snssaiList[MAX_NUM_OF_SLICE];
96 }CuCfgParams;
97 CuCfgParams cuCfgParams; //global variable to hold all configs
98
99 void readCuCfg();
100 void cuAppInmsgHdlr(Buffer *mBuf);
101 void sctpNtfyInd(CmInetSctpNotification *ntfy);
102 uint8_t egtpInitReq();
103 void *cuConsoleHandler(void *);
104
105 #endif
106
107 /**********************************************************************
108          End of file
109 **********************************************************************/