htc_packet.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. /*
  2. * Copyright (c) 2013-2014, 2016-2017, 2019 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #ifndef HTC_PACKET_H_
  19. #define HTC_PACKET_H_
  20. #include <osdep.h>
  21. #include "dl_list.h"
  22. /* ------ Endpoint IDS ------ */
  23. typedef enum {
  24. ENDPOINT_UNUSED = -1,
  25. ENDPOINT_0 = 0,
  26. ENDPOINT_1 = 1,
  27. ENDPOINT_2 = 2,
  28. ENDPOINT_3,
  29. ENDPOINT_4,
  30. ENDPOINT_5,
  31. ENDPOINT_6,
  32. ENDPOINT_7,
  33. ENDPOINT_8,
  34. ENDPOINT_MAX,
  35. } HTC_ENDPOINT_ID;
  36. struct _HTC_PACKET;
  37. typedef void (*HTC_PACKET_COMPLETION)(void *, struct _HTC_PACKET *);
  38. typedef uint16_t HTC_TX_TAG;
  39. /**
  40. * struct htc_tx_packet_info - HTC TX packet information
  41. * @Tag: tag used to selective flush packets
  42. * @CreditsUsed: number of credits used for this TX packet (HTC internal)
  43. * @SendFlags: send flags (HTC internal)
  44. * @SeqNo: internal seq no for debugging (HTC internal)
  45. * @Flags: Internal use
  46. */
  47. struct htc_tx_packet_info {
  48. HTC_TX_TAG Tag;
  49. int CreditsUsed;
  50. uint8_t SendFlags;
  51. int SeqNo;
  52. uint32_t Flags;
  53. };
  54. /**
  55. * HTC_TX_PACKET_TAG_XXX - #defines for tagging packets for special handling
  56. * HTC_TX_PACKET_TAG_ALL: zero is reserved and used to flush ALL packets
  57. * HTC_TX_PACKET_TAG_INTERNAL: internal tags start here
  58. * HTC_TX_PACKET_TAG_USER_DEFINED: user-defined tags start here
  59. * HTC_TX_PACKET_TAG_BUNDLED: indicate this is a bundled tx packet
  60. * HTC_TX_PACKET_TAG_AUTO_PM: indicate a power management wmi command
  61. */
  62. #define HTC_TX_PACKET_TAG_ALL 0
  63. #define HTC_TX_PACKET_TAG_INTERNAL 1
  64. #define HTC_TX_PACKET_TAG_USER_DEFINED (HTC_TX_PACKET_TAG_INTERNAL + 9)
  65. #define HTC_TX_PACKET_TAG_BUNDLED (HTC_TX_PACKET_TAG_USER_DEFINED + 1)
  66. #define HTC_TX_PACKET_TAG_AUTO_PM (HTC_TX_PACKET_TAG_USER_DEFINED + 2)
  67. /* Tag packet for runtime put after sending */
  68. #define HTC_TX_PACKET_TAG_RUNTIME_PUT (HTC_TX_PACKET_TAG_USER_DEFINED + 3)
  69. #define HTC_TX_PACKET_FLAG_FIXUP_NETBUF (1 << 0)
  70. #define HTC_TX_PACKET_FLAG_HTC_HEADER_IN_NETBUF_DATA (1 << 1)
  71. /**
  72. * struct htc_rx_packet_info - HTC RX Packet information
  73. * @ExpectedHdr: HTC Internal use
  74. * @HTCRxFlags: HTC Internal use
  75. * @IndicationFlags: indication flags set on each RX packet indication
  76. */
  77. struct htc_rx_packet_info {
  78. uint32_t ExpectedHdr;
  79. uint32_t HTCRxFlags;
  80. uint32_t IndicationFlags;
  81. };
  82. /* more packets on this endpoint are being fetched */
  83. #define HTC_RX_FLAGS_INDICATE_MORE_PKTS (1 << 0)
  84. #define HTC_PACKET_MAGIC_COOKIE 0xdeadbeef
  85. /* wrapper around endpoint-specific packets */
  86. /**
  87. * struct _HTC_PACKET - HTC Packet data structure
  88. * @ListLink: double link
  89. * @pPktContext: caller's per packet specific context
  90. * @pBufferStart: The true buffer start, the caller can store the real buffer
  91. * start here. In receive callbacks, the HTC layer sets pBuffer
  92. * to the start of the payload past the header. This field allows
  93. * the caller to reset pBuffer when it recycles receive packets
  94. * back to HTC
  95. * @pBuffer: payload start (RX/TX)
  96. * @BufferLength: length of buffer
  97. * @ActualLength: actual length of payload
  98. * @Endpoint: endpoint that this packet was sent/recv'd from
  99. * @Status: completion status
  100. * @PktInfo: Packet specific info
  101. * @netbufOrigHeadRoom: Original head room of skb
  102. * @Completion: completion
  103. * @pContext: HTC private completion context
  104. * @pNetBufContext: optimization for network-oriented data, the HTC packet can
  105. * pass the network buffer corresponding to the HTC packet
  106. * lower layers may optimized the transfer knowing this is a
  107. * network buffer
  108. * @magic_cookie: HTC Magic cookie
  109. */
  110. typedef struct _HTC_PACKET {
  111. DL_LIST ListLink;
  112. void *pPktContext;
  113. uint8_t *pBufferStart;
  114. /*
  115. * Pointer to the start of the buffer. In the transmit
  116. * direction this points to the start of the payload. In the
  117. * receive direction, however, the buffer when queued up
  118. * points to the start of the HTC header but when returned
  119. * to the caller points to the start of the payload
  120. */
  121. uint8_t *pBuffer;
  122. uint32_t BufferLength;
  123. uint32_t ActualLength;
  124. HTC_ENDPOINT_ID Endpoint;
  125. QDF_STATUS Status;
  126. union {
  127. struct htc_tx_packet_info AsTx;
  128. struct htc_rx_packet_info AsRx;
  129. } PktInfo;
  130. /* the following fields are for internal HTC use */
  131. uint32_t netbufOrigHeadRoom;
  132. HTC_PACKET_COMPLETION Completion;
  133. void *pContext;
  134. void *pNetBufContext;
  135. uint32_t magic_cookie;
  136. } HTC_PACKET;
  137. #define COMPLETE_HTC_PACKET(p, status) \
  138. { \
  139. (p)->Status = (status); \
  140. (p)->Completion((p)->pContext, (p)); \
  141. }
  142. #define INIT_HTC_PACKET_INFO(p, b, len) \
  143. { \
  144. (p)->pBufferStart = (b); \
  145. (p)->BufferLength = (len); \
  146. }
  147. /* macro to set an initial RX packet for refilling HTC */
  148. #define SET_HTC_PACKET_INFO_RX_REFILL(p, c, b, len, ep) \
  149. do { \
  150. (p)->pPktContext = (c); \
  151. (p)->pBuffer = (b); \
  152. (p)->pBufferStart = (b); \
  153. (p)->BufferLength = (len); \
  154. (p)->Endpoint = (ep); \
  155. } while (0)
  156. /* fast macro to recycle an RX packet that will be re-queued to HTC */
  157. #define HTC_PACKET_RESET_RX(p) \
  158. { (p)->pBuffer = (p)->pBufferStart; (p)->ActualLength = 0; }
  159. /* macro to set packet parameters for TX */
  160. #define SET_HTC_PACKET_INFO_TX(p, c, b, len, ep, tag) \
  161. do { \
  162. (p)->pPktContext = (c); \
  163. (p)->pBuffer = (b); \
  164. (p)->ActualLength = (len); \
  165. (p)->Endpoint = (ep); \
  166. (p)->PktInfo.AsTx.Tag = (tag); \
  167. (p)->PktInfo.AsTx.Flags = 0; \
  168. (p)->PktInfo.AsTx.SendFlags = 0; \
  169. } while (0)
  170. #define SET_HTC_PACKET_NET_BUF_CONTEXT(p, nb) \
  171. { \
  172. (p)->pNetBufContext = (nb); \
  173. }
  174. #define GET_HTC_PACKET_NET_BUF_CONTEXT(p) (p)->pNetBufContext
  175. /* HTC Packet Queueing Macros */
  176. typedef struct _HTC_PACKET_QUEUE {
  177. DL_LIST QueueHead;
  178. int Depth;
  179. } HTC_PACKET_QUEUE;
  180. /* initialize queue */
  181. #define INIT_HTC_PACKET_QUEUE(pQ) \
  182. { \
  183. DL_LIST_INIT(&(pQ)->QueueHead); \
  184. (pQ)->Depth = 0; \
  185. }
  186. /* enqueue HTC packet to the tail of the queue */
  187. #define HTC_PACKET_ENQUEUE(pQ, p) \
  188. { dl_list_insert_tail(&(pQ)->QueueHead, &(p)->ListLink); \
  189. (pQ)->Depth++; \
  190. }
  191. /* enqueue HTC packet to the tail of the queue */
  192. #define HTC_PACKET_ENQUEUE_TO_HEAD(pQ, p) \
  193. { dl_list_insert_head(&(pQ)->QueueHead, &(p)->ListLink); \
  194. (pQ)->Depth++; \
  195. }
  196. /* test if a queue is empty */
  197. #define HTC_QUEUE_EMPTY(pQ) ((pQ)->Depth == 0)
  198. /* get packet at head without removing it */
  199. static inline HTC_PACKET *htc_get_pkt_at_head(HTC_PACKET_QUEUE *queue)
  200. {
  201. if (queue->Depth == 0)
  202. return NULL;
  203. return A_CONTAINING_STRUCT((DL_LIST_GET_ITEM_AT_HEAD(
  204. &queue->QueueHead)),
  205. HTC_PACKET, ListLink);
  206. }
  207. /* remove a packet from a queue, where-ever it is in the queue */
  208. #define HTC_PACKET_REMOVE(pQ, p) \
  209. { \
  210. dl_list_remove(&(p)->ListLink); \
  211. (pQ)->Depth--; \
  212. }
  213. /* dequeue an HTC packet from the head of the queue */
  214. static inline HTC_PACKET *htc_packet_dequeue(HTC_PACKET_QUEUE *queue)
  215. {
  216. DL_LIST *pItem = dl_list_remove_item_from_head(&queue->QueueHead);
  217. if (pItem) {
  218. queue->Depth--;
  219. return A_CONTAINING_STRUCT(pItem, HTC_PACKET, ListLink);
  220. }
  221. return NULL;
  222. }
  223. /* dequeue an HTC packet from the tail of the queue */
  224. static inline HTC_PACKET *htc_packet_dequeue_tail(HTC_PACKET_QUEUE *queue)
  225. {
  226. DL_LIST *pItem = dl_list_remove_item_from_tail(&queue->QueueHead);
  227. if (pItem) {
  228. queue->Depth--;
  229. return A_CONTAINING_STRUCT(pItem, HTC_PACKET, ListLink);
  230. }
  231. return NULL;
  232. }
  233. #define HTC_PACKET_QUEUE_DEPTH(pQ) (pQ)->Depth
  234. #define HTC_GET_ENDPOINT_FROM_PKT(p) (p)->Endpoint
  235. #define HTC_GET_TAG_FROM_PKT(p) (p)->PktInfo.AsTx.Tag
  236. /* transfer the packets from one queue to the tail of another queue */
  237. #define HTC_PACKET_QUEUE_TRANSFER_TO_TAIL(pQDest, pQSrc) \
  238. { \
  239. dl_list_transfer_items_to_tail(&(pQDest)->QueueHead, \
  240. &(pQSrc)->QueueHead); \
  241. (pQDest)->Depth += (pQSrc)->Depth; \
  242. (pQSrc)->Depth = 0; \
  243. }
  244. /*
  245. * Transfer the packets from one queue to the head of another queue.
  246. * This xfer_to_head(q1,q2) is basically equivalent to xfer_to_tail(q2,q1),
  247. * but it updates the queue descriptor object for the initial queue to refer
  248. * to the concatenated queue.
  249. */
  250. #define HTC_PACKET_QUEUE_TRANSFER_TO_HEAD(pQDest, pQSrc) \
  251. { \
  252. dl_list_transfer_items_to_head(&(pQDest)->QueueHead, \
  253. &(pQSrc)->QueueHead); \
  254. (pQDest)->Depth += (pQSrc)->Depth; \
  255. (pQSrc)->Depth = 0; \
  256. }
  257. /* fast version to init and add a single packet to a queue */
  258. #define INIT_HTC_PACKET_QUEUE_AND_ADD(pQ, pP) \
  259. { \
  260. DL_LIST_INIT_AND_ADD(&(pQ)->QueueHead, &(pP)->ListLink) \
  261. (pQ)->Depth = 1; \
  262. }
  263. #define HTC_PACKET_QUEUE_ITERATE_ALLOW_REMOVE(pQ, pPTemp) \
  264. ITERATE_OVER_LIST_ALLOW_REMOVE(&(pQ)->QueueHead, \
  265. (pPTemp), HTC_PACKET, ListLink)
  266. #define HTC_PACKET_QUEUE_ITERATE_IS_VALID(pQ) ITERATE_IS_VALID(&(pQ)->QueueHead)
  267. #define HTC_PACKET_QUEUE_ITERATE_RESET(pQ) ITERATE_RESET(&(pQ)->QueueHead)
  268. #define HTC_PACKET_QUEUE_ITERATE_END ITERATE_END
  269. /**
  270. * htc_packet_set_magic_cookie() - set magic cookie in htc packet
  271. * htc_pkt - pointer to htc packet
  272. * value - value to set in magic cookie
  273. *
  274. * This API sets the magic cookie passed in htc packet.
  275. *
  276. * Return : None
  277. */
  278. static inline void htc_packet_set_magic_cookie(HTC_PACKET *htc_pkt,
  279. uint32_t value)
  280. {
  281. htc_pkt->magic_cookie = value;
  282. }
  283. /**
  284. * htc_packet_set_magic_cookie() - get magic cookie in htc packet
  285. * htc_pkt - pointer to htc packet
  286. *
  287. * This API returns the magic cookie in htc packet.
  288. *
  289. * Return : magic cookie
  290. */
  291. static inline uint32_t htc_packet_get_magic_cookie(HTC_PACKET *htc_pkt)
  292. {
  293. return htc_pkt->magic_cookie;
  294. }
  295. #endif /*HTC_PACKET_H_ */