X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrmac%2Fmac_upr_inf_api.c;h=2bbe7d839fcc4a6a98019902965580b6ecb5de62;hb=29b5f01d779caab32dbc5b3686a5d917e4c818ec;hp=fb212da641c528c4256265136f6d3d443a0921bb;hpb=e550b2091fb29289d12a5722b189acbede7862f0;p=o-du%2Fl2.git diff --git a/src/5gnrmac/mac_upr_inf_api.c b/src/5gnrmac/mac_upr_inf_api.c index fb212da64..2bbe7d839 100644 --- a/src/5gnrmac/mac_upr_inf_api.c +++ b/src/5gnrmac/mac_upr_inf_api.c @@ -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 */ @@ -28,6 +28,21 @@ DuMacSlotInd packMacSlotIndOpts[] = duHandleSlotInd, packMacSlotInd }; +/* Funtion pointer options for stop indication */ +DuMacStopInd packMacStopIndOpts[] = +{ + packMacStopInd, + duHandleStopInd, + packMacStopInd +}; + +/* Funtion pointer options for UL CCCH indication */ +DuMacUlCcchInd packMacUlCcchIndOpts[] = +{ + packMacUlCcchInd, + duHandleUlCcchInd, + packMacUlCcchInd +}; /******************************************************************* * @@ -52,6 +67,51 @@ uint16_t MacDuAppSlotInd(Pst *pst, SlotInfo *slotInfo) return (*packMacSlotIndOpts[pst->selector])(pst, slotInfo); } +/******************************************************************* + * + * @brief Send stop indication to MAC + * + * @details + * + * Function : MacDuAppStopInd + * + * Functionality: + * Sends Stop Indication to MAC + * + * @params[in] Post structure pointer + * @return ROK - success + * RFAILED - failure + * + * ****************************************************************/ +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 **********************************************************************/