hw.c 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940
  1. /*
  2. * Copyright (c) 2008-2010 Atheros Communications Inc.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for any
  5. * purpose with or without fee is hereby granted, provided that the above
  6. * copyright notice and this permission notice appear in all copies.
  7. *
  8. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  9. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  10. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  11. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  12. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  13. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  14. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. #include <linux/io.h>
  17. #include <linux/slab.h>
  18. #include <asm/unaligned.h>
  19. #include "hw.h"
  20. #include "hw-ops.h"
  21. #include "rc.h"
  22. #include "ar9003_mac.h"
  23. static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
  24. MODULE_AUTHOR("Atheros Communications");
  25. MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
  26. MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
  27. MODULE_LICENSE("Dual BSD/GPL");
  28. static int __init ath9k_init(void)
  29. {
  30. return 0;
  31. }
  32. module_init(ath9k_init);
  33. static void __exit ath9k_exit(void)
  34. {
  35. return;
  36. }
  37. module_exit(ath9k_exit);
  38. /* Private hardware callbacks */
  39. static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
  40. {
  41. ath9k_hw_private_ops(ah)->init_cal_settings(ah);
  42. }
  43. static void ath9k_hw_init_mode_regs(struct ath_hw *ah)
  44. {
  45. ath9k_hw_private_ops(ah)->init_mode_regs(ah);
  46. }
  47. static bool ath9k_hw_macversion_supported(struct ath_hw *ah)
  48. {
  49. struct ath_hw_private_ops *priv_ops = ath9k_hw_private_ops(ah);
  50. return priv_ops->macversion_supported(ah->hw_version.macVersion);
  51. }
  52. static u32 ath9k_hw_compute_pll_control(struct ath_hw *ah,
  53. struct ath9k_channel *chan)
  54. {
  55. return ath9k_hw_private_ops(ah)->compute_pll_control(ah, chan);
  56. }
  57. static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
  58. {
  59. if (!ath9k_hw_private_ops(ah)->init_mode_gain_regs)
  60. return;
  61. ath9k_hw_private_ops(ah)->init_mode_gain_regs(ah);
  62. }
  63. static void ath9k_hw_ani_cache_ini_regs(struct ath_hw *ah)
  64. {
  65. /* You will not have this callback if using the old ANI */
  66. if (!ath9k_hw_private_ops(ah)->ani_cache_ini_regs)
  67. return;
  68. ath9k_hw_private_ops(ah)->ani_cache_ini_regs(ah);
  69. }
  70. /********************/
  71. /* Helper Functions */
  72. /********************/
  73. static u32 ath9k_hw_mac_clks(struct ath_hw *ah, u32 usecs)
  74. {
  75. struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
  76. if (!ah->curchan) /* should really check for CCK instead */
  77. return usecs *ATH9K_CLOCK_RATE_CCK;
  78. if (conf->channel->band == IEEE80211_BAND_2GHZ)
  79. return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
  80. if (ah->caps.hw_caps & ATH9K_HW_CAP_FASTCLOCK)
  81. return usecs * ATH9K_CLOCK_FAST_RATE_5GHZ_OFDM;
  82. else
  83. return usecs * ATH9K_CLOCK_RATE_5GHZ_OFDM;
  84. }
  85. static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
  86. {
  87. struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
  88. if (conf_is_ht40(conf))
  89. return ath9k_hw_mac_clks(ah, usecs) * 2;
  90. else
  91. return ath9k_hw_mac_clks(ah, usecs);
  92. }
  93. bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
  94. {
  95. int i;
  96. BUG_ON(timeout < AH_TIME_QUANTUM);
  97. for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
  98. if ((REG_READ(ah, reg) & mask) == val)
  99. return true;
  100. udelay(AH_TIME_QUANTUM);
  101. }
  102. ath_print(ath9k_hw_common(ah), ATH_DBG_ANY,
  103. "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
  104. timeout, reg, REG_READ(ah, reg), mask, val);
  105. return false;
  106. }
  107. EXPORT_SYMBOL(ath9k_hw_wait);
  108. u32 ath9k_hw_reverse_bits(u32 val, u32 n)
  109. {
  110. u32 retval;
  111. int i;
  112. for (i = 0, retval = 0; i < n; i++) {
  113. retval = (retval << 1) | (val & 1);
  114. val >>= 1;
  115. }
  116. return retval;
  117. }
  118. bool ath9k_get_channel_edges(struct ath_hw *ah,
  119. u16 flags, u16 *low,
  120. u16 *high)
  121. {
  122. struct ath9k_hw_capabilities *pCap = &ah->caps;
  123. if (flags & CHANNEL_5GHZ) {
  124. *low = pCap->low_5ghz_chan;
  125. *high = pCap->high_5ghz_chan;
  126. return true;
  127. }
  128. if ((flags & CHANNEL_2GHZ)) {
  129. *low = pCap->low_2ghz_chan;
  130. *high = pCap->high_2ghz_chan;
  131. return true;
  132. }
  133. return false;
  134. }
  135. u16 ath9k_hw_computetxtime(struct ath_hw *ah,
  136. u8 phy, int kbps,
  137. u32 frameLen, u16 rateix,
  138. bool shortPreamble)
  139. {
  140. u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
  141. if (kbps == 0)
  142. return 0;
  143. switch (phy) {
  144. case WLAN_RC_PHY_CCK:
  145. phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
  146. if (shortPreamble)
  147. phyTime >>= 1;
  148. numBits = frameLen << 3;
  149. txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
  150. break;
  151. case WLAN_RC_PHY_OFDM:
  152. if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
  153. bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
  154. numBits = OFDM_PLCP_BITS + (frameLen << 3);
  155. numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
  156. txTime = OFDM_SIFS_TIME_QUARTER
  157. + OFDM_PREAMBLE_TIME_QUARTER
  158. + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
  159. } else if (ah->curchan &&
  160. IS_CHAN_HALF_RATE(ah->curchan)) {
  161. bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
  162. numBits = OFDM_PLCP_BITS + (frameLen << 3);
  163. numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
  164. txTime = OFDM_SIFS_TIME_HALF +
  165. OFDM_PREAMBLE_TIME_HALF
  166. + (numSymbols * OFDM_SYMBOL_TIME_HALF);
  167. } else {
  168. bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
  169. numBits = OFDM_PLCP_BITS + (frameLen << 3);
  170. numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
  171. txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
  172. + (numSymbols * OFDM_SYMBOL_TIME);
  173. }
  174. break;
  175. default:
  176. ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
  177. "Unknown phy %u (rate ix %u)\n", phy, rateix);
  178. txTime = 0;
  179. break;
  180. }
  181. return txTime;
  182. }
  183. EXPORT_SYMBOL(ath9k_hw_computetxtime);
  184. void ath9k_hw_get_channel_centers(struct ath_hw *ah,
  185. struct ath9k_channel *chan,
  186. struct chan_centers *centers)
  187. {
  188. int8_t extoff;
  189. if (!IS_CHAN_HT40(chan)) {
  190. centers->ctl_center = centers->ext_center =
  191. centers->synth_center = chan->channel;
  192. return;
  193. }
  194. if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
  195. (chan->chanmode == CHANNEL_G_HT40PLUS)) {
  196. centers->synth_center =
  197. chan->channel + HT40_CHANNEL_CENTER_SHIFT;
  198. extoff = 1;
  199. } else {
  200. centers->synth_center =
  201. chan->channel - HT40_CHANNEL_CENTER_SHIFT;
  202. extoff = -1;
  203. }
  204. centers->ctl_center =
  205. centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
  206. /* 25 MHz spacing is supported by hw but not on upper layers */
  207. centers->ext_center =
  208. centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
  209. }
  210. /******************/
  211. /* Chip Revisions */
  212. /******************/
  213. static void ath9k_hw_read_revisions(struct ath_hw *ah)
  214. {
  215. u32 val;
  216. val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
  217. if (val == 0xFF) {
  218. val = REG_READ(ah, AR_SREV);
  219. ah->hw_version.macVersion =
  220. (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
  221. ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
  222. ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
  223. } else {
  224. if (!AR_SREV_9100(ah))
  225. ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
  226. ah->hw_version.macRev = val & AR_SREV_REVISION;
  227. if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
  228. ah->is_pciexpress = true;
  229. }
  230. }
  231. /************************************/
  232. /* HW Attach, Detach, Init Routines */
  233. /************************************/
  234. static void ath9k_hw_disablepcie(struct ath_hw *ah)
  235. {
  236. if (AR_SREV_9100(ah))
  237. return;
  238. ENABLE_REGWRITE_BUFFER(ah);
  239. REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
  240. REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
  241. REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
  242. REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
  243. REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
  244. REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
  245. REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
  246. REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
  247. REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
  248. REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
  249. REGWRITE_BUFFER_FLUSH(ah);
  250. DISABLE_REGWRITE_BUFFER(ah);
  251. }
  252. /* This should work for all families including legacy */
  253. static bool ath9k_hw_chip_test(struct ath_hw *ah)
  254. {
  255. struct ath_common *common = ath9k_hw_common(ah);
  256. u32 regAddr[2] = { AR_STA_ID0 };
  257. u32 regHold[2];
  258. u32 patternData[4] = { 0x55555555,
  259. 0xaaaaaaaa,
  260. 0x66666666,
  261. 0x99999999 };
  262. int i, j, loop_max;
  263. if (!AR_SREV_9300_20_OR_LATER(ah)) {
  264. loop_max = 2;
  265. regAddr[1] = AR_PHY_BASE + (8 << 2);
  266. } else
  267. loop_max = 1;
  268. for (i = 0; i < loop_max; i++) {
  269. u32 addr = regAddr[i];
  270. u32 wrData, rdData;
  271. regHold[i] = REG_READ(ah, addr);
  272. for (j = 0; j < 0x100; j++) {
  273. wrData = (j << 16) | j;
  274. REG_WRITE(ah, addr, wrData);
  275. rdData = REG_READ(ah, addr);
  276. if (rdData != wrData) {
  277. ath_print(common, ATH_DBG_FATAL,
  278. "address test failed "
  279. "addr: 0x%08x - wr:0x%08x != "
  280. "rd:0x%08x\n",
  281. addr, wrData, rdData);
  282. return false;
  283. }
  284. }
  285. for (j = 0; j < 4; j++) {
  286. wrData = patternData[j];
  287. REG_WRITE(ah, addr, wrData);
  288. rdData = REG_READ(ah, addr);
  289. if (wrData != rdData) {
  290. ath_print(common, ATH_DBG_FATAL,
  291. "address test failed "
  292. "addr: 0x%08x - wr:0x%08x != "
  293. "rd:0x%08x\n",
  294. addr, wrData, rdData);
  295. return false;
  296. }
  297. }
  298. REG_WRITE(ah, regAddr[i], regHold[i]);
  299. }
  300. udelay(100);
  301. return true;
  302. }
  303. static void ath9k_hw_init_config(struct ath_hw *ah)
  304. {
  305. int i;
  306. ah->config.dma_beacon_response_time = 2;
  307. ah->config.sw_beacon_response_time = 10;
  308. ah->config.additional_swba_backoff = 0;
  309. ah->config.ack_6mb = 0x0;
  310. ah->config.cwm_ignore_extcca = 0;
  311. ah->config.pcie_powersave_enable = 0;
  312. ah->config.pcie_clock_req = 0;
  313. ah->config.pcie_waen = 0;
  314. ah->config.analog_shiftreg = 1;
  315. ah->config.ofdm_trig_low = 200;
  316. ah->config.ofdm_trig_high = 500;
  317. ah->config.cck_trig_high = 200;
  318. ah->config.cck_trig_low = 100;
  319. /*
  320. * For now ANI is disabled for AR9003, it is still
  321. * being tested.
  322. */
  323. if (!AR_SREV_9300_20_OR_LATER(ah))
  324. ah->config.enable_ani = 1;
  325. for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
  326. ah->config.spurchans[i][0] = AR_NO_SPUR;
  327. ah->config.spurchans[i][1] = AR_NO_SPUR;
  328. }
  329. if (ah->hw_version.devid != AR2427_DEVID_PCIE)
  330. ah->config.ht_enable = 1;
  331. else
  332. ah->config.ht_enable = 0;
  333. ah->config.rx_intr_mitigation = true;
  334. /*
  335. * We need this for PCI devices only (Cardbus, PCI, miniPCI)
  336. * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
  337. * This means we use it for all AR5416 devices, and the few
  338. * minor PCI AR9280 devices out there.
  339. *
  340. * Serialization is required because these devices do not handle
  341. * well the case of two concurrent reads/writes due to the latency
  342. * involved. During one read/write another read/write can be issued
  343. * on another CPU while the previous read/write may still be working
  344. * on our hardware, if we hit this case the hardware poops in a loop.
  345. * We prevent this by serializing reads and writes.
  346. *
  347. * This issue is not present on PCI-Express devices or pre-AR5416
  348. * devices (legacy, 802.11abg).
  349. */
  350. if (num_possible_cpus() > 1)
  351. ah->config.serialize_regmode = SER_REG_MODE_AUTO;
  352. }
  353. static void ath9k_hw_init_defaults(struct ath_hw *ah)
  354. {
  355. struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
  356. regulatory->country_code = CTRY_DEFAULT;
  357. regulatory->power_limit = MAX_RATE_POWER;
  358. regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
  359. ah->hw_version.magic = AR5416_MAGIC;
  360. ah->hw_version.subvendorid = 0;
  361. ah->ah_flags = 0;
  362. if (!AR_SREV_9100(ah))
  363. ah->ah_flags = AH_USE_EEPROM;
  364. ah->atim_window = 0;
  365. ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
  366. ah->beacon_interval = 100;
  367. ah->enable_32kHz_clock = DONT_USE_32KHZ;
  368. ah->slottime = (u32) -1;
  369. ah->globaltxtimeout = (u32) -1;
  370. ah->power_mode = ATH9K_PM_UNDEFINED;
  371. }
  372. static int ath9k_hw_init_macaddr(struct ath_hw *ah)
  373. {
  374. struct ath_common *common = ath9k_hw_common(ah);
  375. u32 sum;
  376. int i;
  377. u16 eeval;
  378. u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
  379. sum = 0;
  380. for (i = 0; i < 3; i++) {
  381. eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
  382. sum += eeval;
  383. common->macaddr[2 * i] = eeval >> 8;
  384. common->macaddr[2 * i + 1] = eeval & 0xff;
  385. }
  386. if (sum == 0 || sum == 0xffff * 3)
  387. return -EADDRNOTAVAIL;
  388. return 0;
  389. }
  390. static int ath9k_hw_post_init(struct ath_hw *ah)
  391. {
  392. int ecode;
  393. if (!AR_SREV_9271(ah)) {
  394. if (!ath9k_hw_chip_test(ah))
  395. return -ENODEV;
  396. }
  397. if (!AR_SREV_9300_20_OR_LATER(ah)) {
  398. ecode = ar9002_hw_rf_claim(ah);
  399. if (ecode != 0)
  400. return ecode;
  401. }
  402. ecode = ath9k_hw_eeprom_init(ah);
  403. if (ecode != 0)
  404. return ecode;
  405. ath_print(ath9k_hw_common(ah), ATH_DBG_CONFIG,
  406. "Eeprom VER: %d, REV: %d\n",
  407. ah->eep_ops->get_eeprom_ver(ah),
  408. ah->eep_ops->get_eeprom_rev(ah));
  409. ecode = ath9k_hw_rf_alloc_ext_banks(ah);
  410. if (ecode) {
  411. ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
  412. "Failed allocating banks for "
  413. "external radio\n");
  414. return ecode;
  415. }
  416. if (!AR_SREV_9100(ah)) {
  417. ath9k_hw_ani_setup(ah);
  418. ath9k_hw_ani_init(ah);
  419. }
  420. return 0;
  421. }
  422. static void ath9k_hw_attach_ops(struct ath_hw *ah)
  423. {
  424. if (AR_SREV_9300_20_OR_LATER(ah))
  425. ar9003_hw_attach_ops(ah);
  426. else
  427. ar9002_hw_attach_ops(ah);
  428. }
  429. /* Called for all hardware families */
  430. static int __ath9k_hw_init(struct ath_hw *ah)
  431. {
  432. struct ath_common *common = ath9k_hw_common(ah);
  433. int r = 0;
  434. if (ah->hw_version.devid == AR5416_AR9100_DEVID)
  435. ah->hw_version.macVersion = AR_SREV_VERSION_9100;
  436. if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
  437. ath_print(common, ATH_DBG_FATAL,
  438. "Couldn't reset chip\n");
  439. return -EIO;
  440. }
  441. ath9k_hw_init_defaults(ah);
  442. ath9k_hw_init_config(ah);
  443. ath9k_hw_attach_ops(ah);
  444. if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
  445. ath_print(common, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
  446. return -EIO;
  447. }
  448. if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
  449. if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
  450. (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
  451. ah->config.serialize_regmode =
  452. SER_REG_MODE_ON;
  453. } else {
  454. ah->config.serialize_regmode =
  455. SER_REG_MODE_OFF;
  456. }
  457. }
  458. ath_print(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
  459. ah->config.serialize_regmode);
  460. if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
  461. ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
  462. else
  463. ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
  464. if (!ath9k_hw_macversion_supported(ah)) {
  465. ath_print(common, ATH_DBG_FATAL,
  466. "Mac Chip Rev 0x%02x.%x is not supported by "
  467. "this driver\n", ah->hw_version.macVersion,
  468. ah->hw_version.macRev);
  469. return -EOPNOTSUPP;
  470. }
  471. if (AR_SREV_9271(ah) || AR_SREV_9100(ah))
  472. ah->is_pciexpress = false;
  473. ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
  474. ath9k_hw_init_cal_settings(ah);
  475. ah->ani_function = ATH9K_ANI_ALL;
  476. if (AR_SREV_9280_10_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
  477. ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
  478. if (!AR_SREV_9300_20_OR_LATER(ah))
  479. ah->ani_function &= ~ATH9K_ANI_MRC_CCK;
  480. ath9k_hw_init_mode_regs(ah);
  481. /*
  482. * Configire PCIE after Ini init. SERDES values now come from ini file
  483. * This enables PCIe low power mode.
  484. */
  485. if (AR_SREV_9300_20_OR_LATER(ah)) {
  486. u32 regval;
  487. unsigned int i;
  488. /* Set Bits 16 and 17 in the AR_WA register. */
  489. regval = REG_READ(ah, AR_WA);
  490. regval |= 0x00030000;
  491. REG_WRITE(ah, AR_WA, regval);
  492. for (i = 0; i < ah->iniPcieSerdesLowPower.ia_rows; i++) {
  493. REG_WRITE(ah,
  494. INI_RA(&ah->iniPcieSerdesLowPower, i, 0),
  495. INI_RA(&ah->iniPcieSerdesLowPower, i, 1));
  496. }
  497. }
  498. if (ah->is_pciexpress)
  499. ath9k_hw_configpcipowersave(ah, 0, 0);
  500. else
  501. ath9k_hw_disablepcie(ah);
  502. if (!AR_SREV_9300_20_OR_LATER(ah))
  503. ar9002_hw_cck_chan14_spread(ah);
  504. r = ath9k_hw_post_init(ah);
  505. if (r)
  506. return r;
  507. ath9k_hw_init_mode_gain_regs(ah);
  508. r = ath9k_hw_fill_cap_info(ah);
  509. if (r)
  510. return r;
  511. r = ath9k_hw_init_macaddr(ah);
  512. if (r) {
  513. ath_print(common, ATH_DBG_FATAL,
  514. "Failed to initialize MAC address\n");
  515. return r;
  516. }
  517. if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
  518. ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
  519. else
  520. ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
  521. if (AR_SREV_9300_20_OR_LATER(ah))
  522. ar9003_hw_set_nf_limits(ah);
  523. ath9k_init_nfcal_hist_buffer(ah);
  524. ah->bb_watchdog_timeout_ms = 25;
  525. common->state = ATH_HW_INITIALIZED;
  526. return 0;
  527. }
  528. int ath9k_hw_init(struct ath_hw *ah)
  529. {
  530. int ret;
  531. struct ath_common *common = ath9k_hw_common(ah);
  532. /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
  533. switch (ah->hw_version.devid) {
  534. case AR5416_DEVID_PCI:
  535. case AR5416_DEVID_PCIE:
  536. case AR5416_AR9100_DEVID:
  537. case AR9160_DEVID_PCI:
  538. case AR9280_DEVID_PCI:
  539. case AR9280_DEVID_PCIE:
  540. case AR9285_DEVID_PCIE:
  541. case AR9287_DEVID_PCI:
  542. case AR9287_DEVID_PCIE:
  543. case AR2427_DEVID_PCIE:
  544. case AR9300_DEVID_PCIE:
  545. break;
  546. default:
  547. if (common->bus_ops->ath_bus_type == ATH_USB)
  548. break;
  549. ath_print(common, ATH_DBG_FATAL,
  550. "Hardware device ID 0x%04x not supported\n",
  551. ah->hw_version.devid);
  552. return -EOPNOTSUPP;
  553. }
  554. ret = __ath9k_hw_init(ah);
  555. if (ret) {
  556. ath_print(common, ATH_DBG_FATAL,
  557. "Unable to initialize hardware; "
  558. "initialization status: %d\n", ret);
  559. return ret;
  560. }
  561. return 0;
  562. }
  563. EXPORT_SYMBOL(ath9k_hw_init);
  564. static void ath9k_hw_init_qos(struct ath_hw *ah)
  565. {
  566. ENABLE_REGWRITE_BUFFER(ah);
  567. REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
  568. REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
  569. REG_WRITE(ah, AR_QOS_NO_ACK,
  570. SM(2, AR_QOS_NO_ACK_TWO_BIT) |
  571. SM(5, AR_QOS_NO_ACK_BIT_OFF) |
  572. SM(0, AR_QOS_NO_ACK_BYTE_OFF));
  573. REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
  574. REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
  575. REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
  576. REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
  577. REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
  578. REGWRITE_BUFFER_FLUSH(ah);
  579. DISABLE_REGWRITE_BUFFER(ah);
  580. }
  581. static void ath9k_hw_init_pll(struct ath_hw *ah,
  582. struct ath9k_channel *chan)
  583. {
  584. u32 pll = ath9k_hw_compute_pll_control(ah, chan);
  585. REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
  586. /* Switch the core clock for ar9271 to 117Mhz */
  587. if (AR_SREV_9271(ah)) {
  588. udelay(500);
  589. REG_WRITE(ah, 0x50040, 0x304);
  590. }
  591. udelay(RTC_PLL_SETTLE_DELAY);
  592. REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
  593. }
  594. static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
  595. enum nl80211_iftype opmode)
  596. {
  597. u32 imr_reg = AR_IMR_TXERR |
  598. AR_IMR_TXURN |
  599. AR_IMR_RXERR |
  600. AR_IMR_RXORN |
  601. AR_IMR_BCNMISC;
  602. if (AR_SREV_9300_20_OR_LATER(ah)) {
  603. imr_reg |= AR_IMR_RXOK_HP;
  604. if (ah->config.rx_intr_mitigation)
  605. imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
  606. else
  607. imr_reg |= AR_IMR_RXOK_LP;
  608. } else {
  609. if (ah->config.rx_intr_mitigation)
  610. imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
  611. else
  612. imr_reg |= AR_IMR_RXOK;
  613. }
  614. if (ah->config.tx_intr_mitigation)
  615. imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
  616. else
  617. imr_reg |= AR_IMR_TXOK;
  618. if (opmode == NL80211_IFTYPE_AP)
  619. imr_reg |= AR_IMR_MIB;
  620. ENABLE_REGWRITE_BUFFER(ah);
  621. REG_WRITE(ah, AR_IMR, imr_reg);
  622. ah->imrs2_reg |= AR_IMR_S2_GTT;
  623. REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
  624. if (!AR_SREV_9100(ah)) {
  625. REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
  626. REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
  627. REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
  628. }
  629. REGWRITE_BUFFER_FLUSH(ah);
  630. DISABLE_REGWRITE_BUFFER(ah);
  631. if (AR_SREV_9300_20_OR_LATER(ah)) {
  632. REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
  633. REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
  634. REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
  635. REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
  636. }
  637. }
  638. static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
  639. {
  640. u32 val = ath9k_hw_mac_to_clks(ah, us);
  641. val = min(val, (u32) 0xFFFF);
  642. REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
  643. }
  644. static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
  645. {
  646. u32 val = ath9k_hw_mac_to_clks(ah, us);
  647. val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
  648. REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
  649. }
  650. static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
  651. {
  652. u32 val = ath9k_hw_mac_to_clks(ah, us);
  653. val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
  654. REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
  655. }
  656. static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
  657. {
  658. if (tu > 0xFFFF) {
  659. ath_print(ath9k_hw_common(ah), ATH_DBG_XMIT,
  660. "bad global tx timeout %u\n", tu);
  661. ah->globaltxtimeout = (u32) -1;
  662. return false;
  663. } else {
  664. REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
  665. ah->globaltxtimeout = tu;
  666. return true;
  667. }
  668. }
  669. void ath9k_hw_init_global_settings(struct ath_hw *ah)
  670. {
  671. struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
  672. int acktimeout;
  673. int slottime;
  674. int sifstime;
  675. ath_print(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
  676. ah->misc_mode);
  677. if (ah->misc_mode != 0)
  678. REG_WRITE(ah, AR_PCU_MISC,
  679. REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
  680. if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
  681. sifstime = 16;
  682. else
  683. sifstime = 10;
  684. /* As defined by IEEE 802.11-2007 17.3.8.6 */
  685. slottime = ah->slottime + 3 * ah->coverage_class;
  686. acktimeout = slottime + sifstime;
  687. /*
  688. * Workaround for early ACK timeouts, add an offset to match the
  689. * initval's 64us ack timeout value.
  690. * This was initially only meant to work around an issue with delayed
  691. * BA frames in some implementations, but it has been found to fix ACK
  692. * timeout issues in other cases as well.
  693. */
  694. if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
  695. acktimeout += 64 - sifstime - ah->slottime;
  696. ath9k_hw_setslottime(ah, slottime);
  697. ath9k_hw_set_ack_timeout(ah, acktimeout);
  698. ath9k_hw_set_cts_timeout(ah, acktimeout);
  699. if (ah->globaltxtimeout != (u32) -1)
  700. ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
  701. }
  702. EXPORT_SYMBOL(ath9k_hw_init_global_settings);
  703. void ath9k_hw_deinit(struct ath_hw *ah)
  704. {
  705. struct ath_common *common = ath9k_hw_common(ah);
  706. if (common->state < ATH_HW_INITIALIZED)
  707. goto free_hw;
  708. ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
  709. free_hw:
  710. ath9k_hw_rf_free_ext_banks(ah);
  711. }
  712. EXPORT_SYMBOL(ath9k_hw_deinit);
  713. /*******/
  714. /* INI */
  715. /*******/
  716. u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
  717. {
  718. u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
  719. if (IS_CHAN_B(chan))
  720. ctl |= CTL_11B;
  721. else if (IS_CHAN_G(chan))
  722. ctl |= CTL_11G;
  723. else
  724. ctl |= CTL_11A;
  725. return ctl;
  726. }
  727. /****************************************/
  728. /* Reset and Channel Switching Routines */
  729. /****************************************/
  730. static inline void ath9k_hw_set_dma(struct ath_hw *ah)
  731. {
  732. struct ath_common *common = ath9k_hw_common(ah);
  733. u32 regval;
  734. ENABLE_REGWRITE_BUFFER(ah);
  735. /*
  736. * set AHB_MODE not to do cacheline prefetches
  737. */
  738. if (!AR_SREV_9300_20_OR_LATER(ah)) {
  739. regval = REG_READ(ah, AR_AHB_MODE);
  740. REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
  741. }
  742. /*
  743. * let mac dma reads be in 128 byte chunks
  744. */
  745. regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
  746. REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
  747. REGWRITE_BUFFER_FLUSH(ah);
  748. DISABLE_REGWRITE_BUFFER(ah);
  749. /*
  750. * Restore TX Trigger Level to its pre-reset value.
  751. * The initial value depends on whether aggregation is enabled, and is
  752. * adjusted whenever underruns are detected.
  753. */
  754. if (!AR_SREV_9300_20_OR_LATER(ah))
  755. REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
  756. ENABLE_REGWRITE_BUFFER(ah);
  757. /*
  758. * let mac dma writes be in 128 byte chunks
  759. */
  760. regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
  761. REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
  762. /*
  763. * Setup receive FIFO threshold to hold off TX activities
  764. */
  765. REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
  766. if (AR_SREV_9300_20_OR_LATER(ah)) {
  767. REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
  768. REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
  769. ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
  770. ah->caps.rx_status_len);
  771. }
  772. /*
  773. * reduce the number of usable entries in PCU TXBUF to avoid
  774. * wrap around issues.
  775. */
  776. if (AR_SREV_9285(ah)) {
  777. /* For AR9285 the number of Fifos are reduced to half.
  778. * So set the usable tx buf size also to half to
  779. * avoid data/delimiter underruns
  780. */
  781. REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
  782. AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
  783. } else if (!AR_SREV_9271(ah)) {
  784. REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
  785. AR_PCU_TXBUF_CTRL_USABLE_SIZE);
  786. }
  787. REGWRITE_BUFFER_FLUSH(ah);
  788. DISABLE_REGWRITE_BUFFER(ah);
  789. if (AR_SREV_9300_20_OR_LATER(ah))
  790. ath9k_hw_reset_txstatus_ring(ah);
  791. }
  792. static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
  793. {
  794. u32 val;
  795. val = REG_READ(ah, AR_STA_ID1);
  796. val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
  797. switch (opmode) {
  798. case NL80211_IFTYPE_AP:
  799. REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
  800. | AR_STA_ID1_KSRCH_MODE);
  801. REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
  802. break;
  803. case NL80211_IFTYPE_ADHOC:
  804. case NL80211_IFTYPE_MESH_POINT:
  805. REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
  806. | AR_STA_ID1_KSRCH_MODE);
  807. REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
  808. break;
  809. case NL80211_IFTYPE_STATION:
  810. case NL80211_IFTYPE_MONITOR:
  811. REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
  812. break;
  813. }
  814. }
  815. void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
  816. u32 *coef_mantissa, u32 *coef_exponent)
  817. {
  818. u32 coef_exp, coef_man;
  819. for (coef_exp = 31; coef_exp > 0; coef_exp--)
  820. if ((coef_scaled >> coef_exp) & 0x1)
  821. break;
  822. coef_exp = 14 - (coef_exp - COEF_SCALE_S);
  823. coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
  824. *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
  825. *coef_exponent = coef_exp - 16;
  826. }
  827. static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
  828. {
  829. u32 rst_flags;
  830. u32 tmpReg;
  831. if (AR_SREV_9100(ah)) {
  832. u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
  833. val &= ~AR_RTC_DERIVED_CLK_PERIOD;
  834. val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
  835. REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
  836. (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
  837. }
  838. ENABLE_REGWRITE_BUFFER(ah);
  839. REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
  840. AR_RTC_FORCE_WAKE_ON_INT);
  841. if (AR_SREV_9100(ah)) {
  842. rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
  843. AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
  844. } else {
  845. tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
  846. if (tmpReg &
  847. (AR_INTR_SYNC_LOCAL_TIMEOUT |
  848. AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
  849. u32 val;
  850. REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
  851. val = AR_RC_HOSTIF;
  852. if (!AR_SREV_9300_20_OR_LATER(ah))
  853. val |= AR_RC_AHB;
  854. REG_WRITE(ah, AR_RC, val);
  855. } else if (!AR_SREV_9300_20_OR_LATER(ah))
  856. REG_WRITE(ah, AR_RC, AR_RC_AHB);
  857. rst_flags = AR_RTC_RC_MAC_WARM;
  858. if (type == ATH9K_RESET_COLD)
  859. rst_flags |= AR_RTC_RC_MAC_COLD;
  860. }
  861. REG_WRITE(ah, AR_RTC_RC, rst_flags);
  862. REGWRITE_BUFFER_FLUSH(ah);
  863. DISABLE_REGWRITE_BUFFER(ah);
  864. udelay(50);
  865. REG_WRITE(ah, AR_RTC_RC, 0);
  866. if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
  867. ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
  868. "RTC stuck in MAC reset\n");
  869. return false;
  870. }
  871. if (!AR_SREV_9100(ah))
  872. REG_WRITE(ah, AR_RC, 0);
  873. if (AR_SREV_9100(ah))
  874. udelay(50);
  875. return true;
  876. }
  877. static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
  878. {
  879. ENABLE_REGWRITE_BUFFER(ah);
  880. REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
  881. AR_RTC_FORCE_WAKE_ON_INT);
  882. if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
  883. REG_WRITE(ah, AR_RC, AR_RC_AHB);
  884. REG_WRITE(ah, AR_RTC_RESET, 0);
  885. REGWRITE_BUFFER_FLUSH(ah);
  886. DISABLE_REGWRITE_BUFFER(ah);
  887. if (!AR_SREV_9300_20_OR_LATER(ah))
  888. udelay(2);
  889. if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
  890. REG_WRITE(ah, AR_RC, 0);
  891. REG_WRITE(ah, AR_RTC_RESET, 1);
  892. if (!ath9k_hw_wait(ah,
  893. AR_RTC_STATUS,
  894. AR_RTC_STATUS_M,
  895. AR_RTC_STATUS_ON,
  896. AH_WAIT_TIMEOUT)) {
  897. ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
  898. "RTC not waking up\n");
  899. return false;
  900. }
  901. ath9k_hw_read_revisions(ah);
  902. return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
  903. }
  904. static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
  905. {
  906. REG_WRITE(ah, AR_RTC_FORCE_WAKE,
  907. AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
  908. switch (type) {
  909. case ATH9K_RESET_POWER_ON:
  910. return ath9k_hw_set_reset_power_on(ah);
  911. case ATH9K_RESET_WARM:
  912. case ATH9K_RESET_COLD:
  913. return ath9k_hw_set_reset(ah, type);
  914. default:
  915. return false;
  916. }
  917. }
  918. static bool ath9k_hw_chip_reset(struct ath_hw *ah,
  919. struct ath9k_channel *chan)
  920. {
  921. if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
  922. if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
  923. return false;
  924. } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
  925. return false;
  926. if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
  927. return false;
  928. ah->chip_fullsleep = false;
  929. ath9k_hw_init_pll(ah, chan);
  930. ath9k_hw_set_rfmode(ah, chan);
  931. return true;
  932. }
  933. static bool ath9k_hw_channel_change(struct ath_hw *ah,
  934. struct ath9k_channel *chan)
  935. {
  936. struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
  937. struct ath_common *common = ath9k_hw_common(ah);
  938. struct ieee80211_channel *channel = chan->chan;
  939. u32 qnum;
  940. int r;
  941. for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
  942. if (ath9k_hw_numtxpending(ah, qnum)) {
  943. ath_print(common, ATH_DBG_QUEUE,
  944. "Transmit frames pending on "
  945. "queue %d\n", qnum);
  946. return false;
  947. }
  948. }
  949. if (!ath9k_hw_rfbus_req(ah)) {
  950. ath_print(common, ATH_DBG_FATAL,
  951. "Could not kill baseband RX\n");
  952. return false;
  953. }
  954. ath9k_hw_set_channel_regs(ah, chan);
  955. r = ath9k_hw_rf_set_freq(ah, chan);
  956. if (r) {
  957. ath_print(common, ATH_DBG_FATAL,
  958. "Failed to set channel\n");
  959. return false;
  960. }
  961. ah->eep_ops->set_txpower(ah, chan,
  962. ath9k_regd_get_ctl(regulatory, chan),
  963. channel->max_antenna_gain * 2,
  964. channel->max_power * 2,
  965. min((u32) MAX_RATE_POWER,
  966. (u32) regulatory->power_limit));
  967. ath9k_hw_rfbus_done(ah);
  968. if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
  969. ath9k_hw_set_delta_slope(ah, chan);
  970. ath9k_hw_spur_mitigate_freq(ah, chan);
  971. if (!chan->oneTimeCalsDone)
  972. chan->oneTimeCalsDone = true;
  973. return true;
  974. }
  975. bool ath9k_hw_check_alive(struct ath_hw *ah)
  976. {
  977. int count = 50;
  978. u32 reg;
  979. if (AR_SREV_9285_10_OR_LATER(ah))
  980. return true;
  981. do {
  982. reg = REG_READ(ah, AR_OBS_BUS_1);
  983. if ((reg & 0x7E7FFFEF) == 0x00702400)
  984. continue;
  985. switch (reg & 0x7E000B00) {
  986. case 0x1E000000:
  987. case 0x52000B00:
  988. case 0x18000B00:
  989. continue;
  990. default:
  991. return true;
  992. }
  993. } while (count-- > 0);
  994. return false;
  995. }
  996. EXPORT_SYMBOL(ath9k_hw_check_alive);
  997. int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
  998. bool bChannelChange)
  999. {
  1000. struct ath_common *common = ath9k_hw_common(ah);
  1001. u32 saveLedState;
  1002. struct ath9k_channel *curchan = ah->curchan;
  1003. u32 saveDefAntenna;
  1004. u32 macStaId1;
  1005. u64 tsf = 0;
  1006. int i, r;
  1007. ah->txchainmask = common->tx_chainmask;
  1008. ah->rxchainmask = common->rx_chainmask;
  1009. if (!ah->chip_fullsleep) {
  1010. ath9k_hw_abortpcurecv(ah);
  1011. if (!ath9k_hw_stopdmarecv(ah))
  1012. ath_print(common, ATH_DBG_XMIT,
  1013. "Failed to stop receive dma\n");
  1014. }
  1015. if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
  1016. return -EIO;
  1017. if (curchan && !ah->chip_fullsleep)
  1018. ath9k_hw_getnf(ah, curchan);
  1019. if (bChannelChange &&
  1020. (ah->chip_fullsleep != true) &&
  1021. (ah->curchan != NULL) &&
  1022. (chan->channel != ah->curchan->channel) &&
  1023. ((chan->channelFlags & CHANNEL_ALL) ==
  1024. (ah->curchan->channelFlags & CHANNEL_ALL)) &&
  1025. !AR_SREV_9280(ah)) {
  1026. if (ath9k_hw_channel_change(ah, chan)) {
  1027. ath9k_hw_loadnf(ah, ah->curchan);
  1028. ath9k_hw_start_nfcal(ah);
  1029. return 0;
  1030. }
  1031. }
  1032. saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
  1033. if (saveDefAntenna == 0)
  1034. saveDefAntenna = 1;
  1035. macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
  1036. /* For chips on which RTC reset is done, save TSF before it gets cleared */
  1037. if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
  1038. tsf = ath9k_hw_gettsf64(ah);
  1039. saveLedState = REG_READ(ah, AR_CFG_LED) &
  1040. (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
  1041. AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
  1042. ath9k_hw_mark_phy_inactive(ah);
  1043. /* Only required on the first reset */
  1044. if (AR_SREV_9271(ah) && ah->htc_reset_init) {
  1045. REG_WRITE(ah,
  1046. AR9271_RESET_POWER_DOWN_CONTROL,
  1047. AR9271_RADIO_RF_RST);
  1048. udelay(50);
  1049. }
  1050. if (!ath9k_hw_chip_reset(ah, chan)) {
  1051. ath_print(common, ATH_DBG_FATAL, "Chip reset failed\n");
  1052. return -EINVAL;
  1053. }
  1054. /* Only required on the first reset */
  1055. if (AR_SREV_9271(ah) && ah->htc_reset_init) {
  1056. ah->htc_reset_init = false;
  1057. REG_WRITE(ah,
  1058. AR9271_RESET_POWER_DOWN_CONTROL,
  1059. AR9271_GATE_MAC_CTL);
  1060. udelay(50);
  1061. }
  1062. /* Restore TSF */
  1063. if (tsf && AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
  1064. ath9k_hw_settsf64(ah, tsf);
  1065. if (AR_SREV_9280_10_OR_LATER(ah))
  1066. REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
  1067. if (!AR_SREV_9300_20_OR_LATER(ah))
  1068. ar9002_hw_enable_async_fifo(ah);
  1069. r = ath9k_hw_process_ini(ah, chan);
  1070. if (r)
  1071. return r;
  1072. /* Setup MFP options for CCMP */
  1073. if (AR_SREV_9280_20_OR_LATER(ah)) {
  1074. /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
  1075. * frames when constructing CCMP AAD. */
  1076. REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
  1077. 0xc7ff);
  1078. ah->sw_mgmt_crypto = false;
  1079. } else if (AR_SREV_9160_10_OR_LATER(ah)) {
  1080. /* Disable hardware crypto for management frames */
  1081. REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
  1082. AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
  1083. REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
  1084. AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
  1085. ah->sw_mgmt_crypto = true;
  1086. } else
  1087. ah->sw_mgmt_crypto = true;
  1088. if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
  1089. ath9k_hw_set_delta_slope(ah, chan);
  1090. ath9k_hw_spur_mitigate_freq(ah, chan);
  1091. ah->eep_ops->set_board_values(ah, chan);
  1092. ath9k_hw_set_operating_mode(ah, ah->opmode);
  1093. ENABLE_REGWRITE_BUFFER(ah);
  1094. REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
  1095. REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
  1096. | macStaId1
  1097. | AR_STA_ID1_RTS_USE_DEF
  1098. | (ah->config.
  1099. ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
  1100. | ah->sta_id1_defaults);
  1101. ath_hw_setbssidmask(common);
  1102. REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
  1103. ath9k_hw_write_associd(ah);
  1104. REG_WRITE(ah, AR_ISR, ~0);
  1105. REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
  1106. REGWRITE_BUFFER_FLUSH(ah);
  1107. DISABLE_REGWRITE_BUFFER(ah);
  1108. r = ath9k_hw_rf_set_freq(ah, chan);
  1109. if (r)
  1110. return r;
  1111. ENABLE_REGWRITE_BUFFER(ah);
  1112. for (i = 0; i < AR_NUM_DCU; i++)
  1113. REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
  1114. REGWRITE_BUFFER_FLUSH(ah);
  1115. DISABLE_REGWRITE_BUFFER(ah);
  1116. ah->intr_txqs = 0;
  1117. for (i = 0; i < ah->caps.total_queues; i++)
  1118. ath9k_hw_resettxqueue(ah, i);
  1119. ath9k_hw_init_interrupt_masks(ah, ah->opmode);
  1120. ath9k_hw_ani_cache_ini_regs(ah);
  1121. ath9k_hw_init_qos(ah);
  1122. if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
  1123. ath9k_enable_rfkill(ah);
  1124. ath9k_hw_init_global_settings(ah);
  1125. if (!AR_SREV_9300_20_OR_LATER(ah)) {
  1126. ar9002_hw_update_async_fifo(ah);
  1127. ar9002_hw_enable_wep_aggregation(ah);
  1128. }
  1129. REG_WRITE(ah, AR_STA_ID1,
  1130. REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
  1131. ath9k_hw_set_dma(ah);
  1132. REG_WRITE(ah, AR_OBS, 8);
  1133. if (ah->config.rx_intr_mitigation) {
  1134. REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
  1135. REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
  1136. }
  1137. if (ah->config.tx_intr_mitigation) {
  1138. REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
  1139. REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
  1140. }
  1141. ath9k_hw_init_bb(ah, chan);
  1142. if (!ath9k_hw_init_cal(ah, chan))
  1143. return -EIO;
  1144. ENABLE_REGWRITE_BUFFER(ah);
  1145. ath9k_hw_restore_chainmask(ah);
  1146. REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
  1147. REGWRITE_BUFFER_FLUSH(ah);
  1148. DISABLE_REGWRITE_BUFFER(ah);
  1149. /*
  1150. * For big endian systems turn on swapping for descriptors
  1151. */
  1152. if (AR_SREV_9100(ah)) {
  1153. u32 mask;
  1154. mask = REG_READ(ah, AR_CFG);
  1155. if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
  1156. ath_print(common, ATH_DBG_RESET,
  1157. "CFG Byte Swap Set 0x%x\n", mask);
  1158. } else {
  1159. mask =
  1160. INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
  1161. REG_WRITE(ah, AR_CFG, mask);
  1162. ath_print(common, ATH_DBG_RESET,
  1163. "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
  1164. }
  1165. } else {
  1166. if (common->bus_ops->ath_bus_type == ATH_USB) {
  1167. /* Configure AR9271 target WLAN */
  1168. if (AR_SREV_9271(ah))
  1169. REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
  1170. else
  1171. REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
  1172. }
  1173. #ifdef __BIG_ENDIAN
  1174. else
  1175. REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
  1176. #endif
  1177. }
  1178. if (ah->btcoex_hw.enabled)
  1179. ath9k_hw_btcoex_enable(ah);
  1180. if (AR_SREV_9300_20_OR_LATER(ah)) {
  1181. ath9k_hw_loadnf(ah, curchan);
  1182. ath9k_hw_start_nfcal(ah);
  1183. ar9003_hw_bb_watchdog_config(ah);
  1184. }
  1185. return 0;
  1186. }
  1187. EXPORT_SYMBOL(ath9k_hw_reset);
  1188. /************************/
  1189. /* Key Cache Management */
  1190. /************************/
  1191. bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
  1192. {
  1193. u32 keyType;
  1194. if (entry >= ah->caps.keycache_size) {
  1195. ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
  1196. "keychache entry %u out of range\n", entry);
  1197. return false;
  1198. }
  1199. keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
  1200. REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
  1201. REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
  1202. REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
  1203. REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
  1204. REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
  1205. REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
  1206. REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
  1207. REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
  1208. if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
  1209. u16 micentry = entry + 64;
  1210. REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
  1211. REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
  1212. REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
  1213. REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
  1214. }
  1215. return true;
  1216. }
  1217. EXPORT_SYMBOL(ath9k_hw_keyreset);
  1218. bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
  1219. {
  1220. u32 macHi, macLo;
  1221. u32 unicast_flag = AR_KEYTABLE_VALID;
  1222. if (entry >= ah->caps.keycache_size) {
  1223. ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
  1224. "keychache entry %u out of range\n", entry);
  1225. return false;
  1226. }
  1227. if (mac != NULL) {
  1228. /*
  1229. * AR_KEYTABLE_VALID indicates that the address is a unicast
  1230. * address, which must match the transmitter address for
  1231. * decrypting frames.
  1232. * Not setting this bit allows the hardware to use the key
  1233. * for multicast frame decryption.
  1234. */
  1235. if (mac[0] & 0x01)
  1236. unicast_flag = 0;
  1237. macHi = (mac[5] << 8) | mac[4];
  1238. macLo = (mac[3] << 24) |
  1239. (mac[2] << 16) |
  1240. (mac[1] << 8) |
  1241. mac[0];
  1242. macLo >>= 1;
  1243. macLo |= (macHi & 1) << 31;
  1244. macHi >>= 1;
  1245. } else {
  1246. macLo = macHi = 0;
  1247. }
  1248. REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
  1249. REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | unicast_flag);
  1250. return true;
  1251. }
  1252. EXPORT_SYMBOL(ath9k_hw_keysetmac);
  1253. bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
  1254. const struct ath9k_keyval *k,
  1255. const u8 *mac)
  1256. {
  1257. const struct ath9k_hw_capabilities *pCap = &ah->caps;
  1258. struct ath_common *common = ath9k_hw_common(ah);
  1259. u32 key0, key1, key2, key3, key4;
  1260. u32 keyType;
  1261. if (entry >= pCap->keycache_size) {
  1262. ath_print(common, ATH_DBG_FATAL,
  1263. "keycache entry %u out of range\n", entry);
  1264. return false;
  1265. }
  1266. switch (k->kv_type) {
  1267. case ATH9K_CIPHER_AES_OCB:
  1268. keyType = AR_KEYTABLE_TYPE_AES;
  1269. break;
  1270. case ATH9K_CIPHER_AES_CCM:
  1271. if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
  1272. ath_print(common, ATH_DBG_ANY,
  1273. "AES-CCM not supported by mac rev 0x%x\n",
  1274. ah->hw_version.macRev);
  1275. return false;
  1276. }
  1277. keyType = AR_KEYTABLE_TYPE_CCM;
  1278. break;
  1279. case ATH9K_CIPHER_TKIP:
  1280. keyType = AR_KEYTABLE_TYPE_TKIP;
  1281. if (ATH9K_IS_MIC_ENABLED(ah)
  1282. && entry + 64 >= pCap->keycache_size) {
  1283. ath_print(common, ATH_DBG_ANY,
  1284. "entry %u inappropriate for TKIP\n", entry);
  1285. return false;
  1286. }
  1287. break;
  1288. case ATH9K_CIPHER_WEP:
  1289. if (k->kv_len < WLAN_KEY_LEN_WEP40) {
  1290. ath_print(common, ATH_DBG_ANY,
  1291. "WEP key length %u too small\n", k->kv_len);
  1292. return false;
  1293. }
  1294. if (k->kv_len <= WLAN_KEY_LEN_WEP40)
  1295. keyType = AR_KEYTABLE_TYPE_40;
  1296. else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
  1297. keyType = AR_KEYTABLE_TYPE_104;
  1298. else
  1299. keyType = AR_KEYTABLE_TYPE_128;
  1300. break;
  1301. case ATH9K_CIPHER_CLR:
  1302. keyType = AR_KEYTABLE_TYPE_CLR;
  1303. break;
  1304. default:
  1305. ath_print(common, ATH_DBG_FATAL,
  1306. "cipher %u not supported\n", k->kv_type);
  1307. return false;
  1308. }
  1309. key0 = get_unaligned_le32(k->kv_val + 0);
  1310. key1 = get_unaligned_le16(k->kv_val + 4);
  1311. key2 = get_unaligned_le32(k->kv_val + 6);
  1312. key3 = get_unaligned_le16(k->kv_val + 10);
  1313. key4 = get_unaligned_le32(k->kv_val + 12);
  1314. if (k->kv_len <= WLAN_KEY_LEN_WEP104)
  1315. key4 &= 0xff;
  1316. /*
  1317. * Note: Key cache registers access special memory area that requires
  1318. * two 32-bit writes to actually update the values in the internal
  1319. * memory. Consequently, the exact order and pairs used here must be
  1320. * maintained.
  1321. */
  1322. if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
  1323. u16 micentry = entry + 64;
  1324. /*
  1325. * Write inverted key[47:0] first to avoid Michael MIC errors
  1326. * on frames that could be sent or received at the same time.
  1327. * The correct key will be written in the end once everything
  1328. * else is ready.
  1329. */
  1330. REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
  1331. REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
  1332. /* Write key[95:48] */
  1333. REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
  1334. REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
  1335. /* Write key[127:96] and key type */
  1336. REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
  1337. REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
  1338. /* Write MAC address for the entry */
  1339. (void) ath9k_hw_keysetmac(ah, entry, mac);
  1340. if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
  1341. /*
  1342. * TKIP uses two key cache entries:
  1343. * Michael MIC TX/RX keys in the same key cache entry
  1344. * (idx = main index + 64):
  1345. * key0 [31:0] = RX key [31:0]
  1346. * key1 [15:0] = TX key [31:16]
  1347. * key1 [31:16] = reserved
  1348. * key2 [31:0] = RX key [63:32]
  1349. * key3 [15:0] = TX key [15:0]
  1350. * key3 [31:16] = reserved
  1351. * key4 [31:0] = TX key [63:32]
  1352. */
  1353. u32 mic0, mic1, mic2, mic3, mic4;
  1354. mic0 = get_unaligned_le32(k->kv_mic + 0);
  1355. mic2 = get_unaligned_le32(k->kv_mic + 4);
  1356. mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
  1357. mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
  1358. mic4 = get_unaligned_le32(k->kv_txmic + 4);
  1359. /* Write RX[31:0] and TX[31:16] */
  1360. REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
  1361. REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
  1362. /* Write RX[63:32] and TX[15:0] */
  1363. REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
  1364. REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
  1365. /* Write TX[63:32] and keyType(reserved) */
  1366. REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
  1367. REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
  1368. AR_KEYTABLE_TYPE_CLR);
  1369. } else {
  1370. /*
  1371. * TKIP uses four key cache entries (two for group
  1372. * keys):
  1373. * Michael MIC TX/RX keys are in different key cache
  1374. * entries (idx = main index + 64 for TX and
  1375. * main index + 32 + 96 for RX):
  1376. * key0 [31:0] = TX/RX MIC key [31:0]
  1377. * key1 [31:0] = reserved
  1378. * key2 [31:0] = TX/RX MIC key [63:32]
  1379. * key3 [31:0] = reserved
  1380. * key4 [31:0] = reserved
  1381. *
  1382. * Upper layer code will call this function separately
  1383. * for TX and RX keys when these registers offsets are
  1384. * used.
  1385. */
  1386. u32 mic0, mic2;
  1387. mic0 = get_unaligned_le32(k->kv_mic + 0);
  1388. mic2 = get_unaligned_le32(k->kv_mic + 4);
  1389. /* Write MIC key[31:0] */
  1390. REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
  1391. REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
  1392. /* Write MIC key[63:32] */
  1393. REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
  1394. REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
  1395. /* Write TX[63:32] and keyType(reserved) */
  1396. REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
  1397. REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
  1398. AR_KEYTABLE_TYPE_CLR);
  1399. }
  1400. /* MAC address registers are reserved for the MIC entry */
  1401. REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
  1402. REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
  1403. /*
  1404. * Write the correct (un-inverted) key[47:0] last to enable
  1405. * TKIP now that all other registers are set with correct
  1406. * values.
  1407. */
  1408. REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
  1409. REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
  1410. } else {
  1411. /* Write key[47:0] */
  1412. REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
  1413. REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
  1414. /* Write key[95:48] */
  1415. REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
  1416. REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
  1417. /* Write key[127:96] and key type */
  1418. REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
  1419. REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
  1420. /* Write MAC address for the entry */
  1421. (void) ath9k_hw_keysetmac(ah, entry, mac);
  1422. }
  1423. return true;
  1424. }
  1425. EXPORT_SYMBOL(ath9k_hw_set_keycache_entry);
  1426. bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
  1427. {
  1428. if (entry < ah->caps.keycache_size) {
  1429. u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
  1430. if (val & AR_KEYTABLE_VALID)
  1431. return true;
  1432. }
  1433. return false;
  1434. }
  1435. EXPORT_SYMBOL(ath9k_hw_keyisvalid);
  1436. /******************************/
  1437. /* Power Management (Chipset) */
  1438. /******************************/
  1439. /*
  1440. * Notify Power Mgt is disabled in self-generated frames.
  1441. * If requested, force chip to sleep.
  1442. */
  1443. static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
  1444. {
  1445. REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
  1446. if (setChip) {
  1447. /*
  1448. * Clear the RTC force wake bit to allow the
  1449. * mac to go to sleep.
  1450. */
  1451. REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
  1452. AR_RTC_FORCE_WAKE_EN);
  1453. if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
  1454. REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
  1455. /* Shutdown chip. Active low */
  1456. if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
  1457. REG_CLR_BIT(ah, (AR_RTC_RESET),
  1458. AR_RTC_RESET_EN);
  1459. }
  1460. }
  1461. /*
  1462. * Notify Power Management is enabled in self-generating
  1463. * frames. If request, set power mode of chip to
  1464. * auto/normal. Duration in units of 128us (1/8 TU).
  1465. */
  1466. static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
  1467. {
  1468. REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
  1469. if (setChip) {
  1470. struct ath9k_hw_capabilities *pCap = &ah->caps;
  1471. if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
  1472. /* Set WakeOnInterrupt bit; clear ForceWake bit */
  1473. REG_WRITE(ah, AR_RTC_FORCE_WAKE,
  1474. AR_RTC_FORCE_WAKE_ON_INT);
  1475. } else {
  1476. /*
  1477. * Clear the RTC force wake bit to allow the
  1478. * mac to go to sleep.
  1479. */
  1480. REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
  1481. AR_RTC_FORCE_WAKE_EN);
  1482. }
  1483. }
  1484. }
  1485. static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
  1486. {
  1487. u32 val;
  1488. int i;
  1489. if (setChip) {
  1490. if ((REG_READ(ah, AR_RTC_STATUS) &
  1491. AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
  1492. if (ath9k_hw_set_reset_reg(ah,
  1493. ATH9K_RESET_POWER_ON) != true) {
  1494. return false;
  1495. }
  1496. if (!AR_SREV_9300_20_OR_LATER(ah))
  1497. ath9k_hw_init_pll(ah, NULL);
  1498. }
  1499. if (AR_SREV_9100(ah))
  1500. REG_SET_BIT(ah, AR_RTC_RESET,
  1501. AR_RTC_RESET_EN);
  1502. REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
  1503. AR_RTC_FORCE_WAKE_EN);
  1504. udelay(50);
  1505. for (i = POWER_UP_TIME / 50; i > 0; i--) {
  1506. val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
  1507. if (val == AR_RTC_STATUS_ON)
  1508. break;
  1509. udelay(50);
  1510. REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
  1511. AR_RTC_FORCE_WAKE_EN);
  1512. }
  1513. if (i == 0) {
  1514. ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
  1515. "Failed to wakeup in %uus\n",
  1516. POWER_UP_TIME / 20);
  1517. return false;
  1518. }
  1519. }
  1520. REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
  1521. return true;
  1522. }
  1523. bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
  1524. {
  1525. struct ath_common *common = ath9k_hw_common(ah);
  1526. int status = true, setChip = true;
  1527. static const char *modes[] = {
  1528. "AWAKE",
  1529. "FULL-SLEEP",
  1530. "NETWORK SLEEP",
  1531. "UNDEFINED"
  1532. };
  1533. if (ah->power_mode == mode)
  1534. return status;
  1535. ath_print(common, ATH_DBG_RESET, "%s -> %s\n",
  1536. modes[ah->power_mode], modes[mode]);
  1537. switch (mode) {
  1538. case ATH9K_PM_AWAKE:
  1539. status = ath9k_hw_set_power_awake(ah, setChip);
  1540. break;
  1541. case ATH9K_PM_FULL_SLEEP:
  1542. ath9k_set_power_sleep(ah, setChip);
  1543. ah->chip_fullsleep = true;
  1544. break;
  1545. case ATH9K_PM_NETWORK_SLEEP:
  1546. ath9k_set_power_network_sleep(ah, setChip);
  1547. break;
  1548. default:
  1549. ath_print(common, ATH_DBG_FATAL,
  1550. "Unknown power mode %u\n", mode);
  1551. return false;
  1552. }
  1553. ah->power_mode = mode;
  1554. return status;
  1555. }
  1556. EXPORT_SYMBOL(ath9k_hw_setpower);
  1557. /*******************/
  1558. /* Beacon Handling */
  1559. /*******************/
  1560. void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
  1561. {
  1562. int flags = 0;
  1563. ah->beacon_interval = beacon_period;
  1564. ENABLE_REGWRITE_BUFFER(ah);
  1565. switch (ah->opmode) {
  1566. case NL80211_IFTYPE_STATION:
  1567. case NL80211_IFTYPE_MONITOR:
  1568. REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
  1569. REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
  1570. REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
  1571. flags |= AR_TBTT_TIMER_EN;
  1572. break;
  1573. case NL80211_IFTYPE_ADHOC:
  1574. case NL80211_IFTYPE_MESH_POINT:
  1575. REG_SET_BIT(ah, AR_TXCFG,
  1576. AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
  1577. REG_WRITE(ah, AR_NEXT_NDP_TIMER,
  1578. TU_TO_USEC(next_beacon +
  1579. (ah->atim_window ? ah->
  1580. atim_window : 1)));
  1581. flags |= AR_NDP_TIMER_EN;
  1582. case NL80211_IFTYPE_AP:
  1583. REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
  1584. REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
  1585. TU_TO_USEC(next_beacon -
  1586. ah->config.
  1587. dma_beacon_response_time));
  1588. REG_WRITE(ah, AR_NEXT_SWBA,
  1589. TU_TO_USEC(next_beacon -
  1590. ah->config.
  1591. sw_beacon_response_time));
  1592. flags |=
  1593. AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
  1594. break;
  1595. default:
  1596. ath_print(ath9k_hw_common(ah), ATH_DBG_BEACON,
  1597. "%s: unsupported opmode: %d\n",
  1598. __func__, ah->opmode);
  1599. return;
  1600. break;
  1601. }
  1602. REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
  1603. REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
  1604. REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
  1605. REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
  1606. REGWRITE_BUFFER_FLUSH(ah);
  1607. DISABLE_REGWRITE_BUFFER(ah);
  1608. beacon_period &= ~ATH9K_BEACON_ENA;
  1609. if (beacon_period & ATH9K_BEACON_RESET_TSF) {
  1610. ath9k_hw_reset_tsf(ah);
  1611. }
  1612. REG_SET_BIT(ah, AR_TIMER_MODE, flags);
  1613. }
  1614. EXPORT_SYMBOL(ath9k_hw_beaconinit);
  1615. void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
  1616. const struct ath9k_beacon_state *bs)
  1617. {
  1618. u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
  1619. struct ath9k_hw_capabilities *pCap = &ah->caps;
  1620. struct ath_common *common = ath9k_hw_common(ah);
  1621. ENABLE_REGWRITE_BUFFER(ah);
  1622. REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
  1623. REG_WRITE(ah, AR_BEACON_PERIOD,
  1624. TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
  1625. REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
  1626. TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
  1627. REGWRITE_BUFFER_FLUSH(ah);
  1628. DISABLE_REGWRITE_BUFFER(ah);
  1629. REG_RMW_FIELD(ah, AR_RSSI_THR,
  1630. AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
  1631. beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
  1632. if (bs->bs_sleepduration > beaconintval)
  1633. beaconintval = bs->bs_sleepduration;
  1634. dtimperiod = bs->bs_dtimperiod;
  1635. if (bs->bs_sleepduration > dtimperiod)
  1636. dtimperiod = bs->bs_sleepduration;
  1637. if (beaconintval == dtimperiod)
  1638. nextTbtt = bs->bs_nextdtim;
  1639. else
  1640. nextTbtt = bs->bs_nexttbtt;
  1641. ath_print(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
  1642. ath_print(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
  1643. ath_print(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
  1644. ath_print(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
  1645. ENABLE_REGWRITE_BUFFER(ah);
  1646. REG_WRITE(ah, AR_NEXT_DTIM,
  1647. TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
  1648. REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
  1649. REG_WRITE(ah, AR_SLEEP1,
  1650. SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
  1651. | AR_SLEEP1_ASSUME_DTIM);
  1652. if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
  1653. beacontimeout = (BEACON_TIMEOUT_VAL << 3);
  1654. else
  1655. beacontimeout = MIN_BEACON_TIMEOUT_VAL;
  1656. REG_WRITE(ah, AR_SLEEP2,
  1657. SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
  1658. REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
  1659. REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
  1660. REGWRITE_BUFFER_FLUSH(ah);
  1661. DISABLE_REGWRITE_BUFFER(ah);
  1662. REG_SET_BIT(ah, AR_TIMER_MODE,
  1663. AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
  1664. AR_DTIM_TIMER_EN);
  1665. /* TSF Out of Range Threshold */
  1666. REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
  1667. }
  1668. EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
  1669. /*******************/
  1670. /* HW Capabilities */
  1671. /*******************/
  1672. int ath9k_hw_fill_cap_info(struct ath_hw *ah)
  1673. {
  1674. struct ath9k_hw_capabilities *pCap = &ah->caps;
  1675. struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
  1676. struct ath_common *common = ath9k_hw_common(ah);
  1677. struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
  1678. u16 capField = 0, eeval;
  1679. eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
  1680. regulatory->current_rd = eeval;
  1681. eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
  1682. if (AR_SREV_9285_10_OR_LATER(ah))
  1683. eeval |= AR9285_RDEXT_DEFAULT;
  1684. regulatory->current_rd_ext = eeval;
  1685. capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
  1686. if (ah->opmode != NL80211_IFTYPE_AP &&
  1687. ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
  1688. if (regulatory->current_rd == 0x64 ||
  1689. regulatory->current_rd == 0x65)
  1690. regulatory->current_rd += 5;
  1691. else if (regulatory->current_rd == 0x41)
  1692. regulatory->current_rd = 0x43;
  1693. ath_print(common, ATH_DBG_REGULATORY,
  1694. "regdomain mapped to 0x%x\n", regulatory->current_rd);
  1695. }
  1696. eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
  1697. if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
  1698. ath_print(common, ATH_DBG_FATAL,
  1699. "no band has been marked as supported in EEPROM.\n");
  1700. return -EINVAL;
  1701. }
  1702. bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
  1703. if (eeval & AR5416_OPFLAGS_11A) {
  1704. set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
  1705. if (ah->config.ht_enable) {
  1706. if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
  1707. set_bit(ATH9K_MODE_11NA_HT20,
  1708. pCap->wireless_modes);
  1709. if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
  1710. set_bit(ATH9K_MODE_11NA_HT40PLUS,
  1711. pCap->wireless_modes);
  1712. set_bit(ATH9K_MODE_11NA_HT40MINUS,
  1713. pCap->wireless_modes);
  1714. }
  1715. }
  1716. }
  1717. if (eeval & AR5416_OPFLAGS_11G) {
  1718. set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
  1719. if (ah->config.ht_enable) {
  1720. if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
  1721. set_bit(ATH9K_MODE_11NG_HT20,
  1722. pCap->wireless_modes);
  1723. if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
  1724. set_bit(ATH9K_MODE_11NG_HT40PLUS,
  1725. pCap->wireless_modes);
  1726. set_bit(ATH9K_MODE_11NG_HT40MINUS,
  1727. pCap->wireless_modes);
  1728. }
  1729. }
  1730. }
  1731. pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
  1732. /*
  1733. * For AR9271 we will temporarilly uses the rx chainmax as read from
  1734. * the EEPROM.
  1735. */
  1736. if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
  1737. !(eeval & AR5416_OPFLAGS_11A) &&
  1738. !(AR_SREV_9271(ah)))
  1739. /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
  1740. pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
  1741. else
  1742. /* Use rx_chainmask from EEPROM. */
  1743. pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
  1744. if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
  1745. ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
  1746. pCap->low_2ghz_chan = 2312;
  1747. pCap->high_2ghz_chan = 2732;
  1748. pCap->low_5ghz_chan = 4920;
  1749. pCap->high_5ghz_chan = 6100;
  1750. pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
  1751. pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
  1752. pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
  1753. pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
  1754. pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
  1755. pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
  1756. if (ah->config.ht_enable)
  1757. pCap->hw_caps |= ATH9K_HW_CAP_HT;
  1758. else
  1759. pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
  1760. pCap->hw_caps |= ATH9K_HW_CAP_GTT;
  1761. pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
  1762. pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
  1763. pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
  1764. if (capField & AR_EEPROM_EEPCAP_MAXQCU)
  1765. pCap->total_queues =
  1766. MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
  1767. else
  1768. pCap->total_queues = ATH9K_NUM_TX_QUEUES;
  1769. if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
  1770. pCap->keycache_size =
  1771. 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
  1772. else
  1773. pCap->keycache_size = AR_KEYTABLE_SIZE;
  1774. pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
  1775. if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
  1776. pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
  1777. else
  1778. pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
  1779. if (AR_SREV_9271(ah))
  1780. pCap->num_gpio_pins = AR9271_NUM_GPIO;
  1781. else if (AR_SREV_9285_10_OR_LATER(ah))
  1782. pCap->num_gpio_pins = AR9285_NUM_GPIO;
  1783. else if (AR_SREV_9280_10_OR_LATER(ah))
  1784. pCap->num_gpio_pins = AR928X_NUM_GPIO;
  1785. else
  1786. pCap->num_gpio_pins = AR_NUM_GPIO;
  1787. if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
  1788. pCap->hw_caps |= ATH9K_HW_CAP_CST;
  1789. pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
  1790. } else {
  1791. pCap->rts_aggr_limit = (8 * 1024);
  1792. }
  1793. pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
  1794. #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
  1795. ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
  1796. if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
  1797. ah->rfkill_gpio =
  1798. MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
  1799. ah->rfkill_polarity =
  1800. MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
  1801. pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
  1802. }
  1803. #endif
  1804. if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
  1805. pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
  1806. else
  1807. pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
  1808. if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
  1809. pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
  1810. else
  1811. pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
  1812. if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
  1813. pCap->reg_cap =
  1814. AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
  1815. AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
  1816. AR_EEPROM_EEREGCAP_EN_KK_U2 |
  1817. AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
  1818. } else {
  1819. pCap->reg_cap =
  1820. AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
  1821. AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
  1822. }
  1823. /* Advertise midband for AR5416 with FCC midband set in eeprom */
  1824. if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
  1825. AR_SREV_5416(ah))
  1826. pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
  1827. pCap->num_antcfg_5ghz =
  1828. ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
  1829. pCap->num_antcfg_2ghz =
  1830. ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
  1831. if (AR_SREV_9280_10_OR_LATER(ah) &&
  1832. ath9k_hw_btcoex_supported(ah)) {
  1833. btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
  1834. btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
  1835. if (AR_SREV_9285(ah)) {
  1836. btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
  1837. btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
  1838. } else {
  1839. btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
  1840. }
  1841. } else {
  1842. btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
  1843. }
  1844. if (AR_SREV_9300_20_OR_LATER(ah)) {
  1845. pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_LDPC |
  1846. ATH9K_HW_CAP_FASTCLOCK;
  1847. pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
  1848. pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
  1849. pCap->rx_status_len = sizeof(struct ar9003_rxs);
  1850. pCap->tx_desc_len = sizeof(struct ar9003_txc);
  1851. pCap->txs_len = sizeof(struct ar9003_txs);
  1852. } else {
  1853. pCap->tx_desc_len = sizeof(struct ath_desc);
  1854. if (AR_SREV_9280_20(ah) &&
  1855. ((ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) <=
  1856. AR5416_EEP_MINOR_VER_16) ||
  1857. ah->eep_ops->get_eeprom(ah, EEP_FSTCLK_5G)))
  1858. pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
  1859. }
  1860. if (AR_SREV_9300_20_OR_LATER(ah))
  1861. pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
  1862. if (AR_SREV_9287_10_OR_LATER(ah) || AR_SREV_9271(ah))
  1863. pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
  1864. return 0;
  1865. }
  1866. bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
  1867. u32 capability, u32 *result)
  1868. {
  1869. struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
  1870. switch (type) {
  1871. case ATH9K_CAP_CIPHER:
  1872. switch (capability) {
  1873. case ATH9K_CIPHER_AES_CCM:
  1874. case ATH9K_CIPHER_AES_OCB:
  1875. case ATH9K_CIPHER_TKIP:
  1876. case ATH9K_CIPHER_WEP:
  1877. case ATH9K_CIPHER_MIC:
  1878. case ATH9K_CIPHER_CLR:
  1879. return true;
  1880. default:
  1881. return false;
  1882. }
  1883. case ATH9K_CAP_TKIP_MIC:
  1884. switch (capability) {
  1885. case 0:
  1886. return true;
  1887. case 1:
  1888. return (ah->sta_id1_defaults &
  1889. AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
  1890. false;
  1891. }
  1892. case ATH9K_CAP_TKIP_SPLIT:
  1893. return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
  1894. false : true;
  1895. case ATH9K_CAP_MCAST_KEYSRCH:
  1896. switch (capability) {
  1897. case 0:
  1898. return true;
  1899. case 1:
  1900. if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
  1901. return false;
  1902. } else {
  1903. return (ah->sta_id1_defaults &
  1904. AR_STA_ID1_MCAST_KSRCH) ? true :
  1905. false;
  1906. }
  1907. }
  1908. return false;
  1909. case ATH9K_CAP_TXPOW:
  1910. switch (capability) {
  1911. case 0:
  1912. return 0;
  1913. case 1:
  1914. *result = regulatory->power_limit;
  1915. return 0;
  1916. case 2:
  1917. *result = regulatory->max_power_level;
  1918. return 0;
  1919. case 3:
  1920. *result = regulatory->tp_scale;
  1921. return 0;
  1922. }
  1923. return false;
  1924. case ATH9K_CAP_DS:
  1925. return (AR_SREV_9280_20_OR_LATER(ah) &&
  1926. (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
  1927. ? false : true;
  1928. default:
  1929. return false;
  1930. }
  1931. }
  1932. EXPORT_SYMBOL(ath9k_hw_getcapability);
  1933. bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
  1934. u32 capability, u32 setting, int *status)
  1935. {
  1936. switch (type) {
  1937. case ATH9K_CAP_TKIP_MIC:
  1938. if (setting)
  1939. ah->sta_id1_defaults |=
  1940. AR_STA_ID1_CRPT_MIC_ENABLE;
  1941. else
  1942. ah->sta_id1_defaults &=
  1943. ~AR_STA_ID1_CRPT_MIC_ENABLE;
  1944. return true;
  1945. case ATH9K_CAP_MCAST_KEYSRCH:
  1946. if (setting)
  1947. ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
  1948. else
  1949. ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
  1950. return true;
  1951. default:
  1952. return false;
  1953. }
  1954. }
  1955. EXPORT_SYMBOL(ath9k_hw_setcapability);
  1956. /****************************/
  1957. /* GPIO / RFKILL / Antennae */
  1958. /****************************/
  1959. static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
  1960. u32 gpio, u32 type)
  1961. {
  1962. int addr;
  1963. u32 gpio_shift, tmp;
  1964. if (gpio > 11)
  1965. addr = AR_GPIO_OUTPUT_MUX3;
  1966. else if (gpio > 5)
  1967. addr = AR_GPIO_OUTPUT_MUX2;
  1968. else
  1969. addr = AR_GPIO_OUTPUT_MUX1;
  1970. gpio_shift = (gpio % 6) * 5;
  1971. if (AR_SREV_9280_20_OR_LATER(ah)
  1972. || (addr != AR_GPIO_OUTPUT_MUX1)) {
  1973. REG_RMW(ah, addr, (type << gpio_shift),
  1974. (0x1f << gpio_shift));
  1975. } else {
  1976. tmp = REG_READ(ah, addr);
  1977. tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
  1978. tmp &= ~(0x1f << gpio_shift);
  1979. tmp |= (type << gpio_shift);
  1980. REG_WRITE(ah, addr, tmp);
  1981. }
  1982. }
  1983. void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
  1984. {
  1985. u32 gpio_shift;
  1986. BUG_ON(gpio >= ah->caps.num_gpio_pins);
  1987. gpio_shift = gpio << 1;
  1988. REG_RMW(ah,
  1989. AR_GPIO_OE_OUT,
  1990. (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
  1991. (AR_GPIO_OE_OUT_DRV << gpio_shift));
  1992. }
  1993. EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
  1994. u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
  1995. {
  1996. #define MS_REG_READ(x, y) \
  1997. (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
  1998. if (gpio >= ah->caps.num_gpio_pins)
  1999. return 0xffffffff;
  2000. if (AR_SREV_9300_20_OR_LATER(ah))
  2001. return MS_REG_READ(AR9300, gpio) != 0;
  2002. else if (AR_SREV_9271(ah))
  2003. return MS_REG_READ(AR9271, gpio) != 0;
  2004. else if (AR_SREV_9287_10_OR_LATER(ah))
  2005. return MS_REG_READ(AR9287, gpio) != 0;
  2006. else if (AR_SREV_9285_10_OR_LATER(ah))
  2007. return MS_REG_READ(AR9285, gpio) != 0;
  2008. else if (AR_SREV_9280_10_OR_LATER(ah))
  2009. return MS_REG_READ(AR928X, gpio) != 0;
  2010. else
  2011. return MS_REG_READ(AR, gpio) != 0;
  2012. }
  2013. EXPORT_SYMBOL(ath9k_hw_gpio_get);
  2014. void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
  2015. u32 ah_signal_type)
  2016. {
  2017. u32 gpio_shift;
  2018. ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
  2019. gpio_shift = 2 * gpio;
  2020. REG_RMW(ah,
  2021. AR_GPIO_OE_OUT,
  2022. (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
  2023. (AR_GPIO_OE_OUT_DRV << gpio_shift));
  2024. }
  2025. EXPORT_SYMBOL(ath9k_hw_cfg_output);
  2026. void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
  2027. {
  2028. if (AR_SREV_9271(ah))
  2029. val = ~val;
  2030. REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
  2031. AR_GPIO_BIT(gpio));
  2032. }
  2033. EXPORT_SYMBOL(ath9k_hw_set_gpio);
  2034. u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
  2035. {
  2036. return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
  2037. }
  2038. EXPORT_SYMBOL(ath9k_hw_getdefantenna);
  2039. void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
  2040. {
  2041. REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
  2042. }
  2043. EXPORT_SYMBOL(ath9k_hw_setantenna);
  2044. /*********************/
  2045. /* General Operation */
  2046. /*********************/
  2047. u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
  2048. {
  2049. u32 bits = REG_READ(ah, AR_RX_FILTER);
  2050. u32 phybits = REG_READ(ah, AR_PHY_ERR);
  2051. if (phybits & AR_PHY_ERR_RADAR)
  2052. bits |= ATH9K_RX_FILTER_PHYRADAR;
  2053. if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
  2054. bits |= ATH9K_RX_FILTER_PHYERR;
  2055. return bits;
  2056. }
  2057. EXPORT_SYMBOL(ath9k_hw_getrxfilter);
  2058. void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
  2059. {
  2060. u32 phybits;
  2061. ENABLE_REGWRITE_BUFFER(ah);
  2062. REG_WRITE(ah, AR_RX_FILTER, bits);
  2063. phybits = 0;
  2064. if (bits & ATH9K_RX_FILTER_PHYRADAR)
  2065. phybits |= AR_PHY_ERR_RADAR;
  2066. if (bits & ATH9K_RX_FILTER_PHYERR)
  2067. phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
  2068. REG_WRITE(ah, AR_PHY_ERR, phybits);
  2069. if (phybits)
  2070. REG_WRITE(ah, AR_RXCFG,
  2071. REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
  2072. else
  2073. REG_WRITE(ah, AR_RXCFG,
  2074. REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
  2075. REGWRITE_BUFFER_FLUSH(ah);
  2076. DISABLE_REGWRITE_BUFFER(ah);
  2077. }
  2078. EXPORT_SYMBOL(ath9k_hw_setrxfilter);
  2079. bool ath9k_hw_phy_disable(struct ath_hw *ah)
  2080. {
  2081. if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
  2082. return false;
  2083. ath9k_hw_init_pll(ah, NULL);
  2084. return true;
  2085. }
  2086. EXPORT_SYMBOL(ath9k_hw_phy_disable);
  2087. bool ath9k_hw_disable(struct ath_hw *ah)
  2088. {
  2089. if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
  2090. return false;
  2091. if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
  2092. return false;
  2093. ath9k_hw_init_pll(ah, NULL);
  2094. return true;
  2095. }
  2096. EXPORT_SYMBOL(ath9k_hw_disable);
  2097. void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
  2098. {
  2099. struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
  2100. struct ath9k_channel *chan = ah->curchan;
  2101. struct ieee80211_channel *channel = chan->chan;
  2102. regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
  2103. ah->eep_ops->set_txpower(ah, chan,
  2104. ath9k_regd_get_ctl(regulatory, chan),
  2105. channel->max_antenna_gain * 2,
  2106. channel->max_power * 2,
  2107. min((u32) MAX_RATE_POWER,
  2108. (u32) regulatory->power_limit));
  2109. }
  2110. EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
  2111. void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
  2112. {
  2113. memcpy(ath9k_hw_common(ah)->macaddr, mac, ETH_ALEN);
  2114. }
  2115. EXPORT_SYMBOL(ath9k_hw_setmac);
  2116. void ath9k_hw_setopmode(struct ath_hw *ah)
  2117. {
  2118. ath9k_hw_set_operating_mode(ah, ah->opmode);
  2119. }
  2120. EXPORT_SYMBOL(ath9k_hw_setopmode);
  2121. void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
  2122. {
  2123. REG_WRITE(ah, AR_MCAST_FIL0, filter0);
  2124. REG_WRITE(ah, AR_MCAST_FIL1, filter1);
  2125. }
  2126. EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
  2127. void ath9k_hw_write_associd(struct ath_hw *ah)
  2128. {
  2129. struct ath_common *common = ath9k_hw_common(ah);
  2130. REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
  2131. REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
  2132. ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
  2133. }
  2134. EXPORT_SYMBOL(ath9k_hw_write_associd);
  2135. #define ATH9K_MAX_TSF_READ 10
  2136. u64 ath9k_hw_gettsf64(struct ath_hw *ah)
  2137. {
  2138. u32 tsf_lower, tsf_upper1, tsf_upper2;
  2139. int i;
  2140. tsf_upper1 = REG_READ(ah, AR_TSF_U32);
  2141. for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
  2142. tsf_lower = REG_READ(ah, AR_TSF_L32);
  2143. tsf_upper2 = REG_READ(ah, AR_TSF_U32);
  2144. if (tsf_upper2 == tsf_upper1)
  2145. break;
  2146. tsf_upper1 = tsf_upper2;
  2147. }
  2148. WARN_ON( i == ATH9K_MAX_TSF_READ );
  2149. return (((u64)tsf_upper1 << 32) | tsf_lower);
  2150. }
  2151. EXPORT_SYMBOL(ath9k_hw_gettsf64);
  2152. void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
  2153. {
  2154. REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
  2155. REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
  2156. }
  2157. EXPORT_SYMBOL(ath9k_hw_settsf64);
  2158. void ath9k_hw_reset_tsf(struct ath_hw *ah)
  2159. {
  2160. if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
  2161. AH_TSF_WRITE_TIMEOUT))
  2162. ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
  2163. "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
  2164. REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
  2165. }
  2166. EXPORT_SYMBOL(ath9k_hw_reset_tsf);
  2167. void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
  2168. {
  2169. if (setting)
  2170. ah->misc_mode |= AR_PCU_TX_ADD_TSF;
  2171. else
  2172. ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
  2173. }
  2174. EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
  2175. /*
  2176. * Extend 15-bit time stamp from rx descriptor to
  2177. * a full 64-bit TSF using the current h/w TSF.
  2178. */
  2179. u64 ath9k_hw_extend_tsf(struct ath_hw *ah, u32 rstamp)
  2180. {
  2181. u64 tsf;
  2182. tsf = ath9k_hw_gettsf64(ah);
  2183. if ((tsf & 0x7fff) < rstamp)
  2184. tsf -= 0x8000;
  2185. return (tsf & ~0x7fff) | rstamp;
  2186. }
  2187. EXPORT_SYMBOL(ath9k_hw_extend_tsf);
  2188. void ath9k_hw_set11nmac2040(struct ath_hw *ah)
  2189. {
  2190. struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
  2191. u32 macmode;
  2192. if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
  2193. macmode = AR_2040_JOINED_RX_CLEAR;
  2194. else
  2195. macmode = 0;
  2196. REG_WRITE(ah, AR_2040_MODE, macmode);
  2197. }
  2198. /* HW Generic timers configuration */
  2199. static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
  2200. {
  2201. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  2202. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  2203. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  2204. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  2205. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  2206. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  2207. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  2208. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  2209. {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
  2210. {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
  2211. AR_NDP2_TIMER_MODE, 0x0002},
  2212. {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
  2213. AR_NDP2_TIMER_MODE, 0x0004},
  2214. {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
  2215. AR_NDP2_TIMER_MODE, 0x0008},
  2216. {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
  2217. AR_NDP2_TIMER_MODE, 0x0010},
  2218. {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
  2219. AR_NDP2_TIMER_MODE, 0x0020},
  2220. {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
  2221. AR_NDP2_TIMER_MODE, 0x0040},
  2222. {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
  2223. AR_NDP2_TIMER_MODE, 0x0080}
  2224. };
  2225. /* HW generic timer primitives */
  2226. /* compute and clear index of rightmost 1 */
  2227. static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
  2228. {
  2229. u32 b;
  2230. b = *mask;
  2231. b &= (0-b);
  2232. *mask &= ~b;
  2233. b *= debruijn32;
  2234. b >>= 27;
  2235. return timer_table->gen_timer_index[b];
  2236. }
  2237. u32 ath9k_hw_gettsf32(struct ath_hw *ah)
  2238. {
  2239. return REG_READ(ah, AR_TSF_L32);
  2240. }
  2241. EXPORT_SYMBOL(ath9k_hw_gettsf32);
  2242. struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
  2243. void (*trigger)(void *),
  2244. void (*overflow)(void *),
  2245. void *arg,
  2246. u8 timer_index)
  2247. {
  2248. struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
  2249. struct ath_gen_timer *timer;
  2250. timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
  2251. if (timer == NULL) {
  2252. ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
  2253. "Failed to allocate memory"
  2254. "for hw timer[%d]\n", timer_index);
  2255. return NULL;
  2256. }
  2257. /* allocate a hardware generic timer slot */
  2258. timer_table->timers[timer_index] = timer;
  2259. timer->index = timer_index;
  2260. timer->trigger = trigger;
  2261. timer->overflow = overflow;
  2262. timer->arg = arg;
  2263. return timer;
  2264. }
  2265. EXPORT_SYMBOL(ath_gen_timer_alloc);
  2266. void ath9k_hw_gen_timer_start(struct ath_hw *ah,
  2267. struct ath_gen_timer *timer,
  2268. u32 timer_next,
  2269. u32 timer_period)
  2270. {
  2271. struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
  2272. u32 tsf;
  2273. BUG_ON(!timer_period);
  2274. set_bit(timer->index, &timer_table->timer_mask.timer_bits);
  2275. tsf = ath9k_hw_gettsf32(ah);
  2276. ath_print(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
  2277. "curent tsf %x period %x"
  2278. "timer_next %x\n", tsf, timer_period, timer_next);
  2279. /*
  2280. * Pull timer_next forward if the current TSF already passed it
  2281. * because of software latency
  2282. */
  2283. if (timer_next < tsf)
  2284. timer_next = tsf + timer_period;
  2285. /*
  2286. * Program generic timer registers
  2287. */
  2288. REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
  2289. timer_next);
  2290. REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
  2291. timer_period);
  2292. REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
  2293. gen_tmr_configuration[timer->index].mode_mask);
  2294. /* Enable both trigger and thresh interrupt masks */
  2295. REG_SET_BIT(ah, AR_IMR_S5,
  2296. (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
  2297. SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
  2298. }
  2299. EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
  2300. void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
  2301. {
  2302. struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
  2303. if ((timer->index < AR_FIRST_NDP_TIMER) ||
  2304. (timer->index >= ATH_MAX_GEN_TIMER)) {
  2305. return;
  2306. }
  2307. /* Clear generic timer enable bits. */
  2308. REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
  2309. gen_tmr_configuration[timer->index].mode_mask);
  2310. /* Disable both trigger and thresh interrupt masks */
  2311. REG_CLR_BIT(ah, AR_IMR_S5,
  2312. (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
  2313. SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
  2314. clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
  2315. }
  2316. EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
  2317. void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
  2318. {
  2319. struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
  2320. /* free the hardware generic timer slot */
  2321. timer_table->timers[timer->index] = NULL;
  2322. kfree(timer);
  2323. }
  2324. EXPORT_SYMBOL(ath_gen_timer_free);
  2325. /*
  2326. * Generic Timer Interrupts handling
  2327. */
  2328. void ath_gen_timer_isr(struct ath_hw *ah)
  2329. {
  2330. struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
  2331. struct ath_gen_timer *timer;
  2332. struct ath_common *common = ath9k_hw_common(ah);
  2333. u32 trigger_mask, thresh_mask, index;
  2334. /* get hardware generic timer interrupt status */
  2335. trigger_mask = ah->intr_gen_timer_trigger;
  2336. thresh_mask = ah->intr_gen_timer_thresh;
  2337. trigger_mask &= timer_table->timer_mask.val;
  2338. thresh_mask &= timer_table->timer_mask.val;
  2339. trigger_mask &= ~thresh_mask;
  2340. while (thresh_mask) {
  2341. index = rightmost_index(timer_table, &thresh_mask);
  2342. timer = timer_table->timers[index];
  2343. BUG_ON(!timer);
  2344. ath_print(common, ATH_DBG_HWTIMER,
  2345. "TSF overflow for Gen timer %d\n", index);
  2346. timer->overflow(timer->arg);
  2347. }
  2348. while (trigger_mask) {
  2349. index = rightmost_index(timer_table, &trigger_mask);
  2350. timer = timer_table->timers[index];
  2351. BUG_ON(!timer);
  2352. ath_print(common, ATH_DBG_HWTIMER,
  2353. "Gen timer[%d] trigger\n", index);
  2354. timer->trigger(timer->arg);
  2355. }
  2356. }
  2357. EXPORT_SYMBOL(ath_gen_timer_isr);
  2358. /********/
  2359. /* HTC */
  2360. /********/
  2361. void ath9k_hw_htc_resetinit(struct ath_hw *ah)
  2362. {
  2363. ah->htc_reset_init = true;
  2364. }
  2365. EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
  2366. static struct {
  2367. u32 version;
  2368. const char * name;
  2369. } ath_mac_bb_names[] = {
  2370. /* Devices with external radios */
  2371. { AR_SREV_VERSION_5416_PCI, "5416" },
  2372. { AR_SREV_VERSION_5416_PCIE, "5418" },
  2373. { AR_SREV_VERSION_9100, "9100" },
  2374. { AR_SREV_VERSION_9160, "9160" },
  2375. /* Single-chip solutions */
  2376. { AR_SREV_VERSION_9280, "9280" },
  2377. { AR_SREV_VERSION_9285, "9285" },
  2378. { AR_SREV_VERSION_9287, "9287" },
  2379. { AR_SREV_VERSION_9271, "9271" },
  2380. { AR_SREV_VERSION_9300, "9300" },
  2381. };
  2382. /* For devices with external radios */
  2383. static struct {
  2384. u16 version;
  2385. const char * name;
  2386. } ath_rf_names[] = {
  2387. { 0, "5133" },
  2388. { AR_RAD5133_SREV_MAJOR, "5133" },
  2389. { AR_RAD5122_SREV_MAJOR, "5122" },
  2390. { AR_RAD2133_SREV_MAJOR, "2133" },
  2391. { AR_RAD2122_SREV_MAJOR, "2122" }
  2392. };
  2393. /*
  2394. * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
  2395. */
  2396. static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
  2397. {
  2398. int i;
  2399. for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
  2400. if (ath_mac_bb_names[i].version == mac_bb_version) {
  2401. return ath_mac_bb_names[i].name;
  2402. }
  2403. }
  2404. return "????";
  2405. }
  2406. /*
  2407. * Return the RF name. "????" is returned if the RF is unknown.
  2408. * Used for devices with external radios.
  2409. */
  2410. static const char *ath9k_hw_rf_name(u16 rf_version)
  2411. {
  2412. int i;
  2413. for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
  2414. if (ath_rf_names[i].version == rf_version) {
  2415. return ath_rf_names[i].name;
  2416. }
  2417. }
  2418. return "????";
  2419. }
  2420. void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
  2421. {
  2422. int used;
  2423. /* chipsets >= AR9280 are single-chip */
  2424. if (AR_SREV_9280_10_OR_LATER(ah)) {
  2425. used = snprintf(hw_name, len,
  2426. "Atheros AR%s Rev:%x",
  2427. ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
  2428. ah->hw_version.macRev);
  2429. }
  2430. else {
  2431. used = snprintf(hw_name, len,
  2432. "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
  2433. ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
  2434. ah->hw_version.macRev,
  2435. ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
  2436. AR_RADIO_SREV_MAJOR)),
  2437. ah->hw_version.phyRev);
  2438. }
  2439. hw_name[used] = '\0';
  2440. }
  2441. EXPORT_SYMBOL(ath9k_hw_name);