4028122558f71e76910b8b8cc8165eb2146344e9
[o-du/l2.git] / src / du_app / du_mgr_ex_ms.c
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 /* This file contains message handling functionality for DU APP */
20 #include "common_def.h"
21 #include "lrg.h"
22 #include "legtp.h"
23 #include "lsctp.h"
24 #include "legtp.h"
25 #include "lkw.h"
26 #include "kwu.h"
27 #include "lrg.x"
28 #include "lkw.x"
29 #include "kwu.x"
30 #include "du_app_mac_inf.h"
31 #include "du_app_rlc_inf.h"
32 #include "du_cfg.h"
33 #include "du_mgr.h"
34 #include "E2AP-PDU.h"
35 #include "du_sctp.h"
36 #include "F1AP-PDU.h"
37 #include "du_f1ap_msg_hdl.h"
38 #include "du_e2ap_msg_hdl.h"
39 #include "du_app_mac_inf.h"
40 #include "du_ue_mgr.h"
41 #include "du_utils.h"
42
43 uint8_t unpackRlcConfigCfm(RlcConfigCfm func,Pst *pst, Buffer *mBuf);
44 uint8_t cmUnpkLkwCntrlCfm(LkwCntrlCfm func,Pst *pst, Buffer *mBuf);
45 uint8_t cmUnpkLrgCfgCfm(LrgCfgCfm func,Pst *pst, Buffer *mBuf);
46 uint8_t cmUnpkKwuDatInd(KwuDatInd func,Pst *pst, Buffer *mBuf);
47 uint8_t cmUnpkLrgSchCfgCfm(LrgSchCfgCfm func,Pst *pst,Buffer *mBuf);
48 /**************************************************************************
49  * @brief Task Initiation callback function. 
50  *
51  * @details
52  *
53  *     Function : duActvInit 
54  *    
55  *     Functionality:
56  *             This function is supplied as one of parameters during DU APP's 
57  *             task registration. SSI will invoke this function once, after
58  *             it creates and attaches this TAPA Task to a system task.
59  *     
60  * @param[in]  Ent entity, the entity ID of this task.     
61  * @param[in]  Inst inst, the instance ID of this task.
62  * @param[in]  Region region, the region ID registered for memory 
63  *              usage of this task.
64  * @param[in]  Reason reason.
65  * @return ROK     - success
66  *         RFAILED - failure
67  ***************************************************************************/
68 uint8_t duActvInit(Ent entity, Inst inst, Region region, Reason reason)
69 {
70    uint8_t id;
71
72    memset(&duCb, 0, sizeof(DuCb));
73
74    duCb.init.procId  = ODU_GET_PROCID();
75    duCb.init.ent     = entity;
76    duCb.init.inst    = inst;
77    duCb.init.region  = region;
78    duCb.init.reason  = reason;
79    duCb.init.cfgDone = FALSE;
80    duCb.init.pool    = DU_POOL;
81    duCb.init.acnt    = FALSE;
82    duCb.init.trc     = FALSE;
83    duCb.init.usta    = TRUE;
84    duCb.mem.region   = DFLT_REGION;
85    duCb.mem.pool     = DU_POOL;
86
87    duCb.f1Status     = FALSE;
88    duCb.e2Status     = FALSE;
89
90    for(id = 0; id < MAX_NUM_CELL; id ++)
91    {
92       duCb.cfgCellLst[id] = NULL;
93       duCb.actvCellLst[id] = NULL;
94    }
95    duCb.numUe = 0;
96    memset(duCb.ueCcchCtxt, 0, MAX_NUM_UE * sizeof(UeCcchCtxt));
97    duCb.numCfgCells  = 0;
98    duCb.numActvCells = 0;
99
100    ODU_SET_PROC_ID(DU_PROC);
101
102    return ROK;
103
104 }
105
106 /**************************************************************************
107  * @brief Task Activation callback function. 
108  *
109  * @details
110  *
111  *      Function : duActvTsk 
112  * 
113  *      Functionality:
114  *           Primitives invoked by DU APP's users/providers through
115  *           a loosely coupled interface arrive here by means of 
116  *           SSI's message handling. This API is registered with
117  *           SSI during the Task Registration of DU APP.
118  *     
119  * @param[in]  Pst     *pst, Post structure of the primitive.     
120  * @param[in]  Buffer *mBuf, Packed primitive parameters in the
121  *  buffer.
122  * @return ROK     - success
123  *         RFAILED - failure
124  *
125  ***************************************************************************/
126 uint8_t duActvTsk(Pst *pst, Buffer *mBuf)
127 {
128    uint8_t ret = ROK;
129
130    switch(pst->srcEnt)
131    {
132       case ENTDUAPP:
133          {
134             switch(pst->event)
135             {
136                case EVTCFG:
137                   {
138                      DU_LOG("\n****** Received initial configs at DU APP ******\n");
139                      duProcCfgComplete();
140                      ODU_PUT_MSG_BUF(mBuf);
141                      break;
142                   }
143                default:
144                   {
145                      DU_LOG("\nDU_APP : Invalid event received at duActvTsk from ENTDUAPP");
146                      ODU_PUT_MSG_BUF(mBuf);
147                      ret = RFAILED;
148                   }
149             }
150
151             break;
152          }
153       case ENTRLC:
154          {
155             switch(pst->event)
156             {
157                case LKW_EVT_CFG_CFM:
158                   {
159                      ret = unpackRlcConfigCfm(DuHdlRlcCfgComplete, pst, mBuf);
160                      break;
161                   }
162                case LKW_EVT_CNTRL_CFM:
163                   {
164                      ret = cmUnpkLkwCntrlCfm(duHdlRlcCntrlCfgComplete, pst, mBuf);
165                      break;
166                   }
167                case LKW_EVT_STA_IND:
168                   {
169                      break;
170                   }
171                case EVENT_RLC_UE_CREATE_RSP:
172                   {
173                      ret = unpackRlcUeCfgRsp(DuProcRlcUeCfgRsp, pst, mBuf);
174                      break;
175                   }
176                case EVENT_RLC_UE_RECONFIG_RSP:
177                   {
178                      ret = unpackRlcUeCfgRsp(DuProcRlcUeCfgRsp, pst, mBuf);
179                      break;
180                   }
181                case EVENT_UL_RRC_MSG_TRANS_TO_DU:
182                   {
183                      ret = unpackRlcUlRrcMsgToDu(DuProcRlcUlRrcMsgTrans, pst, mBuf);
184                      break;
185                   }
186                case EVENT_RRC_DELIVERY_MSG_TRANS_TO_DU:
187                   {
188                      ret = unpackRrcDeliveryReportToDu(DuProcRlcRrcDeliveryReport, pst, mBuf);
189                      break;
190                   }
191                case EVENT_DL_RRC_MSG_RSP_TO_DU:
192                   {
193                      ret = unpackRlcDlRrcMsgRspToDu(DuProcRlcDlRrcMsgRsp, pst, mBuf);
194                      break;
195                   }
196                default:
197                   {
198                      DU_LOG("\nDU_APP : Invalid event %d received at duActvTsk from ENTRLC", \
199                            pst->event);
200                      ODU_PUT_MSG_BUF(mBuf);
201                      ret = RFAILED;
202                   }
203             }
204             break;
205          }
206       case ENTMAC:
207          {
208             switch(pst->event)
209             {
210                //Config complete
211                case EVTCFG:
212                   {
213                      ODU_PUT_MSG_BUF(mBuf);
214                      break;
215                   }
216                case EVTLRGCFGCFM:
217                   {
218                      ret = cmUnpkLrgCfgCfm(duHdlMacCfgComplete, pst, mBuf);
219                      break;
220                   }
221                case EVTLRGCNTRLCFM:
222                   {
223                      break;
224                   }
225                case EVTMACSCHGENCFGCFM:
226                   {
227                      ret = cmUnpkLrgSchCfgCfm(duHdlSchCfgComplete, pst, mBuf);
228                      break;
229                   }
230                case EVENT_MAC_CELL_CONFIG_CFM:
231                   {
232                      ret = unpackMacCellCfgCfm(duHandleMacCellCfgCfm, pst, mBuf);
233                      break;
234                   }
235                case EVENT_MAC_SLOT_IND:
236                   {
237                      ret = unpackMacSlotInd(duHandleSlotInd, pst, mBuf);
238                      break;
239                   }
240                case EVENT_MAC_STOP_IND:
241                   {
242                      ret = unpackMacStopInd(duHandleStopInd, pst, mBuf);
243                      break;
244                   }
245                case EVENT_MAC_UL_CCCH_IND:
246                   {
247                      ret = unpackMacUlCcchInd(duHandleUlCcchInd, pst, mBuf);
248                      break;
249                   }
250                case EVENT_MAC_UE_CREATE_RSP:
251                   {
252                      ret = unpackDuMacUeCfgRsp(DuProcMacUeCfgRsp, pst, mBuf); 
253                      break;
254                   }
255                case EVENT_MAC_UE_RECONFIG_RSP:
256                   {
257                      ret = unpackDuMacUeCfgRsp(DuProcMacUeCfgRsp, pst, mBuf); 
258                      break;
259                   }
260                default:
261                   {
262                      DU_LOG("\nDU_APP : Invalid event received at duActvTsk from ENTMAC");
263                      ODU_PUT_MSG_BUF(mBuf);
264                      ret = RFAILED;
265                   }
266             }
267
268             break;
269          }
270       case ENTSCTP:
271          {
272             switch(pst->event)
273             {
274                case EVENT_CU_DATA:
275                   {
276                      F1APMsgHdlr(mBuf);
277                      break;
278                   }
279                case EVENT_SCTP_NTFY:
280                   {
281                      ret = cmUnpkSctpNtfy(duSctpNtfyHdl, pst, mBuf);
282                      break;
283                   }
284                case EVENT_RIC_DATA:
285                   {
286                      E2APMsgHdlr(mBuf);
287                      break;
288                   }
289                default:
290                   {
291                      DU_LOG("\nDU_APP : Invalid event received at duActvTsk from ENTSCTP");
292                      ret = RFAILED;
293                   }
294
295             }
296             ODU_PUT_MSG_BUF(mBuf);
297             break;
298          }
299       case ENTEGTP:
300          {
301             switch(pst->event)
302             {
303                case EVTCFGCFM:
304                   {
305                      unpackEgtpCfgCfm(duHdlEgtpCfgComplete, mBuf);
306                      break;
307                   }
308                case EVTSRVOPENCFM:
309                   {
310                      unpackEgtpSrvOpenCfm(duHdlEgtpSrvOpenComplete, mBuf);
311                      break;
312                   }
313                case EVTTNLMGMTCFM:
314                   {
315                      unpackEgtpTnlMgmtCfm(duHdlEgtpTnlMgmtCfm, mBuf);
316                      break;
317                   }
318                default:
319                   {
320                      DU_LOG("\nDU_APP : Invalid event[%d] received at duActvTsk from ENTEGTP", pst->event);
321                      ret = RFAILED;
322                   }
323             }
324             ODU_PUT_MSG_BUF(mBuf);
325             break;
326          }
327       default:
328          {
329             DU_LOG("\nDU_APP : DU APP can not process message from Entity %d", pst->srcEnt);
330             ODU_PUT_MSG_BUF(mBuf);
331             ret = RFAILED;
332          }
333
334    }
335    ODU_EXIT_TASK();
336    return ret;
337 }
338
339 /**********************************************************************
340   End of file
341  **********************************************************************/