reg.h 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989
  1. /*
  2. * Copyright (c) 2007 Nick Kossifidis <mickflemm@gmail.com>
  3. * Copyright (c) 2004, 2005, 2006, 2007 Reyk Floeter <reyk@openbsd.org>
  4. * Copyright (c) 2007 Michael Taylor <mike.taylor@apprion.com>
  5. *
  6. * Permission to use, copy, modify, and distribute this software for any
  7. * purpose with or without fee is hereby granted, provided that the above
  8. * copyright notice and this permission notice appear in all copies.
  9. *
  10. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  11. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  12. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  13. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  14. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  15. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  16. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  17. *
  18. */
  19. /*
  20. * Register values for Atheros 5210/5211/5212 cards from OpenBSD's ar5k
  21. * maintained by Reyk Floeter
  22. *
  23. * I tried to document those registers by looking at ar5k code, some
  24. * 802.11 (802.11e mostly) papers and by reading various public available
  25. * Atheros presentations and papers like these:
  26. *
  27. * 5210 - http://nova.stanford.edu/~bbaas/ps/isscc2002_slides.pdf
  28. * http://www.it.iitb.ac.in/~janak/wifire/01222734.pdf
  29. *
  30. * 5211 - http://www.hotchips.org/archives/hc14/3_Tue/16_mcfarland.pdf
  31. */
  32. /*====MAC DMA REGISTERS====*/
  33. /*
  34. * AR5210-Specific TXDP registers
  35. * 5210 has only 2 transmit queues so no DCU/QCU, just
  36. * 2 transmit descriptor pointers...
  37. */
  38. #define AR5K_NOQCU_TXDP0 0x0000 /* Queue 0 - data */
  39. #define AR5K_NOQCU_TXDP1 0x0004 /* Queue 1 - beacons */
  40. /*
  41. * Mac Control Register
  42. */
  43. #define AR5K_CR 0x0008 /* Register Address */
  44. #define AR5K_CR_TXE0 0x00000001 /* TX Enable for queue 0 on 5210 */
  45. #define AR5K_CR_TXE1 0x00000002 /* TX Enable for queue 1 on 5210 */
  46. #define AR5K_CR_RXE 0x00000004 /* RX Enable */
  47. #define AR5K_CR_TXD0 0x00000008 /* TX Disable for queue 0 on 5210 */
  48. #define AR5K_CR_TXD1 0x00000010 /* TX Disable for queue 1 on 5210 */
  49. #define AR5K_CR_RXD 0x00000020 /* RX Disable */
  50. #define AR5K_CR_SWI 0x00000040
  51. /*
  52. * RX Descriptor Pointer register
  53. */
  54. #define AR5K_RXDP 0x000c
  55. /*
  56. * Configuration and status register
  57. */
  58. #define AR5K_CFG 0x0014 /* Register Address */
  59. #define AR5K_CFG_SWTD 0x00000001 /* Byte-swap TX descriptor (for big endian archs) */
  60. #define AR5K_CFG_SWTB 0x00000002 /* Byte-swap TX buffer (?) */
  61. #define AR5K_CFG_SWRD 0x00000004 /* Byte-swap RX descriptor */
  62. #define AR5K_CFG_SWRB 0x00000008 /* Byte-swap RX buffer (?) */
  63. #define AR5K_CFG_SWRG 0x00000010 /* Byte-swap Register values (?) */
  64. #define AR5K_CFG_ADHOC 0x00000020 /* [5211+] */
  65. #define AR5K_CFG_PHY_OK 0x00000100 /* [5211+] */
  66. #define AR5K_CFG_EEBS 0x00000200 /* EEPROM is busy */
  67. #define AR5K_CFG_CLKGD 0x00000400 /* Clock gated (?) */
  68. #define AR5K_CFG_TXCNT 0x00007800 /* Tx frame count (?) [5210] */
  69. #define AR5K_CFG_TXCNT_S 11
  70. #define AR5K_CFG_TXFSTAT 0x00008000 /* Tx frame status (?) [5210] */
  71. #define AR5K_CFG_TXFSTRT 0x00010000 /* [5210] */
  72. #define AR5K_CFG_PCI_THRES 0x00060000 /* [5211+] */
  73. #define AR5K_CFG_PCI_THRES_S 17
  74. /*
  75. * Interrupt enable register
  76. */
  77. #define AR5K_IER 0x0024 /* Register Address */
  78. #define AR5K_IER_DISABLE 0x00000000 /* Disable card interrupts */
  79. #define AR5K_IER_ENABLE 0x00000001 /* Enable card interrupts */
  80. /*
  81. * 0x0028 is Beacon Control Register on 5210
  82. * and first RTS duration register on 5211
  83. */
  84. /*
  85. * Beacon control register [5210]
  86. */
  87. #define AR5K_BCR 0x0028 /* Register Address */
  88. #define AR5K_BCR_AP 0x00000000 /* AP mode */
  89. #define AR5K_BCR_ADHOC 0x00000001 /* Ad-Hoc mode */
  90. #define AR5K_BCR_BDMAE 0x00000002 /* DMA enable */
  91. #define AR5K_BCR_TQ1FV 0x00000004 /* Use Queue1 for CAB traffic */
  92. #define AR5K_BCR_TQ1V 0x00000008 /* Use Queue1 for Beacon traffic */
  93. #define AR5K_BCR_BCGET 0x00000010
  94. /*
  95. * First RTS duration register [5211]
  96. */
  97. #define AR5K_RTSD0 0x0028 /* Register Address */
  98. #define AR5K_RTSD0_6 0x000000ff /* 6Mb RTS duration mask (?) */
  99. #define AR5K_RTSD0_6_S 0 /* 6Mb RTS duration shift (?) */
  100. #define AR5K_RTSD0_9 0x0000ff00 /* 9Mb*/
  101. #define AR5K_RTSD0_9_S 8
  102. #define AR5K_RTSD0_12 0x00ff0000 /* 12Mb*/
  103. #define AR5K_RTSD0_12_S 16
  104. #define AR5K_RTSD0_18 0xff000000 /* 16Mb*/
  105. #define AR5K_RTSD0_18_S 24
  106. /*
  107. * 0x002c is Beacon Status Register on 5210
  108. * and second RTS duration register on 5211
  109. */
  110. /*
  111. * Beacon status register [5210]
  112. *
  113. * As i can see in ar5k_ar5210_tx_start Reyk uses some of the values of BCR
  114. * for this register, so i guess TQ1V,TQ1FV and BDMAE have the same meaning
  115. * here and SNP/SNAP means "snapshot" (so this register gets synced with BCR).
  116. * So SNAPPEDBCRVALID sould also stand for "snapped BCR -values- valid", so i
  117. * renamed it to SNAPSHOTSVALID to make more sense. I realy have no idea what
  118. * else can it be. I also renamed SNPBCMD to SNPADHOC to match BCR.
  119. */
  120. #define AR5K_BSR 0x002c /* Register Address */
  121. #define AR5K_BSR_BDLYSW 0x00000001 /* SW Beacon delay (?) */
  122. #define AR5K_BSR_BDLYDMA 0x00000002 /* DMA Beacon delay (?) */
  123. #define AR5K_BSR_TXQ1F 0x00000004 /* Beacon queue (1) finished */
  124. #define AR5K_BSR_ATIMDLY 0x00000008 /* ATIM delay (?) */
  125. #define AR5K_BSR_SNPADHOC 0x00000100 /* Ad-hoc mode set (?) */
  126. #define AR5K_BSR_SNPBDMAE 0x00000200 /* Beacon DMA enabled (?) */
  127. #define AR5K_BSR_SNPTQ1FV 0x00000400 /* Queue1 is used for CAB traffic (?) */
  128. #define AR5K_BSR_SNPTQ1V 0x00000800 /* Queue1 is used for Beacon traffic (?) */
  129. #define AR5K_BSR_SNAPSHOTSVALID 0x00001000 /* BCR snapshots are valid (?) */
  130. #define AR5K_BSR_SWBA_CNT 0x00ff0000
  131. /*
  132. * Second RTS duration register [5211]
  133. */
  134. #define AR5K_RTSD1 0x002c /* Register Address */
  135. #define AR5K_RTSD1_24 0x000000ff /* 24Mb */
  136. #define AR5K_RTSD1_24_S 0
  137. #define AR5K_RTSD1_36 0x0000ff00 /* 36Mb */
  138. #define AR5K_RTSD1_36_S 8
  139. #define AR5K_RTSD1_48 0x00ff0000 /* 48Mb */
  140. #define AR5K_RTSD1_48_S 16
  141. #define AR5K_RTSD1_54 0xff000000 /* 54Mb */
  142. #define AR5K_RTSD1_54_S 24
  143. /*
  144. * Transmit configuration register
  145. */
  146. #define AR5K_TXCFG 0x0030 /* Register Address */
  147. #define AR5K_TXCFG_SDMAMR 0x00000007 /* DMA size */
  148. #define AR5K_TXCFG_SDMAMR_S 0
  149. #define AR5K_TXCFG_B_MODE 0x00000008 /* Set b mode for 5111 (enable 2111) */
  150. #define AR5K_TXCFG_TXFSTP 0x00000008 /* TX DMA full Stop [5210] */
  151. #define AR5K_TXCFG_TXFULL 0x000003f0 /* TX Triger level mask */
  152. #define AR5K_TXCFG_TXFULL_S 4
  153. #define AR5K_TXCFG_TXFULL_0B 0x00000000
  154. #define AR5K_TXCFG_TXFULL_64B 0x00000010
  155. #define AR5K_TXCFG_TXFULL_128B 0x00000020
  156. #define AR5K_TXCFG_TXFULL_192B 0x00000030
  157. #define AR5K_TXCFG_TXFULL_256B 0x00000040
  158. #define AR5K_TXCFG_TXCONT_EN 0x00000080
  159. #define AR5K_TXCFG_DMASIZE 0x00000100 /* Flag for passing DMA size [5210] */
  160. #define AR5K_TXCFG_JUMBO_TXE 0x00000400 /* Enable jumbo frames transmition (?) [5211+] */
  161. #define AR5K_TXCFG_RTSRND 0x00001000 /* [5211+] */
  162. #define AR5K_TXCFG_FRMPAD_DIS 0x00002000 /* [5211+] */
  163. #define AR5K_TXCFG_RDY_DIS 0x00004000 /* [5211+] */
  164. /*
  165. * Receive configuration register
  166. */
  167. #define AR5K_RXCFG 0x0034 /* Register Address */
  168. #define AR5K_RXCFG_SDMAMW 0x00000007 /* DMA size */
  169. #define AR5K_RXCFG_SDMAMW_S 0
  170. #define AR5K_RXCFG_DEF_ANTENNA 0x00000008 /* Default antenna */
  171. #define AR5K_RXCFG_ZLFDMA 0x00000010 /* Zero-length DMA */
  172. #define AR5K_RXCFG_JUMBO_RXE 0x00000020 /* Enable jumbo frames reception (?) [5211+] */
  173. #define AR5K_RXCFG_JUMBO_WRAP 0x00000040 /* Wrap jumbo frames (?) [5211+] */
  174. /*
  175. * Receive jumbo descriptor last address register
  176. * Only found in 5211 (?)
  177. */
  178. #define AR5K_RXJLA 0x0038
  179. /*
  180. * MIB control register
  181. */
  182. #define AR5K_MIBC 0x0040 /* Register Address */
  183. #define AR5K_MIBC_COW 0x00000001
  184. #define AR5K_MIBC_FMC 0x00000002 /* Freeze Mib Counters (?) */
  185. #define AR5K_MIBC_CMC 0x00000004 /* Clean Mib Counters (?) */
  186. #define AR5K_MIBC_MCS 0x00000008
  187. /*
  188. * Timeout prescale register
  189. */
  190. #define AR5K_TOPS 0x0044
  191. #define AR5K_TOPS_M 0x0000ffff /* [5211+] (?) */
  192. /*
  193. * Receive timeout register (no frame received)
  194. */
  195. #define AR5K_RXNOFRM 0x0048
  196. #define AR5K_RXNOFRM_M 0x000003ff /* [5211+] (?) */
  197. /*
  198. * Transmit timeout register (no frame sent)
  199. */
  200. #define AR5K_TXNOFRM 0x004c
  201. #define AR5K_TXNOFRM_M 0x000003ff /* [5211+] (?) */
  202. #define AR5K_TXNOFRM_QCU 0x000ffc00 /* [5211+] (?) */
  203. /*
  204. * Receive frame gap timeout register
  205. */
  206. #define AR5K_RPGTO 0x0050
  207. #define AR5K_RPGTO_M 0x000003ff /* [5211+] (?) */
  208. /*
  209. * Receive frame count limit register
  210. */
  211. #define AR5K_RFCNT 0x0054
  212. #define AR5K_RFCNT_M 0x0000001f /* [5211+] (?) */
  213. #define AR5K_RFCNT_RFCL 0x0000000f /* [5210] */
  214. /*
  215. * Misc settings register
  216. */
  217. #define AR5K_MISC 0x0058 /* Register Address */
  218. #define AR5K_MISC_DMA_OBS_M 0x000001e0
  219. #define AR5K_MISC_DMA_OBS_S 5
  220. #define AR5K_MISC_MISC_OBS_M 0x00000e00
  221. #define AR5K_MISC_MISC_OBS_S 9
  222. #define AR5K_MISC_MAC_OBS_LSB_M 0x00007000
  223. #define AR5K_MISC_MAC_OBS_LSB_S 12
  224. #define AR5K_MISC_MAC_OBS_MSB_M 0x00038000
  225. #define AR5K_MISC_MAC_OBS_MSB_S 15
  226. #define AR5K_MISC_LED_DECAY 0x001c0000 /* [5210] */
  227. #define AR5K_MISC_LED_BLINK 0x00e00000 /* [5210] */
  228. /*
  229. * QCU/DCU clock gating register (5311)
  230. */
  231. #define AR5K_QCUDCU_CLKGT 0x005c /* Register Address (?) */
  232. #define AR5K_QCUDCU_CLKGT_QCU 0x0000ffff /* Mask for QCU clock */
  233. #define AR5K_QCUDCU_CLKGT_DCU 0x07ff0000 /* Mask for DCU clock */
  234. /*
  235. * Interrupt Status Registers
  236. *
  237. * For 5210 there is only one status register but for
  238. * 5211/5212 we have one primary and 4 secondary registers.
  239. * So we have AR5K_ISR for 5210 and AR5K_PISR /SISRx for 5211/5212.
  240. * Most of these bits are common for all chipsets.
  241. */
  242. #define AR5K_ISR 0x001c /* Register Address [5210] */
  243. #define AR5K_PISR 0x0080 /* Register Address [5211+] */
  244. #define AR5K_ISR_RXOK 0x00000001 /* Frame successfuly recieved */
  245. #define AR5K_ISR_RXDESC 0x00000002 /* RX descriptor request */
  246. #define AR5K_ISR_RXERR 0x00000004 /* Receive error */
  247. #define AR5K_ISR_RXNOFRM 0x00000008 /* No frame received (receive timeout) */
  248. #define AR5K_ISR_RXEOL 0x00000010 /* Empty RX descriptor */
  249. #define AR5K_ISR_RXORN 0x00000020 /* Receive FIFO overrun */
  250. #define AR5K_ISR_TXOK 0x00000040 /* Frame successfuly transmited */
  251. #define AR5K_ISR_TXDESC 0x00000080 /* TX descriptor request */
  252. #define AR5K_ISR_TXERR 0x00000100 /* Transmit error */
  253. #define AR5K_ISR_TXNOFRM 0x00000200 /* No frame transmited (transmit timeout) */
  254. #define AR5K_ISR_TXEOL 0x00000400 /* Empty TX descriptor */
  255. #define AR5K_ISR_TXURN 0x00000800 /* Transmit FIFO underrun */
  256. #define AR5K_ISR_MIB 0x00001000 /* Update MIB counters */
  257. #define AR5K_ISR_SWI 0x00002000 /* Software interrupt (?) */
  258. #define AR5K_ISR_RXPHY 0x00004000 /* PHY error */
  259. #define AR5K_ISR_RXKCM 0x00008000
  260. #define AR5K_ISR_SWBA 0x00010000 /* Software beacon alert */
  261. #define AR5K_ISR_BRSSI 0x00020000
  262. #define AR5K_ISR_BMISS 0x00040000 /* Beacon missed */
  263. #define AR5K_ISR_HIUERR 0x00080000 /* Host Interface Unit error [5211+] */
  264. #define AR5K_ISR_BNR 0x00100000 /* Beacon not ready [5211+] */
  265. #define AR5K_ISR_MCABT 0x00100000 /* [5210] */
  266. #define AR5K_ISR_RXCHIRP 0x00200000 /* [5212+] */
  267. #define AR5K_ISR_SSERR 0x00200000 /* [5210] */
  268. #define AR5K_ISR_DPERR 0x00400000 /* [5210] */
  269. #define AR5K_ISR_TIM 0x00800000 /* [5210] */
  270. #define AR5K_ISR_BCNMISC 0x00800000 /* [5212+] */
  271. #define AR5K_ISR_GPIO 0x01000000 /* GPIO (rf kill)*/
  272. #define AR5K_ISR_QCBRORN 0x02000000 /* CBR overrun (?) [5211+] */
  273. #define AR5K_ISR_QCBRURN 0x04000000 /* CBR underrun (?) [5211+] */
  274. #define AR5K_ISR_QTRIG 0x08000000 /* [5211+] */
  275. /*
  276. * Secondary status registers [5211+] (0 - 4)
  277. *
  278. * I guess from the names that these give the status for each
  279. * queue, that's why only masks are defined here, haven't got
  280. * any info about them (couldn't find them anywhere in ar5k code).
  281. */
  282. #define AR5K_SISR0 0x0084 /* Register Address [5211+] */
  283. #define AR5K_SISR0_QCU_TXOK 0x000003ff /* Mask for QCU_TXOK */
  284. #define AR5K_SISR0_QCU_TXDESC 0x03ff0000 /* Mask for QCU_TXDESC */
  285. #define AR5K_SISR1 0x0088 /* Register Address [5211+] */
  286. #define AR5K_SISR1_QCU_TXERR 0x000003ff /* Mask for QCU_TXERR */
  287. #define AR5K_SISR1_QCU_TXEOL 0x03ff0000 /* Mask for QCU_TXEOL */
  288. #define AR5K_SISR2 0x008c /* Register Address [5211+] */
  289. #define AR5K_SISR2_QCU_TXURN 0x000003ff /* Mask for QCU_TXURN */
  290. #define AR5K_SISR2_MCABT 0x00100000
  291. #define AR5K_SISR2_SSERR 0x00200000
  292. #define AR5K_SISR2_DPERR 0x00400000
  293. #define AR5K_SISR2_TIM 0x01000000 /* [5212+] */
  294. #define AR5K_SISR2_CAB_END 0x02000000 /* [5212+] */
  295. #define AR5K_SISR2_DTIM_SYNC 0x04000000 /* [5212+] */
  296. #define AR5K_SISR2_BCN_TIMEOUT 0x08000000 /* [5212+] */
  297. #define AR5K_SISR2_CAB_TIMEOUT 0x10000000 /* [5212+] */
  298. #define AR5K_SISR2_DTIM 0x20000000 /* [5212+] */
  299. #define AR5K_SISR3 0x0090 /* Register Address [5211+] */
  300. #define AR5K_SISR3_QCBRORN 0x000003ff /* Mask for QCBRORN */
  301. #define AR5K_SISR3_QCBRURN 0x03ff0000 /* Mask for QCBRURN */
  302. #define AR5K_SISR4 0x0094 /* Register Address [5211+] */
  303. #define AR5K_SISR4_QTRIG 0x000003ff /* Mask for QTRIG */
  304. /*
  305. * Shadow read-and-clear interrupt status registers [5211+]
  306. */
  307. #define AR5K_RAC_PISR 0x00c0 /* Read and clear PISR */
  308. #define AR5K_RAC_SISR0 0x00c4 /* Read and clear SISR0 */
  309. #define AR5K_RAC_SISR1 0x00c8 /* Read and clear SISR1 */
  310. #define AR5K_RAC_SISR2 0x00cc /* Read and clear SISR2 */
  311. #define AR5K_RAC_SISR3 0x00d0 /* Read and clear SISR3 */
  312. #define AR5K_RAC_SISR4 0x00d4 /* Read and clear SISR4 */
  313. /*
  314. * Interrupt Mask Registers
  315. *
  316. * As whith ISRs 5210 has one IMR (AR5K_IMR) and 5211/5212 has one primary
  317. * (AR5K_PIMR) and 4 secondary IMRs (AR5K_SIMRx). Note that ISR/IMR flags match.
  318. */
  319. #define AR5K_IMR 0x0020 /* Register Address [5210] */
  320. #define AR5K_PIMR 0x00a0 /* Register Address [5211+] */
  321. #define AR5K_IMR_RXOK 0x00000001 /* Frame successfuly recieved*/
  322. #define AR5K_IMR_RXDESC 0x00000002 /* RX descriptor request*/
  323. #define AR5K_IMR_RXERR 0x00000004 /* Receive error*/
  324. #define AR5K_IMR_RXNOFRM 0x00000008 /* No frame received (receive timeout)*/
  325. #define AR5K_IMR_RXEOL 0x00000010 /* Empty RX descriptor*/
  326. #define AR5K_IMR_RXORN 0x00000020 /* Receive FIFO overrun*/
  327. #define AR5K_IMR_TXOK 0x00000040 /* Frame successfuly transmited*/
  328. #define AR5K_IMR_TXDESC 0x00000080 /* TX descriptor request*/
  329. #define AR5K_IMR_TXERR 0x00000100 /* Transmit error*/
  330. #define AR5K_IMR_TXNOFRM 0x00000200 /* No frame transmited (transmit timeout)*/
  331. #define AR5K_IMR_TXEOL 0x00000400 /* Empty TX descriptor*/
  332. #define AR5K_IMR_TXURN 0x00000800 /* Transmit FIFO underrun*/
  333. #define AR5K_IMR_MIB 0x00001000 /* Update MIB counters*/
  334. #define AR5K_IMR_SWI 0x00002000
  335. #define AR5K_IMR_RXPHY 0x00004000 /* PHY error*/
  336. #define AR5K_IMR_RXKCM 0x00008000
  337. #define AR5K_IMR_SWBA 0x00010000 /* Software beacon alert*/
  338. #define AR5K_IMR_BRSSI 0x00020000
  339. #define AR5K_IMR_BMISS 0x00040000 /* Beacon missed*/
  340. #define AR5K_IMR_HIUERR 0x00080000 /* Host Interface Unit error [5211+] */
  341. #define AR5K_IMR_BNR 0x00100000 /* Beacon not ready [5211+] */
  342. #define AR5K_IMR_MCABT 0x00100000 /* [5210] */
  343. #define AR5K_IMR_RXCHIRP 0x00200000 /* [5212+]*/
  344. #define AR5K_IMR_SSERR 0x00200000 /* [5210] */
  345. #define AR5K_IMR_DPERR 0x00400000 /* [5210] */
  346. #define AR5K_IMR_TIM 0x00800000 /* [5211+] */
  347. #define AR5K_IMR_BCNMISC 0x00800000 /* [5212+] */
  348. #define AR5K_IMR_GPIO 0x01000000 /* GPIO (rf kill)*/
  349. #define AR5K_IMR_QCBRORN 0x02000000 /* CBR overrun (?) [5211+] */
  350. #define AR5K_IMR_QCBRURN 0x04000000 /* CBR underrun (?) [5211+] */
  351. #define AR5K_IMR_QTRIG 0x08000000 /* [5211+] */
  352. /*
  353. * Secondary interrupt mask registers [5211+] (0 - 4)
  354. */
  355. #define AR5K_SIMR0 0x00a4 /* Register Address [5211+] */
  356. #define AR5K_SIMR0_QCU_TXOK 0x000003ff /* Mask for QCU_TXOK */
  357. #define AR5K_SIMR0_QCU_TXOK_S 0
  358. #define AR5K_SIMR0_QCU_TXDESC 0x03ff0000 /* Mask for QCU_TXDESC */
  359. #define AR5K_SIMR0_QCU_TXDESC_S 16
  360. #define AR5K_SIMR1 0x00a8 /* Register Address [5211+] */
  361. #define AR5K_SIMR1_QCU_TXERR 0x000003ff /* Mask for QCU_TXERR */
  362. #define AR5K_SIMR1_QCU_TXERR_S 0
  363. #define AR5K_SIMR1_QCU_TXEOL 0x03ff0000 /* Mask for QCU_TXEOL */
  364. #define AR5K_SIMR1_QCU_TXEOL_S 16
  365. #define AR5K_SIMR2 0x00ac /* Register Address [5211+] */
  366. #define AR5K_SIMR2_QCU_TXURN 0x000003ff /* Mask for QCU_TXURN */
  367. #define AR5K_SIMR2_QCU_TXURN_S 0
  368. #define AR5K_SIMR2_MCABT 0x00100000
  369. #define AR5K_SIMR2_SSERR 0x00200000
  370. #define AR5K_SIMR2_DPERR 0x00400000
  371. #define AR5K_SIMR2_TIM 0x01000000 /* [5212+] */
  372. #define AR5K_SIMR2_CAB_END 0x02000000 /* [5212+] */
  373. #define AR5K_SIMR2_DTIM_SYNC 0x04000000 /* [5212+] */
  374. #define AR5K_SIMR2_BCN_TIMEOUT 0x08000000 /* [5212+] */
  375. #define AR5K_SIMR2_CAB_TIMEOUT 0x10000000 /* [5212+] */
  376. #define AR5K_SIMR2_DTIM 0x20000000 /* [5212+] */
  377. #define AR5K_SIMR3 0x00b0 /* Register Address [5211+] */
  378. #define AR5K_SIMR3_QCBRORN 0x000003ff /* Mask for QCBRORN */
  379. #define AR5K_SIMR3_QCBRORN_S 0
  380. #define AR5K_SIMR3_QCBRURN 0x03ff0000 /* Mask for QCBRURN */
  381. #define AR5K_SIMR3_QCBRURN_S 16
  382. #define AR5K_SIMR4 0x00b4 /* Register Address [5211+] */
  383. #define AR5K_SIMR4_QTRIG 0x000003ff /* Mask for QTRIG */
  384. #define AR5K_SIMR4_QTRIG_S 0
  385. /*
  386. * Decompression mask registers [5212+]
  387. */
  388. #define AR5K_DCM_ADDR 0x0400 /*Decompression mask address (?)*/
  389. #define AR5K_DCM_DATA 0x0404 /*Decompression mask data (?)*/
  390. /*
  391. * Decompression configuration registers [5212+]
  392. */
  393. #define AR5K_DCCFG 0x0420
  394. /*
  395. * Compression configuration registers [5212+]
  396. */
  397. #define AR5K_CCFG 0x0600
  398. #define AR5K_CCFG_CUP 0x0604
  399. /*
  400. * Compression performance counter registers [5212+]
  401. */
  402. #define AR5K_CPC0 0x0610 /* Compression performance counter 0 */
  403. #define AR5K_CPC1 0x0614 /* Compression performance counter 1*/
  404. #define AR5K_CPC2 0x0618 /* Compression performance counter 2 */
  405. #define AR5K_CPC3 0x061c /* Compression performance counter 3 */
  406. #define AR5K_CPCORN 0x0620 /* Compression performance overrun (?) */
  407. /*
  408. * Queue control unit (QCU) registers [5211+]
  409. *
  410. * Card has 12 TX Queues but i see that only 0-9 are used (?)
  411. * both in binary HAL (see ah.h) and ar5k. Each queue has it's own
  412. * TXDP at addresses 0x0800 - 0x082c, a CBR (Constant Bit Rate)
  413. * configuration register (0x08c0 - 0x08ec), a ready time configuration
  414. * register (0x0900 - 0x092c), a misc configuration register (0x09c0 -
  415. * 0x09ec) and a status register (0x0a00 - 0x0a2c). We also have some
  416. * global registers, QCU transmit enable/disable and "one shot arm (?)"
  417. * set/clear, which contain status for all queues (we shift by 1 for each
  418. * queue). To access these registers easily we define some macros here
  419. * that are used inside HAL. For more infos check out *_tx_queue functs.
  420. *
  421. * TODO: Boundary checking on macros (here?)
  422. */
  423. /*
  424. * Generic QCU Register access macros
  425. */
  426. #define AR5K_QUEUE_REG(_r, _q) (((_q) << 2) + _r)
  427. #define AR5K_QCU_GLOBAL_READ(_r, _q) (AR5K_REG_READ(_r) & (1 << _q))
  428. #define AR5K_QCU_GLOBAL_WRITE(_r, _q) AR5K_REG_WRITE(_r, (1 << _q))
  429. /*
  430. * QCU Transmit descriptor pointer registers
  431. */
  432. #define AR5K_QCU_TXDP_BASE 0x0800 /* Register Address - Queue0 TXDP */
  433. #define AR5K_QUEUE_TXDP(_q) AR5K_QUEUE_REG(AR5K_QCU_TXDP_BASE, _q)
  434. /*
  435. * QCU Transmit enable register
  436. */
  437. #define AR5K_QCU_TXE 0x0840
  438. #define AR5K_ENABLE_QUEUE(_q) AR5K_QCU_GLOBAL_WRITE(AR5K_QCU_TXE, _q)
  439. #define AR5K_QUEUE_ENABLED(_q) AR5K_QCU_GLOBAL_READ(AR5K_QCU_TXE, _q)
  440. /*
  441. * QCU Transmit disable register
  442. */
  443. #define AR5K_QCU_TXD 0x0880
  444. #define AR5K_DISABLE_QUEUE(_q) AR5K_QCU_GLOBAL_WRITE(AR5K_QCU_TXD, _q)
  445. #define AR5K_QUEUE_DISABLED(_q) AR5K_QCU_GLOBAL_READ(AR5K_QCU_TXD, _q)
  446. /*
  447. * QCU Constant Bit Rate configuration registers
  448. */
  449. #define AR5K_QCU_CBRCFG_BASE 0x08c0 /* Register Address - Queue0 CBRCFG */
  450. #define AR5K_QCU_CBRCFG_INTVAL 0x00ffffff /* CBR Interval mask */
  451. #define AR5K_QCU_CBRCFG_INTVAL_S 0
  452. #define AR5K_QCU_CBRCFG_ORN_THRES 0xff000000 /* CBR overrun threshold mask */
  453. #define AR5K_QCU_CBRCFG_ORN_THRES_S 24
  454. #define AR5K_QUEUE_CBRCFG(_q) AR5K_QUEUE_REG(AR5K_QCU_CBRCFG_BASE, _q)
  455. /*
  456. * QCU Ready time configuration registers
  457. */
  458. #define AR5K_QCU_RDYTIMECFG_BASE 0x0900 /* Register Address - Queue0 RDYTIMECFG */
  459. #define AR5K_QCU_RDYTIMECFG_INTVAL 0x00ffffff /* Ready time interval mask */
  460. #define AR5K_QCU_RDYTIMECFG_INTVAL_S 0
  461. #define AR5K_QCU_RDYTIMECFG_DURATION 0x00ffffff /* Ready time duration mask */
  462. #define AR5K_QCU_RDYTIMECFG_ENABLE 0x01000000 /* Ready time enable mask */
  463. #define AR5K_QUEUE_RDYTIMECFG(_q) AR5K_QUEUE_REG(AR5K_QCU_RDYTIMECFG_BASE, _q)
  464. /*
  465. * QCU one shot arm set registers
  466. */
  467. #define AR5K_QCU_ONESHOTARM_SET 0x0940 /* Register Address -QCU "one shot arm set (?)" */
  468. #define AR5K_QCU_ONESHOTARM_SET_M 0x0000ffff
  469. /*
  470. * QCU one shot arm clear registers
  471. */
  472. #define AR5K_QCU_ONESHOTARM_CLEAR 0x0980 /* Register Address -QCU "one shot arm clear (?)" */
  473. #define AR5K_QCU_ONESHOTARM_CLEAR_M 0x0000ffff
  474. /*
  475. * QCU misc registers
  476. */
  477. #define AR5K_QCU_MISC_BASE 0x09c0 /* Register Address -Queue0 MISC */
  478. #define AR5K_QCU_MISC_FRSHED_M 0x0000000f /* Frame sheduling mask */
  479. #define AR5K_QCU_MISC_FRSHED_ASAP 0 /* ASAP */
  480. #define AR5K_QCU_MISC_FRSHED_CBR 1 /* Constant Bit Rate */
  481. #define AR5K_QCU_MISC_FRSHED_DBA_GT 2 /* DMA Beacon alert gated (?) */
  482. #define AR5K_QCU_MISC_FRSHED_TIM_GT 3 /* Time gated (?) */
  483. #define AR5K_QCU_MISC_FRSHED_BCN_SENT_GT 4 /* Beacon sent gated (?) */
  484. #define AR5K_QCU_MISC_ONESHOT_ENABLE 0x00000010 /* Oneshot enable */
  485. #define AR5K_QCU_MISC_CBREXP 0x00000020 /* CBR expired (normal queue) */
  486. #define AR5K_QCU_MISC_CBREXP_BCN 0x00000040 /* CBR expired (beacon queue) */
  487. #define AR5K_QCU_MISC_BCN_ENABLE 0x00000080 /* Beacons enabled */
  488. #define AR5K_QCU_MISC_CBR_THRES_ENABLE 0x00000100 /* CBR threshold enabled (?) */
  489. #define AR5K_QCU_MISC_TXE 0x00000200 /* TXE reset when RDYTIME enalbed (?) */
  490. #define AR5K_QCU_MISC_CBR 0x00000400 /* CBR threshold reset (?) */
  491. #define AR5K_QCU_MISC_DCU_EARLY 0x00000800 /* DCU reset (?) */
  492. #define AR5K_QUEUE_MISC(_q) AR5K_QUEUE_REG(AR5K_QCU_MISC_BASE, _q)
  493. /*
  494. * QCU status registers
  495. */
  496. #define AR5K_QCU_STS_BASE 0x0a00 /* Register Address - Queue0 STS */
  497. #define AR5K_QCU_STS_FRMPENDCNT 0x00000003 /* Frames pending counter */
  498. #define AR5K_QCU_STS_CBREXPCNT 0x0000ff00 /* CBR expired counter (?) */
  499. #define AR5K_QUEUE_STATUS(_q) AR5K_QUEUE_REG(AR5K_QCU_STS_BASE, _q)
  500. /*
  501. * QCU ready time shutdown register
  502. */
  503. #define AR5K_QCU_RDYTIMESHDN 0x0a40
  504. #define AR5K_QCU_RDYTIMESHDN_M 0x000003ff
  505. /*
  506. * QCU compression buffer base registers [5212+]
  507. */
  508. #define AR5K_QCU_CBB_SELECT 0x0b00
  509. #define AR5K_QCU_CBB_ADDR 0x0b04
  510. /*
  511. * QCU compression buffer configuration register [5212+]
  512. */
  513. #define AR5K_QCU_CBCFG 0x0b08
  514. /*
  515. * Distributed Coordination Function (DCF) control unit (DCU)
  516. * registers [5211+]
  517. *
  518. * These registers control the various characteristics of each queue
  519. * for 802.11e (WME) combatibility so they go together with
  520. * QCU registers in pairs. For each queue we have a QCU mask register,
  521. * (0x1000 - 0x102c), a local-IFS settings register (0x1040 - 0x106c),
  522. * a retry limit register (0x1080 - 0x10ac), a channel time register
  523. * (0x10c0 - 0x10ec), a misc-settings register (0x1100 - 0x112c) and
  524. * a sequence number register (0x1140 - 0x116c). It seems that "global"
  525. * registers here afect all queues (see use of DCU_GBL_IFS_SLOT in ar5k).
  526. * We use the same macros here for easier register access.
  527. *
  528. */
  529. /*
  530. * DCU QCU mask registers
  531. */
  532. #define AR5K_DCU_QCUMASK_BASE 0x1000 /* Register Address -Queue0 DCU_QCUMASK */
  533. #define AR5K_DCU_QCUMASK_M 0x000003ff
  534. #define AR5K_QUEUE_QCUMASK(_q) AR5K_QUEUE_REG(AR5K_DCU_QCUMASK_BASE, _q)
  535. /*
  536. * DCU local Inter Frame Space settings register
  537. */
  538. #define AR5K_DCU_LCL_IFS_BASE 0x1040 /* Register Address -Queue0 DCU_LCL_IFS */
  539. #define AR5K_DCU_LCL_IFS_CW_MIN 0x000003ff /* Minimum Contention Window */
  540. #define AR5K_DCU_LCL_IFS_CW_MIN_S 0
  541. #define AR5K_DCU_LCL_IFS_CW_MAX 0x000ffc00 /* Maximum Contention Window */
  542. #define AR5K_DCU_LCL_IFS_CW_MAX_S 10
  543. #define AR5K_DCU_LCL_IFS_AIFS 0x0ff00000 /* Arbitrated Interframe Space */
  544. #define AR5K_DCU_LCL_IFS_AIFS_S 20
  545. #define AR5K_QUEUE_DFS_LOCAL_IFS(_q) AR5K_QUEUE_REG(AR5K_DCU_LCL_IFS_BASE, _q)
  546. /*
  547. * DCU retry limit registers
  548. */
  549. #define AR5K_DCU_RETRY_LMT_BASE 0x1080 /* Register Address -Queue0 DCU_RETRY_LMT */
  550. #define AR5K_DCU_RETRY_LMT_SH_RETRY 0x0000000f /* Short retry limit mask */
  551. #define AR5K_DCU_RETRY_LMT_SH_RETRY_S 0
  552. #define AR5K_DCU_RETRY_LMT_LG_RETRY 0x000000f0 /* Long retry limit mask */
  553. #define AR5K_DCU_RETRY_LMT_LG_RETRY_S 4
  554. #define AR5K_DCU_RETRY_LMT_SSH_RETRY 0x00003f00 /* Station short retry limit mask (?) */
  555. #define AR5K_DCU_RETRY_LMT_SSH_RETRY_S 8
  556. #define AR5K_DCU_RETRY_LMT_SLG_RETRY 0x000fc000 /* Station long retry limit mask (?) */
  557. #define AR5K_DCU_RETRY_LMT_SLG_RETRY_S 14
  558. #define AR5K_QUEUE_DFS_RETRY_LIMIT(_q) AR5K_QUEUE_REG(AR5K_DCU_RETRY_LMT_BASE, _q)
  559. /*
  560. * DCU channel time registers
  561. */
  562. #define AR5K_DCU_CHAN_TIME_BASE 0x10c0 /* Register Address -Queue0 DCU_CHAN_TIME */
  563. #define AR5K_DCU_CHAN_TIME_DUR 0x000fffff /* Channel time duration */
  564. #define AR5K_DCU_CHAN_TIME_DUR_S 0
  565. #define AR5K_DCU_CHAN_TIME_ENABLE 0x00100000 /* Enable channel time */
  566. #define AR5K_QUEUE_DFS_CHANNEL_TIME(_q) AR5K_QUEUE_REG(AR5K_DCU_CHAN_TIME_BASE, _q)
  567. /*
  568. * DCU misc registers [5211+]
  569. *
  570. * For some of the registers i couldn't find in the code
  571. * (only backoff stuff is there realy) i tried to match the
  572. * names with 802.11e parameters etc, so i guess VIRTCOL here
  573. * means Virtual Collision and HCFPOLL means Hybrid Coordination
  574. * factor Poll (CF- Poll). Arbiter lockout control controls the
  575. * behaviour on low priority queues when we have multiple queues
  576. * with pending frames. Intra-frame lockout means we wait until
  577. * the queue's current frame transmits (with post frame backoff and bursting)
  578. * before we transmit anything else and global lockout means we
  579. * wait for the whole queue to finish before higher priority queues
  580. * can transmit (this is used on beacon and CAB queues).
  581. * No lockout means there is no special handling.
  582. */
  583. #define AR5K_DCU_MISC_BASE 0x1100 /* Register Address -Queue0 DCU_MISC */
  584. #define AR5K_DCU_MISC_BACKOFF 0x000007ff /* Mask for backoff setting (?) */
  585. #define AR5K_DCU_MISC_BACKOFF_FRAG 0x00000200 /* Enable backoff while bursting */
  586. #define AR5K_DCU_MISC_HCFPOLL_ENABLE 0x00000800 /* CF - Poll (?) */
  587. #define AR5K_DCU_MISC_BACKOFF_PERSIST 0x00001000 /* Persistent backoff (?) */
  588. #define AR5K_DCU_MISC_FRMPRFTCH_ENABLE 0x00002000 /* Enable frame pre-fetch (?) */
  589. #define AR5K_DCU_MISC_VIRTCOL 0x0000c000 /* Mask for Virtual Collision (?) */
  590. #define AR5K_DCU_MISC_VIRTCOL_NORMAL 0
  591. #define AR5K_DCU_MISC_VIRTCOL_MODIFIED 1
  592. #define AR5K_DCU_MISC_VIRTCOL_IGNORE 2
  593. #define AR5K_DCU_MISC_BCN_ENABLE 0x00010000 /* Beacon enable (?) */
  594. #define AR5K_DCU_MISC_ARBLOCK_CTL 0x00060000 /* Arbiter lockout control mask */
  595. #define AR5K_DCU_MISC_ARBLOCK_CTL_S 17
  596. #define AR5K_DCU_MISC_ARBLOCK_CTL_NONE 0 /* No arbiter lockout */
  597. #define AR5K_DCU_MISC_ARBLOCK_CTL_INTFRM 1 /* Intra-frame lockout */
  598. #define AR5K_DCU_MISC_ARBLOCK_CTL_GLOBAL 2 /* Global lockout */
  599. #define AR5K_DCU_MISC_ARBLOCK_IGNORE 0x00080000
  600. #define AR5K_DCU_MISC_SEQ_NUM_INCR_DIS 0x00100000 /* Disable sequence number increment (?) */
  601. #define AR5K_DCU_MISC_POST_FR_BKOFF_DIS 0x00200000 /* Disable post-frame backoff (?) */
  602. #define AR5K_DCU_MISC_VIRT_COLL_POLICY 0x00400000 /* Virtual Collision policy (?) */
  603. #define AR5K_DCU_MISC_BLOWN_IFS_POLICY 0x00800000
  604. #define AR5K_DCU_MISC_SEQNUM_CTL 0x01000000 /* Sequence number control (?) */
  605. #define AR5K_QUEUE_DFS_MISC(_q) AR5K_QUEUE_REG(AR5K_DCU_MISC_BASE, _q)
  606. /*
  607. * DCU frame sequence number registers
  608. */
  609. #define AR5K_DCU_SEQNUM_BASE 0x1140
  610. #define AR5K_DCU_SEQNUM_M 0x00000fff
  611. #define AR5K_QUEUE_DFS_SEQNUM(_q) AR5K_QUEUE_REG(AR5K_DCU_SEQNUM_BASE, _q)
  612. /*
  613. * DCU global IFS SIFS registers
  614. */
  615. #define AR5K_DCU_GBL_IFS_SIFS 0x1030
  616. #define AR5K_DCU_GBL_IFS_SIFS_M 0x0000ffff
  617. /*
  618. * DCU global IFS slot interval registers
  619. */
  620. #define AR5K_DCU_GBL_IFS_SLOT 0x1070
  621. #define AR5K_DCU_GBL_IFS_SLOT_M 0x0000ffff
  622. /*
  623. * DCU global IFS EIFS registers
  624. */
  625. #define AR5K_DCU_GBL_IFS_EIFS 0x10b0
  626. #define AR5K_DCU_GBL_IFS_EIFS_M 0x0000ffff
  627. /*
  628. * DCU global IFS misc registers
  629. */
  630. #define AR5K_DCU_GBL_IFS_MISC 0x10f0 /* Register Address */
  631. #define AR5K_DCU_GBL_IFS_MISC_LFSR_SLICE 0x00000007
  632. #define AR5K_DCU_GBL_IFS_MISC_TURBO_MODE 0x00000008 /* Turbo mode (?) */
  633. #define AR5K_DCU_GBL_IFS_MISC_SIFS_DUR_USEC 0x000003f0 /* SIFS Duration mask (?) */
  634. #define AR5K_DCU_GBL_IFS_MISC_USEC_DUR 0x000ffc00
  635. #define AR5K_DCU_GBL_IFS_MISC_DCU_ARB_DELAY 0x00300000
  636. /*
  637. * DCU frame prefetch control register
  638. */
  639. #define AR5K_DCU_FP 0x1230
  640. /*
  641. * DCU transmit pause control/status register
  642. */
  643. #define AR5K_DCU_TXP 0x1270 /* Register Address */
  644. #define AR5K_DCU_TXP_M 0x000003ff /* Tx pause mask (?) */
  645. #define AR5K_DCU_TXP_STATUS 0x00010000 /* Tx pause status (?) */
  646. /*
  647. * DCU transmit filter register
  648. */
  649. #define AR5K_DCU_TX_FILTER 0x1038
  650. /*
  651. * DCU clear transmit filter register
  652. */
  653. #define AR5K_DCU_TX_FILTER_CLR 0x143c
  654. /*
  655. * DCU set transmit filter register
  656. */
  657. #define AR5K_DCU_TX_FILTER_SET 0x147c
  658. /*
  659. * Reset control register
  660. *
  661. * 4 and 8 are not used in 5211/5212 and
  662. * 2 means "baseband reset" on 5211/5212.
  663. */
  664. #define AR5K_RESET_CTL 0x4000 /* Register Address */
  665. #define AR5K_RESET_CTL_PCU 0x00000001 /* Protocol Control Unit reset */
  666. #define AR5K_RESET_CTL_DMA 0x00000002 /* DMA (Rx/Tx) reset [5210] */
  667. #define AR5K_RESET_CTL_BASEBAND 0x00000002 /* Baseband reset [5211+] */
  668. #define AR5K_RESET_CTL_MAC 0x00000004 /* MAC reset (PCU+Baseband ?) [5210] */
  669. #define AR5K_RESET_CTL_PHY 0x00000008 /* PHY reset [5210] */
  670. #define AR5K_RESET_CTL_PCI 0x00000010 /* PCI Core reset (interrupts etc) */
  671. #define AR5K_RESET_CTL_CHIP (AR5K_RESET_CTL_PCU | AR5K_RESET_CTL_DMA | \
  672. AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_PHY)
  673. /*
  674. * Sleep control register
  675. */
  676. #define AR5K_SLEEP_CTL 0x4004 /* Register Address */
  677. #define AR5K_SLEEP_CTL_SLDUR 0x0000ffff /* Sleep duration mask */
  678. #define AR5K_SLEEP_CTL_SLDUR_S 0
  679. #define AR5K_SLEEP_CTL_SLE 0x00030000 /* Sleep enable mask */
  680. #define AR5K_SLEEP_CTL_SLE_S 16
  681. #define AR5K_SLEEP_CTL_SLE_WAKE 0x00000000 /* Force chip awake */
  682. #define AR5K_SLEEP_CTL_SLE_SLP 0x00010000 /* Force chip sleep */
  683. #define AR5K_SLEEP_CTL_SLE_ALLOW 0x00020000
  684. #define AR5K_SLEEP_CTL_SLE_UNITS 0x00000008 /* [5211+] */
  685. /*
  686. * Interrupt pending register
  687. */
  688. #define AR5K_INTPEND 0x4008
  689. #define AR5K_INTPEND_M 0x00000001
  690. /*
  691. * Sleep force register
  692. */
  693. #define AR5K_SFR 0x400c
  694. #define AR5K_SFR_M 0x00000001
  695. /*
  696. * PCI configuration register
  697. */
  698. #define AR5K_PCICFG 0x4010 /* Register Address */
  699. #define AR5K_PCICFG_EEAE 0x00000001 /* Eeprom access enable [5210] */
  700. #define AR5K_PCICFG_CLKRUNEN 0x00000004 /* CLKRUN enable [5211+] */
  701. #define AR5K_PCICFG_EESIZE 0x00000018 /* Mask for EEPROM size [5211+] */
  702. #define AR5K_PCICFG_EESIZE_S 3
  703. #define AR5K_PCICFG_EESIZE_4K 0 /* 4K */
  704. #define AR5K_PCICFG_EESIZE_8K 1 /* 8K */
  705. #define AR5K_PCICFG_EESIZE_16K 2 /* 16K */
  706. #define AR5K_PCICFG_EESIZE_FAIL 3 /* Failed to get size (?) [5211+] */
  707. #define AR5K_PCICFG_LED 0x00000060 /* Led status [5211+] */
  708. #define AR5K_PCICFG_LED_NONE 0x00000000 /* Default [5211+] */
  709. #define AR5K_PCICFG_LED_PEND 0x00000020 /* Scan / Auth pending */
  710. #define AR5K_PCICFG_LED_ASSOC 0x00000040 /* Associated */
  711. #define AR5K_PCICFG_BUS_SEL 0x00000380 /* Mask for "bus select" [5211+] (?) */
  712. #define AR5K_PCICFG_CBEFIX_DIS 0x00000400 /* Disable CBE fix (?) */
  713. #define AR5K_PCICFG_SL_INTEN 0x00000800 /* Enable interrupts when asleep (?) */
  714. #define AR5K_PCICFG_LED_BCTL 0x00001000 /* Led blink (?) [5210] */
  715. #define AR5K_PCICFG_SL_INPEN 0x00002800 /* Sleep even whith pending interrupts (?) */
  716. #define AR5K_PCICFG_SPWR_DN 0x00010000 /* Mask for power status */
  717. #define AR5K_PCICFG_LEDMODE 0x000e0000 /* Ledmode [5211+] */
  718. #define AR5K_PCICFG_LEDMODE_PROP 0x00000000 /* Blink on standard traffic [5211+] */
  719. #define AR5K_PCICFG_LEDMODE_PROM 0x00020000 /* Default mode (blink on any traffic) [5211+] */
  720. #define AR5K_PCICFG_LEDMODE_PWR 0x00040000 /* Some other blinking mode (?) [5211+] */
  721. #define AR5K_PCICFG_LEDMODE_RAND 0x00060000 /* Random blinking (?) [5211+] */
  722. #define AR5K_PCICFG_LEDBLINK 0x00700000
  723. #define AR5K_PCICFG_LEDBLINK_S 20
  724. #define AR5K_PCICFG_LEDSLOW 0x00800000 /* Slow led blink rate (?) [5211+] */
  725. #define AR5K_PCICFG_LEDSTATE \
  726. (AR5K_PCICFG_LED | AR5K_PCICFG_LEDMODE | \
  727. AR5K_PCICFG_LEDBLINK | AR5K_PCICFG_LEDSLOW)
  728. /*
  729. * "General Purpose Input/Output" (GPIO) control register
  730. *
  731. * I'm not sure about this but after looking at the code
  732. * for all chipsets here is what i got.
  733. *
  734. * We have 6 GPIOs (pins), each GPIO has 4 modes (2 bits)
  735. * Mode 0 -> always input
  736. * Mode 1 -> output when GPIODO for this GPIO is set to 0
  737. * Mode 2 -> output when GPIODO for this GPIO is set to 1
  738. * Mode 3 -> always output
  739. *
  740. * For more infos check out get_gpio/set_gpio and
  741. * set_gpio_input/set_gpio_output functs.
  742. * For more infos on gpio interrupt check out set_gpio_intr.
  743. */
  744. #define AR5K_NUM_GPIO 6
  745. #define AR5K_GPIOCR 0x4014 /* Register Address */
  746. #define AR5K_GPIOCR_INT_ENA 0x00008000 /* Enable GPIO interrupt */
  747. #define AR5K_GPIOCR_INT_SELL 0x00000000 /* Generate interrupt when pin is off (?) */
  748. #define AR5K_GPIOCR_INT_SELH 0x00010000 /* Generate interrupt when pin is on */
  749. #define AR5K_GPIOCR_IN(n) (0 << ((n) * 2)) /* Mode 0 for pin n */
  750. #define AR5K_GPIOCR_OUT0(n) (1 << ((n) * 2)) /* Mode 1 for pin n */
  751. #define AR5K_GPIOCR_OUT1(n) (2 << ((n) * 2)) /* Mode 2 for pin n */
  752. #define AR5K_GPIOCR_OUT(n) (3 << ((n) * 2)) /* Mode 3 for pin n */
  753. #define AR5K_GPIOCR_INT_SEL(n) ((n) << 12) /* Interrupt for GPIO pin n */
  754. /*
  755. * "General Purpose Input/Output" (GPIO) data output register
  756. */
  757. #define AR5K_GPIODO 0x4018
  758. /*
  759. * "General Purpose Input/Output" (GPIO) data input register
  760. */
  761. #define AR5K_GPIODI 0x401c
  762. #define AR5K_GPIODI_M 0x0000002f
  763. /*
  764. * Silicon revision register
  765. */
  766. #define AR5K_SREV 0x4020 /* Register Address */
  767. #define AR5K_SREV_REV 0x0000000f /* Mask for revision */
  768. #define AR5K_SREV_REV_S 0
  769. #define AR5K_SREV_VER 0x000000ff /* Mask for version */
  770. #define AR5K_SREV_VER_S 4
  771. /*====EEPROM REGISTERS====*/
  772. /*
  773. * EEPROM access registers
  774. *
  775. * Here we got a difference between 5210/5211-12
  776. * read data register for 5210 is at 0x6800 and
  777. * status register is at 0x6c00. There is also
  778. * no eeprom command register on 5210 and the
  779. * offsets are different.
  780. *
  781. * To read eeprom data for a specific offset:
  782. * 5210 - enable eeprom access (AR5K_PCICFG_EEAE)
  783. * read AR5K_EEPROM_BASE +(4 * offset)
  784. * check the eeprom status register
  785. * and read eeprom data register.
  786. *
  787. * 5211 - write offset to AR5K_EEPROM_BASE
  788. * 5212 write AR5K_EEPROM_CMD_READ on AR5K_EEPROM_CMD
  789. * check the eeprom status register
  790. * and read eeprom data register.
  791. *
  792. * To write eeprom data for a specific offset:
  793. * 5210 - enable eeprom access (AR5K_PCICFG_EEAE)
  794. * write data to AR5K_EEPROM_BASE +(4 * offset)
  795. * check the eeprom status register
  796. * 5211 - write AR5K_EEPROM_CMD_RESET on AR5K_EEPROM_CMD
  797. * 5212 write offset to AR5K_EEPROM_BASE
  798. * write data to data register
  799. * write AR5K_EEPROM_CMD_WRITE on AR5K_EEPROM_CMD
  800. * check the eeprom status register
  801. *
  802. * For more infos check eeprom_* functs and the ar5k.c
  803. * file posted in madwifi-devel mailing list.
  804. * http://sourceforge.net/mailarchive/message.php?msg_id=8966525
  805. *
  806. */
  807. #define AR5K_EEPROM_BASE 0x6000
  808. /*
  809. * Common ar5xxx EEPROM data offsets (set these on AR5K_EEPROM_BASE)
  810. */
  811. #define AR5K_EEPROM_MAGIC 0x003d /* EEPROM Magic number */
  812. #define AR5K_EEPROM_MAGIC_VALUE 0x5aa5 /* Default - found on EEPROM */
  813. #define AR5K_EEPROM_MAGIC_5212 0x0000145c /* 5212 */
  814. #define AR5K_EEPROM_MAGIC_5211 0x0000145b /* 5211 */
  815. #define AR5K_EEPROM_MAGIC_5210 0x0000145a /* 5210 */
  816. #define AR5K_EEPROM_PROTECT 0x003f /* EEPROM protect status */
  817. #define AR5K_EEPROM_PROTECT_RD_0_31 0x0001 /* Read protection bit for offsets 0x0 - 0x1f */
  818. #define AR5K_EEPROM_PROTECT_WR_0_31 0x0002 /* Write protection bit for offsets 0x0 - 0x1f */
  819. #define AR5K_EEPROM_PROTECT_RD_32_63 0x0004 /* 0x20 - 0x3f */
  820. #define AR5K_EEPROM_PROTECT_WR_32_63 0x0008
  821. #define AR5K_EEPROM_PROTECT_RD_64_127 0x0010 /* 0x40 - 0x7f */
  822. #define AR5K_EEPROM_PROTECT_WR_64_127 0x0020
  823. #define AR5K_EEPROM_PROTECT_RD_128_191 0x0040 /* 0x80 - 0xbf (regdom) */
  824. #define AR5K_EEPROM_PROTECT_WR_128_191 0x0080
  825. #define AR5K_EEPROM_PROTECT_RD_192_207 0x0100 /* 0xc0 - 0xcf */
  826. #define AR5K_EEPROM_PROTECT_WR_192_207 0x0200
  827. #define AR5K_EEPROM_PROTECT_RD_208_223 0x0400 /* 0xd0 - 0xdf */
  828. #define AR5K_EEPROM_PROTECT_WR_208_223 0x0800
  829. #define AR5K_EEPROM_PROTECT_RD_224_239 0x1000 /* 0xe0 - 0xef */
  830. #define AR5K_EEPROM_PROTECT_WR_224_239 0x2000
  831. #define AR5K_EEPROM_PROTECT_RD_240_255 0x4000 /* 0xf0 - 0xff */
  832. #define AR5K_EEPROM_PROTECT_WR_240_255 0x8000
  833. #define AR5K_EEPROM_REG_DOMAIN 0x00bf /* EEPROM regdom */
  834. #define AR5K_EEPROM_INFO_BASE 0x00c0 /* EEPROM header */
  835. #define AR5K_EEPROM_INFO_MAX (0x400 - AR5K_EEPROM_INFO_BASE)
  836. #define AR5K_EEPROM_INFO_CKSUM 0xffff
  837. #define AR5K_EEPROM_INFO(_n) (AR5K_EEPROM_INFO_BASE + (_n))
  838. #define AR5K_EEPROM_VERSION AR5K_EEPROM_INFO(1) /* EEPROM Version */
  839. #define AR5K_EEPROM_VERSION_3_0 0x3000 /* No idea what's going on before this version */
  840. #define AR5K_EEPROM_VERSION_3_1 0x3001 /* ob/db values for 2Ghz (ar5211_rfregs) */
  841. #define AR5K_EEPROM_VERSION_3_2 0x3002 /* different frequency representation (eeprom_bin2freq) */
  842. #define AR5K_EEPROM_VERSION_3_3 0x3003 /* offsets changed, has 32 CTLs (see below) and ee_false_detect (eeprom_read_modes) */
  843. #define AR5K_EEPROM_VERSION_3_4 0x3004 /* has ee_i_gain ee_cck_ofdm_power_delta (eeprom_read_modes) */
  844. #define AR5K_EEPROM_VERSION_4_0 0x4000 /* has ee_misc*, ee_cal_pier, ee_turbo_max_power and ee_xr_power (eeprom_init) */
  845. #define AR5K_EEPROM_VERSION_4_1 0x4001 /* has ee_margin_tx_rx (eeprom_init) */
  846. #define AR5K_EEPROM_VERSION_4_2 0x4002 /* has ee_cck_ofdm_gain_delta (eeprom_init) */
  847. #define AR5K_EEPROM_VERSION_4_3 0x4003
  848. #define AR5K_EEPROM_VERSION_4_4 0x4004
  849. #define AR5K_EEPROM_VERSION_4_5 0x4005
  850. #define AR5K_EEPROM_VERSION_4_6 0x4006 /* has ee_scaled_cck_delta */
  851. #define AR5K_EEPROM_VERSION_4_7 0x3007
  852. #define AR5K_EEPROM_MODE_11A 0
  853. #define AR5K_EEPROM_MODE_11B 1
  854. #define AR5K_EEPROM_MODE_11G 2
  855. #define AR5K_EEPROM_HDR AR5K_EEPROM_INFO(2) /* Header that contains the device caps */
  856. #define AR5K_EEPROM_HDR_11A(_v) (((_v) >> AR5K_EEPROM_MODE_11A) & 0x1)
  857. #define AR5K_EEPROM_HDR_11B(_v) (((_v) >> AR5K_EEPROM_MODE_11B) & 0x1)
  858. #define AR5K_EEPROM_HDR_11G(_v) (((_v) >> AR5K_EEPROM_MODE_11G) & 0x1)
  859. #define AR5K_EEPROM_HDR_T_2GHZ_DIS(_v) (((_v) >> 3) & 0x1) /* Disable turbo for 2Ghz (?) */
  860. #define AR5K_EEPROM_HDR_T_5GHZ_DBM(_v) (((_v) >> 4) & 0x7f) /* Max turbo power for a/XR mode (eeprom_init) */
  861. #define AR5K_EEPROM_HDR_DEVICE(_v) (((_v) >> 11) & 0x7)
  862. #define AR5K_EEPROM_HDR_T_5GHZ_DIS(_v) (((_v) >> 15) & 0x1) /* Disable turbo for 5Ghz (?) */
  863. #define AR5K_EEPROM_HDR_RFKILL(_v) (((_v) >> 14) & 0x1) /* Device has RFKill support */
  864. #define AR5K_EEPROM_RFKILL_GPIO_SEL 0x0000001c
  865. #define AR5K_EEPROM_RFKILL_GPIO_SEL_S 2
  866. #define AR5K_EEPROM_RFKILL_POLARITY 0x00000002
  867. #define AR5K_EEPROM_RFKILL_POLARITY_S 1
  868. /* Newer EEPROMs are using a different offset */
  869. #define AR5K_EEPROM_OFF(_v, _v3_0, _v3_3) \
  870. (((_v) >= AR5K_EEPROM_VERSION_3_3) ? _v3_3 : _v3_0)
  871. #define AR5K_EEPROM_ANT_GAIN(_v) AR5K_EEPROM_OFF(_v, 0x00c4, 0x00c3)
  872. #define AR5K_EEPROM_ANT_GAIN_5GHZ(_v) ((int8_t)(((_v) >> 8) & 0xff))
  873. #define AR5K_EEPROM_ANT_GAIN_2GHZ(_v) ((int8_t)((_v) & 0xff))
  874. /* calibration settings */
  875. #define AR5K_EEPROM_MODES_11A(_v) AR5K_EEPROM_OFF(_v, 0x00c5, 0x00d4)
  876. #define AR5K_EEPROM_MODES_11B(_v) AR5K_EEPROM_OFF(_v, 0x00d0, 0x00f2)
  877. #define AR5K_EEPROM_MODES_11G(_v) AR5K_EEPROM_OFF(_v, 0x00da, 0x010d)
  878. #define AR5K_EEPROM_CTL(_v) AR5K_EEPROM_OFF(_v, 0x00e4, 0x0128) /* Conformance test limits */
  879. /* [3.1 - 3.3] */
  880. #define AR5K_EEPROM_OBDB0_2GHZ 0x00ec
  881. #define AR5K_EEPROM_OBDB1_2GHZ 0x00ed
  882. /* Misc values available since EEPROM 4.0 */
  883. #define AR5K_EEPROM_MISC0 0x00c4
  884. #define AR5K_EEPROM_EARSTART(_v) ((_v) & 0xfff)
  885. #define AR5K_EEPROM_EEMAP(_v) (((_v) >> 14) & 0x3)
  886. #define AR5K_EEPROM_MISC1 0x00c5
  887. #define AR5K_EEPROM_TARGET_PWRSTART(_v) ((_v) & 0xfff)
  888. #define AR5K_EEPROM_HAS32KHZCRYSTAL(_v) (((_v) >> 14) & 0x1)
  889. /*
  890. * EEPROM data register
  891. */
  892. #define AR5K_EEPROM_DATA_5211 0x6004
  893. #define AR5K_EEPROM_DATA_5210 0x6800
  894. #define AR5K_EEPROM_DATA (ah->ah_version == AR5K_AR5210 ? \
  895. AR5K_EEPROM_DATA_5210 : AR5K_EEPROM_DATA_5211)
  896. /*
  897. * EEPROM command register
  898. */
  899. #define AR5K_EEPROM_CMD 0x6008 /* Register Addres */
  900. #define AR5K_EEPROM_CMD_READ 0x00000001 /* EEPROM read */
  901. #define AR5K_EEPROM_CMD_WRITE 0x00000002 /* EEPROM write */
  902. #define AR5K_EEPROM_CMD_RESET 0x00000004 /* EEPROM reset */
  903. /*
  904. * EEPROM status register
  905. */
  906. #define AR5K_EEPROM_STAT_5210 0x6c00 /* Register Address [5210] */
  907. #define AR5K_EEPROM_STAT_5211 0x600c /* Register Address [5211+] */
  908. #define AR5K_EEPROM_STATUS (ah->ah_version == AR5K_AR5210 ? \
  909. AR5K_EEPROM_STAT_5210 : AR5K_EEPROM_STAT_5211)
  910. #define AR5K_EEPROM_STAT_RDERR 0x00000001 /* EEPROM read failed */
  911. #define AR5K_EEPROM_STAT_RDDONE 0x00000002 /* EEPROM read successful */
  912. #define AR5K_EEPROM_STAT_WRERR 0x00000004 /* EEPROM write failed */
  913. #define AR5K_EEPROM_STAT_WRDONE 0x00000008 /* EEPROM write successful */
  914. /*
  915. * EEPROM config register (?)
  916. */
  917. #define AR5K_EEPROM_CFG 0x6010
  918. /*
  919. * Protocol Control Unit (PCU) registers
  920. */
  921. /*
  922. * Used for checking initial register writes
  923. * during channel reset (see reset func)
  924. */
  925. #define AR5K_PCU_MIN 0x8000
  926. #define AR5K_PCU_MAX 0x8fff
  927. /*
  928. * First station id register (MAC address in lower 32 bits)
  929. */
  930. #define AR5K_STA_ID0 0x8000
  931. /*
  932. * Second station id register (MAC address in upper 16 bits)
  933. */
  934. #define AR5K_STA_ID1 0x8004 /* Register Address */
  935. #define AR5K_STA_ID1_AP 0x00010000 /* Set AP mode */
  936. #define AR5K_STA_ID1_ADHOC 0x00020000 /* Set Ad-Hoc mode */
  937. #define AR5K_STA_ID1_PWR_SV 0x00040000 /* Power save reporting (?) */
  938. #define AR5K_STA_ID1_NO_KEYSRCH 0x00080000 /* No key search */
  939. #define AR5K_STA_ID1_NO_PSPOLL 0x00100000 /* No power save polling [5210] */
  940. #define AR5K_STA_ID1_PCF_5211 0x00100000 /* Enable PCF on [5211+] */
  941. #define AR5K_STA_ID1_PCF_5210 0x00200000 /* Enable PCF on [5210]*/
  942. #define AR5K_STA_ID1_PCF (ah->ah_version == AR5K_AR5210 ? \
  943. AR5K_STA_ID1_PCF_5210 : AR5K_STA_ID1_PCF_5211)
  944. #define AR5K_STA_ID1_DEFAULT_ANTENNA 0x00200000 /* Use default antenna */
  945. #define AR5K_STA_ID1_DESC_ANTENNA 0x00400000 /* Update antenna from descriptor */
  946. #define AR5K_STA_ID1_RTS_DEF_ANTENNA 0x00800000 /* Use default antenna for RTS (?) */
  947. #define AR5K_STA_ID1_ACKCTS_6MB 0x01000000 /* Use 6Mbit/s for ACK/CTS (?) */
  948. #define AR5K_STA_ID1_BASE_RATE_11B 0x02000000 /* Use 11b base rate (for ACK/CTS ?) [5211+] */
  949. /*
  950. * First BSSID register (MAC address, lower 32bits)
  951. */
  952. #define AR5K_BSS_ID0 0x8008
  953. /*
  954. * Second BSSID register (MAC address in upper 16 bits)
  955. *
  956. * AID: Association ID
  957. */
  958. #define AR5K_BSS_ID1 0x800c
  959. #define AR5K_BSS_ID1_AID 0xffff0000
  960. #define AR5K_BSS_ID1_AID_S 16
  961. /*
  962. * Backoff slot time register
  963. */
  964. #define AR5K_SLOT_TIME 0x8010
  965. /*
  966. * ACK/CTS timeout register
  967. */
  968. #define AR5K_TIME_OUT 0x8014 /* Register Address */
  969. #define AR5K_TIME_OUT_ACK 0x00001fff /* ACK timeout mask */
  970. #define AR5K_TIME_OUT_ACK_S 0
  971. #define AR5K_TIME_OUT_CTS 0x1fff0000 /* CTS timeout mask */
  972. #define AR5K_TIME_OUT_CTS_S 16
  973. /*
  974. * RSSI threshold register
  975. */
  976. #define AR5K_RSSI_THR 0x8018 /* Register Address */
  977. #define AR5K_RSSI_THR_M 0x000000ff /* Mask for RSSI threshold [5211+] */
  978. #define AR5K_RSSI_THR_BMISS_5210 0x00000700 /* Mask for Beacon Missed threshold [5210] */
  979. #define AR5K_RSSI_THR_BMISS_5210_S 8
  980. #define AR5K_RSSI_THR_BMISS_5211 0x0000ff00 /* Mask for Beacon Missed threshold [5211+] */
  981. #define AR5K_RSSI_THR_BMISS_5211_S 8
  982. #define AR5K_RSSI_THR_BMISS (ah->ah_version == AR5K_AR5210 ? \
  983. AR5K_RSSI_THR_BMISS_5210 : AR5K_RSSI_THR_BMISS_5211)
  984. #define AR5K_RSSI_THR_BMISS_S 8
  985. /*
  986. * 5210 has more PCU registers because there is no QCU/DCU
  987. * so queue parameters are set here, this way a lot common
  988. * registers have different address for 5210. To make things
  989. * easier we define a macro based on ah->ah_version for common
  990. * registers with different addresses and common flags.
  991. */
  992. /*
  993. * Retry limit register
  994. *
  995. * Retry limit register for 5210 (no QCU/DCU so it's done in PCU)
  996. */
  997. #define AR5K_NODCU_RETRY_LMT 0x801c /*Register Address */
  998. #define AR5K_NODCU_RETRY_LMT_SH_RETRY 0x0000000f /* Short retry limit mask */
  999. #define AR5K_NODCU_RETRY_LMT_SH_RETRY_S 0
  1000. #define AR5K_NODCU_RETRY_LMT_LG_RETRY 0x000000f0 /* Long retry mask */
  1001. #define AR5K_NODCU_RETRY_LMT_LG_RETRY_S 4
  1002. #define AR5K_NODCU_RETRY_LMT_SSH_RETRY 0x00003f00 /* Station short retry limit mask */
  1003. #define AR5K_NODCU_RETRY_LMT_SSH_RETRY_S 8
  1004. #define AR5K_NODCU_RETRY_LMT_SLG_RETRY 0x000fc000 /* Station long retry limit mask */
  1005. #define AR5K_NODCU_RETRY_LMT_SLG_RETRY_S 14
  1006. #define AR5K_NODCU_RETRY_LMT_CW_MIN 0x3ff00000 /* Minimum contention window mask */
  1007. #define AR5K_NODCU_RETRY_LMT_CW_MIN_S 20
  1008. /*
  1009. * Transmit latency register
  1010. */
  1011. #define AR5K_USEC_5210 0x8020 /* Register Address [5210] */
  1012. #define AR5K_USEC_5211 0x801c /* Register Address [5211+] */
  1013. #define AR5K_USEC (ah->ah_version == AR5K_AR5210 ? \
  1014. AR5K_USEC_5210 : AR5K_USEC_5211)
  1015. #define AR5K_USEC_1 0x0000007f
  1016. #define AR5K_USEC_1_S 0
  1017. #define AR5K_USEC_32 0x00003f80
  1018. #define AR5K_USEC_32_S 7
  1019. #define AR5K_USEC_TX_LATENCY_5211 0x007fc000
  1020. #define AR5K_USEC_TX_LATENCY_5211_S 14
  1021. #define AR5K_USEC_RX_LATENCY_5211 0x1f800000
  1022. #define AR5K_USEC_RX_LATENCY_5211_S 23
  1023. #define AR5K_USEC_TX_LATENCY_5210 0x000fc000 /* also for 5311 */
  1024. #define AR5K_USEC_TX_LATENCY_5210_S 14
  1025. #define AR5K_USEC_RX_LATENCY_5210 0x03f00000 /* also for 5311 */
  1026. #define AR5K_USEC_RX_LATENCY_5210_S 20
  1027. /*
  1028. * PCU beacon control register
  1029. */
  1030. #define AR5K_BEACON_5210 0x8024
  1031. #define AR5K_BEACON_5211 0x8020
  1032. #define AR5K_BEACON (ah->ah_version == AR5K_AR5210 ? \
  1033. AR5K_BEACON_5210 : AR5K_BEACON_5211)
  1034. #define AR5K_BEACON_PERIOD 0x0000ffff
  1035. #define AR5K_BEACON_PERIOD_S 0
  1036. #define AR5K_BEACON_TIM 0x007f0000
  1037. #define AR5K_BEACON_TIM_S 16
  1038. #define AR5K_BEACON_ENABLE 0x00800000
  1039. #define AR5K_BEACON_RESET_TSF 0x01000000
  1040. /*
  1041. * CFP period register
  1042. */
  1043. #define AR5K_CFP_PERIOD_5210 0x8028
  1044. #define AR5K_CFP_PERIOD_5211 0x8024
  1045. #define AR5K_CFP_PERIOD (ah->ah_version == AR5K_AR5210 ? \
  1046. AR5K_CFP_PERIOD_5210 : AR5K_CFP_PERIOD_5211)
  1047. /*
  1048. * Next beacon time register
  1049. */
  1050. #define AR5K_TIMER0_5210 0x802c
  1051. #define AR5K_TIMER0_5211 0x8028
  1052. #define AR5K_TIMER0 (ah->ah_version == AR5K_AR5210 ? \
  1053. AR5K_TIMER0_5210 : AR5K_TIMER0_5211)
  1054. /*
  1055. * Next DMA beacon alert register
  1056. */
  1057. #define AR5K_TIMER1_5210 0x8030
  1058. #define AR5K_TIMER1_5211 0x802c
  1059. #define AR5K_TIMER1 (ah->ah_version == AR5K_AR5210 ? \
  1060. AR5K_TIMER1_5210 : AR5K_TIMER1_5211)
  1061. /*
  1062. * Next software beacon alert register
  1063. */
  1064. #define AR5K_TIMER2_5210 0x8034
  1065. #define AR5K_TIMER2_5211 0x8030
  1066. #define AR5K_TIMER2 (ah->ah_version == AR5K_AR5210 ? \
  1067. AR5K_TIMER2_5210 : AR5K_TIMER2_5211)
  1068. /*
  1069. * Next ATIM window time register
  1070. */
  1071. #define AR5K_TIMER3_5210 0x8038
  1072. #define AR5K_TIMER3_5211 0x8034
  1073. #define AR5K_TIMER3 (ah->ah_version == AR5K_AR5210 ? \
  1074. AR5K_TIMER3_5210 : AR5K_TIMER3_5211)
  1075. /*
  1076. * 5210 First inter frame spacing register (IFS)
  1077. */
  1078. #define AR5K_IFS0 0x8040
  1079. #define AR5K_IFS0_SIFS 0x000007ff
  1080. #define AR5K_IFS0_SIFS_S 0
  1081. #define AR5K_IFS0_DIFS 0x007ff800
  1082. #define AR5K_IFS0_DIFS_S 11
  1083. /*
  1084. * 5210 Second inter frame spacing register (IFS)
  1085. */
  1086. #define AR5K_IFS1 0x8044
  1087. #define AR5K_IFS1_PIFS 0x00000fff
  1088. #define AR5K_IFS1_PIFS_S 0
  1089. #define AR5K_IFS1_EIFS 0x03fff000
  1090. #define AR5K_IFS1_EIFS_S 12
  1091. #define AR5K_IFS1_CS_EN 0x04000000
  1092. /*
  1093. * CFP duration register
  1094. */
  1095. #define AR5K_CFP_DUR_5210 0x8048
  1096. #define AR5K_CFP_DUR_5211 0x8038
  1097. #define AR5K_CFP_DUR (ah->ah_version == AR5K_AR5210 ? \
  1098. AR5K_CFP_DUR_5210 : AR5K_CFP_DUR_5211)
  1099. /*
  1100. * Receive filter register
  1101. * TODO: Get these out of ar5xxx.h on ath5k
  1102. */
  1103. #define AR5K_RX_FILTER_5210 0x804c /* Register Address [5210] */
  1104. #define AR5K_RX_FILTER_5211 0x803c /* Register Address [5211+] */
  1105. #define AR5K_RX_FILTER (ah->ah_version == AR5K_AR5210 ? \
  1106. AR5K_RX_FILTER_5210 : AR5K_RX_FILTER_5211)
  1107. #define AR5K_RX_FILTER_UCAST 0x00000001 /* Don't filter unicast frames */
  1108. #define AR5K_RX_FILTER_MCAST 0x00000002 /* Don't filter multicast frames */
  1109. #define AR5K_RX_FILTER_BCAST 0x00000004 /* Don't filter broadcast frames */
  1110. #define AR5K_RX_FILTER_CONTROL 0x00000008 /* Don't filter control frames */
  1111. #define AR5K_RX_FILTER_BEACON 0x00000010 /* Don't filter beacon frames */
  1112. #define AR5K_RX_FILTER_PROM 0x00000020 /* Set promiscuous mode */
  1113. #define AR5K_RX_FILTER_XRPOLL 0x00000040 /* Don't filter XR poll frame [5212+] */
  1114. #define AR5K_RX_FILTER_PROBEREQ 0x00000080 /* Don't filter probe requests [5212+] */
  1115. #define AR5K_RX_FILTER_PHYERR_5212 0x00000100 /* Don't filter phy errors [5212+] */
  1116. #define AR5K_RX_FILTER_RADARERR_5212 0x00000200 /* Don't filter phy radar errors [5212+] */
  1117. #define AR5K_RX_FILTER_PHYERR_5211 0x00000040 /* [5211] */
  1118. #define AR5K_RX_FILTER_RADARERR_5211 0x00000080 /* [5211] */
  1119. #define AR5K_RX_FILTER_PHYERR \
  1120. ((ah->ah_version == AR5K_AR5211 ? \
  1121. AR5K_RX_FILTER_PHYERR_5211 : AR5K_RX_FILTER_PHYERR_5212))
  1122. #define AR5K_RX_FILTER_RADARERR \
  1123. ((ah->ah_version == AR5K_AR5211 ? \
  1124. AR5K_RX_FILTER_RADARERR_5211 : AR5K_RX_FILTER_RADARERR_5212))
  1125. /*
  1126. * Multicast filter register (lower 32 bits)
  1127. */
  1128. #define AR5K_MCAST_FILTER0_5210 0x8050
  1129. #define AR5K_MCAST_FILTER0_5211 0x8040
  1130. #define AR5K_MCAST_FILTER0 (ah->ah_version == AR5K_AR5210 ? \
  1131. AR5K_MCAST_FILTER0_5210 : AR5K_MCAST_FILTER0_5211)
  1132. /*
  1133. * Multicast filter register (higher 16 bits)
  1134. */
  1135. #define AR5K_MCAST_FILTER1_5210 0x8054
  1136. #define AR5K_MCAST_FILTER1_5211 0x8044
  1137. #define AR5K_MCAST_FILTER1 (ah->ah_version == AR5K_AR5210 ? \
  1138. AR5K_MCAST_FILTER1_5210 : AR5K_MCAST_FILTER1_5211)
  1139. /*
  1140. * Transmit mask register (lower 32 bits) [5210]
  1141. */
  1142. #define AR5K_TX_MASK0 0x8058
  1143. /*
  1144. * Transmit mask register (higher 16 bits) [5210]
  1145. */
  1146. #define AR5K_TX_MASK1 0x805c
  1147. /*
  1148. * Clear transmit mask [5210]
  1149. */
  1150. #define AR5K_CLR_TMASK 0x8060
  1151. /*
  1152. * Trigger level register (before transmission) [5210]
  1153. */
  1154. #define AR5K_TRIG_LVL 0x8064
  1155. /*
  1156. * PCU control register
  1157. *
  1158. * Only DIS_RX is used in the code, the rest i guess are
  1159. * for tweaking/diagnostics.
  1160. */
  1161. #define AR5K_DIAG_SW_5210 0x8068 /* Register Address [5210] */
  1162. #define AR5K_DIAG_SW_5211 0x8048 /* Register Address [5211+] */
  1163. #define AR5K_DIAG_SW (ah->ah_version == AR5K_AR5210 ? \
  1164. AR5K_DIAG_SW_5210 : AR5K_DIAG_SW_5211)
  1165. #define AR5K_DIAG_SW_DIS_WEP_ACK 0x00000001
  1166. #define AR5K_DIAG_SW_DIS_ACK 0x00000002 /* Disable ACKs (?) */
  1167. #define AR5K_DIAG_SW_DIS_CTS 0x00000004 /* Disable CTSs (?) */
  1168. #define AR5K_DIAG_SW_DIS_ENC 0x00000008 /* Disable encryption (?) */
  1169. #define AR5K_DIAG_SW_DIS_DEC 0x00000010 /* Disable decryption (?) */
  1170. #define AR5K_DIAG_SW_DIS_TX 0x00000020 /* Disable transmit [5210] */
  1171. #define AR5K_DIAG_SW_DIS_RX_5210 0x00000040 /* Disable recieve */
  1172. #define AR5K_DIAG_SW_DIS_RX_5211 0x00000020
  1173. #define AR5K_DIAG_SW_DIS_RX (ah->ah_version == AR5K_AR5210 ? \
  1174. AR5K_DIAG_SW_DIS_RX_5210 : AR5K_DIAG_SW_DIS_RX_5211)
  1175. #define AR5K_DIAG_SW_LOOP_BACK_5210 0x00000080 /* Loopback (i guess it goes with DIS_TX) [5210] */
  1176. #define AR5K_DIAG_SW_LOOP_BACK_5211 0x00000040
  1177. #define AR5K_DIAG_SW_LOOP_BACK (ah->ah_version == AR5K_AR5210 ? \
  1178. AR5K_DIAG_SW_LOOP_BACK_5210 : AR5K_DIAG_SW_LOOP_BACK_5211)
  1179. #define AR5K_DIAG_SW_CORR_FCS_5210 0x00000100
  1180. #define AR5K_DIAG_SW_CORR_FCS_5211 0x00000080
  1181. #define AR5K_DIAG_SW_CORR_FCS (ah->ah_version == AR5K_AR5210 ? \
  1182. AR5K_DIAG_SW_CORR_FCS_5210 : AR5K_DIAG_SW_CORR_FCS_5211)
  1183. #define AR5K_DIAG_SW_CHAN_INFO_5210 0x00000200
  1184. #define AR5K_DIAG_SW_CHAN_INFO_5211 0x00000100
  1185. #define AR5K_DIAG_SW_CHAN_INFO (ah->ah_version == AR5K_AR5210 ? \
  1186. AR5K_DIAG_SW_CHAN_INFO_5210 : AR5K_DIAG_SW_CHAN_INFO_5211)
  1187. #define AR5K_DIAG_SW_EN_SCRAM_SEED_5211 0x00000200 /* Scrambler seed (?) */
  1188. #define AR5K_DIAG_SW_EN_SCRAM_SEED_5210 0x00000400
  1189. #define AR5K_DIAG_SW_EN_SCRAM_SEED (ah->ah_version == AR5K_AR5210 ? \
  1190. AR5K_DIAG_SW_EN_SCRAM_SEED_5210 : AR5K_DIAG_SW_EN_SCRAM_SEED_5211)
  1191. #define AR5K_DIAG_SW_ECO_ENABLE 0x00000400 /* [5211+] */
  1192. #define AR5K_DIAG_SW_SCVRAM_SEED 0x0003f800 /* [5210] */
  1193. #define AR5K_DIAG_SW_SCRAM_SEED_M 0x0001fc00 /* Scrambler seed mask (?) */
  1194. #define AR5K_DIAG_SW_SCRAM_SEED_S 10
  1195. #define AR5K_DIAG_SW_DIS_SEQ_INC 0x00040000 /* Disable seqnum increment (?)[5210] */
  1196. #define AR5K_DIAG_SW_FRAME_NV0_5210 0x00080000
  1197. #define AR5K_DIAG_SW_FRAME_NV0_5211 0x00020000
  1198. #define AR5K_DIAG_SW_FRAME_NV0 (ah->ah_version == AR5K_AR5210 ? \
  1199. AR5K_DIAG_SW_FRAME_NV0_5210 : AR5K_DIAG_SW_FRAME_NV0_5211)
  1200. #define AR5K_DIAG_SW_OBSPT_M 0x000c0000
  1201. #define AR5K_DIAG_SW_OBSPT_S 18
  1202. /*
  1203. * TSF (clock) register (lower 32 bits)
  1204. */
  1205. #define AR5K_TSF_L32_5210 0x806c
  1206. #define AR5K_TSF_L32_5211 0x804c
  1207. #define AR5K_TSF_L32 (ah->ah_version == AR5K_AR5210 ? \
  1208. AR5K_TSF_L32_5210 : AR5K_TSF_L32_5211)
  1209. /*
  1210. * TSF (clock) register (higher 32 bits)
  1211. */
  1212. #define AR5K_TSF_U32_5210 0x8070
  1213. #define AR5K_TSF_U32_5211 0x8050
  1214. #define AR5K_TSF_U32 (ah->ah_version == AR5K_AR5210 ? \
  1215. AR5K_TSF_U32_5210 : AR5K_TSF_U32_5211)
  1216. /*
  1217. * Last beacon timestamp register
  1218. */
  1219. #define AR5K_LAST_TSTP 0x8080
  1220. /*
  1221. * ADDAC test register [5211+]
  1222. */
  1223. #define AR5K_ADDAC_TEST 0x8054
  1224. #define AR5K_ADDAC_TEST_TXCONT 0x00000001
  1225. /*
  1226. * Default antenna register [5211+]
  1227. */
  1228. #define AR5K_DEFAULT_ANTENNA 0x8058
  1229. /*
  1230. * Retry count register [5210]
  1231. */
  1232. #define AR5K_RETRY_CNT 0x8084 /* Register Address [5210] */
  1233. #define AR5K_RETRY_CNT_SSH 0x0000003f /* Station short retry count (?) */
  1234. #define AR5K_RETRY_CNT_SLG 0x00000fc0 /* Station long retry count (?) */
  1235. /*
  1236. * Back-off status register [5210]
  1237. */
  1238. #define AR5K_BACKOFF 0x8088 /* Register Address [5210] */
  1239. #define AR5K_BACKOFF_CW 0x000003ff /* Backoff Contention Window (?) */
  1240. #define AR5K_BACKOFF_CNT 0x03ff0000 /* Backoff count (?) */
  1241. /*
  1242. * NAV register (current)
  1243. */
  1244. #define AR5K_NAV_5210 0x808c
  1245. #define AR5K_NAV_5211 0x8084
  1246. #define AR5K_NAV (ah->ah_version == AR5K_AR5210 ? \
  1247. AR5K_NAV_5210 : AR5K_NAV_5211)
  1248. /*
  1249. * RTS success register
  1250. */
  1251. #define AR5K_RTS_OK_5210 0x8090
  1252. #define AR5K_RTS_OK_5211 0x8088
  1253. #define AR5K_RTS_OK (ah->ah_version == AR5K_AR5210 ? \
  1254. AR5K_RTS_OK_5210 : AR5K_RTS_OK_5211)
  1255. /*
  1256. * RTS failure register
  1257. */
  1258. #define AR5K_RTS_FAIL_5210 0x8094
  1259. #define AR5K_RTS_FAIL_5211 0x808c
  1260. #define AR5K_RTS_FAIL (ah->ah_version == AR5K_AR5210 ? \
  1261. AR5K_RTS_FAIL_5210 : AR5K_RTS_FAIL_5211)
  1262. /*
  1263. * ACK failure register
  1264. */
  1265. #define AR5K_ACK_FAIL_5210 0x8098
  1266. #define AR5K_ACK_FAIL_5211 0x8090
  1267. #define AR5K_ACK_FAIL (ah->ah_version == AR5K_AR5210 ? \
  1268. AR5K_ACK_FAIL_5210 : AR5K_ACK_FAIL_5211)
  1269. /*
  1270. * FCS failure register
  1271. */
  1272. #define AR5K_FCS_FAIL_5210 0x809c
  1273. #define AR5K_FCS_FAIL_5211 0x8094
  1274. #define AR5K_FCS_FAIL (ah->ah_version == AR5K_AR5210 ? \
  1275. AR5K_FCS_FAIL_5210 : AR5K_FCS_FAIL_5211)
  1276. /*
  1277. * Beacon count register
  1278. */
  1279. #define AR5K_BEACON_CNT_5210 0x80a0
  1280. #define AR5K_BEACON_CNT_5211 0x8098
  1281. #define AR5K_BEACON_CNT (ah->ah_version == AR5K_AR5210 ? \
  1282. AR5K_BEACON_CNT_5210 : AR5K_BEACON_CNT_5211)
  1283. /*===5212 Specific PCU registers===*/
  1284. /*
  1285. * XR (eXtended Range) mode register
  1286. */
  1287. #define AR5K_XRMODE 0x80c0
  1288. #define AR5K_XRMODE_POLL_TYPE_M 0x0000003f
  1289. #define AR5K_XRMODE_POLL_TYPE_S 0
  1290. #define AR5K_XRMODE_POLL_SUBTYPE_M 0x0000003c
  1291. #define AR5K_XRMODE_POLL_SUBTYPE_S 2
  1292. #define AR5K_XRMODE_POLL_WAIT_ALL 0x00000080
  1293. #define AR5K_XRMODE_SIFS_DELAY 0x000fff00
  1294. #define AR5K_XRMODE_FRAME_HOLD_M 0xfff00000
  1295. #define AR5K_XRMODE_FRAME_HOLD_S 20
  1296. /*
  1297. * XR delay register
  1298. */
  1299. #define AR5K_XRDELAY 0x80c4
  1300. #define AR5K_XRDELAY_SLOT_DELAY_M 0x0000ffff
  1301. #define AR5K_XRDELAY_SLOT_DELAY_S 0
  1302. #define AR5K_XRDELAY_CHIRP_DELAY_M 0xffff0000
  1303. #define AR5K_XRDELAY_CHIRP_DELAY_S 16
  1304. /*
  1305. * XR timeout register
  1306. */
  1307. #define AR5K_XRTIMEOUT 0x80c8
  1308. #define AR5K_XRTIMEOUT_CHIRP_M 0x0000ffff
  1309. #define AR5K_XRTIMEOUT_CHIRP_S 0
  1310. #define AR5K_XRTIMEOUT_POLL_M 0xffff0000
  1311. #define AR5K_XRTIMEOUT_POLL_S 16
  1312. /*
  1313. * XR chirp register
  1314. */
  1315. #define AR5K_XRCHIRP 0x80cc
  1316. #define AR5K_XRCHIRP_SEND 0x00000001
  1317. #define AR5K_XRCHIRP_GAP 0xffff0000
  1318. /*
  1319. * XR stomp register
  1320. */
  1321. #define AR5K_XRSTOMP 0x80d0
  1322. #define AR5K_XRSTOMP_TX 0x00000001
  1323. #define AR5K_XRSTOMP_RX_ABORT 0x00000002
  1324. #define AR5K_XRSTOMP_RSSI_THRES 0x0000ff00
  1325. /*
  1326. * First enhanced sleep register
  1327. */
  1328. #define AR5K_SLEEP0 0x80d4
  1329. #define AR5K_SLEEP0_NEXT_DTIM 0x0007ffff
  1330. #define AR5K_SLEEP0_NEXT_DTIM_S 0
  1331. #define AR5K_SLEEP0_ASSUME_DTIM 0x00080000
  1332. #define AR5K_SLEEP0_ENH_SLEEP_EN 0x00100000
  1333. #define AR5K_SLEEP0_CABTO 0xff000000
  1334. #define AR5K_SLEEP0_CABTO_S 24
  1335. /*
  1336. * Second enhanced sleep register
  1337. */
  1338. #define AR5K_SLEEP1 0x80d8
  1339. #define AR5K_SLEEP1_NEXT_TIM 0x0007ffff
  1340. #define AR5K_SLEEP1_NEXT_TIM_S 0
  1341. #define AR5K_SLEEP1_BEACON_TO 0xff000000
  1342. #define AR5K_SLEEP1_BEACON_TO_S 24
  1343. /*
  1344. * Third enhanced sleep register
  1345. */
  1346. #define AR5K_SLEEP2 0x80dc
  1347. #define AR5K_SLEEP2_TIM_PER 0x0000ffff
  1348. #define AR5K_SLEEP2_TIM_PER_S 0
  1349. #define AR5K_SLEEP2_DTIM_PER 0xffff0000
  1350. #define AR5K_SLEEP2_DTIM_PER_S 16
  1351. /*
  1352. * BSSID mask registers
  1353. */
  1354. #define AR5K_BSS_IDM0 0x80e0
  1355. #define AR5K_BSS_IDM1 0x80e4
  1356. /*
  1357. * TX power control (TPC) register
  1358. */
  1359. #define AR5K_TXPC 0x80e8
  1360. #define AR5K_TXPC_ACK_M 0x0000003f
  1361. #define AR5K_TXPC_ACK_S 0
  1362. #define AR5K_TXPC_CTS_M 0x00003f00
  1363. #define AR5K_TXPC_CTS_S 8
  1364. #define AR5K_TXPC_CHIRP_M 0x003f0000
  1365. #define AR5K_TXPC_CHIRP_S 22
  1366. /*
  1367. * Profile count registers
  1368. */
  1369. #define AR5K_PROFCNT_TX 0x80ec
  1370. #define AR5K_PROFCNT_RX 0x80f0
  1371. #define AR5K_PROFCNT_RXCLR 0x80f4
  1372. #define AR5K_PROFCNT_CYCLE 0x80f8
  1373. /*
  1374. * TSF parameter register
  1375. */
  1376. #define AR5K_TSF_PARM 0x8104
  1377. #define AR5K_TSF_PARM_INC_M 0x000000ff
  1378. #define AR5K_TSF_PARM_INC_S 0
  1379. /*
  1380. * PHY error filter register
  1381. */
  1382. #define AR5K_PHY_ERR_FIL 0x810c
  1383. #define AR5K_PHY_ERR_FIL_RADAR 0x00000020
  1384. #define AR5K_PHY_ERR_FIL_OFDM 0x00020000
  1385. #define AR5K_PHY_ERR_FIL_CCK 0x02000000
  1386. /*
  1387. * Rate duration register
  1388. */
  1389. #define AR5K_RATE_DUR_BASE 0x8700
  1390. #define AR5K_RATE_DUR(_n) (AR5K_RATE_DUR_BASE + ((_n) << 2))
  1391. /*===5212 end===*/
  1392. /*
  1393. * Key table (WEP) register
  1394. */
  1395. #define AR5K_KEYTABLE_0_5210 0x9000
  1396. #define AR5K_KEYTABLE_0_5211 0x8800
  1397. #define AR5K_KEYTABLE_5210(_n) (AR5K_KEYTABLE_0_5210 + ((_n) << 5))
  1398. #define AR5K_KEYTABLE_5211(_n) (AR5K_KEYTABLE_0_5211 + ((_n) << 5))
  1399. #define AR5K_KEYTABLE(_n) (ah->ah_version == AR5K_AR5210 ? \
  1400. AR5K_KEYTABLE_5210(_n) : AR5K_KEYTABLE_5211(_n))
  1401. #define AR5K_KEYTABLE_OFF(_n, x) (AR5K_KEYTABLE(_n) + (x << 2))
  1402. #define AR5K_KEYTABLE_TYPE(_n) AR5K_KEYTABLE_OFF(_n, 5)
  1403. #define AR5K_KEYTABLE_TYPE_40 0x00000000
  1404. #define AR5K_KEYTABLE_TYPE_104 0x00000001
  1405. #define AR5K_KEYTABLE_TYPE_128 0x00000003
  1406. #define AR5K_KEYTABLE_TYPE_TKIP 0x00000004 /* [5212+] */
  1407. #define AR5K_KEYTABLE_TYPE_AES 0x00000005 /* [5211+] */
  1408. #define AR5K_KEYTABLE_TYPE_CCM 0x00000006 /* [5212+] */
  1409. #define AR5K_KEYTABLE_TYPE_NULL 0x00000007 /* [5211+] */
  1410. #define AR5K_KEYTABLE_ANTENNA 0x00000008 /* [5212+] */
  1411. #define AR5K_KEYTABLE_MAC0(_n) AR5K_KEYTABLE_OFF(_n, 6)
  1412. #define AR5K_KEYTABLE_MAC1(_n) AR5K_KEYTABLE_OFF(_n, 7)
  1413. #define AR5K_KEYTABLE_VALID 0x00008000
  1414. /* WEP 40-bit = 40-bit entered key + 24 bit IV = 64-bit
  1415. * WEP 104-bit = 104-bit entered key + 24-bit IV = 128-bit
  1416. * WEP 128-bit = 128-bit entered key + 24 bit IV = 152-bit
  1417. *
  1418. * Some vendors have introduced bigger WEP keys to address
  1419. * security vulnerabilities in WEP. This includes:
  1420. *
  1421. * WEP 232-bit = 232-bit entered key + 24 bit IV = 256-bit
  1422. *
  1423. * We can expand this if we find ar5k Atheros cards with a larger
  1424. * key table size.
  1425. */
  1426. #define AR5K_KEYTABLE_SIZE_5210 64
  1427. #define AR5K_KEYTABLE_SIZE_5211 128
  1428. #define AR5K_KEYTABLE_SIZE (ah->ah_version == AR5K_AR5210 ? \
  1429. AR5K_KEYTABLE_SIZE_5210 : AR5K_KEYTABLE_SIZE_5211)
  1430. /*===PHY REGISTERS===*/
  1431. /*
  1432. * PHY register
  1433. */
  1434. #define AR5K_PHY_BASE 0x9800
  1435. #define AR5K_PHY(_n) (AR5K_PHY_BASE + ((_n) << 2))
  1436. #define AR5K_PHY_SHIFT_2GHZ 0x00004007
  1437. #define AR5K_PHY_SHIFT_5GHZ 0x00000007
  1438. /*
  1439. * PHY frame control register [5110] /turbo mode register [5111+]
  1440. *
  1441. * There is another frame control register for [5111+]
  1442. * at address 0x9944 (see below) but the 2 first flags
  1443. * are common here between 5110 frame control register
  1444. * and [5111+] turbo mode register, so this also works as
  1445. * a "turbo mode register" for 5110. We treat this one as
  1446. * a frame control register for 5110 below.
  1447. */
  1448. #define AR5K_PHY_TURBO 0x9804
  1449. #define AR5K_PHY_TURBO_MODE 0x00000001
  1450. #define AR5K_PHY_TURBO_SHORT 0x00000002
  1451. /*
  1452. * PHY agility command register
  1453. */
  1454. #define AR5K_PHY_AGC 0x9808
  1455. #define AR5K_PHY_AGC_DISABLE 0x08000000
  1456. /*
  1457. * PHY timing register [5112+]
  1458. */
  1459. #define AR5K_PHY_TIMING_3 0x9814
  1460. #define AR5K_PHY_TIMING_3_DSC_MAN 0xfffe0000
  1461. #define AR5K_PHY_TIMING_3_DSC_MAN_S 17
  1462. #define AR5K_PHY_TIMING_3_DSC_EXP 0x0001e000
  1463. #define AR5K_PHY_TIMING_3_DSC_EXP_S 13
  1464. /*
  1465. * PHY chip revision register
  1466. */
  1467. #define AR5K_PHY_CHIP_ID 0x9818
  1468. /*
  1469. * PHY activation register
  1470. */
  1471. #define AR5K_PHY_ACT 0x981c
  1472. #define AR5K_PHY_ACT_ENABLE 0x00000001
  1473. #define AR5K_PHY_ACT_DISABLE 0x00000002
  1474. /*
  1475. * PHY signal register
  1476. */
  1477. #define AR5K_PHY_SIG 0x9858
  1478. #define AR5K_PHY_SIG_FIRSTEP 0x0003f000
  1479. #define AR5K_PHY_SIG_FIRSTEP_S 12
  1480. #define AR5K_PHY_SIG_FIRPWR 0x03fc0000
  1481. #define AR5K_PHY_SIG_FIRPWR_S 18
  1482. /*
  1483. * PHY coarse agility control register
  1484. */
  1485. #define AR5K_PHY_AGCCOARSE 0x985c
  1486. #define AR5K_PHY_AGCCOARSE_LO 0x00007f80
  1487. #define AR5K_PHY_AGCCOARSE_LO_S 7
  1488. #define AR5K_PHY_AGCCOARSE_HI 0x003f8000
  1489. #define AR5K_PHY_AGCCOARSE_HI_S 15
  1490. /*
  1491. * PHY agility control register
  1492. */
  1493. #define AR5K_PHY_AGCCTL 0x9860 /* Register address */
  1494. #define AR5K_PHY_AGCCTL_CAL 0x00000001 /* Enable PHY calibration */
  1495. #define AR5K_PHY_AGCCTL_NF 0x00000002 /* Enable Noise Floor calibration */
  1496. /*
  1497. * PHY noise floor status register
  1498. */
  1499. #define AR5K_PHY_NF 0x9864
  1500. #define AR5K_PHY_NF_M 0x000001ff
  1501. #define AR5K_PHY_NF_ACTIVE 0x00000100
  1502. #define AR5K_PHY_NF_RVAL(_n) (((_n) >> 19) & AR5K_PHY_NF_M)
  1503. #define AR5K_PHY_NF_AVAL(_n) (-((_n) ^ AR5K_PHY_NF_M) + 1)
  1504. #define AR5K_PHY_NF_SVAL(_n) (((_n) & AR5K_PHY_NF_M) | (1 << 9))
  1505. /*
  1506. * PHY ADC saturation register [5110]
  1507. */
  1508. #define AR5K_PHY_ADCSAT 0x9868
  1509. #define AR5K_PHY_ADCSAT_ICNT 0x0001f800
  1510. #define AR5K_PHY_ADCSAT_ICNT_S 11
  1511. #define AR5K_PHY_ADCSAT_THR 0x000007e0
  1512. #define AR5K_PHY_ADCSAT_THR_S 5
  1513. /*
  1514. * PHY sleep registers [5112+]
  1515. */
  1516. #define AR5K_PHY_SCR 0x9870
  1517. #define AR5K_PHY_SCR_32MHZ 0x0000001f
  1518. #define AR5K_PHY_SLMT 0x9874
  1519. #define AR5K_PHY_SLMT_32MHZ 0x0000007f
  1520. #define AR5K_PHY_SCAL 0x9878
  1521. #define AR5K_PHY_SCAL_32MHZ 0x0000000e
  1522. /*
  1523. * PHY PLL (Phase Locked Loop) control register
  1524. */
  1525. #define AR5K_PHY_PLL 0x987c
  1526. #define AR5K_PHY_PLL_20MHZ 0x13 /* For half rate (?) [5111+] */
  1527. #define AR5K_PHY_PLL_40MHZ_5211 0x18 /* For 802.11a */
  1528. #define AR5K_PHY_PLL_40MHZ_5212 0x000000aa
  1529. #define AR5K_PHY_PLL_40MHZ (ah->ah_version == AR5K_AR5211 ? \
  1530. AR5K_PHY_PLL_40MHZ_5211 : AR5K_PHY_PLL_40MHZ_5212)
  1531. #define AR5K_PHY_PLL_44MHZ_5211 0x19 /* For 802.11b/g */
  1532. #define AR5K_PHY_PLL_44MHZ_5212 0x000000ab
  1533. #define AR5K_PHY_PLL_44MHZ (ah->ah_version == AR5K_AR5211 ? \
  1534. AR5K_PHY_PLL_44MHZ_5211 : AR5K_PHY_PLL_44MHZ_5212)
  1535. #define AR5K_PHY_PLL_RF5111 0x00000000
  1536. #define AR5K_PHY_PLL_RF5112 0x00000040
  1537. /*
  1538. * RF Buffer register
  1539. *
  1540. * There are some special control registers on the RF chip
  1541. * that hold various operation settings related mostly to
  1542. * the analog parts (channel, gain adjustment etc).
  1543. *
  1544. * We don't write on those registers directly but
  1545. * we send a data packet on the buffer register and
  1546. * then write on another special register to notify hw
  1547. * to apply the settings. This is done so that control registers
  1548. * can be dynamicaly programmed during operation and the settings
  1549. * are applied faster on the hw.
  1550. *
  1551. * We sent such data packets during rf initialization and channel change
  1552. * through ath5k_hw_rf*_rfregs and ath5k_hw_rf*_channel functions.
  1553. *
  1554. * The data packets we send during initializadion are inside ath5k_ini_rf
  1555. * struct (see ath5k_hw.h) and each one is related to an "rf register bank".
  1556. * We use *rfregs functions to modify them acording to current operation
  1557. * mode and eeprom values and pass them all together to the chip.
  1558. *
  1559. * It's obvious from the code that 0x989c is the buffer register but
  1560. * for the other special registers that we write to after sending each
  1561. * packet, i have no idea. So i'll name them BUFFER_CONTROL_X registers
  1562. * for now. It's interesting that they are also used for some other operations.
  1563. *
  1564. * Also check out hw.h and U.S. Patent 6677779 B1 (about buffer
  1565. * registers and control registers):
  1566. *
  1567. * http://www.google.com/patents?id=qNURAAAAEBAJ
  1568. */
  1569. #define AR5K_RF_BUFFER 0x989c
  1570. #define AR5K_RF_BUFFER_CONTROL_0 0x98c0 /* Channel on 5110 */
  1571. #define AR5K_RF_BUFFER_CONTROL_1 0x98c4 /* Bank 7 on 5112 */
  1572. #define AR5K_RF_BUFFER_CONTROL_2 0x98cc /* Bank 7 on 5111 */
  1573. #define AR5K_RF_BUFFER_CONTROL_3 0x98d0 /* Bank 2 on 5112 */
  1574. /* Channel set on 5111 */
  1575. /* Used to read radio revision*/
  1576. #define AR5K_RF_BUFFER_CONTROL_4 0x98d4 /* RF Stage register on 5110 */
  1577. /* Bank 0,1,2,6 on 5111 */
  1578. /* Bank 1 on 5112 */
  1579. /* Used during activation on 5111 */
  1580. #define AR5K_RF_BUFFER_CONTROL_5 0x98d8 /* Bank 3 on 5111 */
  1581. /* Used during activation on 5111 */
  1582. /* Channel on 5112 */
  1583. /* Bank 6 on 5112 */
  1584. #define AR5K_RF_BUFFER_CONTROL_6 0x98dc /* Bank 3 on 5112 */
  1585. /*
  1586. * PHY RF stage register [5210]
  1587. */
  1588. #define AR5K_PHY_RFSTG 0x98d4
  1589. #define AR5K_PHY_RFSTG_DISABLE 0x00000021
  1590. /*
  1591. * PHY receiver delay register [5111+]
  1592. */
  1593. #define AR5K_PHY_RX_DELAY 0x9914
  1594. #define AR5K_PHY_RX_DELAY_M 0x00003fff
  1595. /*
  1596. * PHY timing I(nphase) Q(adrature) control register [5111+]
  1597. */
  1598. #define AR5K_PHY_IQ 0x9920 /* Register address */
  1599. #define AR5K_PHY_IQ_CORR_Q_Q_COFF 0x0000001f /* Mask for q correction info */
  1600. #define AR5K_PHY_IQ_CORR_Q_I_COFF 0x000007e0 /* Mask for i correction info */
  1601. #define AR5K_PHY_IQ_CORR_Q_I_COFF_S 5
  1602. #define AR5K_PHY_IQ_CORR_ENABLE 0x00000800 /* Enable i/q correction */
  1603. #define AR5K_PHY_IQ_CAL_NUM_LOG_MAX 0x0000f000
  1604. #define AR5K_PHY_IQ_CAL_NUM_LOG_MAX_S 12
  1605. #define AR5K_PHY_IQ_RUN 0x00010000 /* Run i/q calibration */
  1606. /*
  1607. * PHY PAPD probe register [5111+ (?)]
  1608. * Is this only present in 5212 ?
  1609. * Because it's always 0 in 5211 initialization code
  1610. */
  1611. #define AR5K_PHY_PAPD_PROBE 0x9930
  1612. #define AR5K_PHY_PAPD_PROBE_TXPOWER 0x00007e00
  1613. #define AR5K_PHY_PAPD_PROBE_TXPOWER_S 9
  1614. #define AR5K_PHY_PAPD_PROBE_TX_NEXT 0x00008000
  1615. #define AR5K_PHY_PAPD_PROBE_TYPE 0x01800000 /* [5112+] */
  1616. #define AR5K_PHY_PAPD_PROBE_TYPE_S 23
  1617. #define AR5K_PHY_PAPD_PROBE_TYPE_OFDM 0
  1618. #define AR5K_PHY_PAPD_PROBE_TYPE_XR 1
  1619. #define AR5K_PHY_PAPD_PROBE_TYPE_CCK 2
  1620. #define AR5K_PHY_PAPD_PROBE_GAINF 0xfe000000
  1621. #define AR5K_PHY_PAPD_PROBE_GAINF_S 25
  1622. #define AR5K_PHY_PAPD_PROBE_INI_5111 0x00004883 /* [5212+] */
  1623. #define AR5K_PHY_PAPD_PROBE_INI_5112 0x00004882 /* [5212+] */
  1624. /*
  1625. * PHY TX rate power registers [5112+]
  1626. */
  1627. #define AR5K_PHY_TXPOWER_RATE1 0x9934
  1628. #define AR5K_PHY_TXPOWER_RATE2 0x9938
  1629. #define AR5K_PHY_TXPOWER_RATE_MAX 0x993c
  1630. #define AR5K_PHY_TXPOWER_RATE_MAX_TPC_ENABLE 0x00000040
  1631. #define AR5K_PHY_TXPOWER_RATE3 0xa234
  1632. #define AR5K_PHY_TXPOWER_RATE4 0xa238
  1633. /*
  1634. * PHY frame control register [5111+]
  1635. */
  1636. #define AR5K_PHY_FRAME_CTL_5210 0x9804
  1637. #define AR5K_PHY_FRAME_CTL_5211 0x9944
  1638. #define AR5K_PHY_FRAME_CTL (ah->ah_version == AR5K_AR5210 ? \
  1639. AR5K_PHY_FRAME_CTL_5210 : AR5K_PHY_FRAME_CTL_5211)
  1640. /*---[5111+]---*/
  1641. #define AR5K_PHY_FRAME_CTL_TX_CLIP 0x00000038
  1642. #define AR5K_PHY_FRAME_CTL_TX_CLIP_S 3
  1643. /*---[5110/5111]---*/
  1644. #define AR5K_PHY_FRAME_CTL_TIMING_ERR 0x01000000
  1645. #define AR5K_PHY_FRAME_CTL_PARITY_ERR 0x02000000
  1646. #define AR5K_PHY_FRAME_CTL_ILLRATE_ERR 0x04000000 /* illegal rate */
  1647. #define AR5K_PHY_FRAME_CTL_ILLLEN_ERR 0x08000000 /* illegal length */
  1648. #define AR5K_PHY_FRAME_CTL_SERVICE_ERR 0x20000000
  1649. #define AR5K_PHY_FRAME_CTL_TXURN_ERR 0x40000000 /* tx underrun */
  1650. #define AR5K_PHY_FRAME_CTL_INI AR5K_PHY_FRAME_CTL_SERVICE_ERR | \
  1651. AR5K_PHY_FRAME_CTL_TXURN_ERR | \
  1652. AR5K_PHY_FRAME_CTL_ILLLEN_ERR | \
  1653. AR5K_PHY_FRAME_CTL_ILLRATE_ERR | \
  1654. AR5K_PHY_FRAME_CTL_PARITY_ERR | \
  1655. AR5K_PHY_FRAME_CTL_TIMING_ERR
  1656. /*
  1657. * PHY radar detection register [5111+]
  1658. */
  1659. #define AR5K_PHY_RADAR 0x9954
  1660. /* Radar enable ........ ........ ........ .......1 */
  1661. #define AR5K_PHY_RADAR_ENABLE 0x00000001
  1662. #define AR5K_PHY_RADAR_DISABLE 0x00000000
  1663. #define AR5K_PHY_RADAR_ENABLE_S 0
  1664. /* This is the value found on the card .1.111.1 .1.1.... 111....1 1...1...
  1665. at power on. */
  1666. #define AR5K_PHY_RADAR_PWONDEF_AR5213 0x5d50e188
  1667. /* This is the value found on the card .1.1.111 ..11...1 .1...1.1 1...11.1
  1668. after DFS is enabled */
  1669. #define AR5K_PHY_RADAR_ENABLED_AR5213 0x5731458d
  1670. /* Finite Impulse Response (FIR) filter .1111111 ........ ........ ........
  1671. * power out threshold.
  1672. * 7-bits, standard power range {0..127} in 1/2 dBm units. */
  1673. #define AR5K_PHY_RADAR_FIRPWROUTTHR 0x7f000000
  1674. #define AR5K_PHY_RADAR_FIRPWROUTTHR_S 24
  1675. /* Radar RSSI/SNR threshold. ........ 111111.. ........ ........
  1676. * 6-bits, dBm range {0..63} in dBm units. */
  1677. #define AR5K_PHY_RADAR_RADARRSSITHR 0x00fc0000
  1678. #define AR5K_PHY_RADAR_RADARRSSITHR_S 18
  1679. /* Pulse height threshold ........ ......11 1111.... ........
  1680. * 6-bits, dBm range {0..63} in dBm units. */
  1681. #define AR5K_PHY_RADAR_PULSEHEIGHTTHR 0x0003f000
  1682. #define AR5K_PHY_RADAR_PULSEHEIGHTTHR_S 12
  1683. /* Pulse RSSI/SNR threshold ........ ........ ....1111 11......
  1684. * 6-bits, dBm range {0..63} in dBm units. */
  1685. #define AR5K_PHY_RADAR_PULSERSSITHR 0x00000fc0
  1686. #define AR5K_PHY_RADAR_PULSERSSITHR_S 6
  1687. /* Inband threshold ........ ........ ........ ..11111.
  1688. * 5-bits, units unknown {0..31} (? MHz ?) */
  1689. #define AR5K_PHY_RADAR_INBANDTHR 0x0000003e
  1690. #define AR5K_PHY_RADAR_INBANDTHR_S 1
  1691. /*
  1692. * PHY antenna switch table registers [5110]
  1693. */
  1694. #define AR5K_PHY_ANT_SWITCH_TABLE_0 0x9960
  1695. #define AR5K_PHY_ANT_SWITCH_TABLE_1 0x9964
  1696. /*
  1697. * PHY clock sleep registers [5112+]
  1698. */
  1699. #define AR5K_PHY_SCLOCK 0x99f0
  1700. #define AR5K_PHY_SCLOCK_32MHZ 0x0000000c
  1701. #define AR5K_PHY_SDELAY 0x99f4
  1702. #define AR5K_PHY_SDELAY_32MHZ 0x000000ff
  1703. #define AR5K_PHY_SPENDING 0x99f8
  1704. #define AR5K_PHY_SPENDING_RF5111 0x00000018
  1705. #define AR5K_PHY_SPENDING_RF5112 0x00000014 /* <- i 've only seen this on 2425 dumps ! */
  1706. #define AR5K_PHY_SPENDING_RF5112A 0x0000000e /* but since i only have 5112A-based chips */
  1707. #define AR5K_PHY_SPENDING_RF5424 0x00000012 /* to test it might be also for old 5112. */
  1708. /*
  1709. * Misc PHY/radio registers [5110 - 5111]
  1710. */
  1711. #define AR5K_BB_GAIN_BASE 0x9b00 /* BaseBand Amplifier Gain table base address */
  1712. #define AR5K_BB_GAIN(_n) (AR5K_BB_GAIN_BASE + ((_n) << 2))
  1713. #define AR5K_RF_GAIN_BASE 0x9a00 /* RF Amplrifier Gain table base address */
  1714. #define AR5K_RF_GAIN(_n) (AR5K_RF_GAIN_BASE + ((_n) << 2))
  1715. /*
  1716. * PHY timing IQ calibration result register [5111+]
  1717. */
  1718. #define AR5K_PHY_IQRES_CAL_PWR_I 0x9c10 /* I (Inphase) power value */
  1719. #define AR5K_PHY_IQRES_CAL_PWR_Q 0x9c14 /* Q (Quadrature) power value */
  1720. #define AR5K_PHY_IQRES_CAL_CORR 0x9c18 /* I/Q Correlation */
  1721. /*
  1722. * PHY current RSSI register [5111+]
  1723. */
  1724. #define AR5K_PHY_CURRENT_RSSI 0x9c1c
  1725. /*
  1726. * PHY PCDAC TX power table
  1727. */
  1728. #define AR5K_PHY_PCDAC_TXPOWER_BASE_5211 0xa180
  1729. #define AR5K_PHY_PCDAC_TXPOWER_BASE_5413 0xa280
  1730. #define AR5K_PHY_PCDAC_TXPOWER_BASE (ah->ah_radio >= AR5K_RF5413 ? \
  1731. AR5K_PHY_PCDAC_TXPOWER_BASE_5413 :\
  1732. AR5K_PHY_PCDAC_TXPOWER_BASE_5211)
  1733. #define AR5K_PHY_PCDAC_TXPOWER(_n) (AR5K_PHY_PCDAC_TXPOWER_BASE + ((_n) << 2))
  1734. /*
  1735. * PHY mode register [5111+]
  1736. */
  1737. #define AR5K_PHY_MODE 0x0a200 /* Register address */
  1738. #define AR5K_PHY_MODE_MOD 0x00000001 /* PHY Modulation mask*/
  1739. #define AR5K_PHY_MODE_MOD_OFDM 0
  1740. #define AR5K_PHY_MODE_MOD_CCK 1
  1741. #define AR5K_PHY_MODE_FREQ 0x00000002 /* Freq mode mask */
  1742. #define AR5K_PHY_MODE_FREQ_5GHZ 0
  1743. #define AR5K_PHY_MODE_FREQ_2GHZ 2
  1744. #define AR5K_PHY_MODE_MOD_DYN 0x00000004 /* Dynamic OFDM/CCK mode mask [5112+] */
  1745. #define AR5K_PHY_MODE_RAD 0x00000008 /* [5212+] */
  1746. #define AR5K_PHY_MODE_RAD_RF5111 0
  1747. #define AR5K_PHY_MODE_RAD_RF5112 8
  1748. #define AR5K_PHY_MODE_XR 0x00000010 /* [5112+] */
  1749. /*
  1750. * PHY CCK transmit control register [5111+ (?)]
  1751. */
  1752. #define AR5K_PHY_CCKTXCTL 0xa204
  1753. #define AR5K_PHY_CCKTXCTL_WORLD 0x00000000
  1754. #define AR5K_PHY_CCKTXCTL_JAPAN 0x00000010
  1755. /*
  1756. * PHY 2GHz gain register [5111+]
  1757. */
  1758. #define AR5K_PHY_GAIN_2GHZ 0xa20c
  1759. #define AR5K_PHY_GAIN_2GHZ_MARGIN_TXRX 0x00fc0000
  1760. #define AR5K_PHY_GAIN_2GHZ_MARGIN_TXRX_S 18
  1761. #define AR5K_PHY_GAIN_2GHZ_INI_5111 0x6480416c