1 /*******************************************************************************
2 ################################################################################
3 # Copyright (c) [2017-2019] [Radisys] #
5 # Licensed under the Apache License, Version 2.0 (the "License"); #
6 # you may not use this file except in compliance with the License. #
7 # You may obtain a copy of the License at #
9 # http://www.apache.org/licenses/LICENSE-2.0 #
11 # Unless required by applicable law or agreed to in writing, software #
12 # distributed under the License is distributed on an "AS IS" BASIS, #
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
14 # See the License for the specific language governing permissions and #
15 # limitations under the License. #
16 ################################################################################
17 *******************************************************************************/
19 /**********************************************************************
25 Desc: Defines required by LTE-MAC
29 **********************************************************************/
32 @brief This file contains definitons for Mac.
42 #include "gen.x" /* general layer */
43 #include "ssi.x" /* system service interface */
51 #define RG_MAC_HDR_SIZE 250
52 #define RG_MAC_CE_SIZE 250
53 uint32_t MacPtrAddress;
54 uint32_t macHeader[2];
56 #define RG_ADD_DBuf(_dBuf,_size,_mBuf)\
58 SsMsgInfo *mInfo = NULLP; \
59 mInfo = (SsMsgInfo *)_mBuf->b_rptr; \
60 ssGetDBufOfSize(mInfo->region,_size, &_dBuf); \
61 SUpdMsg(_mBuf, _dBuf,0);\
62 _dBuf->b_wptr = _dBuf->b_rptr = (_dBuf->b_datap->db_base + 5);\
63 MacPtrAddress = (uint32_t)_dBuf->b_wptr;\
69 #define RGLAYERNAME "MAC"
70 #define RG_MAX_TB_PER_UE 2
71 #define RG_MAX_BCCH_DLSCH 2
72 #define RG_INVALID_RNTI 0x0000
74 #define RG_MAX_NUM_DED_LC 10 /* maximum dedicated logical channels in a UE */
75 #define RG_MAX_NUM_CMN_LC 5 /* maximum number of common logical
77 #define RG_MAX_LCG_PER_UE 4
78 #define RG_CON_RES_ID_SZ 6
79 #define RG_MAX_RA_RNTI 60
81 /* Added support for SPS*/
83 #define RG_ADDL_SPS_OCC_FOR_EXP_REL 2
85 #define RG_SPS_SID_PACKET_SIZE 10
86 #define RG_SPS_LCG_ID 1
90 /* Well known RNTIS */
91 #define RG_SI_RNTI 0xffff
92 #define RG_P_RNTI 0xfffe
94 #define RG_MAX_UPPERSAP 3
95 #define RG_MAX_LOWERSAP 1
96 #define RG_TQ_SIZE 10 /* Timing Queue Size */
97 #define RG_MAX_TIMER RG_MAX_LOWERSAP /* MAX number of MAC timers */
98 #define RG_NMB_CELL_HASHBIN 10 /* Number of Hash Bins for cell hash
100 #define RG_NMB_UE_HASHBIN 10 /* Number of Hash Bins for UE hash
102 #define RG_BNDREQ_TMR 1 /* Bind Request timer event value */
103 #define RG_MAX_BNDRETRY 2 /* Max number of Bind Retries for TFU SAP */
106 #define RG_UE_TQ_SIZE 10 /* Timing Queue Size */
108 #define RG_INVALID_SCHD_TYPE 255
109 #define RG_MAX_UE_PER_CELL 0xFFFF /*!< Maximum number of UEs per cell */
110 #ifdef EIGHT_UE_PER_TTI_CHANGES
111 #define RG_MAX_UE_BIN_PER_CELL 1024 /*!< Maximum number of UE bins per cell */
113 #define RG_MAX_UE_BIN_PER_CELL 128 /*!< Maximum number of UE bins per cell */
115 #define RG_MIN_DL_BW 6 /*!< Minimum Downlink bandwidth in RBs */
116 #define RG_MAX_DL_BW 110 /*!< Maximum Downlink bandwidth in RBs */
117 #define RG_MIN_UL_BW 6 /*!< Minimum Uplink bandwidth in RBs */
118 #define RG_MAX_UL_BW 110 /*!< Maximum Uplink bandwidth in RBs */
119 #define RG_MIN_CFI_VAL 1 /*!< Minimum value for CFI */
120 #define RG_MAX_CFI_VAL 3 /*!< Maximum value for CFI */
121 #define RG_QM_BPSK 2 /*!< Qm value for BPSK */
122 #define RG_QM_QPSK 4 /*!< Qm value for QPSK */
123 #define RG_QM_64QAM 6 /*!< Qm value for 64QAM */
124 #define RG_MIN_SRS_SFCFG_IDX 0 /*!< Minimum value for SRS subframe
125 configurtion index */
126 #define RG_MAX_SRS_SFCFG_IDX 15 /*!< Maximum value for SRS subframe
127 configurtion index */
128 #define RG_MAX_SRS_TX_OFFSET 8 /*!< Maximum number of SRS transmission
130 #define RG_MIN_MAC_RNTI 10 /*!< Minimum value of RNTI to be managed by
133 /* HARQ related MACROs */
134 #define RG_NUM_DL_HQ_PROC 8
135 #define RG_NUM_UL_HQ_PROC 8
136 #define RG_MIN_HQ_TX 1
138 /* Group power related MACROs */
139 #define RG_MAX_GRP_PWR_FMT3_IDX 15 /*!< Maximum index value for group power format 3 */
140 #define RG_MAX_GRP_PWR_FMT3A_IDX 31 /*!< Maximum index value for group power format 3A */
142 /* MACROs to indicate cell specific config for cell to be active */
143 #define RG_BCCH_BCH_CFG_DONE (1<<0)
144 #define RG_BCCH_DLSCH_CFG1_DONE (1<<1)
145 #define RG_BCCH_DLSCH_CFG2_DONE (1<<2)
146 #define RG_PCCH_CFG_DONE (1<<3)
147 #define RG_UL_CCCH_CFG_DONE (1<<4)
148 #define RG_DL_CCCH_CFG_DONE (1<<5)
149 #define RG_SCHD_CFG_DONE (1<<6)
150 #define RG_CELL_ACTIVE (RG_BCCH_BCH_CFG_DONE | RG_BCCH_DLSCH_CFG1_DONE | RG_BCCH_DLSCH_CFG2_DONE | RG_PCCH_CFG_DONE | RG_UL_CCCH_CFG_DONE | RG_DL_CCCH_CFG_DONE)
151 /* Logical channel realated MACROs */
152 #define RG_INVALID_LCG_ID 255
153 #define RG_INVALID_LC_ID 255
154 #define RG_BCCH_BCH_IDX 0
155 #define RG_BCCH_DLSCH_IDX 1
156 #define RG_PCCH_IDX 2
158 /* constants for MIN & MAX qci*/
162 /* PUCCH related macros */
163 #define RG_PUCCH_MAXVAL_CS 7 /*!< Maximum value for cyclic shift of PUCCH */
164 #define RG_PUCCH_MINVAL_DS 1 /*!< Mininmum value for delta shift of PUCCH */
165 #define RG_PUCCH_MAXVAL_DS 3 /*!< Maximum value for delta shift of PUCCH */
167 /* DUX related macros */
168 #define RG_LCID_MASK 0x3F
170 #define RG_LCID_LEN 0x6
171 #define RG_CCCH_LCID 0x00
172 #define RG_DEDLC_MIN_LCID 0x01
173 #define RG_DEDLC_MAX_LCID 0x0A
174 #define RG_RES_MIN_LCID 0x0B
175 #define RG_RES_MAX_LCID 0x18
176 #define RG_EXT_PHR_LCID 0x19
177 #define RG_PHR_LCID 0x1A
178 #define RG_CRNTI_LCID 0X1B
179 #define RG_TRUNC_BSR_LCID 0X1C
180 #define RG_SHORT_BSR_LCID 0X1D
181 #define RG_LONG_BSR_LCID 0X1E
182 #define RG_PAD_LCID 0x3F
183 #define RG_MAX_EXTN_PAD_SUBHDRS 0x02
184 #define RG_REF_PCMAX 0xFF
186 #define RG_CCCH_SDU_PRSNT (1<<0)
187 #define RG_CRNTI_CE_PRSNT (1<<1)
188 #define RG_PHR_CE_PRSNT (1<<2)
189 #define RG_TRUNC_BSR_CE_PRSNT (1<<3)
190 #define RG_SHORT_BSR_CE_PRSNT (1<<4)
191 #define RG_LONG_BSR_CE_PRSNT (1<<5)
193 #define RG_ACTIVE_LC_PRSNT (1<<6)
196 #define RG_UL_SPS_ACT_PRSNT (1<<7)
198 #define RG_EXT_PHR_CE_PRSNT (1<<8)
200 /* LOGICAL CHANNEL */
201 #define RG_MAX_LC_PER_UE 10
202 /* Maximum number of common logical channel control blocks */
203 #define RG_MAX_CMN_LC_CB 3
204 #define RG_MAX_BCCH 2
207 #define RG_MAX_SCELL_PER_UE 7 /*!< MAX SCell can be Added per Cell */
210 #define RG_OPTM_NUM_DED_LC 3
212 /* Random access related MACROs */
213 #define RG_MAX_RA_PREAMBLE_FMT 3 /*!< Maximun value of Random access preamble
215 #define RG_MAX_RA_WINSIZE 10 /*!< Maximum size of Random access response
216 window in subframes */
217 #define RG_MIN_RA_WINSIZE 2 /*!< Minimum size of Random access response
218 window in subframes */
219 #define RG_MIN_NUM_RA_PREAMBLE 4 /*!< Minimum number of Random access
221 #define RG_MAX_NUM_RA_PREAMBLE 64 /*!< Maximim number of Random access
223 #define RG_NUM_RA_RB 6
225 #define RG_MAX_RA_RSP_ALLOC 4 /*!< Maximum number of Random access
227 #define RG_CRG_CFG 1 /* CRG configuration element */
228 #define RG_RGR_CFG 2 /* RGR configuration element */
230 #define RG_NUM_ITBS 27
231 #define RG_MAX_NUM_RB 110
233 #define RG_MAX_NUM_PAD_HDRS 2
235 /* Changes for MIMO feature addition */
236 /* Removed dependency on MIMO compile-time flag */
237 #define RG_MAX_LYR_PERCW 2
240 #define RG_MAX_DL_HARQ_NUM 15
242 #define RG_MAX_DL_HARQ_NUM 8
245 /* Free shared memory, received through LWLC */
246 #define MAC_FREE_MEM(_region, _pool, _datPtr, _size) \
247 MAC_FREE(_datPtr, _size); \
249 #define RG_LCG_ISCFGD(lcg) ((lcg)->lcgId != RG_INVALID_LCG_ID)
250 /* Corrected the check for dlCcchId */
251 #define RG_DLCCCH_ISCFGD(cell) ((cell)->dlCcchId != RG_INVALID_LC_ID)
252 #define RG_ULCCCH_ISCFGD(cell) ((cell)->ulCcchId != RG_INVALID_LC_ID)
253 /* After merging from 2.1 to 2.2 */
254 #define RG_CALC_SF_DIFF(_time1, _time2)\
255 (_time1.sfn*RG_NUM_SUB_FRAMES_5G+_time1.slot) < (_time2.sfn*RG_NUM_SUB_FRAMES_5G+_time2.slot)?\
256 ((_time1.sfn+RG_MAX_SFN)*RG_NUM_SUB_FRAMES_5G+_time1.slot) -\
257 (_time2.sfn*RG_NUM_SUB_FRAMES_5G+_time2.slot) : \
258 (_time1.sfn*RG_NUM_SUB_FRAMES_5G+_time1.slot) - (_time2.sfn*RG_NUM_SUB_FRAMES_5G+_time2.slot)
259 /*LTE_L2_MEAS_PHASE2*/
260 #define RG_CALC_SFN_SF_DIFF(_time1,_sfnCycle, _time2)\
261 (((_time1.sfn+RG_MAX_SFN * _sfnCycle)*RG_NUM_SUB_FRAMES_5G) + _time1.slot -\
262 (_time2.sfn*RG_NUM_SUB_FRAMES_5G + _time2.slot))
264 #define RG_EXT_LCID(_lcId, _byte) {\
265 (_lcId) = (_byte) & RG_LCID_MASK; \
267 #define RG_EXT_FORMT_BIT(_fmtBit, _byte) {\
268 (_fmtBit) = ((_byte) >> RG_LCID_LEN) & 0x01; \
271 #define RG_EXT_EXTN_BIT(_extnBit, _byte) {\
272 (_extnBit) = ((_byte) >> RG_LCID_LEN) & 0x01; \
275 #ifndef MS_MBUF_CORRUPTION
276 #define MS_BUF_ADD_ALLOC_CALLER()
279 #define RG_PACK_PAD(_padBuf,_size,_sduBuf) { \
280 Buffer *sduEnd = NULLP; \
281 SsMsgInfo *mInfo = NULLP; \
282 mInfo = (SsMsgInfo *)_sduBuf->b_rptr; \
283 ssGetDBufOfSize(mInfo->region,_size, &_padBuf); \
284 if (_padBuf == NULLP) \
286 DU_LOG("\nERROR --> MAC : RGERR_MUX_BLD_CEHDR_FAIL");\
289 if (mInfo->endptr == NULLP) { \
294 sduEnd = mInfo->endptr; \
296 sduEnd->b_cont = _padBuf; \
297 padBuf->b_wptr += _size; \
298 mInfo = (SsMsgInfo *)_sduBuf->b_rptr; \
299 mInfo->endptr = _padBuf; \
300 mInfo->len += _size; \
303 #define RG_PACK_SDU(_sdusBuf, _sduBuf, _ret) {\
304 _ret = SCatMsg(_sdusBuf, _sduBuf, M1M2);\
307 #define RG_PACK_LAST_SDU_SHDR(_subHdr, _lcId, _mBuf, _ret) {\
310 _subHdr.shData[0] = (0x1F & _lcId);\
311 MS_BUF_ADD_ALLOC_CALLER(); \
312 _ret = SAddPstMsgMult(&_subHdr.shData[0], _subHdr.shLen, _mBuf);\
315 #define RGADDTOCRNTTIME(crntTime, toFill, incr) \
316 if ((crntTime.slot + incr) > (RG_NUM_SUB_FRAMES_5G - 1)) \
317 toFill.sfn = (crntTime.sfn + 1); \
319 toFill.sfn = crntTime.sfn; \
320 toFill.slot = (crntTime.slot + incr) % RG_NUM_SUB_FRAMES_5G; \
321 if (toFill.sfn >= RG_MAX_SFN) \
323 toFill.sfn%=RG_MAX_SFN; \
326 #define RGSUBFRMCRNTTIME(crntTime, toFill, dcr) \
328 if (crntTime.sfn == 0) \
330 if ((crntTime.slot - (dcr)) < 0) \
332 toFill.sfn = RG_MAX_SFN - 1; \
336 toFill.sfn = crntTime.sfn; \
341 if ((crntTime.slot - (dcr)) < 0) \
343 toFill.sfn = crntTime.sfn - 1; \
346 toFill.sfn = crntTime.sfn; \
348 toFill.slot = (RG_NUM_SUB_FRAMES_5G + crntTime.slot - (dcr)) % (RG_NUM_SUB_FRAMES_5G); \
351 #define RGCPYTIMEINFO(src, dst) \
354 #define RG_TIMEINFO_SAME(x, y) ((x.sfn == y.sfn) && (x.slot == y.slot))
357 #define rgPBuf(_inst) rgCb[_inst].rgInit.prntBuf
359 /* Debug Prints for MAC */
361 #define RGDBGERRNEW(_inst,_args) \
362 DBGP(&rgCb[_inst].rgInit, RGLAYERNAME, DBGMASK_ERR, _args)
363 #define RGDBGINFONEW(_inst,_args) \
364 DBGP(&rgCb[_inst].rgInit, RGLAYERNAME, DBGMASK_INFO, _args)
366 #define RGDBGERRNEW(_inst,_args)
367 #define RGDBGINFONEW(_inst,_args)
368 #endif /* #ifdef DEBUGP */
369 #define RGDBGPRM(_inst,_args)
370 #define RGDBGERR(_inst,_args)
371 #define RGDBGINFO(_inst,_args)
374 #define RG_NULL_CHECK(_inst, _ptr ) \
375 if((_ptr) == NULLP) \
377 DU_LOG("\nERROR --> MAC : Null Pointer detected");\
380 #define RG_ARRAY_BOUND_CHECK(_inst, _array, _idxVal) \
381 if((_idxVal) >= (sizeof(_array)/sizeof(_array[0]))) \
383 DU_LOG("\nERROR --> MAC : Array Bound Check Failed");\
387 #define RG_NULL_CHECK(_inst, _ptr )
388 #define RG_ARRAY_BOUND_CHECK(_inst, _array, _idxVal)
391 /* Macro to free the message buffer and initialize it to zero */
392 /***********************************************************
396 * Desc : Macro to free the message buffer and initialize it to zero
398 * Input : mBuf - message buffer pointer to be retunrned
404 **********************************************************/
405 #define RG_FREE_MSG(_buf)\
407 if (NULLP != (_buf)) \
414 #define RG_FREE_MEM(_mem)\
416 if (NULLP != (_mem)) \
424 #define RG_FREE_TB(_tb)\
426 uint32_t lchIdx, pduIdx;\
427 SResetMBuf(_tb->macHdr);\
428 SResetMBuf(_tb->macCes);\
429 _tb->tbPres = FALSE;\
432 for(lchIdx = 0; lchIdx < _tb->numLch; lchIdx++) \
434 for(pduIdx = 0; pduIdx < _tb->lchInfo[lchIdx].numPdu; pduIdx++)\
436 if(_tb->lchInfo[lchIdx].mBuf[pduIdx] != NULL)\
438 SPutMsg(_tb->lchInfo[lchIdx].mBuf[pduIdx]);\
439 _tb->lchInfo[lchIdx].freeBuff = FALSE;\
441 _tb->lchInfo[lchIdx].mBuf[pduIdx] = NULL;\
443 _tb->lchInfo[lchIdx].numPdu = 0;\
448 #define RG_FREE_SAVED_TB(_tb)\
450 uint32_t lchIdx, pduIdx;\
451 RG_FREE_MSG(_tb->macHdr);\
452 RG_FREE_MSG(_tb->macCes);\
453 _tb->tbPres = FALSE;\
456 for(lchIdx = 0; lchIdx < 10; lchIdx++) \
458 for(pduIdx = 0; pduIdx < 4; pduIdx++)\
460 if(_tb->lchInfo[lchIdx].freeBuff == TRUE)\
462 SPutMsg(_tb->lchInfo[lchIdx].mBuf[pduIdx]);\
463 _tb->lchInfo[lchIdx].freeBuff = FALSE;\
465 _tb->lchInfo[lchIdx].mBuf[pduIdx] = NULL;\
467 _tb->lchInfo[lchIdx].numPdu = 0;\
474 /***********************************************************
476 * Name : RG_DROP_RGUDDATREQ_MBUF
478 * Desc : Macro to free the message buffers and initialize them to zero
480 * Input : _datreq - Dedicated Data Request pointer which has mBufs
487 **********************************************************/
488 #define RG_DROP_RGUDDATREQ_MBUF(_datReq)\
490 uint32_t idx5,idx6,idx7;\
491 for (idx5=0; idx5 < _datReq.nmbOfTbs; idx5++)\
493 for (idx6=0; idx6 < _datReq.datReqTb[idx5].nmbLch; idx6++)\
496 idx7 < _datReq.datReqTb[idx5].lchData[idx6].pdu.numPdu; \
499 RG_FREE_MSG(_datReq.datReqTb[idx5].\
500 lchData[idx6].pdu.mBuf[idx7]);\
506 /***********************************************************
508 * Name : RG_DROP_RGUCDATREQ_MBUF
510 * Desc : Macro to free the message buffers and initialize them to zero
512 * Input : _datreq - Common Data Request pointer which has mBufs
519 **********************************************************/
520 #define RG_DROP_RGUCDATREQ_MBUF(_datReq)\
522 if (_datReq != NULLP)\
524 RG_FREE_MSG(_datReq->pdu);\
529 #define RG_UPD_GBR_PRB(_cellCb, _qci, _prbUsed) {\
530 if(_qci <= RG_MAX_QCI_REPORTS)\
532 _cellCb->qcisUlPrbCnt[_qci-1] += _prbUsed;\
537 /* Macros for memory region and pool determination */
538 #define RG_GET_MEM_REGION(rgCb) (rgCb.rgInit.region)
539 #define RG_GET_MEM_POOL(rgCb) (rgCb.rgInit.pool)
542 /* MUX related macros */
543 #define RG_RAR_SHDR_LEN 1
544 #define RG_RAR_ELEM_LEN 6
545 #define RG_MAX_SDU_SUB_HDR_LEN 3
546 #define RG_MAX_PAD_ARR_SZ 4096 /* Changing from 400 to 4096 */
547 #define RG_PAD_BYTE 0x00
549 #define RG_HDR_TYPE_CRES 1
550 #define RG_HDR_TYPE_TA 2
552 #define RG_HDR_TYPE_SCELL_ACT 3
555 #define RG_SDU_SHDR_LEN 1
556 #define RG_FIXDSZ_CE_SHDR_LEN 1
557 #define RG_PAD_SHDR_LEN 1
558 #define RG_CRES_LEN 6
561 #define RG_SCELL_ACT_CE_LEN 1
562 #define RG_SCELL_CE_ELM_LEN (RG_FIXDSZ_CE_SHDR_LEN+RG_SCELL_ACT_CE_LEN)
564 #define RG_CRES_ELM_LEN (RG_FIXDSZ_CE_SHDR_LEN+RG_CRES_LEN)
565 #define RG_TA_ELM_LEN (RG_FIXDSZ_CE_SHDR_LEN+RG_TA_LEN)
568 /* Values of below macros not yet defined in 5G-NR hence using LTE values till
571 #define RG_CRES_LCID_IDX 0x1C
572 #define RG_TA_LCID_IDX 0x1D
574 #define RG_SCELL_LCID_IDX 0x1B
576 #define RG_PAD_LCID_IDX 0x3F
578 /* Structure member offset computation macro */
579 #define OffsetOf(type, field) \
580 (PTR) (&(((type *) NULLP)->field))
582 #define RG_MAX_SUBFRAMES_IN_SFN 9
583 #define RG_MAX_SFN 1024
585 #define RG_NUM_SUB_FRAMES 50
587 #define RG_NUM_SUB_FRAMES 10
589 #define RG_NUM_SUB_FRAMES_5G 50
591 #define RG_MAX_QCI_REPORTS 4
595 #define RG_NUM_UL_SUB_FRAMES 16
596 #define RG_MAX_QCI_VALUE 10
598 #ifdef EIGHT_UE_PER_TTI_CHANGES
599 /* Tuned according to TDD Cfg Mode2 and 2UE/TTI.
600 * * Need to tune if NumUE/TTI is increased */
601 #define RG_MAX_DFRD_FREE_BUFS 64 /* 64 - 8UE/TTI */
602 #define RG_MAX_FREE_BUFS_PERTTI 16 /* 16 - 8UE/TTI */
605 #define RG_CALC_SF_DIFF(_time1, _time2)\
606 (_time1.sfn*RG_NUM_SUB_FRAMES_5G+_time1.slot) < (_time2.sfn*RG_NUM_SUB_FRAMES_5G+_time2.slot)?\
607 ((_time1.sfn+RG_MAX_SFN)*RG_NUM_SUB_FRAMES_5G+_time1.slot) -\
608 (_time2.sfn*RG_NUM_SUB_FRAMES_5G+_time2.slot) : \
609 (_time1.sfn*RG_NUM_SUB_FRAMES_5G+_time1.slot) - (_time2.sfn*RG_NUM_SUB_FRAMES_5G+_time2.slot)
611 #define RG_TTI_CYCLE_INVLD 0xFFFFFFFF
612 #define RG_CALC_TTI_CNT(_cellCb, _ttiCnt)\
613 _ttiCnt = (RG_NUM_SUB_FRAMES_5G * (_cellCb->crntTime.sfn + (_cellCb->ttiCycle * 1024)) )+\
614 _cellCb->crntTime.slot;
615 #endif /* LTE_L2_MEAS */
617 /* Tuned according to TDD Cfg Mode2 and 2UE/TTI.
618 * Need to tune if NumUE/TTI is increased */
619 #define RG_MAX_DFRD_FREE_BUFS 32 /* 16- 2 UE per TTI 32 - 4UE/TTI */
620 #define RG_MAX_FREE_BUFS_PERTTI 8 /* 4 - 2 Ue per TTI, 8 - 4UE/TTI */
623 /* Define for the block size for memory allocation */
624 /* RG_BLKSZ changed from 2048 to 1500*/
625 #define RG_BLKSZ 1500
627 /* Defines for RGU Statistics types */
628 #define RG_RGU_SDU_DROP 1
629 #define RG_RGU_SDU_RCVD 2
631 /* MACROS for General Statistics */
635 #define RG_HQ_FDB_IND_CB_TYPE_HQ_ENT 1
636 #define RG_HQ_FDB_IND_CB_TYPE_RA_CB 2
638 /* MACRO for validating the mac instance id */
639 #define RG_IS_INST_VALID(_inst)\
641 if(_inst >= RG_MAX_INST)\
648 * Removed unused hash-define which defines the
649 * index for releasing the subframe.
652 /* Value used to set nDmrs in uplink grant if nDmrs is not applicable */
653 #define RG_INVALID_NDMRS 10
655 /* Note: Any changes to these enums should reflect to */
656 /** @details Enums for special argument
665 #define RG_DIAG_LVL0(_inst,_tknId, _splArgEnum, _splArg, _string, _arg1, _arg2, _arg3, _arg4) \
667 if(rgCb[_inst].rgInit.logMask & SS_DIAG_LVL0) \
669 ssDiagFix(_tknId, _splArgEnum, ENTMAC, rgCb[_inst].rgInit.inst, SS_DIAG_LVL0, SS_DIAG_MSG_TYPE_FIXED, _splArg, _arg1, _arg2, _arg3, _arg4, _string);\
673 /** @details Macro definition for LTE-MAC error logs
676 #define RG_DIAG_LVL1(_inst,_tknId, _splArgEnum, _splArg, _string, _arg1, _arg2, _arg3, _arg4) \
678 if(rgCb[_inst].rgInit.logMask & SS_DIAG_LVL1) \
680 ssDiagFix(_tknId, _splArgEnum, ENTMAC, rgCb[_inst].rgInit.inst, SS_DIAG_LVL1, SS_DIAG_MSG_TYPE_FIXED, _splArg, _arg1, _arg2, _arg3, _arg4, _string);\
684 /** @details Macro definition for LTE-MAC critical logs
687 #define RG_DIAG_LVL2(_inst,_tknId, _splArgEnum, _splArg, _string, _arg1, _arg2, _arg3, _arg4) \
689 if(rgCb[_inst].rgInit.logMask & SS_DIAG_LVL2) \
691 ssDiagFix(_tknId, _splArgEnum, ENTMAC, rgCb[_inst].rgInit.inst, SS_DIAG_LVL2, SS_DIAG_MSG_TYPE_FIXED, _splArg, _arg1, _arg2, _arg3, _arg4, _string);\
695 /** @details Macro definition for LTE-MAC logs
698 #define RG_DIAG_LVL3(_inst,_tknId, _splArgEnum, _splArg, _string, _arg1, _arg2, _arg3, _arg4) \
700 if(rgCb[_inst].rgInit.logMask & SS_DIAG_LVL3) \
702 ssDiagFix(_tknId, _splArgEnum, ENTMAC, rgCb[_inst].rgInit.inst, SS_DIAG_LVL3, SS_DIAG_MSG_TYPE_FIXED, _splArg, _arg1, _arg2, _arg3, _arg4, _string);\
706 /** @details Macro definition for LTE-MAC logs
709 #define RG_DIAG_LVL4(_inst,_tknId, _splArgEnum, _splArg, _string, _arg1, _arg2, _arg3, _arg4) \
711 if(rgCb[_inst].rgInit.logMask & SS_DIAG_LVL4) \
713 ssDiagFix(_tknId, _splArgEnum, ENTMAC, rgCb[_inst].rgInit.inst, SS_DIAG_LVL4, SS_DIAG_MSG_TYPE_FIXED, _splArg, _arg1, _arg2, _arg3, _arg4, _string);\
719 #define RG_DIAG_LVL0(_inst,_tknId, _splArgEnum, _splArg, _string, _arg1, _arg2, _arg3, _arg4) \
723 /** @details Macro definition for LTE-MAC error logs
726 #define RG_DIAG_LVL1(_inst,_tknId, _splArgEnum, _splArg, _string, _arg1, _arg2, _arg3, _arg4) \
730 /** @details Macro definition for LTE-MAC critical logs
733 #define RG_DIAG_LVL2(_inst,_tknId, _splArgEnum, _splArg, _string, _arg1, _arg2, _arg3, _arg4) \
737 /** @details Macro definition for LTE-MAC logs
740 #define RG_DIAG_LVL3(_inst,_tknId, _splArgEnum, _splArg, _string, _arg1, _arg2, _arg3, _arg4) \
744 /** @details Macro definition for LTE-MAC logs
747 #define RG_DIAG_LVL4(_inst,_tknId, _splArgEnum, _splArg, _string, _arg1, _arg2, _arg3, _arg4) \
753 /**********************************************************************
755 **********************************************************************/