X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrrlc%2Frlc_upr_inf_api.c;h=547f741e59b68fbdf00614bba7499e10147334c6;hb=3eb33bcb19a8e47fcf8b58b417d6fa05919952cf;hp=ff4305862d9dccf2c63730b1ed522293623996eb;hpb=5eb7213379dd0ffe146453e85d18871f07e58ce3;p=o-du%2Fl2.git diff --git a/src/5gnrrlc/rlc_upr_inf_api.c b/src/5gnrrlc/rlc_upr_inf_api.c index ff4305862..547f741e5 100644 --- a/src/5gnrrlc/rlc_upr_inf_api.c +++ b/src/5gnrrlc/rlc_upr_inf_api.c @@ -41,6 +41,27 @@ RlcDlRrcMsgRspToDuFunc rlcSendDlRrcMsgRspToDuOpts[] = packRlcDlRrcMsgRspToDu /* 2 - Light weight loosely coupled */ }; +/* Function pointer array for UL RRC Msg Transfer */ +RlcUlUserDataToDuFunc rlcSendUlUserDataToDuOpts[] = +{ + packRlcUlUserDataToDu, /* 0 - Loosely coupled */ + DuProcRlcUlUserDataTrans, /* 1 - Tightly coupled */ + packRlcUlUserDataToDu /* 2 - Light weight loosely coupled */ +}; + +RlcDuUeDeleteRsp rlcUeDeleteRspOpts[] = +{ + packRlcDuUeDeleteRsp, /* 0 - loosely coupled */ + DuProcRlcUeDeleteRsp, /* 1 - tightly coupled */ + packRlcDuUeDeleteRsp /* 2 - LWLC loosely coupled */ +}; + +RlcSlicePmToDuFunc rlcSlicePmOpts[] = +{ + packRlcDuSlicePm, /* 0 - loosely coupled */ + DuProcRlcSliceMetrics, /* 1 - tightly coupled */ + packRlcDuSlicePm /* 2 - LWLC loosely coupled */ +}; /******************************************************************* * * @brief Sends UL RRC Message Info to DU APP @@ -82,7 +103,6 @@ uint8_t rlcSendRrcDeliveryReportToDu(Pst *pst, RrcDeliveryReport *rrcDelivery) { return (*rlcSendRrcDeliveryReportToDuOpts[pst->selector])(pst, rrcDelivery); } - /******************************************************************* * * @brief Sends DL RRC Message Status to DU APP @@ -104,6 +124,68 @@ uint8_t rlcSendDlRrcMsgRspToDu(Pst *pst, RlcDlRrcMsgRsp *dlRrcMsg) return (*rlcSendDlRrcMsgRspToDuOpts[pst->selector])(pst, dlRrcMsg); } +/******************************************************************* + * + * @brief Sends UL User data Info to DU APP + * + * @details + * + * Function : rlcSendUlUserDataToDu + * + * Functionality: Sends UL User Data Info to DU APP + * + * @params[in] Pst structure + * UL user data Info + * @return ROK - success + * RFAILED - failure + * + * ****************************************************************/ +uint8_t rlcSendUlUserDataToDu(Pst *pst, RlcUlUserDatInfo *ulUserData) +{ + return (*rlcSendUlUserDataToDuOpts[pst->selector])(pst, ulUserData); +} + +/******************************************************************* + * + * @brief Sends Ue Delete Rsp to DU APP + * + * @details + * + * Function : rlcSendUeDeleteRspToDu + * + * Functionality: Sends Ue Delete Rsp to DU APP + * + * @params[in] Pst *pst, RlcUeDeleteRsp *ueDeleteRsp + * + * @return ROK - success + * RFAILED - failure + * + * ****************************************************************/ +uint8_t rlcSendUeDeleteRspToDu(Pst *pst, RlcUeDeleteRsp *ueDeleteRsp) +{ + return (*rlcUeDeleteRspOpts[pst->selector])(pst, ueDeleteRsp); +} + +/******************************************************************* + * + * @brief Sends Slice Performance Metrics to DU APP + * + * @details + * + * Function : rlcSendSlicePmToDu + * + * Functionality: Sends Performace Metrics per slice together to DU APP + * + * @params[in] Pst *pst, SlicePmList *sliceStats + * + * @return ROK - success + * RFAILED - failure + * + * ****************************************************************/ +uint8_t rlcSendSlicePmToDu(Pst *pst, SlicePmList *sliceStats) +{ + return (*rlcSlicePmOpts[pst->selector])(pst, sliceStats); +} /********************************************************************** End of file **********************************************************************/