wl1271_tx.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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 __WL1271_TX_H__
  25. #define __WL1271_TX_H__
  26. #define TX_HW_BLOCK_SPARE 2
  27. #define TX_HW_BLOCK_SHIFT_DIV 8
  28. #define TX_HW_MGMT_PKT_LIFETIME_TU 2000
  29. /* The chipset reference driver states, that the "aid" value 1
  30. * is for infra-BSS, but is still always used */
  31. #define TX_HW_DEFAULT_AID 1
  32. #define TX_HW_ATTR_SAVE_RETRIES BIT(0)
  33. #define TX_HW_ATTR_HEADER_PAD BIT(1)
  34. #define TX_HW_ATTR_SESSION_COUNTER (BIT(2) | BIT(3) | BIT(4))
  35. #define TX_HW_ATTR_RATE_POLICY (BIT(5) | BIT(6) | BIT(7) | \
  36. BIT(8) | BIT(9))
  37. #define TX_HW_ATTR_LAST_WORD_PAD (BIT(10) | BIT(11))
  38. #define TX_HW_ATTR_TX_CMPLT_REQ BIT(12)
  39. #define TX_HW_ATTR_OFST_SAVE_RETRIES 0
  40. #define TX_HW_ATTR_OFST_HEADER_PAD 1
  41. #define TX_HW_ATTR_OFST_SESSION_COUNTER 2
  42. #define TX_HW_ATTR_OFST_RATE_POLICY 5
  43. #define TX_HW_ATTR_OFST_LAST_WORD_PAD 10
  44. #define TX_HW_ATTR_OFST_TX_CMPLT_REQ 12
  45. #define TX_HW_RESULT_QUEUE_LEN 16
  46. #define TX_HW_RESULT_QUEUE_LEN_MASK 0xf
  47. #define WL1271_TX_ALIGN_TO 4
  48. #define WL1271_TX_ALIGN(len) (((len) + WL1271_TX_ALIGN_TO - 1) & \
  49. ~(WL1271_TX_ALIGN_TO - 1))
  50. #define WL1271_TKIP_IV_SPACE 4
  51. struct wl1271_tx_hw_descr {
  52. /* Length of packet in words, including descriptor+header+data */
  53. u16 length;
  54. /* Number of extra memory blocks to allocate for this packet in
  55. addition to the number of blocks derived from the packet length */
  56. u8 extra_mem_blocks;
  57. /* Total number of memory blocks allocated by the host for this packet.
  58. Must be equal or greater than the actual blocks number allocated by
  59. HW!! */
  60. u8 total_mem_blocks;
  61. /* Device time (in us) when the packet arrived to the driver */
  62. u32 start_time;
  63. /* Max delay in TUs until transmission. The last device time the
  64. packet can be transmitted is: startTime+(1024*LifeTime) */
  65. u16 life_time;
  66. /* Bitwise fields - see TX_ATTR... definitions above. */
  67. u16 tx_attr;
  68. /* Packet identifier used also in the Tx-Result. */
  69. u8 id;
  70. /* The packet TID value (as User-Priority) */
  71. u8 tid;
  72. /* Identifier of the remote STA in IBSS, 1 in infra-BSS */
  73. u8 aid;
  74. u8 reserved;
  75. } __attribute__ ((packed));
  76. enum wl1271_tx_hw_res_status {
  77. TX_SUCCESS = 0,
  78. TX_HW_ERROR = 1,
  79. TX_DISABLED = 2,
  80. TX_RETRY_EXCEEDED = 3,
  81. TX_TIMEOUT = 4,
  82. TX_KEY_NOT_FOUND = 5,
  83. TX_PEER_NOT_FOUND = 6,
  84. TX_SESSION_MISMATCH = 7
  85. };
  86. struct wl1271_tx_hw_res_descr {
  87. /* Packet Identifier - same value used in the Tx descriptor.*/
  88. u8 id;
  89. /* The status of the transmission, indicating success or one of
  90. several possible reasons for failure. */
  91. u8 status;
  92. /* Total air access duration including all retrys and overheads.*/
  93. u16 medium_usage;
  94. /* The time passed from host xfer to Tx-complete.*/
  95. u32 fw_handling_time;
  96. /* Total media delay
  97. (from 1st EDCA AIFS counter until TX Complete). */
  98. u32 medium_delay;
  99. /* LS-byte of last TKIP seq-num (saved per AC for recovery). */
  100. u8 lsb_security_sequence_number;
  101. /* Retry count - number of transmissions without successful ACK.*/
  102. u8 ack_failures;
  103. /* The rate that succeeded getting ACK
  104. (Valid only if status=SUCCESS). */
  105. u8 rate_class_index;
  106. /* for 4-byte alignment. */
  107. u8 spare;
  108. } __attribute__ ((packed));
  109. struct wl1271_tx_hw_res_if {
  110. u32 tx_result_fw_counter;
  111. u32 tx_result_host_counter;
  112. struct wl1271_tx_hw_res_descr tx_results_queue[TX_HW_RESULT_QUEUE_LEN];
  113. } __attribute__ ((packed));
  114. void wl1271_tx_work(struct work_struct *work);
  115. void wl1271_tx_complete(struct wl1271 *wl, u32 count);
  116. void wl1271_tx_flush(struct wl1271 *wl);
  117. #endif