a621525edb3b6a51a5f66b4b23e150dc56d34e60
[o-du/l2.git] / src / ric_stub / ric_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 __RIC_MGR_MAIN_H__
20 #define __RIC_MGR_MAIN_H__
21
22 #define RIC_ID 1
23 #define RIC_NAME "ORAN_OAM_RIC"
24
25 #define DU_IP_V6_ADDR "0000:0000:0000:0000:0000:0000:0000:0001"
26 #define RIC_IP_V6_ADDR "0000:0000:0000:0000:0000:0000:0000:0011"
27
28 #ifndef O1_ENABLE
29 #define LOCAL_IP_RIC "192.168.130.80"
30
31 #define E2_SCTP_PORT 36421
32 #define NUM_E2_ASSOC 1
33 #define REMOTE_IP_DU (char*[]){"192.168.130.81", "192.168.130.83"}
34 #endif
35
36 #define RRC_VER 0
37 #define EXT_RRC_VER 5
38 #define PLMN_MCC0 3
39 #define PLMN_MCC1 1
40 #define PLMN_MCC2 1
41 #define PLMN_MNC0 4
42 #define PLMN_MNC1 8
43 #define PLMN_MNC2 0
44
45 #define RIC_DU_NAME_LEN_MAX 30      /* Max length of RIC/DU name string */
46
47 #define RIC_APP_MEM_REG 1
48 #define RIC_POOL 1
49
50 /* allocate and zero out a static buffer */
51 #define RIC_ALLOC(_datPtr, _size)                                \
52 {                                                               \
53    S16 _ret;                                                    \
54    _ret = SGetSBuf(RIC_APP_MEM_REG, RIC_POOL,                  \
55                      (Data **)&_datPtr, _size);                  \
56    if(_ret == ROK)                                              \
57       memset(_datPtr, 0, _size);                         \
58    else                                                         \
59       _datPtr = NULLP;                                          \
60 }
61  
62 /* free a static buffer */
63 #define RIC_FREE(_datPtr, _size)                                 \
64    SPutSBuf(RIC_APP_MEM_REG, RIC_POOL,                         \
65          (Data *)_datPtr, _size);
66
67 #define SEARCH_DU_DB(_duIdx, _duId, _duDb){\
68    _duDb = NULLP; \
69    for(_duIdx=0; _duIdx < ricCb.numDu; _duIdx++)\
70    {\
71       if(ricCb.duInfo[_duIdx].duId == _duId)\
72       {\
73          _duDb =  (&ricCb.duInfo[_duIdx]);\
74          break; \
75      }\
76    }\
77 }
78
79 typedef struct duDb
80 {
81    uint32_t duId;
82    Bool     ricSubscribedToDu;
83 }DuDb;
84
85 typedef struct ricCfgParams
86 {
87    uint32_t        ricId;
88    char            ricName[RIC_DU_NAME_LEN_MAX];
89    RicSctpParams   sctpParams;
90    Plmn            plmn;
91 }RicCfgParams;
92
93 typedef struct cuGlobalCb
94 {
95    RicCfgParams ricCfgParams;
96    uint8_t      numDu;
97    DuDb         duInfo[MAX_DU_SUPPORTED];
98 }RicGlobalCb;
99
100 RicGlobalCb ricCb;
101
102 void readRicCfg();
103 void cuAppInmsgHdlr(Buffer *mBuf);
104 void sctpNtfyInd(CmInetSctpNotification *ntfy);
105
106 #endif
107
108 /**********************************************************************
109          End of file
110 **********************************************************************/