UL data path changes at Phy stub, RLC UL UM and DU APP [Issue-ID: ODUHIGH-262]
[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("\nERROR  -->  DU_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                case EVENT_UL_USER_DATA_TRANS_TO_DU:
197                   {
198                      ret = unpackRlcUlUserDataToDu(DuProcRlcUlUserDataTrans, pst, mBuf);
199                      break;
200                   }
201                default:
202                   {
203                      DU_LOG("\nERROR  -->  DU_APP : Invalid event %d received at duActvTsk from ENTRLC", \
204                            pst->event);
205                      ODU_PUT_MSG_BUF(mBuf);
206                      ret = RFAILED;
207                   }
208             }
209             break;
210          }
211       case ENTMAC:
212          {
213             switch(pst->event)
214             {
215                //Config complete
216                case EVTCFG:
217                   {
218                      ODU_PUT_MSG_BUF(mBuf);
219                      break;
220                   }
221                case EVTLRGCFGCFM:
222                   {
223                      ret = cmUnpkLrgCfgCfm(duHdlMacCfgComplete, pst, mBuf);
224                      break;
225                   }
226                case EVTLRGCNTRLCFM:
227                   {
228                      break;
229                   }
230                case EVTMACSCHGENCFGCFM:
231                   {
232                      ret = cmUnpkLrgSchCfgCfm(duHdlSchCfgComplete, pst, mBuf);
233                      break;
234                   }
235                case EVENT_MAC_CELL_CONFIG_CFM:
236                   {
237                      ret = unpackMacCellCfgCfm(duHandleMacCellCfgCfm, pst, mBuf);
238                      break;
239                   }
240                case EVENT_MAC_CELL_UP_IND:
241                   {
242                      ret = unpackMacCellUpInd(duHandleCellUpInd, pst, mBuf);
243                      break;
244                   }
245                case EVENT_MAC_STOP_IND:
246                   {
247                      ret = unpackMacStopInd(duHandleStopInd, pst, mBuf);
248                      break;
249                   }
250                case EVENT_MAC_UL_CCCH_IND:
251                   {
252                      ret = unpackMacUlCcchInd(duHandleUlCcchInd, pst, mBuf);
253                      break;
254                   }
255                case EVENT_MAC_UE_CREATE_RSP:
256                   {
257                      ret = unpackDuMacUeCfgRsp(DuProcMacUeCfgRsp, pst, mBuf); 
258                      break;
259                   }
260                case EVENT_MAC_UE_RECONFIG_RSP:
261                   {
262                      ret = unpackDuMacUeCfgRsp(DuProcMacUeCfgRsp, pst, mBuf); 
263                      break;
264                   }
265                default:
266                   {
267                      DU_LOG("\nERROR  -->  DU_APP : Invalid event received at duActvTsk from ENTMAC");
268                      ODU_PUT_MSG_BUF(mBuf);
269                      ret = RFAILED;
270                   }
271             }
272
273             break;
274          }
275       case ENTSCTP:
276          {
277             switch(pst->event)
278             {
279                case EVENT_CU_DATA:
280                   {
281                      F1APMsgHdlr(mBuf);
282                      break;
283                   }
284                case EVENT_SCTP_NTFY:
285                   {
286                      ret = cmUnpkSctpNtfy(duSctpNtfyHdl, pst, mBuf);
287                      break;
288                   }
289                case EVENT_RIC_DATA:
290                   {
291                      E2APMsgHdlr(mBuf);
292                      break;
293                   }
294                default:
295                   {
296                      DU_LOG("\nERROR  -->  DU_APP : Invalid event received at duActvTsk from ENTSCTP");
297                      ret = RFAILED;
298                   }
299
300             }
301             ODU_PUT_MSG_BUF(mBuf);
302             break;
303          }
304       case ENTEGTP:
305          {
306             switch(pst->event)
307             {
308                case EVTCFGCFM:
309                   {
310                      unpackEgtpCfgCfm(duHdlEgtpCfgComplete, mBuf);
311                      break;
312                   }
313                case EVTSRVOPENCFM:
314                   {
315                      unpackEgtpSrvOpenCfm(duHdlEgtpSrvOpenComplete, mBuf);
316                      break;
317                   }
318                case EVTTNLMGMTCFM:
319                   {
320                      unpackEgtpTnlMgmtCfm(duHdlEgtpTnlMgmtCfm, mBuf);
321                      break;
322                   }
323                default:
324                   {
325                      DU_LOG("\nERROR  -->  DU_APP : Invalid event[%d] received at duActvTsk from ENTEGTP", pst->event);
326                      ret = RFAILED;
327                   }
328             }
329             ODU_PUT_MSG_BUF(mBuf);
330             break;
331          }
332       default:
333          {
334             DU_LOG("\nERROR  -->  DU_APP : DU APP can not process message from Entity %d", pst->srcEnt);
335             ODU_PUT_MSG_BUF(mBuf);
336             ret = RFAILED;
337          }
338
339    }
340    ODU_EXIT_TASK();
341    return ret;
342 }
343
344 /**********************************************************************
345   End of file
346  **********************************************************************/