X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrmac%2Flwr_mac_handle_phy.c;h=0c4027835ad9c0b82a4c68460c1b0391dd6f80a1;hb=0fccb83e55b237d60cf451bab71a0c7242cc6e66;hp=736aca2edc32accc3030dac92bcbc0e0282d6d3a;hpb=6d3c64bdc3314b00244e259c4f5d5bd336d789db;p=o-du%2Fl2.git diff --git a/src/5gnrmac/lwr_mac_handle_phy.c b/src/5gnrmac/lwr_mac_handle_phy.c index 736aca2ed..0c4027835 100644 --- a/src/5gnrmac/lwr_mac_handle_phy.c +++ b/src/5gnrmac/lwr_mac_handle_phy.c @@ -80,7 +80,13 @@ packRxDataIndMsg sendRxDataIndOpts[] = packRxDataInd }; - +/* Function pointer for stop indication from lower mac to mac */ +packStopIndMsg sendStopIndOpts[] = +{ + packStopInd, + fapiMacStopInd, + packStopInd +}; /******************************************************************* * * @brief Fills post structure @@ -154,7 +160,35 @@ U16 handleSlotInd(fapi_slot_ind_t *fapiSlotInd) return ret; } +/******************************************************************* + * + * @brief Handles stop indication recived from PHY + * + * @details + * + * Function : handleStopInd + * + * Functionality: + * Handles Stop Indication received from PHY + * + * @return ROK - success + * RFAILED - failure + * + * ****************************************************************/ +uint8_t handleStopInd() +{ + uint8_t ret; + Pst pst; + + clGlobalCp.phyState = PHY_STATE_CONFIGURED; + DU_LOG("\nLWR_MAC: PHY has moved to configured state"); + + fillLwrMacToMacPst(&pst); + pst.event = EVENT_STOP_IND_TO_MAC; + ret = (*sendStopIndOpts[pst.selector])(&pst); + return ret; +} /******************************************************************* * * @brief Processes Rach Indication from PHY and sends to MAC @@ -372,6 +406,12 @@ void handlePhyMessages(uint16_t msgType, uint32_t msgSize, void *msg) rachInd = (fapi_rach_indication_t *)msg; handleRachInd(rachInd); break; + } + case FAPI_STOP_INDICATION: + { + DU_LOG("\nLWR_MAC: Handling Stop Indication"); + handleStopInd(); + break; } } #ifdef INTEL_WLS