tx.h 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. /*
  2. * This file is part of wl1271
  3. *
  4. * Copyright (C) 1998-2009 Texas Instruments. All rights reserved.
  5. * Copyright (C) 2009 Nokia Corporation
  6. *
  7. * Contact: Luciano Coelho <luciano.coelho@nokia.com>
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * version 2 as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  21. * 02110-1301 USA
  22. *
  23. */
  24. #ifndef __TX_H__
  25. #define __TX_H__
  26. #define TX_HW_MGMT_PKT_LIFETIME_TU 2000
  27. #define TX_HW_AP_MODE_PKT_LIFETIME_TU 8000
  28. #define TX_HW_ATTR_SAVE_RETRIES BIT(0)
  29. #define TX_HW_ATTR_HEADER_PAD BIT(1)
  30. #define TX_HW_ATTR_SESSION_COUNTER (BIT(2) | BIT(3) | BIT(4))
  31. #define TX_HW_ATTR_RATE_POLICY (BIT(5) | BIT(6) | BIT(7) | \
  32. BIT(8) | BIT(9))
  33. #define TX_HW_ATTR_LAST_WORD_PAD (BIT(10) | BIT(11))
  34. #define TX_HW_ATTR_TX_CMPLT_REQ BIT(12)
  35. #define TX_HW_ATTR_TX_DUMMY_REQ BIT(13)
  36. #define TX_HW_ATTR_HOST_ENCRYPT BIT(14)
  37. #define TX_HW_ATTR_EAPOL_FRAME BIT(15)
  38. #define TX_HW_ATTR_OFST_SAVE_RETRIES 0
  39. #define TX_HW_ATTR_OFST_HEADER_PAD 1
  40. #define TX_HW_ATTR_OFST_SESSION_COUNTER 2
  41. #define TX_HW_ATTR_OFST_RATE_POLICY 5
  42. #define TX_HW_ATTR_OFST_LAST_WORD_PAD 10
  43. #define TX_HW_ATTR_OFST_TX_CMPLT_REQ 12
  44. #define TX_HW_RESULT_QUEUE_LEN 16
  45. #define TX_HW_RESULT_QUEUE_LEN_MASK 0xf
  46. #define WL1271_TX_ALIGN_TO 4
  47. #define WL1271_EXTRA_SPACE_TKIP 4
  48. #define WL1271_EXTRA_SPACE_AES 8
  49. #define WL1271_EXTRA_SPACE_MAX 8
  50. /* Used for management frames and dummy packets */
  51. #define WL1271_TID_MGMT 7
  52. /* stop a ROC for pending authentication reply after this time (ms) */
  53. #define WLCORE_PEND_AUTH_ROC_TIMEOUT 1000
  54. struct wl127x_tx_mem {
  55. /*
  56. * Number of extra memory blocks to allocate for this packet
  57. * in addition to the number of blocks derived from the packet
  58. * length.
  59. */
  60. u8 extra_blocks;
  61. /*
  62. * Total number of memory blocks allocated by the host for
  63. * this packet. Must be equal or greater than the actual
  64. * blocks number allocated by HW.
  65. */
  66. u8 total_mem_blocks;
  67. } __packed;
  68. struct wl128x_tx_mem {
  69. /*
  70. * Total number of memory blocks allocated by the host for
  71. * this packet.
  72. */
  73. u8 total_mem_blocks;
  74. /*
  75. * Number of extra bytes, at the end of the frame. the host
  76. * uses this padding to complete each frame to integer number
  77. * of SDIO blocks.
  78. */
  79. u8 extra_bytes;
  80. } __packed;
  81. struct wl18xx_tx_mem {
  82. /*
  83. * Total number of memory blocks allocated by the host for
  84. * this packet.
  85. */
  86. u8 total_mem_blocks;
  87. /*
  88. * control bits
  89. */
  90. u8 ctrl;
  91. } __packed;
  92. /*
  93. * On wl128x based devices, when TX packets are aggregated, each packet
  94. * size must be aligned to the SDIO block size. The maximum block size
  95. * is bounded by the type of the padded bytes field that is sent to the
  96. * FW. Currently the type is u8, so the maximum block size is 256 bytes.
  97. */
  98. #define WL12XX_BUS_BLOCK_SIZE min(512u, \
  99. (1u << (8 * sizeof(((struct wl128x_tx_mem *) 0)->extra_bytes))))
  100. struct wl1271_tx_hw_descr {
  101. /* Length of packet in words, including descriptor+header+data */
  102. __le16 length;
  103. union {
  104. struct wl127x_tx_mem wl127x_mem;
  105. struct wl128x_tx_mem wl128x_mem;
  106. struct wl18xx_tx_mem wl18xx_mem;
  107. } __packed;
  108. /* Device time (in us) when the packet arrived to the driver */
  109. __le32 start_time;
  110. /*
  111. * Max delay in TUs until transmission. The last device time the
  112. * packet can be transmitted is: start_time + (1024 * life_time)
  113. */
  114. __le16 life_time;
  115. /* Bitwise fields - see TX_ATTR... definitions above. */
  116. __le16 tx_attr;
  117. /* Packet identifier used also in the Tx-Result. */
  118. u8 id;
  119. /* The packet TID value (as User-Priority) */
  120. u8 tid;
  121. /* host link ID (HLID) */
  122. u8 hlid;
  123. union {
  124. u8 wl12xx_reserved;
  125. /*
  126. * bit 0 -> 0 = udp, 1 = tcp
  127. * bit 1:7 -> IP header offset
  128. */
  129. u8 wl18xx_checksum_data;
  130. } __packed;
  131. } __packed;
  132. enum wl1271_tx_hw_res_status {
  133. TX_SUCCESS = 0,
  134. TX_HW_ERROR = 1,
  135. TX_DISABLED = 2,
  136. TX_RETRY_EXCEEDED = 3,
  137. TX_TIMEOUT = 4,
  138. TX_KEY_NOT_FOUND = 5,
  139. TX_PEER_NOT_FOUND = 6,
  140. TX_SESSION_MISMATCH = 7,
  141. TX_LINK_NOT_VALID = 8,
  142. };
  143. struct wl1271_tx_hw_res_descr {
  144. /* Packet Identifier - same value used in the Tx descriptor.*/
  145. u8 id;
  146. /* The status of the transmission, indicating success or one of
  147. several possible reasons for failure. */
  148. u8 status;
  149. /* Total air access duration including all retrys and overheads.*/
  150. __le16 medium_usage;
  151. /* The time passed from host xfer to Tx-complete.*/
  152. __le32 fw_handling_time;
  153. /* Total media delay
  154. (from 1st EDCA AIFS counter until TX Complete). */
  155. __le32 medium_delay;
  156. /* LS-byte of last TKIP seq-num (saved per AC for recovery). */
  157. u8 tx_security_sequence_number_lsb;
  158. /* Retry count - number of transmissions without successful ACK.*/
  159. u8 ack_failures;
  160. /* The rate that succeeded getting ACK
  161. (Valid only if status=SUCCESS). */
  162. u8 rate_class_index;
  163. /* for 4-byte alignment. */
  164. u8 spare;
  165. } __packed;
  166. struct wl1271_tx_hw_res_if {
  167. __le32 tx_result_fw_counter;
  168. __le32 tx_result_host_counter;
  169. struct wl1271_tx_hw_res_descr tx_results_queue[TX_HW_RESULT_QUEUE_LEN];
  170. } __packed;
  171. enum wlcore_queue_stop_reason {
  172. WLCORE_QUEUE_STOP_REASON_WATERMARK,
  173. WLCORE_QUEUE_STOP_REASON_FW_RESTART,
  174. WLCORE_QUEUE_STOP_REASON_FLUSH,
  175. WLCORE_QUEUE_STOP_REASON_SPARE_BLK, /* 18xx specific */
  176. };
  177. static inline int wl1271_tx_get_queue(int queue)
  178. {
  179. switch (queue) {
  180. case 0:
  181. return CONF_TX_AC_VO;
  182. case 1:
  183. return CONF_TX_AC_VI;
  184. case 2:
  185. return CONF_TX_AC_BE;
  186. case 3:
  187. return CONF_TX_AC_BK;
  188. default:
  189. return CONF_TX_AC_BE;
  190. }
  191. }
  192. static inline
  193. int wlcore_tx_get_mac80211_queue(struct wl12xx_vif *wlvif, int queue)
  194. {
  195. int mac_queue = wlvif->hw_queue_base;
  196. switch (queue) {
  197. case CONF_TX_AC_VO:
  198. return mac_queue + 0;
  199. case CONF_TX_AC_VI:
  200. return mac_queue + 1;
  201. case CONF_TX_AC_BE:
  202. return mac_queue + 2;
  203. case CONF_TX_AC_BK:
  204. return mac_queue + 3;
  205. default:
  206. return mac_queue + 2;
  207. }
  208. }
  209. static inline int wl1271_tx_total_queue_count(struct wl1271 *wl)
  210. {
  211. int i, count = 0;
  212. for (i = 0; i < NUM_TX_QUEUES; i++)
  213. count += wl->tx_queue_count[i];
  214. return count;
  215. }
  216. void wl1271_tx_work(struct work_struct *work);
  217. int wlcore_tx_work_locked(struct wl1271 *wl);
  218. int wlcore_tx_complete(struct wl1271 *wl);
  219. void wl12xx_tx_reset_wlvif(struct wl1271 *wl, struct wl12xx_vif *wlvif);
  220. void wl12xx_tx_reset(struct wl1271 *wl);
  221. void wl1271_tx_flush(struct wl1271 *wl);
  222. u8 wlcore_rate_to_idx(struct wl1271 *wl, u8 rate, enum ieee80211_band band);
  223. u32 wl1271_tx_enabled_rates_get(struct wl1271 *wl, u32 rate_set,
  224. enum ieee80211_band rate_band);
  225. u32 wl1271_tx_min_rate_get(struct wl1271 *wl, u32 rate_set);
  226. u8 wl12xx_tx_get_hlid(struct wl1271 *wl, struct wl12xx_vif *wlvif,
  227. struct sk_buff *skb, struct ieee80211_sta *sta);
  228. void wl1271_tx_reset_link_queues(struct wl1271 *wl, u8 hlid);
  229. void wl1271_handle_tx_low_watermark(struct wl1271 *wl);
  230. bool wl12xx_is_dummy_packet(struct wl1271 *wl, struct sk_buff *skb);
  231. void wl12xx_rearm_rx_streaming(struct wl1271 *wl, unsigned long *active_hlids);
  232. unsigned int wlcore_calc_packet_alignment(struct wl1271 *wl,
  233. unsigned int packet_length);
  234. void wl1271_free_tx_id(struct wl1271 *wl, int id);
  235. void wlcore_stop_queue_locked(struct wl1271 *wl, struct wl12xx_vif *wlvif,
  236. u8 queue, enum wlcore_queue_stop_reason reason);
  237. void wlcore_stop_queue(struct wl1271 *wl, struct wl12xx_vif *wlvif, u8 queue,
  238. enum wlcore_queue_stop_reason reason);
  239. void wlcore_wake_queue(struct wl1271 *wl, struct wl12xx_vif *wlvif, u8 queue,
  240. enum wlcore_queue_stop_reason reason);
  241. void wlcore_stop_queues(struct wl1271 *wl,
  242. enum wlcore_queue_stop_reason reason);
  243. void wlcore_wake_queues(struct wl1271 *wl,
  244. enum wlcore_queue_stop_reason reason);
  245. bool wlcore_is_queue_stopped_by_reason(struct wl1271 *wl,
  246. struct wl12xx_vif *wlvif, u8 queue,
  247. enum wlcore_queue_stop_reason reason);
  248. bool
  249. wlcore_is_queue_stopped_by_reason_locked(struct wl1271 *wl,
  250. struct wl12xx_vif *wlvif,
  251. u8 queue,
  252. enum wlcore_queue_stop_reason reason);
  253. bool wlcore_is_queue_stopped_locked(struct wl1271 *wl, struct wl12xx_vif *wlvif,
  254. u8 queue);
  255. /* from main.c */
  256. void wl1271_free_sta(struct wl1271 *wl, struct wl12xx_vif *wlvif, u8 hlid);
  257. void wl12xx_rearm_tx_watchdog_locked(struct wl1271 *wl);
  258. #endif