You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708
  1. /*
  2. * Copyright (c) 2008-2011 Atheros Communications Inc.
  3. *
  4. * Modified for iPXE by Scott K Logan <logans@cottsay.net> July 2011
  5. * Original from Linux kernel 3.0.1
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for any
  8. * purpose with or without fee is hereby granted, provided that the above
  9. * copyright notice and this permission notice appear in all copies.
  10. *
  11. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  12. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  13. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  14. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  15. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  16. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  17. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  18. */
  19. #ifndef MAC_H
  20. #define MAC_H
  21. #include <unistd.h>
  22. #define RXSTATUS_RATE(ah, ads) (AR_SREV_5416_20_OR_LATER(ah) ? \
  23. MS(ads->ds_rxstatus0, AR_RxRate) : \
  24. (ads->ds_rxstatus3 >> 2) & 0xFF)
  25. #define set11nTries(_series, _index) \
  26. (SM((_series)[_index].Tries, AR_XmitDataTries##_index))
  27. #define set11nRate(_series, _index) \
  28. (SM((_series)[_index].Rate, AR_XmitRate##_index))
  29. #define set11nPktDurRTSCTS(_series, _index) \
  30. (SM((_series)[_index].PktDuration, AR_PacketDur##_index) | \
  31. ((_series)[_index].RateFlags & ATH9K_RATESERIES_RTS_CTS ? \
  32. AR_RTSCTSQual##_index : 0))
  33. #define set11nRateFlags(_series, _index) \
  34. (((_series)[_index].RateFlags & ATH9K_RATESERIES_2040 ? \
  35. AR_2040_##_index : 0) \
  36. |((_series)[_index].RateFlags & ATH9K_RATESERIES_HALFGI ? \
  37. AR_GI##_index : 0) \
  38. |((_series)[_index].RateFlags & ATH9K_RATESERIES_STBC ? \
  39. AR_STBC##_index : 0) \
  40. |SM((_series)[_index].ChSel, AR_ChainSel##_index))
  41. #define CCK_SIFS_TIME 10
  42. #define CCK_PREAMBLE_BITS 144
  43. #define CCK_PLCP_BITS 48
  44. #define OFDM_SIFS_TIME 16
  45. #define OFDM_PREAMBLE_TIME 20
  46. #define OFDM_PLCP_BITS 22
  47. #define OFDM_SYMBOL_TIME 4
  48. #define OFDM_SIFS_TIME_HALF 32
  49. #define OFDM_PREAMBLE_TIME_HALF 40
  50. #define OFDM_PLCP_BITS_HALF 22
  51. #define OFDM_SYMBOL_TIME_HALF 8
  52. #define OFDM_SIFS_TIME_QUARTER 64
  53. #define OFDM_PREAMBLE_TIME_QUARTER 80
  54. #define OFDM_PLCP_BITS_QUARTER 22
  55. #define OFDM_SYMBOL_TIME_QUARTER 16
  56. #define INIT_AIFS 2
  57. #define INIT_CWMIN 15
  58. #define INIT_CWMIN_11B 31
  59. #define INIT_CWMAX 1023
  60. #define INIT_SH_RETRY 10
  61. #define INIT_LG_RETRY 10
  62. #define INIT_SSH_RETRY 32
  63. #define INIT_SLG_RETRY 32
  64. #define ATH9K_SLOT_TIME_6 6
  65. #define ATH9K_SLOT_TIME_9 9
  66. #define ATH9K_SLOT_TIME_20 20
  67. #define ATH9K_TXERR_XRETRY 0x01
  68. #define ATH9K_TXERR_FILT 0x02
  69. #define ATH9K_TXERR_FIFO 0x04
  70. #define ATH9K_TXERR_XTXOP 0x08
  71. #define ATH9K_TXERR_TIMER_EXPIRED 0x10
  72. #define ATH9K_TX_ACKED 0x20
  73. #define ATH9K_TXERR_MASK \
  74. (ATH9K_TXERR_XRETRY | ATH9K_TXERR_FILT | ATH9K_TXERR_FIFO | \
  75. ATH9K_TXERR_XTXOP | ATH9K_TXERR_TIMER_EXPIRED)
  76. #define ATH9K_TX_BA 0x01
  77. #define ATH9K_TX_PWRMGMT 0x02
  78. #define ATH9K_TX_DESC_CFG_ERR 0x04
  79. #define ATH9K_TX_DATA_UNDERRUN 0x08
  80. #define ATH9K_TX_DELIM_UNDERRUN 0x10
  81. #define ATH9K_TX_SW_FILTERED 0x80
  82. /* 64 bytes */
  83. #define MIN_TX_FIFO_THRESHOLD 0x1
  84. /*
  85. * Single stream device AR9285 and AR9271 require 2 KB
  86. * to work around a hardware issue, all other devices
  87. * have can use the max 4 KB limit.
  88. */
  89. #define MAX_TX_FIFO_THRESHOLD ((4096 / 64) - 1)
  90. struct ath_tx_status {
  91. u32 ts_tstamp;
  92. u16 ts_seqnum;
  93. u8 ts_status;
  94. u8 ts_rateindex;
  95. int8_t ts_rssi;
  96. u8 ts_shortretry;
  97. u8 ts_longretry;
  98. u8 ts_virtcol;
  99. u8 ts_flags;
  100. int8_t ts_rssi_ctl0;
  101. int8_t ts_rssi_ctl1;
  102. int8_t ts_rssi_ctl2;
  103. int8_t ts_rssi_ext0;
  104. int8_t ts_rssi_ext1;
  105. int8_t ts_rssi_ext2;
  106. u8 qid;
  107. u16 desc_id;
  108. u8 tid;
  109. u32 ba_low;
  110. u32 ba_high;
  111. u32 evm0;
  112. u32 evm1;
  113. u32 evm2;
  114. };
  115. struct ath_rx_status {
  116. u32 rs_tstamp;
  117. u16 rs_datalen;
  118. u8 rs_status;
  119. u8 rs_phyerr;
  120. int8_t rs_rssi;
  121. u8 rs_keyix;
  122. u8 rs_rate;
  123. u8 rs_antenna;
  124. u8 rs_more;
  125. int8_t rs_rssi_ctl0;
  126. int8_t rs_rssi_ctl1;
  127. int8_t rs_rssi_ctl2;
  128. int8_t rs_rssi_ext0;
  129. int8_t rs_rssi_ext1;
  130. int8_t rs_rssi_ext2;
  131. u8 rs_isaggr;
  132. u8 rs_moreaggr;
  133. u8 rs_num_delims;
  134. u8 rs_flags;
  135. u32 evm0;
  136. u32 evm1;
  137. u32 evm2;
  138. u32 evm3;
  139. u32 evm4;
  140. };
  141. struct ath_htc_rx_status {
  142. uint64_t rs_tstamp;
  143. uint16_t rs_datalen;
  144. u8 rs_status;
  145. u8 rs_phyerr;
  146. int8_t rs_rssi;
  147. int8_t rs_rssi_ctl0;
  148. int8_t rs_rssi_ctl1;
  149. int8_t rs_rssi_ctl2;
  150. int8_t rs_rssi_ext0;
  151. int8_t rs_rssi_ext1;
  152. int8_t rs_rssi_ext2;
  153. u8 rs_keyix;
  154. u8 rs_rate;
  155. u8 rs_antenna;
  156. u8 rs_more;
  157. u8 rs_isaggr;
  158. u8 rs_moreaggr;
  159. u8 rs_num_delims;
  160. u8 rs_flags;
  161. u8 rs_dummy;
  162. uint32_t evm0;
  163. uint32_t evm1;
  164. uint32_t evm2;
  165. };
  166. #define ATH9K_RXERR_CRC 0x01
  167. #define ATH9K_RXERR_PHY 0x02
  168. #define ATH9K_RXERR_FIFO 0x04
  169. #define ATH9K_RXERR_DECRYPT 0x08
  170. #define ATH9K_RXERR_MIC 0x10
  171. #define ATH9K_RX_MORE 0x01
  172. #define ATH9K_RX_MORE_AGGR 0x02
  173. #define ATH9K_RX_GI 0x04
  174. #define ATH9K_RX_2040 0x08
  175. #define ATH9K_RX_DELIM_CRC_PRE 0x10
  176. #define ATH9K_RX_DELIM_CRC_POST 0x20
  177. #define ATH9K_RX_DECRYPT_BUSY 0x40
  178. #define ATH9K_RXKEYIX_INVALID ((u8)-1)
  179. #define ATH9K_TXKEYIX_INVALID ((u32)-1)
  180. enum ath9k_phyerr {
  181. ATH9K_PHYERR_UNDERRUN = 0, /* Transmit underrun */
  182. ATH9K_PHYERR_TIMING = 1, /* Timing error */
  183. ATH9K_PHYERR_PARITY = 2, /* Illegal parity */
  184. ATH9K_PHYERR_RATE = 3, /* Illegal rate */
  185. ATH9K_PHYERR_LENGTH = 4, /* Illegal length */
  186. ATH9K_PHYERR_RADAR = 5, /* Radar detect */
  187. ATH9K_PHYERR_SERVICE = 6, /* Illegal service */
  188. ATH9K_PHYERR_TOR = 7, /* Transmit override receive */
  189. ATH9K_PHYERR_OFDM_TIMING = 17,
  190. ATH9K_PHYERR_OFDM_SIGNAL_PARITY = 18,
  191. ATH9K_PHYERR_OFDM_RATE_ILLEGAL = 19,
  192. ATH9K_PHYERR_OFDM_LENGTH_ILLEGAL = 20,
  193. ATH9K_PHYERR_OFDM_POWER_DROP = 21,
  194. ATH9K_PHYERR_OFDM_SERVICE = 22,
  195. ATH9K_PHYERR_OFDM_RESTART = 23,
  196. ATH9K_PHYERR_FALSE_RADAR_EXT = 24,
  197. ATH9K_PHYERR_CCK_TIMING = 25,
  198. ATH9K_PHYERR_CCK_HEADER_CRC = 26,
  199. ATH9K_PHYERR_CCK_RATE_ILLEGAL = 27,
  200. ATH9K_PHYERR_CCK_SERVICE = 30,
  201. ATH9K_PHYERR_CCK_RESTART = 31,
  202. ATH9K_PHYERR_CCK_LENGTH_ILLEGAL = 32,
  203. ATH9K_PHYERR_CCK_POWER_DROP = 33,
  204. ATH9K_PHYERR_HT_CRC_ERROR = 34,
  205. ATH9K_PHYERR_HT_LENGTH_ILLEGAL = 35,
  206. ATH9K_PHYERR_HT_RATE_ILLEGAL = 36,
  207. ATH9K_PHYERR_MAX = 37,
  208. };
  209. struct ath_desc {
  210. u32 ds_link;
  211. u32 ds_data;
  212. u32 ds_ctl0;
  213. u32 ds_ctl1;
  214. u32 ds_hw[20];
  215. // void *ds_vdata;
  216. } __attribute__((packed, aligned(4)));
  217. #define ATH9K_TXDESC_NOACK 0x0002
  218. #define ATH9K_TXDESC_RTSENA 0x0004
  219. #define ATH9K_TXDESC_CTSENA 0x0008
  220. /* ATH9K_TXDESC_INTREQ forces a tx interrupt to be generated for
  221. * the descriptor its marked on. We take a tx interrupt to reap
  222. * descriptors when the h/w hits an EOL condition or
  223. * when the descriptor is specifically marked to generate
  224. * an interrupt with this flag. Descriptors should be
  225. * marked periodically to insure timely replenishing of the
  226. * supply needed for sending frames. Defering interrupts
  227. * reduces system load and potentially allows more concurrent
  228. * work to be done but if done to aggressively can cause
  229. * senders to backup. When the hardware queue is left too
  230. * large rate control information may also be too out of
  231. * date. An Alternative for this is TX interrupt mitigation
  232. * but this needs more testing. */
  233. #define ATH9K_TXDESC_INTREQ 0x0010
  234. #define ATH9K_TXDESC_VEOL 0x0020
  235. #define ATH9K_TXDESC_EXT_ONLY 0x0040
  236. #define ATH9K_TXDESC_EXT_AND_CTL 0x0080
  237. #define ATH9K_TXDESC_VMF 0x0100
  238. #define ATH9K_TXDESC_FRAG_IS_ON 0x0200
  239. #define ATH9K_TXDESC_LOWRXCHAIN 0x0400
  240. #define ATH9K_TXDESC_LDPC 0x00010000
  241. #define ATH9K_RXDESC_INTREQ 0x0020
  242. struct ar5416_desc {
  243. u32 ds_link;
  244. u32 ds_data;
  245. u32 ds_ctl0;
  246. u32 ds_ctl1;
  247. union {
  248. struct {
  249. u32 ctl2;
  250. u32 ctl3;
  251. u32 ctl4;
  252. u32 ctl5;
  253. u32 ctl6;
  254. u32 ctl7;
  255. u32 ctl8;
  256. u32 ctl9;
  257. u32 ctl10;
  258. u32 ctl11;
  259. u32 status0;
  260. u32 status1;
  261. u32 status2;
  262. u32 status3;
  263. u32 status4;
  264. u32 status5;
  265. u32 status6;
  266. u32 status7;
  267. u32 status8;
  268. u32 status9;
  269. } tx;
  270. struct {
  271. u32 status0;
  272. u32 status1;
  273. u32 status2;
  274. u32 status3;
  275. u32 status4;
  276. u32 status5;
  277. u32 status6;
  278. u32 status7;
  279. u32 status8;
  280. } rx;
  281. } u;
  282. } __attribute__((packed, aligned(4)));
  283. #define AR5416DESC(_ds) ((struct ar5416_desc *)(_ds))
  284. #define AR5416DESC_CONST(_ds) ((const struct ar5416_desc *)(_ds))
  285. #define ds_ctl2 u.tx.ctl2
  286. #define ds_ctl3 u.tx.ctl3
  287. #define ds_ctl4 u.tx.ctl4
  288. #define ds_ctl5 u.tx.ctl5
  289. #define ds_ctl6 u.tx.ctl6
  290. #define ds_ctl7 u.tx.ctl7
  291. #define ds_ctl8 u.tx.ctl8
  292. #define ds_ctl9 u.tx.ctl9
  293. #define ds_ctl10 u.tx.ctl10
  294. #define ds_ctl11 u.tx.ctl11
  295. #define ds_txstatus0 u.tx.status0
  296. #define ds_txstatus1 u.tx.status1
  297. #define ds_txstatus2 u.tx.status2
  298. #define ds_txstatus3 u.tx.status3
  299. #define ds_txstatus4 u.tx.status4
  300. #define ds_txstatus5 u.tx.status5
  301. #define ds_txstatus6 u.tx.status6
  302. #define ds_txstatus7 u.tx.status7
  303. #define ds_txstatus8 u.tx.status8
  304. #define ds_txstatus9 u.tx.status9
  305. #define ds_rxstatus0 u.rx.status0
  306. #define ds_rxstatus1 u.rx.status1
  307. #define ds_rxstatus2 u.rx.status2
  308. #define ds_rxstatus3 u.rx.status3
  309. #define ds_rxstatus4 u.rx.status4
  310. #define ds_rxstatus5 u.rx.status5
  311. #define ds_rxstatus6 u.rx.status6
  312. #define ds_rxstatus7 u.rx.status7
  313. #define ds_rxstatus8 u.rx.status8
  314. #define AR_FrameLen 0x00000fff
  315. #define AR_VirtMoreFrag 0x00001000
  316. #define AR_TxCtlRsvd00 0x0000e000
  317. #define AR_XmitPower 0x003f0000
  318. #define AR_XmitPower_S 16
  319. #define AR_RTSEnable 0x00400000
  320. #define AR_VEOL 0x00800000
  321. #define AR_ClrDestMask 0x01000000
  322. #define AR_TxCtlRsvd01 0x1e000000
  323. #define AR_TxIntrReq 0x20000000
  324. #define AR_DestIdxValid 0x40000000
  325. #define AR_CTSEnable 0x80000000
  326. #define AR_TxMore 0x00001000
  327. #define AR_DestIdx 0x000fe000
  328. #define AR_DestIdx_S 13
  329. #define AR_FrameType 0x00f00000
  330. #define AR_FrameType_S 20
  331. #define AR_NoAck 0x01000000
  332. #define AR_InsertTS 0x02000000
  333. #define AR_CorruptFCS 0x04000000
  334. #define AR_ExtOnly 0x08000000
  335. #define AR_ExtAndCtl 0x10000000
  336. #define AR_MoreAggr 0x20000000
  337. #define AR_IsAggr 0x40000000
  338. #define AR_BurstDur 0x00007fff
  339. #define AR_BurstDur_S 0
  340. #define AR_DurUpdateEna 0x00008000
  341. #define AR_XmitDataTries0 0x000f0000
  342. #define AR_XmitDataTries0_S 16
  343. #define AR_XmitDataTries1 0x00f00000
  344. #define AR_XmitDataTries1_S 20
  345. #define AR_XmitDataTries2 0x0f000000
  346. #define AR_XmitDataTries2_S 24
  347. #define AR_XmitDataTries3 0xf0000000
  348. #define AR_XmitDataTries3_S 28
  349. #define AR_XmitRate0 0x000000ff
  350. #define AR_XmitRate0_S 0
  351. #define AR_XmitRate1 0x0000ff00
  352. #define AR_XmitRate1_S 8
  353. #define AR_XmitRate2 0x00ff0000
  354. #define AR_XmitRate2_S 16
  355. #define AR_XmitRate3 0xff000000
  356. #define AR_XmitRate3_S 24
  357. #define AR_PacketDur0 0x00007fff
  358. #define AR_PacketDur0_S 0
  359. #define AR_RTSCTSQual0 0x00008000
  360. #define AR_PacketDur1 0x7fff0000
  361. #define AR_PacketDur1_S 16
  362. #define AR_RTSCTSQual1 0x80000000
  363. #define AR_PacketDur2 0x00007fff
  364. #define AR_PacketDur2_S 0
  365. #define AR_RTSCTSQual2 0x00008000
  366. #define AR_PacketDur3 0x7fff0000
  367. #define AR_PacketDur3_S 16
  368. #define AR_RTSCTSQual3 0x80000000
  369. #define AR_AggrLen 0x0000ffff
  370. #define AR_AggrLen_S 0
  371. #define AR_TxCtlRsvd60 0x00030000
  372. #define AR_PadDelim 0x03fc0000
  373. #define AR_PadDelim_S 18
  374. #define AR_EncrType 0x0c000000
  375. #define AR_EncrType_S 26
  376. #define AR_TxCtlRsvd61 0xf0000000
  377. #define AR_LDPC 0x80000000
  378. #define AR_2040_0 0x00000001
  379. #define AR_GI0 0x00000002
  380. #define AR_ChainSel0 0x0000001c
  381. #define AR_ChainSel0_S 2
  382. #define AR_2040_1 0x00000020
  383. #define AR_GI1 0x00000040
  384. #define AR_ChainSel1 0x00000380
  385. #define AR_ChainSel1_S 7
  386. #define AR_2040_2 0x00000400
  387. #define AR_GI2 0x00000800
  388. #define AR_ChainSel2 0x00007000
  389. #define AR_ChainSel2_S 12
  390. #define AR_2040_3 0x00008000
  391. #define AR_GI3 0x00010000
  392. #define AR_ChainSel3 0x000e0000
  393. #define AR_ChainSel3_S 17
  394. #define AR_RTSCTSRate 0x0ff00000
  395. #define AR_RTSCTSRate_S 20
  396. #define AR_STBC0 0x10000000
  397. #define AR_STBC1 0x20000000
  398. #define AR_STBC2 0x40000000
  399. #define AR_STBC3 0x80000000
  400. #define AR_TxRSSIAnt00 0x000000ff
  401. #define AR_TxRSSIAnt00_S 0
  402. #define AR_TxRSSIAnt01 0x0000ff00
  403. #define AR_TxRSSIAnt01_S 8
  404. #define AR_TxRSSIAnt02 0x00ff0000
  405. #define AR_TxRSSIAnt02_S 16
  406. #define AR_TxStatusRsvd00 0x3f000000
  407. #define AR_TxBaStatus 0x40000000
  408. #define AR_TxStatusRsvd01 0x80000000
  409. /*
  410. * AR_FrmXmitOK - Frame transmission success flag. If set, the frame was
  411. * transmitted successfully. If clear, no ACK or BA was received to indicate
  412. * successful transmission when we were expecting an ACK or BA.
  413. */
  414. #define AR_FrmXmitOK 0x00000001
  415. #define AR_ExcessiveRetries 0x00000002
  416. #define AR_FIFOUnderrun 0x00000004
  417. #define AR_Filtered 0x00000008
  418. #define AR_RTSFailCnt 0x000000f0
  419. #define AR_RTSFailCnt_S 4
  420. #define AR_DataFailCnt 0x00000f00
  421. #define AR_DataFailCnt_S 8
  422. #define AR_VirtRetryCnt 0x0000f000
  423. #define AR_VirtRetryCnt_S 12
  424. #define AR_TxDelimUnderrun 0x00010000
  425. #define AR_TxDataUnderrun 0x00020000
  426. #define AR_DescCfgErr 0x00040000
  427. #define AR_TxTimerExpired 0x00080000
  428. #define AR_TxStatusRsvd10 0xfff00000
  429. #define AR_SendTimestamp ds_txstatus2
  430. #define AR_BaBitmapLow ds_txstatus3
  431. #define AR_BaBitmapHigh ds_txstatus4
  432. #define AR_TxRSSIAnt10 0x000000ff
  433. #define AR_TxRSSIAnt10_S 0
  434. #define AR_TxRSSIAnt11 0x0000ff00
  435. #define AR_TxRSSIAnt11_S 8
  436. #define AR_TxRSSIAnt12 0x00ff0000
  437. #define AR_TxRSSIAnt12_S 16
  438. #define AR_TxRSSICombined 0xff000000
  439. #define AR_TxRSSICombined_S 24
  440. #define AR_TxTid 0xf0000000
  441. #define AR_TxTid_S 28
  442. #define AR_TxEVM0 ds_txstatus5
  443. #define AR_TxEVM1 ds_txstatus6
  444. #define AR_TxEVM2 ds_txstatus7
  445. #define AR_TxDone 0x00000001
  446. #define AR_SeqNum 0x00001ffe
  447. #define AR_SeqNum_S 1
  448. #define AR_TxStatusRsvd80 0x0001e000
  449. #define AR_TxOpExceeded 0x00020000
  450. #define AR_TxStatusRsvd81 0x001c0000
  451. #define AR_FinalTxIdx 0x00600000
  452. #define AR_FinalTxIdx_S 21
  453. #define AR_TxStatusRsvd82 0x01800000
  454. #define AR_PowerMgmt 0x02000000
  455. #define AR_TxStatusRsvd83 0xfc000000
  456. #define AR_RxCTLRsvd00 0xffffffff
  457. #define AR_RxCtlRsvd00 0x00001000
  458. #define AR_RxIntrReq 0x00002000
  459. #define AR_RxCtlRsvd01 0xffffc000
  460. #define AR_RxRSSIAnt00 0x000000ff
  461. #define AR_RxRSSIAnt00_S 0
  462. #define AR_RxRSSIAnt01 0x0000ff00
  463. #define AR_RxRSSIAnt01_S 8
  464. #define AR_RxRSSIAnt02 0x00ff0000
  465. #define AR_RxRSSIAnt02_S 16
  466. #define AR_RxRate 0xff000000
  467. #define AR_RxRate_S 24
  468. #define AR_RxStatusRsvd00 0xff000000
  469. #define AR_DataLen 0x00000fff
  470. #define AR_RxMore 0x00001000
  471. #define AR_NumDelim 0x003fc000
  472. #define AR_NumDelim_S 14
  473. #define AR_RxStatusRsvd10 0xff800000
  474. #define AR_RcvTimestamp ds_rxstatus2
  475. #define AR_GI 0x00000001
  476. #define AR_2040 0x00000002
  477. #define AR_Parallel40 0x00000004
  478. #define AR_Parallel40_S 2
  479. #define AR_RxStatusRsvd30 0x000000f8
  480. #define AR_RxAntenna 0xffffff00
  481. #define AR_RxAntenna_S 8
  482. #define AR_RxRSSIAnt10 0x000000ff
  483. #define AR_RxRSSIAnt10_S 0
  484. #define AR_RxRSSIAnt11 0x0000ff00
  485. #define AR_RxRSSIAnt11_S 8
  486. #define AR_RxRSSIAnt12 0x00ff0000
  487. #define AR_RxRSSIAnt12_S 16
  488. #define AR_RxRSSICombined 0xff000000
  489. #define AR_RxRSSICombined_S 24
  490. #define AR_RxEVM0 ds_rxstatus4
  491. #define AR_RxEVM1 ds_rxstatus5
  492. #define AR_RxEVM2 ds_rxstatus6
  493. #define AR_RxDone 0x00000001
  494. #define AR_RxFrameOK 0x00000002
  495. #define AR_CRCErr 0x00000004
  496. #define AR_DecryptCRCErr 0x00000008
  497. #define AR_PHYErr 0x00000010
  498. #define AR_MichaelErr 0x00000020
  499. #define AR_PreDelimCRCErr 0x00000040
  500. #define AR_RxStatusRsvd70 0x00000080
  501. #define AR_RxKeyIdxValid 0x00000100
  502. #define AR_KeyIdx 0x0000fe00
  503. #define AR_KeyIdx_S 9
  504. #define AR_PHYErrCode 0x0000ff00
  505. #define AR_PHYErrCode_S 8
  506. #define AR_RxMoreAggr 0x00010000
  507. #define AR_RxAggr 0x00020000
  508. #define AR_PostDelimCRCErr 0x00040000
  509. #define AR_RxStatusRsvd71 0x3ff80000
  510. #define AR_DecryptBusyErr 0x40000000
  511. #define AR_KeyMiss 0x80000000
  512. enum ath9k_tx_queue {
  513. ATH9K_TX_QUEUE_INACTIVE = 0,
  514. ATH9K_TX_QUEUE_DATA,
  515. };
  516. #define ATH9K_NUM_TX_QUEUES 1
  517. /* Used as a queue subtype instead of a WMM AC */
  518. #define ATH9K_WME_UPSD 4
  519. enum ath9k_tx_queue_flags {
  520. TXQ_FLAG_TXOKINT_ENABLE = 0x0001,
  521. TXQ_FLAG_TXERRINT_ENABLE = 0x0001,
  522. TXQ_FLAG_TXDESCINT_ENABLE = 0x0002,
  523. TXQ_FLAG_TXEOLINT_ENABLE = 0x0004,
  524. TXQ_FLAG_TXURNINT_ENABLE = 0x0008,
  525. TXQ_FLAG_BACKOFF_DISABLE = 0x0010,
  526. TXQ_FLAG_COMPRESSION_ENABLE = 0x0020,
  527. TXQ_FLAG_RDYTIME_EXP_POLICY_ENABLE = 0x0040,
  528. TXQ_FLAG_FRAG_BURST_BACKOFF_ENABLE = 0x0080,
  529. };
  530. #define ATH9K_TXQ_USEDEFAULT ((u32) -1)
  531. #define ATH9K_TXQ_USE_LOCKOUT_BKOFF_DIS 0x00000001
  532. #define ATH9K_DECOMP_MASK_SIZE 128
  533. #define ATH9K_READY_TIME_LO_BOUND 50
  534. #define ATH9K_READY_TIME_HI_BOUND 96
  535. enum ath9k_pkt_type {
  536. ATH9K_PKT_TYPE_NORMAL = 0,
  537. ATH9K_PKT_TYPE_ATIM,
  538. ATH9K_PKT_TYPE_PSPOLL,
  539. ATH9K_PKT_TYPE_BEACON,
  540. ATH9K_PKT_TYPE_PROBE_RESP,
  541. ATH9K_PKT_TYPE_CHIRP,
  542. ATH9K_PKT_TYPE_GRP_POLL,
  543. };
  544. struct ath9k_tx_queue_info {
  545. u32 tqi_ver;
  546. enum ath9k_tx_queue tqi_type;
  547. int tqi_subtype;
  548. enum ath9k_tx_queue_flags tqi_qflags;
  549. u32 tqi_priority;
  550. u32 tqi_aifs;
  551. u32 tqi_cwmin;
  552. u32 tqi_cwmax;
  553. u16 tqi_shretry;
  554. u16 tqi_lgretry;
  555. u32 tqi_cbrPeriod;
  556. u32 tqi_cbrOverflowLimit;
  557. u32 tqi_burstTime;
  558. u32 tqi_readyTime;
  559. u32 tqi_physCompBuf;
  560. u32 tqi_intFlags;
  561. };
  562. enum ath9k_rx_filter {
  563. ATH9K_RX_FILTER_UCAST = 0x00000001,
  564. ATH9K_RX_FILTER_MCAST = 0x00000002,
  565. ATH9K_RX_FILTER_BCAST = 0x00000004,
  566. ATH9K_RX_FILTER_CONTROL = 0x00000008,
  567. ATH9K_RX_FILTER_BEACON = 0x00000010,
  568. ATH9K_RX_FILTER_PROM = 0x00000020,
  569. ATH9K_RX_FILTER_PROBEREQ = 0x00000080,
  570. ATH9K_RX_FILTER_PHYERR = 0x00000100,
  571. ATH9K_RX_FILTER_MYBEACON = 0x00000200,
  572. ATH9K_RX_FILTER_COMP_BAR = 0x00000400,
  573. ATH9K_RX_FILTER_COMP_BA = 0x00000800,
  574. ATH9K_RX_FILTER_UNCOMP_BA_BAR = 0x00001000,
  575. ATH9K_RX_FILTER_PSPOLL = 0x00004000,
  576. ATH9K_RX_FILTER_PHYRADAR = 0x00002000,
  577. ATH9K_RX_FILTER_MCAST_BCAST_ALL = 0x00008000,
  578. };
  579. #define ATH9K_RATESERIES_RTS_CTS 0x0001
  580. #define ATH9K_RATESERIES_2040 0x0002
  581. #define ATH9K_RATESERIES_HALFGI 0x0004
  582. #define ATH9K_RATESERIES_STBC 0x0008
  583. struct ath9k_11n_rate_series {
  584. u32 Tries;
  585. u32 Rate;
  586. u32 PktDuration;
  587. u32 ChSel;
  588. u32 RateFlags;
  589. };
  590. enum ath9k_key_type {
  591. ATH9K_KEY_TYPE_CLEAR,
  592. ATH9K_KEY_TYPE_WEP,
  593. ATH9K_KEY_TYPE_AES,
  594. ATH9K_KEY_TYPE_TKIP,
  595. };
  596. struct ath_hw;
  597. struct ath9k_channel;
  598. enum ath9k_int;
  599. u32 ath9k_hw_gettxbuf(struct ath_hw *ah, u32 q);
  600. void ath9k_hw_puttxbuf(struct ath_hw *ah, u32 q, u32 txdp);
  601. void ath9k_hw_txstart(struct ath_hw *ah, u32 q);
  602. void ath9k_hw_cleartxdesc(struct ath_hw *ah, void *ds);
  603. u32 ath9k_hw_numtxpending(struct ath_hw *ah, u32 q);
  604. int ath9k_hw_updatetxtriglevel(struct ath_hw *ah, int bIncTrigLevel);
  605. int ath9k_hw_stop_dma_queue(struct ath_hw *ah, u32 q);
  606. void ath9k_hw_abort_tx_dma(struct ath_hw *ah);
  607. void ath9k_hw_gettxintrtxqs(struct ath_hw *ah, u32 *txqs);
  608. int ath9k_hw_set_txq_props(struct ath_hw *ah, int q,
  609. const struct ath9k_tx_queue_info *qinfo);
  610. int ath9k_hw_get_txq_props(struct ath_hw *ah, int q,
  611. struct ath9k_tx_queue_info *qinfo);
  612. int ath9k_hw_setuptxqueue(struct ath_hw *ah, enum ath9k_tx_queue type,
  613. const struct ath9k_tx_queue_info *qinfo);
  614. int ath9k_hw_releasetxqueue(struct ath_hw *ah, u32 q);
  615. int ath9k_hw_resettxqueue(struct ath_hw *ah, u32 q);
  616. int ath9k_hw_rxprocdesc(struct ath_hw *ah, struct ath_desc *ds,
  617. struct ath_rx_status *rs, u64 tsf);
  618. void ath9k_hw_setuprxdesc(struct ath_hw *ah, struct ath_desc *ds,
  619. u32 size, u32 flags);
  620. int ath9k_hw_setrxabort(struct ath_hw *ah, int set);
  621. void ath9k_hw_putrxbuf(struct ath_hw *ah, u32 rxdp);
  622. void ath9k_hw_startpcureceive(struct ath_hw *ah, int is_scanning);
  623. void ath9k_hw_abortpcurecv(struct ath_hw *ah);
  624. int ath9k_hw_stopdmarecv(struct ath_hw *ah, int *reset);
  625. /* Interrupt Handling */
  626. int ath9k_hw_intrpend(struct ath_hw *ah);
  627. void ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints);
  628. void ath9k_hw_enable_interrupts(struct ath_hw *ah);
  629. void ath9k_hw_disable_interrupts(struct ath_hw *ah);
  630. void ar9002_hw_attach_mac_ops(struct ath_hw *ah);
  631. #endif /* MAC_H */