tx.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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_BLOCK_SPARE_DEFAULT 1
  27. #define TX_HW_BLOCK_SIZE 252
  28. #define TX_HW_MGMT_PKT_LIFETIME_TU 2000
  29. #define TX_HW_AP_MODE_PKT_LIFETIME_TU 8000
  30. #define TX_HW_ATTR_SAVE_RETRIES BIT(0)
  31. #define TX_HW_ATTR_HEADER_PAD BIT(1)
  32. #define TX_HW_ATTR_SESSION_COUNTER (BIT(2) | BIT(3) | BIT(4))
  33. #define TX_HW_ATTR_RATE_POLICY (BIT(5) | BIT(6) | BIT(7) | \
  34. BIT(8) | BIT(9))
  35. #define TX_HW_ATTR_LAST_WORD_PAD (BIT(10) | BIT(11))
  36. #define TX_HW_ATTR_TX_CMPLT_REQ BIT(12)
  37. #define TX_HW_ATTR_TX_DUMMY_REQ BIT(13)
  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_TKIP_IV_SPACE 4
  48. /* Used for management frames and dummy packets */
  49. #define WL1271_TID_MGMT 7
  50. struct wl127x_tx_mem {
  51. /*
  52. * Number of extra memory blocks to allocate for this packet
  53. * in addition to the number of blocks derived from the packet
  54. * length.
  55. */
  56. u8 extra_blocks;
  57. /*
  58. * Total number of memory blocks allocated by the host for
  59. * this packet. Must be equal or greater than the actual
  60. * blocks number allocated by HW.
  61. */
  62. u8 total_mem_blocks;
  63. } __packed;
  64. struct wl128x_tx_mem {
  65. /*
  66. * Total number of memory blocks allocated by the host for
  67. * this packet.
  68. */
  69. u8 total_mem_blocks;
  70. /*
  71. * Number of extra bytes, at the end of the frame. the host
  72. * uses this padding to complete each frame to integer number
  73. * of SDIO blocks.
  74. */
  75. u8 extra_bytes;
  76. } __packed;
  77. /*
  78. * On wl128x based devices, when TX packets are aggregated, each packet
  79. * size must be aligned to the SDIO block size. The maximum block size
  80. * is bounded by the type of the padded bytes field that is sent to the
  81. * FW. Currently the type is u8, so the maximum block size is 256 bytes.
  82. */
  83. #define WL12XX_BUS_BLOCK_SIZE min(512u, \
  84. (1u << (8 * sizeof(((struct wl128x_tx_mem *) 0)->extra_bytes))))
  85. struct wl1271_tx_hw_descr {
  86. /* Length of packet in words, including descriptor+header+data */
  87. __le16 length;
  88. union {
  89. struct wl127x_tx_mem wl127x_mem;
  90. struct wl128x_tx_mem wl128x_mem;
  91. } __packed;
  92. /* Device time (in us) when the packet arrived to the driver */
  93. __le32 start_time;
  94. /*
  95. * Max delay in TUs until transmission. The last device time the
  96. * packet can be transmitted is: start_time + (1024 * life_time)
  97. */
  98. __le16 life_time;
  99. /* Bitwise fields - see TX_ATTR... definitions above. */
  100. __le16 tx_attr;
  101. /* Packet identifier used also in the Tx-Result. */
  102. u8 id;
  103. /* The packet TID value (as User-Priority) */
  104. u8 tid;
  105. /* host link ID (HLID) */
  106. u8 hlid;
  107. u8 reserved;
  108. } __packed;
  109. enum wl1271_tx_hw_res_status {
  110. TX_SUCCESS = 0,
  111. TX_HW_ERROR = 1,
  112. TX_DISABLED = 2,
  113. TX_RETRY_EXCEEDED = 3,
  114. TX_TIMEOUT = 4,
  115. TX_KEY_NOT_FOUND = 5,
  116. TX_PEER_NOT_FOUND = 6,
  117. TX_SESSION_MISMATCH = 7,
  118. TX_LINK_NOT_VALID = 8,
  119. };
  120. struct wl1271_tx_hw_res_descr {
  121. /* Packet Identifier - same value used in the Tx descriptor.*/
  122. u8 id;
  123. /* The status of the transmission, indicating success or one of
  124. several possible reasons for failure. */
  125. u8 status;
  126. /* Total air access duration including all retrys and overheads.*/
  127. __le16 medium_usage;
  128. /* The time passed from host xfer to Tx-complete.*/
  129. __le32 fw_handling_time;
  130. /* Total media delay
  131. (from 1st EDCA AIFS counter until TX Complete). */
  132. __le32 medium_delay;
  133. /* LS-byte of last TKIP seq-num (saved per AC for recovery). */
  134. u8 tx_security_sequence_number_lsb;
  135. /* Retry count - number of transmissions without successful ACK.*/
  136. u8 ack_failures;
  137. /* The rate that succeeded getting ACK
  138. (Valid only if status=SUCCESS). */
  139. u8 rate_class_index;
  140. /* for 4-byte alignment. */
  141. u8 spare;
  142. } __packed;
  143. struct wl1271_tx_hw_res_if {
  144. __le32 tx_result_fw_counter;
  145. __le32 tx_result_host_counter;
  146. struct wl1271_tx_hw_res_descr tx_results_queue[TX_HW_RESULT_QUEUE_LEN];
  147. } __packed;
  148. static inline int wl1271_tx_get_queue(int queue)
  149. {
  150. switch (queue) {
  151. case 0:
  152. return CONF_TX_AC_VO;
  153. case 1:
  154. return CONF_TX_AC_VI;
  155. case 2:
  156. return CONF_TX_AC_BE;
  157. case 3:
  158. return CONF_TX_AC_BK;
  159. default:
  160. return CONF_TX_AC_BE;
  161. }
  162. }
  163. static inline int wl1271_tx_get_mac80211_queue(int queue)
  164. {
  165. switch (queue) {
  166. case CONF_TX_AC_VO:
  167. return 0;
  168. case CONF_TX_AC_VI:
  169. return 1;
  170. case CONF_TX_AC_BE:
  171. return 2;
  172. case CONF_TX_AC_BK:
  173. return 3;
  174. default:
  175. return 2;
  176. }
  177. }
  178. static inline int wl1271_tx_total_queue_count(struct wl1271 *wl)
  179. {
  180. int i, count = 0;
  181. for (i = 0; i < NUM_TX_QUEUES; i++)
  182. count += wl->tx_queue_count[i];
  183. return count;
  184. }
  185. void wl1271_tx_work(struct work_struct *work);
  186. void wl1271_tx_work_locked(struct wl1271 *wl);
  187. void wl1271_tx_complete(struct wl1271 *wl);
  188. void wl1271_tx_reset(struct wl1271 *wl, bool reset_tx_queues);
  189. void wl1271_tx_flush(struct wl1271 *wl);
  190. u8 wl1271_rate_to_idx(int rate, enum ieee80211_band band);
  191. u32 wl1271_tx_enabled_rates_get(struct wl1271 *wl, u32 rate_set,
  192. enum ieee80211_band rate_band);
  193. u32 wl1271_tx_min_rate_get(struct wl1271 *wl, u32 rate_set);
  194. u8 wl12xx_tx_get_hlid_ap(struct wl1271 *wl, struct sk_buff *skb);
  195. void wl1271_tx_reset_link_queues(struct wl1271 *wl, u8 hlid);
  196. void wl1271_handle_tx_low_watermark(struct wl1271 *wl);
  197. bool wl12xx_is_dummy_packet(struct wl1271 *wl, struct sk_buff *skb);
  198. /* from main.c */
  199. void wl1271_free_sta(struct wl1271 *wl, u8 hlid);
  200. #endif