txrx.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  1. /*
  2. * Copyright (c) 2012-2014 Qualcomm Atheros, Inc.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  11. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. #ifndef WIL6210_TXRX_H
  17. #define WIL6210_TXRX_H
  18. #define BUF_SW_OWNED (1)
  19. #define BUF_HW_OWNED (0)
  20. /* size of max. Tx/Rx buffers, as supported by FW */
  21. #define TXRX_BUF_LEN_DEFAULT (2242)
  22. /* how many bytes to reserve for rtap header? */
  23. #define WIL6210_RTAP_SIZE (128)
  24. /* Tx/Rx path */
  25. /*
  26. * Common representation of physical address in Vring
  27. */
  28. struct vring_dma_addr {
  29. __le32 addr_low;
  30. __le16 addr_high;
  31. } __packed;
  32. static inline dma_addr_t wil_desc_addr(struct vring_dma_addr *addr)
  33. {
  34. return le32_to_cpu(addr->addr_low) |
  35. ((u64)le16_to_cpu(addr->addr_high) << 32);
  36. }
  37. static inline void wil_desc_addr_set(struct vring_dma_addr *addr,
  38. dma_addr_t pa)
  39. {
  40. addr->addr_low = cpu_to_le32(lower_32_bits(pa));
  41. addr->addr_high = cpu_to_le16((u16)upper_32_bits(pa));
  42. }
  43. /*
  44. * Tx descriptor - MAC part
  45. * [dword 0]
  46. * bit 0.. 9 : lifetime_expiry_value:10
  47. * bit 10 : interrup_en:1
  48. * bit 11 : status_en:1
  49. * bit 12..13 : txss_override:2
  50. * bit 14 : timestamp_insertion:1
  51. * bit 15 : duration_preserve:1
  52. * bit 16..21 : reserved0:6
  53. * bit 22..26 : mcs_index:5
  54. * bit 27 : mcs_en:1
  55. * bit 28..29 : reserved1:2
  56. * bit 30 : reserved2:1
  57. * bit 31 : sn_preserved:1
  58. * [dword 1]
  59. * bit 0.. 3 : pkt_mode:4
  60. * bit 4 : pkt_mode_en:1
  61. * bit 5.. 7 : reserved0:3
  62. * bit 8..13 : reserved1:6
  63. * bit 14 : reserved2:1
  64. * bit 15 : ack_policy_en:1
  65. * bit 16..19 : dst_index:4
  66. * bit 20 : dst_index_en:1
  67. * bit 21..22 : ack_policy:2
  68. * bit 23 : lifetime_en:1
  69. * bit 24..30 : max_retry:7
  70. * bit 31 : max_retry_en:1
  71. * [dword 2]
  72. * bit 0.. 7 : num_of_descriptors:8
  73. * bit 8..17 : reserved:10
  74. * bit 18..19 : l2_translation_type:2
  75. * bit 20 : snap_hdr_insertion_en:1
  76. * bit 21 : vlan_removal_en:1
  77. * bit 22..31 : reserved0:10
  78. * [dword 3]
  79. * bit 0.. 31: ucode_cmd:32
  80. */
  81. struct vring_tx_mac {
  82. u32 d[3];
  83. u32 ucode_cmd;
  84. } __packed;
  85. /* TX MAC Dword 0 */
  86. #define MAC_CFG_DESC_TX_0_LIFETIME_EXPIRY_VALUE_POS 0
  87. #define MAC_CFG_DESC_TX_0_LIFETIME_EXPIRY_VALUE_LEN 10
  88. #define MAC_CFG_DESC_TX_0_LIFETIME_EXPIRY_VALUE_MSK 0x3FF
  89. #define MAC_CFG_DESC_TX_0_INTERRUP_EN_POS 10
  90. #define MAC_CFG_DESC_TX_0_INTERRUP_EN_LEN 1
  91. #define MAC_CFG_DESC_TX_0_INTERRUP_EN_MSK 0x400
  92. #define MAC_CFG_DESC_TX_0_STATUS_EN_POS 11
  93. #define MAC_CFG_DESC_TX_0_STATUS_EN_LEN 1
  94. #define MAC_CFG_DESC_TX_0_STATUS_EN_MSK 0x800
  95. #define MAC_CFG_DESC_TX_0_TXSS_OVERRIDE_POS 12
  96. #define MAC_CFG_DESC_TX_0_TXSS_OVERRIDE_LEN 2
  97. #define MAC_CFG_DESC_TX_0_TXSS_OVERRIDE_MSK 0x3000
  98. #define MAC_CFG_DESC_TX_0_TIMESTAMP_INSERTION_POS 14
  99. #define MAC_CFG_DESC_TX_0_TIMESTAMP_INSERTION_LEN 1
  100. #define MAC_CFG_DESC_TX_0_TIMESTAMP_INSERTION_MSK 0x4000
  101. #define MAC_CFG_DESC_TX_0_DURATION_PRESERVE_POS 15
  102. #define MAC_CFG_DESC_TX_0_DURATION_PRESERVE_LEN 1
  103. #define MAC_CFG_DESC_TX_0_DURATION_PRESERVE_MSK 0x8000
  104. #define MAC_CFG_DESC_TX_0_MCS_INDEX_POS 22
  105. #define MAC_CFG_DESC_TX_0_MCS_INDEX_LEN 5
  106. #define MAC_CFG_DESC_TX_0_MCS_INDEX_MSK 0x7C00000
  107. #define MAC_CFG_DESC_TX_0_MCS_EN_POS 27
  108. #define MAC_CFG_DESC_TX_0_MCS_EN_LEN 1
  109. #define MAC_CFG_DESC_TX_0_MCS_EN_MSK 0x8000000
  110. #define MAC_CFG_DESC_TX_0_SN_PRESERVED_POS 31
  111. #define MAC_CFG_DESC_TX_0_SN_PRESERVED_LEN 1
  112. #define MAC_CFG_DESC_TX_0_SN_PRESERVED_MSK 0x80000000
  113. /* TX MAC Dword 1 */
  114. #define MAC_CFG_DESC_TX_1_PKT_MODE_POS 0
  115. #define MAC_CFG_DESC_TX_1_PKT_MODE_LEN 4
  116. #define MAC_CFG_DESC_TX_1_PKT_MODE_MSK 0xF
  117. #define MAC_CFG_DESC_TX_1_PKT_MODE_EN_POS 4
  118. #define MAC_CFG_DESC_TX_1_PKT_MODE_EN_LEN 1
  119. #define MAC_CFG_DESC_TX_1_PKT_MODE_EN_MSK 0x10
  120. #define MAC_CFG_DESC_TX_1_ACK_POLICY_EN_POS 15
  121. #define MAC_CFG_DESC_TX_1_ACK_POLICY_EN_LEN 1
  122. #define MAC_CFG_DESC_TX_1_ACK_POLICY_EN_MSK 0x8000
  123. #define MAC_CFG_DESC_TX_1_DST_INDEX_POS 16
  124. #define MAC_CFG_DESC_TX_1_DST_INDEX_LEN 4
  125. #define MAC_CFG_DESC_TX_1_DST_INDEX_MSK 0xF0000
  126. #define MAC_CFG_DESC_TX_1_DST_INDEX_EN_POS 20
  127. #define MAC_CFG_DESC_TX_1_DST_INDEX_EN_LEN 1
  128. #define MAC_CFG_DESC_TX_1_DST_INDEX_EN_MSK 0x100000
  129. #define MAC_CFG_DESC_TX_1_ACK_POLICY_POS 21
  130. #define MAC_CFG_DESC_TX_1_ACK_POLICY_LEN 2
  131. #define MAC_CFG_DESC_TX_1_ACK_POLICY_MSK 0x600000
  132. #define MAC_CFG_DESC_TX_1_LIFETIME_EN_POS 23
  133. #define MAC_CFG_DESC_TX_1_LIFETIME_EN_LEN 1
  134. #define MAC_CFG_DESC_TX_1_LIFETIME_EN_MSK 0x800000
  135. #define MAC_CFG_DESC_TX_1_MAX_RETRY_POS 24
  136. #define MAC_CFG_DESC_TX_1_MAX_RETRY_LEN 7
  137. #define MAC_CFG_DESC_TX_1_MAX_RETRY_MSK 0x7F000000
  138. #define MAC_CFG_DESC_TX_1_MAX_RETRY_EN_POS 31
  139. #define MAC_CFG_DESC_TX_1_MAX_RETRY_EN_LEN 1
  140. #define MAC_CFG_DESC_TX_1_MAX_RETRY_EN_MSK 0x80000000
  141. /* TX MAC Dword 2 */
  142. #define MAC_CFG_DESC_TX_2_NUM_OF_DESCRIPTORS_POS 0
  143. #define MAC_CFG_DESC_TX_2_NUM_OF_DESCRIPTORS_LEN 8
  144. #define MAC_CFG_DESC_TX_2_NUM_OF_DESCRIPTORS_MSK 0xFF
  145. #define MAC_CFG_DESC_TX_2_RESERVED_POS 8
  146. #define MAC_CFG_DESC_TX_2_RESERVED_LEN 10
  147. #define MAC_CFG_DESC_TX_2_RESERVED_MSK 0x3FF00
  148. #define MAC_CFG_DESC_TX_2_L2_TRANSLATION_TYPE_POS 18
  149. #define MAC_CFG_DESC_TX_2_L2_TRANSLATION_TYPE_LEN 2
  150. #define MAC_CFG_DESC_TX_2_L2_TRANSLATION_TYPE_MSK 0xC0000
  151. #define MAC_CFG_DESC_TX_2_SNAP_HDR_INSERTION_EN_POS 20
  152. #define MAC_CFG_DESC_TX_2_SNAP_HDR_INSERTION_EN_LEN 1
  153. #define MAC_CFG_DESC_TX_2_SNAP_HDR_INSERTION_EN_MSK 0x100000
  154. #define MAC_CFG_DESC_TX_2_VLAN_REMOVAL_EN_POS 21
  155. #define MAC_CFG_DESC_TX_2_VLAN_REMOVAL_EN_LEN 1
  156. #define MAC_CFG_DESC_TX_2_VLAN_REMOVAL_EN_MSK 0x200000
  157. /* TX MAC Dword 3 */
  158. #define MAC_CFG_DESC_TX_3_UCODE_CMD_POS 0
  159. #define MAC_CFG_DESC_TX_3_UCODE_CMD_LEN 32
  160. #define MAC_CFG_DESC_TX_3_UCODE_CMD_MSK 0xFFFFFFFF
  161. /* TX DMA Dword 0 */
  162. #define DMA_CFG_DESC_TX_0_L4_LENGTH_POS 0
  163. #define DMA_CFG_DESC_TX_0_L4_LENGTH_LEN 8
  164. #define DMA_CFG_DESC_TX_0_L4_LENGTH_MSK 0xFF
  165. #define DMA_CFG_DESC_TX_0_CMD_EOP_POS 8
  166. #define DMA_CFG_DESC_TX_0_CMD_EOP_LEN 1
  167. #define DMA_CFG_DESC_TX_0_CMD_EOP_MSK 0x100
  168. #define DMA_CFG_DESC_TX_0_CMD_MARK_WB_POS 9
  169. #define DMA_CFG_DESC_TX_0_CMD_MARK_WB_LEN 1
  170. #define DMA_CFG_DESC_TX_0_CMD_MARK_WB_MSK 0x200
  171. #define DMA_CFG_DESC_TX_0_CMD_DMA_IT_POS 10
  172. #define DMA_CFG_DESC_TX_0_CMD_DMA_IT_LEN 1
  173. #define DMA_CFG_DESC_TX_0_CMD_DMA_IT_MSK 0x400
  174. #define DMA_CFG_DESC_TX_0_SEGMENT_BUF_DETAILS_POS 11
  175. #define DMA_CFG_DESC_TX_0_SEGMENT_BUF_DETAILS_LEN 2
  176. #define DMA_CFG_DESC_TX_0_SEGMENT_BUF_DETAILS_MSK 0x1800
  177. #define DMA_CFG_DESC_TX_0_TCP_SEG_EN_POS 13
  178. #define DMA_CFG_DESC_TX_0_TCP_SEG_EN_LEN 1
  179. #define DMA_CFG_DESC_TX_0_TCP_SEG_EN_MSK 0x2000
  180. #define DMA_CFG_DESC_TX_0_IPV4_CHECKSUM_EN_POS 14
  181. #define DMA_CFG_DESC_TX_0_IPV4_CHECKSUM_EN_LEN 1
  182. #define DMA_CFG_DESC_TX_0_IPV4_CHECKSUM_EN_MSK 0x4000
  183. #define DMA_CFG_DESC_TX_0_TCP_UDP_CHECKSUM_EN_POS 15
  184. #define DMA_CFG_DESC_TX_0_TCP_UDP_CHECKSUM_EN_LEN 1
  185. #define DMA_CFG_DESC_TX_0_TCP_UDP_CHECKSUM_EN_MSK 0x8000
  186. #define DMA_CFG_DESC_TX_0_QID_POS 16
  187. #define DMA_CFG_DESC_TX_0_QID_LEN 5
  188. #define DMA_CFG_DESC_TX_0_QID_MSK 0x1F0000
  189. #define DMA_CFG_DESC_TX_0_PSEUDO_HEADER_CALC_EN_POS 21
  190. #define DMA_CFG_DESC_TX_0_PSEUDO_HEADER_CALC_EN_LEN 1
  191. #define DMA_CFG_DESC_TX_0_PSEUDO_HEADER_CALC_EN_MSK 0x200000
  192. #define DMA_CFG_DESC_TX_0_L4_TYPE_POS 30
  193. #define DMA_CFG_DESC_TX_0_L4_TYPE_LEN 2
  194. #define DMA_CFG_DESC_TX_0_L4_TYPE_MSK 0xC0000000 /* L4 type: 0-UDP, 2-TCP */
  195. #define DMA_CFG_DESC_TX_OFFLOAD_CFG_MAC_LEN_POS 0
  196. #define DMA_CFG_DESC_TX_OFFLOAD_CFG_MAC_LEN_LEN 7
  197. #define DMA_CFG_DESC_TX_OFFLOAD_CFG_MAC_LEN_MSK 0x7F /* MAC hdr len */
  198. #define DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_POS 7
  199. #define DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_LEN 1
  200. #define DMA_CFG_DESC_TX_OFFLOAD_CFG_L3T_IPV4_MSK 0x80 /* 1-IPv4, 0-IPv6 */
  201. #define TX_DMA_STATUS_DU BIT(0)
  202. struct vring_tx_dma {
  203. u32 d0;
  204. struct vring_dma_addr addr;
  205. u8 ip_length;
  206. u8 b11; /* 0..6: mac_length; 7:ip_version */
  207. u8 error; /* 0..2: err; 3..7: reserved; */
  208. u8 status; /* 0: used; 1..7; reserved */
  209. __le16 length;
  210. } __packed;
  211. /*
  212. * Rx descriptor - MAC part
  213. * [dword 0]
  214. * bit 0.. 3 : tid:4 The QoS (b3-0) TID Field
  215. * bit 4.. 6 : connection_id:3 :The Source index that was found during
  216. * Parsing the TA. This field is used to define the source of the packet
  217. * bit 7 : reserved:1
  218. * bit 8.. 9 : mac_id:2 : The MAC virtual Ring number (always zero)
  219. * bit 10..11 : frame_type:2 : The FC Control (b3-2) - MPDU Type
  220. * (management, data, control and extension)
  221. * bit 12..15 : frame_subtype:4 : The FC Control (b7-4) - Frame Subtype
  222. * bit 16..27 : seq_number:12 The received Sequence number field
  223. * bit 28..31 : extended:4 extended subtype
  224. * [dword 1]
  225. * bit 0.. 3 : reserved
  226. * bit 4.. 5 : key_id:2
  227. * bit 6 : decrypt_bypass:1
  228. * bit 7 : security:1
  229. * bit 8.. 9 : ds_bits:2
  230. * bit 10 : a_msdu_present:1 from qos header
  231. * bit 11 : a_msdu_type:1 from qos header
  232. * bit 12 : a_mpdu:1 part of AMPDU aggregation
  233. * bit 13 : broadcast:1
  234. * bit 14 : mutlicast:1
  235. * bit 15 : reserved:1
  236. * bit 16..20 : rx_mac_qid:5 The Queue Identifier that the packet
  237. * is received from
  238. * bit 21..24 : mcs:4
  239. * bit 25..28 : mic_icr:4
  240. * bit 29..31 : reserved:3
  241. * [dword 2]
  242. * bit 0.. 2 : time_slot:3 The timeslot that the MPDU is received
  243. * bit 3 : fc_protocol_ver:1 The FC Control (b0) - Protocol Version
  244. * bit 4 : fc_order:1 The FC Control (b15) -Order
  245. * bit 5.. 7 : qos_ack_policy:3 The QoS (b6-5) ack policy Field
  246. * bit 8 : esop:1 The QoS (b4) ESOP field
  247. * bit 9 : qos_rdg_more_ppdu:1 The QoS (b9) RDG field
  248. * bit 10..14 : qos_reserved:5 The QoS (b14-10) Reserved field
  249. * bit 15 : qos_ac_constraint:1
  250. * bit 16..31 : pn_15_0:16 low 2 bytes of PN
  251. * [dword 3]
  252. * bit 0..31 : pn_47_16:32 high 4 bytes of PN
  253. */
  254. struct vring_rx_mac {
  255. u32 d0;
  256. u32 d1;
  257. u16 w4;
  258. u16 pn_15_0;
  259. u32 pn_47_16;
  260. } __packed;
  261. /*
  262. * Rx descriptor - DMA part
  263. * [dword 0]
  264. * bit 0.. 7 : l4_length:8 layer 4 length
  265. * bit 8.. 9 : reserved:2
  266. * bit 10 : cmd_dma_it:1
  267. * bit 11..15 : reserved:5
  268. * bit 16..29 : phy_info_length:14
  269. * bit 30..31 : l4_type:2 valid if the L4I bit is set in the status field
  270. * [dword 1]
  271. * bit 0..31 : addr_low:32 The payload buffer low address
  272. * [dword 2]
  273. * bit 0..15 : addr_high:16 The payload buffer high address
  274. * bit 16..23 : ip_length:8
  275. * bit 24..30 : mac_length:7
  276. * bit 31 : ip_version:1
  277. * [dword 3]
  278. * [byte 12] error
  279. * [byte 13] status
  280. * bit 0 : du:1
  281. * bit 1 : eop:1
  282. * bit 2 : error:1
  283. * bit 3 : mi:1
  284. * bit 4 : l3_identified:1
  285. * bit 5 : l4_identified:1
  286. * bit 6 : phy_info_included:1
  287. * bit 7 : reserved:1
  288. * [word 7] length
  289. *
  290. */
  291. #define RX_DMA_D0_CMD_DMA_IT BIT(10)
  292. /* Error field, offload bits */
  293. #define RX_DMA_ERROR_L3_ERR BIT(4)
  294. #define RX_DMA_ERROR_L4_ERR BIT(5)
  295. /* Status field */
  296. #define RX_DMA_STATUS_DU BIT(0)
  297. #define RX_DMA_STATUS_ERROR BIT(2)
  298. #define RX_DMA_STATUS_L3_IDENT BIT(4)
  299. #define RX_DMA_STATUS_L4_IDENT BIT(5)
  300. #define RX_DMA_STATUS_PHY_INFO BIT(6)
  301. struct vring_rx_dma {
  302. u32 d0;
  303. struct vring_dma_addr addr;
  304. u8 ip_length;
  305. u8 b11;
  306. u8 error;
  307. u8 status;
  308. __le16 length;
  309. } __packed;
  310. struct vring_tx_desc {
  311. struct vring_tx_mac mac;
  312. struct vring_tx_dma dma;
  313. } __packed;
  314. struct vring_rx_desc {
  315. struct vring_rx_mac mac;
  316. struct vring_rx_dma dma;
  317. } __packed;
  318. union vring_desc {
  319. struct vring_tx_desc tx;
  320. struct vring_rx_desc rx;
  321. } __packed;
  322. static inline int wil_rxdesc_tid(struct vring_rx_desc *d)
  323. {
  324. return WIL_GET_BITS(d->mac.d0, 0, 3);
  325. }
  326. static inline int wil_rxdesc_cid(struct vring_rx_desc *d)
  327. {
  328. return WIL_GET_BITS(d->mac.d0, 4, 6);
  329. }
  330. static inline int wil_rxdesc_mid(struct vring_rx_desc *d)
  331. {
  332. return WIL_GET_BITS(d->mac.d0, 8, 9);
  333. }
  334. static inline int wil_rxdesc_ftype(struct vring_rx_desc *d)
  335. {
  336. return WIL_GET_BITS(d->mac.d0, 10, 11);
  337. }
  338. static inline int wil_rxdesc_subtype(struct vring_rx_desc *d)
  339. {
  340. return WIL_GET_BITS(d->mac.d0, 12, 15);
  341. }
  342. static inline int wil_rxdesc_seq(struct vring_rx_desc *d)
  343. {
  344. return WIL_GET_BITS(d->mac.d0, 16, 27);
  345. }
  346. static inline int wil_rxdesc_ext_subtype(struct vring_rx_desc *d)
  347. {
  348. return WIL_GET_BITS(d->mac.d0, 28, 31);
  349. }
  350. static inline int wil_rxdesc_ds_bits(struct vring_rx_desc *d)
  351. {
  352. return WIL_GET_BITS(d->mac.d1, 8, 9);
  353. }
  354. static inline int wil_rxdesc_mcs(struct vring_rx_desc *d)
  355. {
  356. return WIL_GET_BITS(d->mac.d1, 21, 24);
  357. }
  358. static inline int wil_rxdesc_phy_length(struct vring_rx_desc *d)
  359. {
  360. return WIL_GET_BITS(d->dma.d0, 16, 29);
  361. }
  362. static inline struct vring_rx_desc *wil_skb_rxdesc(struct sk_buff *skb)
  363. {
  364. return (void *)skb->cb;
  365. }
  366. void wil_netif_rx_any(struct sk_buff *skb, struct net_device *ndev);
  367. void wil_rx_reorder(struct wil6210_priv *wil, struct sk_buff *skb);
  368. struct wil_tid_ampdu_rx *wil_tid_ampdu_rx_alloc(struct wil6210_priv *wil,
  369. int size, u16 ssn);
  370. void wil_tid_ampdu_rx_free(struct wil6210_priv *wil,
  371. struct wil_tid_ampdu_rx *r);
  372. #endif /* WIL6210_TXRX_H */