| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- /*
- ** Id: //Department/DaVinci/BRANCHES/MT6620_WIFI_DRIVER_V2_3/include/queue.h#1
- */
- /*! \file queue.h
- \brief Definition for singly queue operations.
- In this file we define the singly queue data structure and its
- queue operation MACROs.
- */
- #ifndef _QUEUE_H
- #define _QUEUE_H
- /*******************************************************************************
- * C O M P I L E R F L A G S
- ********************************************************************************
- */
- /*******************************************************************************
- * E X T E R N A L R E F E R E N C E S
- ********************************************************************************
- */
- #include "gl_typedef.h"
- /*******************************************************************************
- * C O N S T A N T S
- ********************************************************************************
- */
- /*******************************************************************************
- * D A T A T Y P E S
- ********************************************************************************
- */
- /* Singly Queue Structures - Entry Part */
- typedef struct _QUE_ENTRY_T {
- struct _QUE_ENTRY_T *prNext;
- struct _QUE_ENTRY_T *prPrev; /* For Rx buffer reordering used only */
- } QUE_ENTRY_T, *P_QUE_ENTRY_T;
- /* Singly Queue Structures - Queue Part */
- typedef struct _QUE_T {
- P_QUE_ENTRY_T prHead;
- P_QUE_ENTRY_T prTail;
- UINT_32 u4NumElem;
- } QUE_T, *P_QUE_T;
- /*******************************************************************************
- * P U B L I C D A T A
- ********************************************************************************
- */
- /*******************************************************************************
- * P R I V A T E D A T A
- ********************************************************************************
- */
- /*******************************************************************************
- * M A C R O S
- ********************************************************************************
- */
- #define MAXNUM_TDLS_PEER 4
- #define QUEUE_INITIALIZE(prQueue) \
- { \
- (prQueue)->prHead = (P_QUE_ENTRY_T)NULL; \
- (prQueue)->prTail = (P_QUE_ENTRY_T)NULL; \
- (prQueue)->u4NumElem = 0; \
- }
- #define QUEUE_IS_EMPTY(prQueue) (((P_QUE_T)(prQueue))->prHead == (P_QUE_ENTRY_T)NULL)
- #define QUEUE_IS_NOT_EMPTY(prQueue) ((prQueue)->u4NumElem > 0)
- #define QUEUE_GET_HEAD(prQueue) ((prQueue)->prHead)
- #define QUEUE_GET_TAIL(prQueue) ((prQueue)->prTail)
- #define QUEUE_GET_NEXT_ENTRY(prQueueEntry) ((prQueueEntry)->prNext)
- #define QUEUE_INSERT_HEAD(prQueue, prQueueEntry) \
- { \
- ASSERT(prQueue); \
- ASSERT(prQueueEntry); \
- (prQueueEntry)->prNext = (prQueue)->prHead; \
- (prQueue)->prHead = (prQueueEntry); \
- if ((prQueue)->prTail == (P_QUE_ENTRY_T)NULL) { \
- (prQueue)->prTail = (prQueueEntry); \
- } \
- ((prQueue)->u4NumElem)++; \
- }
- #define QUEUE_INSERT_TAIL(prQueue, prQueueEntry) \
- { \
- ASSERT(prQueue); \
- ASSERT(prQueueEntry); \
- (prQueueEntry)->prNext = (P_QUE_ENTRY_T)NULL; \
- if ((prQueue)->prTail) { \
- ((prQueue)->prTail)->prNext = (prQueueEntry); \
- } else { \
- (prQueue)->prHead = (prQueueEntry); \
- } \
- (prQueue)->prTail = (prQueueEntry); \
- ((prQueue)->u4NumElem)++; \
- }
- /* NOTE: We assume the queue entry located at the beginning of "prQueueEntry Type",
- * so that we can cast the queue entry to other data type without doubts.
- * And this macro also decrease the total entry count at the same time.
- */
- #define QUEUE_REMOVE_HEAD(prQueue, prQueueEntry, _P_TYPE) \
- { \
- ASSERT(prQueue); \
- prQueueEntry = (_P_TYPE)((prQueue)->prHead); \
- if (prQueueEntry) { \
- (prQueue)->prHead = ((P_QUE_ENTRY_T)(prQueueEntry))->prNext; \
- if ((prQueue)->prHead == (P_QUE_ENTRY_T)NULL) { \
- (prQueue)->prTail = (P_QUE_ENTRY_T)NULL; \
- } \
- ((P_QUE_ENTRY_T)(prQueueEntry))->prNext = (P_QUE_ENTRY_T)NULL; \
- ((prQueue)->u4NumElem)--; \
- } \
- }
- #define QUEUE_MOVE_ALL(prDestQueue, prSrcQueue) \
- { \
- ASSERT(prDestQueue); \
- ASSERT(prSrcQueue); \
- *(P_QUE_T)prDestQueue = *(P_QUE_T)prSrcQueue; \
- QUEUE_INITIALIZE(prSrcQueue); \
- }
- #define QUEUE_CONCATENATE_QUEUES(prDestQueue, prSrcQueue) \
- { \
- ASSERT(prDestQueue); \
- ASSERT(prSrcQueue); \
- if (prSrcQueue->u4NumElem > 0) { \
- if ((prDestQueue)->prTail) { \
- ((prDestQueue)->prTail)->prNext = (prSrcQueue)->prHead; \
- } else { \
- (prDestQueue)->prHead = (prSrcQueue)->prHead; \
- } \
- (prDestQueue)->prTail = (prSrcQueue)->prTail; \
- ((prDestQueue)->u4NumElem) += ((prSrcQueue)->u4NumElem); \
- QUEUE_INITIALIZE(prSrcQueue); \
- } \
- }
- #define QUEUE_CONCATENATE_QUEUES_HEAD(prDestQueue, prSrcQueue) \
- { \
- ASSERT(prDestQueue); \
- ASSERT(prSrcQueue); \
- if (prSrcQueue->u4NumElem > 0) { \
- ((prSrcQueue)->prTail)->prNext = (prDestQueue)->prHead; \
- (prDestQueue)->prHead = (prSrcQueue)->prHead; \
- ((prDestQueue)->u4NumElem) += ((prSrcQueue)->u4NumElem); \
- if ((prDestQueue)->prTail == NULL) { \
- (prDestQueue)->prTail = (prSrcQueue)->prTail; \
- } \
- QUEUE_INITIALIZE(prSrcQueue); \
- } \
- }
- /*******************************************************************************
- * E X T E R N A L D A T A
- ********************************************************************************
- */
- extern UINT_8 g_arTdlsLink[MAXNUM_TDLS_PEER];
- /*******************************************************************************
- * F U N C T I O N D E C L A R A T I O N S
- ********************************************************************************
- */
- /*******************************************************************************
- * F U N C T I O N S
- ********************************************************************************
- */
- #endif /* _QUEUE_H */
|