X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fdu_app%2Fdu_cell_mgr.c;h=926dc7c5df7a3bb336f5a930571e0d1a5b6dbe36;hb=2b1e3e044e619637fafa8829789d6798d8f9bdb0;hp=c689685d34926fa38aad46b9e17ab79ada4692a2;hpb=f650616d302ed356315d7e354bcd6af249370858;p=o-du%2Fl2.git diff --git a/src/du_app/du_cell_mgr.c b/src/du_app/du_cell_mgr.c index c689685d3..926dc7c5d 100644 --- a/src/du_app/du_cell_mgr.c +++ b/src/du_app/du_cell_mgr.c @@ -53,6 +53,13 @@ DuMacCellDeleteReq packMacCellDeleteReqOpts[] = packDuMacCellDeleteReq /* Light weight-loose coupling */ }; +DuMacDlPcchInd packMacDlPcchIndOpts[] = +{ + packDuMacDlPcchInd, /* Loose coupling */ + MacProcDlPcchInd, /* TIght coupling */ + packDuMacDlPcchInd /* Light weight-loose coupling */ +}; + /******************************************************************* * * @brief Processes cells to be activated @@ -211,7 +218,7 @@ uint8_t checkPagingRecord(DuCellCb *cellCb) pagInfo = handlePageInfoLL(pf, NULLD, &(pagInfoLLFromPF->pagInfoList), TRAVERSE_ALL); if(pagInfo != NULLP) { - if(buildAndSendPagingReqToMac(pf, pagInfo->i_s, &(pagInfo->pagUeList)) != ROK) + if(BuildAndSendDlPcchIndToMac(cellCb->cellId, pf, pagInfo->i_s, &(pagInfo->pagUeList)) != ROK) { DU_LOG("\nERROR --> DU APP: Issue in Building Page RRC PDU i_s:%d",pagInfo->i_s); return RFAILED; @@ -224,6 +231,48 @@ uint8_t checkPagingRecord(DuCellCb *cellCb) return ROK; } +/****************************************************************** + * + * @brief Send pcch indication to MAC + * + * @details + * + * Function : sendDlPcchIndToMac + * + * Functionality: Send pcch indication to MAC + * + * @Params[in] MacPcchInd *pcchInd + * @return ROK - success + * RFAILED - failure + * + * ****************************************************************/ + +uint8_t sendDlPcchIndToMac(MacPcchInd *pcchInd) +{ + uint8_t ret = ROK; + Pst pst; + + if(pcchInd) + { + /* Fill Pst */ + FILL_PST_DUAPP_TO_MAC(pst, EVENT_MAC_DL_PCCH_IND); + + DU_LOG("\nDEBUG --> DU_APP: Sending DL PCCH indication to MAC for cellId[%d]", pcchInd->cellId); + ret = (*packMacDlPcchIndOpts[pst.selector])(&pst, pcchInd); + if(ret == RFAILED) + { + DU_LOG("\nERROR --> DU APP : sendDlPcchIndToMac(): Failed to DL PCCH indication to MAC"); + } + } + else + { + DU_LOG("\nERROR --> DU_APP: sendDlPcchIndToMac(): Received pcchInd is NULLP"); + ret = RFAILED; + } + return ret; +} + + /***************************************************************** * @brief Handles slot indication from MAC * @@ -538,31 +587,30 @@ void freePcchPdu(PCCH_Message_t *pcchMsg) } /******************************************************************* - * @brief Builds the Paging RRC PDU and forwards it to MAC + * @brief Builds the Pcch RRC PDU and forwards it to MAC * * @details * - * Function : buildAndSendPagingReqToMac + * Function : BuildAndSendDlPcchIndToMac * - * Functionality: Builds the Paging RRC PDU[As per Spec 38.331, Annexure A] + * Functionality: Builds the Pcch RRC PDU[As per Spec 38.331, Annexure A] * and forwards it to MAC as Buffer along with PF and i_s * - * @params[in] uint16_t pf, uint8_t i_s,CmLListCp *pageUeLL + * @params[in] uint16_t cellId, uint16_t pf, uint8_t i_s,CmLListCp *pageUeLL * * @return ROK - success * RFAILED - failure * * ****************************************************************/ -uint8_t buildAndSendPagingReqToMac(uint16_t pf, uint8_t i_s, CmLListCp *pageUeLL) +uint8_t BuildAndSendDlPcchIndToMac(uint16_t cellId, uint16_t pf, uint8_t i_s, CmLListCp *pageUeLL) { CmLList *node = NULLP, *next = NULLP; DuPagUeRecord *ueRecord = NULLP; PCCH_Message_t *pcchMsg = NULLP; - asn_enc_rval_t encRetVal; + asn_enc_rval_t encRetVal; PagingRrc_t *pagingMsg = NULLP; - MacPageReq *macPageReq = NULLP; - uint16_t bufIdx = 0; - uint8_t recordIdx = 0, ret = RFAILED; + MacPcchInd *macPcchInd = NULLP; + uint8_t recordIdx = 0, ret = RFAILED; /*As per 38.473 Sec 9.3.1.39,5G-S-TMSI :48 Bits >> Bytes and 0 UnusedBits */ uint8_t totalByteInTmsi = 6, unusedBitsInTmsi = 0; @@ -579,14 +627,14 @@ uint8_t buildAndSendPagingReqToMac(uint16_t pf, uint8_t i_s, CmLListCp *pageUeLL DU_ALLOC(pcchMsg , sizeof(PCCH_Message_t)); if(pcchMsg == NULLP) { - DU_LOG("\nERROR --> DU APP: buildAndSendPagingToMac(): (pccchMsg) Memory Alloction failed!"); + DU_LOG("\nERROR --> DU APP: BuildAndSendDlPcchIndToMac(): (pccchMsg) Memory Alloction failed!"); break; } pcchMsg->message.present = PCCH_MessageType_PR_c1; DU_ALLOC(pcchMsg->message.choice.c1 , sizeof(PCCH_MessageType_t)); if(pcchMsg->message.choice.c1 == NULLP) { - DU_LOG("\nERROR --> DU APP: buildAndSendPagingToMac(); (C1) Memory Alloction failed!"); + DU_LOG("\nERROR --> DU APP: BuildAndSendDlPcchIndToMac(); (C1) Memory Alloction failed!"); break; } pcchMsg->message.choice.c1->present = PCCH_MessageType__c1_PR_paging; @@ -595,13 +643,13 @@ uint8_t buildAndSendPagingReqToMac(uint16_t pf, uint8_t i_s, CmLListCp *pageUeLL pagingMsg = pcchMsg->message.choice.c1->choice.paging; if(pagingMsg == NULLP) { - DU_LOG("\nERROR --> DU APP: buildAndSendPagingToMac(); (Paging) Memory Alloction failed!"); + DU_LOG("\nERROR --> DU APP: BuildAndSendDlPcchIndToMac(); (Paging) Memory Alloction failed!"); break; } DU_ALLOC(pagingMsg->pagingRecordList, sizeof(PagingRecordList_t)); if(pagingMsg->pagingRecordList == NULLP) { - DU_LOG("\nERROR --> DU APP: buildAndSendPagingToMac(); (Paging Record List) Memory Alloction failed!"); + DU_LOG("\nERROR --> DU APP: BuildAndSendDlPcchIndToMac(); (Paging Record List) Memory Alloction failed!"); break; } @@ -617,7 +665,7 @@ uint8_t buildAndSendPagingReqToMac(uint16_t pf, uint8_t i_s, CmLListCp *pageUeLL DU_ALLOC(pagingMsg->pagingRecordList->list.array, pagingMsg->pagingRecordList->list.size); if(pagingMsg->pagingRecordList->list.array == NULLP) { - DU_LOG("\nERROR --> DU APP: buildAndSendPagingToMac(); (Array) Memory Alloction failed!"); + DU_LOG("\nERROR --> DU APP: BuildAndSendDlPcchIndToMac(); (Array) Memory Alloction failed!"); break; } for(recordIdx = 0; recordIdx < pageUeLL->count; recordIdx++) @@ -625,7 +673,7 @@ uint8_t buildAndSendPagingReqToMac(uint16_t pf, uint8_t i_s, CmLListCp *pageUeLL DU_ALLOC(pagingMsg->pagingRecordList->list.array[recordIdx], sizeof(PagingRecord_t)); if(pagingMsg->pagingRecordList->list.array[recordIdx] == NULLP) { - DU_LOG("\nERROR --> DU APP: buildAndSendPagingToMac(); (Record) Memory Alloction failed!"); + DU_LOG("\nERROR --> DU APP: BuildAndSendDlPcchIndToMac(); (Record) Memory Alloction failed!"); break; } } @@ -644,7 +692,7 @@ uint8_t buildAndSendPagingReqToMac(uint16_t pf, uint8_t i_s, CmLListCp *pageUeLL pagingMsg->pagingRecordList->list.array[recordIdx]->ue_Identity.choice.ng_5G_S_TMSI.size); if(pagingMsg->pagingRecordList->list.array[recordIdx]->ue_Identity.choice.ng_5G_S_TMSI.buf == NULLP) { - DU_LOG("\nERROR --> DU APP: buildAndSendPagingToMac(); (5gsTmsi buffer) Memory Allocation failed!"); + DU_LOG("\nERROR --> DU APP: BuildAndSendDlPcchIndToMac(); (5gsTmsi buffer) Memory Allocation failed!"); break; } fillBitString(&pagingMsg->pagingRecordList->list.array[recordIdx]->ue_Identity.choice.ng_5G_S_TMSI,\ @@ -677,25 +725,33 @@ uint8_t buildAndSendPagingReqToMac(uint16_t pf, uint8_t i_s, CmLListCp *pageUeLL } else { - DU_LOG("\nDEBUG --> F1AP : Created APER encoded buffer for RRCPDU for PagingMsg \n"); + DU_LOG("\nDEBUG --> F1AP : Created APER encoded buffer for RRC PDU for Pcch indication \n"); - DU_ALLOC_SHRABL_BUF(macPageReq, sizeof(MacPageReq)); - if(macPageReq == NULLP) + DU_ALLOC_SHRABL_BUF(macPcchInd, sizeof(MacPcchInd)); + if(macPcchInd == NULLP) { - DU_LOG("\nERROR --> DU APP: buildAndSendPagingToMac(); (macPageReq) Memory Alloction failed!"); + DU_LOG("\nERROR --> DU APP: BuildAndSendDlPcchIndToMac(); (macPcchInd) Memory Alloction failed!"); break; } - macPageReq->pf = pf; - macPageReq->i_s = i_s; - macPageReq->pduLen = encBufSize; - DU_ALLOC_SHRABL_BUF(macPageReq->pagePdu, macPageReq->pduLen); - if(macPageReq->pagePdu == NULLP) + macPcchInd->cellId = cellId; + macPcchInd->pf = pf; + macPcchInd->i_s = i_s; + macPcchInd->pduLen = encBufSize; + DU_ALLOC_SHRABL_BUF(macPcchInd->pcchPdu, macPcchInd->pduLen); + if(macPcchInd->pcchPdu == NULLP) + { + DU_LOG("\nERROR --> DU APP: BuildAndSendDlPcchIndToMac(); (PcchPDU) Memory Alloction failed!"); + break; + } + memcpy(macPcchInd->pcchPdu, encBuf, macPcchInd->pduLen); + ret = sendDlPcchIndToMac(macPcchInd); + if(ret != ROK) { - DU_LOG("\nERROR --> DU APP: buildAndSendPagingToMac(); (PagePDU) Memory Alloction failed!"); + DU_FREE_SHRABL_BUF(DU_APP_MEM_REGION, DU_POOL, macPcchInd->pcchPdu, macPcchInd->pduLen); + DU_FREE_SHRABL_BUF(DU_APP_MEM_REGION, DU_POOL, macPcchInd, sizeof(MacPcchInd)); break; } - memcpy(macPageReq->pagePdu, encBuf, macPageReq->pduLen); } ret = ROK; break;