Moving all common header file into common_def.h file
[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       cmMemset((U8*)_datPtr, 0, _size);                         \
38    else                                                         \
39       _datPtr = NULLP;                                          \
40 }
41  
42 /* free a static buffer */
43 #define CU_FREE(_datPtr, _size)                                 \
44    SPutSBuf(CU_APP_MEM_REG, CU_POOL,                         \
45          (Data *)_datPtr, _size);
46
47
48 typedef struct ipAddr
49 {
50  Bool ipV4Pres;
51  U32  ipV4Addr;
52  Bool ipV6Pres;
53  U8   ipV6Addr[MAX_IPV6_LEN];
54 }SctpIpAddr;
55
56 typedef struct RrcVersion
57 {
58   U8    rrcVer;     /* Latest RRC Version */
59   U32   extRrcVer;  /* Latest RRC version extended */
60 }RrcVersion;
61
62 typedef struct egtpParams
63 {
64    SctpIpAddr  localIp;
65    U16         localPort;
66    SctpIpAddr  destIp;
67    U16         destPort;
68    U32       minTunnelId;
69    U32       maxTunnelId;
70 }EgtpParams;
71
72 typedef struct CuSctpParams
73 {
74    SctpIpAddr  duIpAddr;
75    U16         duPort;
76    SctpIpAddr  cuIpAddr;
77    U16         cuPort;
78 }CuSctpParams;
79
80 typedef struct cuCfgParams
81 {
82    U32              cuId;
83    char             cuName[CU_DU_NAME_LEN_MAX];
84    CuSctpParams     sctpParams;
85    Plmn             plmn;
86    EgtpParams       egtpParams;
87    RrcVersion       rrcVersion;
88 }CuCfgParams;
89 CuCfgParams cuCfgParams; //global variable to hold all configs
90
91 void readCuCfg();
92 void cuAppInmsgHdlr(Buffer *mBuf);
93 void sctpNtfyInd(CmInetSctpNotification *ntfy);
94
95 #endif
96
97 /**********************************************************************
98          End of file
99 **********************************************************************/