X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrmac%2Flwr_mac_upr_inf.h;h=0666ba2bfa1ae6ff19f30ce8a83bb842b32adc10;hb=5831bf6b3454aa200a92cd3e84209650734e4863;hp=98327a8cd283e01e7a3d93d14a75c987149a442d;hpb=b490cd1231cfcc837e8bfccc40c6bb106dceef7c;p=o-du%2Fl2.git diff --git a/src/5gnrmac/lwr_mac_upr_inf.h b/src/5gnrmac/lwr_mac_upr_inf.h index 98327a8cd..0666ba2bf 100644 --- a/src/5gnrmac/lwr_mac_upr_inf.h +++ b/src/5gnrmac/lwr_mac_upr_inf.h @@ -21,40 +21,107 @@ #ifndef __LWR_MAC_UPR_INF_H__ #define __LWR_MAC_UPR_INF_H__ -#include "envopt.h" /* environment options */ -#include "envdep.h" /* environment dependent */ -#include "envind.h" /* environment independent */ -#include "gen.h" /* general layer */ -#include "ssi.h" /* system services */ -#include "cm5.h" /* common timers defines */ -#include "cm_hash.h" /* common hash list defines */ -#include "cm_llist.h" /* common linked list defines */ -#include "cm_mblk.h" /* memory management */ -#include "cm_tkns.h" /* common tokens */ -#include "cm_lte.h" /* common tokens */ -#include "tfu.h" - -/* header/extern include files (.x) */ -#include "gen.x" /* general layer typedefs */ -#include "ssi.x" /* system services typedefs */ -#include "cm5.x" /* common timers */ -#include "cm_hash.x" /* common hash list */ -#include "cm_lib.x" /* common library */ -#include "cm_llist.x" /* common linked list */ -#include "cm_mblk.x" /* memory management */ -#include "cm_tkns.x" /* common tokens */ -#include "cm_lte.x" /* common tokens */ -#include "tfu.x" - -typedef S16 (*packSlotIndMsg)(Pst *pst, SlotIndInfo *slotInd); -S16 packLcSlotInd (Pst *pst, SlotIndInfo *slotInd); -S16 packLwlcSlotInd (Pst *pst, SlotIndInfo *slotInd); - -typedef uint16_t (*packRachIndMsg)(Pst *pst, RachInd *rachInd); -uint16_t packRachInd(Pst *pst, RachInd *rachInd); -uint16_t fapiMacRachInd(Pst *pst, RachInd *rachInd); +#define MAX_PREAMBLE_PER_SLOT 1 /* Max number of preamble per slot */ +#define MAX_RACH_PDU_PER_SLOT 1 /* Max number of rach pdu per slot */ +#define MAX_CRCS_PER_SLOT 1 +#define MAX_CB_PER_TTI_IN_BYTES 1 +#define MAX_ULSCH_PDUS_PER_TTI 1 +/* events */ +#define EVENT_RACH_IND_TO_MAC 0 +#define EVENT_CRC_IND_TO_MAC 1 +#define EVENT_RX_DATA_IND_TO_MAC 2 +#define EVENT_STOP_IND_TO_MAC 3 +#define EVENT_SLOT_IND_TO_MAC 4 + +typedef struct rachPreamInfo +{ + uint8_t preamIdx; + uint16_t timingAdv; +}RachPreamInfo; + +typedef struct rachPduInfo +{ + uint16_t pci; + uint8_t symbolIdx; + uint8_t slotIdx; + uint8_t freqIdx; + uint8_t numPream; + RachPreamInfo preamInfo[MAX_PREAMBLE_PER_SLOT]; +}RachPduInfo; + +typedef struct rachInd +{ + uint16_t cellId; + SlotIndInfo timingInfo; + uint8_t numPdu; + RachPduInfo rachPdu[MAX_RACH_PDU_PER_SLOT]; +}RachInd; + +typedef struct crcInfo +{ + uint32_t handle; + uint16_t rnti; + uint8_t harqId; + uint8_t tbCrcStatus; + uint16_t numCb; + uint8_t cbCrcStatus[MAX_CB_PER_TTI_IN_BYTES]; + uint8_t ul_cqi; + uint16_t timingAdvance; + uint16_t rssi; +}CrcInfo; + +typedef struct crcInd +{ + uint16_t cellId; + SlotIndInfo timingInfo; + uint16_t numCrc; + CrcInfo crcInfo[MAX_CRCS_PER_SLOT]; +}CrcInd; + +typedef struct +{ + uint32_t handle; + uint16_t rnti; + uint8_t harqId; + uint16_t pduLength; + uint8_t ul_cqi; + uint16_t timingAdvance; + uint16_t rssi; + uint8_t *pduData; +}RxDataIndPdu; + +typedef struct +{ + uint16_t cellId; + SlotIndInfo timingInfo; + uint16_t numPdus; + RxDataIndPdu pdus[MAX_ULSCH_PDUS_PER_TTI]; +}RxDataInd; + +typedef uint8_t (*packSlotIndMsg)(Pst *pst, SlotIndInfo *slotInd); +uint8_t packLcSlotInd (Pst *pst, SlotIndInfo *slotInd); +uint8_t packLwlcSlotInd (Pst *pst, SlotIndInfo *slotInd); + +uint8_t fapiMacSlotInd(Pst *pst, SlotIndInfo *slotInd); + +typedef uint8_t (*packRachIndMsg)(Pst *pst, RachInd *rachInd); +uint8_t packRachInd(Pst *pst, RachInd *rachInd); +uint8_t fapiMacRachInd(Pst *pst, RachInd *rachInd); + +typedef uint8_t (*packCrcIndMsg)(Pst *pst, CrcInd *crcInd); +uint8_t packCrcInd(Pst *pst, CrcInd *crcInd); +uint8_t fapiMacCrcInd(Pst *pst, CrcInd *crcInd); + + +typedef uint8_t (*packRxDataIndMsg)(Pst *pst, RxDataInd *rxDataInd); +uint8_t packRxDataInd(Pst *pst, RxDataInd *rxDataInd); +uint8_t fapiMacRxDataInd(Pst *pst, RxDataInd *rxDataInd); + +typedef uint8_t (*packStopIndMsg)(Pst *pst, uint16_t cellId); +uint8_t packStopInd(Pst *pst, uint16_t cellId); +uint8_t fapiMacStopInd(Pst *pst, uint16_t cellId); #endif /********************************************************************** - End of file -**********************************************************************/ + End of file + **********************************************************************/