74d6847180377323a5dabe0ca788b08ffb6cd498
[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
30 /* allocate and zero out a static buffer */
31 #define CU_ALLOC(_datPtr, _size)                             \
32 {                                                            \
33    S16 _ret;                                                 \
34    _ret = SGetSBuf(CU_APP_MEM_REG, CU_POOL,                  \
35                      (Data **)&_datPtr, _size);              \
36    if(_ret == ROK)                                           \
37       memset(_datPtr, 0, _size);                      \
38    else                                                      \
39       _datPtr = NULLP;                                       \
40 }
41  
42 /* free a static buffer */
43 #define CU_FREE(_datPtr, _size)                              \
44    if(_datPtr)                                               \
45    SPutSBuf(CU_APP_MEM_REG, CU_POOL,                         \
46          (Data *)_datPtr, _size);
47
48
49 typedef struct ipAddr
50 {
51  Bool      ipV4Pres;
52  uint32_t  ipV4Addr;
53  Bool      ipV6Pres;
54  uint8_t   ipV6Addr[MAX_IPV6_LEN];
55 }SctpIpAddr;
56
57 typedef struct RrcVersion
58 {
59   uint8_t    rrcVer;     /* Latest RRC Version */
60   uint32_t   extRrcVer;  /* Latest RRC version extended */
61 }RrcVersion;
62
63 typedef struct egtpParams
64 {
65    SctpIpAddr  localIp;
66    uint16_t    localPort;
67    SctpIpAddr  destIp;
68    uint16_t    destPort;
69    uint32_t    currTunnelId;
70    uint32_t    minTunnelId;
71    uint32_t    maxTunnelId;
72 }EgtpParams;
73
74 typedef struct CuSctpParams
75 {
76    SctpIpAddr  duIpAddr;
77    uint16_t    duPort;
78    SctpIpAddr  cuIpAddr;
79    uint16_t    cuPort;
80 }CuSctpParams;
81
82 typedef struct cuCfgParams
83 {
84    uint32_t         cuId;
85    char             cuName[CU_DU_NAME_LEN_MAX];
86    CuSctpParams     sctpParams;
87    Plmn             plmn;
88    EgtpParams       egtpParams;
89    RrcVersion       rrcVersion;
90 }CuCfgParams;
91 CuCfgParams cuCfgParams; //global variable to hold all configs
92
93 void readCuCfg();
94 void cuAppInmsgHdlr(Buffer *mBuf);
95 void sctpNtfyInd(CmInetSctpNotification *ntfy);
96 uint8_t egtpInitReq();
97 void *cuConsoleHandler(void *);
98
99 #endif
100
101 /**********************************************************************
102          End of file
103 **********************************************************************/