123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- typedef enum {
- ENDPOINT_UNUSED = -1,
- ENDPOINT_0 = 0,
- ENDPOINT_1 = 1,
- ENDPOINT_2 = 2,
- ENDPOINT_3,
- ENDPOINT_4,
- ENDPOINT_5,
- ENDPOINT_6,
- ENDPOINT_7,
- ENDPOINT_8,
- ENDPOINT_MAX,
- } HTC_ENDPOINT_ID;
- struct _HTC_PACKET;
- typedef void (*HTC_PACKET_COMPLETION)(void *, struct _HTC_PACKET *);
- typedef uint16_t HTC_TX_TAG;
- typedef struct _HTC_TX_PACKET_INFO {
- HTC_TX_TAG Tag;
- int CreditsUsed;
- uint8_t SendFlags;
- int SeqNo;
- uint32_t Flags;
- } HTC_TX_PACKET_INFO;
- typedef struct _HTC_RX_PACKET_INFO {
- uint32_t ExpectedHdr;
- uint32_t HTCRxFlags;
- uint32_t IndicationFlags;
- } HTC_RX_PACKET_INFO;
- typedef struct _HTC_PACKET {
- DL_LIST ListLink;
- void *pPktContext;
- uint8_t *pBufferStart;
-
- uint8_t *pBuffer;
- uint32_t BufferLength;
- uint32_t ActualLength;
- HTC_ENDPOINT_ID Endpoint;
- A_STATUS Status;
- union {
- HTC_TX_PACKET_INFO AsTx;
- HTC_RX_PACKET_INFO AsRx;
- } PktInfo;
-
- uint32_t netbufOrigHeadRoom;
- HTC_PACKET_COMPLETION Completion;
- void *pContext;
- void *pNetBufContext;
- } HTC_PACKET;
- { \
- (p)->Status = (status); \
- (p)->Completion((p)->pContext, (p)); \
- }
- #define INIT_HTC_PACKET_INFO(p, b, len) \
- { \
- (p)->pBufferStart = (b); \
- (p)->BufferLength = (len); \
- }
- do { \
- (p)->pPktContext = (c); \
- (p)->pBuffer = (b); \
- (p)->pBufferStart = (b); \
- (p)->BufferLength = (len); \
- (p)->Endpoint = (ep); \
- } while (0)
- { (p)->pBuffer = (p)->pBufferStart; (p)->ActualLength = 0; }
- do { \
- (p)->pPktContext = (c); \
- (p)->pBuffer = (b); \
- (p)->ActualLength = (len); \
- (p)->Endpoint = (ep); \
- (p)->PktInfo.AsTx.Tag = (tag); \
- (p)->PktInfo.AsTx.Flags = 0; \
- (p)->PktInfo.AsTx.SendFlags = 0; \
- } while (0)
- do { \
- (p)->pNetBufContext = (nb); \
- } while (0)
- typedef struct _HTC_PACKET_QUEUE {
- DL_LIST QueueHead;
- int Depth;
- } HTC_PACKET_QUEUE;
- { \
- DL_LIST_INIT(&(pQ)->QueueHead); \
- (pQ)->Depth = 0; \
- }
- { dl_list_insert_tail(&(pQ)->QueueHead, &(p)->ListLink); \
- (pQ)->Depth++; \
- }
- { dl_list_insert_head(&(pQ)->QueueHead, &(p)->ListLink); \
- (pQ)->Depth++; \
- }
- static inline HTC_PACKET *htc_get_pkt_at_head(HTC_PACKET_QUEUE *queue)
- {
- if (queue->Depth == 0) {
- return NULL;
- }
- return
- A_CONTAINING_STRUCT((DL_LIST_GET_ITEM_AT_HEAD(&queue->QueueHead)),
- HTC_PACKET, ListLink);
- }
- { \
- dl_list_remove(&(p)->ListLink); \
- (pQ)->Depth--; \
- }
- static inline HTC_PACKET *htc_packet_dequeue(HTC_PACKET_QUEUE *queue)
- {
- DL_LIST *pItem = dl_list_remove_item_from_head(&queue->QueueHead);
- if (pItem != NULL) {
- queue->Depth--;
- return A_CONTAINING_STRUCT(pItem, HTC_PACKET, ListLink);
- }
- return NULL;
- }
- static inline HTC_PACKET *htc_packet_dequeue_tail(HTC_PACKET_QUEUE *queue)
- {
- DL_LIST *pItem = dl_list_remove_item_from_tail(&queue->QueueHead);
- if (pItem != NULL) {
- queue->Depth--;
- return A_CONTAINING_STRUCT(pItem, HTC_PACKET, ListLink);
- }
- return NULL;
- }
- { \
- dl_list_transfer_items_to_tail(&(pQDest)->QueueHead, &(pQSrc)->QueueHead); \
- (pQDest)->Depth += (pQSrc)->Depth; \
- (pQSrc)->Depth = 0; \
- }
- { \
- dl_list_transfer_items_to_head(&(pQDest)->QueueHead, &(pQSrc)->QueueHead); \
- (pQDest)->Depth += (pQSrc)->Depth; \
- (pQSrc)->Depth = 0; \
- }
- { \
- DL_LIST_INIT_AND_ADD(&(pQ)->QueueHead, &(pP)->ListLink) \
- (pQ)->Depth = 1; \
- }
- ITERATE_OVER_LIST_ALLOW_REMOVE(&(pQ)->QueueHead, (pPTemp), HTC_PACKET, ListLink)
- #define HTC_PACKET_QUEUE_ITERATE_IS_VALID(pQ) ITERATE_IS_VALID(&(pQ)->QueueHead)
- #define HTC_PACKET_QUEUE_ITERATE_RESET(pQ) ITERATE_RESET(&(pQ)->QueueHead)
- #define HTC_PACKET_QUEUE_ITERATE_END ITERATE_END
- #endif /*HTC_PACKET_H_ */
|