JIRA ID ODUHIGH193: Allocation and deallocation of MaceCellCfg sharable buffer
[o-du/l2.git] / src / 5gnrmac / mac_upr_inf_api.c
index b37b6ab..2bbe7d8 100644 (file)
@@ -18,7 +18,7 @@
 
 /* This file contains the definitions for Upper Interface APIs that are
  * invoked from MAC */
-
+#include "common_def.h"
 #include "mac_upr_inf_api.h"
 
 /* Funtion pointer options for slot indication */
@@ -36,6 +36,14 @@ DuMacStopInd packMacStopIndOpts[] =
    packMacStopInd
 };
 
+/* Funtion pointer options for UL CCCH indication */
+DuMacUlCcchInd packMacUlCcchIndOpts[] =
+{
+   packMacUlCcchInd,
+   duHandleUlCcchInd,
+   packMacUlCcchInd
+};
+
 /*******************************************************************
  *
  * @brief Send slot indication to MAC
@@ -80,6 +88,30 @@ uint16_t MacDuAppStopInd(Pst *pst, MacCellStopInfo *cellStopId)
    return (*packMacStopIndOpts[pst->selector])(pst, cellStopId);
 }
 
+/*******************************************************************
+ *
+ * @brief Send UL CCCH Ind to DU APP
+ *
+ * @details
+ *
+ *    Function :MacDuAppUlCcchInd 
+ *
+ *    Functionality:
+ *       Select appropriate function using selector value and
+ *       send to DU APP
+ *
+ * @params[in]  Post structure pointer
+ *              UlCcchInd pointer 
+ * @return ROK     - success
+ *         RFAILED - failure
+ *
+ * ****************************************************************/
+uint16_t MacDuAppUlCcchInd(Pst *pst, UlCcchIndInfo *ulCcchIndInfo)
+{
+   return (*packMacUlCcchIndOpts[pst->selector])(pst, ulCcchIndInfo);
+}
+
+
 /**********************************************************************
          End of file
 **********************************************************************/