123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- /*
- * Copyright (c) 2013-2014, 2016 The Linux Foundation. All rights reserved.
- *
- * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
- *
- *
- * Permission to use, copy, modify, and/or distribute this software for
- * any purpose with or without fee is hereby granted, provided that the
- * above copyright notice and this permission notice appear in all
- * copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
- * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
- * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
- * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
- /*
- * This file was originally distributed by Qualcomm Atheros, Inc.
- * under proprietary terms before Copyright ownership was assigned
- * to the Linux Foundation.
- */
- #ifndef HTC_PACKET_H_
- #define HTC_PACKET_H_
- #include <osdep.h>
- #include "dl_list.h"
- /* ------ Endpoint IDS ------ */
- 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; /* tag used to selective flush packets */
- int CreditsUsed; /* number of credits used for this TX packet (HTC internal) */
- uint8_t SendFlags; /* send flags (HTC internal) */
- int SeqNo; /* internal seq no for debugging (HTC internal) */
- uint32_t Flags; /* internal use */
- } HTC_TX_PACKET_INFO;
- /**
- * HTC_TX_PACKET_TAG_XXX - #defines for tagging packets for special handling
- * HTC_TX_PACKET_TAG_ALL: zero is reserved and used to flush ALL packets
- * HTC_TX_PACKET_TAG_INTERNAL: internal tags start here
- * HTC_TX_PACKET_TAG_USER_DEFINED: user-defined tags start here
- * HTC_TX_PACKET_TAG_BUNDLED: indicate this is a bundled tx packet
- * HTC_TX_PACKET_TAG_AUTO_PM: indicate a power management wmi command
- */
- #define HTC_TX_PACKET_TAG_ALL 0
- #define HTC_TX_PACKET_TAG_INTERNAL 1
- #define HTC_TX_PACKET_TAG_USER_DEFINED (HTC_TX_PACKET_TAG_INTERNAL + 9)
- #define HTC_TX_PACKET_TAG_BUNDLED (HTC_TX_PACKET_TAG_USER_DEFINED + 1)
- #define HTC_TX_PACKET_TAG_AUTO_PM (HTC_TX_PACKET_TAG_USER_DEFINED + 2)
- /* Tag packet for runtime put after sending */
- #define HTC_TX_PACKET_TAG_RUNTIME_PUT (HTC_TX_PACKET_TAG_USER_DEFINED + 3)
- #define HTC_TX_PACKET_FLAG_FIXUP_NETBUF (1 << 0)
- typedef struct _HTC_RX_PACKET_INFO {
- uint32_t ExpectedHdr; /* HTC internal use */
- uint32_t HTCRxFlags; /* HTC internal use */
- uint32_t IndicationFlags; /* indication flags set on each RX packet indication */
- } HTC_RX_PACKET_INFO;
- #define HTC_RX_FLAGS_INDICATE_MORE_PKTS (1 << 0) /* more packets on this endpoint are being fetched */
- /* wrapper around endpoint-specific packets */
- typedef struct _HTC_PACKET {
- DL_LIST ListLink; /* double link */
- void *pPktContext; /* caller's per packet specific context */
- uint8_t *pBufferStart; /* the true buffer start , the caller can
- store the real buffer start here. In
- receive callbacks, the HTC layer sets pBuffer
- to the start of the payload past the header. This
- field allows the caller to reset pBuffer when it
- recycles receive packets back to HTC */
- /*
- * Pointer to the start of the buffer. In the transmit
- * direction this points to the start of the payload. In the
- * receive direction, however, the buffer when queued up
- * points to the start of the HTC header but when returned
- * to the caller points to the start of the payload
- */
- uint8_t *pBuffer; /* payload start (RX/TX) */
- uint32_t BufferLength; /* length of buffer */
- uint32_t ActualLength; /* actual length of payload */
- HTC_ENDPOINT_ID Endpoint; /* endpoint that this packet was sent/recv'd from */
- A_STATUS Status; /* completion status */
- union {
- HTC_TX_PACKET_INFO AsTx; /* Tx Packet specific info */
- HTC_RX_PACKET_INFO AsRx; /* Rx Packet specific info */
- } PktInfo;
- /* the following fields are for internal HTC use */
- uint32_t netbufOrigHeadRoom;
- HTC_PACKET_COMPLETION Completion; /* completion */
- void *pContext; /* HTC private completion context */
- void *pNetBufContext; /* optimization for network-oriented data, the HTC packet
- can pass the network buffer corresponding to the HTC packet
- lower layers may optimized the transfer knowing this is
- a network buffer */
- } HTC_PACKET;
- #define COMPLETE_HTC_PACKET(p, status) \
- { \
- (p)->Status = (status); \
- (p)->Completion((p)->pContext, (p)); \
- }
- #define INIT_HTC_PACKET_INFO(p, b, len) \
- { \
- (p)->pBufferStart = (b); \
- (p)->BufferLength = (len); \
- }
- /* macro to set an initial RX packet for refilling HTC */
- #define SET_HTC_PACKET_INFO_RX_REFILL(p, c, b, len, ep) \
- do { \
- (p)->pPktContext = (c); \
- (p)->pBuffer = (b); \
- (p)->pBufferStart = (b); \
- (p)->BufferLength = (len); \
- (p)->Endpoint = (ep); \
- } while (0)
- /* fast macro to recycle an RX packet that will be re-queued to HTC */
- #define HTC_PACKET_RESET_RX(p) \
- { (p)->pBuffer = (p)->pBufferStart; (p)->ActualLength = 0; }
- /* macro to set packet parameters for TX */
- #define SET_HTC_PACKET_INFO_TX(p, c, b, len, ep, tag) \
- 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)
- #define SET_HTC_PACKET_NET_BUF_CONTEXT(p, nb) \
- do { \
- (p)->pNetBufContext = (nb); \
- } while (0)
- #define GET_HTC_PACKET_NET_BUF_CONTEXT(p) (p)->pNetBufContext
- /* HTC Packet Queueing Macros */
- typedef struct _HTC_PACKET_QUEUE {
- DL_LIST QueueHead;
- int Depth;
- } HTC_PACKET_QUEUE;
- /* initialize queue */
- #define INIT_HTC_PACKET_QUEUE(pQ) \
- { \
- DL_LIST_INIT(&(pQ)->QueueHead); \
- (pQ)->Depth = 0; \
- }
- /* enqueue HTC packet to the tail of the queue */
- #define HTC_PACKET_ENQUEUE(pQ, p) \
- { dl_list_insert_tail(&(pQ)->QueueHead, &(p)->ListLink); \
- (pQ)->Depth++; \
- }
- /* enqueue HTC packet to the tail of the queue */
- #define HTC_PACKET_ENQUEUE_TO_HEAD(pQ, p) \
- { dl_list_insert_head(&(pQ)->QueueHead, &(p)->ListLink); \
- (pQ)->Depth++; \
- }
- /* test if a queue is empty */
- #define HTC_QUEUE_EMPTY(pQ) ((pQ)->Depth == 0)
- /* get packet at head without removing it */
- 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);
- }
- /* remove a packet from a queue, where-ever it is in the queue */
- #define HTC_PACKET_REMOVE(pQ, p) \
- { \
- dl_list_remove(&(p)->ListLink); \
- (pQ)->Depth--; \
- }
- /* dequeue an HTC packet from the head of the queue */
- 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;
- }
- /* dequeue an HTC packet from the tail of the queue */
- 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;
- }
- #define HTC_PACKET_QUEUE_DEPTH(pQ) (pQ)->Depth
- #define HTC_GET_ENDPOINT_FROM_PKT(p) (p)->Endpoint
- #define HTC_GET_TAG_FROM_PKT(p) (p)->PktInfo.AsTx.Tag
- /* transfer the packets from one queue to the tail of another queue */
- #define HTC_PACKET_QUEUE_TRANSFER_TO_TAIL(pQDest, pQSrc) \
- { \
- dl_list_transfer_items_to_tail(&(pQDest)->QueueHead, &(pQSrc)->QueueHead); \
- (pQDest)->Depth += (pQSrc)->Depth; \
- (pQSrc)->Depth = 0; \
- }
- /*
- * Transfer the packets from one queue to the head of another queue.
- * This xfer_to_head(q1,q2) is basically equivalent to xfer_to_tail(q2,q1),
- * but it updates the queue descriptor object for the initial queue to refer
- * to the concatenated queue.
- */
- #define HTC_PACKET_QUEUE_TRANSFER_TO_HEAD(pQDest, pQSrc) \
- { \
- dl_list_transfer_items_to_head(&(pQDest)->QueueHead, &(pQSrc)->QueueHead); \
- (pQDest)->Depth += (pQSrc)->Depth; \
- (pQSrc)->Depth = 0; \
- }
- /* fast version to init and add a single packet to a queue */
- #define INIT_HTC_PACKET_QUEUE_AND_ADD(pQ, pP) \
- { \
- DL_LIST_INIT_AND_ADD(&(pQ)->QueueHead, &(pP)->ListLink) \
- (pQ)->Depth = 1; \
- }
- #define HTC_PACKET_QUEUE_ITERATE_ALLOW_REMOVE(pQ, pPTemp) \
- 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_ */
|