reg.h 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445
  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 /* Software Interrupt */
  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 access */
  64. #define AR5K_CFG_ADHOC 0x00000020 /* AP/Adhoc indication [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 (Disable dynamic clock) */
  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 /* PCI Master req q threshold [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 (read) */
  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_DESC_EN 0x00000400 /* Enable jumbo tx descriptors [5211+] */
  161. #define AR5K_TXCFG_ADHOC_BCN_ATIM 0x00000800 /* Adhoc Beacon ATIM Policy */
  162. #define AR5K_TXCFG_ATIM_WINDOW_DEF_DIS 0x00001000 /* Disable ATIM window defer [5211+] */
  163. #define AR5K_TXCFG_RTSRND 0x00001000 /* [5211+] */
  164. #define AR5K_TXCFG_FRMPAD_DIS 0x00002000 /* [5211+] */
  165. #define AR5K_TXCFG_RDY_CBR_DIS 0x00004000 /* Ready time CBR disable [5211+] */
  166. #define AR5K_TXCFG_JUMBO_FRM_MODE 0x00008000 /* Jumbo frame mode [5211+] */
  167. #define AR5K_TXCFG_DCU_CACHING_DIS 0x00010000 /* Disable DCU caching */
  168. /*
  169. * Receive configuration register
  170. */
  171. #define AR5K_RXCFG 0x0034 /* Register Address */
  172. #define AR5K_RXCFG_SDMAMW 0x00000007 /* DMA size (write) */
  173. #define AR5K_RXCFG_SDMAMW_S 0
  174. #define AR5K_RXCFG_ZLFDMA 0x00000008 /* Enable Zero-length frame DMA */
  175. #define AR5K_RXCFG_DEF_ANTENNA 0x00000010 /* Default antenna (?) */
  176. #define AR5K_RXCFG_JUMBO_RXE 0x00000020 /* Enable jumbo rx descriptors [5211+] */
  177. #define AR5K_RXCFG_JUMBO_WRAP 0x00000040 /* Wrap jumbo frames [5211+] */
  178. #define AR5K_RXCFG_SLE_ENTRY 0x00000080 /* Sleep entry policy */
  179. /*
  180. * Receive jumbo descriptor last address register
  181. * Only found in 5211 (?)
  182. */
  183. #define AR5K_RXJLA 0x0038
  184. /*
  185. * MIB control register
  186. */
  187. #define AR5K_MIBC 0x0040 /* Register Address */
  188. #define AR5K_MIBC_COW 0x00000001 /* Warn test indicator */
  189. #define AR5K_MIBC_FMC 0x00000002 /* Freeze MIB Counters */
  190. #define AR5K_MIBC_CMC 0x00000004 /* Clean MIB Counters */
  191. #define AR5K_MIBC_MCS 0x00000008 /* MIB counter strobe */
  192. /*
  193. * Timeout prescale register
  194. */
  195. #define AR5K_TOPS 0x0044
  196. #define AR5K_TOPS_M 0x0000ffff
  197. /*
  198. * Receive timeout register (no frame received)
  199. */
  200. #define AR5K_RXNOFRM 0x0048
  201. #define AR5K_RXNOFRM_M 0x000003ff
  202. /*
  203. * Transmit timeout register (no frame sent)
  204. */
  205. #define AR5K_TXNOFRM 0x004c
  206. #define AR5K_TXNOFRM_M 0x000003ff
  207. #define AR5K_TXNOFRM_QCU 0x000ffc00
  208. /*
  209. * Receive frame gap timeout register
  210. */
  211. #define AR5K_RPGTO 0x0050
  212. #define AR5K_RPGTO_M 0x000003ff
  213. /*
  214. * Receive frame count limit register
  215. */
  216. #define AR5K_RFCNT 0x0054
  217. #define AR5K_RFCNT_M 0x0000001f /* [5211+] (?) */
  218. #define AR5K_RFCNT_RFCL 0x0000000f /* [5210] */
  219. /*
  220. * Misc settings register
  221. * (reserved0-3)
  222. */
  223. #define AR5K_MISC 0x0058 /* Register Address */
  224. #define AR5K_MISC_DMA_OBS_M 0x000001e0
  225. #define AR5K_MISC_DMA_OBS_S 5
  226. #define AR5K_MISC_MISC_OBS_M 0x00000e00
  227. #define AR5K_MISC_MISC_OBS_S 9
  228. #define AR5K_MISC_MAC_OBS_LSB_M 0x00007000
  229. #define AR5K_MISC_MAC_OBS_LSB_S 12
  230. #define AR5K_MISC_MAC_OBS_MSB_M 0x00038000
  231. #define AR5K_MISC_MAC_OBS_MSB_S 15
  232. #define AR5K_MISC_LED_DECAY 0x001c0000 /* [5210] */
  233. #define AR5K_MISC_LED_BLINK 0x00e00000 /* [5210] */
  234. /*
  235. * QCU/DCU clock gating register (5311)
  236. * (reserved4-5)
  237. */
  238. #define AR5K_QCUDCU_CLKGT 0x005c /* Register Address (?) */
  239. #define AR5K_QCUDCU_CLKGT_QCU 0x0000ffff /* Mask for QCU clock */
  240. #define AR5K_QCUDCU_CLKGT_DCU 0x07ff0000 /* Mask for DCU clock */
  241. /*
  242. * Interrupt Status Registers
  243. *
  244. * For 5210 there is only one status register but for
  245. * 5211/5212 we have one primary and 4 secondary registers.
  246. * So we have AR5K_ISR for 5210 and AR5K_PISR /SISRx for 5211/5212.
  247. * Most of these bits are common for all chipsets.
  248. */
  249. #define AR5K_ISR 0x001c /* Register Address [5210] */
  250. #define AR5K_PISR 0x0080 /* Register Address [5211+] */
  251. #define AR5K_ISR_RXOK 0x00000001 /* Frame successfuly recieved */
  252. #define AR5K_ISR_RXDESC 0x00000002 /* RX descriptor request */
  253. #define AR5K_ISR_RXERR 0x00000004 /* Receive error */
  254. #define AR5K_ISR_RXNOFRM 0x00000008 /* No frame received (receive timeout) */
  255. #define AR5K_ISR_RXEOL 0x00000010 /* Empty RX descriptor */
  256. #define AR5K_ISR_RXORN 0x00000020 /* Receive FIFO overrun */
  257. #define AR5K_ISR_TXOK 0x00000040 /* Frame successfuly transmited */
  258. #define AR5K_ISR_TXDESC 0x00000080 /* TX descriptor request */
  259. #define AR5K_ISR_TXERR 0x00000100 /* Transmit error */
  260. #define AR5K_ISR_TXNOFRM 0x00000200 /* No frame transmited (transmit timeout) */
  261. #define AR5K_ISR_TXEOL 0x00000400 /* Empty TX descriptor */
  262. #define AR5K_ISR_TXURN 0x00000800 /* Transmit FIFO underrun */
  263. #define AR5K_ISR_MIB 0x00001000 /* Update MIB counters */
  264. #define AR5K_ISR_SWI 0x00002000 /* Software interrupt */
  265. #define AR5K_ISR_RXPHY 0x00004000 /* PHY error */
  266. #define AR5K_ISR_RXKCM 0x00008000 /* RX Key cache miss */
  267. #define AR5K_ISR_SWBA 0x00010000 /* Software beacon alert */
  268. #define AR5K_ISR_BRSSI 0x00020000
  269. #define AR5K_ISR_BMISS 0x00040000 /* Beacon missed */
  270. #define AR5K_ISR_HIUERR 0x00080000 /* Host Interface Unit error [5211+] */
  271. #define AR5K_ISR_BNR 0x00100000 /* Beacon not ready [5211+] */
  272. #define AR5K_ISR_MCABT 0x00100000 /* Master Cycle Abort [5210] */
  273. #define AR5K_ISR_RXCHIRP 0x00200000 /* CHIRP Received [5212+] */
  274. #define AR5K_ISR_SSERR 0x00200000 /* Signaled System Error [5210] */
  275. #define AR5K_ISR_DPERR 0x00400000 /* Det par Error (?) [5210] */
  276. #define AR5K_ISR_TIM 0x00800000 /* [5210] */
  277. #define AR5K_ISR_BCNMISC 0x00800000 /* [5212+] */
  278. #define AR5K_ISR_GPIO 0x01000000 /* GPIO (rf kill)*/
  279. #define AR5K_ISR_QCBRORN 0x02000000 /* CBR overrun (?) [5211+] */
  280. #define AR5K_ISR_QCBRURN 0x04000000 /* CBR underrun (?) [5211+] */
  281. #define AR5K_ISR_QTRIG 0x08000000 /* [5211+] */
  282. /*
  283. * Secondary status registers [5211+] (0 - 4)
  284. *
  285. * I guess from the names that these give the status for each
  286. * queue, that's why only masks are defined here, haven't got
  287. * any info about them (couldn't find them anywhere in ar5k code).
  288. */
  289. #define AR5K_SISR0 0x0084 /* Register Address [5211+] */
  290. #define AR5K_SISR0_QCU_TXOK 0x000003ff /* Mask for QCU_TXOK */
  291. #define AR5K_SISR0_QCU_TXDESC 0x03ff0000 /* Mask for QCU_TXDESC */
  292. #define AR5K_SISR1 0x0088 /* Register Address [5211+] */
  293. #define AR5K_SISR1_QCU_TXERR 0x000003ff /* Mask for QCU_TXERR */
  294. #define AR5K_SISR1_QCU_TXEOL 0x03ff0000 /* Mask for QCU_TXEOL */
  295. #define AR5K_SISR2 0x008c /* Register Address [5211+] */
  296. #define AR5K_SISR2_QCU_TXURN 0x000003ff /* Mask for QCU_TXURN */
  297. #define AR5K_SISR2_MCABT 0x00100000 /* Master Cycle Abort */
  298. #define AR5K_SISR2_SSERR 0x00200000 /* Signaled System Error */
  299. #define AR5K_SISR2_DPERR 0x00400000 /* Det par Error (?) */
  300. #define AR5K_SISR2_TIM 0x01000000 /* [5212+] */
  301. #define AR5K_SISR2_CAB_END 0x02000000 /* [5212+] */
  302. #define AR5K_SISR2_DTIM_SYNC 0x04000000 /* DTIM sync lost [5212+] */
  303. #define AR5K_SISR2_BCN_TIMEOUT 0x08000000 /* Beacon Timeout [5212+] */
  304. #define AR5K_SISR2_CAB_TIMEOUT 0x10000000 /* CAB Timeout [5212+] */
  305. #define AR5K_SISR2_DTIM 0x20000000 /* [5212+] */
  306. #define AR5K_SISR3 0x0090 /* Register Address [5211+] */
  307. #define AR5K_SISR3_QCBRORN 0x000003ff /* Mask for QCBRORN */
  308. #define AR5K_SISR3_QCBRURN 0x03ff0000 /* Mask for QCBRURN */
  309. #define AR5K_SISR4 0x0094 /* Register Address [5211+] */
  310. #define AR5K_SISR4_QTRIG 0x000003ff /* Mask for QTRIG */
  311. /*
  312. * Shadow read-and-clear interrupt status registers [5211+]
  313. */
  314. #define AR5K_RAC_PISR 0x00c0 /* Read and clear PISR */
  315. #define AR5K_RAC_SISR0 0x00c4 /* Read and clear SISR0 */
  316. #define AR5K_RAC_SISR1 0x00c8 /* Read and clear SISR1 */
  317. #define AR5K_RAC_SISR2 0x00cc /* Read and clear SISR2 */
  318. #define AR5K_RAC_SISR3 0x00d0 /* Read and clear SISR3 */
  319. #define AR5K_RAC_SISR4 0x00d4 /* Read and clear SISR4 */
  320. /*
  321. * Interrupt Mask Registers
  322. *
  323. * As whith ISRs 5210 has one IMR (AR5K_IMR) and 5211/5212 has one primary
  324. * (AR5K_PIMR) and 4 secondary IMRs (AR5K_SIMRx). Note that ISR/IMR flags match.
  325. */
  326. #define AR5K_IMR 0x0020 /* Register Address [5210] */
  327. #define AR5K_PIMR 0x00a0 /* Register Address [5211+] */
  328. #define AR5K_IMR_RXOK 0x00000001 /* Frame successfuly recieved*/
  329. #define AR5K_IMR_RXDESC 0x00000002 /* RX descriptor request*/
  330. #define AR5K_IMR_RXERR 0x00000004 /* Receive error*/
  331. #define AR5K_IMR_RXNOFRM 0x00000008 /* No frame received (receive timeout)*/
  332. #define AR5K_IMR_RXEOL 0x00000010 /* Empty RX descriptor*/
  333. #define AR5K_IMR_RXORN 0x00000020 /* Receive FIFO overrun*/
  334. #define AR5K_IMR_TXOK 0x00000040 /* Frame successfuly transmited*/
  335. #define AR5K_IMR_TXDESC 0x00000080 /* TX descriptor request*/
  336. #define AR5K_IMR_TXERR 0x00000100 /* Transmit error*/
  337. #define AR5K_IMR_TXNOFRM 0x00000200 /* No frame transmited (transmit timeout)*/
  338. #define AR5K_IMR_TXEOL 0x00000400 /* Empty TX descriptor*/
  339. #define AR5K_IMR_TXURN 0x00000800 /* Transmit FIFO underrun*/
  340. #define AR5K_IMR_MIB 0x00001000 /* Update MIB counters*/
  341. #define AR5K_IMR_SWI 0x00002000 /* Software interrupt */
  342. #define AR5K_IMR_RXPHY 0x00004000 /* PHY error*/
  343. #define AR5K_IMR_RXKCM 0x00008000 /* RX Key cache miss */
  344. #define AR5K_IMR_SWBA 0x00010000 /* Software beacon alert*/
  345. #define AR5K_IMR_BRSSI 0x00020000
  346. #define AR5K_IMR_BMISS 0x00040000 /* Beacon missed*/
  347. #define AR5K_IMR_HIUERR 0x00080000 /* Host Interface Unit error [5211+] */
  348. #define AR5K_IMR_BNR 0x00100000 /* Beacon not ready [5211+] */
  349. #define AR5K_IMR_MCABT 0x00100000 /* Master Cycle Abort [5210] */
  350. #define AR5K_IMR_RXCHIRP 0x00200000 /* CHIRP Received [5212+]*/
  351. #define AR5K_IMR_SSERR 0x00200000 /* Signaled System Error [5210] */
  352. #define AR5K_IMR_DPERR 0x00400000 /* Det par Error (?) [5210] */
  353. #define AR5K_IMR_TIM 0x00800000 /* [5211+] */
  354. #define AR5K_IMR_BCNMISC 0x00800000 /* [5212+] */
  355. #define AR5K_IMR_GPIO 0x01000000 /* GPIO (rf kill)*/
  356. #define AR5K_IMR_QCBRORN 0x02000000 /* CBR overrun (?) [5211+] */
  357. #define AR5K_IMR_QCBRURN 0x04000000 /* CBR underrun (?) [5211+] */
  358. #define AR5K_IMR_QTRIG 0x08000000 /* [5211+] */
  359. /*
  360. * Secondary interrupt mask registers [5211+] (0 - 4)
  361. */
  362. #define AR5K_SIMR0 0x00a4 /* Register Address [5211+] */
  363. #define AR5K_SIMR0_QCU_TXOK 0x000003ff /* Mask for QCU_TXOK */
  364. #define AR5K_SIMR0_QCU_TXOK_S 0
  365. #define AR5K_SIMR0_QCU_TXDESC 0x03ff0000 /* Mask for QCU_TXDESC */
  366. #define AR5K_SIMR0_QCU_TXDESC_S 16
  367. #define AR5K_SIMR1 0x00a8 /* Register Address [5211+] */
  368. #define AR5K_SIMR1_QCU_TXERR 0x000003ff /* Mask for QCU_TXERR */
  369. #define AR5K_SIMR1_QCU_TXERR_S 0
  370. #define AR5K_SIMR1_QCU_TXEOL 0x03ff0000 /* Mask for QCU_TXEOL */
  371. #define AR5K_SIMR1_QCU_TXEOL_S 16
  372. #define AR5K_SIMR2 0x00ac /* Register Address [5211+] */
  373. #define AR5K_SIMR2_QCU_TXURN 0x000003ff /* Mask for QCU_TXURN */
  374. #define AR5K_SIMR2_QCU_TXURN_S 0
  375. #define AR5K_SIMR2_MCABT 0x00100000 /* Master Cycle Abort */
  376. #define AR5K_SIMR2_SSERR 0x00200000 /* Signaled System Error */
  377. #define AR5K_SIMR2_DPERR 0x00400000 /* Det par Error (?) */
  378. #define AR5K_SIMR2_TIM 0x01000000 /* [5212+] */
  379. #define AR5K_SIMR2_CAB_END 0x02000000 /* [5212+] */
  380. #define AR5K_SIMR2_DTIM_SYNC 0x04000000 /* DTIM Sync lost [5212+] */
  381. #define AR5K_SIMR2_BCN_TIMEOUT 0x08000000 /* Beacon Timeout [5212+] */
  382. #define AR5K_SIMR2_CAB_TIMEOUT 0x10000000 /* CAB Timeout [5212+] */
  383. #define AR5K_SIMR2_DTIM 0x20000000 /* [5212+] */
  384. #define AR5K_SIMR3 0x00b0 /* Register Address [5211+] */
  385. #define AR5K_SIMR3_QCBRORN 0x000003ff /* Mask for QCBRORN */
  386. #define AR5K_SIMR3_QCBRORN_S 0
  387. #define AR5K_SIMR3_QCBRURN 0x03ff0000 /* Mask for QCBRURN */
  388. #define AR5K_SIMR3_QCBRURN_S 16
  389. #define AR5K_SIMR4 0x00b4 /* Register Address [5211+] */
  390. #define AR5K_SIMR4_QTRIG 0x000003ff /* Mask for QTRIG */
  391. #define AR5K_SIMR4_QTRIG_S 0
  392. /*
  393. * DMA Debug registers 0-7
  394. * 0xe0 - 0xfc
  395. */
  396. /*
  397. * Decompression mask registers [5212+]
  398. */
  399. #define AR5K_DCM_ADDR 0x0400 /*Decompression mask address (index) */
  400. #define AR5K_DCM_DATA 0x0404 /*Decompression mask data */
  401. /*
  402. * Wake On Wireless pattern control register [5212+]
  403. */
  404. #define AR5K_WOW_PCFG 0x0410 /* Register Address */
  405. #define AR5K_WOW_PCFG_PAT_MATCH_EN 0x00000001 /* Pattern match enable */
  406. #define AR5K_WOW_PCFG_LONG_FRAME_POL 0x00000002 /* Long frame policy */
  407. #define AR5K_WOW_PCFG_WOBMISS 0x00000004 /* Wake on bea(con) miss (?) */
  408. #define AR5K_WOW_PCFG_PAT_0_EN 0x00000100 /* Enable pattern 0 */
  409. #define AR5K_WOW_PCFG_PAT_1_EN 0x00000200 /* Enable pattern 1 */
  410. #define AR5K_WOW_PCFG_PAT_2_EN 0x00000400 /* Enable pattern 2 */
  411. #define AR5K_WOW_PCFG_PAT_3_EN 0x00000800 /* Enable pattern 3 */
  412. #define AR5K_WOW_PCFG_PAT_4_EN 0x00001000 /* Enable pattern 4 */
  413. #define AR5K_WOW_PCFG_PAT_5_EN 0x00002000 /* Enable pattern 5 */
  414. /*
  415. * Wake On Wireless pattern index register (?) [5212+]
  416. */
  417. #define AR5K_WOW_PAT_IDX 0x0414
  418. /*
  419. * Wake On Wireless pattern data register [5212+]
  420. */
  421. #define AR5K_WOW_PAT_DATA 0x0418 /* Register Address */
  422. #define AR5K_WOW_PAT_DATA_0_3_V 0x00000001 /* Pattern 0, 3 value */
  423. #define AR5K_WOW_PAT_DATA_1_4_V 0x00000100 /* Pattern 1, 4 value */
  424. #define AR5K_WOW_PAT_DATA_2_5_V 0x00010000 /* Pattern 2, 5 value */
  425. #define AR5K_WOW_PAT_DATA_0_3_M 0x01000000 /* Pattern 0, 3 mask */
  426. #define AR5K_WOW_PAT_DATA_1_4_M 0x04000000 /* Pattern 1, 4 mask */
  427. #define AR5K_WOW_PAT_DATA_2_5_M 0x10000000 /* Pattern 2, 5 mask */
  428. /*
  429. * Decompression configuration registers [5212+]
  430. */
  431. #define AR5K_DCCFG 0x0420 /* Register Address */
  432. #define AR5K_DCCFG_GLOBAL_EN 0x00000001 /* Enable decompression on all queues */
  433. #define AR5K_DCCFG_BYPASS_EN 0x00000002 /* Bypass decompression */
  434. #define AR5K_DCCFG_BCAST_EN 0x00000004 /* Enable decompression for bcast frames */
  435. #define AR5K_DCCFG_MCAST_EN 0x00000008 /* Enable decompression for mcast frames */
  436. /*
  437. * Compression configuration registers [5212+]
  438. */
  439. #define AR5K_CCFG 0x0600 /* Register Address */
  440. #define AR5K_CCFG_WINDOW_SIZE 0x00000007 /* Compression window size */
  441. #define AR5K_CCFG_CPC_EN 0x00000008 /* Enable performance counters */
  442. #define AR5K_CCFG_CCU 0x0604 /* Register Address */
  443. #define AR5K_CCFG_CCU_CUP_EN 0x00000001 /* CCU Catchup enable */
  444. #define AR5K_CCFG_CCU_CREDIT 0x00000002 /* CCU Credit (field) */
  445. #define AR5K_CCFG_CCU_CD_THRES 0x00000080 /* CCU Cyc(lic?) debt threshold (field) */
  446. #define AR5K_CCFG_CCU_CUP_LCNT 0x00010000 /* CCU Catchup lit(?) count */
  447. #define AR5K_CCFG_CCU_INIT 0x00100200 /* Initial value during reset */
  448. /*
  449. * Compression performance counter registers [5212+]
  450. */
  451. #define AR5K_CPC0 0x0610 /* Compression performance counter 0 */
  452. #define AR5K_CPC1 0x0614 /* Compression performance counter 1*/
  453. #define AR5K_CPC2 0x0618 /* Compression performance counter 2 */
  454. #define AR5K_CPC3 0x061c /* Compression performance counter 3 */
  455. #define AR5K_CPCOVF 0x0620 /* Compression performance overflow */
  456. /*
  457. * Queue control unit (QCU) registers [5211+]
  458. *
  459. * Card has 12 TX Queues but i see that only 0-9 are used (?)
  460. * both in binary HAL (see ah.h) and ar5k. Each queue has it's own
  461. * TXDP at addresses 0x0800 - 0x082c, a CBR (Constant Bit Rate)
  462. * configuration register (0x08c0 - 0x08ec), a ready time configuration
  463. * register (0x0900 - 0x092c), a misc configuration register (0x09c0 -
  464. * 0x09ec) and a status register (0x0a00 - 0x0a2c). We also have some
  465. * global registers, QCU transmit enable/disable and "one shot arm (?)"
  466. * set/clear, which contain status for all queues (we shift by 1 for each
  467. * queue). To access these registers easily we define some macros here
  468. * that are used inside HAL. For more infos check out *_tx_queue functs.
  469. */
  470. /*
  471. * Generic QCU Register access macros
  472. */
  473. #define AR5K_QUEUE_REG(_r, _q) (((_q) << 2) + _r)
  474. #define AR5K_QCU_GLOBAL_READ(_r, _q) (AR5K_REG_READ(_r) & (1 << _q))
  475. #define AR5K_QCU_GLOBAL_WRITE(_r, _q) AR5K_REG_WRITE(_r, (1 << _q))
  476. /*
  477. * QCU Transmit descriptor pointer registers
  478. */
  479. #define AR5K_QCU_TXDP_BASE 0x0800 /* Register Address - Queue0 TXDP */
  480. #define AR5K_QUEUE_TXDP(_q) AR5K_QUEUE_REG(AR5K_QCU_TXDP_BASE, _q)
  481. /*
  482. * QCU Transmit enable register
  483. */
  484. #define AR5K_QCU_TXE 0x0840
  485. #define AR5K_ENABLE_QUEUE(_q) AR5K_QCU_GLOBAL_WRITE(AR5K_QCU_TXE, _q)
  486. #define AR5K_QUEUE_ENABLED(_q) AR5K_QCU_GLOBAL_READ(AR5K_QCU_TXE, _q)
  487. /*
  488. * QCU Transmit disable register
  489. */
  490. #define AR5K_QCU_TXD 0x0880
  491. #define AR5K_DISABLE_QUEUE(_q) AR5K_QCU_GLOBAL_WRITE(AR5K_QCU_TXD, _q)
  492. #define AR5K_QUEUE_DISABLED(_q) AR5K_QCU_GLOBAL_READ(AR5K_QCU_TXD, _q)
  493. /*
  494. * QCU Constant Bit Rate configuration registers
  495. */
  496. #define AR5K_QCU_CBRCFG_BASE 0x08c0 /* Register Address - Queue0 CBRCFG */
  497. #define AR5K_QCU_CBRCFG_INTVAL 0x00ffffff /* CBR Interval mask */
  498. #define AR5K_QCU_CBRCFG_INTVAL_S 0
  499. #define AR5K_QCU_CBRCFG_ORN_THRES 0xff000000 /* CBR overrun threshold mask */
  500. #define AR5K_QCU_CBRCFG_ORN_THRES_S 24
  501. #define AR5K_QUEUE_CBRCFG(_q) AR5K_QUEUE_REG(AR5K_QCU_CBRCFG_BASE, _q)
  502. /*
  503. * QCU Ready time configuration registers
  504. */
  505. #define AR5K_QCU_RDYTIMECFG_BASE 0x0900 /* Register Address - Queue0 RDYTIMECFG */
  506. #define AR5K_QCU_RDYTIMECFG_INTVAL 0x00ffffff /* Ready time interval mask */
  507. #define AR5K_QCU_RDYTIMECFG_INTVAL_S 0
  508. #define AR5K_QCU_RDYTIMECFG_ENABLE 0x01000000 /* Ready time enable mask */
  509. #define AR5K_QUEUE_RDYTIMECFG(_q) AR5K_QUEUE_REG(AR5K_QCU_RDYTIMECFG_BASE, _q)
  510. /*
  511. * QCU one shot arm set registers
  512. */
  513. #define AR5K_QCU_ONESHOTARM_SET 0x0940 /* Register Address -QCU "one shot arm set (?)" */
  514. #define AR5K_QCU_ONESHOTARM_SET_M 0x0000ffff
  515. /*
  516. * QCU one shot arm clear registers
  517. */
  518. #define AR5K_QCU_ONESHOTARM_CLEAR 0x0980 /* Register Address -QCU "one shot arm clear (?)" */
  519. #define AR5K_QCU_ONESHOTARM_CLEAR_M 0x0000ffff
  520. /*
  521. * QCU misc registers
  522. */
  523. #define AR5K_QCU_MISC_BASE 0x09c0 /* Register Address -Queue0 MISC */
  524. #define AR5K_QCU_MISC_FRSHED_M 0x0000000f /* Frame sheduling mask */
  525. #define AR5K_QCU_MISC_FRSHED_ASAP 0 /* ASAP */
  526. #define AR5K_QCU_MISC_FRSHED_CBR 1 /* Constant Bit Rate */
  527. #define AR5K_QCU_MISC_FRSHED_DBA_GT 2 /* DMA Beacon alert gated (?) */
  528. #define AR5K_QCU_MISC_FRSHED_TIM_GT 3 /* Time gated (?) */
  529. #define AR5K_QCU_MISC_FRSHED_BCN_SENT_GT 4 /* Beacon sent gated (?) */
  530. #define AR5K_QCU_MISC_ONESHOT_ENABLE 0x00000010 /* Oneshot enable */
  531. #define AR5K_QCU_MISC_CBREXP 0x00000020 /* CBR expired (normal queue) */
  532. #define AR5K_QCU_MISC_CBREXP_BCN 0x00000040 /* CBR expired (beacon queue) */
  533. #define AR5K_QCU_MISC_BCN_ENABLE 0x00000080 /* Enable Beacon use */
  534. #define AR5K_QCU_MISC_CBR_THRES_ENABLE 0x00000100 /* CBR threshold enabled */
  535. #define AR5K_QCU_MISC_RDY_VEOL_POLICY 0x00000200 /* TXE reset when RDYTIME enalbed */
  536. #define AR5K_QCU_MISC_CBR_RESET_CNT 0x00000400 /* CBR threshold (counter) reset */
  537. #define AR5K_QCU_MISC_DCU_EARLY 0x00000800 /* DCU early termination */
  538. #define AR5K_QCU_MISC_DCU_CMP_EN 0x00001000 /* Enable frame compression */
  539. #define AR5K_QUEUE_MISC(_q) AR5K_QUEUE_REG(AR5K_QCU_MISC_BASE, _q)
  540. /*
  541. * QCU status registers
  542. */
  543. #define AR5K_QCU_STS_BASE 0x0a00 /* Register Address - Queue0 STS */
  544. #define AR5K_QCU_STS_FRMPENDCNT 0x00000003 /* Frames pending counter */
  545. #define AR5K_QCU_STS_CBREXPCNT 0x0000ff00 /* CBR expired counter */
  546. #define AR5K_QUEUE_STATUS(_q) AR5K_QUEUE_REG(AR5K_QCU_STS_BASE, _q)
  547. /*
  548. * QCU ready time shutdown register
  549. */
  550. #define AR5K_QCU_RDYTIMESHDN 0x0a40
  551. #define AR5K_QCU_RDYTIMESHDN_M 0x000003ff
  552. /*
  553. * QCU compression buffer base registers [5212+]
  554. */
  555. #define AR5K_QCU_CBB_SELECT 0x0b00
  556. #define AR5K_QCU_CBB_ADDR 0x0b04
  557. #define AR5K_QCU_CBB_ADDR_S 9
  558. /*
  559. * QCU compression buffer configuration register [5212+]
  560. * (buffer size)
  561. */
  562. #define AR5K_QCU_CBCFG 0x0b08
  563. /*
  564. * Distributed Coordination Function (DCF) control unit (DCU)
  565. * registers [5211+]
  566. *
  567. * These registers control the various characteristics of each queue
  568. * for 802.11e (WME) combatibility so they go together with
  569. * QCU registers in pairs. For each queue we have a QCU mask register,
  570. * (0x1000 - 0x102c), a local-IFS settings register (0x1040 - 0x106c),
  571. * a retry limit register (0x1080 - 0x10ac), a channel time register
  572. * (0x10c0 - 0x10ec), a misc-settings register (0x1100 - 0x112c) and
  573. * a sequence number register (0x1140 - 0x116c). It seems that "global"
  574. * registers here afect all queues (see use of DCU_GBL_IFS_SLOT in ar5k).
  575. * We use the same macros here for easier register access.
  576. *
  577. */
  578. /*
  579. * DCU QCU mask registers
  580. */
  581. #define AR5K_DCU_QCUMASK_BASE 0x1000 /* Register Address -Queue0 DCU_QCUMASK */
  582. #define AR5K_DCU_QCUMASK_M 0x000003ff
  583. #define AR5K_QUEUE_QCUMASK(_q) AR5K_QUEUE_REG(AR5K_DCU_QCUMASK_BASE, _q)
  584. /*
  585. * DCU local Inter Frame Space settings register
  586. */
  587. #define AR5K_DCU_LCL_IFS_BASE 0x1040 /* Register Address -Queue0 DCU_LCL_IFS */
  588. #define AR5K_DCU_LCL_IFS_CW_MIN 0x000003ff /* Minimum Contention Window */
  589. #define AR5K_DCU_LCL_IFS_CW_MIN_S 0
  590. #define AR5K_DCU_LCL_IFS_CW_MAX 0x000ffc00 /* Maximum Contention Window */
  591. #define AR5K_DCU_LCL_IFS_CW_MAX_S 10
  592. #define AR5K_DCU_LCL_IFS_AIFS 0x0ff00000 /* Arbitrated Interframe Space */
  593. #define AR5K_DCU_LCL_IFS_AIFS_S 20
  594. #define AR5K_QUEUE_DFS_LOCAL_IFS(_q) AR5K_QUEUE_REG(AR5K_DCU_LCL_IFS_BASE, _q)
  595. /*
  596. * DCU retry limit registers
  597. */
  598. #define AR5K_DCU_RETRY_LMT_BASE 0x1080 /* Register Address -Queue0 DCU_RETRY_LMT */
  599. #define AR5K_DCU_RETRY_LMT_SH_RETRY 0x0000000f /* Short retry limit mask */
  600. #define AR5K_DCU_RETRY_LMT_SH_RETRY_S 0
  601. #define AR5K_DCU_RETRY_LMT_LG_RETRY 0x000000f0 /* Long retry limit mask */
  602. #define AR5K_DCU_RETRY_LMT_LG_RETRY_S 4
  603. #define AR5K_DCU_RETRY_LMT_SSH_RETRY 0x00003f00 /* Station short retry limit mask (?) */
  604. #define AR5K_DCU_RETRY_LMT_SSH_RETRY_S 8
  605. #define AR5K_DCU_RETRY_LMT_SLG_RETRY 0x000fc000 /* Station long retry limit mask (?) */
  606. #define AR5K_DCU_RETRY_LMT_SLG_RETRY_S 14
  607. #define AR5K_QUEUE_DFS_RETRY_LIMIT(_q) AR5K_QUEUE_REG(AR5K_DCU_RETRY_LMT_BASE, _q)
  608. /*
  609. * DCU channel time registers
  610. */
  611. #define AR5K_DCU_CHAN_TIME_BASE 0x10c0 /* Register Address -Queue0 DCU_CHAN_TIME */
  612. #define AR5K_DCU_CHAN_TIME_DUR 0x000fffff /* Channel time duration */
  613. #define AR5K_DCU_CHAN_TIME_DUR_S 0
  614. #define AR5K_DCU_CHAN_TIME_ENABLE 0x00100000 /* Enable channel time */
  615. #define AR5K_QUEUE_DFS_CHANNEL_TIME(_q) AR5K_QUEUE_REG(AR5K_DCU_CHAN_TIME_BASE, _q)
  616. /*
  617. * DCU misc registers [5211+]
  618. *
  619. * For some of the registers i couldn't find in the code
  620. * (only backoff stuff is there realy) i tried to match the
  621. * names with 802.11e parameters etc, so i guess VIRTCOL here
  622. * means Virtual Collision and HCFPOLL means Hybrid Coordination
  623. * factor Poll (CF- Poll). Arbiter lockout control controls the
  624. * behaviour on low priority queues when we have multiple queues
  625. * with pending frames. Intra-frame lockout means we wait until
  626. * the queue's current frame transmits (with post frame backoff and bursting)
  627. * before we transmit anything else and global lockout means we
  628. * wait for the whole queue to finish before higher priority queues
  629. * can transmit (this is used on beacon and CAB queues).
  630. * No lockout means there is no special handling.
  631. */
  632. #define AR5K_DCU_MISC_BASE 0x1100 /* Register Address -Queue0 DCU_MISC */
  633. #define AR5K_DCU_MISC_BACKOFF 0x000007ff /* Mask for backoff threshold */
  634. #define AR5K_DCU_MISC_BACKOFF_FRAG 0x00000200 /* Enable backoff while bursting */
  635. #define AR5K_DCU_MISC_HCFPOLL_ENABLE 0x00000800 /* CF - Poll enable */
  636. #define AR5K_DCU_MISC_BACKOFF_PERSIST 0x00001000 /* Persistent backoff */
  637. #define AR5K_DCU_MISC_FRMPRFTCH_ENABLE 0x00002000 /* Enable frame pre-fetch */
  638. #define AR5K_DCU_MISC_VIRTCOL 0x0000c000 /* Mask for Virtual Collision (?) */
  639. #define AR5K_DCU_MISC_VIRTCOL_NORMAL 0
  640. #define AR5K_DCU_MISC_VIRTCOL_MODIFIED 1
  641. #define AR5K_DCU_MISC_VIRTCOL_IGNORE 2
  642. #define AR5K_DCU_MISC_BCN_ENABLE 0x00010000 /* Enable Beacon use */
  643. #define AR5K_DCU_MISC_ARBLOCK_CTL 0x00060000 /* Arbiter lockout control mask */
  644. #define AR5K_DCU_MISC_ARBLOCK_CTL_S 17
  645. #define AR5K_DCU_MISC_ARBLOCK_CTL_NONE 0 /* No arbiter lockout */
  646. #define AR5K_DCU_MISC_ARBLOCK_CTL_INTFRM 1 /* Intra-frame lockout */
  647. #define AR5K_DCU_MISC_ARBLOCK_CTL_GLOBAL 2 /* Global lockout */
  648. #define AR5K_DCU_MISC_ARBLOCK_IGNORE 0x00080000 /* Ignore Arbiter lockout */
  649. #define AR5K_DCU_MISC_SEQ_NUM_INCR_DIS 0x00100000 /* Disable sequence number increment */
  650. #define AR5K_DCU_MISC_POST_FR_BKOFF_DIS 0x00200000 /* Disable post-frame backoff */
  651. #define AR5K_DCU_MISC_VIRT_COLL_POLICY 0x00400000 /* Virtual Collision cw policy */
  652. #define AR5K_DCU_MISC_BLOWN_IFS_POLICY 0x00800000 /* Blown IFS policy (?) */
  653. #define AR5K_DCU_MISC_SEQNUM_CTL 0x01000000 /* Sequence number control (?) */
  654. #define AR5K_QUEUE_DFS_MISC(_q) AR5K_QUEUE_REG(AR5K_DCU_MISC_BASE, _q)
  655. /*
  656. * DCU frame sequence number registers
  657. */
  658. #define AR5K_DCU_SEQNUM_BASE 0x1140
  659. #define AR5K_DCU_SEQNUM_M 0x00000fff
  660. #define AR5K_QUEUE_DFS_SEQNUM(_q) AR5K_QUEUE_REG(AR5K_DCU_SEQNUM_BASE, _q)
  661. /*
  662. * DCU global IFS SIFS register
  663. */
  664. #define AR5K_DCU_GBL_IFS_SIFS 0x1030
  665. #define AR5K_DCU_GBL_IFS_SIFS_M 0x0000ffff
  666. /*
  667. * DCU global IFS slot interval register
  668. */
  669. #define AR5K_DCU_GBL_IFS_SLOT 0x1070
  670. #define AR5K_DCU_GBL_IFS_SLOT_M 0x0000ffff
  671. /*
  672. * DCU global IFS EIFS register
  673. */
  674. #define AR5K_DCU_GBL_IFS_EIFS 0x10b0
  675. #define AR5K_DCU_GBL_IFS_EIFS_M 0x0000ffff
  676. /*
  677. * DCU global IFS misc register
  678. *
  679. * LFSR stands for Linear Feedback Shift Register
  680. * and it's used for generating pseudo-random
  681. * number sequences.
  682. *
  683. * (If i understand corectly, random numbers are
  684. * used for idle sensing -multiplied with cwmin/max etc-)
  685. */
  686. #define AR5K_DCU_GBL_IFS_MISC 0x10f0 /* Register Address */
  687. #define AR5K_DCU_GBL_IFS_MISC_LFSR_SLICE 0x00000007 /* LFSR Slice Select */
  688. #define AR5K_DCU_GBL_IFS_MISC_TURBO_MODE 0x00000008 /* Turbo mode */
  689. #define AR5K_DCU_GBL_IFS_MISC_SIFS_DUR_USEC 0x000003f0 /* SIFS Duration mask */
  690. #define AR5K_DCU_GBL_IFS_MISC_USEC_DUR 0x000ffc00 /* USEC Duration mask */
  691. #define AR5K_DCU_GBL_IFS_MISC_DCU_ARB_DELAY 0x00300000 /* DCU Arbiter delay mask */
  692. #define AR5K_DCU_GBL_IFS_MISC_SIFS_CNT_RST 0x00400000 /* SIFC cnt reset policy (?) */
  693. #define AR5K_DCU_GBL_IFS_MISC_AIFS_CNT_RST 0x00800000 /* AIFS cnt reset policy (?) */
  694. #define AR5K_DCU_GBL_IFS_MISC_RND_LFSR_SL_DIS 0x01000000 /* Disable random LFSR slice */
  695. /*
  696. * DCU frame prefetch control register
  697. */
  698. #define AR5K_DCU_FP 0x1230 /* Register Address */
  699. #define AR5K_DCU_FP_NOBURST_DCU_EN 0x00000001 /* Enable non-burst prefetch on DCU (?) */
  700. #define AR5K_DCU_FP_NOBURST_EN 0x00000010 /* Enable non-burst prefetch (?) */
  701. #define AR5K_DCU_FP_BURST_DCU_EN 0x00000020 /* Enable burst prefetch on DCU (?) */
  702. /*
  703. * DCU transmit pause control/status register
  704. */
  705. #define AR5K_DCU_TXP 0x1270 /* Register Address */
  706. #define AR5K_DCU_TXP_M 0x000003ff /* Tx pause mask */
  707. #define AR5K_DCU_TXP_STATUS 0x00010000 /* Tx pause status */
  708. /*
  709. * DCU transmit filter table 0 (32 entries)
  710. */
  711. #define AR5K_DCU_TX_FILTER_0_BASE 0x1038
  712. #define AR5K_DCU_TX_FILTER_0(_n) (AR5K_DCU_TX_FILTER_0_BASE + (_n * 64))
  713. /*
  714. * DCU transmit filter table 1 (16 entries)
  715. */
  716. #define AR5K_DCU_TX_FILTER_1_BASE 0x103c
  717. #define AR5K_DCU_TX_FILTER_1(_n) (AR5K_DCU_TX_FILTER_1_BASE + ((_n - 32) * 64))
  718. /*
  719. * DCU clear transmit filter register
  720. */
  721. #define AR5K_DCU_TX_FILTER_CLR 0x143c
  722. /*
  723. * DCU set transmit filter register
  724. */
  725. #define AR5K_DCU_TX_FILTER_SET 0x147c
  726. /*
  727. * Reset control register
  728. */
  729. #define AR5K_RESET_CTL 0x4000 /* Register Address */
  730. #define AR5K_RESET_CTL_PCU 0x00000001 /* Protocol Control Unit reset */
  731. #define AR5K_RESET_CTL_DMA 0x00000002 /* DMA (Rx/Tx) reset [5210] */
  732. #define AR5K_RESET_CTL_BASEBAND 0x00000002 /* Baseband reset [5211+] */
  733. #define AR5K_RESET_CTL_MAC 0x00000004 /* MAC reset (PCU+Baseband ?) [5210] */
  734. #define AR5K_RESET_CTL_PHY 0x00000008 /* PHY reset [5210] */
  735. #define AR5K_RESET_CTL_PCI 0x00000010 /* PCI Core reset (interrupts etc) */
  736. #define AR5K_RESET_CTL_CHIP (AR5K_RESET_CTL_PCU | AR5K_RESET_CTL_DMA | \
  737. AR5K_RESET_CTL_MAC | AR5K_RESET_CTL_PHY)
  738. /*
  739. * Sleep control register
  740. */
  741. #define AR5K_SLEEP_CTL 0x4004 /* Register Address */
  742. #define AR5K_SLEEP_CTL_SLDUR 0x0000ffff /* Sleep duration mask */
  743. #define AR5K_SLEEP_CTL_SLDUR_S 0
  744. #define AR5K_SLEEP_CTL_SLE 0x00030000 /* Sleep enable mask */
  745. #define AR5K_SLEEP_CTL_SLE_S 16
  746. #define AR5K_SLEEP_CTL_SLE_WAKE 0x00000000 /* Force chip awake */
  747. #define AR5K_SLEEP_CTL_SLE_SLP 0x00010000 /* Force chip sleep */
  748. #define AR5K_SLEEP_CTL_SLE_ALLOW 0x00020000
  749. #define AR5K_SLEEP_CTL_SLE_UNITS 0x00000008 /* [5211+] */
  750. /* more bits */
  751. /*
  752. * Interrupt pending register
  753. */
  754. #define AR5K_INTPEND 0x4008
  755. #define AR5K_INTPEND_M 0x00000001
  756. /*
  757. * Sleep force register
  758. */
  759. #define AR5K_SFR 0x400c
  760. #define AR5K_SFR_EN 0x00000001
  761. /*
  762. * PCI configuration register
  763. */
  764. #define AR5K_PCICFG 0x4010 /* Register Address */
  765. #define AR5K_PCICFG_EEAE 0x00000001 /* Eeprom access enable [5210] */
  766. #define AR5K_PCICFG_SLEEP_CLOCK_EN 0x00000002 /* Enable sleep clock (?) */
  767. #define AR5K_PCICFG_CLKRUNEN 0x00000004 /* CLKRUN enable [5211+] */
  768. #define AR5K_PCICFG_EESIZE 0x00000018 /* Mask for EEPROM size [5211+] */
  769. #define AR5K_PCICFG_EESIZE_S 3
  770. #define AR5K_PCICFG_EESIZE_4K 0 /* 4K */
  771. #define AR5K_PCICFG_EESIZE_8K 1 /* 8K */
  772. #define AR5K_PCICFG_EESIZE_16K 2 /* 16K */
  773. #define AR5K_PCICFG_EESIZE_FAIL 3 /* Failed to get size (?) [5211+] */
  774. #define AR5K_PCICFG_LED 0x00000060 /* Led status [5211+] */
  775. #define AR5K_PCICFG_LED_NONE 0x00000000 /* Default [5211+] */
  776. #define AR5K_PCICFG_LED_PEND 0x00000020 /* Scan / Auth pending */
  777. #define AR5K_PCICFG_LED_ASSOC 0x00000040 /* Associated */
  778. #define AR5K_PCICFG_BUS_SEL 0x00000380 /* Mask for "bus select" [5211+] (?) */
  779. #define AR5K_PCICFG_CBEFIX_DIS 0x00000400 /* Disable CBE fix (?) */
  780. #define AR5K_PCICFG_SL_INTEN 0x00000800 /* Enable interrupts when asleep (?) */
  781. #define AR5K_PCICFG_LED_BCTL 0x00001000 /* Led blink (?) [5210] */
  782. #define AR5K_PCICFG_UNK 0x00001000 /* Passed on some parts durring attach (?) */
  783. #define AR5K_PCICFG_SL_INPEN 0x00002000 /* Sleep even whith pending interrupts (?) */
  784. #define AR5K_PCICFG_SPWR_DN 0x00010000 /* Mask for power status */
  785. #define AR5K_PCICFG_LEDMODE 0x000e0000 /* Ledmode [5211+] */
  786. #define AR5K_PCICFG_LEDMODE_PROP 0x00000000 /* Blink on standard traffic [5211+] */
  787. #define AR5K_PCICFG_LEDMODE_PROM 0x00020000 /* Default mode (blink on any traffic) [5211+] */
  788. #define AR5K_PCICFG_LEDMODE_PWR 0x00040000 /* Some other blinking mode (?) [5211+] */
  789. #define AR5K_PCICFG_LEDMODE_RAND 0x00060000 /* Random blinking (?) [5211+] */
  790. #define AR5K_PCICFG_LEDBLINK 0x00700000 /* Led blink rate */
  791. #define AR5K_PCICFG_LEDBLINK_S 20
  792. #define AR5K_PCICFG_LEDSLOW 0x00800000 /* Slowest led blink rate [5211+] */
  793. #define AR5K_PCICFG_LEDSTATE \
  794. (AR5K_PCICFG_LED | AR5K_PCICFG_LEDMODE | \
  795. AR5K_PCICFG_LEDBLINK | AR5K_PCICFG_LEDSLOW)
  796. #define AR5K_PCICFG_SLEEP_CLOCK_RATE 0x03000000 /* Sleep clock rate (field) */
  797. /*
  798. * "General Purpose Input/Output" (GPIO) control register
  799. *
  800. * I'm not sure about this but after looking at the code
  801. * for all chipsets here is what i got.
  802. *
  803. * We have 6 GPIOs (pins), each GPIO has 4 modes (2 bits)
  804. * Mode 0 -> always input
  805. * Mode 1 -> output when GPIODO for this GPIO is set to 0
  806. * Mode 2 -> output when GPIODO for this GPIO is set to 1
  807. * Mode 3 -> always output
  808. *
  809. * For more infos check out get_gpio/set_gpio and
  810. * set_gpio_input/set_gpio_output functs.
  811. * For more infos on gpio interrupt check out set_gpio_intr.
  812. */
  813. #define AR5K_NUM_GPIO 6
  814. #define AR5K_GPIOCR 0x4014 /* Register Address */
  815. #define AR5K_GPIOCR_INT_ENA 0x00008000 /* Enable GPIO interrupt */
  816. #define AR5K_GPIOCR_INT_SELL 0x00000000 /* Generate interrupt when pin is off (?) */
  817. #define AR5K_GPIOCR_INT_SELH 0x00010000 /* Generate interrupt when pin is on */
  818. #define AR5K_GPIOCR_IN(n) (0 << ((n) * 2)) /* Mode 0 for pin n */
  819. #define AR5K_GPIOCR_OUT0(n) (1 << ((n) * 2)) /* Mode 1 for pin n */
  820. #define AR5K_GPIOCR_OUT1(n) (2 << ((n) * 2)) /* Mode 2 for pin n */
  821. #define AR5K_GPIOCR_OUT(n) (3 << ((n) * 2)) /* Mode 3 for pin n */
  822. #define AR5K_GPIOCR_INT_SEL(n) ((n) << 12) /* Interrupt for GPIO pin n */
  823. /*
  824. * "General Purpose Input/Output" (GPIO) data output register
  825. */
  826. #define AR5K_GPIODO 0x4018
  827. /*
  828. * "General Purpose Input/Output" (GPIO) data input register
  829. */
  830. #define AR5K_GPIODI 0x401c
  831. #define AR5K_GPIODI_M 0x0000002f
  832. /*
  833. * Silicon revision register
  834. */
  835. #define AR5K_SREV 0x4020 /* Register Address */
  836. #define AR5K_SREV_REV 0x0000000f /* Mask for revision */
  837. #define AR5K_SREV_REV_S 0
  838. #define AR5K_SREV_VER 0x000000ff /* Mask for version */
  839. #define AR5K_SREV_VER_S 4
  840. /*====EEPROM REGISTERS====*/
  841. /*
  842. * EEPROM access registers
  843. *
  844. * Here we got a difference between 5210/5211-12
  845. * read data register for 5210 is at 0x6800 and
  846. * status register is at 0x6c00. There is also
  847. * no eeprom command register on 5210 and the
  848. * offsets are different.
  849. *
  850. * To read eeprom data for a specific offset:
  851. * 5210 - enable eeprom access (AR5K_PCICFG_EEAE)
  852. * read AR5K_EEPROM_BASE +(4 * offset)
  853. * check the eeprom status register
  854. * and read eeprom data register.
  855. *
  856. * 5211 - write offset to AR5K_EEPROM_BASE
  857. * 5212 write AR5K_EEPROM_CMD_READ on AR5K_EEPROM_CMD
  858. * check the eeprom status register
  859. * and read eeprom data register.
  860. *
  861. * To write eeprom data for a specific offset:
  862. * 5210 - enable eeprom access (AR5K_PCICFG_EEAE)
  863. * write data to AR5K_EEPROM_BASE +(4 * offset)
  864. * check the eeprom status register
  865. * 5211 - write AR5K_EEPROM_CMD_RESET on AR5K_EEPROM_CMD
  866. * 5212 write offset to AR5K_EEPROM_BASE
  867. * write data to data register
  868. * write AR5K_EEPROM_CMD_WRITE on AR5K_EEPROM_CMD
  869. * check the eeprom status register
  870. *
  871. * For more infos check eeprom_* functs and the ar5k.c
  872. * file posted in madwifi-devel mailing list.
  873. * http://sourceforge.net/mailarchive/message.php?msg_id=8966525
  874. *
  875. */
  876. #define AR5K_EEPROM_BASE 0x6000
  877. /*
  878. * Common ar5xxx EEPROM data offsets (set these on AR5K_EEPROM_BASE)
  879. */
  880. #define AR5K_EEPROM_MAGIC 0x003d /* EEPROM Magic number */
  881. #define AR5K_EEPROM_MAGIC_VALUE 0x5aa5 /* Default - found on EEPROM */
  882. #define AR5K_EEPROM_MAGIC_5212 0x0000145c /* 5212 */
  883. #define AR5K_EEPROM_MAGIC_5211 0x0000145b /* 5211 */
  884. #define AR5K_EEPROM_MAGIC_5210 0x0000145a /* 5210 */
  885. #define AR5K_EEPROM_PROTECT 0x003f /* EEPROM protect status */
  886. #define AR5K_EEPROM_PROTECT_RD_0_31 0x0001 /* Read protection bit for offsets 0x0 - 0x1f */
  887. #define AR5K_EEPROM_PROTECT_WR_0_31 0x0002 /* Write protection bit for offsets 0x0 - 0x1f */
  888. #define AR5K_EEPROM_PROTECT_RD_32_63 0x0004 /* 0x20 - 0x3f */
  889. #define AR5K_EEPROM_PROTECT_WR_32_63 0x0008
  890. #define AR5K_EEPROM_PROTECT_RD_64_127 0x0010 /* 0x40 - 0x7f */
  891. #define AR5K_EEPROM_PROTECT_WR_64_127 0x0020
  892. #define AR5K_EEPROM_PROTECT_RD_128_191 0x0040 /* 0x80 - 0xbf (regdom) */
  893. #define AR5K_EEPROM_PROTECT_WR_128_191 0x0080
  894. #define AR5K_EEPROM_PROTECT_RD_192_207 0x0100 /* 0xc0 - 0xcf */
  895. #define AR5K_EEPROM_PROTECT_WR_192_207 0x0200
  896. #define AR5K_EEPROM_PROTECT_RD_208_223 0x0400 /* 0xd0 - 0xdf */
  897. #define AR5K_EEPROM_PROTECT_WR_208_223 0x0800
  898. #define AR5K_EEPROM_PROTECT_RD_224_239 0x1000 /* 0xe0 - 0xef */
  899. #define AR5K_EEPROM_PROTECT_WR_224_239 0x2000
  900. #define AR5K_EEPROM_PROTECT_RD_240_255 0x4000 /* 0xf0 - 0xff */
  901. #define AR5K_EEPROM_PROTECT_WR_240_255 0x8000
  902. #define AR5K_EEPROM_REG_DOMAIN 0x00bf /* EEPROM regdom */
  903. #define AR5K_EEPROM_INFO_BASE 0x00c0 /* EEPROM header */
  904. #define AR5K_EEPROM_INFO_MAX (0x400 - AR5K_EEPROM_INFO_BASE)
  905. #define AR5K_EEPROM_INFO_CKSUM 0xffff
  906. #define AR5K_EEPROM_INFO(_n) (AR5K_EEPROM_INFO_BASE + (_n))
  907. #define AR5K_EEPROM_VERSION AR5K_EEPROM_INFO(1) /* EEPROM Version */
  908. #define AR5K_EEPROM_VERSION_3_0 0x3000 /* No idea what's going on before this version */
  909. #define AR5K_EEPROM_VERSION_3_1 0x3001 /* ob/db values for 2Ghz (ar5211_rfregs) */
  910. #define AR5K_EEPROM_VERSION_3_2 0x3002 /* different frequency representation (eeprom_bin2freq) */
  911. #define AR5K_EEPROM_VERSION_3_3 0x3003 /* offsets changed, has 32 CTLs (see below) and ee_false_detect (eeprom_read_modes) */
  912. #define AR5K_EEPROM_VERSION_3_4 0x3004 /* has ee_i_gain ee_cck_ofdm_power_delta (eeprom_read_modes) */
  913. #define AR5K_EEPROM_VERSION_4_0 0x4000 /* has ee_misc*, ee_cal_pier, ee_turbo_max_power and ee_xr_power (eeprom_init) */
  914. #define AR5K_EEPROM_VERSION_4_1 0x4001 /* has ee_margin_tx_rx (eeprom_init) */
  915. #define AR5K_EEPROM_VERSION_4_2 0x4002 /* has ee_cck_ofdm_gain_delta (eeprom_init) */
  916. #define AR5K_EEPROM_VERSION_4_3 0x4003
  917. #define AR5K_EEPROM_VERSION_4_4 0x4004
  918. #define AR5K_EEPROM_VERSION_4_5 0x4005
  919. #define AR5K_EEPROM_VERSION_4_6 0x4006 /* has ee_scaled_cck_delta */
  920. #define AR5K_EEPROM_VERSION_4_7 0x4007
  921. #define AR5K_EEPROM_MODE_11A 0
  922. #define AR5K_EEPROM_MODE_11B 1
  923. #define AR5K_EEPROM_MODE_11G 2
  924. #define AR5K_EEPROM_HDR AR5K_EEPROM_INFO(2) /* Header that contains the device caps */
  925. #define AR5K_EEPROM_HDR_11A(_v) (((_v) >> AR5K_EEPROM_MODE_11A) & 0x1)
  926. #define AR5K_EEPROM_HDR_11B(_v) (((_v) >> AR5K_EEPROM_MODE_11B) & 0x1)
  927. #define AR5K_EEPROM_HDR_11G(_v) (((_v) >> AR5K_EEPROM_MODE_11G) & 0x1)
  928. #define AR5K_EEPROM_HDR_T_2GHZ_DIS(_v) (((_v) >> 3) & 0x1) /* Disable turbo for 2Ghz (?) */
  929. #define AR5K_EEPROM_HDR_T_5GHZ_DBM(_v) (((_v) >> 4) & 0x7f) /* Max turbo power for a/XR mode (eeprom_init) */
  930. #define AR5K_EEPROM_HDR_DEVICE(_v) (((_v) >> 11) & 0x7)
  931. #define AR5K_EEPROM_HDR_T_5GHZ_DIS(_v) (((_v) >> 15) & 0x1) /* Disable turbo for 5Ghz (?) */
  932. #define AR5K_EEPROM_HDR_RFKILL(_v) (((_v) >> 14) & 0x1) /* Device has RFKill support */
  933. #define AR5K_EEPROM_RFKILL_GPIO_SEL 0x0000001c
  934. #define AR5K_EEPROM_RFKILL_GPIO_SEL_S 2
  935. #define AR5K_EEPROM_RFKILL_POLARITY 0x00000002
  936. #define AR5K_EEPROM_RFKILL_POLARITY_S 1
  937. /* Newer EEPROMs are using a different offset */
  938. #define AR5K_EEPROM_OFF(_v, _v3_0, _v3_3) \
  939. (((_v) >= AR5K_EEPROM_VERSION_3_3) ? _v3_3 : _v3_0)
  940. #define AR5K_EEPROM_ANT_GAIN(_v) AR5K_EEPROM_OFF(_v, 0x00c4, 0x00c3)
  941. #define AR5K_EEPROM_ANT_GAIN_5GHZ(_v) ((int8_t)(((_v) >> 8) & 0xff))
  942. #define AR5K_EEPROM_ANT_GAIN_2GHZ(_v) ((int8_t)((_v) & 0xff))
  943. /* calibration settings */
  944. #define AR5K_EEPROM_MODES_11A(_v) AR5K_EEPROM_OFF(_v, 0x00c5, 0x00d4)
  945. #define AR5K_EEPROM_MODES_11B(_v) AR5K_EEPROM_OFF(_v, 0x00d0, 0x00f2)
  946. #define AR5K_EEPROM_MODES_11G(_v) AR5K_EEPROM_OFF(_v, 0x00da, 0x010d)
  947. #define AR5K_EEPROM_CTL(_v) AR5K_EEPROM_OFF(_v, 0x00e4, 0x0128) /* Conformance test limits */
  948. /* [3.1 - 3.3] */
  949. #define AR5K_EEPROM_OBDB0_2GHZ 0x00ec
  950. #define AR5K_EEPROM_OBDB1_2GHZ 0x00ed
  951. /* Misc values available since EEPROM 4.0 */
  952. #define AR5K_EEPROM_MISC0 0x00c4
  953. #define AR5K_EEPROM_EARSTART(_v) ((_v) & 0xfff)
  954. #define AR5K_EEPROM_EEMAP(_v) (((_v) >> 14) & 0x3)
  955. #define AR5K_EEPROM_MISC1 0x00c5
  956. #define AR5K_EEPROM_TARGET_PWRSTART(_v) ((_v) & 0xfff)
  957. #define AR5K_EEPROM_HAS32KHZCRYSTAL(_v) (((_v) >> 14) & 0x1)
  958. /*
  959. * EEPROM data register
  960. */
  961. #define AR5K_EEPROM_DATA_5211 0x6004
  962. #define AR5K_EEPROM_DATA_5210 0x6800
  963. #define AR5K_EEPROM_DATA (ah->ah_version == AR5K_AR5210 ? \
  964. AR5K_EEPROM_DATA_5210 : AR5K_EEPROM_DATA_5211)
  965. /*
  966. * EEPROM command register
  967. */
  968. #define AR5K_EEPROM_CMD 0x6008 /* Register Addres */
  969. #define AR5K_EEPROM_CMD_READ 0x00000001 /* EEPROM read */
  970. #define AR5K_EEPROM_CMD_WRITE 0x00000002 /* EEPROM write */
  971. #define AR5K_EEPROM_CMD_RESET 0x00000004 /* EEPROM reset */
  972. /*
  973. * EEPROM status register
  974. */
  975. #define AR5K_EEPROM_STAT_5210 0x6c00 /* Register Address [5210] */
  976. #define AR5K_EEPROM_STAT_5211 0x600c /* Register Address [5211+] */
  977. #define AR5K_EEPROM_STATUS (ah->ah_version == AR5K_AR5210 ? \
  978. AR5K_EEPROM_STAT_5210 : AR5K_EEPROM_STAT_5211)
  979. #define AR5K_EEPROM_STAT_RDERR 0x00000001 /* EEPROM read failed */
  980. #define AR5K_EEPROM_STAT_RDDONE 0x00000002 /* EEPROM read successful */
  981. #define AR5K_EEPROM_STAT_WRERR 0x00000004 /* EEPROM write failed */
  982. #define AR5K_EEPROM_STAT_WRDONE 0x00000008 /* EEPROM write successful */
  983. /*
  984. * EEPROM config register
  985. */
  986. #define AR5K_EEPROM_CFG 0x6010 /* Register Addres */
  987. #define AR5K_EEPROM_CFG_SIZE_OVR 0x00000001
  988. #define AR5K_EEPROM_CFG_WR_WAIT_DIS 0x00000004 /* Disable write wait */
  989. #define AR5K_EEPROM_CFG_CLK_RATE 0x00000018 /* Clock rate */
  990. #define AR5K_EEPROM_CFG_PROT_KEY 0x00ffff00 /* Protectio key */
  991. #define AR5K_EEPROM_CFG_LIND_EN 0x01000000 /* Enable length indicator (?) */
  992. /*
  993. * Protocol Control Unit (PCU) registers
  994. */
  995. /*
  996. * Used for checking initial register writes
  997. * during channel reset (see reset func)
  998. */
  999. #define AR5K_PCU_MIN 0x8000
  1000. #define AR5K_PCU_MAX 0x8fff
  1001. /*
  1002. * First station id register (MAC address in lower 32 bits)
  1003. */
  1004. #define AR5K_STA_ID0 0x8000
  1005. /*
  1006. * Second station id register (MAC address in upper 16 bits)
  1007. */
  1008. #define AR5K_STA_ID1 0x8004 /* Register Address */
  1009. #define AR5K_STA_ID1_AP 0x00010000 /* Set AP mode */
  1010. #define AR5K_STA_ID1_ADHOC 0x00020000 /* Set Ad-Hoc mode */
  1011. #define AR5K_STA_ID1_PWR_SV 0x00040000 /* Power save reporting */
  1012. #define AR5K_STA_ID1_NO_KEYSRCH 0x00080000 /* No key search */
  1013. #define AR5K_STA_ID1_NO_PSPOLL 0x00100000 /* No power save polling [5210] */
  1014. #define AR5K_STA_ID1_PCF_5211 0x00100000 /* Enable PCF on [5211+] */
  1015. #define AR5K_STA_ID1_PCF_5210 0x00200000 /* Enable PCF on [5210]*/
  1016. #define AR5K_STA_ID1_PCF (ah->ah_version == AR5K_AR5210 ? \
  1017. AR5K_STA_ID1_PCF_5210 : AR5K_STA_ID1_PCF_5211)
  1018. #define AR5K_STA_ID1_DEFAULT_ANTENNA 0x00200000 /* Use default antenna */
  1019. #define AR5K_STA_ID1_DESC_ANTENNA 0x00400000 /* Update antenna from descriptor */
  1020. #define AR5K_STA_ID1_RTS_DEF_ANTENNA 0x00800000 /* Use default antenna for RTS */
  1021. #define AR5K_STA_ID1_ACKCTS_6MB 0x01000000 /* Use 6Mbit/s for ACK/CTS */
  1022. #define AR5K_STA_ID1_BASE_RATE_11B 0x02000000 /* Use 11b base rate (for ACK/CTS ?) [5211+] */
  1023. #define AR5K_STA_ID1_SELF_GEN_SECTORE 0x04000000 /* Self generate sectore (?) */
  1024. #define AR5K_STA_ID1_CRYPT_MIC_EN 0x08000000 /* Enable MIC */
  1025. #define AR5K_STA_ID1_KEYSRCH_MODE 0x10000000 /* Keysearch mode (?) */
  1026. #define AR5K_STA_ID1_PRESERVE_SEQ_NUM 0x20000000 /* Preserve sequence number */
  1027. /*
  1028. * First BSSID register (MAC address, lower 32bits)
  1029. */
  1030. #define AR5K_BSS_ID0 0x8008
  1031. /*
  1032. * Second BSSID register (MAC address in upper 16 bits)
  1033. *
  1034. * AID: Association ID
  1035. */
  1036. #define AR5K_BSS_ID1 0x800c
  1037. #define AR5K_BSS_ID1_AID 0xffff0000
  1038. #define AR5K_BSS_ID1_AID_S 16
  1039. /*
  1040. * Backoff slot time register
  1041. */
  1042. #define AR5K_SLOT_TIME 0x8010
  1043. /*
  1044. * ACK/CTS timeout register
  1045. */
  1046. #define AR5K_TIME_OUT 0x8014 /* Register Address */
  1047. #define AR5K_TIME_OUT_ACK 0x00001fff /* ACK timeout mask */
  1048. #define AR5K_TIME_OUT_ACK_S 0
  1049. #define AR5K_TIME_OUT_CTS 0x1fff0000 /* CTS timeout mask */
  1050. #define AR5K_TIME_OUT_CTS_S 16
  1051. /*
  1052. * RSSI threshold register
  1053. */
  1054. #define AR5K_RSSI_THR 0x8018 /* Register Address */
  1055. #define AR5K_RSSI_THR_M 0x000000ff /* Mask for RSSI threshold [5211+] */
  1056. #define AR5K_RSSI_THR_BMISS_5210 0x00000700 /* Mask for Beacon Missed threshold [5210] */
  1057. #define AR5K_RSSI_THR_BMISS_5210_S 8
  1058. #define AR5K_RSSI_THR_BMISS_5211 0x0000ff00 /* Mask for Beacon Missed threshold [5211+] */
  1059. #define AR5K_RSSI_THR_BMISS_5211_S 8
  1060. #define AR5K_RSSI_THR_BMISS (ah->ah_version == AR5K_AR5210 ? \
  1061. AR5K_RSSI_THR_BMISS_5210 : AR5K_RSSI_THR_BMISS_5211)
  1062. #define AR5K_RSSI_THR_BMISS_S 8
  1063. /*
  1064. * 5210 has more PCU registers because there is no QCU/DCU
  1065. * so queue parameters are set here, this way a lot common
  1066. * registers have different address for 5210. To make things
  1067. * easier we define a macro based on ah->ah_version for common
  1068. * registers with different addresses and common flags.
  1069. */
  1070. /*
  1071. * Retry limit register
  1072. *
  1073. * Retry limit register for 5210 (no QCU/DCU so it's done in PCU)
  1074. */
  1075. #define AR5K_NODCU_RETRY_LMT 0x801c /* Register Address */
  1076. #define AR5K_NODCU_RETRY_LMT_SH_RETRY 0x0000000f /* Short retry limit mask */
  1077. #define AR5K_NODCU_RETRY_LMT_SH_RETRY_S 0
  1078. #define AR5K_NODCU_RETRY_LMT_LG_RETRY 0x000000f0 /* Long retry mask */
  1079. #define AR5K_NODCU_RETRY_LMT_LG_RETRY_S 4
  1080. #define AR5K_NODCU_RETRY_LMT_SSH_RETRY 0x00003f00 /* Station short retry limit mask */
  1081. #define AR5K_NODCU_RETRY_LMT_SSH_RETRY_S 8
  1082. #define AR5K_NODCU_RETRY_LMT_SLG_RETRY 0x000fc000 /* Station long retry limit mask */
  1083. #define AR5K_NODCU_RETRY_LMT_SLG_RETRY_S 14
  1084. #define AR5K_NODCU_RETRY_LMT_CW_MIN 0x3ff00000 /* Minimum contention window mask */
  1085. #define AR5K_NODCU_RETRY_LMT_CW_MIN_S 20
  1086. /*
  1087. * Transmit latency register
  1088. */
  1089. #define AR5K_USEC_5210 0x8020 /* Register Address [5210] */
  1090. #define AR5K_USEC_5211 0x801c /* Register Address [5211+] */
  1091. #define AR5K_USEC (ah->ah_version == AR5K_AR5210 ? \
  1092. AR5K_USEC_5210 : AR5K_USEC_5211)
  1093. #define AR5K_USEC_1 0x0000007f /* clock cycles for 1us */
  1094. #define AR5K_USEC_1_S 0
  1095. #define AR5K_USEC_32 0x00003f80 /* clock cycles for 1us while on 32Mhz clock */
  1096. #define AR5K_USEC_32_S 7
  1097. #define AR5K_USEC_TX_LATENCY_5211 0x007fc000
  1098. #define AR5K_USEC_TX_LATENCY_5211_S 14
  1099. #define AR5K_USEC_RX_LATENCY_5211 0x1f800000
  1100. #define AR5K_USEC_RX_LATENCY_5211_S 23
  1101. #define AR5K_USEC_TX_LATENCY_5210 0x000fc000 /* also for 5311 */
  1102. #define AR5K_USEC_TX_LATENCY_5210_S 14
  1103. #define AR5K_USEC_RX_LATENCY_5210 0x03f00000 /* also for 5311 */
  1104. #define AR5K_USEC_RX_LATENCY_5210_S 20
  1105. /*
  1106. * PCU beacon control register
  1107. */
  1108. #define AR5K_BEACON_5210 0x8024 /*Register Address [5210] */
  1109. #define AR5K_BEACON_5211 0x8020 /*Register Address [5211+] */
  1110. #define AR5K_BEACON (ah->ah_version == AR5K_AR5210 ? \
  1111. AR5K_BEACON_5210 : AR5K_BEACON_5211)
  1112. #define AR5K_BEACON_PERIOD 0x0000ffff /* Mask for beacon period */
  1113. #define AR5K_BEACON_PERIOD_S 0
  1114. #define AR5K_BEACON_TIM 0x007f0000 /* Mask for TIM offset */
  1115. #define AR5K_BEACON_TIM_S 16
  1116. #define AR5K_BEACON_ENABLE 0x00800000 /* Enable beacons */
  1117. #define AR5K_BEACON_RESET_TSF 0x01000000 /* Force TSF reset */
  1118. /*
  1119. * CFP period register
  1120. */
  1121. #define AR5K_CFP_PERIOD_5210 0x8028
  1122. #define AR5K_CFP_PERIOD_5211 0x8024
  1123. #define AR5K_CFP_PERIOD (ah->ah_version == AR5K_AR5210 ? \
  1124. AR5K_CFP_PERIOD_5210 : AR5K_CFP_PERIOD_5211)
  1125. /*
  1126. * Next beacon time register
  1127. */
  1128. #define AR5K_TIMER0_5210 0x802c
  1129. #define AR5K_TIMER0_5211 0x8028
  1130. #define AR5K_TIMER0 (ah->ah_version == AR5K_AR5210 ? \
  1131. AR5K_TIMER0_5210 : AR5K_TIMER0_5211)
  1132. /*
  1133. * Next DMA beacon alert register
  1134. */
  1135. #define AR5K_TIMER1_5210 0x8030
  1136. #define AR5K_TIMER1_5211 0x802c
  1137. #define AR5K_TIMER1 (ah->ah_version == AR5K_AR5210 ? \
  1138. AR5K_TIMER1_5210 : AR5K_TIMER1_5211)
  1139. /*
  1140. * Next software beacon alert register
  1141. */
  1142. #define AR5K_TIMER2_5210 0x8034
  1143. #define AR5K_TIMER2_5211 0x8030
  1144. #define AR5K_TIMER2 (ah->ah_version == AR5K_AR5210 ? \
  1145. AR5K_TIMER2_5210 : AR5K_TIMER2_5211)
  1146. /*
  1147. * Next ATIM window time register
  1148. */
  1149. #define AR5K_TIMER3_5210 0x8038
  1150. #define AR5K_TIMER3_5211 0x8034
  1151. #define AR5K_TIMER3 (ah->ah_version == AR5K_AR5210 ? \
  1152. AR5K_TIMER3_5210 : AR5K_TIMER3_5211)
  1153. /*
  1154. * 5210 First inter frame spacing register (IFS)
  1155. */
  1156. #define AR5K_IFS0 0x8040
  1157. #define AR5K_IFS0_SIFS 0x000007ff
  1158. #define AR5K_IFS0_SIFS_S 0
  1159. #define AR5K_IFS0_DIFS 0x007ff800
  1160. #define AR5K_IFS0_DIFS_S 11
  1161. /*
  1162. * 5210 Second inter frame spacing register (IFS)
  1163. */
  1164. #define AR5K_IFS1 0x8044
  1165. #define AR5K_IFS1_PIFS 0x00000fff
  1166. #define AR5K_IFS1_PIFS_S 0
  1167. #define AR5K_IFS1_EIFS 0x03fff000
  1168. #define AR5K_IFS1_EIFS_S 12
  1169. #define AR5K_IFS1_CS_EN 0x04000000
  1170. /*
  1171. * CFP duration register
  1172. */
  1173. #define AR5K_CFP_DUR_5210 0x8048
  1174. #define AR5K_CFP_DUR_5211 0x8038
  1175. #define AR5K_CFP_DUR (ah->ah_version == AR5K_AR5210 ? \
  1176. AR5K_CFP_DUR_5210 : AR5K_CFP_DUR_5211)
  1177. /*
  1178. * Receive filter register
  1179. */
  1180. #define AR5K_RX_FILTER_5210 0x804c /* Register Address [5210] */
  1181. #define AR5K_RX_FILTER_5211 0x803c /* Register Address [5211+] */
  1182. #define AR5K_RX_FILTER (ah->ah_version == AR5K_AR5210 ? \
  1183. AR5K_RX_FILTER_5210 : AR5K_RX_FILTER_5211)
  1184. #define AR5K_RX_FILTER_UCAST 0x00000001 /* Don't filter unicast frames */
  1185. #define AR5K_RX_FILTER_MCAST 0x00000002 /* Don't filter multicast frames */
  1186. #define AR5K_RX_FILTER_BCAST 0x00000004 /* Don't filter broadcast frames */
  1187. #define AR5K_RX_FILTER_CONTROL 0x00000008 /* Don't filter control frames */
  1188. #define AR5K_RX_FILTER_BEACON 0x00000010 /* Don't filter beacon frames */
  1189. #define AR5K_RX_FILTER_PROM 0x00000020 /* Set promiscuous mode */
  1190. #define AR5K_RX_FILTER_XRPOLL 0x00000040 /* Don't filter XR poll frame [5212+] */
  1191. #define AR5K_RX_FILTER_PROBEREQ 0x00000080 /* Don't filter probe requests [5212+] */
  1192. #define AR5K_RX_FILTER_PHYERR_5212 0x00000100 /* Don't filter phy errors [5212+] */
  1193. #define AR5K_RX_FILTER_RADARERR_5212 0x00000200 /* Don't filter phy radar errors [5212+] */
  1194. #define AR5K_RX_FILTER_PHYERR_5211 0x00000040 /* [5211] */
  1195. #define AR5K_RX_FILTER_RADARERR_5211 0x00000080 /* [5211] */
  1196. #define AR5K_RX_FILTER_PHYERR \
  1197. ((ah->ah_version == AR5K_AR5211 ? \
  1198. AR5K_RX_FILTER_PHYERR_5211 : AR5K_RX_FILTER_PHYERR_5212))
  1199. #define AR5K_RX_FILTER_RADARERR \
  1200. ((ah->ah_version == AR5K_AR5211 ? \
  1201. AR5K_RX_FILTER_RADARERR_5211 : AR5K_RX_FILTER_RADARERR_5212))
  1202. /*
  1203. * Multicast filter register (lower 32 bits)
  1204. */
  1205. #define AR5K_MCAST_FILTER0_5210 0x8050
  1206. #define AR5K_MCAST_FILTER0_5211 0x8040
  1207. #define AR5K_MCAST_FILTER0 (ah->ah_version == AR5K_AR5210 ? \
  1208. AR5K_MCAST_FILTER0_5210 : AR5K_MCAST_FILTER0_5211)
  1209. /*
  1210. * Multicast filter register (higher 16 bits)
  1211. */
  1212. #define AR5K_MCAST_FILTER1_5210 0x8054
  1213. #define AR5K_MCAST_FILTER1_5211 0x8044
  1214. #define AR5K_MCAST_FILTER1 (ah->ah_version == AR5K_AR5210 ? \
  1215. AR5K_MCAST_FILTER1_5210 : AR5K_MCAST_FILTER1_5211)
  1216. /*
  1217. * Transmit mask register (lower 32 bits) [5210]
  1218. */
  1219. #define AR5K_TX_MASK0 0x8058
  1220. /*
  1221. * Transmit mask register (higher 16 bits) [5210]
  1222. */
  1223. #define AR5K_TX_MASK1 0x805c
  1224. /*
  1225. * Clear transmit mask [5210]
  1226. */
  1227. #define AR5K_CLR_TMASK 0x8060
  1228. /*
  1229. * Trigger level register (before transmission) [5210]
  1230. */
  1231. #define AR5K_TRIG_LVL 0x8064
  1232. /*
  1233. * PCU control register
  1234. *
  1235. * Only DIS_RX is used in the code, the rest i guess are
  1236. * for tweaking/diagnostics.
  1237. */
  1238. #define AR5K_DIAG_SW_5210 0x8068 /* Register Address [5210] */
  1239. #define AR5K_DIAG_SW_5211 0x8048 /* Register Address [5211+] */
  1240. #define AR5K_DIAG_SW (ah->ah_version == AR5K_AR5210 ? \
  1241. AR5K_DIAG_SW_5210 : AR5K_DIAG_SW_5211)
  1242. #define AR5K_DIAG_SW_DIS_WEP_ACK 0x00000001 /* Disable ACKs if WEP key is invalid */
  1243. #define AR5K_DIAG_SW_DIS_ACK 0x00000002 /* Disable ACKs */
  1244. #define AR5K_DIAG_SW_DIS_CTS 0x00000004 /* Disable CTSs */
  1245. #define AR5K_DIAG_SW_DIS_ENC 0x00000008 /* Disable encryption */
  1246. #define AR5K_DIAG_SW_DIS_DEC 0x00000010 /* Disable decryption */
  1247. #define AR5K_DIAG_SW_DIS_TX 0x00000020 /* Disable transmit [5210] */
  1248. #define AR5K_DIAG_SW_DIS_RX_5210 0x00000040 /* Disable recieve */
  1249. #define AR5K_DIAG_SW_DIS_RX_5211 0x00000020
  1250. #define AR5K_DIAG_SW_DIS_RX (ah->ah_version == AR5K_AR5210 ? \
  1251. AR5K_DIAG_SW_DIS_RX_5210 : AR5K_DIAG_SW_DIS_RX_5211)
  1252. #define AR5K_DIAG_SW_LOOP_BACK_5210 0x00000080 /* Loopback (i guess it goes with DIS_TX) [5210] */
  1253. #define AR5K_DIAG_SW_LOOP_BACK_5211 0x00000040
  1254. #define AR5K_DIAG_SW_LOOP_BACK (ah->ah_version == AR5K_AR5210 ? \
  1255. AR5K_DIAG_SW_LOOP_BACK_5210 : AR5K_DIAG_SW_LOOP_BACK_5211)
  1256. #define AR5K_DIAG_SW_CORR_FCS_5210 0x00000100
  1257. #define AR5K_DIAG_SW_CORR_FCS_5211 0x00000080
  1258. #define AR5K_DIAG_SW_CORR_FCS (ah->ah_version == AR5K_AR5210 ? \
  1259. AR5K_DIAG_SW_CORR_FCS_5210 : AR5K_DIAG_SW_CORR_FCS_5211)
  1260. #define AR5K_DIAG_SW_CHAN_INFO_5210 0x00000200
  1261. #define AR5K_DIAG_SW_CHAN_INFO_5211 0x00000100
  1262. #define AR5K_DIAG_SW_CHAN_INFO (ah->ah_version == AR5K_AR5210 ? \
  1263. AR5K_DIAG_SW_CHAN_INFO_5210 : AR5K_DIAG_SW_CHAN_INFO_5211)
  1264. #define AR5K_DIAG_SW_EN_SCRAM_SEED_5211 0x00000200 /* Enable scrambler seed */
  1265. #define AR5K_DIAG_SW_EN_SCRAM_SEED_5210 0x00000400
  1266. #define AR5K_DIAG_SW_EN_SCRAM_SEED (ah->ah_version == AR5K_AR5210 ? \
  1267. AR5K_DIAG_SW_EN_SCRAM_SEED_5210 : AR5K_DIAG_SW_EN_SCRAM_SEED_5211)
  1268. #define AR5K_DIAG_SW_ECO_ENABLE 0x00000400 /* [5211+] */
  1269. #define AR5K_DIAG_SW_SCVRAM_SEED 0x0003f800 /* [5210] */
  1270. #define AR5K_DIAG_SW_SCRAM_SEED_M 0x0001fc00 /* Scrambler seed mask */
  1271. #define AR5K_DIAG_SW_SCRAM_SEED_S 10
  1272. #define AR5K_DIAG_SW_DIS_SEQ_INC 0x00040000 /* Disable seqnum increment (?)[5210] */
  1273. #define AR5K_DIAG_SW_FRAME_NV0_5210 0x00080000
  1274. #define AR5K_DIAG_SW_FRAME_NV0_5211 0x00020000
  1275. #define AR5K_DIAG_SW_FRAME_NV0 (ah->ah_version == AR5K_AR5210 ? \
  1276. AR5K_DIAG_SW_FRAME_NV0_5210 : AR5K_DIAG_SW_FRAME_NV0_5211)
  1277. #define AR5K_DIAG_SW_OBSPT_M 0x000c0000
  1278. #define AR5K_DIAG_SW_OBSPT_S 18
  1279. /* more bits */
  1280. /*
  1281. * TSF (clock) register (lower 32 bits)
  1282. */
  1283. #define AR5K_TSF_L32_5210 0x806c
  1284. #define AR5K_TSF_L32_5211 0x804c
  1285. #define AR5K_TSF_L32 (ah->ah_version == AR5K_AR5210 ? \
  1286. AR5K_TSF_L32_5210 : AR5K_TSF_L32_5211)
  1287. /*
  1288. * TSF (clock) register (higher 32 bits)
  1289. */
  1290. #define AR5K_TSF_U32_5210 0x8070
  1291. #define AR5K_TSF_U32_5211 0x8050
  1292. #define AR5K_TSF_U32 (ah->ah_version == AR5K_AR5210 ? \
  1293. AR5K_TSF_U32_5210 : AR5K_TSF_U32_5211)
  1294. /*
  1295. * Last beacon timestamp register
  1296. */
  1297. #define AR5K_LAST_TSTP 0x8080
  1298. /*
  1299. * ADDAC test register [5211+]
  1300. */
  1301. #define AR5K_ADDAC_TEST 0x8054 /* Register Address */
  1302. #define AR5K_ADDAC_TEST_TXCONT 0x00000001 /* Test continuous tx */
  1303. #define AR5K_ADDAC_TEST_TST_MODE 0x00000002 /* Test mode */
  1304. #define AR5K_ADDAC_TEST_LOOP_EN 0x00000004 /* Enable loop */
  1305. #define AR5K_ADDAC_TEST_LOOP_LEN 0x00000008 /* Loop length (field) */
  1306. #define AR5K_ADDAC_TEST_USE_U8 0x00004000 /* Use upper 8 bits */
  1307. #define AR5K_ADDAC_TEST_MSB 0x00008000 /* State of MSB */
  1308. #define AR5K_ADDAC_TEST_TRIG_SEL 0x00010000 /* Trigger select */
  1309. #define AR5K_ADDAC_TEST_TRIG_PTY 0x00020000 /* Trigger polarity */
  1310. #define AR5K_ADDAC_TEST_RXCONT 0x00040000 /* Continuous capture */
  1311. #define AR5K_ADDAC_TEST_CAPTURE 0x00080000 /* Begin capture */
  1312. #define AR5K_ADDAC_TEST_TST_ARM 0x00100000 /* Test ARM (Adaptive Radio Mode ?) */
  1313. /*
  1314. * Default antenna register [5211+]
  1315. */
  1316. #define AR5K_DEFAULT_ANTENNA 0x8058
  1317. /*
  1318. * Frame control QoS mask register (?) [5211+]
  1319. * (FC_QOS_MASK)
  1320. */
  1321. #define AR5K_FRAME_CTL_QOSM 0x805c
  1322. /*
  1323. * Seq mask register (?) [5211+]
  1324. */
  1325. #define AR5K_SEQ_MASK 0x8060
  1326. /*
  1327. * Retry count register [5210]
  1328. */
  1329. #define AR5K_RETRY_CNT 0x8084 /* Register Address [5210] */
  1330. #define AR5K_RETRY_CNT_SSH 0x0000003f /* Station short retry count (?) */
  1331. #define AR5K_RETRY_CNT_SLG 0x00000fc0 /* Station long retry count (?) */
  1332. /*
  1333. * Back-off status register [5210]
  1334. */
  1335. #define AR5K_BACKOFF 0x8088 /* Register Address [5210] */
  1336. #define AR5K_BACKOFF_CW 0x000003ff /* Backoff Contention Window (?) */
  1337. #define AR5K_BACKOFF_CNT 0x03ff0000 /* Backoff count (?) */
  1338. /*
  1339. * NAV register (current)
  1340. */
  1341. #define AR5K_NAV_5210 0x808c
  1342. #define AR5K_NAV_5211 0x8084
  1343. #define AR5K_NAV (ah->ah_version == AR5K_AR5210 ? \
  1344. AR5K_NAV_5210 : AR5K_NAV_5211)
  1345. /*
  1346. * RTS success register
  1347. */
  1348. #define AR5K_RTS_OK_5210 0x8090
  1349. #define AR5K_RTS_OK_5211 0x8088
  1350. #define AR5K_RTS_OK (ah->ah_version == AR5K_AR5210 ? \
  1351. AR5K_RTS_OK_5210 : AR5K_RTS_OK_5211)
  1352. /*
  1353. * RTS failure register
  1354. */
  1355. #define AR5K_RTS_FAIL_5210 0x8094
  1356. #define AR5K_RTS_FAIL_5211 0x808c
  1357. #define AR5K_RTS_FAIL (ah->ah_version == AR5K_AR5210 ? \
  1358. AR5K_RTS_FAIL_5210 : AR5K_RTS_FAIL_5211)
  1359. /*
  1360. * ACK failure register
  1361. */
  1362. #define AR5K_ACK_FAIL_5210 0x8098
  1363. #define AR5K_ACK_FAIL_5211 0x8090
  1364. #define AR5K_ACK_FAIL (ah->ah_version == AR5K_AR5210 ? \
  1365. AR5K_ACK_FAIL_5210 : AR5K_ACK_FAIL_5211)
  1366. /*
  1367. * FCS failure register
  1368. */
  1369. #define AR5K_FCS_FAIL_5210 0x809c
  1370. #define AR5K_FCS_FAIL_5211 0x8094
  1371. #define AR5K_FCS_FAIL (ah->ah_version == AR5K_AR5210 ? \
  1372. AR5K_FCS_FAIL_5210 : AR5K_FCS_FAIL_5211)
  1373. /*
  1374. * Beacon count register
  1375. */
  1376. #define AR5K_BEACON_CNT_5210 0x80a0
  1377. #define AR5K_BEACON_CNT_5211 0x8098
  1378. #define AR5K_BEACON_CNT (ah->ah_version == AR5K_AR5210 ? \
  1379. AR5K_BEACON_CNT_5210 : AR5K_BEACON_CNT_5211)
  1380. /*===5212 Specific PCU registers===*/
  1381. /*
  1382. * XR (eXtended Range) mode register
  1383. */
  1384. #define AR5K_XRMODE 0x80c0 /* Register Address */
  1385. #define AR5K_XRMODE_POLL_TYPE_M 0x0000003f /* Mask for Poll type (?) */
  1386. #define AR5K_XRMODE_POLL_TYPE_S 0
  1387. #define AR5K_XRMODE_POLL_SUBTYPE_M 0x0000003c /* Mask for Poll subtype (?) */
  1388. #define AR5K_XRMODE_POLL_SUBTYPE_S 2
  1389. #define AR5K_XRMODE_POLL_WAIT_ALL 0x00000080 /* Wait for poll */
  1390. #define AR5K_XRMODE_SIFS_DELAY 0x000fff00 /* Mask for SIFS delay */
  1391. #define AR5K_XRMODE_FRAME_HOLD_M 0xfff00000 /* Mask for frame hold (?) */
  1392. #define AR5K_XRMODE_FRAME_HOLD_S 20
  1393. /*
  1394. * XR delay register
  1395. */
  1396. #define AR5K_XRDELAY 0x80c4 /* Register Address */
  1397. #define AR5K_XRDELAY_SLOT_DELAY_M 0x0000ffff /* Mask for slot delay */
  1398. #define AR5K_XRDELAY_SLOT_DELAY_S 0
  1399. #define AR5K_XRDELAY_CHIRP_DELAY_M 0xffff0000 /* Mask for CHIRP data delay */
  1400. #define AR5K_XRDELAY_CHIRP_DELAY_S 16
  1401. /*
  1402. * XR timeout register
  1403. */
  1404. #define AR5K_XRTIMEOUT 0x80c8 /* Register Address */
  1405. #define AR5K_XRTIMEOUT_CHIRP_M 0x0000ffff /* Mask for CHIRP timeout */
  1406. #define AR5K_XRTIMEOUT_CHIRP_S 0
  1407. #define AR5K_XRTIMEOUT_POLL_M 0xffff0000 /* Mask for Poll timeout */
  1408. #define AR5K_XRTIMEOUT_POLL_S 16
  1409. /*
  1410. * XR chirp register
  1411. */
  1412. #define AR5K_XRCHIRP 0x80cc /* Register Address */
  1413. #define AR5K_XRCHIRP_SEND 0x00000001 /* Send CHIRP */
  1414. #define AR5K_XRCHIRP_GAP 0xffff0000 /* Mask for CHIRP gap (?) */
  1415. /*
  1416. * XR stomp register
  1417. */
  1418. #define AR5K_XRSTOMP 0x80d0 /* Register Address */
  1419. #define AR5K_XRSTOMP_TX 0x00000001 /* Stomp Tx (?) */
  1420. #define AR5K_XRSTOMP_RX 0x00000002 /* Stomp Rx (?) */
  1421. #define AR5K_XRSTOMP_TX_RSSI 0x00000004 /* Stomp Tx RSSI (?) */
  1422. #define AR5K_XRSTOMP_TX_BSSID 0x00000008 /* Stomp Tx BSSID (?) */
  1423. #define AR5K_XRSTOMP_DATA 0x00000010 /* Stomp data (?)*/
  1424. #define AR5K_XRSTOMP_RSSI_THRES 0x0000ff00 /* Mask for XR RSSI threshold */
  1425. /*
  1426. * First enhanced sleep register
  1427. */
  1428. #define AR5K_SLEEP0 0x80d4 /* Register Address */
  1429. #define AR5K_SLEEP0_NEXT_DTIM 0x0007ffff /* Mask for next DTIM (?) */
  1430. #define AR5K_SLEEP0_NEXT_DTIM_S 0
  1431. #define AR5K_SLEEP0_ASSUME_DTIM 0x00080000 /* Assume DTIM */
  1432. #define AR5K_SLEEP0_ENH_SLEEP_EN 0x00100000 /* Enable enchanced sleep control */
  1433. #define AR5K_SLEEP0_CABTO 0xff000000 /* Mask for CAB Time Out */
  1434. #define AR5K_SLEEP0_CABTO_S 24
  1435. /*
  1436. * Second enhanced sleep register
  1437. */
  1438. #define AR5K_SLEEP1 0x80d8 /* Register Address */
  1439. #define AR5K_SLEEP1_NEXT_TIM 0x0007ffff /* Mask for next TIM (?) */
  1440. #define AR5K_SLEEP1_NEXT_TIM_S 0
  1441. #define AR5K_SLEEP1_BEACON_TO 0xff000000 /* Mask for Beacon Time Out */
  1442. #define AR5K_SLEEP1_BEACON_TO_S 24
  1443. /*
  1444. * Third enhanced sleep register
  1445. */
  1446. #define AR5K_SLEEP2 0x80dc /* Register Address */
  1447. #define AR5K_SLEEP2_TIM_PER 0x0000ffff /* Mask for TIM period (?) */
  1448. #define AR5K_SLEEP2_TIM_PER_S 0
  1449. #define AR5K_SLEEP2_DTIM_PER 0xffff0000 /* Mask for DTIM period (?) */
  1450. #define AR5K_SLEEP2_DTIM_PER_S 16
  1451. /*
  1452. * BSSID mask registers
  1453. */
  1454. #define AR5K_BSS_IDM0 0x80e0 /* Upper bits */
  1455. #define AR5K_BSS_IDM1 0x80e4 /* Lower bits */
  1456. /*
  1457. * TX power control (TPC) register
  1458. *
  1459. * XXX: PCDAC steps (0.5dbm) or DBM ?
  1460. *
  1461. * XXX: Mask changes for newer chips to 7f
  1462. * like tx power table ?
  1463. */
  1464. #define AR5K_TXPC 0x80e8 /* Register Address */
  1465. #define AR5K_TXPC_ACK_M 0x0000003f /* Mask for ACK tx power */
  1466. #define AR5K_TXPC_ACK_S 0
  1467. #define AR5K_TXPC_CTS_M 0x00003f00 /* Mask for CTS tx power */
  1468. #define AR5K_TXPC_CTS_S 8
  1469. #define AR5K_TXPC_CHIRP_M 0x003f0000 /* Mask for CHIRP tx power */
  1470. #define AR5K_TXPC_CHIRP_S 22
  1471. /*
  1472. * Profile count registers
  1473. */
  1474. #define AR5K_PROFCNT_TX 0x80ec /* Tx count */
  1475. #define AR5K_PROFCNT_RX 0x80f0 /* Rx count */
  1476. #define AR5K_PROFCNT_RXCLR 0x80f4 /* Clear Rx count */
  1477. #define AR5K_PROFCNT_CYCLE 0x80f8 /* Cycle count (?) */
  1478. /*
  1479. * Quiet (period) control registers (?)
  1480. */
  1481. #define AR5K_QUIET_CTL1 0x80fc /* Register Address */
  1482. #define AR5K_QUIET_CTL1_NEXT_QT 0x0000ffff /* Mask for next quiet (period?) (?) */
  1483. #define AR5K_QUIET_CTL1_QT_EN 0x00010000 /* Enable quiet (period?) */
  1484. #define AR5K_QUIET_CTL2 0x8100 /* Register Address */
  1485. #define AR5K_QUIET_CTL2_QT_PER 0x0000ffff /* Mask for quiet period (?) */
  1486. #define AR5K_QUIET_CTL2_QT_DUR 0xffff0000 /* Mask for quiet duration (?) */
  1487. /*
  1488. * TSF parameter register
  1489. */
  1490. #define AR5K_TSF_PARM 0x8104 /* Register Address */
  1491. #define AR5K_TSF_PARM_INC_M 0x000000ff /* Mask for TSF increment */
  1492. #define AR5K_TSF_PARM_INC_S 0
  1493. /*
  1494. * QoS register (?)
  1495. */
  1496. #define AR5K_QOS 0x8108 /* Register Address */
  1497. #define AR5K_QOS_NOACK_2BIT_VALUES 0x00000000 /* (field) */
  1498. #define AR5K_QOS_NOACK_BIT_OFFSET 0x00000020 /* (field) */
  1499. #define AR5K_QOS_NOACK_BYTE_OFFSET 0x00000080 /* (field) */
  1500. /*
  1501. * PHY error filter register
  1502. */
  1503. #define AR5K_PHY_ERR_FIL 0x810c
  1504. #define AR5K_PHY_ERR_FIL_RADAR 0x00000020 /* Radar signal */
  1505. #define AR5K_PHY_ERR_FIL_OFDM 0x00020000 /* OFDM false detect (ANI) */
  1506. #define AR5K_PHY_ERR_FIL_CCK 0x02000000 /* CCK false detect (ANI) */
  1507. /*
  1508. * XR latency register
  1509. */
  1510. #define AR5K_XRLAT_TX 0x8110
  1511. /*
  1512. * ACK SIFS register
  1513. */
  1514. #define AR5K_ACKSIFS 0x8114 /* Register Address */
  1515. #define AR5K_ACKSIFS_INC 0x00000000 /* ACK SIFS Increment (field) */
  1516. /*
  1517. * MIC QoS control register (?)
  1518. */
  1519. #define AR5K_MIC_QOS_CTL 0x8118 /* Register Address */
  1520. #define AR5K_MIC_QOS_CTL_0 0x00000001 /* MIC QoS control 0 (?) */
  1521. #define AR5K_MIC_QOS_CTL_1 0x00000004 /* MIC QoS control 1 (?) */
  1522. #define AR5K_MIC_QOS_CTL_2 0x00000010 /* MIC QoS control 2 (?) */
  1523. #define AR5K_MIC_QOS_CTL_3 0x00000040 /* MIC QoS control 3 (?) */
  1524. #define AR5K_MIC_QOS_CTL_4 0x00000100 /* MIC QoS control 4 (?) */
  1525. #define AR5K_MIC_QOS_CTL_5 0x00000400 /* MIC QoS control 5 (?) */
  1526. #define AR5K_MIC_QOS_CTL_6 0x00001000 /* MIC QoS control 6 (?) */
  1527. #define AR5K_MIC_QOS_CTL_7 0x00004000 /* MIC QoS control 7 (?) */
  1528. #define AR5K_MIC_QOS_CTL_MQ_EN 0x00010000 /* Enable MIC QoS */
  1529. /*
  1530. * MIC QoS select register (?)
  1531. */
  1532. #define AR5K_MIC_QOS_SEL 0x811c
  1533. #define AR5K_MIC_QOS_SEL_0 0x00000001
  1534. #define AR5K_MIC_QOS_SEL_1 0x00000010
  1535. #define AR5K_MIC_QOS_SEL_2 0x00000100
  1536. #define AR5K_MIC_QOS_SEL_3 0x00001000
  1537. #define AR5K_MIC_QOS_SEL_4 0x00010000
  1538. #define AR5K_MIC_QOS_SEL_5 0x00100000
  1539. #define AR5K_MIC_QOS_SEL_6 0x01000000
  1540. #define AR5K_MIC_QOS_SEL_7 0x10000000
  1541. /*
  1542. * Misc mode control register (?)
  1543. */
  1544. #define AR5K_MISC_MODE 0x8120 /* Register Address */
  1545. #define AR5K_MISC_MODE_FBSSID_MATCH 0x00000001 /* Force BSSID match */
  1546. #define AR5K_MISC_MODE_ACKSIFS_MEM 0x00000002 /* ACK SIFS memory (?) */
  1547. /* more bits */
  1548. /*
  1549. * OFDM Filter counter
  1550. */
  1551. #define AR5K_OFDM_FIL_CNT 0x8124
  1552. /*
  1553. * CCK Filter counter
  1554. */
  1555. #define AR5K_CCK_FIL_CNT 0x8128
  1556. /*
  1557. * PHY Error Counters (?)
  1558. */
  1559. #define AR5K_PHYERR_CNT1 0x812c
  1560. #define AR5K_PHYERR_CNT1_MASK 0x8130
  1561. #define AR5K_PHYERR_CNT2 0x8134
  1562. #define AR5K_PHYERR_CNT2_MASK 0x8138
  1563. /*
  1564. * TSF Threshold register (?)
  1565. */
  1566. #define AR5K_TSF_THRES 0x813c
  1567. /*
  1568. * Rate -> ACK SIFS mapping table (32 entries)
  1569. */
  1570. #define AR5K_RATE_ACKSIFS_BASE 0x8680 /* Register Address */
  1571. #define AR5K_RATE_ACKSIFS(_n) (AR5K_RATE_ACKSIFS_BSE + ((_n) << 2))
  1572. #define AR5K_RATE_ACKSIFS_NORMAL 0x00000001 /* Normal SIFS (field) */
  1573. #define AR5K_RATE_ACKSIFS_TURBO 0x00000400 /* Turbo SIFS (field) */
  1574. /*
  1575. * Rate -> duration mapping table (32 entries)
  1576. */
  1577. #define AR5K_RATE_DUR_BASE 0x8700
  1578. #define AR5K_RATE_DUR(_n) (AR5K_RATE_DUR_BASE + ((_n) << 2))
  1579. /*
  1580. * Rate -> db mapping table
  1581. * (8 entries, each one has 4 8bit fields)
  1582. */
  1583. #define AR5K_RATE2DB_BASE 0x87c0
  1584. #define AR5K_RATE2DB(_n) (AR5K_RATE2DB_BASE + ((_n) << 2))
  1585. /*
  1586. * db -> Rate mapping table
  1587. * (8 entries, each one has 4 8bit fields)
  1588. */
  1589. #define AR5K_DB2RATE_BASE 0x87e0
  1590. #define AR5K_DB2RATE(_n) (AR5K_DB2RATE_BASE + ((_n) << 2))
  1591. /*===5212 end===*/
  1592. /*
  1593. * Key table (WEP) register
  1594. */
  1595. #define AR5K_KEYTABLE_0_5210 0x9000
  1596. #define AR5K_KEYTABLE_0_5211 0x8800
  1597. #define AR5K_KEYTABLE_5210(_n) (AR5K_KEYTABLE_0_5210 + ((_n) << 5))
  1598. #define AR5K_KEYTABLE_5211(_n) (AR5K_KEYTABLE_0_5211 + ((_n) << 5))
  1599. #define AR5K_KEYTABLE(_n) (ah->ah_version == AR5K_AR5210 ? \
  1600. AR5K_KEYTABLE_5210(_n) : AR5K_KEYTABLE_5211(_n))
  1601. #define AR5K_KEYTABLE_OFF(_n, x) (AR5K_KEYTABLE(_n) + (x << 2))
  1602. #define AR5K_KEYTABLE_TYPE(_n) AR5K_KEYTABLE_OFF(_n, 5)
  1603. #define AR5K_KEYTABLE_TYPE_40 0x00000000
  1604. #define AR5K_KEYTABLE_TYPE_104 0x00000001
  1605. #define AR5K_KEYTABLE_TYPE_128 0x00000003
  1606. #define AR5K_KEYTABLE_TYPE_TKIP 0x00000004 /* [5212+] */
  1607. #define AR5K_KEYTABLE_TYPE_AES 0x00000005 /* [5211+] */
  1608. #define AR5K_KEYTABLE_TYPE_CCM 0x00000006 /* [5212+] */
  1609. #define AR5K_KEYTABLE_TYPE_NULL 0x00000007 /* [5211+] */
  1610. #define AR5K_KEYTABLE_ANTENNA 0x00000008 /* [5212+] */
  1611. #define AR5K_KEYTABLE_MAC0(_n) AR5K_KEYTABLE_OFF(_n, 6)
  1612. #define AR5K_KEYTABLE_MAC1(_n) AR5K_KEYTABLE_OFF(_n, 7)
  1613. #define AR5K_KEYTABLE_VALID 0x00008000
  1614. /* WEP 40-bit = 40-bit entered key + 24 bit IV = 64-bit
  1615. * WEP 104-bit = 104-bit entered key + 24-bit IV = 128-bit
  1616. * WEP 128-bit = 128-bit entered key + 24 bit IV = 152-bit
  1617. *
  1618. * Some vendors have introduced bigger WEP keys to address
  1619. * security vulnerabilities in WEP. This includes:
  1620. *
  1621. * WEP 232-bit = 232-bit entered key + 24 bit IV = 256-bit
  1622. *
  1623. * We can expand this if we find ar5k Atheros cards with a larger
  1624. * key table size.
  1625. */
  1626. #define AR5K_KEYTABLE_SIZE_5210 64
  1627. #define AR5K_KEYTABLE_SIZE_5211 128
  1628. #define AR5K_KEYTABLE_SIZE (ah->ah_version == AR5K_AR5210 ? \
  1629. AR5K_KEYTABLE_SIZE_5210 : AR5K_KEYTABLE_SIZE_5211)
  1630. /*===PHY REGISTERS===*/
  1631. /*
  1632. * PHY registers start
  1633. */
  1634. #define AR5K_PHY_BASE 0x9800
  1635. #define AR5K_PHY(_n) (AR5K_PHY_BASE + ((_n) << 2))
  1636. /*
  1637. * TST_2 (Misc config parameters)
  1638. */
  1639. #define AR5K_PHY_TST2 0x9800 /* Register Address */
  1640. #define AR5K_PHY_TST2_TRIG_SEL 0x00000001 /* Trigger select (?) (field ?) */
  1641. #define AR5K_PHY_TST2_TRIG 0x00000010 /* Trigger (?) (field ?) */
  1642. #define AR5K_PHY_TST2_CBUS_MODE 0x00000100 /* Cardbus mode (?) */
  1643. /* bit reserved */
  1644. #define AR5K_PHY_TST2_CLK32 0x00000400 /* CLK_OUT is CLK32 (32Khz external) */
  1645. #define AR5K_PHY_TST2_CHANCOR_DUMP_EN 0x00000800 /* Enable Chancor dump (?) */
  1646. #define AR5K_PHY_TST2_EVEN_CHANCOR_DUMP 0x00001000 /* Even Chancor dump (?) */
  1647. #define AR5K_PHY_TST2_RFSILENT_EN 0x00002000 /* Enable RFSILENT */
  1648. #define AR5K_PHY_TST2_ALT_RFDATA 0x00004000 /* Alternate RFDATA (5-2GHz switch) */
  1649. #define AR5K_PHY_TST2_MINI_OBS_EN 0x00008000 /* Enable mini OBS (?) */
  1650. #define AR5K_PHY_TST2_RX2_IS_RX5_INV 0x00010000 /* 2GHz rx path is the 5GHz path inverted (?) */
  1651. #define AR5K_PHY_TST2_SLOW_CLK160 0x00020000 /* Slow CLK160 (?) */
  1652. #define AR5K_PHY_TST2_AGC_OBS_SEL_3 0x00040000 /* AGC OBS Select 3 (?) */
  1653. #define AR5K_PHY_TST2_BBB_OBS_SEL 0x00080000 /* BB OBS Select (field ?) */
  1654. #define AR5K_PHY_TST2_ADC_OBS_SEL 0x00800000 /* ADC OBS Select (field ?) */
  1655. #define AR5K_PHY_TST2_RX_CLR_SEL 0x08000000 /* RX Clear Select (?) */
  1656. #define AR5K_PHY_TST2_FORCE_AGC_CLR 0x10000000 /* Force AGC clear (?) */
  1657. #define AR5K_PHY_SHIFT_2GHZ 0x00004007 /* Used to access 2GHz radios */
  1658. #define AR5K_PHY_SHIFT_5GHZ 0x00000007 /* Used to access 5GHz radios (default) */
  1659. /*
  1660. * PHY frame control register [5110] /turbo mode register [5111+]
  1661. *
  1662. * There is another frame control register for [5111+]
  1663. * at address 0x9944 (see below) but the 2 first flags
  1664. * are common here between 5110 frame control register
  1665. * and [5111+] turbo mode register, so this also works as
  1666. * a "turbo mode register" for 5110. We treat this one as
  1667. * a frame control register for 5110 below.
  1668. */
  1669. #define AR5K_PHY_TURBO 0x9804 /* Register Address */
  1670. #define AR5K_PHY_TURBO_MODE 0x00000001 /* Enable turbo mode */
  1671. #define AR5K_PHY_TURBO_SHORT 0x00000002 /* Short mode (20Mhz channels) (?) */
  1672. /*
  1673. * PHY agility command register
  1674. * (aka TST_1)
  1675. */
  1676. #define AR5K_PHY_AGC 0x9808 /* Register Address */
  1677. #define AR5K_PHY_TST1 0x9808
  1678. #define AR5K_PHY_AGC_DISABLE 0x08000000 /* Disable AGC to A2 (?)*/
  1679. #define AR5K_PHY_TST1_TXHOLD 0x00003800 /* Set tx hold (?) */
  1680. /*
  1681. * PHY timing register 3 [5112+]
  1682. */
  1683. #define AR5K_PHY_TIMING_3 0x9814
  1684. #define AR5K_PHY_TIMING_3_DSC_MAN 0xfffe0000
  1685. #define AR5K_PHY_TIMING_3_DSC_MAN_S 17
  1686. #define AR5K_PHY_TIMING_3_DSC_EXP 0x0001e000
  1687. #define AR5K_PHY_TIMING_3_DSC_EXP_S 13
  1688. /*
  1689. * PHY chip revision register
  1690. */
  1691. #define AR5K_PHY_CHIP_ID 0x9818
  1692. /*
  1693. * PHY activation register
  1694. */
  1695. #define AR5K_PHY_ACT 0x981c /* Register Address */
  1696. #define AR5K_PHY_ACT_ENABLE 0x00000001 /* Activate PHY */
  1697. #define AR5K_PHY_ACT_DISABLE 0x00000002 /* Deactivate PHY */
  1698. /*
  1699. * PHY RF control registers
  1700. * (i think these are delay times,
  1701. * these calibration values exist
  1702. * in EEPROM)
  1703. */
  1704. #define AR5K_PHY_RF_CTL2 0x9824 /* Register Address */
  1705. #define AR5K_PHY_RF_CTL2_TXF2TXD_START 0x0000000f /* Mask for TX frame to TX d(esc?) start */
  1706. #define AR5K_PHY_RF_CTL3 0x9828 /* Register Address */
  1707. #define AR5K_PHY_RF_CTL3_TXE2XLNA_ON 0x0000000f /* Mask for TX end to XLNA on */
  1708. #define AR5K_PHY_RF_CTL4 0x9834 /* Register Address */
  1709. #define AR5K_PHY_RF_CTL4_TXF2XPA_A_ON 0x00000001 /* TX frame to XPA A on (field) */
  1710. #define AR5K_PHY_RF_CTL4_TXF2XPA_B_ON 0x00000100 /* TX frame to XPA B on (field) */
  1711. #define AR5K_PHY_RF_CTL4_TXE2XPA_A_OFF 0x00010000 /* TX end to XPA A off (field) */
  1712. #define AR5K_PHY_RF_CTL4_TXE2XPA_B_OFF 0x01000000 /* TX end to XPA B off (field) */
  1713. /*
  1714. * Pre-Amplifier control register
  1715. * (XPA -> external pre-amplifier)
  1716. */
  1717. #define AR5K_PHY_PA_CTL 0x9838 /* Register Address */
  1718. #define AR5K_PHY_PA_CTL_XPA_A_HI 0x00000001 /* XPA A high (?) */
  1719. #define AR5K_PHY_PA_CTL_XPA_B_HI 0x00000002 /* XPA B high (?) */
  1720. #define AR5K_PHY_PA_CTL_XPA_A_EN 0x00000004 /* Enable XPA A */
  1721. #define AR5K_PHY_PA_CTL_XPA_B_EN 0x00000008 /* Enable XPA B */
  1722. /*
  1723. * PHY settling register
  1724. */
  1725. #define AR5K_PHY_SETTLING 0x9844 /* Register Address */
  1726. #define AR5K_PHY_SETTLING_AGC 0x0000007f /* Mask for AGC settling time */
  1727. #define AR5K_PHY_SETTLING_SWITCH 0x00003f80 /* Mask for Switch settlig time */
  1728. /*
  1729. * PHY Gain registers
  1730. */
  1731. #define AR5K_PHY_GAIN 0x9848 /* Register Address */
  1732. #define AR5K_PHY_GAIN_TXRX_ATTEN 0x0003f000 /* Mask for TX-RX Attenuation */
  1733. #define AR5K_PHY_GAIN_OFFSET 0x984c /* Register Address */
  1734. #define AR5K_PHY_GAIN_OFFSET_RXTX_FLAG 0x00020000 /* RX-TX flag (?) */
  1735. /*
  1736. * Desired size register
  1737. * (for more infos read ANI patent)
  1738. */
  1739. #define AR5K_PHY_DESIRED_SIZE 0x9850 /* Register Address */
  1740. #define AR5K_PHY_DESIRED_SIZE_ADC 0x000000ff /* Mask for ADC desired size */
  1741. #define AR5K_PHY_DESIRED_SIZE_PGA 0x0000ff00 /* Mask for PGA desired size */
  1742. #define AR5K_PHY_DESIRED_SIZE_TOT 0x0ff00000 /* Mask for Total desired size (?) */
  1743. /*
  1744. * PHY signal register
  1745. * (for more infos read ANI patent)
  1746. */
  1747. #define AR5K_PHY_SIG 0x9858 /* Register Address */
  1748. #define AR5K_PHY_SIG_FIRSTEP 0x0003f000 /* Mask for FIRSTEP */
  1749. #define AR5K_PHY_SIG_FIRSTEP_S 12
  1750. #define AR5K_PHY_SIG_FIRPWR 0x03fc0000 /* Mask for FIPWR */
  1751. #define AR5K_PHY_SIG_FIRPWR_S 18
  1752. /*
  1753. * PHY coarse agility control register
  1754. * (for more infos read ANI patent)
  1755. */
  1756. #define AR5K_PHY_AGCCOARSE 0x985c /* Register Address */
  1757. #define AR5K_PHY_AGCCOARSE_LO 0x00007f80 /* Mask for AGC Coarse low */
  1758. #define AR5K_PHY_AGCCOARSE_LO_S 7
  1759. #define AR5K_PHY_AGCCOARSE_HI 0x003f8000 /* Mask for AGC Coarse high */
  1760. #define AR5K_PHY_AGCCOARSE_HI_S 15
  1761. /*
  1762. * PHY agility control register
  1763. */
  1764. #define AR5K_PHY_AGCCTL 0x9860 /* Register address */
  1765. #define AR5K_PHY_AGCCTL_CAL 0x00000001 /* Enable PHY calibration */
  1766. #define AR5K_PHY_AGCCTL_NF 0x00000002 /* Enable Noise Floor calibration */
  1767. /*
  1768. * PHY noise floor status register
  1769. */
  1770. #define AR5K_PHY_NF 0x9864 /* Register address */
  1771. #define AR5K_PHY_NF_M 0x000001ff /* Noise floor mask */
  1772. #define AR5K_PHY_NF_ACTIVE 0x00000100 /* Noise floor calibration still active */
  1773. #define AR5K_PHY_NF_RVAL(_n) (((_n) >> 19) & AR5K_PHY_NF_M)
  1774. #define AR5K_PHY_NF_AVAL(_n) (-((_n) ^ AR5K_PHY_NF_M) + 1)
  1775. #define AR5K_PHY_NF_SVAL(_n) (((_n) & AR5K_PHY_NF_M) | (1 << 9))
  1776. #define AR5K_PHY_NF_THRESH62 0x00001000 /* Thresh62 -check ANI patent- (field) */
  1777. /*
  1778. * PHY ADC saturation register [5110]
  1779. */
  1780. #define AR5K_PHY_ADCSAT 0x9868
  1781. #define AR5K_PHY_ADCSAT_ICNT 0x0001f800
  1782. #define AR5K_PHY_ADCSAT_ICNT_S 11
  1783. #define AR5K_PHY_ADCSAT_THR 0x000007e0
  1784. #define AR5K_PHY_ADCSAT_THR_S 5
  1785. /*
  1786. * PHY Weak ofdm signal detection threshold registers (ANI) [5212+]
  1787. */
  1788. /* High thresholds */
  1789. #define AR5K_PHY_WEAK_OFDM_HIGH_THR 0x9868
  1790. #define AR5K_PHY_WEAK_OFDM_HIGH_THR_M2_COUNT 0x0000001f
  1791. #define AR5K_PHY_WEAK_OFDM_HIGH_THR_M2_COUNT_S 0
  1792. #define AR5K_PHY_WEAK_OFDM_HIGH_THR_M1 0x00fe0000
  1793. #define AR5K_PHY_WEAK_OFDM_HIGH_THR_M1_S 17
  1794. #define AR5K_PHY_WEAK_OFDM_HIGH_THR_M2 0x7f000000
  1795. #define AR5K_PHY_WEAK_OFDM_HIGH_THR_M2_S 24
  1796. /* Low thresholds */
  1797. #define AR5K_PHY_WEAK_OFDM_LOW_THR 0x986c
  1798. #define AR5K_PHY_WEAK_OFDM_LOW_THR_SELFCOR_EN 0x00000001
  1799. #define AR5K_PHY_WEAK_OFDM_LOW_THR_M2_COUNT 0x00003f00
  1800. #define AR5K_PHY_WEAK_OFDM_LOW_THR_M2_COUNT_S 8
  1801. #define AR5K_PHY_WEAK_OFDM_LOW_THR_M1 0x001fc000
  1802. #define AR5K_PHY_WEAK_OFDM_LOW_THR_M1_S 14
  1803. #define AR5K_PHY_WEAK_OFDM_LOW_THR_M2 0x0fe00000
  1804. #define AR5K_PHY_WEAK_OFDM_LOW_THR_M2_S 21
  1805. /*
  1806. * PHY sleep registers [5112+]
  1807. */
  1808. #define AR5K_PHY_SCR 0x9870
  1809. #define AR5K_PHY_SCR_32MHZ 0x0000001f
  1810. #define AR5K_PHY_SLMT 0x9874
  1811. #define AR5K_PHY_SLMT_32MHZ 0x0000007f
  1812. #define AR5K_PHY_SCAL 0x9878
  1813. #define AR5K_PHY_SCAL_32MHZ 0x0000000e
  1814. /*
  1815. * PHY PLL (Phase Locked Loop) control register
  1816. */
  1817. #define AR5K_PHY_PLL 0x987c
  1818. #define AR5K_PHY_PLL_20MHZ 0x13 /* For half rate (?) [5111+] */
  1819. #define AR5K_PHY_PLL_40MHZ_5211 0x18 /* For 802.11a */
  1820. #define AR5K_PHY_PLL_40MHZ_5212 0x000000aa
  1821. #define AR5K_PHY_PLL_40MHZ (ah->ah_version == AR5K_AR5211 ? \
  1822. AR5K_PHY_PLL_40MHZ_5211 : AR5K_PHY_PLL_40MHZ_5212)
  1823. #define AR5K_PHY_PLL_44MHZ_5211 0x19 /* For 802.11b/g */
  1824. #define AR5K_PHY_PLL_44MHZ_5212 0x000000ab
  1825. #define AR5K_PHY_PLL_44MHZ (ah->ah_version == AR5K_AR5211 ? \
  1826. AR5K_PHY_PLL_44MHZ_5211 : AR5K_PHY_PLL_44MHZ_5212)
  1827. #define AR5K_PHY_PLL_RF5111 0x00000000
  1828. #define AR5K_PHY_PLL_RF5112 0x00000040
  1829. #define AR5K_PHY_PLL_HALF_RATE 0x00000100
  1830. #define AR5K_PHY_PLL_QUARTER_RATE 0x00000200
  1831. /*
  1832. * RF Buffer register
  1833. *
  1834. * There are some special control registers on the RF chip
  1835. * that hold various operation settings related mostly to
  1836. * the analog parts (channel, gain adjustment etc).
  1837. *
  1838. * We don't write on those registers directly but
  1839. * we send a data packet on the buffer register and
  1840. * then write on another special register to notify hw
  1841. * to apply the settings. This is done so that control registers
  1842. * can be dynamicaly programmed during operation and the settings
  1843. * are applied faster on the hw.
  1844. *
  1845. * We sent such data packets during rf initialization and channel change
  1846. * through ath5k_hw_rf*_rfregs and ath5k_hw_rf*_channel functions.
  1847. *
  1848. * The data packets we send during initializadion are inside ath5k_ini_rf
  1849. * struct (see ath5k_hw.h) and each one is related to an "rf register bank".
  1850. * We use *rfregs functions to modify them acording to current operation
  1851. * mode and eeprom values and pass them all together to the chip.
  1852. *
  1853. * It's obvious from the code that 0x989c is the buffer register but
  1854. * for the other special registers that we write to after sending each
  1855. * packet, i have no idea. So i'll name them BUFFER_CONTROL_X registers
  1856. * for now. It's interesting that they are also used for some other operations.
  1857. *
  1858. * Also check out hw.h and U.S. Patent 6677779 B1 (about buffer
  1859. * registers and control registers):
  1860. *
  1861. * http://www.google.com/patents?id=qNURAAAAEBAJ
  1862. */
  1863. #define AR5K_RF_BUFFER 0x989c
  1864. #define AR5K_RF_BUFFER_CONTROL_0 0x98c0 /* Channel on 5110 */
  1865. #define AR5K_RF_BUFFER_CONTROL_1 0x98c4 /* Bank 7 on 5112 */
  1866. #define AR5K_RF_BUFFER_CONTROL_2 0x98cc /* Bank 7 on 5111 */
  1867. #define AR5K_RF_BUFFER_CONTROL_3 0x98d0 /* Bank 2 on 5112 */
  1868. /* Channel set on 5111 */
  1869. /* Used to read radio revision*/
  1870. #define AR5K_RF_BUFFER_CONTROL_4 0x98d4 /* RF Stage register on 5110 */
  1871. /* Bank 0,1,2,6 on 5111 */
  1872. /* Bank 1 on 5112 */
  1873. /* Used during activation on 5111 */
  1874. #define AR5K_RF_BUFFER_CONTROL_5 0x98d8 /* Bank 3 on 5111 */
  1875. /* Used during activation on 5111 */
  1876. /* Channel on 5112 */
  1877. /* Bank 6 on 5112 */
  1878. #define AR5K_RF_BUFFER_CONTROL_6 0x98dc /* Bank 3 on 5112 */
  1879. /*
  1880. * PHY RF stage register [5210]
  1881. */
  1882. #define AR5K_PHY_RFSTG 0x98d4
  1883. #define AR5K_PHY_RFSTG_DISABLE 0x00000021
  1884. /*
  1885. * PHY Antenna control register
  1886. */
  1887. #define AR5K_PHY_ANT_CTL 0x9910 /* Register Address */
  1888. #define AR5K_PHY_ANT_CTL_TXRX_EN 0x00000001 /* Enable TX/RX (?) */
  1889. #define AR5K_PHY_ANT_CTL_SECTORED_ANT 0x00000004 /* Sectored Antenna */
  1890. #define AR5K_PHY_ANT_CTL_HITUNE5 0x00000008 /* Hitune5 (?) */
  1891. #define AR5K_PHY_ANT_CTL_SWTABLE_IDLE 0x00000010 /* Switch table idle (?) */
  1892. /*
  1893. * PHY receiver delay register [5111+]
  1894. */
  1895. #define AR5K_PHY_RX_DELAY 0x9914 /* Register Address */
  1896. #define AR5K_PHY_RX_DELAY_M 0x00003fff /* Mask for RX activate to receive delay (/100ns) */
  1897. /*
  1898. * PHY max rx length register (?) [5111]
  1899. */
  1900. #define AR5K_PHY_MAX_RX_LEN 0x991c
  1901. /*
  1902. * PHY timing register 4
  1903. * I(nphase)/Q(adrature) calibration register [5111+]
  1904. */
  1905. #define AR5K_PHY_IQ 0x9920 /* Register Address */
  1906. #define AR5K_PHY_IQ_CORR_Q_Q_COFF 0x0000001f /* Mask for q correction info */
  1907. #define AR5K_PHY_IQ_CORR_Q_I_COFF 0x000007e0 /* Mask for i correction info */
  1908. #define AR5K_PHY_IQ_CORR_Q_I_COFF_S 5
  1909. #define AR5K_PHY_IQ_CORR_ENABLE 0x00000800 /* Enable i/q correction */
  1910. #define AR5K_PHY_IQ_CAL_NUM_LOG_MAX 0x0000f000 /* Mask for max number of samples in log scale */
  1911. #define AR5K_PHY_IQ_CAL_NUM_LOG_MAX_S 12
  1912. #define AR5K_PHY_IQ_RUN 0x00010000 /* Run i/q calibration */
  1913. #define AR5K_PHY_IQ_USE_PT_DF 0x00020000 /* Use pilot track df (?) */
  1914. #define AR5K_PHY_IQ_EARLY_TRIG_THR 0x00200000 /* Early trigger threshold (?) (field) */
  1915. #define AR5K_PHY_IQ_PILOT_MASK_EN 0x10000000 /* Enable pilot mask (?) */
  1916. #define AR5K_PHY_IQ_CHAN_MASK_EN 0x20000000 /* Enable channel mask (?) */
  1917. #define AR5K_PHY_IQ_SPUR_FILT_EN 0x40000000 /* Enable spur filter */
  1918. #define AR5K_PHY_IQ_SPUR_RSSI_EN 0x80000000 /* Enable spur rssi */
  1919. /*
  1920. * PHY timing register 5
  1921. * OFDM Self-correlator Cyclic RSSI threshold params
  1922. * (Check out bb_cycpwr_thr1 on ANI patent)
  1923. */
  1924. #define AR5K_PHY_OFDM_SELFCORR 0x9924 /* Register Address */
  1925. #define AR5K_PHY_OFDM_SELFCORR_CYPWR_THR1_EN 0x00000001 /* Enable cyclic RSSI thr 1 */
  1926. #define AR5K_PHY_OFDM_SELFCORR_CYPWR_THR1 0x000000fe /* Mask for Cyclic RSSI threshold 1 */
  1927. #define AR5K_PHY_OFDM_SELFCORR_CYPWR_THR3 0x00000100 /* Cyclic RSSI threshold 3 (field) (?) */
  1928. #define AR5K_PHY_OFDM_SELFCORR_RSSI_1ATHR_EN 0x00008000 /* Enable 1A RSSI threshold (?) */
  1929. #define AR5K_PHY_OFDM_SELFCORR_RSSI_1ATHR 0x00010000 /* 1A RSSI threshold (field) (?) */
  1930. #define AR5K_PHY_OFDM_SELFCORR_LSCTHR_HIRSSI 0x00800000 /* Long sc threshold hi rssi (?) */
  1931. /*
  1932. * PHY-only warm reset register
  1933. */
  1934. #define AR5K_PHY_WARM_RESET 0x9928
  1935. /*
  1936. * PHY-only control register
  1937. */
  1938. #define AR5K_PHY_CTL 0x992c /* Register Address */
  1939. #define AR5K_PHY_CTL_RX_DRAIN_RATE 0x00000001 /* RX drain rate (?) */
  1940. #define AR5K_PHY_CTL_LATE_TX_SIG_SYM 0x00000002 /* Late tx signal symbol (?) */
  1941. #define AR5K_PHY_CTL_GEN_SCRAMBLER 0x00000004 /* Generate scrambler */
  1942. #define AR5K_PHY_CTL_TX_ANT_SEL 0x00000008 /* TX antenna select */
  1943. #define AR5K_PHY_CTL_TX_ANT_STATIC 0x00000010 /* Static TX antenna */
  1944. #define AR5K_PHY_CTL_RX_ANT_SEL 0x00000020 /* RX antenna select */
  1945. #define AR5K_PHY_CTL_RX_ANT_STATIC 0x00000040 /* Static RX antenna */
  1946. #define AR5K_PHY_CTL_LOW_FREQ_SLE_EN 0x00000080 /* Enable low freq sleep */
  1947. /*
  1948. * PHY PAPD probe register [5111+ (?)]
  1949. * Is this only present in 5212 ?
  1950. * Because it's always 0 in 5211 initialization code
  1951. */
  1952. #define AR5K_PHY_PAPD_PROBE 0x9930
  1953. #define AR5K_PHY_PAPD_PROBE_SH_HI_PAR 0x00000001
  1954. #define AR5K_PHY_PAPD_PROBE_PCDAC_BIAS 0x00000002
  1955. #define AR5K_PHY_PAPD_PROBE_COMP_GAIN 0x00000040
  1956. #define AR5K_PHY_PAPD_PROBE_TXPOWER 0x00007e00
  1957. #define AR5K_PHY_PAPD_PROBE_TXPOWER_S 9
  1958. #define AR5K_PHY_PAPD_PROBE_TX_NEXT 0x00008000
  1959. #define AR5K_PHY_PAPD_PROBE_PREDIST_EN 0x00010000
  1960. #define AR5K_PHY_PAPD_PROBE_TYPE 0x01800000 /* [5112+] */
  1961. #define AR5K_PHY_PAPD_PROBE_TYPE_S 23
  1962. #define AR5K_PHY_PAPD_PROBE_TYPE_OFDM 0
  1963. #define AR5K_PHY_PAPD_PROBE_TYPE_XR 1
  1964. #define AR5K_PHY_PAPD_PROBE_TYPE_CCK 2
  1965. #define AR5K_PHY_PAPD_PROBE_GAINF 0xfe000000
  1966. #define AR5K_PHY_PAPD_PROBE_GAINF_S 25
  1967. #define AR5K_PHY_PAPD_PROBE_INI_5111 0x00004883 /* [5212+] */
  1968. #define AR5K_PHY_PAPD_PROBE_INI_5112 0x00004882 /* [5212+] */
  1969. /*
  1970. * PHY TX rate power registers [5112+]
  1971. */
  1972. #define AR5K_PHY_TXPOWER_RATE1 0x9934
  1973. #define AR5K_PHY_TXPOWER_RATE2 0x9938
  1974. #define AR5K_PHY_TXPOWER_RATE_MAX 0x993c
  1975. #define AR5K_PHY_TXPOWER_RATE_MAX_TPC_ENABLE 0x00000040
  1976. #define AR5K_PHY_TXPOWER_RATE3 0xa234
  1977. #define AR5K_PHY_TXPOWER_RATE4 0xa238
  1978. /*
  1979. * PHY frame control register [5111+]
  1980. */
  1981. #define AR5K_PHY_FRAME_CTL_5210 0x9804
  1982. #define AR5K_PHY_FRAME_CTL_5211 0x9944
  1983. #define AR5K_PHY_FRAME_CTL (ah->ah_version == AR5K_AR5210 ? \
  1984. AR5K_PHY_FRAME_CTL_5210 : AR5K_PHY_FRAME_CTL_5211)
  1985. /*---[5111+]---*/
  1986. #define AR5K_PHY_FRAME_CTL_TX_CLIP 0x00000038 /* Mask for tx clip (?) */
  1987. #define AR5K_PHY_FRAME_CTL_TX_CLIP_S 3
  1988. #define AR5K_PHY_FRAME_CTL_PREP_CHINFO 0x00010000 /* Prepend chan info */
  1989. /*---[5110/5111]---*/
  1990. #define AR5K_PHY_FRAME_CTL_TIMING_ERR 0x01000000 /* PHY timing error */
  1991. #define AR5K_PHY_FRAME_CTL_PARITY_ERR 0x02000000 /* Parity error */
  1992. #define AR5K_PHY_FRAME_CTL_ILLRATE_ERR 0x04000000 /* Illegal rate */
  1993. #define AR5K_PHY_FRAME_CTL_ILLLEN_ERR 0x08000000 /* Illegal length */
  1994. #define AR5K_PHY_FRAME_CTL_SERVICE_ERR 0x20000000
  1995. #define AR5K_PHY_FRAME_CTL_TXURN_ERR 0x40000000 /* TX underrun */
  1996. #define AR5K_PHY_FRAME_CTL_INI AR5K_PHY_FRAME_CTL_SERVICE_ERR | \
  1997. AR5K_PHY_FRAME_CTL_TXURN_ERR | \
  1998. AR5K_PHY_FRAME_CTL_ILLLEN_ERR | \
  1999. AR5K_PHY_FRAME_CTL_ILLRATE_ERR | \
  2000. AR5K_PHY_FRAME_CTL_PARITY_ERR | \
  2001. AR5K_PHY_FRAME_CTL_TIMING_ERR
  2002. /*
  2003. * PHY radar detection register [5111+]
  2004. */
  2005. #define AR5K_PHY_RADAR 0x9954
  2006. /* Radar enable ........ ........ ........ .......1 */
  2007. #define AR5K_PHY_RADAR_ENABLE 0x00000001
  2008. #define AR5K_PHY_RADAR_DISABLE 0x00000000
  2009. #define AR5K_PHY_RADAR_ENABLE_S 0
  2010. /* This is the value found on the card .1.111.1 .1.1.... 111....1 1...1...
  2011. at power on. */
  2012. #define AR5K_PHY_RADAR_PWONDEF_AR5213 0x5d50e188
  2013. /* This is the value found on the card .1.1.111 ..11...1 .1...1.1 1...11.1
  2014. after DFS is enabled */
  2015. #define AR5K_PHY_RADAR_ENABLED_AR5213 0x5731458d
  2016. /* Finite Impulse Response (FIR) filter .1111111 ........ ........ ........
  2017. * power out threshold.
  2018. * 7-bits, standard power range {0..127} in 1/2 dBm units. */
  2019. #define AR5K_PHY_RADAR_FIRPWROUTTHR 0x7f000000
  2020. #define AR5K_PHY_RADAR_FIRPWROUTTHR_S 24
  2021. /* Radar RSSI/SNR threshold. ........ 111111.. ........ ........
  2022. * 6-bits, dBm range {0..63} in dBm units. */
  2023. #define AR5K_PHY_RADAR_RADARRSSITHR 0x00fc0000
  2024. #define AR5K_PHY_RADAR_RADARRSSITHR_S 18
  2025. /* Pulse height threshold ........ ......11 1111.... ........
  2026. * 6-bits, dBm range {0..63} in dBm units. */
  2027. #define AR5K_PHY_RADAR_PULSEHEIGHTTHR 0x0003f000
  2028. #define AR5K_PHY_RADAR_PULSEHEIGHTTHR_S 12
  2029. /* Pulse RSSI/SNR threshold ........ ........ ....1111 11......
  2030. * 6-bits, dBm range {0..63} in dBm units. */
  2031. #define AR5K_PHY_RADAR_PULSERSSITHR 0x00000fc0
  2032. #define AR5K_PHY_RADAR_PULSERSSITHR_S 6
  2033. /* Inband threshold ........ ........ ........ ..11111.
  2034. * 5-bits, units unknown {0..31} (? MHz ?) */
  2035. #define AR5K_PHY_RADAR_INBANDTHR 0x0000003e
  2036. #define AR5K_PHY_RADAR_INBANDTHR_S 1
  2037. /*
  2038. * PHY antenna switch table registers [5110]
  2039. */
  2040. #define AR5K_PHY_ANT_SWITCH_TABLE_0 0x9960
  2041. #define AR5K_PHY_ANT_SWITCH_TABLE_1 0x9964
  2042. /*
  2043. * PHY Noise floor threshold
  2044. */
  2045. #define AR5K_PHY_NFTHRES 0x9968
  2046. /*
  2047. * PHY clock sleep registers [5112+]
  2048. */
  2049. #define AR5K_PHY_SCLOCK 0x99f0
  2050. #define AR5K_PHY_SCLOCK_32MHZ 0x0000000c
  2051. #define AR5K_PHY_SDELAY 0x99f4
  2052. #define AR5K_PHY_SDELAY_32MHZ 0x000000ff
  2053. #define AR5K_PHY_SPENDING 0x99f8
  2054. #define AR5K_PHY_SPENDING_14 0x00000014
  2055. #define AR5K_PHY_SPENDING_18 0x00000018
  2056. #define AR5K_PHY_SPENDING_RF5111 0x00000018
  2057. #define AR5K_PHY_SPENDING_RF5112 0x00000014
  2058. /* #define AR5K_PHY_SPENDING_RF5112A 0x0000000e */
  2059. /* #define AR5K_PHY_SPENDING_RF5424 0x00000012 */
  2060. #define AR5K_PHY_SPENDING_RF5413 0x00000014
  2061. #define AR5K_PHY_SPENDING_RF2413 0x00000014
  2062. #define AR5K_PHY_SPENDING_RF2425 0x00000018
  2063. /*
  2064. * Misc PHY/radio registers [5110 - 5111]
  2065. */
  2066. #define AR5K_BB_GAIN_BASE 0x9b00 /* BaseBand Amplifier Gain table base address */
  2067. #define AR5K_BB_GAIN(_n) (AR5K_BB_GAIN_BASE + ((_n) << 2))
  2068. #define AR5K_RF_GAIN_BASE 0x9a00 /* RF Amplrifier Gain table base address */
  2069. #define AR5K_RF_GAIN(_n) (AR5K_RF_GAIN_BASE + ((_n) << 2))
  2070. /*
  2071. * PHY timing IQ calibration result register [5111+]
  2072. */
  2073. #define AR5K_PHY_IQRES_CAL_PWR_I 0x9c10 /* I (Inphase) power value */
  2074. #define AR5K_PHY_IQRES_CAL_PWR_Q 0x9c14 /* Q (Quadrature) power value */
  2075. #define AR5K_PHY_IQRES_CAL_CORR 0x9c18 /* I/Q Correlation */
  2076. /*
  2077. * PHY current RSSI register [5111+]
  2078. */
  2079. #define AR5K_PHY_CURRENT_RSSI 0x9c1c
  2080. /*
  2081. * PHY RF Bus grant register (?)
  2082. */
  2083. #define AR5K_PHY_RFBUS_GRANT 0x9c20
  2084. /*
  2085. * PHY ADC test register
  2086. */
  2087. #define AR5K_PHY_ADC_TEST 0x9c24
  2088. #define AR5K_PHY_ADC_TEST_I 0x00000001
  2089. #define AR5K_PHY_ADC_TEST_Q 0x00000200
  2090. /*
  2091. * PHY DAC test register
  2092. */
  2093. #define AR5K_PHY_DAC_TEST 0x9c28
  2094. #define AR5K_PHY_DAC_TEST_I 0x00000001
  2095. #define AR5K_PHY_DAC_TEST_Q 0x00000200
  2096. /*
  2097. * PHY PTAT register (?)
  2098. */
  2099. #define AR5K_PHY_PTAT 0x9c2c
  2100. /*
  2101. * PHY Illegal TX rate register [5112+]
  2102. */
  2103. #define AR5K_PHY_BAD_TX_RATE 0x9c30
  2104. /*
  2105. * PHY SPUR Power register [5112+]
  2106. */
  2107. #define AR5K_PHY_SPUR_PWR 0x9c34 /* Register Address */
  2108. #define AR5K_PHY_SPUR_PWR_I 0x00000001 /* SPUR Power estimate for I (field) */
  2109. #define AR5K_PHY_SPUR_PWR_Q 0x00000100 /* SPUR Power estimate for Q (field) */
  2110. #define AR5K_PHY_SPUR_PWR_FILT 0x00010000 /* Power with SPUR removed (field) */
  2111. /*
  2112. * PHY Channel status register [5112+] (?)
  2113. */
  2114. #define AR5K_PHY_CHAN_STATUS 0x9c38
  2115. #define AR5K_PHY_CHAN_STATUS_BT_ACT 0x00000001
  2116. #define AR5K_PHY_CHAN_STATUS_RX_CLR_RAW 0x00000002
  2117. #define AR5K_PHY_CHAN_STATUS_RX_CLR_MAC 0x00000004
  2118. #define AR5K_PHY_CHAN_STATUS_RX_CLR_PAP 0x00000008
  2119. /*
  2120. * PHY PAPD I (power?) table (?)
  2121. * (92! entries)
  2122. */
  2123. #define AR5K_PHY_PAPD_I_BASE 0xa000
  2124. #define AR5K_PHY_PAPD_I(_n) (AR5K_PHY_PAPD_I_BASE + ((_n) << 2))
  2125. /*
  2126. * PHY PCDAC TX power table
  2127. */
  2128. #define AR5K_PHY_PCDAC_TXPOWER_BASE_5211 0xa180
  2129. #define AR5K_PHY_PCDAC_TXPOWER_BASE_2413 0xa280
  2130. #define AR5K_PHY_PCDAC_TXPOWER_BASE (ah->ah_radio >= AR5K_RF2413 ? \
  2131. AR5K_PHY_PCDAC_TXPOWER_BASE_2413 :\
  2132. AR5K_PHY_PCDAC_TXPOWER_BASE_5211)
  2133. #define AR5K_PHY_PCDAC_TXPOWER(_n) (AR5K_PHY_PCDAC_TXPOWER_BASE + ((_n) << 2))
  2134. /*
  2135. * PHY mode register [5111+]
  2136. */
  2137. #define AR5K_PHY_MODE 0x0a200 /* Register Address */
  2138. #define AR5K_PHY_MODE_MOD 0x00000001 /* PHY Modulation bit */
  2139. #define AR5K_PHY_MODE_MOD_OFDM 0
  2140. #define AR5K_PHY_MODE_MOD_CCK 1
  2141. #define AR5K_PHY_MODE_FREQ 0x00000002 /* Freq mode bit */
  2142. #define AR5K_PHY_MODE_FREQ_5GHZ 0
  2143. #define AR5K_PHY_MODE_FREQ_2GHZ 2
  2144. #define AR5K_PHY_MODE_MOD_DYN 0x00000004 /* Enable Dynamic OFDM/CCK mode [5112+] */
  2145. #define AR5K_PHY_MODE_RAD 0x00000008 /* [5212+] */
  2146. #define AR5K_PHY_MODE_RAD_RF5111 0
  2147. #define AR5K_PHY_MODE_RAD_RF5112 8
  2148. #define AR5K_PHY_MODE_XR 0x00000010 /* Enable XR mode [5112+] */
  2149. #define AR5K_PHY_MODE_HALF_RATE 0x00000020 /* Enable Half rate (test) */
  2150. #define AR5K_PHY_MODE_QUARTER_RATE 0x00000040 /* Enable Quarter rat (test) */
  2151. /*
  2152. * PHY CCK transmit control register [5111+ (?)]
  2153. */
  2154. #define AR5K_PHY_CCKTXCTL 0xa204
  2155. #define AR5K_PHY_CCKTXCTL_WORLD 0x00000000
  2156. #define AR5K_PHY_CCKTXCTL_JAPAN 0x00000010
  2157. #define AR5K_PHY_CCKTXCTL_SCRAMBLER_DIS 0x00000001
  2158. #define AR5K_PHY_CCKTXCTK_DAC_SCALE 0x00000004
  2159. /*
  2160. * PHY CCK Cross-correlator Barker RSSI threshold register [5212+]
  2161. */
  2162. #define AR5K_PHY_CCK_CROSSCORR 0xa208
  2163. #define AR5K_PHY_CCK_CROSSCORR_WEAK_SIG_THR 0x0000000f
  2164. #define AR5K_PHY_CCK_CROSSCORR_WEAK_SIG_THR_S 0
  2165. /*
  2166. * PHY 2GHz gain register [5111+]
  2167. */
  2168. #define AR5K_PHY_GAIN_2GHZ 0xa20c
  2169. #define AR5K_PHY_GAIN_2GHZ_MARGIN_TXRX 0x00fc0000
  2170. #define AR5K_PHY_GAIN_2GHZ_MARGIN_TXRX_S 18
  2171. #define AR5K_PHY_GAIN_2GHZ_INI_5111 0x6480416c