fw-api-tx.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588
  1. /******************************************************************************
  2. *
  3. * This file is provided under a dual BSD/GPLv2 license. When using or
  4. * redistributing this file, you may do so under either license.
  5. *
  6. * GPL LICENSE SUMMARY
  7. *
  8. * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved.
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of version 2 of the GNU General Public License as
  12. * published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful, but
  15. * WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
  22. * USA
  23. *
  24. * The full GNU General Public License is included in this distribution
  25. * in the file called COPYING.
  26. *
  27. * Contact Information:
  28. * Intel Linux Wireless <ilw@linux.intel.com>
  29. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  30. *
  31. * BSD LICENSE
  32. *
  33. * Copyright(c) 2012 - 2013 Intel Corporation. All rights reserved.
  34. * All rights reserved.
  35. *
  36. * Redistribution and use in source and binary forms, with or without
  37. * modification, are permitted provided that the following conditions
  38. * are met:
  39. *
  40. * * Redistributions of source code must retain the above copyright
  41. * notice, this list of conditions and the following disclaimer.
  42. * * Redistributions in binary form must reproduce the above copyright
  43. * notice, this list of conditions and the following disclaimer in
  44. * the documentation and/or other materials provided with the
  45. * distribution.
  46. * * Neither the name Intel Corporation nor the names of its
  47. * contributors may be used to endorse or promote products derived
  48. * from this software without specific prior written permission.
  49. *
  50. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  51. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  52. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  53. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  54. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  55. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  56. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  57. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  58. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  59. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  60. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  61. *****************************************************************************/
  62. #ifndef __fw_api_tx_h__
  63. #define __fw_api_tx_h__
  64. /**
  65. * enum iwl_tx_flags - bitmasks for tx_flags in TX command
  66. * @TX_CMD_FLG_PROT_REQUIRE: use RTS or CTS-to-self to protect the frame
  67. * @TX_CMD_FLG_ACK: expect ACK from receiving station
  68. * @TX_CMD_FLG_STA_RATE: use RS table with initial index from the TX command.
  69. * Otherwise, use rate_n_flags from the TX command
  70. * @TX_CMD_FLG_BA: this frame is a block ack
  71. * @TX_CMD_FLG_BAR: this frame is a BA request, immediate BAR is expected
  72. * Must set TX_CMD_FLG_ACK with this flag.
  73. * @TX_CMD_FLG_TXOP_PROT: protect frame with full TXOP protection
  74. * @TX_CMD_FLG_VHT_NDPA: mark frame is NDPA for VHT beamformer sequence
  75. * @TX_CMD_FLG_HT_NDPA: mark frame is NDPA for HT beamformer sequence
  76. * @TX_CMD_FLG_CSI_FDBK2HOST: mark to send feedback to host (only if good CRC)
  77. * @TX_CMD_FLG_BT_DIS: disable BT priority for this frame
  78. * @TX_CMD_FLG_SEQ_CTL: set if FW should override the sequence control.
  79. * Should be set for mgmt, non-QOS data, mcast, bcast and in scan command
  80. * @TX_CMD_FLG_MORE_FRAG: this frame is non-last MPDU
  81. * @TX_CMD_FLG_NEXT_FRAME: this frame includes information of the next frame
  82. * @TX_CMD_FLG_TSF: FW should calculate and insert TSF in the frame
  83. * Should be set for beacons and probe responses
  84. * @TX_CMD_FLG_CALIB: activate PA TX power calibrations
  85. * @TX_CMD_FLG_KEEP_SEQ_CTL: if seq_ctl is set, don't increase inner seq count
  86. * @TX_CMD_FLG_AGG_START: allow this frame to start aggregation
  87. * @TX_CMD_FLG_MH_PAD: driver inserted 2 byte padding after MAC header.
  88. * Should be set for 26/30 length MAC headers
  89. * @TX_CMD_FLG_RESP_TO_DRV: zero this if the response should go only to FW
  90. * @TX_CMD_FLG_CCMP_AGG: this frame uses CCMP for aggregation acceleration
  91. * @TX_CMD_FLG_TKIP_MIC_DONE: FW already performed TKIP MIC calculation
  92. * @TX_CMD_FLG_CTS_ONLY: send CTS only, no data after that
  93. * @TX_CMD_FLG_DUR: disable duration overwriting used in PS-Poll Assoc-id
  94. * @TX_CMD_FLG_FW_DROP: FW should mark frame to be dropped
  95. * @TX_CMD_FLG_EXEC_PAPD: execute PAPD
  96. * @TX_CMD_FLG_PAPD_TYPE: 0 for reference power, 1 for nominal power
  97. * @TX_CMD_FLG_HCCA_CHUNK: mark start of TSPEC chunk
  98. */
  99. enum iwl_tx_flags {
  100. TX_CMD_FLG_PROT_REQUIRE = BIT(0),
  101. TX_CMD_FLG_ACK = BIT(3),
  102. TX_CMD_FLG_STA_RATE = BIT(4),
  103. TX_CMD_FLG_BA = BIT(5),
  104. TX_CMD_FLG_BAR = BIT(6),
  105. TX_CMD_FLG_TXOP_PROT = BIT(7),
  106. TX_CMD_FLG_VHT_NDPA = BIT(8),
  107. TX_CMD_FLG_HT_NDPA = BIT(9),
  108. TX_CMD_FLG_CSI_FDBK2HOST = BIT(10),
  109. TX_CMD_FLG_BT_DIS = BIT(12),
  110. TX_CMD_FLG_SEQ_CTL = BIT(13),
  111. TX_CMD_FLG_MORE_FRAG = BIT(14),
  112. TX_CMD_FLG_NEXT_FRAME = BIT(15),
  113. TX_CMD_FLG_TSF = BIT(16),
  114. TX_CMD_FLG_CALIB = BIT(17),
  115. TX_CMD_FLG_KEEP_SEQ_CTL = BIT(18),
  116. TX_CMD_FLG_AGG_START = BIT(19),
  117. TX_CMD_FLG_MH_PAD = BIT(20),
  118. TX_CMD_FLG_RESP_TO_DRV = BIT(21),
  119. TX_CMD_FLG_CCMP_AGG = BIT(22),
  120. TX_CMD_FLG_TKIP_MIC_DONE = BIT(23),
  121. TX_CMD_FLG_CTS_ONLY = BIT(24),
  122. TX_CMD_FLG_DUR = BIT(25),
  123. TX_CMD_FLG_FW_DROP = BIT(26),
  124. TX_CMD_FLG_EXEC_PAPD = BIT(27),
  125. TX_CMD_FLG_PAPD_TYPE = BIT(28),
  126. TX_CMD_FLG_HCCA_CHUNK = BIT(31)
  127. }; /* TX_FLAGS_BITS_API_S_VER_1 */
  128. /*
  129. * TX command security control
  130. */
  131. #define TX_CMD_SEC_WEP 0x01
  132. #define TX_CMD_SEC_CCM 0x02
  133. #define TX_CMD_SEC_TKIP 0x03
  134. #define TX_CMD_SEC_MSK 0x07
  135. #define TX_CMD_SEC_WEP_KEY_IDX_POS 6
  136. #define TX_CMD_SEC_WEP_KEY_IDX_MSK 0xc0
  137. #define TX_CMD_SEC_KEY128 0x08
  138. /* TODO: how does these values are OK with only 16 bit variable??? */
  139. /*
  140. * TX command next frame info
  141. *
  142. * bits 0:2 - security control (TX_CMD_SEC_*)
  143. * bit 3 - immediate ACK required
  144. * bit 4 - rate is taken from STA table
  145. * bit 5 - frame belongs to BA stream
  146. * bit 6 - immediate BA response expected
  147. * bit 7 - unused
  148. * bits 8:15 - Station ID
  149. * bits 16:31 - rate
  150. */
  151. #define TX_CMD_NEXT_FRAME_ACK_MSK (0x8)
  152. #define TX_CMD_NEXT_FRAME_STA_RATE_MSK (0x10)
  153. #define TX_CMD_NEXT_FRAME_BA_MSK (0x20)
  154. #define TX_CMD_NEXT_FRAME_IMM_BA_RSP_MSK (0x40)
  155. #define TX_CMD_NEXT_FRAME_FLAGS_MSK (0xf8)
  156. #define TX_CMD_NEXT_FRAME_STA_ID_MSK (0xff00)
  157. #define TX_CMD_NEXT_FRAME_STA_ID_POS (8)
  158. #define TX_CMD_NEXT_FRAME_RATE_MSK (0xffff0000)
  159. #define TX_CMD_NEXT_FRAME_RATE_POS (16)
  160. /*
  161. * TX command Frame life time in us - to be written in pm_frame_timeout
  162. */
  163. #define TX_CMD_LIFE_TIME_INFINITE 0xFFFFFFFF
  164. #define TX_CMD_LIFE_TIME_DEFAULT 2000000 /* 2000 ms*/
  165. #define TX_CMD_LIFE_TIME_PROBE_RESP 40000 /* 40 ms */
  166. #define TX_CMD_LIFE_TIME_EXPIRED_FRAME 0
  167. /*
  168. * TID for non QoS frames - to be written in tid_tspec
  169. */
  170. #define IWL_TID_NON_QOS IWL_MAX_TID_COUNT
  171. /*
  172. * Limits on the retransmissions - to be written in {data,rts}_retry_limit
  173. */
  174. #define IWL_DEFAULT_TX_RETRY 15
  175. #define IWL_MGMT_DFAULT_RETRY_LIMIT 3
  176. #define IWL_RTS_DFAULT_RETRY_LIMIT 60
  177. #define IWL_BAR_DFAULT_RETRY_LIMIT 60
  178. #define IWL_LOW_RETRY_LIMIT 7
  179. /* TODO: complete documentation for try_cnt and btkill_cnt */
  180. /**
  181. * struct iwl_tx_cmd - TX command struct to FW
  182. * ( TX_CMD = 0x1c )
  183. * @len: in bytes of the payload, see below for details
  184. * @next_frame_len: same as len, but for next frame (0 if not applicable)
  185. * Used for fragmentation and bursting, but not in 11n aggregation.
  186. * @tx_flags: combination of TX_CMD_FLG_*
  187. * @rate_n_flags: rate for *all* Tx attempts, if TX_CMD_FLG_STA_RATE_MSK is
  188. * cleared. Combination of RATE_MCS_*
  189. * @sta_id: index of destination station in FW station table
  190. * @sec_ctl: security control, TX_CMD_SEC_*
  191. * @initial_rate_index: index into the the rate table for initial TX attempt.
  192. * Applied if TX_CMD_FLG_STA_RATE_MSK is set, normally 0 for data frames.
  193. * @key: security key
  194. * @next_frame_flags: TX_CMD_SEC_* and TX_CMD_NEXT_FRAME_*
  195. * @life_time: frame life time (usecs??)
  196. * @dram_lsb_ptr: Physical address of scratch area in the command (try_cnt +
  197. * btkill_cnd + reserved), first 32 bits. "0" disables usage.
  198. * @dram_msb_ptr: upper bits of the scratch physical address
  199. * @rts_retry_limit: max attempts for RTS
  200. * @data_retry_limit: max attempts to send the data packet
  201. * @tid_spec: TID/tspec
  202. * @pm_frame_timeout: PM TX frame timeout
  203. * @driver_txop: duration od EDCA TXOP, in 32-usec units. Set this if not
  204. * specified by HCCA protocol
  205. *
  206. * The byte count (both len and next_frame_len) includes MAC header
  207. * (24/26/30/32 bytes)
  208. * + 2 bytes pad if 26/30 header size
  209. * + 8 byte IV for CCM or TKIP (not used for WEP)
  210. * + Data payload
  211. * + 8-byte MIC (not used for CCM/WEP)
  212. * It does not include post-MAC padding, i.e.,
  213. * MIC (CCM) 8 bytes, ICV (WEP/TKIP/CKIP) 4 bytes, CRC 4 bytes.
  214. * Range of len: 14-2342 bytes.
  215. *
  216. * After the struct fields the MAC header is placed, plus any padding,
  217. * and then the actial payload.
  218. */
  219. struct iwl_tx_cmd {
  220. __le16 len;
  221. __le16 next_frame_len;
  222. __le32 tx_flags;
  223. struct {
  224. u8 try_cnt;
  225. u8 btkill_cnt;
  226. __le16 reserved;
  227. } scratch; /* DRAM_SCRATCH_API_U_VER_1 */
  228. __le32 rate_n_flags;
  229. u8 sta_id;
  230. u8 sec_ctl;
  231. u8 initial_rate_index;
  232. u8 reserved2;
  233. u8 key[16];
  234. __le16 next_frame_flags;
  235. __le16 reserved3;
  236. __le32 life_time;
  237. __le32 dram_lsb_ptr;
  238. u8 dram_msb_ptr;
  239. u8 rts_retry_limit;
  240. u8 data_retry_limit;
  241. u8 tid_tspec;
  242. __le16 pm_frame_timeout;
  243. __le16 driver_txop;
  244. u8 payload[0];
  245. struct ieee80211_hdr hdr[0];
  246. } __packed; /* TX_CMD_API_S_VER_3 */
  247. /*
  248. * TX response related data
  249. */
  250. /*
  251. * enum iwl_tx_status - status that is returned by the fw after attempts to Tx
  252. * @TX_STATUS_SUCCESS:
  253. * @TX_STATUS_DIRECT_DONE:
  254. * @TX_STATUS_POSTPONE_DELAY:
  255. * @TX_STATUS_POSTPONE_FEW_BYTES:
  256. * @TX_STATUS_POSTPONE_BT_PRIO:
  257. * @TX_STATUS_POSTPONE_QUIET_PERIOD:
  258. * @TX_STATUS_POSTPONE_CALC_TTAK:
  259. * @TX_STATUS_FAIL_INTERNAL_CROSSED_RETRY:
  260. * @TX_STATUS_FAIL_SHORT_LIMIT:
  261. * @TX_STATUS_FAIL_LONG_LIMIT:
  262. * @TX_STATUS_FAIL_UNDERRUN:
  263. * @TX_STATUS_FAIL_DRAIN_FLOW:
  264. * @TX_STATUS_FAIL_RFKILL_FLUSH:
  265. * @TX_STATUS_FAIL_LIFE_EXPIRE:
  266. * @TX_STATUS_FAIL_DEST_PS:
  267. * @TX_STATUS_FAIL_HOST_ABORTED:
  268. * @TX_STATUS_FAIL_BT_RETRY:
  269. * @TX_STATUS_FAIL_STA_INVALID:
  270. * @TX_TATUS_FAIL_FRAG_DROPPED:
  271. * @TX_STATUS_FAIL_TID_DISABLE:
  272. * @TX_STATUS_FAIL_FIFO_FLUSHED:
  273. * @TX_STATUS_FAIL_SMALL_CF_POLL:
  274. * @TX_STATUS_FAIL_FW_DROP:
  275. * @TX_STATUS_FAIL_STA_COLOR_MISMATCH: mismatch between color of Tx cmd and
  276. * STA table
  277. * @TX_FRAME_STATUS_INTERNAL_ABORT:
  278. * @TX_MODE_MSK:
  279. * @TX_MODE_NO_BURST:
  280. * @TX_MODE_IN_BURST_SEQ:
  281. * @TX_MODE_FIRST_IN_BURST:
  282. * @TX_QUEUE_NUM_MSK:
  283. *
  284. * Valid only if frame_count =1
  285. * TODO: complete documentation
  286. */
  287. enum iwl_tx_status {
  288. TX_STATUS_MSK = 0x000000ff,
  289. TX_STATUS_SUCCESS = 0x01,
  290. TX_STATUS_DIRECT_DONE = 0x02,
  291. /* postpone TX */
  292. TX_STATUS_POSTPONE_DELAY = 0x40,
  293. TX_STATUS_POSTPONE_FEW_BYTES = 0x41,
  294. TX_STATUS_POSTPONE_BT_PRIO = 0x42,
  295. TX_STATUS_POSTPONE_QUIET_PERIOD = 0x43,
  296. TX_STATUS_POSTPONE_CALC_TTAK = 0x44,
  297. /* abort TX */
  298. TX_STATUS_FAIL_INTERNAL_CROSSED_RETRY = 0x81,
  299. TX_STATUS_FAIL_SHORT_LIMIT = 0x82,
  300. TX_STATUS_FAIL_LONG_LIMIT = 0x83,
  301. TX_STATUS_FAIL_UNDERRUN = 0x84,
  302. TX_STATUS_FAIL_DRAIN_FLOW = 0x85,
  303. TX_STATUS_FAIL_RFKILL_FLUSH = 0x86,
  304. TX_STATUS_FAIL_LIFE_EXPIRE = 0x87,
  305. TX_STATUS_FAIL_DEST_PS = 0x88,
  306. TX_STATUS_FAIL_HOST_ABORTED = 0x89,
  307. TX_STATUS_FAIL_BT_RETRY = 0x8a,
  308. TX_STATUS_FAIL_STA_INVALID = 0x8b,
  309. TX_STATUS_FAIL_FRAG_DROPPED = 0x8c,
  310. TX_STATUS_FAIL_TID_DISABLE = 0x8d,
  311. TX_STATUS_FAIL_FIFO_FLUSHED = 0x8e,
  312. TX_STATUS_FAIL_SMALL_CF_POLL = 0x8f,
  313. TX_STATUS_FAIL_FW_DROP = 0x90,
  314. TX_STATUS_FAIL_STA_COLOR_MISMATCH = 0x91,
  315. TX_STATUS_INTERNAL_ABORT = 0x92,
  316. TX_MODE_MSK = 0x00000f00,
  317. TX_MODE_NO_BURST = 0x00000000,
  318. TX_MODE_IN_BURST_SEQ = 0x00000100,
  319. TX_MODE_FIRST_IN_BURST = 0x00000200,
  320. TX_QUEUE_NUM_MSK = 0x0001f000,
  321. TX_NARROW_BW_MSK = 0x00060000,
  322. TX_NARROW_BW_1DIV2 = 0x00020000,
  323. TX_NARROW_BW_1DIV4 = 0x00040000,
  324. TX_NARROW_BW_1DIV8 = 0x00060000,
  325. };
  326. /*
  327. * enum iwl_tx_agg_status - TX aggregation status
  328. * @AGG_TX_STATE_STATUS_MSK:
  329. * @AGG_TX_STATE_TRANSMITTED:
  330. * @AGG_TX_STATE_UNDERRUN:
  331. * @AGG_TX_STATE_BT_PRIO:
  332. * @AGG_TX_STATE_FEW_BYTES:
  333. * @AGG_TX_STATE_ABORT:
  334. * @AGG_TX_STATE_LAST_SENT_TTL:
  335. * @AGG_TX_STATE_LAST_SENT_TRY_CNT:
  336. * @AGG_TX_STATE_LAST_SENT_BT_KILL:
  337. * @AGG_TX_STATE_SCD_QUERY:
  338. * @AGG_TX_STATE_TEST_BAD_CRC32:
  339. * @AGG_TX_STATE_RESPONSE:
  340. * @AGG_TX_STATE_DUMP_TX:
  341. * @AGG_TX_STATE_DELAY_TX:
  342. * @AGG_TX_STATE_TRY_CNT_MSK: Retry count for 1st frame in aggregation (retries
  343. * occur if tx failed for this frame when it was a member of a previous
  344. * aggregation block). If rate scaling is used, retry count indicates the
  345. * rate table entry used for all frames in the new agg.
  346. *@ AGG_TX_STATE_SEQ_NUM_MSK: Command ID and sequence number of Tx command for
  347. * this frame
  348. *
  349. * TODO: complete documentation
  350. */
  351. enum iwl_tx_agg_status {
  352. AGG_TX_STATE_STATUS_MSK = 0x00fff,
  353. AGG_TX_STATE_TRANSMITTED = 0x000,
  354. AGG_TX_STATE_UNDERRUN = 0x001,
  355. AGG_TX_STATE_BT_PRIO = 0x002,
  356. AGG_TX_STATE_FEW_BYTES = 0x004,
  357. AGG_TX_STATE_ABORT = 0x008,
  358. AGG_TX_STATE_LAST_SENT_TTL = 0x010,
  359. AGG_TX_STATE_LAST_SENT_TRY_CNT = 0x020,
  360. AGG_TX_STATE_LAST_SENT_BT_KILL = 0x040,
  361. AGG_TX_STATE_SCD_QUERY = 0x080,
  362. AGG_TX_STATE_TEST_BAD_CRC32 = 0x0100,
  363. AGG_TX_STATE_RESPONSE = 0x1ff,
  364. AGG_TX_STATE_DUMP_TX = 0x200,
  365. AGG_TX_STATE_DELAY_TX = 0x400,
  366. AGG_TX_STATE_TRY_CNT_POS = 12,
  367. AGG_TX_STATE_TRY_CNT_MSK = 0xf << AGG_TX_STATE_TRY_CNT_POS,
  368. };
  369. #define AGG_TX_STATE_LAST_SENT_MSK (AGG_TX_STATE_LAST_SENT_TTL| \
  370. AGG_TX_STATE_LAST_SENT_TRY_CNT| \
  371. AGG_TX_STATE_LAST_SENT_BT_KILL)
  372. /*
  373. * The mask below describes a status where we are absolutely sure that the MPDU
  374. * wasn't sent. For BA/Underrun we cannot be that sure. All we know that we've
  375. * written the bytes to the TXE, but we know nothing about what the DSP did.
  376. */
  377. #define AGG_TX_STAT_FRAME_NOT_SENT (AGG_TX_STATE_FEW_BYTES | \
  378. AGG_TX_STATE_ABORT | \
  379. AGG_TX_STATE_SCD_QUERY)
  380. /*
  381. * REPLY_TX = 0x1c (response)
  382. *
  383. * This response may be in one of two slightly different formats, indicated
  384. * by the frame_count field:
  385. *
  386. * 1) No aggregation (frame_count == 1). This reports Tx results for a single
  387. * frame. Multiple attempts, at various bit rates, may have been made for
  388. * this frame.
  389. *
  390. * 2) Aggregation (frame_count > 1). This reports Tx results for two or more
  391. * frames that used block-acknowledge. All frames were transmitted at
  392. * same rate. Rate scaling may have been used if first frame in this new
  393. * agg block failed in previous agg block(s).
  394. *
  395. * Note that, for aggregation, ACK (block-ack) status is not delivered
  396. * here; block-ack has not been received by the time the device records
  397. * this status.
  398. * This status relates to reasons the tx might have been blocked or aborted
  399. * within the device, rather than whether it was received successfully by
  400. * the destination station.
  401. */
  402. /**
  403. * struct agg_tx_status - per packet TX aggregation status
  404. * @status: enum iwl_tx_agg_status
  405. * @sequence: Sequence # for this frame's Tx cmd (not SSN!)
  406. */
  407. struct agg_tx_status {
  408. __le16 status;
  409. __le16 sequence;
  410. } __packed;
  411. /*
  412. * definitions for initial rate index field
  413. * bits [3:0] initial rate index
  414. * bits [6:4] rate table color, used for the initial rate
  415. * bit-7 invalid rate indication
  416. */
  417. #define TX_RES_INIT_RATE_INDEX_MSK 0x0f
  418. #define TX_RES_RATE_TABLE_COLOR_MSK 0x70
  419. #define TX_RES_INV_RATE_INDEX_MSK 0x80
  420. #define IWL_MVM_TX_RES_GET_TID(_ra_tid) ((_ra_tid) & 0x0f)
  421. #define IWL_MVM_TX_RES_GET_RA(_ra_tid) ((_ra_tid) >> 4)
  422. /**
  423. * struct iwl_mvm_tx_resp - notifies that fw is TXing a packet
  424. * ( REPLY_TX = 0x1c )
  425. * @frame_count: 1 no aggregation, >1 aggregation
  426. * @bt_kill_count: num of times blocked by bluetooth (unused for agg)
  427. * @failure_rts: num of failures due to unsuccessful RTS
  428. * @failure_frame: num failures due to no ACK (unused for agg)
  429. * @initial_rate: for non-agg: rate of the successful Tx. For agg: rate of the
  430. * Tx of all the batch. RATE_MCS_*
  431. * @wireless_media_time: for non-agg: RTS + CTS + frame tx attempts time + ACK.
  432. * for agg: RTS + CTS + aggregation tx time + block-ack time.
  433. * in usec.
  434. * @pa_status: tx power info
  435. * @pa_integ_res_a: tx power info
  436. * @pa_integ_res_b: tx power info
  437. * @pa_integ_res_c: tx power info
  438. * @measurement_req_id: tx power info
  439. * @tfd_info: TFD information set by the FH
  440. * @seq_ctl: sequence control from the Tx cmd
  441. * @byte_cnt: byte count from the Tx cmd
  442. * @tlc_info: TLC rate info
  443. * @ra_tid: bits [3:0] = ra, bits [7:4] = tid
  444. * @frame_ctrl: frame control
  445. * @status: for non-agg: frame status TX_STATUS_*
  446. * for agg: status of 1st frame, AGG_TX_STATE_*; other frame status fields
  447. * follow this one, up to frame_count.
  448. *
  449. * After the array of statuses comes the SSN of the SCD. Look at
  450. * %iwl_mvm_get_scd_ssn for more details.
  451. */
  452. struct iwl_mvm_tx_resp {
  453. u8 frame_count;
  454. u8 bt_kill_count;
  455. u8 failure_rts;
  456. u8 failure_frame;
  457. __le32 initial_rate;
  458. __le16 wireless_media_time;
  459. u8 pa_status;
  460. u8 pa_integ_res_a[3];
  461. u8 pa_integ_res_b[3];
  462. u8 pa_integ_res_c[3];
  463. __le16 measurement_req_id;
  464. __le16 reserved;
  465. __le32 tfd_info;
  466. __le16 seq_ctl;
  467. __le16 byte_cnt;
  468. u8 tlc_info;
  469. u8 ra_tid;
  470. __le16 frame_ctrl;
  471. struct agg_tx_status status;
  472. } __packed; /* TX_RSP_API_S_VER_3 */
  473. /**
  474. * struct iwl_mvm_ba_notif - notifies about reception of BA
  475. * ( BA_NOTIF = 0xc5 )
  476. * @sta_addr_lo32: lower 32 bits of the MAC address
  477. * @sta_addr_hi16: upper 16 bits of the MAC address
  478. * @sta_id: Index of recipient (BA-sending) station in fw's station table
  479. * @tid: tid of the session
  480. * @seq_ctl:
  481. * @bitmap: the bitmap of the BA notification as seen in the air
  482. * @scd_flow: the tx queue this BA relates to
  483. * @scd_ssn: the index of the last contiguously sent packet
  484. * @txed: number of Txed frames in this batch
  485. * @txed_2_done: number of Acked frames in this batch
  486. */
  487. struct iwl_mvm_ba_notif {
  488. __le32 sta_addr_lo32;
  489. __le16 sta_addr_hi16;
  490. __le16 reserved;
  491. u8 sta_id;
  492. u8 tid;
  493. __le16 seq_ctl;
  494. __le64 bitmap;
  495. __le16 scd_flow;
  496. __le16 scd_ssn;
  497. u8 txed;
  498. u8 txed_2_done;
  499. __le16 reserved1;
  500. } __packed;
  501. /*
  502. * struct iwl_mac_beacon_cmd - beacon template command
  503. * @tx: the tx commands associated with the beacon frame
  504. * @template_id: currently equal to the mac context id of the coresponding
  505. * mac.
  506. * @tim_idx: the offset of the tim IE in the beacon
  507. * @tim_size: the length of the tim IE
  508. * @frame: the template of the beacon frame
  509. */
  510. struct iwl_mac_beacon_cmd {
  511. struct iwl_tx_cmd tx;
  512. __le32 template_id;
  513. __le32 tim_idx;
  514. __le32 tim_size;
  515. struct ieee80211_hdr frame[0];
  516. } __packed;
  517. struct iwl_beacon_notif {
  518. struct iwl_mvm_tx_resp beacon_notify_hdr;
  519. __le64 tsf;
  520. __le32 ibss_mgr_status;
  521. } __packed;
  522. /**
  523. * enum iwl_dump_control - dump (flush) control flags
  524. * @DUMP_TX_FIFO_FLUSH: Dump MSDUs until the the FIFO is empty
  525. * and the TFD queues are empty.
  526. */
  527. enum iwl_dump_control {
  528. DUMP_TX_FIFO_FLUSH = BIT(1),
  529. };
  530. /**
  531. * struct iwl_tx_path_flush_cmd -- queue/FIFO flush command
  532. * @queues_ctl: bitmap of queues to flush
  533. * @flush_ctl: control flags
  534. * @reserved: reserved
  535. */
  536. struct iwl_tx_path_flush_cmd {
  537. __le32 queues_ctl;
  538. __le16 flush_ctl;
  539. __le16 reserved;
  540. } __packed; /* TX_PATH_FLUSH_CMD_API_S_VER_1 */
  541. /**
  542. * iwl_mvm_get_scd_ssn - returns the SSN of the SCD
  543. * @tx_resp: the Tx response from the fw (agg or non-agg)
  544. *
  545. * When the fw sends an AMPDU, it fetches the MPDUs one after the other. Since
  546. * it can't know that everything will go well until the end of the AMPDU, it
  547. * can't know in advance the number of MPDUs that will be sent in the current
  548. * batch. This is why it writes the agg Tx response while it fetches the MPDUs.
  549. * Hence, it can't know in advance what the SSN of the SCD will be at the end
  550. * of the batch. This is why the SSN of the SCD is written at the end of the
  551. * whole struct at a variable offset. This function knows how to cope with the
  552. * variable offset and returns the SSN of the SCD.
  553. */
  554. static inline u32 iwl_mvm_get_scd_ssn(struct iwl_mvm_tx_resp *tx_resp)
  555. {
  556. return le32_to_cpup((__le32 *)&tx_resp->status +
  557. tx_resp->frame_count) & 0xfff;
  558. }
  559. #endif /* __fw_api_tx_h__ */