X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fdu_app%2Fdu_mgr_ex_ms.c;h=ce4895b39aca5a083c7c8be16f24ffe60c18b591;hb=3235ecfc7414aa0b72d0ad50db63ae8b5626045b;hp=6635832839716bd6dbf40fa1e82ae7e018d3c47a;hpb=829bbd114f1c3dc00c1da47bca0a8207c049df3f;p=o-du%2Fl2.git diff --git a/src/du_app/du_mgr_ex_ms.c b/src/du_app/du_mgr_ex_ms.c index 663583283..ce4895b39 100644 --- a/src/du_app/du_mgr_ex_ms.c +++ b/src/du_app/du_mgr_ex_ms.c @@ -16,9 +16,16 @@ ################################################################################ *******************************************************************************/ -/* This file contains message handling functionality for DU cell management */ +/* This file contains message handling functionality for DU APP */ -#include "du_mgr.h" +#include "du_sctp.h" +#include "du_f1ap_msg_hdl.h" +#include "lsctp.h" +#include "legtp.h" + +extern S16 cmUnpkLkwCfgCfm(LkwCfgCfm func,Pst *pst, Buffer *mBuf); +extern S16 cmUnpkLkwCntrlCfm(LkwCntrlCfm func,Pst *pst, Buffer *mBuf); +extern S16 cmUnpkLrgCfgCfm(LrgCfgCfm func,Pst *pst, Buffer *mBuf); /************************************************************************** * @brief Task Initiation callback function. @@ -42,7 +49,44 @@ ***************************************************************************/ S16 duActvInit(Ent entity, Inst inst, Region region, Reason reason) { -//TODO: TBD + duCb.init.procId = SFndProcId(); + duCb.init.ent = entity; + duCb.init.inst = inst; + duCb.init.region = region; + duCb.init.reason = reason; + duCb.init.cfgDone = FALSE; + duCb.init.pool = DU_POOL; + duCb.init.acnt = FALSE; + duCb.init.trc = FALSE; + duCb.init.usta = TRUE; + duCb.mem.region = DFLT_REGION; + duCb.mem.pool = DU_POOL; + + duCb.f1Status = FALSE; + + if(ROK != cmHashListInit(&(duCb.cellLst), + (U16) DU_MAX_CELLS, + (U16) 0, + (Bool) FALSE, + (U16) CM_HASH_KEYTYPE_CONID, + 0, + 0)) + { + DU_LOG("\nDU_APP : cellLst Initialization Failed"); + } + + if(ROK != cmHashListInit(&(duCb.actvCellLst), + (U16) DU_MAX_CELLS, + (U16) 0, + (Bool) FALSE, + (U16) CM_HASH_KEYTYPE_CONID, + 0, + 0)) + { + DU_LOG("\nDU_APP : ActvCellLst Initialization Failed"); + } + + SSetProcId(DU_PROC); return ROK; @@ -80,13 +124,14 @@ S16 duActvTsk(Pst *pst, Buffer *mBuf) { case EVTCFG: { + DU_LOG("\n****** Received initial configs at DU APP ******\n"); duProcCfgComplete(); SPutMsg(mBuf); break; } default: { - printf("\nInvalid event received at duActvTsk from ENTDUAPP"); + DU_LOG("\nDU_APP : Invalid event received at duActvTsk from ENTDUAPP"); SPutMsg(mBuf); ret = RFAILED; } @@ -94,88 +139,133 @@ S16 duActvTsk(Pst *pst, Buffer *mBuf) break; } - case ENTF1AP: - { - - break; - } - case ENTRG: //TODO: Layer cfg for RLC UL, DL and MAC must be done + case ENTKW: { switch(pst->event) { - //Config complete - case EVTCFG: + case LKW_EVT_CFG_CFM: + { + ret = cmUnpkLkwCfgCfm(duHdlRlcCfgComplete, pst, mBuf); + break; + } + case LKW_EVT_CNTRL_CFM: + { + ret = cmUnpkLkwCntrlCfm(duHdlRlcCntrlCfgComplete, pst, mBuf); + break; + } + case LKW_EVT_STA_IND: { - //TODO: Implement duEstablishSctpToCu(); - SPutMsg(mBuf); break; } default: { - printf("\nInvalid event received at duActvTsk from ENTRG"); + DU_LOG("\nDU_APP : Invalid event %d received at duActvTsk from ENTKW", \ + pst->event); SPutMsg(mBuf); ret = RFAILED; } } - break; } - case ENTSCTP: + case ENTRG: { switch(pst->event) { - case EVTSCTPUP: + //Config complete + case EVTCFG: { - //Setup F1-C SPutMsg(mBuf); break; } + case EVTLRGCFGCFM: + { + ret = cmUnpkLrgCfgCfm(duHdlMacCfgComplete, pst, mBuf); + break; + } + case EVTLRGCNTRLCFM: + { + break; + } + case EVTMACSCHGENCFGCFM: + { + ret = cmUnpkLrgSchCfgCfm(duHdlSchCfgComplete, pst, mBuf); + break; + } + default: { - printf("\nInvalid event received at duActvTsk from ENTRG"); + DU_LOG("\nDU_APP : Invalid event received at duActvTsk from ENTRG"); SPutMsg(mBuf); ret = RFAILED; } + } + break; + } + case ENTSCTP: + { + switch(pst->event) + { + case EVTSCTPDATA: + { + F1APMsgHdlr(mBuf); + break; + } + case EVTSCTPNTFY: + { + ret = cmUnpkSctpNtfy(duSctpNtfyHdl, pst, mBuf); + break; + } + default: + { + DU_LOG("\nDU_APP : Invalid event received at duActvTsk from ENTSCTP"); + ret = RFAILED; + } + + } + SPutMsg(mBuf); + break; + } + case ENTEGTP: + { + switch(pst->event) + { + case EVTCFGCFM: + { + cmUnpkEgtpCfgCfm(duHdlEgtpCfgComplete, mBuf); + break; + } + case EVTSRVOPENCFM: + { + cmUnpkEgtpSrvOpenCfm(duHdlEgtpSrvOpenComplete, mBuf); + break; + } + case EVTTNLMGMTCFM: + { + cmUnpkEgtpTnlMgmtCfm(duHdlEgtpTnlMgmtCfm, mBuf); + break; + } + default: + { + DU_LOG("\nDU_APP : Invalid event[%d] received at duActvTsk from ENTEGTP", pst->event); + ret = RFAILED; + } } + SPutMsg(mBuf); + break; } default: { - printf("\n DU APP can not process message from Entity %d", pst->srcEnt); + DU_LOG("\nDU_APP : DU APP can not process message from Entity %d", pst->srcEnt); SPutMsg(mBuf); ret = RFAILED; } } - SExitTsk(); return ret; } -/************************************************************************** - * @brief Function to invoke DU Layer Configs - * - * @details - * - * Function : duProcCfgComplete - * - * Functionality: - * Initiates Configs towards layers of DU - * - * @param[in] void - * @return ROK - success - * RFAILED - failure - * - ***************************************************************************/ -S16 duProcCfgComplete() -{ -//TBD: invoke SCTP/layer config - -// duHdlRlcUlCfgEvent(); - - return ROK; -} - /********************************************************************** End of file **********************************************************************/