X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrsch%2Fsch_utils.h;h=3811b94ca671b08619b7b0f3068a3461c61b2b9f;hb=def50dc175cebc67238db5f1acd5ff322a2279bd;hp=6616e3ab5f8b6cb6b749b749adca56bedcf0c79b;hpb=134974ec70ab6e0501889e5d162a3b0c806c3bdc;p=o-du%2Fl2.git diff --git a/src/5gnrsch/sch_utils.h b/src/5gnrsch/sch_utils.h index 6616e3ab5..3811b94ca 100644 --- a/src/5gnrsch/sch_utils.h +++ b/src/5gnrsch/sch_utils.h @@ -17,25 +17,84 @@ *******************************************************************************/ #include +#include + +/* Memory info */ +#define SCH_MEM_REGION 4 +#define SCH_POOL 1 /* macros */ #define MAX_CORESET_INDEX 16 #define MAX_SEARCH_SPACE_INDEX 16 #define MAX_RACH_NUM_RB_IDX 16 +#define MAX_PUCCH_RES_SET_IDX 16 #define MAX_PRACH_CONFIG_IDX 256 #define MAX_MU_PUSCH 4 +#define TOTAL_TBSIZE_VALUES 93 -#define SET_BITS(_startBit, _numBits, _byte) \ -{ \ - _byte = (((~((~0)<<_numBits))<<_startBit)); \ +#define SET_BITS_MSB(_startBit, _numBits, _byte) \ +{ \ + _byte = (~((0xFF) >> _numBits)); \ + _byte >>= _startBit; \ } -/* functions declarations */ -void calculatePRB(uint16_t startPrb, uint16_t prbSize, uint8_t *freqDomain); +#define SET_BITS_LSB(_startBit, _numBits, _byte) \ +{ \ + _byte = (~((0xFF) << _numBits)); \ + _byte <<= _startBit; \ +} + +/* allocate and zero out a static buffer */ +#define SCH_ALLOC(_datPtr, _size) \ +{ \ + uint8_t _ret; \ + _ret = SGetSBuf(SCH_MEM_REGION, SCH_POOL, \ + (Data **)&_datPtr, _size); \ + if(_ret == ROK) \ + { \ + memset(_datPtr, 0, _size); \ + } \ + else \ + { \ + _datPtr = NULLP; \ + } \ +} + +/* free a static buffer */ +#define SCH_FREE(_datPtr, _size) \ +{ \ + if(_datPtr) \ + { \ + SPutSBuf(SCH_MEM_REGION, SCH_POOL, \ + (Data *)_datPtr, _size); \ + } \ +} + +/* Fill post structure for msg from SCH to MAC */ +#define FILL_PST_SCH_TO_MAC(_pst, _inst) \ +{ \ + _pst.srcProcId = ODU_GET_PROCID(); \ + _pst.dstProcId = ODU_GET_PROCID(); \ + _pst.srcEnt = ENTMAC; \ + _pst.dstEnt = ENTMAC; \ + _pst.srcInst = 1; \ + _pst.dstInst = 0; \ + _pst.selector = ODU_SELECTOR_TC; \ +} extern int8_t coresetIdxTable[MAX_CORESET_INDEX][4]; extern int8_t searchSpaceIdxTable[MAX_SEARCH_SPACE_INDEX][4]; +/* functions declarations */ +void freqDomRscAllocType0(uint16_t startPrb, uint16_t prbSize, uint8_t *freqDomain); +uint16_t schCalcTbSize(uint16_t payLoadSize); +uint16_t schCalcNumPrb(uint16_t tbSize, uint16_t mcs, uint8_t numSymbols); +uint16_t schCalcTbSizeFromNPrb(uint16_t numPrb, uint16_t mcs, uint8_t numSymbols); +SchUeCb* schGetUeCb(SchCellCb *cellCb, uint16_t crnti); +void schInitUlSlot(SchUlSlotInfo *schUlSlotInfo); +void schInitDlSlot(SchDlSlotInfo *schDlSlotInfo); + + /********************************************************************** - End of file -**********************************************************************/ + End of file + **********************************************************************/