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_msg_hdl.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 "lkw.h"
24 #include "kwu.h"
25 #include "lrg.x"
26 #include "lkw.x"
27 #include "kwu.x"
28 #include "du_app_mac_inf.h"
29 #include "du_app_rlc_inf.h"
30 #include "du_cfg.h"
31 #include "du_app_rlc_inf.h"
32 #include "du_mgr.h"
33 #include "du_sctp.h"
34 #include "F1AP-PDU.h"
35 #include "du_f1ap_msg_hdl.h"
36 #include "du_ue_mgr.h"
37 #include "lsctp.h"
38 #include "legtp.h"
39 #include "lphy_stub.h"
40 #include "du_utils.h"
41 #include "du_cell_mgr.h" 
42
43 #ifdef O1_ENABLE
44
45 #include "GlobalDefs.h"
46 #include "AlarmInterface.h"
47
48 #endif 
49
50 uint8_t rlcDlCfg = 0;
51 uint8_t numRlcDlSaps = 0;
52 uint8_t rlcUlCfg = 0;
53 uint8_t numRlcMacSaps = 0;
54 uint8_t macCfg = 0;
55 uint8_t macCfgInst = 0;
56
57 DuCfgParams duCfgParam;
58 uint8_t packRlcConfigReq(Pst *pst, RlcMngmt *cfg);
59 uint8_t cmPkLkwCntrlReq(Pst *pst, RlcMngmt *cfg);
60 uint8_t cmPkLrgCfgReq(Pst *pst, RgMngmt *cfg);
61 uint8_t BuildAndSendE2SetupReq();
62 uint8_t egtpHdlDatInd(EgtpMsg egtpMsg);
63 uint8_t BuildAndSendDUConfigUpdate();
64 uint16_t getTransId();
65 uint8_t cmPkLrgSchCfgReq(Pst * pst,RgMngmt * cfg);
66
67 packMacCellCfgReq packMacCellCfgOpts[] =
68 {
69    packMacCellCfg, /* packing for loosely coupled */
70    MacProcCellCfgReq, /* packing for tightly coupled */
71    packMacCellCfg, /* packing for light weight loosly coupled */
72 };
73
74 DuMacCellStart packMacCellStartOpts[] =
75 {
76    packMacCellStart,   /* Loose coupling */
77    MacProcCellStart,   /* TIght coupling */
78    packMacCellStart    /* Light weight-loose coupling */
79 };
80
81 DuMacCellStop packMacCellStopOpts[] =
82 {
83    packMacCellStop,   /* Loose coupling */
84    MacProcCellStop,   /* TIght coupling */
85    packMacCellStop    /* Light weight-loose coupling */
86 };
87
88 /**************************************************************************
89  * @brief Function to fill configs required by RLC
90  *
91  * @details
92  *
93  *      Function : duBuildRlcCfg 
94  * 
95  *      Functionality:
96  *           Initiates general Configs towards RLC 
97  *     
98  * @param[in] Inst  Specifies if RLC UL or RLC DL instance 
99  * @return ROK     - success
100  *         RFAILED - failure
101  *
102  ***************************************************************************/
103 uint8_t duBuildRlcCfg(Inst inst)
104 {
105    RlcMngmt   rlcMngmt;
106    RlcGenCfg  *genCfg = NULLP;
107    Pst pst;
108
109    DU_SET_ZERO(&rlcMngmt, sizeof(RlcMngmt));
110    DU_SET_ZERO(&pst, sizeof(Pst));
111
112    genCfg   = &(rlcMngmt.t.cfg.s.gen);
113
114    /*----------- Fill General Configuration Parameters ---------*/
115    genCfg->maxUe       = duCfgParam.maxUe;
116    genCfg->maxKwuSaps  = 2;
117    genCfg->maxUdxSaps  = 1; 
118    genCfg->rlcMode     = (inst == RLC_UL_INST) ?
119       LKW_RLC_MODE_UL : LKW_RLC_MODE_DL;
120    genCfg->timeRes     = 1; 
121    genCfg->maxRguSaps  = DEFAULT_CELLS;
122
123    /*----------- Fill lmPst
124     * Parameters ---------*/
125    genCfg->lmPst.dstProcId = DU_PROC;
126    genCfg->lmPst.srcProcId = DU_PROC;
127    genCfg->lmPst.dstEnt    = ENTDUAPP;
128    genCfg->lmPst.dstInst   = DU_INST;
129    genCfg->lmPst.srcEnt    = ENTRLC;
130    genCfg->lmPst.srcInst   = inst;
131    genCfg->lmPst.prior     = PRIOR0;
132    genCfg->lmPst.route     = RTESPEC;
133    genCfg->lmPst.region    = (inst == RLC_UL_INST) ?
134       RLC_UL_MEM_REGION:RLC_DL_MEM_REGION;
135    genCfg->lmPst.pool      = RLC_POOL;
136    genCfg->lmPst.selector  = ODU_SELECTOR_LC;
137
138    /* Fill Header */
139    rlcMngmt.hdr.msgType             = TCFG;
140    rlcMngmt.hdr.msgLen              = 0;
141    rlcMngmt.hdr.entId.ent           = ENTRLC;
142    rlcMngmt.hdr.entId.inst          = (Inst)0;
143    rlcMngmt.hdr.elmId.elmnt         = STGEN;
144    rlcMngmt.hdr.seqNmb              = 0;
145    rlcMngmt.hdr.version             = 0;
146    rlcMngmt.hdr.transId             = 0;
147    rlcMngmt.hdr.response.prior      = PRIOR0;
148    rlcMngmt.hdr.response.route      = RTESPEC;
149    rlcMngmt.hdr.response.mem.region = (inst == RLC_UL_INST) ?
150       RLC_UL_MEM_REGION:RLC_DL_MEM_REGION;
151    rlcMngmt.hdr.response.mem.pool   = DU_POOL;
152    rlcMngmt.hdr.response.selector   = ODU_SELECTOR_LC;
153
154    /* Fill Pst */
155    pst.selector  = ODU_SELECTOR_LC;
156    pst.srcEnt    = ENTDUAPP;
157    pst.dstEnt    = ENTRLC;
158    pst.dstInst   = inst;
159    pst.dstProcId = DU_PROC;
160    pst.srcProcId = DU_PROC;
161    pst.region    = duCb.init.region;
162
163    DU_LOG("\nDEBUG   -->  DU_APP : RLC Gen Cfg Req sent for inst %d", inst);
164
165    /* Send the request to RLC */
166    packRlcConfigReq(&pst, &rlcMngmt);
167
168    return ROK;
169 }
170
171 /**************************************************************************
172  * @brief Function to fill configs required by RLC
173  *
174  * @details
175  *
176  *      Function : duBuildRlcLsapCfg 
177  * 
178  *      Functionality:
179  *           Initiates general Configs towards RLC 
180  *     
181  * @param[in] Inst  Specifies if RLC UL or RLC DL instance 
182  * @return ROK     - success
183  *         RFAILED - failure
184  *
185  ***************************************************************************/
186 uint8_t duBuildRlcLsapCfg(Ent ent, Inst inst, uint8_t lsapInst)
187 {
188
189    RlcMngmt   rlcMngmt;
190    RlcSapCfg  *lSap = NULLP;
191    Pst        pst;
192
193    DU_SET_ZERO(&rlcMngmt, sizeof(RlcMngmt));
194    DU_SET_ZERO(&pst, sizeof(Pst));
195
196    /* Fill Header */
197    rlcMngmt.hdr.msgType             = TCFG;
198    rlcMngmt.hdr.entId.ent           = ENTRLC;
199    rlcMngmt.hdr.response.mem.region = (inst == RLC_UL_INST) ?
200       RLC_UL_MEM_REGION:RLC_DL_MEM_REGION;
201
202    rlcMngmt.hdr.response.mem.pool   = RLC_POOL;
203
204    /* Fill Pst */
205    pst.selector  = ODU_SELECTOR_LC;
206    pst.srcEnt    = ENTDUAPP;
207    pst.dstEnt    = ENTRLC;
208    pst.dstProcId = DU_PROC;
209    pst.dstInst   = inst;
210    pst.srcProcId = DU_PROC;
211    pst.region    = duCb.init.region;
212    lSap   = &(rlcMngmt.t.cfg.s.sap);
213
214    lSap->mem.region = (inst == RLC_UL_INST) ?
215       RLC_UL_MEM_REGION:RLC_DL_MEM_REGION;
216    lSap->mem.pool    = RLC_POOL;
217    lSap->mem.spare   = 0;
218    lSap->bndTmrIntvl = 10;
219    lSap->priority    = PRIOR0;
220    lSap->route       = RTESPEC;
221    if (ent == ENTMAC)
222    {
223       lSap->procId      = DU_PROC;
224       lSap->ent         = ENTMAC;
225       lSap->inst        = lsapInst;
226       lSap->sapId       = lsapInst;      /* SapId will be stored as suId in MAC */
227       lSap->selector    = (inst == RLC_UL_INST) ? ODU_SELECTOR_LWLC : ODU_SELECTOR_TC;
228       rlcMngmt.hdr.elmId.elmnt  = STRGUSAP;
229       DU_LOG("\nDEBUG   -->  DU_APP : RLC MAC Lower Sap Cfg Req sent for inst %d", inst);
230
231    }
232    else
233    {
234       lSap->procId    = DU_PROC;
235       lSap->ent       = ENTRLC;
236       lSap->inst      = (inst == RLC_UL_INST) ?
237          RLC_DL_INST : RLC_UL_INST;
238       lSap->sapId       = 0;
239       lSap->selector = ODU_SELECTOR_LC;
240       rlcMngmt.hdr.elmId.elmnt  = STUDXSAP;
241       DU_LOG("\nDEBUG   -->  DU_APP : RLC DL/UL Lower Sap Cfg Req sent for inst %d", inst);
242    }
243
244    packRlcConfigReq(&pst, &rlcMngmt);
245    return ROK;
246 }
247
248 /**************************************************************************
249  * @brief Function to fill configs required by RLC
250  *
251  * @details
252  *
253  *      Function : duBuildRlcUsapCfg 
254  * 
255  *      Functionality:
256  *           Initiates general Configs towards RLC 
257  *     
258  * @param[in] Inst  Specifies if RLC UL or RLC DL instance 
259  * @return ROK     - success
260  *         RFAILED - failure
261  *
262  ***************************************************************************/
263 uint8_t duBuildRlcUsapCfg(uint8_t elemId, Ent ent, Inst inst)
264 {
265    RlcMngmt   rlcMngmt;
266    RlcSapCfg  *uSap = NULLP;
267    Pst        pst;
268
269    DU_SET_ZERO(&rlcMngmt, sizeof(RlcMngmt));
270    DU_SET_ZERO(&pst, sizeof(Pst));
271
272    uSap   = &(rlcMngmt.t.cfg.s.sap);
273
274    uSap->selector   = ODU_SELECTOR_LC;
275    uSap->mem.region = (inst == RLC_UL_INST) ?
276       RLC_UL_MEM_REGION:RLC_DL_MEM_REGION;
277    uSap->mem.pool = RLC_POOL;
278    uSap->mem.spare = 0;
279
280    uSap->procId = DU_PROC;
281    uSap->ent = ENTRLC;
282    uSap->sapId = 0;
283
284    uSap->inst = (inst == RLC_UL_INST) ?
285       RLC_DL_INST : RLC_UL_INST;
286    uSap->bndTmrIntvl = 1000;
287    uSap->priority = PRIOR0;
288    uSap->route = RTESPEC;
289
290    /* Fill Header */
291    rlcMngmt.hdr.msgType             = TCFG;
292    rlcMngmt.hdr.entId.ent           = ENTRLC;
293    rlcMngmt.hdr.elmId.elmnt         = STUDXSAP;
294    rlcMngmt.hdr.response.mem.region = (inst == RLC_UL_INST) ?
295       RLC_UL_MEM_REGION:RLC_DL_MEM_REGION;
296
297    rlcMngmt.hdr.response.mem.pool   = RLC_POOL;
298
299    /* Fill Pst */
300    pst.selector  = ODU_SELECTOR_LC;
301    pst.srcEnt    = ENTDUAPP;
302    pst.dstEnt    = ENTRLC;
303    pst.dstProcId = DU_PROC;
304    pst.dstInst = inst;
305    pst.srcProcId = DU_PROC;
306    pst.region = duCb.init.region;
307
308    DU_LOG("\nDEBUG   -->  DU_APP : RLC Kwu Upper Sap Cfg Req sent for inst %d", inst);
309    packRlcConfigReq(&pst, &rlcMngmt);
310
311    return ROK;
312 }
313
314 /**************************************************************************
315  * @brief Function to populate internal DS of DU APP
316  *
317  * @details
318  *
319  *      Function : duProcCfgComplete
320  * 
321  *      Functionality:
322  *           Populates internal data structures of DU APP after 
323  *           receiving configurations.
324  *     
325  * @param[in]  void
326  * @return ROK     - success
327  *         RFAILED - failure
328  *
329  ***************************************************************************/
330 uint8_t duProcCfgComplete()
331 {
332    uint8_t         ret = ROK;
333    static uint16_t cellId = 0;
334    uint16_t        idx;
335    for(idx=0; idx< DEFAULT_CELLS; idx++)
336    {
337       DuCellCb *cell = NULLP;
338       DU_ALLOC(cell, sizeof(DuCellCb))
339       if(cell == NULLP)
340       {
341          DU_LOG("\nERROR  -->  DU_APP : Memory Allocation failed in duProcCfgComplete");
342          ret = RFAILED;
343       }
344       else
345       {
346          uint8_t idx1=0; 
347          memset(cell, 0, sizeof(DuCellCb));
348          cell->cellId = ++cellId;
349          memset(&cell->cellInfo.nrEcgi.plmn, 0, sizeof(Plmn));
350          cell->cellInfo.nrEcgi.plmn.mcc[0] = PLMN_MCC0;
351          cell->cellInfo.nrEcgi.plmn.mcc[1] = PLMN_MCC1;
352          cell->cellInfo.nrEcgi.plmn.mcc[2] = PLMN_MCC2;
353          cell->cellInfo.nrEcgi.plmn.mnc[0] = PLMN_MNC0;
354          cell->cellInfo.nrEcgi.plmn.mnc[1] = PLMN_MNC1;
355          cell->cellInfo.nrEcgi.cellId = NR_CELL_ID;
356          cell->cellInfo.nrPci = NR_PCI; 
357          cell->cellInfo.fiveGsTac = DU_TAC;
358          memset(&cell->cellInfo.plmn[idx1], 0, sizeof(Plmn));
359          for(idx1=0; idx1<MAX_PLMN; idx1++)
360          {
361             cell->cellInfo.plmn[idx1].mcc[0] = PLMN_MCC0;
362             cell->cellInfo.plmn[idx1].mcc[1] = PLMN_MCC1;
363             cell->cellInfo.plmn[idx1].mcc[2] = PLMN_MCC2;
364             cell->cellInfo.plmn[idx1].mnc[0] = PLMN_MNC0;
365             cell->cellInfo.plmn[idx1].mnc[1] = PLMN_MNC1;
366          }
367          cell->cellInfo.maxUe = duCfgParam.maxUe;
368          cell->cellStatus = CELL_OUT_OF_SERVICE;
369
370          duCb.cfgCellLst[duCb.numCfgCells] = cell;
371          duCb.numCfgCells++;
372       }
373    }
374    if(ret != RFAILED)
375    {
376       //Start layer configs
377       ret = duSendRlcUlCfg();
378    }
379    return ret;
380 }
381 /**************************************************************************
382  * @brief Function to invoke DU Layer Configs
383  *
384  * @details
385  *
386  *      Function : duSendRlcUlCfg 
387  * 
388  *      Functionality:
389  *           Initiates Configs towards layers of DU
390  *     
391  * @param[in]  void
392  * @return ROK     - success
393  *         RFAILED - failure
394  *
395  ***************************************************************************/
396 uint8_t duSendRlcUlCfg()
397 {
398    uint8_t cellIdx; 
399
400    duBuildRlcCfg((Inst)RLC_UL_INST);
401    for(cellIdx = 0; cellIdx < DEFAULT_CELLS; cellIdx++)
402    {
403       duBuildRlcLsapCfg(ENTMAC, (Inst)RLC_UL_INST, cellIdx);
404    }
405    duBuildRlcLsapCfg(ENTRLC, (Inst)RLC_UL_INST, 0);
406
407    return ROK;
408 }
409
410 /**************************************************************************
411  * @brief Function to invoke DU Layer Configs
412  *
413  * @details
414  *
415  *      Function : duSendRlcDlCfg 
416  * 
417  *      Functionality:
418  *           Initiates Configs towards layers of DU
419  *     
420  * @param[in]  void
421  * @return ROK     - success
422  *         RFAILED - failure
423  *
424  ***************************************************************************/
425 uint8_t duSendRlcDlCfg()
426 {
427    uint8_t cellIdx; 
428
429    duBuildRlcCfg((Inst)RLC_DL_INST);
430    duBuildRlcUsapCfg(STUDXSAP, ENTRLC, (Inst)RLC_DL_INST);
431    for(cellIdx = 0; cellIdx < DEFAULT_CELLS; cellIdx++)
432    {
433       duBuildRlcLsapCfg(ENTMAC, (Inst)RLC_DL_INST, cellIdx);
434    }
435
436    return ROK;
437 }
438 /**************************************************************************
439  * @brief Function to handle Config Confirm from RLC
440  *
441  * @details
442  *
443  *      Function : DuHdlRlcCfgComplete 
444  * 
445  *      Functionality:
446  *           Handles Gen Config Confirm from RLC
447  *     
448  * @param[in]  Pst     *pst, Post structure of the primitive.     
449  * @param[in]  RlcMngmt *cfm, Unpacked primitive info received from RLC
450  * @return ROK     - success
451  *         RFAILED - failure
452  *
453  ***************************************************************************/
454 uint8_t DuHdlRlcCfgComplete(Pst *pst, RlcMngmt *cfm)
455 {
456    uint8_t ret = ROK;
457    if (pst->srcInst == RLC_UL_INST)
458    {
459       ret = duProcRlcUlCfgComplete(pst, cfm);
460    }
461    else
462    {
463       ret = duProcRlcDlCfgComplete(pst, cfm);
464    }
465    return ret;
466 }
467
468 /**************************************************************************
469  * @brief Function to handle Control Config Confirm from RLC
470  *
471  * @details
472  *
473  *      Function : duHdlRlcCntrlCfgComplete 
474  * 
475  *      Functionality:
476  *           Handles Control Config Confirm from RLC
477  *     
478  * @param[in]  Pst     *pst, Post structure of the primitive.     
479  * @param[in]  RlcMngmt *cfm, Unpacked primitive info received from RLC
480  * @return ROK     - success
481  *         RFAILED - failure
482  *
483  ***************************************************************************/
484 uint8_t duHdlRlcCntrlCfgComplete(Pst *pst, RlcMngmt *cntrl)
485 {
486    uint8_t ret = ROK;
487
488    if (cntrl->cfm.status == LCM_PRIM_OK)
489    {
490       switch (cntrl->hdr.elmId.elmnt)
491       {
492          case  STRGUSAP:
493             {
494                if (pst->srcInst == RLC_DL_INST)
495                {
496                   DU_LOG("\nDEBUG   -->  DU_APP : BIND OF RLC DL TO MAC (RGU) SAP SUCCESSFUL");
497                   macCfgInst++;
498                   if(macCfgInst < DEFAULT_CELLS)
499                   {
500                      macCfgInst = 0;
501                      duBindUnbindRlcToMacSap((Inst) RLC_DL_INST, ABND);
502                   }
503                   else
504                   {
505                      duBindUnbindRlcToMacSap((Inst) RLC_UL_INST, ABND);
506                   }
507                }
508                else
509                {
510                   DU_LOG("\nDEBUG   -->  DU_APP : BIND OF RLC UL TO MAC (RGU) SAP SUCCESSFUL");
511                   macCfgInst++;
512                   if(macCfgInst < DEFAULT_CELLS)
513                   {
514                      duBindUnbindRlcToMacSap((Inst) RLC_UL_INST, ABND);
515                   }
516                   else
517                   {
518                      duSendSchCfg();
519                   }
520                   break;
521                }
522             }
523
524       }
525    }
526    return ret;
527 }
528 /**************************************************************************
529  * @brief Function to handle Config Confirm from RLC UL
530  *
531  * @details
532  *
533  *      Function : duHdlRlcUlCfgComplete 
534  * 
535  *      Functionality:
536  *           Handles Config Confirm from RLC UL
537  *     
538  * @param[in]  Pst     *pst, Post structure of the primitive.     
539  * @param[in]  RlcMngmt *cfm, Unpacked primitive info received from RLC UL
540  * @return ROK     - success
541  *         RFAILED - failure
542  *
543  ***************************************************************************/
544 uint8_t duProcRlcUlCfgComplete(Pst *pst, RlcMngmt *cfm)
545 {
546    uint8_t ret;
547
548    DU_LOG("\nDEBUG   -->  DU_APP : RLC UL Cfg Status %d", cfm->cfm.status);
549    if (cfm->cfm.status == LCM_PRIM_OK)
550    {
551       switch(cfm->hdr.elmId.elmnt)
552       {
553          case STGEN:
554             {
555                rlcUlCfg |= RLC_GEN_CFG;
556                break;
557             }
558          case STRGUSAP:
559             {
560                numRlcMacSaps++;
561                if(numRlcMacSaps == DEFAULT_CELLS)
562                {
563                   rlcUlCfg |= RLC_MAC_SAP_CFG;
564                   numRlcMacSaps = 0;
565                }
566                break;
567             }
568          case STUDXSAP:
569             {
570                rlcUlCfg |= RLC_UDX_SAP_CFG;
571                break;
572
573             }
574          default:
575             break;
576       }
577       DU_LOG("\nDEBUG   -->  DU_APP : RLC UL Cfg Cfm received for the element %d ",cfm->hdr.elmId.elmnt);
578       if(rlcUlCfg == DU_RLC_UL_CONFIGURED)
579       {
580          rlcUlCfg = 0;
581          numRlcMacSaps = 0;
582          //Start configuration of RLC DL
583          duSendRlcDlCfg();
584
585       }
586    }
587    else
588    {
589       DU_LOG("\nERROR  -->  DU_APP : Config confirm NOK from RLC UL");
590       ret = RFAILED;
591    }
592    return ret;
593 }
594
595 /**************************************************************************
596  * @brief Function to handle Config Confirm from RLC DL
597  *
598  * @details
599  *
600  *      Function : duHdlRlcDlCfgComplete 
601  * 
602  *      Functionality:
603  *           Handles Config Confirm from RLC DL
604  *     
605  * @param[in]  Pst     *pst, Post structure of the primitive.     
606  * @param[in]  RlcMngmt *cfm, Unpacked primitive info received from RLC DL
607  * @return ROK     - success
608  *         RFAILED - failure
609  *
610  ***************************************************************************/
611 uint8_t duProcRlcDlCfgComplete(Pst *pst, RlcMngmt *cfm)
612 {
613    DU_LOG("\nDEBUG   -->  DU_APP : RLC DL Cfg Status %d", cfm->cfm.status);
614    if (cfm->cfm.status == LCM_PRIM_OK)
615    {
616       switch(cfm->hdr.elmId.elmnt)
617       {
618          case STGEN:
619             {
620                rlcDlCfg |= RLC_GEN_CFG;
621                break;
622             }
623          case STRGUSAP:
624             {
625                numRlcMacSaps++;
626                if(numRlcMacSaps == DEFAULT_CELLS)
627                {
628                   rlcDlCfg |= RLC_MAC_SAP_CFG;
629                   numRlcMacSaps = 0;
630                }
631                break;
632             }
633          case STUDXSAP:
634             {
635                rlcDlCfg |= RLC_UDX_SAP_CFG;
636                break;
637
638             }
639          default:
640             break;
641
642       }
643       DU_LOG("\nDEBUG   -->  DU_APP : RLC DL Cfg Cfm received for the element %d ",cfm->hdr.elmId.elmnt);
644       if(rlcDlCfg == DU_RLC_DL_CONFIGURED)
645       {
646          rlcDlCfg = 0;
647          //Start configuration of MAC
648          duSendMacCfg();
649
650       }
651    }
652    else
653    {
654       DU_LOG("\nERROR  -->  DU_APP : Config confirm NOK from RLC DL");
655    }
656    return ROK;
657 }
658
659 /**************************************************************************
660  * @brief Function to send configs to MAC
661  *
662  * @details
663  *
664  *      Function : duSendMacCfg 
665  * 
666  *      Functionality:
667  *           Initiates Configs towards MAC layer
668  *     
669  * @param[in]  void
670  * @return ROK     - success
671  *         RFAILED - failure
672  *
673  ***************************************************************************/
674 uint8_t duSendMacCfg()
675 {
676    duBuildMacGenCfg();
677    duBuildMacUsapCfg(RLC_UL_INST);
678    duBuildMacUsapCfg(RLC_DL_INST);
679
680    return ROK;
681 }
682
683 /**************************************************************************
684  * @brief Function to fill gen config required by MAC
685  *
686  * @details
687  *
688  *      Function : duBuildMacGenCfg 
689  * 
690  *      Functionality:
691  *           Initiates general Configs towards MAC
692  *     
693  * @param[in] void
694  * @return ROK     - success
695  *         RFAILED - failure
696  *
697  ***************************************************************************/
698 uint8_t duBuildMacGenCfg()
699 {
700    RgMngmt       rgMngmt;
701    RgGenCfg      *genCfg=NULLP;
702    Pst           pst;
703
704    DU_SET_ZERO(&pst, sizeof(Pst));
705    DU_SET_ZERO(&rgMngmt, sizeof(RgMngmt));
706
707    genCfg   = &(rgMngmt.t.cfg.s.genCfg);
708
709    /*----------- Fill General Configuration Parameters ---------*/
710    genCfg->mem.region = MAC_MEM_REGION;
711    genCfg->mem.pool   = MAC_POOL;
712    genCfg->tmrRes     = 10;
713    genCfg->numRguSaps = 2;
714
715    genCfg->lmPst.dstProcId = DU_PROC;
716    genCfg->lmPst.srcProcId = DU_PROC;
717    genCfg->lmPst.dstEnt    = ENTDUAPP;
718    genCfg->lmPst.dstInst   = 0;
719    genCfg->lmPst.srcEnt    = ENTMAC;
720    genCfg->lmPst.srcInst   = macCfgInst;
721    genCfg->lmPst.prior     = PRIOR0;
722    genCfg->lmPst.route     = RTESPEC;
723    genCfg->lmPst.region    = MAC_MEM_REGION;
724    genCfg->lmPst.pool      = MAC_POOL;
725    genCfg->lmPst.selector  = ODU_SELECTOR_LC;
726
727    /* Fill Header */
728    rgMngmt.hdr.msgType             = TCFG;
729    rgMngmt.hdr.msgLen              = 0;
730    rgMngmt.hdr.entId.ent           = ENTMAC;
731    rgMngmt.hdr.entId.inst          = (Inst)0;
732    rgMngmt.hdr.elmId.elmnt         = STGEN;
733    rgMngmt.hdr.seqNmb              = 0;
734    rgMngmt.hdr.version             = 0;
735    rgMngmt.hdr.transId             = 0;
736
737    rgMngmt.hdr.response.prior      = PRIOR0;
738    rgMngmt.hdr.response.route      = RTESPEC;
739    rgMngmt.hdr.response.mem.region = MAC_MEM_REGION;
740    rgMngmt.hdr.response.mem.pool   = MAC_POOL;
741    rgMngmt.hdr.response.selector   = ODU_SELECTOR_LC;
742
743    /* Fill Pst */
744    pst.selector  = ODU_SELECTOR_LC;
745    pst.srcEnt    = ENTDUAPP;
746    pst.dstEnt    = ENTMAC;
747    pst.dstInst   = macCfgInst;
748    pst.dstProcId = DU_PROC;
749    pst.srcProcId = DU_PROC;
750    pst.region = duCb.init.region;
751
752    DU_LOG("\nDEBUG   -->  DU_APP : MAC Gen Cfg Req sent");
753
754    /* Send the request to MAC */
755    cmPkLrgCfgReq(&pst, &rgMngmt);
756
757    return ROK;
758 }
759
760 /**************************************************************************
761  * @brief Function to fill USAP config required by MAC
762  *
763  * @details
764  *
765  *      Function : duBuildMacUsapCfg 
766  * 
767  *      Functionality:
768  *           Initiates USAP Configs towards MAC
769  *     
770  * @param[in] SpId  Specifies if RLC UL or RLC DL instance 
771  * @return ROK     - success
772  *         RFAILED - failure
773  *
774  ***************************************************************************/
775 uint8_t duBuildMacUsapCfg(SpId sapId)
776 {
777    RgMngmt     rgMngmt;
778    RgUpSapCfg  *uSap = NULLP;
779    Pst         pst;
780
781    DU_SET_ZERO(&pst, sizeof(Pst));
782    DU_SET_ZERO(&rgMngmt, sizeof(RgMngmt));
783
784    uSap   = &(rgMngmt.t.cfg.s.rguSap);
785
786    uSap->mem.region = MAC_MEM_REGION;
787    uSap->mem.pool   = MAC_POOL;
788    uSap->suId       = 0;
789    uSap->spId       = sapId;
790    uSap->procId     = DU_PROC;
791    uSap->ent        = ENTRLC;
792    uSap->inst       = sapId;
793    uSap->prior      = PRIOR0;
794    uSap->route      = RTESPEC;
795    uSap->selector   = ODU_SELECTOR_LC ;
796
797    /* fill header */
798    rgMngmt.hdr.msgType             = TCFG;
799    rgMngmt.hdr.entId.ent           = ENTMAC;
800    rgMngmt.hdr.entId.inst          = (Inst)0;
801    rgMngmt.hdr.elmId.elmnt         = STRGUSAP;
802    rgMngmt.hdr.response.mem.region = MAC_MEM_REGION;
803    rgMngmt.hdr.response.mem.pool   = MAC_POOL;
804
805    /* fill pst */
806    pst.selector  = ODU_SELECTOR_LC;
807    pst.srcEnt    = ENTDUAPP;
808    pst.dstEnt    = ENTMAC;
809    pst.dstInst   = macCfgInst;
810    pst.dstProcId = DU_PROC;
811    pst.srcProcId = DU_PROC;
812    pst.region    = duCb.init.region;
813
814    DU_LOG("\nDEBUG  -->  DU_APP : MAC Rgu USap Cfg Req sent");
815
816    /* Send the request to MAC */
817    cmPkLrgCfgReq(&pst, &rgMngmt);
818
819    return ROK;
820 }
821
822 /**************************************************************************
823  * @brief Function to handle Config Confirm from MAC
824  *
825  * @details
826  *
827  *      Function : duHdlMacCfgComplete 
828  * 
829  *      Functionality:
830  *           Handles Gen Config Confirm from MAC
831  *     
832  * @param[in]  Pst     *pst, Post structure of the primitive.     
833  * @param[in]  RgMngmt *cfm, Unpacked primitive info received from MAC
834  * @return ROK     - success
835  *         RFAILED - failure
836  *
837  ***************************************************************************/
838 uint8_t duHdlMacCfgComplete(Pst *pst, RgMngmt *cfm)
839 {
840    uint8_t ret = ROK;
841
842    if (cfm->cfm.status == LCM_PRIM_OK)
843    {
844       switch (cfm->hdr.elmId.elmnt)
845       {
846          case STGEN:
847             {
848                macCfg |= MAC_GEN_CFG;
849                break;
850             }
851          case STRGUSAP:
852             {
853                macCfg |= MAC_SAP_CFG;
854                numRlcMacSaps++;
855                break;
856             }
857          default:
858             break;
859       }
860       DU_LOG("\nDEBUG   -->  DU_APP : MAC Cfg Cfm received for the element %d ",cfm->hdr.elmId.elmnt);
861       if(macCfg == MAC_CONFIGURED && numRlcMacSaps == MAX_MAC_SAP)
862       {
863          macCfg = 0;
864          DU_LOG("\nDEBUG   -->  DU_APP : Completed sending Configs");
865          macCfgInst = 0;
866          duBindUnbindRlcToMacSap(RLC_DL_INST, ABND);
867       }
868
869    }
870    else
871    {
872       DU_LOG("\nERROR  -->  DU_APP : Config confirm NOK from MAC");
873       ret = RFAILED;
874    }
875    return ret;
876 }
877
878 /**************************************************************************
879  * @brief Function to bind/unbind RLC to MAC SAP
880  *
881  * @details
882  *
883  *      Function : duBindUnbindRlcToMacSap 
884  * 
885  *      Functionality:
886  *           Initiates Bind/Unbind from RLC to MAC
887  *     
888  * @param[in] Inst   Specifies if RLC UL or RLC DL instance 
889  * @param[in] action Specifies if action is bind or unbind
890  * @return ROK     - success
891  *         RFAILED - failure
892  *
893  ***************************************************************************/
894 uint8_t duBindUnbindRlcToMacSap(uint8_t inst, uint8_t action)
895 {
896    RlcCntrl  *cntrl = NULLP;
897    RlcMngmt  rlcMngmt;
898    Pst      pst;
899
900
901    DU_SET_ZERO(&rlcMngmt, sizeof(RlcMngmt));
902    DU_SET_ZERO(&pst, sizeof(Pst));
903
904    if (action == ABND)
905    {
906       DU_LOG("\nDEBUG   -->  DU_APP : Cntrl Req to RLC inst %d to bind MAC sap", inst);
907    }
908    else
909    {
910       DU_LOG("\nDEBUG   -->  DU_APP : Cntrl Req to RLC inst %d to unbind MAC sap", inst);
911    }
912    cntrl = &(rlcMngmt.t.cntrl);
913
914    cntrl->action            =  action;
915    cntrl->subAction         =  DU_ZERO_VAL;
916    cntrl->s.sapCntrl.suId   =  macCfgInst;
917    cntrl->s.sapCntrl.spId   =  inst;
918
919    /* Fill header */
920    rlcMngmt.hdr.msgType             = TCNTRL;
921    rlcMngmt.hdr.entId.ent           = ENTRLC;
922    rlcMngmt.hdr.entId.inst          = inst;
923    rlcMngmt.hdr.elmId.elmnt         = 186; /* ambiguous defines in lkw.h and lrg.h so direct hardcoded*/
924    rlcMngmt.hdr.response.mem.region = (inst == RLC_UL_INST) ?
925       RLC_UL_MEM_REGION:RLC_DL_MEM_REGION;
926    rlcMngmt.hdr.response.mem.pool   = RLC_POOL;
927
928    /* Fill pst */
929    pst.selector  = ODU_SELECTOR_LC;
930    pst.srcEnt    = ENTDUAPP;
931    pst.dstEnt    = ENTRLC;
932    pst.dstProcId = DU_PROC;
933    pst.dstInst   = inst;
934    pst.srcProcId = DU_PROC;
935    pst.region    = duCb.init.region;
936
937    cmPkLkwCntrlReq(&pst, &rlcMngmt);
938
939    return ROK;
940 }
941 /*******************************************************************
942  *
943  * @brief Handles SCTP notifications
944  *
945  * @details
946  *
947  *    Function : duSctpNtfyHdl
948  *
949  *    Functionality:
950  *         Handles SCTP notification
951  *
952  * @params[in] Message Buffer
953  *             SCTP notification
954  *
955  * @return ROK     - success
956  *         RFAILED - failure
957  *
958  * ****************************************************************/
959
960 uint8_t duSctpNtfyHdl(Buffer *mBuf, CmInetSctpNotification *ntfy)
961 {
962    if(f1Params.assocId == ntfy->u.assocChange.assocId)
963    {
964       if(BuildAndSendF1SetupReq() != ROK)
965       {
966          return RFAILED;
967       }
968    }
969    else if(ricParams.assocId == ntfy->u.assocChange.assocId)
970    {
971       if(BuildAndSendE2SetupReq() != ROK)
972       {
973          return RFAILED;
974       }
975    }
976    else
977    {
978       DU_LOG("\nERROR  -->  DU_APP : Invalid assocId %d received", ntfy->u.assocChange.assocId);
979       return RFAILED;
980    }
981    return ROK;
982 }
983
984 /*******************************************************************
985  *
986  * @brief  Fills Pst struct for ENTEGTP
987  *
988  * @details
989  *
990  *    Function : duFillEgtpPst
991  *
992  *    Functionality:
993  *       Fills Pst struct for ENTEGTP
994  *
995  * @params[in] 
996  * @return ROK     - success
997  *         RFAILED - failure
998  *
999  * ****************************************************************/
1000 uint8_t duFillEgtpPst(Pst *pst, Event event)
1001 {
1002    memset(pst, 0, sizeof(Pst));
1003    pst->srcEnt = (Ent)ENTDUAPP;
1004    pst->srcInst = (Inst)DU_INST;
1005    pst->srcProcId = DU_PROC;
1006    pst->dstEnt = (Ent)ENTEGTP;
1007    pst->dstInst = (Inst)EGTP_INST;
1008    pst->dstProcId = pst->srcProcId;
1009    pst->event = event;
1010    pst->selector = ODU_SELECTOR_LC;
1011    pst->pool= DU_POOL;
1012
1013    return ROK;
1014 }
1015
1016
1017 /*******************************************************************
1018  *
1019  * @brief  Function to configure EGTP
1020  *
1021  * @details
1022  *
1023  *    Function : duBuildEgtpCfgReq
1024  *
1025  *    Functionality:
1026  *       Function to configure EGTP
1027  *
1028  * @params[in] 
1029  * @return ROK     - success
1030  *         RFAILED - failure
1031  *
1032  * ****************************************************************/
1033
1034 uint8_t duBuildEgtpCfgReq()
1035 {
1036    Pst pst;
1037    EgtpConfig egtpCfg;
1038
1039    DU_LOG("\nDEBUG   -->  DU_APP : Sending EGTP config request");
1040
1041    memset(&egtpCfg, 0, sizeof(EgtpConfig));
1042    memcpy(&egtpCfg, &duCfgParam.egtpParams, sizeof(EgtpConfig));
1043
1044    duFillEgtpPst(&pst, EVTCFGREQ);
1045    packEgtpCfgReq(&pst, egtpCfg);
1046
1047    return ROK;
1048 }
1049
1050 /*******************************************************************
1051  *
1052  * @brief  Function to configure EGTP
1053  *
1054  * @details
1055  *
1056  *    Function : duBuildEgtpCfgReq
1057  *
1058  *    Functionality:
1059  *       Function to configure EGTP
1060  *
1061  * @params[in] 
1062  * @return ROK     - success
1063  *         RFAILED - failure
1064  *
1065  * ****************************************************************/
1066 uint8_t duHdlEgtpCfgComplete(CmStatus cfm)
1067 {
1068    uint8_t ret = ROK;
1069
1070    if(cfm.status == LCM_PRIM_OK)
1071    {
1072       DU_LOG("\nDEBUG   -->  DU_APP : EGTP configuraton complete");
1073 #ifdef EGTP_TEST
1074       duSendEgtpSrvOpenReq();
1075 #endif
1076    }
1077    else
1078    {
1079       DU_LOG("\nERROR  -->  DU_APP : EGTP configuraton failed");
1080       ret = RFAILED;
1081    }
1082
1083    return (ret);
1084 }
1085
1086 /*******************************************************************
1087  *
1088  * @brief  Sends server open request to EGTP
1089  *
1090  * @details
1091  *
1092  *    Function : duSendEgtpSrvOpenReq
1093  *
1094  *    Functionality:
1095  *       Sends server open request to EGTP
1096  *
1097  * @params[in] 
1098  * @return ROK     - success
1099  *         RFAILED - failure
1100  *
1101  * ****************************************************************/
1102
1103 uint8_t duSendEgtpSrvOpenReq()
1104 {
1105    Pst pst;
1106
1107    DU_LOG("\nDEBUG   -->  DU_APP : Sending EGTP server open request");
1108
1109    duFillEgtpPst(&pst, EVTSRVOPENREQ);
1110    packEgtpSrvOpenReq(&pst);
1111
1112    return ROK;
1113 }
1114
1115 /*******************************************************************
1116  *
1117  * @brief Handles server open confirmation
1118  *
1119  * @details
1120  *
1121  *    Function : duHdlEgtpSrvOpenComplete
1122  *
1123  *    Functionality:
1124  *        Handles server open confirmation
1125  *
1126  * @params[in] 
1127  * @return ROK     - success
1128  *         RFAILED - failure
1129  *
1130  *****************************************************************/
1131
1132 uint8_t duHdlEgtpSrvOpenComplete(CmStatus cfm)
1133 {
1134    uint8_t ret = ROK;
1135
1136    if(cfm.status == LCM_PRIM_OK)
1137    {
1138       DU_LOG("\nDEBUG   -->  DU_APP : EGTP server opened successfully");
1139 #ifdef EGTP_TEST
1140       duSendEgtpTnlMgmtReq(EGTP_TNL_MGMT_ADD, EGTP_LCL_TEID, EGTP_REM_TEID);
1141 #endif
1142    }
1143    else
1144    {
1145       DU_LOG("\nERROR  -->  DU_APP : EGTP server opening failed");
1146       ret = RFAILED;
1147    }
1148
1149    return (ret);
1150 }
1151
1152 /*******************************************************************
1153  *
1154  * @brief Sends tunnel management request
1155  *
1156  * @details
1157  *
1158  *    Function : duSendEgtpTnlMgmtReq 
1159  *
1160  *    Functionality:
1161  *        Builds and sends tunnel management request to EGTP
1162  *
1163  * @params[in] Action
1164  *             Local tunnel endpoint id
1165  *             Remote tunnel endpoint id 
1166  * @return ROK     - success
1167  *         RFAILED - failure
1168  *
1169  * ****************************************************************/
1170
1171 uint8_t duSendEgtpTnlMgmtReq(uint8_t action, uint32_t lclTeid, uint32_t remTeid)
1172 {
1173    Pst pst;
1174    EgtpTnlEvt tnlEvt;
1175
1176    tnlEvt.action = action;
1177    tnlEvt.lclTeid = lclTeid;
1178    tnlEvt.remTeid = remTeid;
1179
1180    DU_LOG("\nDEBUG   -->  DU_APP : Sending EGTP tunnel management request");
1181    duFillEgtpPst(&pst, EVTTNLMGMTREQ);
1182    egtpTnlMgmtReq(&pst, tnlEvt);
1183    return ROK;
1184 }
1185
1186 /*******************************************************************
1187  *
1188  * @brief Handles Tunnel management confirm 
1189  *
1190  * @details
1191  *
1192  *    Function : duHdlEgtpTnlMgmtCfm
1193  *
1194  *    Functionality:
1195  *      Handles tunnel management confirm received from Egtp
1196  *
1197  * @params[in] Tunnel Event  
1198  * @return ROK     - success
1199  *         RFAILED - failure
1200  *
1201  * ****************************************************************/
1202 uint8_t duHdlEgtpTnlMgmtCfm(EgtpTnlEvt tnlEvtCfm)
1203 {
1204    uint8_t ret = ROK;
1205
1206    if(tnlEvtCfm.cfmStatus.status == LCM_PRIM_OK)
1207    {
1208       DU_LOG("\nDEBUG  -->  DU_APP: Tunnel management confirm OK");
1209    }
1210    else
1211    {
1212       DU_LOG("\nERROR  -->  DU_APP: Tunnel management failed");
1213       ret = RFAILED;
1214    }
1215
1216    return (ret);
1217 }
1218
1219 /*******************************************************************
1220  *
1221  * @brief Sends UL user data over to EGTP
1222  *
1223  * @details
1224  *
1225  *    Function : duSendEgtpDatInd
1226  *
1227  *    Functionality: Sends UL user data over to EGTP
1228  *
1229  * @params[in] UL data buffer
1230  * @return ROK     - success
1231  *         RFAILED - failure
1232  *
1233  * ****************************************************************/
1234 uint8_t duSendEgtpDatInd(Buffer *mBuf)
1235 {
1236    EgtpMsg  egtpMsg;
1237
1238    /* Fill EGTP header */
1239    egtpMsg.msgHdr.msgType = EGTPU_MSG_GPDU;
1240    egtpMsg.msgHdr.nPdu.pres = FALSE;
1241    egtpMsg.msgHdr.seqNum.pres = FALSE;
1242    egtpMsg.msgHdr.extHdr.udpPort.pres = FALSE;
1243    egtpMsg.msgHdr.extHdr.pdcpNmb.pres = FALSE;
1244    egtpMsg.msgHdr.teId = 1;
1245    egtpMsg.msg = mBuf;
1246
1247    egtpHdlDatInd(egtpMsg);
1248
1249    return ROK;
1250
1251 }
1252
1253 /**************************************************************************
1254  * @brief Function to send configs to SCH
1255  *
1256  * @details
1257  *
1258  *      Function : duSendSchCfg 
1259  * 
1260  *      Functionality:
1261  *           Sends general config to Scheduler via MAC layer
1262  *     
1263  * @param[in]  void
1264  * @return ROK     - success
1265  *         RFAILED - failure
1266  *
1267  ***************************************************************************/
1268 uint8_t duSendSchCfg()
1269 {
1270    RgMngmt       rgMngmt;
1271    RgSchInstCfg  *cfg = NULLP;
1272    Pst           pst;
1273
1274    DU_SET_ZERO(&pst, sizeof(Pst));
1275    DU_SET_ZERO(&rgMngmt, sizeof(RgMngmt));
1276
1277    cfg = &(rgMngmt.t.cfg.s.schInstCfg);
1278
1279    /* Filling of Instance Id */
1280    cfg->instId = DEFAULT_CELLS + 1;
1281    /* Filling of Gen config */
1282    cfg->genCfg.mem.region = MAC_MEM_REGION;
1283    cfg->genCfg.mem.pool = MAC_POOL;
1284    cfg->genCfg.tmrRes = 10;
1285
1286 #ifdef LTE_ADV
1287    cfg->genCfg.forceCntrlSrbBoOnPCel = FALSE;
1288    cfg->genCfg.isSCellActDeactAlgoEnable = TRUE;
1289 #endif/*LTE_ADV*/
1290    cfg->genCfg.startCellId     = 1;
1291    cfg->genCfg.lmPst.dstProcId = DU_PROC;
1292    cfg->genCfg.lmPst.srcProcId = DU_PROC;
1293    cfg->genCfg.lmPst.dstEnt    = ENTDUAPP;
1294    cfg->genCfg.lmPst.dstInst   = DU_INST;
1295    cfg->genCfg.lmPst.srcEnt    = ENTMAC;
1296    cfg->genCfg.lmPst.srcInst   = DEFAULT_CELLS + 1;
1297    cfg->genCfg.lmPst.prior     = PRIOR0;
1298    cfg->genCfg.lmPst.route     = RTESPEC;
1299    cfg->genCfg.lmPst.region    = MAC_MEM_REGION;
1300    cfg->genCfg.lmPst.pool      = MAC_POOL;
1301    cfg->genCfg.lmPst.selector  = ODU_SELECTOR_LC;
1302
1303    /* Fill Header */
1304    rgMngmt.hdr.msgType             = TCFG;
1305    rgMngmt.hdr.entId.ent           = ENTMAC;
1306    rgMngmt.hdr.entId.inst          = DU_INST;
1307    rgMngmt.hdr.elmId.elmnt         = STSCHINST;
1308    rgMngmt.hdr.response.mem.region = MAC_MEM_REGION;
1309    rgMngmt.hdr.response.mem.pool   = MAC_POOL;
1310
1311    /* Fill Pst */
1312    pst.selector  = ODU_SELECTOR_LC;
1313    pst.srcEnt    = ENTDUAPP;
1314    pst.dstEnt    = ENTMAC;
1315    pst.dstProcId = DU_PROC;
1316    pst.srcProcId = DU_PROC;
1317    pst.srcInst   = DU_INST;
1318    pst.dstInst   = 0;
1319    pst.region    = duCb.init.region;
1320    pst.event    = (Event) EVTMACSCHGENCFGREQ;
1321
1322    DU_LOG("\nDEBUG   -->  DU_APP : MAC Sch Cfg sent");
1323
1324    /* Send the request to MAC */
1325    cmPkLrgSchCfgReq(&pst, &rgMngmt);
1326
1327    return ROK;
1328 }
1329
1330
1331 /**************************************************************************
1332  * @brief Function to configure SCTP params and 
1333  *  responsible for F1 and E2 interfaces
1334  *
1335  * @details
1336  *
1337  *      Function : duLayerConfigComplete
1338  * 
1339  *      Functionality:
1340  *           Configures SCTP Params and responsible for handling
1341  *           F1 and E2 interface.
1342  *     
1343  * @param[in]  void
1344  * @return ROK     - success
1345  *         RFAILED - failure
1346  *
1347  ***************************************************************************/
1348 uint8_t duLayerConfigComplete()
1349 {
1350    uint8_t ret = ROK;
1351
1352    DU_LOG("\nINFO   -->  DU_APP : Configuring all Layer is complete");
1353
1354    if((ret = duSctpCfgReq(duCfgParam.sctpParams)) != ROK)
1355    {
1356       DU_LOG("\nERROR  -->  DU_APP : Failed configuring Sctp Params");
1357       ret = RFAILED;
1358    }
1359    if((ret = duSctpAssocReq(F1_INTERFACE)) != ROK)
1360    {
1361       DU_LOG("\nERROR  -->  DU_APP : Failed to send AssocReq F1");
1362       ret = RFAILED;
1363    }
1364    if((ret = duSctpAssocReq(E2_INTERFACE)) != ROK)
1365    {
1366       DU_LOG("\nERROR  -->  DU_APP : Failed to send AssocReq E2");
1367       ret = RFAILED;
1368    }
1369
1370    return (ret); 
1371
1372
1373 /**************************************************************************
1374  * @brief Function to handle  SCH Config Confirm from MAC
1375  *
1376  * @details
1377  *
1378  *      Function : duHdlSchCfgComplete 
1379  * 
1380  *      Functionality:
1381  *           Handles Scheduler Gen Config Confirm from MAC
1382  *     
1383  * @param[in]  Pst     *pst, Post structure of the primitive.     
1384  * @param[in]  RgMngmt *cfm, Unpacked primitive info received from MAC
1385  * @return ROK     - success
1386  *         RFAILED - failure
1387  *
1388  ***************************************************************************/
1389 uint8_t duHdlSchCfgComplete(Pst *pst, RgMngmt *cfm)
1390 {
1391    if (cfm->cfm.status == LCM_PRIM_OK)
1392    {
1393       switch (cfm->hdr.elmId.elmnt)
1394       {
1395          case STSCHINST:
1396             {
1397                DU_LOG("\nDEBUG   -->  DU_APP : Received SCH CFG CFM at DU APP");
1398                break;
1399             }
1400          default:
1401             break;
1402       }
1403    }
1404    duLayerConfigComplete();
1405    duBuildEgtpCfgReq();
1406    return ROK;
1407 }
1408
1409 /**************************************************************************
1410  * @brief Function to fill and send MacCellconfig
1411  *
1412  * @details
1413  *
1414  *      Function : duBuildAndSendMacCellCfg 
1415  * 
1416  *      Functionality:
1417  *           Initiates MAC Configs towards MAC
1418  *     
1419  * @param[in]cell id
1420  * @return ROK     - success
1421  *         RFAILED - failure
1422  *
1423  ***************************************************************************/
1424 uint8_t duBuildAndSendMacCellCfg(uint16_t cellId)
1425 {
1426    Pst pst;
1427    MacCellCfg *duMacCellCfg = NULLP;
1428
1429    DU_ALLOC_SHRABL_BUF(duMacCellCfg, sizeof(MacCellCfg));
1430    if(duMacCellCfg == NULLP)
1431    {
1432       return RFAILED;
1433    }
1434
1435    /* store the address in the duCellCb so that we can free on confirm msg */
1436    duCb.actvCellLst[cellId-1]->duMacCellCfg = duMacCellCfg;
1437
1438    /* copy the mac config structure from duCfgParams */
1439    memcpy(duMacCellCfg,&duCfgParam.macCellCfg,sizeof(MacCellCfg));
1440
1441    /* Fill Pst */
1442    FILL_PST_DUAPP_TO_MAC(pst, EVENT_MAC_CELL_CONFIG_REQ);
1443
1444    /* Send MAC cell config to MAC */
1445    return (*packMacCellCfgOpts[pst.selector])(&pst, duMacCellCfg);
1446 }
1447
1448 /**************************************************************************
1449  * @brief Function to Handle MAC cell config confirm
1450  *
1451  * @details
1452  *
1453  *      Function : duHandleMacCellCfgCfm 
1454  * 
1455  *      Functionality:
1456  *           Initiates general Configs towards MAC
1457  *     
1458  * @param[in] void
1459  * @return ROK     - success
1460  *         RFAILED - failure
1461  *
1462  ***************************************************************************/
1463 uint8_t  duHandleMacCellCfgCfm(Pst *pst, MacCellCfgCfm *macCellCfgCfm)
1464 {
1465    uint8_t  actvCellIdx  = 0;
1466    uint8_t  ret          = ROK;
1467
1468    for(actvCellIdx = 0; actvCellIdx < MAX_NUM_CELL; actvCellIdx++)
1469    {
1470       if(macCellCfgCfm->cellId == duCb.actvCellLst[actvCellIdx]->cellId)
1471       {
1472          duCb.actvCellLst[actvCellIdx]->duMacCellCfg = NULLP;
1473       }
1474    }
1475    if(macCellCfgCfm->rsp == ROK)
1476    {
1477       /* Build and send GNB-DU config update */
1478       ret = BuildAndSendDUConfigUpdate();
1479
1480       /* Build and Send Cell Start Req to MAC */
1481       ret = duBuildAndSendMacCellStart();
1482    }
1483    else
1484    {
1485       /* TODO : Action to be taken if cell configuration fails. 
1486        * Should CU be informed? */
1487
1488       DU_LOG("\nERROR  -->  DU_APP : Mac cell cfg failed");
1489       ret = RFAILED;
1490    }
1491    return ret;
1492 }
1493
1494 /*******************************************************************
1495  *
1496  * @brief Builds and sends cell start request to MAC
1497  *
1498  * @details
1499  *
1500  *    Function : duBuildAndSendMacCellStart
1501  *
1502  *    Functionality:
1503  *       Builds and sends cell start request to MAC
1504  *
1505  * @params[in] 
1506  * @return ROK     - success
1507  *         RFAILED - failure
1508  *
1509  * ****************************************************************/
1510 uint8_t duBuildAndSendMacCellStart()
1511 {
1512    Pst pst;
1513    OduCellId *cellId = NULL;
1514
1515    DU_LOG("\nINFO   -->  DU APP : Building and Sending cell start request to MAC");
1516
1517    /* Send Cell Start Request to MAC */
1518    DU_ALLOC_SHRABL_BUF(cellId, sizeof(OduCellId));
1519    if(!cellId)
1520    {
1521       DU_LOG("\nERROR  -->  DU APP : Memory alloc failed while building cell start request");
1522       return RFAILED;
1523    }
1524
1525    for(uint8_t id = 0; id < duCb.numActvCells; id++) 
1526    {
1527       if(duCb.actvCellLst[id])
1528       {
1529          cellId->cellId = duCb.actvCellLst[id]->cellId;
1530
1531          /* Fill Pst */
1532          FILL_PST_DUAPP_TO_MAC(pst, EVENT_MAC_CELL_START);
1533
1534          return (*packMacCellStartOpts[pst.selector])(&pst, cellId);
1535       }
1536    }
1537    return ROK;
1538 }
1539
1540 /*******************************************************************
1541  *
1542  * @brief Builds and sends cell stop request to MAC
1543  *
1544  * @details
1545  *
1546  *    Function : duBuildAndSendMacCellStop 
1547  *
1548  *    Functionality:
1549  *       Builds and sends cell stop request to MAC
1550  *
1551  * @params[in] 
1552  * @return ROK     - success
1553  *         RFAILED - failure
1554  *
1555  * ****************************************************************/
1556 uint8_t duBuildAndSendMacCellStop()
1557 {
1558    Pst pst;
1559    OduCellId *cellId = NULL;
1560
1561    DU_LOG("\nINFO   -->  DU APP : Building and Sending cell stop request to MAC");
1562
1563    /* Send Cell Stop Request to MAC */
1564    DU_ALLOC_SHRABL_BUF(cellId, sizeof(OduCellId));
1565    if(!cellId)
1566    {
1567       DU_LOG("\nERROR  -->  DU APP : Memory alloc failed while building cell stop request");
1568       return RFAILED;
1569    }
1570    cellId->cellId = duCb.actvCellLst[0]->cellId;
1571
1572    /* Fill Pst */
1573    FILL_PST_DUAPP_TO_MAC(pst, EVENT_MAC_CELL_STOP);
1574
1575    return (*packMacCellStopOpts[pst.selector])(&pst, cellId);
1576 }
1577
1578 /*******************************************************************
1579  *
1580  * @brief Handles stop indication from MAC
1581  *
1582  * @details
1583  *
1584  *    Function : duHandleStopInd
1585  *
1586  *    Functionality:
1587  *      Handles stop indication from MAC
1588  *
1589  * @params[in] Post structure pointer
1590  * @return ROK     - success
1591  *         RFAILED - failure
1592  *
1593  * ****************************************************************/
1594 uint8_t duHandleStopInd(Pst *pst, OduCellId *cellId)
1595 {
1596    DuCellCb *cellCb = NULLP;
1597
1598    if(cellId->cellId <=0 || cellId->cellId > MAX_NUM_CELL)
1599    {
1600       DU_LOG("\nERROR  -->  DU APP : Invalid Cell Id %d in duHandleStopInd()", cellId->cellId);
1601    }
1602
1603    if(duGetCellCb(cellId->cellId, &cellCb) != ROK)
1604       return RFAILED;
1605
1606    if((cellCb->cellStatus == ACTIVATED))
1607    {
1608       DU_LOG("\nINFO   -->  DU APP : 5G-NR Cell %d is DOWN", cellId->cellId);
1609       cellCb->cellStatus = DELETION_IN_PROGRESS;
1610
1611 #ifdef O1_ENABLE
1612       DU_LOG("\nINFO   -->  DU APP : Raise cell down alarm for cell id=%d", cellId->cellId);
1613       raiseCellAlrm(CELL_DOWN_ALARM_ID, cellId->cellId);
1614 #endif
1615    }
1616
1617    if((pst->selector == ODU_SELECTOR_LWLC) || (pst->selector == ODU_SELECTOR_TC))
1618       DU_FREE_SHRABL_BUF(MAC_MEM_REGION, pst->pool, cellId, sizeof(OduCellId));
1619
1620    cellCb->cellStatus = CELL_OUT_OF_SERVICE; //TODO: cell status must be set to OOS after all UE and cell cleanup which is not
1621                                              //supported now
1622
1623    return ROK;
1624 }
1625
1626 /*******************************************************************
1627  *
1628  * @brief Handles slot indication from MAC
1629  *
1630  * @details
1631  *
1632  *    Function : duHandleUlCcchInd
1633  *
1634  *    Functionality:
1635  *      Handles UL CCCH indication from MAC
1636  *
1637  * @params[in] Post structure pointer
1638  *             UL CCCH Ind pointer
1639  * @return ROK     - success
1640  *         RFAILED - failure
1641  *
1642  * ****************************************************************/
1643 uint8_t duHandleUlCcchInd(Pst *pst, UlCcchIndInfo *ulCcchIndInfo)
1644 {
1645
1646    DU_LOG("\nINFO  -->  DU APP : UL CCCH Indication received");
1647
1648    return (duProcUlCcchInd(ulCcchIndInfo));
1649 }
1650
1651 /*******************************************************************
1652  *
1653  * @brief Process UL RRC Message from RLC
1654  *
1655  * @details
1656  *
1657  *    Function : DuProcRlcUlRrcMsgTrans
1658  *
1659  *    Functionality: Process UL RRC Message from RLC
1660  *
1661  * @params[in] Post structure
1662  *             UL RRC Message Info
1663  * @return ROK     - success
1664  *         RFAILED - failure
1665  *
1666  * ****************************************************************/
1667 uint8_t DuProcRlcUlRrcMsgTrans(Pst *pst, RlcUlRrcMsgInfo *ulRrcMsgInfo)
1668 {
1669    DuCellCb *cellCb = NULLP;
1670    DuUeCb   ueCb ={0};
1671   
1672    if(duGetCellCb(ulRrcMsgInfo->cellId, &cellCb) != ROK)
1673       return RFAILED;
1674    if(ulRrcMsgInfo->ueIdx > 0)
1675    {
1676    ueCb = cellCb->ueCb[ulRrcMsgInfo->ueIdx -1];
1677
1678
1679    BuildAndSendULRRCMessageTransfer(ueCb, ulRrcMsgInfo->lcId, ulRrcMsgInfo->msgLen, \
1680       ulRrcMsgInfo->rrcMsg);
1681
1682    DU_FREE_SHRABL_BUF(pst->region, pst->pool, ulRrcMsgInfo->rrcMsg, ulRrcMsgInfo->msgLen);
1683    DU_FREE_SHRABL_BUF(pst->region, pst->pool, ulRrcMsgInfo, sizeof(RlcUlRrcMsgInfo));
1684    }
1685    return ROK;
1686 }
1687
1688 /*******************************************************************
1689 *
1690 * @brief Process RRC delivery report from RLC
1691 *
1692 * @details
1693 *
1694 *    Function : DuProcRlcRrcDeliveryReport
1695 *
1696 *    Functionality: Process RRC delivery Message from RLC
1697 *
1698 * @params[in] Post structure
1699 *             UL RRC Message Info
1700 * @return ROK     - success
1701 *         RFAILED - failure
1702 *
1703 * ****************************************************************/
1704 uint8_t DuProcRlcRrcDeliveryReport(Pst *pst, RrcDeliveryReport *rrcDeliveryReport)
1705 {
1706    DuCellCb *cellCb = NULLP;
1707    DuUeCb   ueCb;
1708    uint8_t  ret = RFAILED;
1709
1710    if(duGetCellCb(rrcDeliveryReport->cellId, &cellCb) != ROK)
1711       return RFAILED;
1712    
1713    ueCb = cellCb->ueCb[rrcDeliveryReport->ueIdx -1];
1714    ret = BuildAndSendRrcDeliveryReport(ueCb.gnbCuUeF1apId, ueCb.gnbDuUeF1apId,rrcDeliveryReport);
1715
1716    DU_FREE_SHRABL_BUF(pst->region, pst->pool, rrcDeliveryReport, sizeof(RrcDeliveryReport));
1717    return ret;
1718 }
1719
1720 /*******************************************************************
1721  *
1722  * @brief Process UL user data from RLC
1723  *
1724  * @details
1725  *
1726  *    Function : DuProcRlcUlUserDataTrans
1727  *
1728  *    Functionality: Process UL user data from RLC
1729  *
1730  * @params[in] Post structure
1731  *             UL user data
1732  * @return ROK     - success
1733  *         RFAILED - failure
1734  *
1735  * ****************************************************************/
1736 uint8_t DuProcRlcUlUserDataTrans(Pst *pst, RlcUlUserDatInfo *ulUserData)
1737 {
1738    uint8_t  rbIdx;
1739    DuCellCb *cellCb;
1740    DuUeCb   ueCb;
1741    EgtpMsg  egtpMsg;
1742    Buffer   *mBuf;
1743
1744    if(duGetCellCb(ulUserData->cellId, &cellCb) != ROK)
1745       return RFAILED;
1746
1747    ueCb = cellCb->ueCb[ulUserData->ueIdx -1];
1748
1749    DU_LOG("\nDEBUG  -->  DU APP : Received UL user data");
1750
1751    /* Fill EGTP header */
1752    egtpMsg.msgHdr.msgType = EGTPU_MSG_GPDU;
1753    egtpMsg.msgHdr.nPdu.pres = FALSE;
1754    egtpMsg.msgHdr.seqNum.pres = FALSE;
1755    egtpMsg.msgHdr.extHdr.udpPort.pres = FALSE;
1756    egtpMsg.msgHdr.extHdr.pdcpNmb.pres = FALSE;
1757
1758    /* Fetch EGTP tunnel info */
1759    /* TODO : keep the "#if 0" code block and test once DL User data changes are submitted */
1760 #if 0
1761    for(rbIdx = 0; rbIdx < MAX_NUM_DRB; rbIdx++)
1762    {
1763       if(ueCb.ulTnlCfg[rbIx]->drbId == ulUserData->rbId)
1764       {
1765          egtpMsg.msgHdr.teId = ueCb.ulTnlCfg[rbIx]->tnlCfg.teId;
1766       }
1767    }
1768 #else
1769    egtpMsg.msgHdr.teId = 1;
1770 #endif
1771
1772    if (ODU_GET_MSG_BUF(DU_APP_MEM_REGION, DU_POOL, &mBuf) != ROK)
1773    {
1774       DU_LOG("\nERROR  -->  DU APP : Failed to allocated buffer memory in DuProcRlcUlUserDataTrans");
1775       DU_FREE_SHRABL_BUF(pst->region, pst->pool, ulUserData->userData, ulUserData->msgLen);
1776       DU_FREE_SHRABL_BUF(pst->region, pst->pool, ulUserData, sizeof(RlcUlUserDatInfo));
1777       return RFAILED;
1778    }
1779    oduCpyFixBufToMsg(ulUserData->userData, mBuf, ulUserData->msgLen);
1780    ODU_PRINT_MSG(mBuf, 0, 0);
1781    egtpMsg.msg = mBuf;
1782    egtpHdlDatInd(egtpMsg);
1783
1784    DU_FREE_SHRABL_BUF(pst->region, pst->pool, ulUserData->userData, ulUserData->msgLen);
1785    DU_FREE_SHRABL_BUF(pst->region, pst->pool, ulUserData, sizeof(RlcUlUserDatInfo));
1786    return ROK;
1787 }
1788
1789 /**********************************************************************
1790   End of file
1791  **********************************************************************/