mac.h 20 KB

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