fw-api-tx.h 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804
  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 - 2014 Intel Corporation. All rights reserved.
  9. * Copyright(c) 2016 Intel Deutschland GmbH
  10. *
  11. * This program is free software; you can redistribute it and/or modify
  12. * it under the terms of version 2 of the GNU General Public License as
  13. * published by the Free Software Foundation.
  14. *
  15. * This program is distributed in the hope that it will be useful, but
  16. * WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
  23. * USA
  24. *
  25. * The full GNU General Public License is included in this distribution
  26. * in the file called COPYING.
  27. *
  28. * Contact Information:
  29. * Intel Linux Wireless <linuxwifi@intel.com>
  30. * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
  31. *
  32. * BSD LICENSE
  33. *
  34. * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
  35. * All rights reserved.
  36. *
  37. * Redistribution and use in source and binary forms, with or without
  38. * modification, are permitted provided that the following conditions
  39. * are met:
  40. *
  41. * * Redistributions of source code must retain the above copyright
  42. * notice, this list of conditions and the following disclaimer.
  43. * * Redistributions in binary form must reproduce the above copyright
  44. * notice, this list of conditions and the following disclaimer in
  45. * the documentation and/or other materials provided with the
  46. * distribution.
  47. * * Neither the name Intel Corporation nor the names of its
  48. * contributors may be used to endorse or promote products derived
  49. * from this software without specific prior written permission.
  50. *
  51. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  52. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  53. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  54. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  55. * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  56. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  57. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  58. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  59. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  60. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  61. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  62. *****************************************************************************/
  63. #ifndef __fw_api_tx_h__
  64. #define __fw_api_tx_h__
  65. /**
  66. * enum iwl_tx_flags - bitmasks for tx_flags in TX command
  67. * @TX_CMD_FLG_PROT_REQUIRE: use RTS or CTS-to-self to protect the frame
  68. * @TX_CMD_FLG_WRITE_TX_POWER: update current tx power value in the mgmt frame
  69. * @TX_CMD_FLG_ACK: expect ACK from receiving station
  70. * @TX_CMD_FLG_STA_RATE: use RS table with initial index from the TX command.
  71. * Otherwise, use rate_n_flags from the TX command
  72. * @TX_CMD_FLG_BAR: this frame is a BA request, immediate BAR is expected
  73. * Must set TX_CMD_FLG_ACK with this flag.
  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_PRIO_POS: the position of the BT priority (bit 11 is ignored
  78. * on old firmwares).
  79. * @TX_CMD_FLG_BT_DIS: disable BT priority for this frame
  80. * @TX_CMD_FLG_SEQ_CTL: set if FW should override the sequence control.
  81. * Should be set for mgmt, non-QOS data, mcast, bcast and in scan command
  82. * @TX_CMD_FLG_MORE_FRAG: this frame is non-last MPDU
  83. * @TX_CMD_FLG_TSF: FW should calculate and insert TSF in the frame
  84. * Should be set for beacons and probe responses
  85. * @TX_CMD_FLG_CALIB: activate PA TX power calibrations
  86. * @TX_CMD_FLG_KEEP_SEQ_CTL: if seq_ctl is set, don't increase inner seq count
  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_DUR: disable duration overwriting used in PS-Poll Assoc-id
  93. * @TX_CMD_FLG_FW_DROP: FW should mark frame to be dropped
  94. * @TX_CMD_FLG_EXEC_PAPD: execute PAPD
  95. * @TX_CMD_FLG_PAPD_TYPE: 0 for reference power, 1 for nominal power
  96. * @TX_CMD_FLG_HCCA_CHUNK: mark start of TSPEC chunk
  97. */
  98. enum iwl_tx_flags {
  99. TX_CMD_FLG_PROT_REQUIRE = BIT(0),
  100. TX_CMD_FLG_WRITE_TX_POWER = BIT(1),
  101. TX_CMD_FLG_ACK = BIT(3),
  102. TX_CMD_FLG_STA_RATE = BIT(4),
  103. TX_CMD_FLG_BAR = BIT(6),
  104. TX_CMD_FLG_TXOP_PROT = BIT(7),
  105. TX_CMD_FLG_VHT_NDPA = BIT(8),
  106. TX_CMD_FLG_HT_NDPA = BIT(9),
  107. TX_CMD_FLG_CSI_FDBK2HOST = BIT(10),
  108. TX_CMD_FLG_BT_PRIO_POS = 11,
  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_TSF = BIT(16),
  113. TX_CMD_FLG_CALIB = BIT(17),
  114. TX_CMD_FLG_KEEP_SEQ_CTL = BIT(18),
  115. TX_CMD_FLG_MH_PAD = BIT(20),
  116. TX_CMD_FLG_RESP_TO_DRV = BIT(21),
  117. TX_CMD_FLG_CCMP_AGG = BIT(22),
  118. TX_CMD_FLG_TKIP_MIC_DONE = BIT(23),
  119. TX_CMD_FLG_DUR = BIT(25),
  120. TX_CMD_FLG_FW_DROP = BIT(26),
  121. TX_CMD_FLG_EXEC_PAPD = BIT(27),
  122. TX_CMD_FLG_PAPD_TYPE = BIT(28),
  123. TX_CMD_FLG_HCCA_CHUNK = BIT(31)
  124. }; /* TX_FLAGS_BITS_API_S_VER_1 */
  125. /**
  126. * enum iwl_tx_pm_timeouts - pm timeout values in TX command
  127. * @PM_FRAME_NONE: no need to suspend sleep mode
  128. * @PM_FRAME_MGMT: fw suspend sleep mode for 100TU
  129. * @PM_FRAME_ASSOC: fw suspend sleep mode for 10sec
  130. */
  131. enum iwl_tx_pm_timeouts {
  132. PM_FRAME_NONE = 0,
  133. PM_FRAME_MGMT = 2,
  134. PM_FRAME_ASSOC = 3,
  135. };
  136. #define TX_CMD_SEC_MSK 0x07
  137. #define TX_CMD_SEC_WEP_KEY_IDX_POS 6
  138. #define TX_CMD_SEC_WEP_KEY_IDX_MSK 0xc0
  139. /**
  140. * enum iwl_tx_cmd_sec_ctrl - bitmasks for security control in TX command
  141. * @TX_CMD_SEC_WEP: WEP encryption algorithm.
  142. * @TX_CMD_SEC_CCM: CCM encryption algorithm.
  143. * @TX_CMD_SEC_TKIP: TKIP encryption algorithm.
  144. * @TX_CMD_SEC_EXT: extended cipher algorithm.
  145. * @TX_CMD_SEC_GCMP: GCMP encryption algorithm.
  146. * @TX_CMD_SEC_KEY128: set for 104 bits WEP key.
  147. * @TC_CMD_SEC_KEY_FROM_TABLE: for a non-WEP key, set if the key should be taken
  148. * from the table instead of from the TX command.
  149. * If the key is taken from the key table its index should be given by the
  150. * first byte of the TX command key field.
  151. */
  152. enum iwl_tx_cmd_sec_ctrl {
  153. TX_CMD_SEC_WEP = 0x01,
  154. TX_CMD_SEC_CCM = 0x02,
  155. TX_CMD_SEC_TKIP = 0x03,
  156. TX_CMD_SEC_EXT = 0x04,
  157. TX_CMD_SEC_GCMP = 0x05,
  158. TX_CMD_SEC_KEY128 = 0x08,
  159. TC_CMD_SEC_KEY_FROM_TABLE = 0x08,
  160. };
  161. /* TODO: how does these values are OK with only 16 bit variable??? */
  162. /*
  163. * TX command next frame info
  164. *
  165. * bits 0:2 - security control (TX_CMD_SEC_*)
  166. * bit 3 - immediate ACK required
  167. * bit 4 - rate is taken from STA table
  168. * bit 5 - frame belongs to BA stream
  169. * bit 6 - immediate BA response expected
  170. * bit 7 - unused
  171. * bits 8:15 - Station ID
  172. * bits 16:31 - rate
  173. */
  174. #define TX_CMD_NEXT_FRAME_ACK_MSK (0x8)
  175. #define TX_CMD_NEXT_FRAME_STA_RATE_MSK (0x10)
  176. #define TX_CMD_NEXT_FRAME_BA_MSK (0x20)
  177. #define TX_CMD_NEXT_FRAME_IMM_BA_RSP_MSK (0x40)
  178. #define TX_CMD_NEXT_FRAME_FLAGS_MSK (0xf8)
  179. #define TX_CMD_NEXT_FRAME_STA_ID_MSK (0xff00)
  180. #define TX_CMD_NEXT_FRAME_STA_ID_POS (8)
  181. #define TX_CMD_NEXT_FRAME_RATE_MSK (0xffff0000)
  182. #define TX_CMD_NEXT_FRAME_RATE_POS (16)
  183. /*
  184. * TX command Frame life time in us - to be written in pm_frame_timeout
  185. */
  186. #define TX_CMD_LIFE_TIME_INFINITE 0xFFFFFFFF
  187. #define TX_CMD_LIFE_TIME_DEFAULT 2000000 /* 2000 ms*/
  188. #define TX_CMD_LIFE_TIME_PROBE_RESP 40000 /* 40 ms */
  189. #define TX_CMD_LIFE_TIME_EXPIRED_FRAME 0
  190. /*
  191. * TID for non QoS frames - to be written in tid_tspec
  192. */
  193. #define IWL_TID_NON_QOS IWL_MAX_TID_COUNT
  194. /*
  195. * Limits on the retransmissions - to be written in {data,rts}_retry_limit
  196. */
  197. #define IWL_DEFAULT_TX_RETRY 15
  198. #define IWL_MGMT_DFAULT_RETRY_LIMIT 3
  199. #define IWL_RTS_DFAULT_RETRY_LIMIT 60
  200. #define IWL_BAR_DFAULT_RETRY_LIMIT 60
  201. #define IWL_LOW_RETRY_LIMIT 7
  202. /**
  203. * enum iwl_tx_offload_assist_flags_pos - set %iwl_tx_cmd offload_assist values
  204. * @TX_CMD_OFFLD_IP_HDR_OFFSET: offset to start of IP header (in words)
  205. * from mac header end. For normal case it is 4 words for SNAP.
  206. * note: tx_cmd, mac header and pad are not counted in the offset.
  207. * This is used to help the offload in case there is tunneling such as
  208. * IPv6 in IPv4, in such case the ip header offset should point to the
  209. * inner ip header and IPv4 checksum of the external header should be
  210. * calculated by driver.
  211. * @TX_CMD_OFFLD_L4_EN: enable TCP/UDP checksum
  212. * @TX_CMD_OFFLD_L3_EN: enable IP header checksum
  213. * @TX_CMD_OFFLD_MH_SIZE: size of the mac header in words. Includes the IV
  214. * field. Doesn't include the pad.
  215. * @TX_CMD_OFFLD_PAD: mark 2-byte pad was inserted after the mac header for
  216. * alignment
  217. * @TX_CMD_OFFLD_AMSDU: mark TX command is A-MSDU
  218. */
  219. enum iwl_tx_offload_assist_flags_pos {
  220. TX_CMD_OFFLD_IP_HDR = 0,
  221. TX_CMD_OFFLD_L4_EN = 6,
  222. TX_CMD_OFFLD_L3_EN = 7,
  223. TX_CMD_OFFLD_MH_SIZE = 8,
  224. TX_CMD_OFFLD_PAD = 13,
  225. TX_CMD_OFFLD_AMSDU = 14,
  226. };
  227. #define IWL_TX_CMD_OFFLD_MH_MASK 0x1f
  228. #define IWL_TX_CMD_OFFLD_IP_HDR_MASK 0x3f
  229. /* TODO: complete documentation for try_cnt and btkill_cnt */
  230. /**
  231. * struct iwl_tx_cmd - TX command struct to FW
  232. * ( TX_CMD = 0x1c )
  233. * @len: in bytes of the payload, see below for details
  234. * @offload_assist: TX offload configuration
  235. * @tx_flags: combination of TX_CMD_FLG_*
  236. * @rate_n_flags: rate for *all* Tx attempts, if TX_CMD_FLG_STA_RATE_MSK is
  237. * cleared. Combination of RATE_MCS_*
  238. * @sta_id: index of destination station in FW station table
  239. * @sec_ctl: security control, TX_CMD_SEC_*
  240. * @initial_rate_index: index into the the rate table for initial TX attempt.
  241. * Applied if TX_CMD_FLG_STA_RATE_MSK is set, normally 0 for data frames.
  242. * @key: security key
  243. * @next_frame_flags: TX_CMD_SEC_* and TX_CMD_NEXT_FRAME_*
  244. * @life_time: frame life time (usecs??)
  245. * @dram_lsb_ptr: Physical address of scratch area in the command (try_cnt +
  246. * btkill_cnd + reserved), first 32 bits. "0" disables usage.
  247. * @dram_msb_ptr: upper bits of the scratch physical address
  248. * @rts_retry_limit: max attempts for RTS
  249. * @data_retry_limit: max attempts to send the data packet
  250. * @tid_spec: TID/tspec
  251. * @pm_frame_timeout: PM TX frame timeout
  252. *
  253. * The byte count (both len and next_frame_len) includes MAC header
  254. * (24/26/30/32 bytes)
  255. * + 2 bytes pad if 26/30 header size
  256. * + 8 byte IV for CCM or TKIP (not used for WEP)
  257. * + Data payload
  258. * + 8-byte MIC (not used for CCM/WEP)
  259. * It does not include post-MAC padding, i.e.,
  260. * MIC (CCM) 8 bytes, ICV (WEP/TKIP/CKIP) 4 bytes, CRC 4 bytes.
  261. * Range of len: 14-2342 bytes.
  262. *
  263. * After the struct fields the MAC header is placed, plus any padding,
  264. * and then the actial payload.
  265. */
  266. struct iwl_tx_cmd {
  267. __le16 len;
  268. __le16 offload_assist;
  269. __le32 tx_flags;
  270. struct {
  271. u8 try_cnt;
  272. u8 btkill_cnt;
  273. __le16 reserved;
  274. } scratch; /* DRAM_SCRATCH_API_U_VER_1 */
  275. __le32 rate_n_flags;
  276. u8 sta_id;
  277. u8 sec_ctl;
  278. u8 initial_rate_index;
  279. u8 reserved2;
  280. u8 key[16];
  281. __le32 reserved3;
  282. __le32 life_time;
  283. __le32 dram_lsb_ptr;
  284. u8 dram_msb_ptr;
  285. u8 rts_retry_limit;
  286. u8 data_retry_limit;
  287. u8 tid_tspec;
  288. __le16 pm_frame_timeout;
  289. __le16 reserved4;
  290. u8 payload[0];
  291. struct ieee80211_hdr hdr[0];
  292. } __packed; /* TX_CMD_API_S_VER_6 */
  293. /*
  294. * TX response related data
  295. */
  296. /*
  297. * enum iwl_tx_status - status that is returned by the fw after attempts to Tx
  298. * @TX_STATUS_SUCCESS:
  299. * @TX_STATUS_DIRECT_DONE:
  300. * @TX_STATUS_POSTPONE_DELAY:
  301. * @TX_STATUS_POSTPONE_FEW_BYTES:
  302. * @TX_STATUS_POSTPONE_BT_PRIO:
  303. * @TX_STATUS_POSTPONE_QUIET_PERIOD:
  304. * @TX_STATUS_POSTPONE_CALC_TTAK:
  305. * @TX_STATUS_FAIL_INTERNAL_CROSSED_RETRY:
  306. * @TX_STATUS_FAIL_SHORT_LIMIT:
  307. * @TX_STATUS_FAIL_LONG_LIMIT:
  308. * @TX_STATUS_FAIL_UNDERRUN:
  309. * @TX_STATUS_FAIL_DRAIN_FLOW:
  310. * @TX_STATUS_FAIL_RFKILL_FLUSH:
  311. * @TX_STATUS_FAIL_LIFE_EXPIRE:
  312. * @TX_STATUS_FAIL_DEST_PS:
  313. * @TX_STATUS_FAIL_HOST_ABORTED:
  314. * @TX_STATUS_FAIL_BT_RETRY:
  315. * @TX_STATUS_FAIL_STA_INVALID:
  316. * @TX_TATUS_FAIL_FRAG_DROPPED:
  317. * @TX_STATUS_FAIL_TID_DISABLE:
  318. * @TX_STATUS_FAIL_FIFO_FLUSHED:
  319. * @TX_STATUS_FAIL_SMALL_CF_POLL:
  320. * @TX_STATUS_FAIL_FW_DROP:
  321. * @TX_STATUS_FAIL_STA_COLOR_MISMATCH: mismatch between color of Tx cmd and
  322. * STA table
  323. * @TX_FRAME_STATUS_INTERNAL_ABORT:
  324. * @TX_MODE_MSK:
  325. * @TX_MODE_NO_BURST:
  326. * @TX_MODE_IN_BURST_SEQ:
  327. * @TX_MODE_FIRST_IN_BURST:
  328. * @TX_QUEUE_NUM_MSK:
  329. *
  330. * Valid only if frame_count =1
  331. * TODO: complete documentation
  332. */
  333. enum iwl_tx_status {
  334. TX_STATUS_MSK = 0x000000ff,
  335. TX_STATUS_SUCCESS = 0x01,
  336. TX_STATUS_DIRECT_DONE = 0x02,
  337. /* postpone TX */
  338. TX_STATUS_POSTPONE_DELAY = 0x40,
  339. TX_STATUS_POSTPONE_FEW_BYTES = 0x41,
  340. TX_STATUS_POSTPONE_BT_PRIO = 0x42,
  341. TX_STATUS_POSTPONE_QUIET_PERIOD = 0x43,
  342. TX_STATUS_POSTPONE_CALC_TTAK = 0x44,
  343. /* abort TX */
  344. TX_STATUS_FAIL_INTERNAL_CROSSED_RETRY = 0x81,
  345. TX_STATUS_FAIL_SHORT_LIMIT = 0x82,
  346. TX_STATUS_FAIL_LONG_LIMIT = 0x83,
  347. TX_STATUS_FAIL_UNDERRUN = 0x84,
  348. TX_STATUS_FAIL_DRAIN_FLOW = 0x85,
  349. TX_STATUS_FAIL_RFKILL_FLUSH = 0x86,
  350. TX_STATUS_FAIL_LIFE_EXPIRE = 0x87,
  351. TX_STATUS_FAIL_DEST_PS = 0x88,
  352. TX_STATUS_FAIL_HOST_ABORTED = 0x89,
  353. TX_STATUS_FAIL_BT_RETRY = 0x8a,
  354. TX_STATUS_FAIL_STA_INVALID = 0x8b,
  355. TX_STATUS_FAIL_FRAG_DROPPED = 0x8c,
  356. TX_STATUS_FAIL_TID_DISABLE = 0x8d,
  357. TX_STATUS_FAIL_FIFO_FLUSHED = 0x8e,
  358. TX_STATUS_FAIL_SMALL_CF_POLL = 0x8f,
  359. TX_STATUS_FAIL_FW_DROP = 0x90,
  360. TX_STATUS_FAIL_STA_COLOR_MISMATCH = 0x91,
  361. TX_STATUS_INTERNAL_ABORT = 0x92,
  362. TX_MODE_MSK = 0x00000f00,
  363. TX_MODE_NO_BURST = 0x00000000,
  364. TX_MODE_IN_BURST_SEQ = 0x00000100,
  365. TX_MODE_FIRST_IN_BURST = 0x00000200,
  366. TX_QUEUE_NUM_MSK = 0x0001f000,
  367. TX_NARROW_BW_MSK = 0x00060000,
  368. TX_NARROW_BW_1DIV2 = 0x00020000,
  369. TX_NARROW_BW_1DIV4 = 0x00040000,
  370. TX_NARROW_BW_1DIV8 = 0x00060000,
  371. };
  372. /*
  373. * enum iwl_tx_agg_status - TX aggregation status
  374. * @AGG_TX_STATE_STATUS_MSK:
  375. * @AGG_TX_STATE_TRANSMITTED:
  376. * @AGG_TX_STATE_UNDERRUN:
  377. * @AGG_TX_STATE_BT_PRIO:
  378. * @AGG_TX_STATE_FEW_BYTES:
  379. * @AGG_TX_STATE_ABORT:
  380. * @AGG_TX_STATE_LAST_SENT_TTL:
  381. * @AGG_TX_STATE_LAST_SENT_TRY_CNT:
  382. * @AGG_TX_STATE_LAST_SENT_BT_KILL:
  383. * @AGG_TX_STATE_SCD_QUERY:
  384. * @AGG_TX_STATE_TEST_BAD_CRC32:
  385. * @AGG_TX_STATE_RESPONSE:
  386. * @AGG_TX_STATE_DUMP_TX:
  387. * @AGG_TX_STATE_DELAY_TX:
  388. * @AGG_TX_STATE_TRY_CNT_MSK: Retry count for 1st frame in aggregation (retries
  389. * occur if tx failed for this frame when it was a member of a previous
  390. * aggregation block). If rate scaling is used, retry count indicates the
  391. * rate table entry used for all frames in the new agg.
  392. *@ AGG_TX_STATE_SEQ_NUM_MSK: Command ID and sequence number of Tx command for
  393. * this frame
  394. *
  395. * TODO: complete documentation
  396. */
  397. enum iwl_tx_agg_status {
  398. AGG_TX_STATE_STATUS_MSK = 0x00fff,
  399. AGG_TX_STATE_TRANSMITTED = 0x000,
  400. AGG_TX_STATE_UNDERRUN = 0x001,
  401. AGG_TX_STATE_BT_PRIO = 0x002,
  402. AGG_TX_STATE_FEW_BYTES = 0x004,
  403. AGG_TX_STATE_ABORT = 0x008,
  404. AGG_TX_STATE_LAST_SENT_TTL = 0x010,
  405. AGG_TX_STATE_LAST_SENT_TRY_CNT = 0x020,
  406. AGG_TX_STATE_LAST_SENT_BT_KILL = 0x040,
  407. AGG_TX_STATE_SCD_QUERY = 0x080,
  408. AGG_TX_STATE_TEST_BAD_CRC32 = 0x0100,
  409. AGG_TX_STATE_RESPONSE = 0x1ff,
  410. AGG_TX_STATE_DUMP_TX = 0x200,
  411. AGG_TX_STATE_DELAY_TX = 0x400,
  412. AGG_TX_STATE_TRY_CNT_POS = 12,
  413. AGG_TX_STATE_TRY_CNT_MSK = 0xf << AGG_TX_STATE_TRY_CNT_POS,
  414. };
  415. #define AGG_TX_STATE_LAST_SENT_MSK (AGG_TX_STATE_LAST_SENT_TTL| \
  416. AGG_TX_STATE_LAST_SENT_TRY_CNT| \
  417. AGG_TX_STATE_LAST_SENT_BT_KILL)
  418. /*
  419. * The mask below describes a status where we are absolutely sure that the MPDU
  420. * wasn't sent. For BA/Underrun we cannot be that sure. All we know that we've
  421. * written the bytes to the TXE, but we know nothing about what the DSP did.
  422. */
  423. #define AGG_TX_STAT_FRAME_NOT_SENT (AGG_TX_STATE_FEW_BYTES | \
  424. AGG_TX_STATE_ABORT | \
  425. AGG_TX_STATE_SCD_QUERY)
  426. /*
  427. * REPLY_TX = 0x1c (response)
  428. *
  429. * This response may be in one of two slightly different formats, indicated
  430. * by the frame_count field:
  431. *
  432. * 1) No aggregation (frame_count == 1). This reports Tx results for a single
  433. * frame. Multiple attempts, at various bit rates, may have been made for
  434. * this frame.
  435. *
  436. * 2) Aggregation (frame_count > 1). This reports Tx results for two or more
  437. * frames that used block-acknowledge. All frames were transmitted at
  438. * same rate. Rate scaling may have been used if first frame in this new
  439. * agg block failed in previous agg block(s).
  440. *
  441. * Note that, for aggregation, ACK (block-ack) status is not delivered
  442. * here; block-ack has not been received by the time the device records
  443. * this status.
  444. * This status relates to reasons the tx might have been blocked or aborted
  445. * within the device, rather than whether it was received successfully by
  446. * the destination station.
  447. */
  448. /**
  449. * struct agg_tx_status - per packet TX aggregation status
  450. * @status: enum iwl_tx_agg_status
  451. * @sequence: Sequence # for this frame's Tx cmd (not SSN!)
  452. */
  453. struct agg_tx_status {
  454. __le16 status;
  455. __le16 sequence;
  456. } __packed;
  457. /*
  458. * definitions for initial rate index field
  459. * bits [3:0] initial rate index
  460. * bits [6:4] rate table color, used for the initial rate
  461. * bit-7 invalid rate indication
  462. */
  463. #define TX_RES_INIT_RATE_INDEX_MSK 0x0f
  464. #define TX_RES_RATE_TABLE_COLOR_MSK 0x70
  465. #define TX_RES_INV_RATE_INDEX_MSK 0x80
  466. #define IWL_MVM_TX_RES_GET_TID(_ra_tid) ((_ra_tid) & 0x0f)
  467. #define IWL_MVM_TX_RES_GET_RA(_ra_tid) ((_ra_tid) >> 4)
  468. /**
  469. * struct iwl_mvm_tx_resp - notifies that fw is TXing a packet
  470. * ( REPLY_TX = 0x1c )
  471. * @frame_count: 1 no aggregation, >1 aggregation
  472. * @bt_kill_count: num of times blocked by bluetooth (unused for agg)
  473. * @failure_rts: num of failures due to unsuccessful RTS
  474. * @failure_frame: num failures due to no ACK (unused for agg)
  475. * @initial_rate: for non-agg: rate of the successful Tx. For agg: rate of the
  476. * Tx of all the batch. RATE_MCS_*
  477. * @wireless_media_time: for non-agg: RTS + CTS + frame tx attempts time + ACK.
  478. * for agg: RTS + CTS + aggregation tx time + block-ack time.
  479. * in usec.
  480. * @pa_status: tx power info
  481. * @pa_integ_res_a: tx power info
  482. * @pa_integ_res_b: tx power info
  483. * @pa_integ_res_c: tx power info
  484. * @measurement_req_id: tx power info
  485. * @tfd_info: TFD information set by the FH
  486. * @seq_ctl: sequence control from the Tx cmd
  487. * @byte_cnt: byte count from the Tx cmd
  488. * @tlc_info: TLC rate info
  489. * @ra_tid: bits [3:0] = ra, bits [7:4] = tid
  490. * @frame_ctrl: frame control
  491. * @status: for non-agg: frame status TX_STATUS_*
  492. * for agg: status of 1st frame, AGG_TX_STATE_*; other frame status fields
  493. * follow this one, up to frame_count.
  494. *
  495. * After the array of statuses comes the SSN of the SCD. Look at
  496. * %iwl_mvm_get_scd_ssn for more details.
  497. */
  498. struct iwl_mvm_tx_resp {
  499. u8 frame_count;
  500. u8 bt_kill_count;
  501. u8 failure_rts;
  502. u8 failure_frame;
  503. __le32 initial_rate;
  504. __le16 wireless_media_time;
  505. u8 pa_status;
  506. u8 pa_integ_res_a[3];
  507. u8 pa_integ_res_b[3];
  508. u8 pa_integ_res_c[3];
  509. __le16 measurement_req_id;
  510. u8 reduced_tpc;
  511. u8 reserved;
  512. __le32 tfd_info;
  513. __le16 seq_ctl;
  514. __le16 byte_cnt;
  515. u8 tlc_info;
  516. u8 ra_tid;
  517. __le16 frame_ctrl;
  518. struct agg_tx_status status;
  519. } __packed; /* TX_RSP_API_S_VER_3 */
  520. /**
  521. * struct iwl_mvm_ba_notif - notifies about reception of BA
  522. * ( BA_NOTIF = 0xc5 )
  523. * @sta_addr_lo32: lower 32 bits of the MAC address
  524. * @sta_addr_hi16: upper 16 bits of the MAC address
  525. * @sta_id: Index of recipient (BA-sending) station in fw's station table
  526. * @tid: tid of the session
  527. * @seq_ctl:
  528. * @bitmap: the bitmap of the BA notification as seen in the air
  529. * @scd_flow: the tx queue this BA relates to
  530. * @scd_ssn: the index of the last contiguously sent packet
  531. * @txed: number of Txed frames in this batch
  532. * @txed_2_done: number of Acked frames in this batch
  533. * @reduced_txp: power reduced according to TPC. This is the actual value and
  534. * not a copy from the LQ command. Thus, if not the first rate was used
  535. * for Tx-ing then this value will be set to 0 by FW.
  536. */
  537. struct iwl_mvm_ba_notif {
  538. __le32 sta_addr_lo32;
  539. __le16 sta_addr_hi16;
  540. __le16 reserved;
  541. u8 sta_id;
  542. u8 tid;
  543. __le16 seq_ctl;
  544. __le64 bitmap;
  545. __le16 scd_flow;
  546. __le16 scd_ssn;
  547. u8 txed;
  548. u8 txed_2_done;
  549. u8 reduced_txp;
  550. u8 reserved1;
  551. } __packed;
  552. /**
  553. * struct iwl_mvm_compressed_ba_tfd - progress of a TFD queue
  554. * @q_num: TFD queue number
  555. * @tfd_index: Index of first un-acked frame in the TFD queue
  556. */
  557. struct iwl_mvm_compressed_ba_tfd {
  558. u8 q_num;
  559. u8 reserved;
  560. __le16 tfd_index;
  561. } __packed; /* COMPRESSED_BA_TFD_API_S_VER_1 */
  562. /**
  563. * struct iwl_mvm_compressed_ba_ratid - progress of a RA TID queue
  564. * @q_num: RA TID queue number
  565. * @tid: TID of the queue
  566. * @ssn: BA window current SSN
  567. */
  568. struct iwl_mvm_compressed_ba_ratid {
  569. u8 q_num;
  570. u8 tid;
  571. __le16 ssn;
  572. } __packed; /* COMPRESSED_BA_RATID_API_S_VER_1 */
  573. /*
  574. * enum iwl_mvm_ba_resp_flags - TX aggregation status
  575. * @IWL_MVM_BA_RESP_TX_AGG: generated due to BA
  576. * @IWL_MVM_BA_RESP_TX_BAR: generated due to BA after BAR
  577. * @IWL_MVM_BA_RESP_TX_AGG_FAIL: aggregation didn't receive BA
  578. * @IWL_MVM_BA_RESP_TX_UNDERRUN: aggregation got underrun
  579. * @IWL_MVM_BA_RESP_TX_BT_KILL: aggregation got BT-kill
  580. * @IWL_MVM_BA_RESP_TX_DSP_TIMEOUT: aggregation didn't finish within the
  581. * expected time
  582. */
  583. enum iwl_mvm_ba_resp_flags {
  584. IWL_MVM_BA_RESP_TX_AGG,
  585. IWL_MVM_BA_RESP_TX_BAR,
  586. IWL_MVM_BA_RESP_TX_AGG_FAIL,
  587. IWL_MVM_BA_RESP_TX_UNDERRUN,
  588. IWL_MVM_BA_RESP_TX_BT_KILL,
  589. IWL_MVM_BA_RESP_TX_DSP_TIMEOUT
  590. };
  591. /**
  592. * struct iwl_mvm_compressed_ba_notif - notifies about reception of BA
  593. * ( BA_NOTIF = 0xc5 )
  594. * @flags: status flag, see the &iwl_mvm_ba_resp_flags
  595. * @sta_id: Index of recipient (BA-sending) station in fw's station table
  596. * @reduced_txp: power reduced according to TPC. This is the actual value and
  597. * not a copy from the LQ command. Thus, if not the first rate was used
  598. * for Tx-ing then this value will be set to 0 by FW.
  599. * @initial_rate: TLC rate info, initial rate index, TLC table color
  600. * @retry_cnt: retry count
  601. * @query_byte_cnt: SCD query byte count
  602. * @query_frame_cnt: SCD query frame count
  603. * @txed: number of frames sent in the aggregation (all-TIDs)
  604. * @done: number of frames that were Acked by the BA (all-TIDs)
  605. * @wireless_time: Wireless-media time
  606. * @tx_rate: the rate the aggregation was sent at
  607. * @tfd_cnt: number of TFD-Q elements
  608. * @ra_tid_cnt: number of RATID-Q elements
  609. */
  610. struct iwl_mvm_compressed_ba_notif {
  611. __le32 flags;
  612. u8 sta_id;
  613. u8 reduced_txp;
  614. u8 initial_rate;
  615. u8 retry_cnt;
  616. __le32 query_byte_cnt;
  617. __le16 query_frame_cnt;
  618. __le16 txed;
  619. __le16 done;
  620. __le32 wireless_time;
  621. __le32 tx_rate;
  622. __le16 tfd_cnt;
  623. __le16 ra_tid_cnt;
  624. struct iwl_mvm_compressed_ba_tfd tfd[1];
  625. struct iwl_mvm_compressed_ba_ratid ra_tid[0];
  626. } __packed; /* COMPRESSED_BA_RES_API_S_VER_4 */
  627. /**
  628. * struct iwl_mac_beacon_cmd_v6 - beacon template command
  629. * @tx: the tx commands associated with the beacon frame
  630. * @template_id: currently equal to the mac context id of the coresponding
  631. * mac.
  632. * @tim_idx: the offset of the tim IE in the beacon
  633. * @tim_size: the length of the tim IE
  634. * @frame: the template of the beacon frame
  635. */
  636. struct iwl_mac_beacon_cmd_v6 {
  637. struct iwl_tx_cmd tx;
  638. __le32 template_id;
  639. __le32 tim_idx;
  640. __le32 tim_size;
  641. struct ieee80211_hdr frame[0];
  642. } __packed; /* BEACON_TEMPLATE_CMD_API_S_VER_6 */
  643. /**
  644. * struct iwl_mac_beacon_cmd - beacon template command with offloaded CSA
  645. * @tx: the tx commands associated with the beacon frame
  646. * @template_id: currently equal to the mac context id of the coresponding
  647. * mac.
  648. * @tim_idx: the offset of the tim IE in the beacon
  649. * @tim_size: the length of the tim IE
  650. * @ecsa_offset: offset to the ECSA IE if present
  651. * @csa_offset: offset to the CSA IE if present
  652. * @frame: the template of the beacon frame
  653. */
  654. struct iwl_mac_beacon_cmd {
  655. struct iwl_tx_cmd tx;
  656. __le32 template_id;
  657. __le32 tim_idx;
  658. __le32 tim_size;
  659. __le32 ecsa_offset;
  660. __le32 csa_offset;
  661. struct ieee80211_hdr frame[0];
  662. } __packed; /* BEACON_TEMPLATE_CMD_API_S_VER_7 */
  663. struct iwl_beacon_notif {
  664. struct iwl_mvm_tx_resp beacon_notify_hdr;
  665. __le64 tsf;
  666. __le32 ibss_mgr_status;
  667. } __packed;
  668. /**
  669. * struct iwl_extended_beacon_notif - notifies about beacon transmission
  670. * @beacon_notify_hdr: tx response command associated with the beacon
  671. * @tsf: last beacon tsf
  672. * @ibss_mgr_status: whether IBSS is manager
  673. * @gp2: last beacon time in gp2
  674. */
  675. struct iwl_extended_beacon_notif {
  676. struct iwl_mvm_tx_resp beacon_notify_hdr;
  677. __le64 tsf;
  678. __le32 ibss_mgr_status;
  679. __le32 gp2;
  680. } __packed; /* BEACON_NTFY_API_S_VER_5 */
  681. /**
  682. * enum iwl_dump_control - dump (flush) control flags
  683. * @DUMP_TX_FIFO_FLUSH: Dump MSDUs until the the FIFO is empty
  684. * and the TFD queues are empty.
  685. */
  686. enum iwl_dump_control {
  687. DUMP_TX_FIFO_FLUSH = BIT(1),
  688. };
  689. /**
  690. * struct iwl_tx_path_flush_cmd -- queue/FIFO flush command
  691. * @queues_ctl: bitmap of queues to flush
  692. * @flush_ctl: control flags
  693. * @reserved: reserved
  694. */
  695. struct iwl_tx_path_flush_cmd {
  696. __le32 queues_ctl;
  697. __le16 flush_ctl;
  698. __le16 reserved;
  699. } __packed; /* TX_PATH_FLUSH_CMD_API_S_VER_1 */
  700. /**
  701. * iwl_mvm_get_scd_ssn - returns the SSN of the SCD
  702. * @tx_resp: the Tx response from the fw (agg or non-agg)
  703. *
  704. * When the fw sends an AMPDU, it fetches the MPDUs one after the other. Since
  705. * it can't know that everything will go well until the end of the AMPDU, it
  706. * can't know in advance the number of MPDUs that will be sent in the current
  707. * batch. This is why it writes the agg Tx response while it fetches the MPDUs.
  708. * Hence, it can't know in advance what the SSN of the SCD will be at the end
  709. * of the batch. This is why the SSN of the SCD is written at the end of the
  710. * whole struct at a variable offset. This function knows how to cope with the
  711. * variable offset and returns the SSN of the SCD.
  712. */
  713. static inline u32 iwl_mvm_get_scd_ssn(struct iwl_mvm_tx_resp *tx_resp)
  714. {
  715. return le32_to_cpup((__le32 *)&tx_resp->status +
  716. tx_resp->frame_count) & 0xfff;
  717. }
  718. /* Available options for the SCD_QUEUE_CFG HCMD */
  719. enum iwl_scd_cfg_actions {
  720. SCD_CFG_DISABLE_QUEUE = 0x0,
  721. SCD_CFG_ENABLE_QUEUE = 0x1,
  722. SCD_CFG_UPDATE_QUEUE_TID = 0x2,
  723. };
  724. /**
  725. * struct iwl_scd_txq_cfg_cmd - New txq hw scheduler config command
  726. * @token:
  727. * @sta_id: station id
  728. * @tid:
  729. * @scd_queue: scheduler queue to confiug
  730. * @action: 1 queue enable, 0 queue disable, 2 change txq's tid owner
  731. * Value is one of %iwl_scd_cfg_actions options
  732. * @aggregate: 1 aggregated queue, 0 otherwise
  733. * @tx_fifo: %enum iwl_mvm_tx_fifo
  734. * @window: BA window size
  735. * @ssn: SSN for the BA agreement
  736. */
  737. struct iwl_scd_txq_cfg_cmd {
  738. u8 token;
  739. u8 sta_id;
  740. u8 tid;
  741. u8 scd_queue;
  742. u8 action;
  743. u8 aggregate;
  744. u8 tx_fifo;
  745. u8 window;
  746. __le16 ssn;
  747. __le16 reserved;
  748. } __packed; /* SCD_QUEUE_CFG_CMD_API_S_VER_1 */
  749. /**
  750. * struct iwl_scd_txq_cfg_rsp
  751. * @token: taken from the command
  752. * @sta_id: station id from the command
  753. * @tid: tid from the command
  754. * @scd_queue: scd_queue from the command
  755. */
  756. struct iwl_scd_txq_cfg_rsp {
  757. u8 token;
  758. u8 sta_id;
  759. u8 tid;
  760. u8 scd_queue;
  761. } __packed; /* SCD_QUEUE_CFG_RSP_API_S_VER_1 */
  762. #endif /* __fw_api_tx_h__ */