X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrmac%2Frg_rom.c;h=48e31f281c6b8b7c7084c5230d07c0c2784d97bc;hb=4d45b914f9e94203603d3b9fdbcb1aad361301dd;hp=7e217debb40beb47b41784c0bded2a9f5d126197;hpb=aa016a0a037017083dd793b564b47ed7855069ec;p=o-du%2Fl2.git diff --git a/src/5gnrmac/rg_rom.c b/src/5gnrmac/rg_rom.c index 7e217debb..48e31f281 100755 --- a/src/5gnrmac/rg_rom.c +++ b/src/5gnrmac/rg_rom.c @@ -37,19 +37,7 @@ static int RLOG_FILE_ID=184; static int RLOG_MODULE_ID=4096; /* header include files (.h) */ -#include "envopt.h" /* environment options */ -#include "envdep.h" /* environment dependent */ -#include "envind.h" /* environment independent */ - -#include "gen.h" /* general */ -#include "ssi.h" /* system services */ - -#include "cm_tkns.h" /* Common Token Defines */ -#include "cm_llist.h" /* Common Link List Defines */ -#include "cm_hash.h" /* Common Hash List Defines */ -#include "cm_mblk.h" /* common memory link list library */ -#include "cm_lte.h" /* Common LTE */ - +#include "common_def.h" #include "rg_env.h" /* MAC Environment Defines */ #include "crg.h" /* CRG Interface defines */ #include "rgu.h" /* RGU Interface defines */ @@ -61,15 +49,6 @@ static int RLOG_MODULE_ID=4096; #include "rg_err.h" /* MAC error defines */ /* header/extern include files (.x) */ -#include "gen.x" /* general */ -#include "ssi.x" /* system services */ -#include "cm5.x" /* Timer */ -#include "cm_tkns.x" /* Common Token Definitions */ -#include "cm_llist.x" /* Common Link List Definitions */ -#include "cm_lib.x" /* Common Library Definitions */ -#include "cm_hash.x" /* Common Hash List Definitions */ -#include "cm_mblk.x" /* common memory link list library */ -#include "cm_lte.x" /* Common LTE */ #include "crg.x" /* CRG Interface includes */ #include "rgu.x" /* RGU Interface includes */ @@ -176,7 +155,7 @@ RgRguDedDatReq *datReq; /* Update stats */ rgUpdtRguDedSts(inst,cell->rguDlSap,RG_RGU_SDU_DROP, datReq); } - RETVALUE(RFAILED); + return RFAILED; } /* Add loop here to scan for all UEs in the consolidated DDatReq*/ @@ -211,7 +190,7 @@ RgRguDedDatReq *datReq; RG_DROP_RGUDDATREQ_MBUF(datReq->datReq[idx]); #endif continue; - // RETVALUE(RFAILED); + // return RFAILED; } if ((ue = rgDBMGetUeCb(cell, datReq->datReq[idx].rnti)) == NULLP) @@ -237,7 +216,7 @@ RgRguDedDatReq *datReq; RG_DROP_RGUDDATREQ_MBUF(datReq->datReq[idx]); #endif /* Return from here as above functions found more datReq than expected*/ - /* RETVALUE(ret); */ + /* return (ret); */ } #endif /* Conitnue for next UE */ @@ -270,7 +249,7 @@ RgRguDedDatReq *datReq; RG_DROP_RGUDDATREQ_MBUF(datReq->datReq[idx]); #endif /* Return from here as above functions found more datReq than expected*/ - //RETVALUE(ret); + //return (ret); } #endif continue; @@ -323,14 +302,14 @@ RgRguDedDatReq *datReq; RG_DROP_RGUDDATREQ_MBUF(datReq->datReq[idx]); #endif /* Return from here as above functions found more datReq than expected*/ - // RETVALUE(ret); + // return (ret); } #endif } /* for loop for num of Ue per TTI*/ #endif /* Data send successfully to PHY. lets retuns ROK*/ - RETVALUE(ROK); + return ROK; } /* rgROMDedDatReq */ @@ -390,7 +369,7 @@ RgRguCmnDatReq *datReq; { rgUpdtRguCmnSts(inst,cell->rguDlSap,RG_RGU_SDU_DROP); } - RETVALUE(RFAILED); + return RFAILED; } if (datReq->lcId == cell->dlCcchId) @@ -436,7 +415,7 @@ RgRguCmnDatReq *datReq; /*Added check for RFAILED as above function can return RFAILED*/ #endif - RETVALUE(ret); + return (ret); } /* rgROMCmnDatReq */ /** @@ -496,7 +475,7 @@ RgErrInfo *err; "rgROMHndlCcchDatReq(): Invalid ue Id"); #endif err->errCause = RGERR_ROM_INV_UE_ID; - RETVALUE(RFAILED); + return RFAILED; } } @@ -515,7 +494,7 @@ RgErrInfo *err; LRG_CAUSE_DELAYED_DATREQ, &dgn); #endif err->errCause = RGERR_ROM_DELAYED_DATREQ; - RETVALUE(RFAILED); + return RFAILED; } hqPId = (U8)(datReq->transId); @@ -534,10 +513,10 @@ RgErrInfo *err; /* Release First TB */ rgDHMRlsHqProcTB(cell, hqProc, 1); /* err shall be filled in appropriately by DHM */ - RETVALUE(RFAILED); + return RFAILED; } - RETVALUE(ROK); + return ROK; } /* rgROMHndlCcchDatReq */ @@ -603,7 +582,7 @@ RgErrInfo *err; LRG_CAUSE_DELAYED_DATREQ, &dgn); #endif err->errCause = RGERR_ROM_DELAYED_DATREQ; - RETVALUE(RFAILED); + return RFAILED; } #ifndef RGR_SI_SCH @@ -616,7 +595,7 @@ RgErrInfo *err; SCpyMsgMsg(datReq->pdu, RG_GET_MEM_REGION(rgCb[inst]), RG_GET_MEM_POOL(rgCb[inst]), &bcch->tb); - RETVALUE(ROK); + return ROK; } bch = rgDBMGetBcchOnBch(cell); @@ -624,7 +603,7 @@ RgErrInfo *err; { /* Store BCH data received in Scheduled slot */ sf->bch.tb = datReq->pdu; - RETVALUE(ROK); + return ROK; } #endif/*RGR_SI_SCH*/ @@ -633,7 +612,7 @@ RgErrInfo *err; { /* Store PCCH-DLSCH data received in Scheduled slot */ sf->pcch.tb = datReq->pdu; - RETVALUE(ROK); + return ROK; } /* Handle lcCb fetch failure */ @@ -641,7 +620,7 @@ RgErrInfo *err; "rgROMHndlBcchPcchDatReq(): Invalid Lc Id"); err->errCause = RGERR_ROM_INV_LC_ID; - RETVALUE(RFAILED); + return RFAILED; } /* rgROMHndlBcchPcchDatReq */ /** @@ -701,12 +680,12 @@ RgRguDedStaRsp *staRsp; rgGetPstToInst(&schPst,inst, cell->schInstMap.schInst); schPst.event = 0; //TODO: commented for compilation without SCH RgMacSchDedBoUpdt(&schPst, &boRpt); - RETVALUE(ROK); + return ROK; } RLOG_ARG2(L_ERROR,DBG_CELLID,staRsp->cellId,"Invalid cell for CRNTI:%d LCID:%d ", staRsp->rnti,staRsp->lcId); - RETVALUE(RFAILED); + return RFAILED; } /* rgROMDedStaRsp */ S16 RgMacSchBrdcmDedBoUpdtReq( @@ -736,7 +715,7 @@ S32 bo schPst.event = 0; //TODO: commented for compilation without SCH RgMacSchDedBoUpdtReq (&schPst,&boRpt); } - RETVALUE(ROK); + return ROK; } /** * @brief Handler for StaRsp received on RGU for a common logical channel. @@ -782,7 +761,7 @@ RgRguCmnStaRsp *staRsp; "Invalid cell for CRNTI:%d LCID:%d",staRsp->u.rnti,staRsp->lcId); err.errType = RGERR_ROM_CMNSTARSP; err.errCause = RGERR_ROM_INV_CELL_ID; - RETVALUE(RFAILED); + return RFAILED; } /* handle status response on CCCH */ @@ -795,7 +774,7 @@ RgRguCmnStaRsp *staRsp; rgROMHndlBcchPcchStaRsp(cell, staRsp, &err); } - RETVALUE(ROK); + return ROK; } /* rgROMCmnStaRsp */ #ifdef LTE_L2_MEAS @@ -856,12 +835,12 @@ RgRguL2MUlThrpMeasReq *measReq; } } } - RETVALUE(ROK); + return ROK; } } RLOG_ARG1(L_ERROR,DBG_CELLID,measReq->cellId,"Invalid cell CRNTI:%d", measReq->rnti); - RETVALUE(RFAILED); + return RFAILED; } /* rgROML2MUlThrpMeasReq */ #endif @@ -915,7 +894,7 @@ RgErrInfo *err; rgGetPstToInst(&schPst,macInst, cell->schInstMap.schInst); //TODO: commented for compilation without SCH RgMacSchCmnBoUpdt(&schPst, &boRpt); - RETVALUE(ROK); + return ROK; } /* rgROMHndlCcchStaRsp */ @@ -962,7 +941,7 @@ RgErrInfo *err; /* Handle lcCb fetch failure */ RLOG_ARG1(L_ERROR,DBG_CELLID,cell->cellId,"Invalid LCID:%d",staRsp->lcId); err->errCause = RGERR_ROM_INV_LC_ID; - RETVALUE(RFAILED); + return RFAILED; } /* MS_WORKAROUND : This is to ensure that the queue for BCH is not filled with old BO requests : This assumes that BO is not received more than 4 frames in advance from the enodeb application */ @@ -974,7 +953,7 @@ RgErrInfo *err; if ((staRsp->u.timeToTx.sfn != nextBchSfn) || ((staRsp->u.timeToTx.sfn == cell->crntTime.sfn) && (cell->crntTime.slot >= 7))) { - RETVALUE(ROK); + return ROK; } } /* @@ -997,7 +976,7 @@ RgErrInfo *err; rgGetPstToInst(&schPst,macInst, cell->schInstMap.schInst); //TODO: commented for compilation without SCH RgMacSchCmnBoUpdt(&schPst, &boRpt); - RETVALUE(ROK); + return ROK; } /* rgROMHndlBcchPcchStaRsp */ /* ADD Changes for Downlink UE Timing Optimization */ @@ -1041,7 +1020,7 @@ RgDlSf *dlSf; * request than the allocation. Do nothing for this. */ RLOG_ARG0(L_ERROR,DBG_CELLID,cellCb->cellId, "RX new data while remDatReqCnt is 0 for cell"); - RETVALUE(RFAILED); + return RFAILED; } /*Decrement the remaining data request to be received countter @@ -1067,7 +1046,7 @@ RgDlSf *dlSf; dlSf->txDone = TRUE; } - RETVALUE(ROK); + return ROK; } /* rgROMUpdDlSfRemDataCnt*/ #endif