X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrsch%2Fsch_utils.h;h=469ebf80922a732eda8ff7d81a99152df476a8d3;hb=67b89506e1d6a7a775d5095f390d5dcb610deb86;hp=a287413e4ceaae64fa2bd711716e97a1328ac36a;hpb=284fc2e85cb5008061a7f8c6d07947a1c6209432;p=o-du%2Fl2.git diff --git a/src/5gnrsch/sch_utils.h b/src/5gnrsch/sch_utils.h index a287413e4..469ebf809 100644 --- a/src/5gnrsch/sch_utils.h +++ b/src/5gnrsch/sch_utils.h @@ -31,6 +31,8 @@ #define MAX_PRACH_CONFIG_IDX 256 #define MAX_MU_PUSCH 4 #define TOTAL_TBSIZE_VALUES 93 +#define DEFAULT_UL_ACK_LIST_COUNT 8 /* Max number of pusch time domain uplink allocation */ +#define MASK_BIT64_ON 0xFFFFFFFFFFFFFFFF #define SET_BITS_MSB(_startBit, _numBits, _byte) \ { \ @@ -97,16 +99,30 @@ int8_t coresetIdxTable[MAX_CORESET_INDEX][4]; int8_t searchSpaceIdxTable[MAX_SEARCH_SPACE_INDEX][4]; +uint8_t defaultUlAckTbl[DEFAULT_UL_ACK_LIST_COUNT]; +uint8_t minMsg3SchTime[MAX_NUM_MU]; -/* functions declarations */ -void freqDomRscAllocType0(uint16_t startPrb, uint16_t prbSize, uint8_t *freqDomain); -uint16_t schCalcTbSize(uint32_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); +/* Functions declarations : Linked list handler */ +uint8_t addNodeToLList(CmLListCp *llist, void *blockToAdd, CmLList *currNode); +uint8_t deleteNodeFromLList(CmLListCp *llist, CmLList *node); + +/* Functions declarations : Slot format handler */ #ifdef NR_TDD SlotConfig schGetSlotSymbFrmt(uint16_t slot, uint32_t bitMap); +uint8_t calculateSlotPatternLength(uint8_t scs, uint8_t periodicity); #endif +/* Functions declarations : Resource allocation handler */ +uint16_t schCalcTbSize(uint32_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); +bool fillPrbBitmap(uint64_t *prbBitmap, uint16_t startPrb, uint16_t numPrb); +CmLList* isPrbAvailable(CmLListCp *freePrbBlockList, uint16_t startPrb, uint16_t numPrb); +void removeAllocatedPrbFromFreePrbList(CmLListCp *freePrbBlockList, CmLList *node, \ + uint16_t startPrb, uint16_t numPrb); +uint8_t findDmrsStartSymbol(uint16_t dlDmrsSymbBitMap); +void covertFreqDomRsrcMapToIAPIFormat(uint8_t *sourceBitMap, uint8_t *destBitMap); + /********************************************************************** End of file **********************************************************************/