MAC Clean-up [Issue-ID: ODUHIGH-212]
[o-du/l2.git] / src / 5gnrmac / mac_msg_hdl.c
index aad5fc1..a443d08 100644 (file)
 
 /* header include files -- defines (.h)  */
 #include "common_def.h"
-#include "rgu.h"
-#include "tfu.h"
-#include "rg_sch_inf.h"
-#include "rg_env.h"
 #include "lrg.h"
-#include "crg.h"
-#include "rg.h"
-#include "du_log.h"
-#include "lwr_mac.h"
-
-/* header/extern include files (.x) */
-#include "rgu.x"
-#include "tfu.x"
-#include "rg_sch_inf.x"
+#include "rgu.h"
 #include "lrg.x"
-#include "crg.x"
-#include "rg_prg.x"
+#include "rgu.x"
 #include "du_app_mac_inf.h"
+#include "mac_sch_interface.h"
 #include "mac_upr_inf_api.h"
-#include "rg.x"
+#include "lwr_mac.h"
+#ifdef INTEL_FAPI
+#include "fapi_interface.h"
+#endif
 #include "lwr_mac_fsm.h"
+#include "lwr_mac_upr_inf.h"
 #include "mac.h"
+#include "mac_utils.h"
 
 /* This file contains message handling functionality for MAC */
 
@@ -80,13 +73,11 @@ MacSchDlRlcBoInfoFunc macSchDlRlcBoInfoOpts[]=
  *         RFAILED - failure
  *
  ****************************************************************/
-int sendDlRlcBoInfoMacToSch(DlRlcBOInfo *dlBoInfo)
+uint8_t sendDlRlcBoInfoMacToSch(DlRlcBOInfo *dlBoInfo)
 {
    Pst pst;
 
-   fillMacToSchPst(&pst);
-   pst.event = EVENT_DL_RLC_BO_INFO_TO_SCH;
-
+   FILL_PST_MAC_TO_SCH(pst, EVENT_DL_RLC_BO_INFO_TO_SCH);
    return(*macSchDlRlcBoInfoOpts[pst.selector])(&pst, dlBoInfo);
 }
 
@@ -106,13 +97,11 @@ int sendDlRlcBoInfoMacToSch(DlRlcBOInfo *dlBoInfo)
  *         RFAILED - failure
  *
  ****************************************************************/
-int sendCrcIndMacToSch(CrcIndInfo *crcInd)
+uint8_t sendCrcIndMacToSch(CrcIndInfo *crcInd)
 {
    Pst pst;
 
-   fillMacToSchPst(&pst);
-   pst.event = EVENT_CRC_IND_TO_SCH;
-
+   FILL_PST_MAC_TO_SCH(pst, EVENT_CRC_IND_TO_SCH);
    return(*macSchCrcIndOpts[pst.selector])(&pst, crcInd);
 }
 
@@ -133,14 +122,16 @@ int sendCrcIndMacToSch(CrcIndInfo *crcInd)
  *         RFAILED - failure
  *
  * ****************************************************************/
-uint16_t fapiMacCrcInd(Pst *pst, CrcInd *crcInd)
+uint8_t fapiMacCrcInd(Pst *pst, CrcInd *crcInd)
 {
+   uint16_t     cellIdx;
    CrcIndInfo   crcIndInfo;
 
    DU_LOG("\nMAC : Received CRC indication");
 
+   GET_CELL_IDX(crcInd->cellId, cellIdx);
    /* Considering one pdu and one preamble */ 
-   crcIndInfo.cellId = macCb.macCell->cellId;;
+   crcIndInfo.cellId = macCb.macCell[cellIdx]->cellId;;
    crcIndInfo.crnti = crcInd->crcInfo[0].rnti;
    crcIndInfo.timingInfo.sfn = crcInd->timingInfo.sfn;
    crcIndInfo.timingInfo.slot = crcInd->timingInfo.slot;
@@ -167,7 +158,7 @@ uint16_t fapiMacCrcInd(Pst *pst, CrcInd *crcInd)
  *         RFAILED - failure
  *
  * ****************************************************************/
-uint16_t fapiMacRxDataInd(Pst *pst, RxDataInd *rxDataInd)
+uint8_t fapiMacRxDataInd(Pst *pst, RxDataInd *rxDataInd)
 {
    uint16_t pduIdx;
 
@@ -178,7 +169,7 @@ uint16_t fapiMacRxDataInd(Pst *pst, RxDataInd *rxDataInd)
 
    for(pduIdx = 0; pduIdx < rxDataInd->numPdus; pduIdx++)
    {
-      unpackRxData(&rxDataInd->pdus[pduIdx]);
+      unpackRxData(rxDataInd->cellId, &rxDataInd->pdus[pduIdx]);
    }
    return ROK;
 }
@@ -234,7 +225,7 @@ uint16_t MacRlcProcBOStatus(Pst* pst, SpId spId, RlcMacBOStatus*      boStatus)
  *
  * @details
  *
- *    Function : MacHdlCellStartReq
+ *    Function : MacProcCellStartReq
  *
  *    Functionality:
  *      Handles cell start reuqest from DU APP
@@ -245,7 +236,7 @@ uint16_t MacRlcProcBOStatus(Pst* pst, SpId spId, RlcMacBOStatus*      boStatus)
  *         RFAILED - failure
  *
  * ****************************************************************/
-uint16_t MacHdlCellStartReq(Pst *pst, MacCellStartInfo  *cellStartInfo)
+uint8_t MacProcCellStartReq(Pst *pst, MacCellStartInfo  *cellStartInfo)
 {
    DU_LOG("\nMAC : Handling cell start request");
    sendToLowerMac(START_REQUEST, 0, cellStartInfo);
@@ -262,7 +253,7 @@ uint16_t MacHdlCellStartReq(Pst *pst, MacCellStartInfo  *cellStartInfo)
  *
  * @details
  *
- *    Function : MacHdlCellStartReq
+ *    Function : MacProcCellStartReq
  *
  *    Functionality:
  *        Handles cell stop request from DU APP
@@ -273,7 +264,7 @@ uint16_t MacHdlCellStartReq(Pst *pst, MacCellStartInfo  *cellStartInfo)
  *         RFAILED - failure
  *
  * ****************************************************************/
-uint16_t MacHdlCellStopReq(Pst *pst, MacCellStopInfo  *cellStopInfo)
+uint8_t MacProcCellStopReq(Pst *pst, MacCellStopInfo  *cellStopInfo)
 {
 #ifdef INTEL_FAPI
    DU_LOG("\nMAC : Sending cell stop request to Lower Mac");
@@ -292,7 +283,7 @@ uint16_t MacHdlCellStopReq(Pst *pst, MacCellStopInfo  *cellStopInfo)
  *
  * @details
  *
- *    Function : MacHdlDlCcchInd 
+ *    Function : MacProcDlCcchInd 
  *
  *    Functionality:
  *      Handles DL CCCH Ind from DU APP
@@ -303,15 +294,17 @@ uint16_t MacHdlCellStopReq(Pst *pst, MacCellStopInfo  *cellStopInfo)
  *         RFAILED - failure
  *
  * ****************************************************************/
-uint16_t MacHdlDlCcchInd(Pst *pst, DlCcchIndInfo *dlCcchIndInfo)
+uint8_t MacProcDlCcchInd(Pst *pst, DlCcchIndInfo *dlCcchIndInfo)
 {
+   uint16_t cellIdx;
    uint16_t idx;
    DlRlcBOInfo  dlBoInfo;
    memset(&dlBoInfo, 0, sizeof(DlRlcBOInfo));
 
    DU_LOG("\nMAC : Handling DL CCCH IND");
 
-   /* TODO : Fill DL RLC Buffer status info */
+   GET_CELL_IDX(dlCcchIndInfo->cellId, cellIdx);
+
    dlBoInfo.cellId = dlCcchIndInfo->cellId;
    dlBoInfo.crnti = dlCcchIndInfo->crnti;
    dlBoInfo.numLc = 0;
@@ -324,16 +317,16 @@ uint16_t MacHdlDlCcchInd(Pst *pst, DlCcchIndInfo *dlCcchIndInfo)
       dlBoInfo.numLc++;
 
       /* storing Msg4 Pdu in raCb */
-      if(macCb.macCell->macRaCb[0].crnti == dlCcchIndInfo->crnti)
+      if(macCb.macCell[cellIdx]->macRaCb[0].crnti == dlCcchIndInfo->crnti)
       {
-        macCb.macCell->macRaCb[0].msg4PduLen = dlCcchIndInfo->dlCcchMsgLen;
-        MAC_ALLOC(macCb.macCell->macRaCb[0].msg4Pdu, \
-           macCb.macCell->macRaCb[0].msg4PduLen);
-        if(macCb.macCell->macRaCb[0].msg4Pdu)
+        macCb.macCell[cellIdx]->macRaCb[0].msg4PduLen = dlCcchIndInfo->dlCcchMsgLen;
+        MAC_ALLOC(macCb.macCell[cellIdx]->macRaCb[0].msg4Pdu, \
+           macCb.macCell[cellIdx]->macRaCb[0].msg4PduLen);
+        if(macCb.macCell[cellIdx]->macRaCb[0].msg4Pdu)
         {
            for(idx = 0; idx < dlCcchIndInfo->dlCcchMsgLen; idx++)
            {
-              macCb.macCell->macRaCb[0].msg4Pdu[idx] =\
+              macCb.macCell[cellIdx]->macRaCb[0].msg4Pdu[idx] =\
                  dlCcchIndInfo->dlCcchMsg[idx];
            }
         }
@@ -365,7 +358,7 @@ uint16_t MacHdlDlCcchInd(Pst *pst, DlCcchIndInfo *dlCcchIndInfo)
  *         RFAILED - failure
  *
  * ****************************************************************/
-uint16_t macSendUlCcchInd(uint8_t *rrcContainer, uint16_t cellId, uint16_t crnti)
+uint8_t macSendUlCcchInd(uint8_t *rrcContainer, uint16_t cellId, uint16_t crnti)
 {
    Pst pst;
    uint8_t ret = ROK;
@@ -383,19 +376,7 @@ uint16_t macSendUlCcchInd(uint8_t *rrcContainer, uint16_t cellId, uint16_t crnti
    ulCcchIndInfo->ulCcchMsg = rrcContainer;
 
    /* Fill Pst */
-   pst.selector  = ODU_SELECTOR_LWLC;
-   pst.srcEnt    = ENTRG;
-   pst.dstEnt    = ENTDUAPP;
-   pst.dstInst   = 0;
-   pst.srcInst   = macCb.macInst;
-   pst.dstProcId = rgCb[pst.srcInst].rgInit.procId;
-   pst.srcProcId = rgCb[pst.srcInst].rgInit.procId;
-   pst.region    = MAC_MEM_REGION;
-   pst.pool      = MAC_POOL;
-   pst.event     = EVENT_MAC_UL_CCCH_IND;
-   pst.route     = 0;
-   pst.prior     = 0;
-   pst.intfVer   = 0;
+   FILL_PST_MAC_TO_DUAPP(pst, EVENT_MAC_UL_CCCH_IND);
 
    if(MacDuAppUlCcchInd(&pst, ulCcchIndInfo) != ROK)
    {