hw.c 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577
  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. }
  251. /* This should work for all families including legacy */
  252. static bool ath9k_hw_chip_test(struct ath_hw *ah)
  253. {
  254. struct ath_common *common = ath9k_hw_common(ah);
  255. u32 regAddr[2] = { AR_STA_ID0 };
  256. u32 regHold[2];
  257. u32 patternData[4] = { 0x55555555,
  258. 0xaaaaaaaa,
  259. 0x66666666,
  260. 0x99999999 };
  261. int i, j, loop_max;
  262. if (!AR_SREV_9300_20_OR_LATER(ah)) {
  263. loop_max = 2;
  264. regAddr[1] = AR_PHY_BASE + (8 << 2);
  265. } else
  266. loop_max = 1;
  267. for (i = 0; i < loop_max; i++) {
  268. u32 addr = regAddr[i];
  269. u32 wrData, rdData;
  270. regHold[i] = REG_READ(ah, addr);
  271. for (j = 0; j < 0x100; j++) {
  272. wrData = (j << 16) | j;
  273. REG_WRITE(ah, addr, wrData);
  274. rdData = REG_READ(ah, addr);
  275. if (rdData != wrData) {
  276. ath_print(common, ATH_DBG_FATAL,
  277. "address test failed "
  278. "addr: 0x%08x - wr:0x%08x != "
  279. "rd:0x%08x\n",
  280. addr, wrData, rdData);
  281. return false;
  282. }
  283. }
  284. for (j = 0; j < 4; j++) {
  285. wrData = patternData[j];
  286. REG_WRITE(ah, addr, wrData);
  287. rdData = REG_READ(ah, addr);
  288. if (wrData != rdData) {
  289. ath_print(common, ATH_DBG_FATAL,
  290. "address test failed "
  291. "addr: 0x%08x - wr:0x%08x != "
  292. "rd:0x%08x\n",
  293. addr, wrData, rdData);
  294. return false;
  295. }
  296. }
  297. REG_WRITE(ah, regAddr[i], regHold[i]);
  298. }
  299. udelay(100);
  300. return true;
  301. }
  302. static void ath9k_hw_init_config(struct ath_hw *ah)
  303. {
  304. int i;
  305. ah->config.dma_beacon_response_time = 2;
  306. ah->config.sw_beacon_response_time = 10;
  307. ah->config.additional_swba_backoff = 0;
  308. ah->config.ack_6mb = 0x0;
  309. ah->config.cwm_ignore_extcca = 0;
  310. ah->config.pcie_powersave_enable = 0;
  311. ah->config.pcie_clock_req = 0;
  312. ah->config.pcie_waen = 0;
  313. ah->config.analog_shiftreg = 1;
  314. ah->config.enable_ani = true;
  315. for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
  316. ah->config.spurchans[i][0] = AR_NO_SPUR;
  317. ah->config.spurchans[i][1] = AR_NO_SPUR;
  318. }
  319. if (ah->hw_version.devid != AR2427_DEVID_PCIE)
  320. ah->config.ht_enable = 1;
  321. else
  322. ah->config.ht_enable = 0;
  323. ah->config.rx_intr_mitigation = true;
  324. ah->config.pcieSerDesWrite = true;
  325. /*
  326. * We need this for PCI devices only (Cardbus, PCI, miniPCI)
  327. * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
  328. * This means we use it for all AR5416 devices, and the few
  329. * minor PCI AR9280 devices out there.
  330. *
  331. * Serialization is required because these devices do not handle
  332. * well the case of two concurrent reads/writes due to the latency
  333. * involved. During one read/write another read/write can be issued
  334. * on another CPU while the previous read/write may still be working
  335. * on our hardware, if we hit this case the hardware poops in a loop.
  336. * We prevent this by serializing reads and writes.
  337. *
  338. * This issue is not present on PCI-Express devices or pre-AR5416
  339. * devices (legacy, 802.11abg).
  340. */
  341. if (num_possible_cpus() > 1)
  342. ah->config.serialize_regmode = SER_REG_MODE_AUTO;
  343. }
  344. static void ath9k_hw_init_defaults(struct ath_hw *ah)
  345. {
  346. struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
  347. regulatory->country_code = CTRY_DEFAULT;
  348. regulatory->power_limit = MAX_RATE_POWER;
  349. regulatory->tp_scale = ATH9K_TP_SCALE_MAX;
  350. ah->hw_version.magic = AR5416_MAGIC;
  351. ah->hw_version.subvendorid = 0;
  352. ah->ah_flags = 0;
  353. if (!AR_SREV_9100(ah))
  354. ah->ah_flags = AH_USE_EEPROM;
  355. ah->atim_window = 0;
  356. ah->sta_id1_defaults =
  357. AR_STA_ID1_CRPT_MIC_ENABLE |
  358. AR_STA_ID1_MCAST_KSRCH;
  359. ah->beacon_interval = 100;
  360. ah->enable_32kHz_clock = DONT_USE_32KHZ;
  361. ah->slottime = (u32) -1;
  362. ah->globaltxtimeout = (u32) -1;
  363. ah->power_mode = ATH9K_PM_UNDEFINED;
  364. }
  365. static int ath9k_hw_init_macaddr(struct ath_hw *ah)
  366. {
  367. struct ath_common *common = ath9k_hw_common(ah);
  368. u32 sum;
  369. int i;
  370. u16 eeval;
  371. u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
  372. sum = 0;
  373. for (i = 0; i < 3; i++) {
  374. eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
  375. sum += eeval;
  376. common->macaddr[2 * i] = eeval >> 8;
  377. common->macaddr[2 * i + 1] = eeval & 0xff;
  378. }
  379. if (sum == 0 || sum == 0xffff * 3)
  380. return -EADDRNOTAVAIL;
  381. return 0;
  382. }
  383. static int ath9k_hw_post_init(struct ath_hw *ah)
  384. {
  385. int ecode;
  386. if (!AR_SREV_9271(ah)) {
  387. if (!ath9k_hw_chip_test(ah))
  388. return -ENODEV;
  389. }
  390. if (!AR_SREV_9300_20_OR_LATER(ah)) {
  391. ecode = ar9002_hw_rf_claim(ah);
  392. if (ecode != 0)
  393. return ecode;
  394. }
  395. ecode = ath9k_hw_eeprom_init(ah);
  396. if (ecode != 0)
  397. return ecode;
  398. ath_print(ath9k_hw_common(ah), ATH_DBG_CONFIG,
  399. "Eeprom VER: %d, REV: %d\n",
  400. ah->eep_ops->get_eeprom_ver(ah),
  401. ah->eep_ops->get_eeprom_rev(ah));
  402. ecode = ath9k_hw_rf_alloc_ext_banks(ah);
  403. if (ecode) {
  404. ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
  405. "Failed allocating banks for "
  406. "external radio\n");
  407. return ecode;
  408. }
  409. if (!AR_SREV_9100(ah)) {
  410. ath9k_hw_ani_setup(ah);
  411. ath9k_hw_ani_init(ah);
  412. }
  413. return 0;
  414. }
  415. static void ath9k_hw_attach_ops(struct ath_hw *ah)
  416. {
  417. if (AR_SREV_9300_20_OR_LATER(ah))
  418. ar9003_hw_attach_ops(ah);
  419. else
  420. ar9002_hw_attach_ops(ah);
  421. }
  422. /* Called for all hardware families */
  423. static int __ath9k_hw_init(struct ath_hw *ah)
  424. {
  425. struct ath_common *common = ath9k_hw_common(ah);
  426. int r = 0;
  427. if (ah->hw_version.devid == AR5416_AR9100_DEVID)
  428. ah->hw_version.macVersion = AR_SREV_VERSION_9100;
  429. if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
  430. ath_print(common, ATH_DBG_FATAL,
  431. "Couldn't reset chip\n");
  432. return -EIO;
  433. }
  434. ath9k_hw_init_defaults(ah);
  435. ath9k_hw_init_config(ah);
  436. ath9k_hw_attach_ops(ah);
  437. if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
  438. ath_print(common, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
  439. return -EIO;
  440. }
  441. if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
  442. if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
  443. ((AR_SREV_9160(ah) || AR_SREV_9280(ah)) &&
  444. !ah->is_pciexpress)) {
  445. ah->config.serialize_regmode =
  446. SER_REG_MODE_ON;
  447. } else {
  448. ah->config.serialize_regmode =
  449. SER_REG_MODE_OFF;
  450. }
  451. }
  452. ath_print(common, ATH_DBG_RESET, "serialize_regmode is %d\n",
  453. ah->config.serialize_regmode);
  454. if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
  455. ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
  456. else
  457. ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
  458. if (!ath9k_hw_macversion_supported(ah)) {
  459. ath_print(common, ATH_DBG_FATAL,
  460. "Mac Chip Rev 0x%02x.%x is not supported by "
  461. "this driver\n", ah->hw_version.macVersion,
  462. ah->hw_version.macRev);
  463. return -EOPNOTSUPP;
  464. }
  465. if (AR_SREV_9271(ah) || AR_SREV_9100(ah))
  466. ah->is_pciexpress = false;
  467. ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
  468. ath9k_hw_init_cal_settings(ah);
  469. ah->ani_function = ATH9K_ANI_ALL;
  470. if (AR_SREV_9280_20_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
  471. ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
  472. if (!AR_SREV_9300_20_OR_LATER(ah))
  473. ah->ani_function &= ~ATH9K_ANI_MRC_CCK;
  474. ath9k_hw_init_mode_regs(ah);
  475. /*
  476. * Read back AR_WA into a permanent copy and set bits 14 and 17.
  477. * We need to do this to avoid RMW of this register. We cannot
  478. * read the reg when chip is asleep.
  479. */
  480. ah->WARegVal = REG_READ(ah, AR_WA);
  481. ah->WARegVal |= (AR_WA_D3_L1_DISABLE |
  482. AR_WA_ASPM_TIMER_BASED_DISABLE);
  483. if (ah->is_pciexpress)
  484. ath9k_hw_configpcipowersave(ah, 0, 0);
  485. else
  486. ath9k_hw_disablepcie(ah);
  487. if (!AR_SREV_9300_20_OR_LATER(ah))
  488. ar9002_hw_cck_chan14_spread(ah);
  489. r = ath9k_hw_post_init(ah);
  490. if (r)
  491. return r;
  492. ath9k_hw_init_mode_gain_regs(ah);
  493. r = ath9k_hw_fill_cap_info(ah);
  494. if (r)
  495. return r;
  496. r = ath9k_hw_init_macaddr(ah);
  497. if (r) {
  498. ath_print(common, ATH_DBG_FATAL,
  499. "Failed to initialize MAC address\n");
  500. return r;
  501. }
  502. if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
  503. ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
  504. else
  505. ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
  506. ah->bb_watchdog_timeout_ms = 25;
  507. common->state = ATH_HW_INITIALIZED;
  508. return 0;
  509. }
  510. int ath9k_hw_init(struct ath_hw *ah)
  511. {
  512. int ret;
  513. struct ath_common *common = ath9k_hw_common(ah);
  514. /* These are all the AR5008/AR9001/AR9002 hardware family of chipsets */
  515. switch (ah->hw_version.devid) {
  516. case AR5416_DEVID_PCI:
  517. case AR5416_DEVID_PCIE:
  518. case AR5416_AR9100_DEVID:
  519. case AR9160_DEVID_PCI:
  520. case AR9280_DEVID_PCI:
  521. case AR9280_DEVID_PCIE:
  522. case AR9285_DEVID_PCIE:
  523. case AR9287_DEVID_PCI:
  524. case AR9287_DEVID_PCIE:
  525. case AR2427_DEVID_PCIE:
  526. case AR9300_DEVID_PCIE:
  527. break;
  528. default:
  529. if (common->bus_ops->ath_bus_type == ATH_USB)
  530. break;
  531. ath_print(common, ATH_DBG_FATAL,
  532. "Hardware device ID 0x%04x not supported\n",
  533. ah->hw_version.devid);
  534. return -EOPNOTSUPP;
  535. }
  536. ret = __ath9k_hw_init(ah);
  537. if (ret) {
  538. ath_print(common, ATH_DBG_FATAL,
  539. "Unable to initialize hardware; "
  540. "initialization status: %d\n", ret);
  541. return ret;
  542. }
  543. return 0;
  544. }
  545. EXPORT_SYMBOL(ath9k_hw_init);
  546. static void ath9k_hw_init_qos(struct ath_hw *ah)
  547. {
  548. ENABLE_REGWRITE_BUFFER(ah);
  549. REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
  550. REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
  551. REG_WRITE(ah, AR_QOS_NO_ACK,
  552. SM(2, AR_QOS_NO_ACK_TWO_BIT) |
  553. SM(5, AR_QOS_NO_ACK_BIT_OFF) |
  554. SM(0, AR_QOS_NO_ACK_BYTE_OFF));
  555. REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
  556. REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
  557. REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
  558. REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
  559. REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
  560. REGWRITE_BUFFER_FLUSH(ah);
  561. }
  562. static void ath9k_hw_init_pll(struct ath_hw *ah,
  563. struct ath9k_channel *chan)
  564. {
  565. u32 pll = ath9k_hw_compute_pll_control(ah, chan);
  566. REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
  567. /* Switch the core clock for ar9271 to 117Mhz */
  568. if (AR_SREV_9271(ah)) {
  569. udelay(500);
  570. REG_WRITE(ah, 0x50040, 0x304);
  571. }
  572. udelay(RTC_PLL_SETTLE_DELAY);
  573. REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
  574. }
  575. static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
  576. enum nl80211_iftype opmode)
  577. {
  578. u32 imr_reg = AR_IMR_TXERR |
  579. AR_IMR_TXURN |
  580. AR_IMR_RXERR |
  581. AR_IMR_RXORN |
  582. AR_IMR_BCNMISC;
  583. if (AR_SREV_9300_20_OR_LATER(ah)) {
  584. imr_reg |= AR_IMR_RXOK_HP;
  585. if (ah->config.rx_intr_mitigation)
  586. imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
  587. else
  588. imr_reg |= AR_IMR_RXOK_LP;
  589. } else {
  590. if (ah->config.rx_intr_mitigation)
  591. imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
  592. else
  593. imr_reg |= AR_IMR_RXOK;
  594. }
  595. if (ah->config.tx_intr_mitigation)
  596. imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
  597. else
  598. imr_reg |= AR_IMR_TXOK;
  599. if (opmode == NL80211_IFTYPE_AP)
  600. imr_reg |= AR_IMR_MIB;
  601. ENABLE_REGWRITE_BUFFER(ah);
  602. REG_WRITE(ah, AR_IMR, imr_reg);
  603. ah->imrs2_reg |= AR_IMR_S2_GTT;
  604. REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
  605. if (!AR_SREV_9100(ah)) {
  606. REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
  607. REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
  608. REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
  609. }
  610. REGWRITE_BUFFER_FLUSH(ah);
  611. if (AR_SREV_9300_20_OR_LATER(ah)) {
  612. REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
  613. REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
  614. REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
  615. REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
  616. }
  617. }
  618. static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
  619. {
  620. u32 val = ath9k_hw_mac_to_clks(ah, us);
  621. val = min(val, (u32) 0xFFFF);
  622. REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
  623. }
  624. static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
  625. {
  626. u32 val = ath9k_hw_mac_to_clks(ah, us);
  627. val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
  628. REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
  629. }
  630. static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
  631. {
  632. u32 val = ath9k_hw_mac_to_clks(ah, us);
  633. val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
  634. REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
  635. }
  636. static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
  637. {
  638. if (tu > 0xFFFF) {
  639. ath_print(ath9k_hw_common(ah), ATH_DBG_XMIT,
  640. "bad global tx timeout %u\n", tu);
  641. ah->globaltxtimeout = (u32) -1;
  642. return false;
  643. } else {
  644. REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
  645. ah->globaltxtimeout = tu;
  646. return true;
  647. }
  648. }
  649. void ath9k_hw_init_global_settings(struct ath_hw *ah)
  650. {
  651. struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
  652. int acktimeout;
  653. int slottime;
  654. int sifstime;
  655. ath_print(ath9k_hw_common(ah), ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
  656. ah->misc_mode);
  657. if (ah->misc_mode != 0)
  658. REG_WRITE(ah, AR_PCU_MISC,
  659. REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
  660. if (conf->channel && conf->channel->band == IEEE80211_BAND_5GHZ)
  661. sifstime = 16;
  662. else
  663. sifstime = 10;
  664. /* As defined by IEEE 802.11-2007 17.3.8.6 */
  665. slottime = ah->slottime + 3 * ah->coverage_class;
  666. acktimeout = slottime + sifstime;
  667. /*
  668. * Workaround for early ACK timeouts, add an offset to match the
  669. * initval's 64us ack timeout value.
  670. * This was initially only meant to work around an issue with delayed
  671. * BA frames in some implementations, but it has been found to fix ACK
  672. * timeout issues in other cases as well.
  673. */
  674. if (conf->channel && conf->channel->band == IEEE80211_BAND_2GHZ)
  675. acktimeout += 64 - sifstime - ah->slottime;
  676. ath9k_hw_setslottime(ah, slottime);
  677. ath9k_hw_set_ack_timeout(ah, acktimeout);
  678. ath9k_hw_set_cts_timeout(ah, acktimeout);
  679. if (ah->globaltxtimeout != (u32) -1)
  680. ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
  681. }
  682. EXPORT_SYMBOL(ath9k_hw_init_global_settings);
  683. void ath9k_hw_deinit(struct ath_hw *ah)
  684. {
  685. struct ath_common *common = ath9k_hw_common(ah);
  686. if (common->state < ATH_HW_INITIALIZED)
  687. goto free_hw;
  688. ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
  689. free_hw:
  690. ath9k_hw_rf_free_ext_banks(ah);
  691. }
  692. EXPORT_SYMBOL(ath9k_hw_deinit);
  693. /*******/
  694. /* INI */
  695. /*******/
  696. u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
  697. {
  698. u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
  699. if (IS_CHAN_B(chan))
  700. ctl |= CTL_11B;
  701. else if (IS_CHAN_G(chan))
  702. ctl |= CTL_11G;
  703. else
  704. ctl |= CTL_11A;
  705. return ctl;
  706. }
  707. /****************************************/
  708. /* Reset and Channel Switching Routines */
  709. /****************************************/
  710. static inline void ath9k_hw_set_dma(struct ath_hw *ah)
  711. {
  712. struct ath_common *common = ath9k_hw_common(ah);
  713. u32 regval;
  714. ENABLE_REGWRITE_BUFFER(ah);
  715. /*
  716. * set AHB_MODE not to do cacheline prefetches
  717. */
  718. if (!AR_SREV_9300_20_OR_LATER(ah)) {
  719. regval = REG_READ(ah, AR_AHB_MODE);
  720. REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
  721. }
  722. /*
  723. * let mac dma reads be in 128 byte chunks
  724. */
  725. regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
  726. REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
  727. REGWRITE_BUFFER_FLUSH(ah);
  728. /*
  729. * Restore TX Trigger Level to its pre-reset value.
  730. * The initial value depends on whether aggregation is enabled, and is
  731. * adjusted whenever underruns are detected.
  732. */
  733. if (!AR_SREV_9300_20_OR_LATER(ah))
  734. REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
  735. ENABLE_REGWRITE_BUFFER(ah);
  736. /*
  737. * let mac dma writes be in 128 byte chunks
  738. */
  739. regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
  740. REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
  741. /*
  742. * Setup receive FIFO threshold to hold off TX activities
  743. */
  744. REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
  745. if (AR_SREV_9300_20_OR_LATER(ah)) {
  746. REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
  747. REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
  748. ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
  749. ah->caps.rx_status_len);
  750. }
  751. /*
  752. * reduce the number of usable entries in PCU TXBUF to avoid
  753. * wrap around issues.
  754. */
  755. if (AR_SREV_9285(ah)) {
  756. /* For AR9285 the number of Fifos are reduced to half.
  757. * So set the usable tx buf size also to half to
  758. * avoid data/delimiter underruns
  759. */
  760. REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
  761. AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
  762. } else if (!AR_SREV_9271(ah)) {
  763. REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
  764. AR_PCU_TXBUF_CTRL_USABLE_SIZE);
  765. }
  766. REGWRITE_BUFFER_FLUSH(ah);
  767. if (AR_SREV_9300_20_OR_LATER(ah))
  768. ath9k_hw_reset_txstatus_ring(ah);
  769. }
  770. static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
  771. {
  772. u32 val;
  773. val = REG_READ(ah, AR_STA_ID1);
  774. val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
  775. switch (opmode) {
  776. case NL80211_IFTYPE_AP:
  777. REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
  778. | AR_STA_ID1_KSRCH_MODE);
  779. REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
  780. break;
  781. case NL80211_IFTYPE_ADHOC:
  782. case NL80211_IFTYPE_MESH_POINT:
  783. REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
  784. | AR_STA_ID1_KSRCH_MODE);
  785. REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
  786. break;
  787. case NL80211_IFTYPE_STATION:
  788. case NL80211_IFTYPE_MONITOR:
  789. REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
  790. break;
  791. }
  792. }
  793. void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
  794. u32 *coef_mantissa, u32 *coef_exponent)
  795. {
  796. u32 coef_exp, coef_man;
  797. for (coef_exp = 31; coef_exp > 0; coef_exp--)
  798. if ((coef_scaled >> coef_exp) & 0x1)
  799. break;
  800. coef_exp = 14 - (coef_exp - COEF_SCALE_S);
  801. coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
  802. *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
  803. *coef_exponent = coef_exp - 16;
  804. }
  805. static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
  806. {
  807. u32 rst_flags;
  808. u32 tmpReg;
  809. if (AR_SREV_9100(ah)) {
  810. u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
  811. val &= ~AR_RTC_DERIVED_CLK_PERIOD;
  812. val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
  813. REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
  814. (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
  815. }
  816. ENABLE_REGWRITE_BUFFER(ah);
  817. if (AR_SREV_9300_20_OR_LATER(ah)) {
  818. REG_WRITE(ah, AR_WA, ah->WARegVal);
  819. udelay(10);
  820. }
  821. REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
  822. AR_RTC_FORCE_WAKE_ON_INT);
  823. if (AR_SREV_9100(ah)) {
  824. rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
  825. AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
  826. } else {
  827. tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
  828. if (tmpReg &
  829. (AR_INTR_SYNC_LOCAL_TIMEOUT |
  830. AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
  831. u32 val;
  832. REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
  833. val = AR_RC_HOSTIF;
  834. if (!AR_SREV_9300_20_OR_LATER(ah))
  835. val |= AR_RC_AHB;
  836. REG_WRITE(ah, AR_RC, val);
  837. } else if (!AR_SREV_9300_20_OR_LATER(ah))
  838. REG_WRITE(ah, AR_RC, AR_RC_AHB);
  839. rst_flags = AR_RTC_RC_MAC_WARM;
  840. if (type == ATH9K_RESET_COLD)
  841. rst_flags |= AR_RTC_RC_MAC_COLD;
  842. }
  843. REG_WRITE(ah, AR_RTC_RC, rst_flags);
  844. REGWRITE_BUFFER_FLUSH(ah);
  845. udelay(50);
  846. REG_WRITE(ah, AR_RTC_RC, 0);
  847. if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
  848. ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
  849. "RTC stuck in MAC reset\n");
  850. return false;
  851. }
  852. if (!AR_SREV_9100(ah))
  853. REG_WRITE(ah, AR_RC, 0);
  854. if (AR_SREV_9100(ah))
  855. udelay(50);
  856. return true;
  857. }
  858. static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
  859. {
  860. ENABLE_REGWRITE_BUFFER(ah);
  861. if (AR_SREV_9300_20_OR_LATER(ah)) {
  862. REG_WRITE(ah, AR_WA, ah->WARegVal);
  863. udelay(10);
  864. }
  865. REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
  866. AR_RTC_FORCE_WAKE_ON_INT);
  867. if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
  868. REG_WRITE(ah, AR_RC, AR_RC_AHB);
  869. REG_WRITE(ah, AR_RTC_RESET, 0);
  870. udelay(2);
  871. REGWRITE_BUFFER_FLUSH(ah);
  872. if (!AR_SREV_9300_20_OR_LATER(ah))
  873. udelay(2);
  874. if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
  875. REG_WRITE(ah, AR_RC, 0);
  876. REG_WRITE(ah, AR_RTC_RESET, 1);
  877. if (!ath9k_hw_wait(ah,
  878. AR_RTC_STATUS,
  879. AR_RTC_STATUS_M,
  880. AR_RTC_STATUS_ON,
  881. AH_WAIT_TIMEOUT)) {
  882. ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
  883. "RTC not waking up\n");
  884. return false;
  885. }
  886. ath9k_hw_read_revisions(ah);
  887. return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
  888. }
  889. static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
  890. {
  891. if (AR_SREV_9300_20_OR_LATER(ah)) {
  892. REG_WRITE(ah, AR_WA, ah->WARegVal);
  893. udelay(10);
  894. }
  895. REG_WRITE(ah, AR_RTC_FORCE_WAKE,
  896. AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
  897. switch (type) {
  898. case ATH9K_RESET_POWER_ON:
  899. return ath9k_hw_set_reset_power_on(ah);
  900. case ATH9K_RESET_WARM:
  901. case ATH9K_RESET_COLD:
  902. return ath9k_hw_set_reset(ah, type);
  903. default:
  904. return false;
  905. }
  906. }
  907. static bool ath9k_hw_chip_reset(struct ath_hw *ah,
  908. struct ath9k_channel *chan)
  909. {
  910. if (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)) {
  911. if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
  912. return false;
  913. } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
  914. return false;
  915. if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
  916. return false;
  917. ah->chip_fullsleep = false;
  918. ath9k_hw_init_pll(ah, chan);
  919. ath9k_hw_set_rfmode(ah, chan);
  920. return true;
  921. }
  922. static bool ath9k_hw_channel_change(struct ath_hw *ah,
  923. struct ath9k_channel *chan)
  924. {
  925. struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
  926. struct ath_common *common = ath9k_hw_common(ah);
  927. struct ieee80211_channel *channel = chan->chan;
  928. u32 qnum;
  929. int r;
  930. for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
  931. if (ath9k_hw_numtxpending(ah, qnum)) {
  932. ath_print(common, ATH_DBG_QUEUE,
  933. "Transmit frames pending on "
  934. "queue %d\n", qnum);
  935. return false;
  936. }
  937. }
  938. if (!ath9k_hw_rfbus_req(ah)) {
  939. ath_print(common, ATH_DBG_FATAL,
  940. "Could not kill baseband RX\n");
  941. return false;
  942. }
  943. ath9k_hw_set_channel_regs(ah, chan);
  944. r = ath9k_hw_rf_set_freq(ah, chan);
  945. if (r) {
  946. ath_print(common, ATH_DBG_FATAL,
  947. "Failed to set channel\n");
  948. return false;
  949. }
  950. ah->eep_ops->set_txpower(ah, chan,
  951. ath9k_regd_get_ctl(regulatory, chan),
  952. channel->max_antenna_gain * 2,
  953. channel->max_power * 2,
  954. min((u32) MAX_RATE_POWER,
  955. (u32) regulatory->power_limit));
  956. ath9k_hw_rfbus_done(ah);
  957. if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
  958. ath9k_hw_set_delta_slope(ah, chan);
  959. ath9k_hw_spur_mitigate_freq(ah, chan);
  960. return true;
  961. }
  962. bool ath9k_hw_check_alive(struct ath_hw *ah)
  963. {
  964. int count = 50;
  965. u32 reg;
  966. if (AR_SREV_9285_12_OR_LATER(ah))
  967. return true;
  968. do {
  969. reg = REG_READ(ah, AR_OBS_BUS_1);
  970. if ((reg & 0x7E7FFFEF) == 0x00702400)
  971. continue;
  972. switch (reg & 0x7E000B00) {
  973. case 0x1E000000:
  974. case 0x52000B00:
  975. case 0x18000B00:
  976. continue;
  977. default:
  978. return true;
  979. }
  980. } while (count-- > 0);
  981. return false;
  982. }
  983. EXPORT_SYMBOL(ath9k_hw_check_alive);
  984. int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
  985. struct ath9k_hw_cal_data *caldata, bool bChannelChange)
  986. {
  987. struct ath_common *common = ath9k_hw_common(ah);
  988. u32 saveLedState;
  989. struct ath9k_channel *curchan = ah->curchan;
  990. u32 saveDefAntenna;
  991. u32 macStaId1;
  992. u64 tsf = 0;
  993. int i, r;
  994. ah->txchainmask = common->tx_chainmask;
  995. ah->rxchainmask = common->rx_chainmask;
  996. if (!ah->chip_fullsleep) {
  997. ath9k_hw_abortpcurecv(ah);
  998. if (!ath9k_hw_stopdmarecv(ah)) {
  999. ath_print(common, ATH_DBG_XMIT,
  1000. "Failed to stop receive dma\n");
  1001. bChannelChange = false;
  1002. }
  1003. }
  1004. if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
  1005. return -EIO;
  1006. if (curchan && !ah->chip_fullsleep)
  1007. ath9k_hw_getnf(ah, curchan);
  1008. ah->caldata = caldata;
  1009. if (caldata &&
  1010. (chan->channel != caldata->channel ||
  1011. (chan->channelFlags & ~CHANNEL_CW_INT) !=
  1012. (caldata->channelFlags & ~CHANNEL_CW_INT))) {
  1013. /* Operating channel changed, reset channel calibration data */
  1014. memset(caldata, 0, sizeof(*caldata));
  1015. ath9k_init_nfcal_hist_buffer(ah, chan);
  1016. }
  1017. if (bChannelChange &&
  1018. (ah->chip_fullsleep != true) &&
  1019. (ah->curchan != NULL) &&
  1020. (chan->channel != ah->curchan->channel) &&
  1021. ((chan->channelFlags & CHANNEL_ALL) ==
  1022. (ah->curchan->channelFlags & CHANNEL_ALL)) &&
  1023. (!AR_SREV_9280(ah) || AR_DEVID_7010(ah))) {
  1024. if (ath9k_hw_channel_change(ah, chan)) {
  1025. ath9k_hw_loadnf(ah, ah->curchan);
  1026. ath9k_hw_start_nfcal(ah, true);
  1027. if (AR_SREV_9271(ah))
  1028. ar9002_hw_load_ani_reg(ah, chan);
  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_9100(ah) ||
  1038. (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)))
  1039. tsf = ath9k_hw_gettsf64(ah);
  1040. saveLedState = REG_READ(ah, AR_CFG_LED) &
  1041. (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
  1042. AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
  1043. ath9k_hw_mark_phy_inactive(ah);
  1044. /* Only required on the first reset */
  1045. if (AR_SREV_9271(ah) && ah->htc_reset_init) {
  1046. REG_WRITE(ah,
  1047. AR9271_RESET_POWER_DOWN_CONTROL,
  1048. AR9271_RADIO_RF_RST);
  1049. udelay(50);
  1050. }
  1051. if (!ath9k_hw_chip_reset(ah, chan)) {
  1052. ath_print(common, ATH_DBG_FATAL, "Chip reset failed\n");
  1053. return -EINVAL;
  1054. }
  1055. /* Only required on the first reset */
  1056. if (AR_SREV_9271(ah) && ah->htc_reset_init) {
  1057. ah->htc_reset_init = false;
  1058. REG_WRITE(ah,
  1059. AR9271_RESET_POWER_DOWN_CONTROL,
  1060. AR9271_GATE_MAC_CTL);
  1061. udelay(50);
  1062. }
  1063. /* Restore TSF */
  1064. if (tsf)
  1065. ath9k_hw_settsf64(ah, tsf);
  1066. if (AR_SREV_9280_20_OR_LATER(ah))
  1067. REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
  1068. if (!AR_SREV_9300_20_OR_LATER(ah))
  1069. ar9002_hw_enable_async_fifo(ah);
  1070. r = ath9k_hw_process_ini(ah, chan);
  1071. if (r)
  1072. return r;
  1073. /*
  1074. * Some AR91xx SoC devices frequently fail to accept TSF writes
  1075. * right after the chip reset. When that happens, write a new
  1076. * value after the initvals have been applied, with an offset
  1077. * based on measured time difference
  1078. */
  1079. if (AR_SREV_9100(ah) && (ath9k_hw_gettsf64(ah) < tsf)) {
  1080. tsf += 1500;
  1081. ath9k_hw_settsf64(ah, tsf);
  1082. }
  1083. /* Setup MFP options for CCMP */
  1084. if (AR_SREV_9280_20_OR_LATER(ah)) {
  1085. /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
  1086. * frames when constructing CCMP AAD. */
  1087. REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
  1088. 0xc7ff);
  1089. ah->sw_mgmt_crypto = false;
  1090. } else if (AR_SREV_9160_10_OR_LATER(ah)) {
  1091. /* Disable hardware crypto for management frames */
  1092. REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
  1093. AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
  1094. REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
  1095. AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
  1096. ah->sw_mgmt_crypto = true;
  1097. } else
  1098. ah->sw_mgmt_crypto = true;
  1099. if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
  1100. ath9k_hw_set_delta_slope(ah, chan);
  1101. ath9k_hw_spur_mitigate_freq(ah, chan);
  1102. ah->eep_ops->set_board_values(ah, chan);
  1103. ath9k_hw_set_operating_mode(ah, ah->opmode);
  1104. ENABLE_REGWRITE_BUFFER(ah);
  1105. REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
  1106. REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
  1107. | macStaId1
  1108. | AR_STA_ID1_RTS_USE_DEF
  1109. | (ah->config.
  1110. ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
  1111. | ah->sta_id1_defaults);
  1112. ath_hw_setbssidmask(common);
  1113. REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
  1114. ath9k_hw_write_associd(ah);
  1115. REG_WRITE(ah, AR_ISR, ~0);
  1116. REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
  1117. REGWRITE_BUFFER_FLUSH(ah);
  1118. r = ath9k_hw_rf_set_freq(ah, chan);
  1119. if (r)
  1120. return r;
  1121. ENABLE_REGWRITE_BUFFER(ah);
  1122. for (i = 0; i < AR_NUM_DCU; i++)
  1123. REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
  1124. REGWRITE_BUFFER_FLUSH(ah);
  1125. ah->intr_txqs = 0;
  1126. for (i = 0; i < ah->caps.total_queues; i++)
  1127. ath9k_hw_resettxqueue(ah, i);
  1128. ath9k_hw_init_interrupt_masks(ah, ah->opmode);
  1129. ath9k_hw_ani_cache_ini_regs(ah);
  1130. ath9k_hw_init_qos(ah);
  1131. if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
  1132. ath9k_enable_rfkill(ah);
  1133. ath9k_hw_init_global_settings(ah);
  1134. if (!AR_SREV_9300_20_OR_LATER(ah)) {
  1135. ar9002_hw_update_async_fifo(ah);
  1136. ar9002_hw_enable_wep_aggregation(ah);
  1137. }
  1138. REG_WRITE(ah, AR_STA_ID1,
  1139. REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
  1140. ath9k_hw_set_dma(ah);
  1141. REG_WRITE(ah, AR_OBS, 8);
  1142. if (ah->config.rx_intr_mitigation) {
  1143. REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
  1144. REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
  1145. }
  1146. if (ah->config.tx_intr_mitigation) {
  1147. REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
  1148. REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
  1149. }
  1150. ath9k_hw_init_bb(ah, chan);
  1151. if (!ath9k_hw_init_cal(ah, chan))
  1152. return -EIO;
  1153. ENABLE_REGWRITE_BUFFER(ah);
  1154. ath9k_hw_restore_chainmask(ah);
  1155. REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
  1156. REGWRITE_BUFFER_FLUSH(ah);
  1157. /*
  1158. * For big endian systems turn on swapping for descriptors
  1159. */
  1160. if (AR_SREV_9100(ah)) {
  1161. u32 mask;
  1162. mask = REG_READ(ah, AR_CFG);
  1163. if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
  1164. ath_print(common, ATH_DBG_RESET,
  1165. "CFG Byte Swap Set 0x%x\n", mask);
  1166. } else {
  1167. mask =
  1168. INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
  1169. REG_WRITE(ah, AR_CFG, mask);
  1170. ath_print(common, ATH_DBG_RESET,
  1171. "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
  1172. }
  1173. } else {
  1174. if (common->bus_ops->ath_bus_type == ATH_USB) {
  1175. /* Configure AR9271 target WLAN */
  1176. if (AR_SREV_9271(ah))
  1177. REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
  1178. else
  1179. REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
  1180. }
  1181. #ifdef __BIG_ENDIAN
  1182. else
  1183. REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
  1184. #endif
  1185. }
  1186. if (ah->btcoex_hw.enabled)
  1187. ath9k_hw_btcoex_enable(ah);
  1188. if (AR_SREV_9300_20_OR_LATER(ah))
  1189. ar9003_hw_bb_watchdog_config(ah);
  1190. return 0;
  1191. }
  1192. EXPORT_SYMBOL(ath9k_hw_reset);
  1193. /******************************/
  1194. /* Power Management (Chipset) */
  1195. /******************************/
  1196. /*
  1197. * Notify Power Mgt is disabled in self-generated frames.
  1198. * If requested, force chip to sleep.
  1199. */
  1200. static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
  1201. {
  1202. REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
  1203. if (setChip) {
  1204. /*
  1205. * Clear the RTC force wake bit to allow the
  1206. * mac to go to sleep.
  1207. */
  1208. REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
  1209. AR_RTC_FORCE_WAKE_EN);
  1210. if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
  1211. REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
  1212. /* Shutdown chip. Active low */
  1213. if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah))
  1214. REG_CLR_BIT(ah, (AR_RTC_RESET),
  1215. AR_RTC_RESET_EN);
  1216. }
  1217. /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
  1218. if (AR_SREV_9300_20_OR_LATER(ah))
  1219. REG_WRITE(ah, AR_WA,
  1220. ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
  1221. }
  1222. /*
  1223. * Notify Power Management is enabled in self-generating
  1224. * frames. If request, set power mode of chip to
  1225. * auto/normal. Duration in units of 128us (1/8 TU).
  1226. */
  1227. static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
  1228. {
  1229. REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
  1230. if (setChip) {
  1231. struct ath9k_hw_capabilities *pCap = &ah->caps;
  1232. if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
  1233. /* Set WakeOnInterrupt bit; clear ForceWake bit */
  1234. REG_WRITE(ah, AR_RTC_FORCE_WAKE,
  1235. AR_RTC_FORCE_WAKE_ON_INT);
  1236. } else {
  1237. /*
  1238. * Clear the RTC force wake bit to allow the
  1239. * mac to go to sleep.
  1240. */
  1241. REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
  1242. AR_RTC_FORCE_WAKE_EN);
  1243. }
  1244. }
  1245. /* Clear Bit 14 of AR_WA after putting chip into Net Sleep mode. */
  1246. if (AR_SREV_9300_20_OR_LATER(ah))
  1247. REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
  1248. }
  1249. static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
  1250. {
  1251. u32 val;
  1252. int i;
  1253. /* Set Bits 14 and 17 of AR_WA before powering on the chip. */
  1254. if (AR_SREV_9300_20_OR_LATER(ah)) {
  1255. REG_WRITE(ah, AR_WA, ah->WARegVal);
  1256. udelay(10);
  1257. }
  1258. if (setChip) {
  1259. if ((REG_READ(ah, AR_RTC_STATUS) &
  1260. AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
  1261. if (ath9k_hw_set_reset_reg(ah,
  1262. ATH9K_RESET_POWER_ON) != true) {
  1263. return false;
  1264. }
  1265. if (!AR_SREV_9300_20_OR_LATER(ah))
  1266. ath9k_hw_init_pll(ah, NULL);
  1267. }
  1268. if (AR_SREV_9100(ah))
  1269. REG_SET_BIT(ah, AR_RTC_RESET,
  1270. AR_RTC_RESET_EN);
  1271. REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
  1272. AR_RTC_FORCE_WAKE_EN);
  1273. udelay(50);
  1274. for (i = POWER_UP_TIME / 50; i > 0; i--) {
  1275. val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
  1276. if (val == AR_RTC_STATUS_ON)
  1277. break;
  1278. udelay(50);
  1279. REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
  1280. AR_RTC_FORCE_WAKE_EN);
  1281. }
  1282. if (i == 0) {
  1283. ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
  1284. "Failed to wakeup in %uus\n",
  1285. POWER_UP_TIME / 20);
  1286. return false;
  1287. }
  1288. }
  1289. REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
  1290. return true;
  1291. }
  1292. bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
  1293. {
  1294. struct ath_common *common = ath9k_hw_common(ah);
  1295. int status = true, setChip = true;
  1296. static const char *modes[] = {
  1297. "AWAKE",
  1298. "FULL-SLEEP",
  1299. "NETWORK SLEEP",
  1300. "UNDEFINED"
  1301. };
  1302. if (ah->power_mode == mode)
  1303. return status;
  1304. ath_print(common, ATH_DBG_RESET, "%s -> %s\n",
  1305. modes[ah->power_mode], modes[mode]);
  1306. switch (mode) {
  1307. case ATH9K_PM_AWAKE:
  1308. status = ath9k_hw_set_power_awake(ah, setChip);
  1309. break;
  1310. case ATH9K_PM_FULL_SLEEP:
  1311. ath9k_set_power_sleep(ah, setChip);
  1312. ah->chip_fullsleep = true;
  1313. break;
  1314. case ATH9K_PM_NETWORK_SLEEP:
  1315. ath9k_set_power_network_sleep(ah, setChip);
  1316. break;
  1317. default:
  1318. ath_print(common, ATH_DBG_FATAL,
  1319. "Unknown power mode %u\n", mode);
  1320. return false;
  1321. }
  1322. ah->power_mode = mode;
  1323. return status;
  1324. }
  1325. EXPORT_SYMBOL(ath9k_hw_setpower);
  1326. /*******************/
  1327. /* Beacon Handling */
  1328. /*******************/
  1329. void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
  1330. {
  1331. int flags = 0;
  1332. ah->beacon_interval = beacon_period;
  1333. ENABLE_REGWRITE_BUFFER(ah);
  1334. switch (ah->opmode) {
  1335. case NL80211_IFTYPE_STATION:
  1336. case NL80211_IFTYPE_MONITOR:
  1337. REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
  1338. REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
  1339. REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
  1340. flags |= AR_TBTT_TIMER_EN;
  1341. break;
  1342. case NL80211_IFTYPE_ADHOC:
  1343. case NL80211_IFTYPE_MESH_POINT:
  1344. REG_SET_BIT(ah, AR_TXCFG,
  1345. AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
  1346. REG_WRITE(ah, AR_NEXT_NDP_TIMER,
  1347. TU_TO_USEC(next_beacon +
  1348. (ah->atim_window ? ah->
  1349. atim_window : 1)));
  1350. flags |= AR_NDP_TIMER_EN;
  1351. case NL80211_IFTYPE_AP:
  1352. REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
  1353. REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
  1354. TU_TO_USEC(next_beacon -
  1355. ah->config.
  1356. dma_beacon_response_time));
  1357. REG_WRITE(ah, AR_NEXT_SWBA,
  1358. TU_TO_USEC(next_beacon -
  1359. ah->config.
  1360. sw_beacon_response_time));
  1361. flags |=
  1362. AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
  1363. break;
  1364. default:
  1365. ath_print(ath9k_hw_common(ah), ATH_DBG_BEACON,
  1366. "%s: unsupported opmode: %d\n",
  1367. __func__, ah->opmode);
  1368. return;
  1369. break;
  1370. }
  1371. REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
  1372. REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
  1373. REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
  1374. REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
  1375. REGWRITE_BUFFER_FLUSH(ah);
  1376. beacon_period &= ~ATH9K_BEACON_ENA;
  1377. if (beacon_period & ATH9K_BEACON_RESET_TSF) {
  1378. ath9k_hw_reset_tsf(ah);
  1379. }
  1380. REG_SET_BIT(ah, AR_TIMER_MODE, flags);
  1381. }
  1382. EXPORT_SYMBOL(ath9k_hw_beaconinit);
  1383. void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
  1384. const struct ath9k_beacon_state *bs)
  1385. {
  1386. u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
  1387. struct ath9k_hw_capabilities *pCap = &ah->caps;
  1388. struct ath_common *common = ath9k_hw_common(ah);
  1389. ENABLE_REGWRITE_BUFFER(ah);
  1390. REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
  1391. REG_WRITE(ah, AR_BEACON_PERIOD,
  1392. TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
  1393. REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
  1394. TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
  1395. REGWRITE_BUFFER_FLUSH(ah);
  1396. REG_RMW_FIELD(ah, AR_RSSI_THR,
  1397. AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
  1398. beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
  1399. if (bs->bs_sleepduration > beaconintval)
  1400. beaconintval = bs->bs_sleepduration;
  1401. dtimperiod = bs->bs_dtimperiod;
  1402. if (bs->bs_sleepduration > dtimperiod)
  1403. dtimperiod = bs->bs_sleepduration;
  1404. if (beaconintval == dtimperiod)
  1405. nextTbtt = bs->bs_nextdtim;
  1406. else
  1407. nextTbtt = bs->bs_nexttbtt;
  1408. ath_print(common, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
  1409. ath_print(common, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
  1410. ath_print(common, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
  1411. ath_print(common, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
  1412. ENABLE_REGWRITE_BUFFER(ah);
  1413. REG_WRITE(ah, AR_NEXT_DTIM,
  1414. TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
  1415. REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
  1416. REG_WRITE(ah, AR_SLEEP1,
  1417. SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
  1418. | AR_SLEEP1_ASSUME_DTIM);
  1419. if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
  1420. beacontimeout = (BEACON_TIMEOUT_VAL << 3);
  1421. else
  1422. beacontimeout = MIN_BEACON_TIMEOUT_VAL;
  1423. REG_WRITE(ah, AR_SLEEP2,
  1424. SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
  1425. REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
  1426. REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
  1427. REGWRITE_BUFFER_FLUSH(ah);
  1428. REG_SET_BIT(ah, AR_TIMER_MODE,
  1429. AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
  1430. AR_DTIM_TIMER_EN);
  1431. /* TSF Out of Range Threshold */
  1432. REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
  1433. }
  1434. EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
  1435. /*******************/
  1436. /* HW Capabilities */
  1437. /*******************/
  1438. int ath9k_hw_fill_cap_info(struct ath_hw *ah)
  1439. {
  1440. struct ath9k_hw_capabilities *pCap = &ah->caps;
  1441. struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
  1442. struct ath_common *common = ath9k_hw_common(ah);
  1443. struct ath_btcoex_hw *btcoex_hw = &ah->btcoex_hw;
  1444. u16 capField = 0, eeval;
  1445. u8 ant_div_ctl1;
  1446. eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
  1447. regulatory->current_rd = eeval;
  1448. eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
  1449. if (AR_SREV_9285_12_OR_LATER(ah))
  1450. eeval |= AR9285_RDEXT_DEFAULT;
  1451. regulatory->current_rd_ext = eeval;
  1452. capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
  1453. if (ah->opmode != NL80211_IFTYPE_AP &&
  1454. ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
  1455. if (regulatory->current_rd == 0x64 ||
  1456. regulatory->current_rd == 0x65)
  1457. regulatory->current_rd += 5;
  1458. else if (regulatory->current_rd == 0x41)
  1459. regulatory->current_rd = 0x43;
  1460. ath_print(common, ATH_DBG_REGULATORY,
  1461. "regdomain mapped to 0x%x\n", regulatory->current_rd);
  1462. }
  1463. eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
  1464. if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
  1465. ath_print(common, ATH_DBG_FATAL,
  1466. "no band has been marked as supported in EEPROM.\n");
  1467. return -EINVAL;
  1468. }
  1469. bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
  1470. if (eeval & AR5416_OPFLAGS_11A) {
  1471. set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
  1472. if (ah->config.ht_enable) {
  1473. if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
  1474. set_bit(ATH9K_MODE_11NA_HT20,
  1475. pCap->wireless_modes);
  1476. if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
  1477. set_bit(ATH9K_MODE_11NA_HT40PLUS,
  1478. pCap->wireless_modes);
  1479. set_bit(ATH9K_MODE_11NA_HT40MINUS,
  1480. pCap->wireless_modes);
  1481. }
  1482. }
  1483. }
  1484. if (eeval & AR5416_OPFLAGS_11G) {
  1485. set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
  1486. if (ah->config.ht_enable) {
  1487. if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
  1488. set_bit(ATH9K_MODE_11NG_HT20,
  1489. pCap->wireless_modes);
  1490. if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
  1491. set_bit(ATH9K_MODE_11NG_HT40PLUS,
  1492. pCap->wireless_modes);
  1493. set_bit(ATH9K_MODE_11NG_HT40MINUS,
  1494. pCap->wireless_modes);
  1495. }
  1496. }
  1497. }
  1498. pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
  1499. /*
  1500. * For AR9271 we will temporarilly uses the rx chainmax as read from
  1501. * the EEPROM.
  1502. */
  1503. if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
  1504. !(eeval & AR5416_OPFLAGS_11A) &&
  1505. !(AR_SREV_9271(ah)))
  1506. /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
  1507. pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
  1508. else
  1509. /* Use rx_chainmask from EEPROM. */
  1510. pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
  1511. ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
  1512. pCap->low_2ghz_chan = 2312;
  1513. pCap->high_2ghz_chan = 2732;
  1514. pCap->low_5ghz_chan = 4920;
  1515. pCap->high_5ghz_chan = 6100;
  1516. common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM;
  1517. if (ah->config.ht_enable)
  1518. pCap->hw_caps |= ATH9K_HW_CAP_HT;
  1519. else
  1520. pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
  1521. if (capField & AR_EEPROM_EEPCAP_MAXQCU)
  1522. pCap->total_queues =
  1523. MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
  1524. else
  1525. pCap->total_queues = ATH9K_NUM_TX_QUEUES;
  1526. if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
  1527. pCap->keycache_size =
  1528. 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
  1529. else
  1530. pCap->keycache_size = AR_KEYTABLE_SIZE;
  1531. if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
  1532. pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD >> 1;
  1533. else
  1534. pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
  1535. if (AR_SREV_9271(ah))
  1536. pCap->num_gpio_pins = AR9271_NUM_GPIO;
  1537. else if (AR_DEVID_7010(ah))
  1538. pCap->num_gpio_pins = AR7010_NUM_GPIO;
  1539. else if (AR_SREV_9285_12_OR_LATER(ah))
  1540. pCap->num_gpio_pins = AR9285_NUM_GPIO;
  1541. else if (AR_SREV_9280_20_OR_LATER(ah))
  1542. pCap->num_gpio_pins = AR928X_NUM_GPIO;
  1543. else
  1544. pCap->num_gpio_pins = AR_NUM_GPIO;
  1545. if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
  1546. pCap->hw_caps |= ATH9K_HW_CAP_CST;
  1547. pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
  1548. } else {
  1549. pCap->rts_aggr_limit = (8 * 1024);
  1550. }
  1551. pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
  1552. #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
  1553. ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
  1554. if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
  1555. ah->rfkill_gpio =
  1556. MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
  1557. ah->rfkill_polarity =
  1558. MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
  1559. pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
  1560. }
  1561. #endif
  1562. if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
  1563. pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
  1564. else
  1565. pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
  1566. if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
  1567. pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
  1568. else
  1569. pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
  1570. if (regulatory->current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
  1571. pCap->reg_cap =
  1572. AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
  1573. AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
  1574. AR_EEPROM_EEREGCAP_EN_KK_U2 |
  1575. AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
  1576. } else {
  1577. pCap->reg_cap =
  1578. AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
  1579. AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
  1580. }
  1581. /* Advertise midband for AR5416 with FCC midband set in eeprom */
  1582. if (regulatory->current_rd_ext & (1 << REG_EXT_FCC_MIDBAND) &&
  1583. AR_SREV_5416(ah))
  1584. pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
  1585. pCap->num_antcfg_5ghz =
  1586. ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
  1587. pCap->num_antcfg_2ghz =
  1588. ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
  1589. if (AR_SREV_9280_20_OR_LATER(ah) &&
  1590. ath9k_hw_btcoex_supported(ah)) {
  1591. btcoex_hw->btactive_gpio = ATH_BTACTIVE_GPIO;
  1592. btcoex_hw->wlanactive_gpio = ATH_WLANACTIVE_GPIO;
  1593. if (AR_SREV_9285(ah)) {
  1594. btcoex_hw->scheme = ATH_BTCOEX_CFG_3WIRE;
  1595. btcoex_hw->btpriority_gpio = ATH_BTPRIORITY_GPIO;
  1596. } else {
  1597. btcoex_hw->scheme = ATH_BTCOEX_CFG_2WIRE;
  1598. }
  1599. } else {
  1600. btcoex_hw->scheme = ATH_BTCOEX_CFG_NONE;
  1601. }
  1602. if (AR_SREV_9300_20_OR_LATER(ah)) {
  1603. pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_LDPC |
  1604. ATH9K_HW_CAP_FASTCLOCK;
  1605. pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
  1606. pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
  1607. pCap->rx_status_len = sizeof(struct ar9003_rxs);
  1608. pCap->tx_desc_len = sizeof(struct ar9003_txc);
  1609. pCap->txs_len = sizeof(struct ar9003_txs);
  1610. if (ah->eep_ops->get_eeprom(ah, EEP_PAPRD))
  1611. pCap->hw_caps |= ATH9K_HW_CAP_PAPRD;
  1612. } else {
  1613. pCap->tx_desc_len = sizeof(struct ath_desc);
  1614. if (AR_SREV_9280_20(ah) &&
  1615. ((ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) <=
  1616. AR5416_EEP_MINOR_VER_16) ||
  1617. ah->eep_ops->get_eeprom(ah, EEP_FSTCLK_5G)))
  1618. pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
  1619. }
  1620. if (AR_SREV_9300_20_OR_LATER(ah))
  1621. pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
  1622. if (AR_SREV_9287_11_OR_LATER(ah) || AR_SREV_9271(ah))
  1623. pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
  1624. if (AR_SREV_9285(ah))
  1625. if (ah->eep_ops->get_eeprom(ah, EEP_MODAL_VER) >= 3) {
  1626. ant_div_ctl1 =
  1627. ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
  1628. if ((ant_div_ctl1 & 0x1) && ((ant_div_ctl1 >> 3) & 0x1))
  1629. pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
  1630. }
  1631. return 0;
  1632. }
  1633. /****************************/
  1634. /* GPIO / RFKILL / Antennae */
  1635. /****************************/
  1636. static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
  1637. u32 gpio, u32 type)
  1638. {
  1639. int addr;
  1640. u32 gpio_shift, tmp;
  1641. if (gpio > 11)
  1642. addr = AR_GPIO_OUTPUT_MUX3;
  1643. else if (gpio > 5)
  1644. addr = AR_GPIO_OUTPUT_MUX2;
  1645. else
  1646. addr = AR_GPIO_OUTPUT_MUX1;
  1647. gpio_shift = (gpio % 6) * 5;
  1648. if (AR_SREV_9280_20_OR_LATER(ah)
  1649. || (addr != AR_GPIO_OUTPUT_MUX1)) {
  1650. REG_RMW(ah, addr, (type << gpio_shift),
  1651. (0x1f << gpio_shift));
  1652. } else {
  1653. tmp = REG_READ(ah, addr);
  1654. tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
  1655. tmp &= ~(0x1f << gpio_shift);
  1656. tmp |= (type << gpio_shift);
  1657. REG_WRITE(ah, addr, tmp);
  1658. }
  1659. }
  1660. void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
  1661. {
  1662. u32 gpio_shift;
  1663. BUG_ON(gpio >= ah->caps.num_gpio_pins);
  1664. if (AR_DEVID_7010(ah)) {
  1665. gpio_shift = gpio;
  1666. REG_RMW(ah, AR7010_GPIO_OE,
  1667. (AR7010_GPIO_OE_AS_INPUT << gpio_shift),
  1668. (AR7010_GPIO_OE_MASK << gpio_shift));
  1669. return;
  1670. }
  1671. gpio_shift = gpio << 1;
  1672. REG_RMW(ah,
  1673. AR_GPIO_OE_OUT,
  1674. (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
  1675. (AR_GPIO_OE_OUT_DRV << gpio_shift));
  1676. }
  1677. EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
  1678. u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
  1679. {
  1680. #define MS_REG_READ(x, y) \
  1681. (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
  1682. if (gpio >= ah->caps.num_gpio_pins)
  1683. return 0xffffffff;
  1684. if (AR_DEVID_7010(ah)) {
  1685. u32 val;
  1686. val = REG_READ(ah, AR7010_GPIO_IN);
  1687. return (MS(val, AR7010_GPIO_IN_VAL) & AR_GPIO_BIT(gpio)) == 0;
  1688. } else if (AR_SREV_9300_20_OR_LATER(ah))
  1689. return MS_REG_READ(AR9300, gpio) != 0;
  1690. else if (AR_SREV_9271(ah))
  1691. return MS_REG_READ(AR9271, gpio) != 0;
  1692. else if (AR_SREV_9287_11_OR_LATER(ah))
  1693. return MS_REG_READ(AR9287, gpio) != 0;
  1694. else if (AR_SREV_9285_12_OR_LATER(ah))
  1695. return MS_REG_READ(AR9285, gpio) != 0;
  1696. else if (AR_SREV_9280_20_OR_LATER(ah))
  1697. return MS_REG_READ(AR928X, gpio) != 0;
  1698. else
  1699. return MS_REG_READ(AR, gpio) != 0;
  1700. }
  1701. EXPORT_SYMBOL(ath9k_hw_gpio_get);
  1702. void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
  1703. u32 ah_signal_type)
  1704. {
  1705. u32 gpio_shift;
  1706. if (AR_DEVID_7010(ah)) {
  1707. gpio_shift = gpio;
  1708. REG_RMW(ah, AR7010_GPIO_OE,
  1709. (AR7010_GPIO_OE_AS_OUTPUT << gpio_shift),
  1710. (AR7010_GPIO_OE_MASK << gpio_shift));
  1711. return;
  1712. }
  1713. ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
  1714. gpio_shift = 2 * gpio;
  1715. REG_RMW(ah,
  1716. AR_GPIO_OE_OUT,
  1717. (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
  1718. (AR_GPIO_OE_OUT_DRV << gpio_shift));
  1719. }
  1720. EXPORT_SYMBOL(ath9k_hw_cfg_output);
  1721. void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
  1722. {
  1723. if (AR_DEVID_7010(ah)) {
  1724. val = val ? 0 : 1;
  1725. REG_RMW(ah, AR7010_GPIO_OUT, ((val&1) << gpio),
  1726. AR_GPIO_BIT(gpio));
  1727. return;
  1728. }
  1729. if (AR_SREV_9271(ah))
  1730. val = ~val;
  1731. REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
  1732. AR_GPIO_BIT(gpio));
  1733. }
  1734. EXPORT_SYMBOL(ath9k_hw_set_gpio);
  1735. u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
  1736. {
  1737. return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
  1738. }
  1739. EXPORT_SYMBOL(ath9k_hw_getdefantenna);
  1740. void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
  1741. {
  1742. REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
  1743. }
  1744. EXPORT_SYMBOL(ath9k_hw_setantenna);
  1745. /*********************/
  1746. /* General Operation */
  1747. /*********************/
  1748. u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
  1749. {
  1750. u32 bits = REG_READ(ah, AR_RX_FILTER);
  1751. u32 phybits = REG_READ(ah, AR_PHY_ERR);
  1752. if (phybits & AR_PHY_ERR_RADAR)
  1753. bits |= ATH9K_RX_FILTER_PHYRADAR;
  1754. if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
  1755. bits |= ATH9K_RX_FILTER_PHYERR;
  1756. return bits;
  1757. }
  1758. EXPORT_SYMBOL(ath9k_hw_getrxfilter);
  1759. void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
  1760. {
  1761. u32 phybits;
  1762. ENABLE_REGWRITE_BUFFER(ah);
  1763. REG_WRITE(ah, AR_RX_FILTER, bits);
  1764. phybits = 0;
  1765. if (bits & ATH9K_RX_FILTER_PHYRADAR)
  1766. phybits |= AR_PHY_ERR_RADAR;
  1767. if (bits & ATH9K_RX_FILTER_PHYERR)
  1768. phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
  1769. REG_WRITE(ah, AR_PHY_ERR, phybits);
  1770. if (phybits)
  1771. REG_WRITE(ah, AR_RXCFG,
  1772. REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
  1773. else
  1774. REG_WRITE(ah, AR_RXCFG,
  1775. REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
  1776. REGWRITE_BUFFER_FLUSH(ah);
  1777. }
  1778. EXPORT_SYMBOL(ath9k_hw_setrxfilter);
  1779. bool ath9k_hw_phy_disable(struct ath_hw *ah)
  1780. {
  1781. if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
  1782. return false;
  1783. ath9k_hw_init_pll(ah, NULL);
  1784. return true;
  1785. }
  1786. EXPORT_SYMBOL(ath9k_hw_phy_disable);
  1787. bool ath9k_hw_disable(struct ath_hw *ah)
  1788. {
  1789. if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
  1790. return false;
  1791. if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
  1792. return false;
  1793. ath9k_hw_init_pll(ah, NULL);
  1794. return true;
  1795. }
  1796. EXPORT_SYMBOL(ath9k_hw_disable);
  1797. void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
  1798. {
  1799. struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
  1800. struct ath9k_channel *chan = ah->curchan;
  1801. struct ieee80211_channel *channel = chan->chan;
  1802. regulatory->power_limit = min(limit, (u32) MAX_RATE_POWER);
  1803. ah->eep_ops->set_txpower(ah, chan,
  1804. ath9k_regd_get_ctl(regulatory, chan),
  1805. channel->max_antenna_gain * 2,
  1806. channel->max_power * 2,
  1807. min((u32) MAX_RATE_POWER,
  1808. (u32) regulatory->power_limit));
  1809. }
  1810. EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
  1811. void ath9k_hw_setopmode(struct ath_hw *ah)
  1812. {
  1813. ath9k_hw_set_operating_mode(ah, ah->opmode);
  1814. }
  1815. EXPORT_SYMBOL(ath9k_hw_setopmode);
  1816. void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
  1817. {
  1818. REG_WRITE(ah, AR_MCAST_FIL0, filter0);
  1819. REG_WRITE(ah, AR_MCAST_FIL1, filter1);
  1820. }
  1821. EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
  1822. void ath9k_hw_write_associd(struct ath_hw *ah)
  1823. {
  1824. struct ath_common *common = ath9k_hw_common(ah);
  1825. REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
  1826. REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
  1827. ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
  1828. }
  1829. EXPORT_SYMBOL(ath9k_hw_write_associd);
  1830. #define ATH9K_MAX_TSF_READ 10
  1831. u64 ath9k_hw_gettsf64(struct ath_hw *ah)
  1832. {
  1833. u32 tsf_lower, tsf_upper1, tsf_upper2;
  1834. int i;
  1835. tsf_upper1 = REG_READ(ah, AR_TSF_U32);
  1836. for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
  1837. tsf_lower = REG_READ(ah, AR_TSF_L32);
  1838. tsf_upper2 = REG_READ(ah, AR_TSF_U32);
  1839. if (tsf_upper2 == tsf_upper1)
  1840. break;
  1841. tsf_upper1 = tsf_upper2;
  1842. }
  1843. WARN_ON( i == ATH9K_MAX_TSF_READ );
  1844. return (((u64)tsf_upper1 << 32) | tsf_lower);
  1845. }
  1846. EXPORT_SYMBOL(ath9k_hw_gettsf64);
  1847. void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
  1848. {
  1849. REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
  1850. REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
  1851. }
  1852. EXPORT_SYMBOL(ath9k_hw_settsf64);
  1853. void ath9k_hw_reset_tsf(struct ath_hw *ah)
  1854. {
  1855. if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
  1856. AH_TSF_WRITE_TIMEOUT))
  1857. ath_print(ath9k_hw_common(ah), ATH_DBG_RESET,
  1858. "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
  1859. REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
  1860. }
  1861. EXPORT_SYMBOL(ath9k_hw_reset_tsf);
  1862. void ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
  1863. {
  1864. if (setting)
  1865. ah->misc_mode |= AR_PCU_TX_ADD_TSF;
  1866. else
  1867. ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
  1868. }
  1869. EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
  1870. void ath9k_hw_set11nmac2040(struct ath_hw *ah)
  1871. {
  1872. struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
  1873. u32 macmode;
  1874. if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
  1875. macmode = AR_2040_JOINED_RX_CLEAR;
  1876. else
  1877. macmode = 0;
  1878. REG_WRITE(ah, AR_2040_MODE, macmode);
  1879. }
  1880. /* HW Generic timers configuration */
  1881. static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
  1882. {
  1883. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  1884. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  1885. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  1886. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  1887. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  1888. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  1889. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  1890. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  1891. {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
  1892. {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
  1893. AR_NDP2_TIMER_MODE, 0x0002},
  1894. {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
  1895. AR_NDP2_TIMER_MODE, 0x0004},
  1896. {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
  1897. AR_NDP2_TIMER_MODE, 0x0008},
  1898. {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
  1899. AR_NDP2_TIMER_MODE, 0x0010},
  1900. {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
  1901. AR_NDP2_TIMER_MODE, 0x0020},
  1902. {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
  1903. AR_NDP2_TIMER_MODE, 0x0040},
  1904. {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
  1905. AR_NDP2_TIMER_MODE, 0x0080}
  1906. };
  1907. /* HW generic timer primitives */
  1908. /* compute and clear index of rightmost 1 */
  1909. static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
  1910. {
  1911. u32 b;
  1912. b = *mask;
  1913. b &= (0-b);
  1914. *mask &= ~b;
  1915. b *= debruijn32;
  1916. b >>= 27;
  1917. return timer_table->gen_timer_index[b];
  1918. }
  1919. u32 ath9k_hw_gettsf32(struct ath_hw *ah)
  1920. {
  1921. return REG_READ(ah, AR_TSF_L32);
  1922. }
  1923. EXPORT_SYMBOL(ath9k_hw_gettsf32);
  1924. struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
  1925. void (*trigger)(void *),
  1926. void (*overflow)(void *),
  1927. void *arg,
  1928. u8 timer_index)
  1929. {
  1930. struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
  1931. struct ath_gen_timer *timer;
  1932. timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
  1933. if (timer == NULL) {
  1934. ath_print(ath9k_hw_common(ah), ATH_DBG_FATAL,
  1935. "Failed to allocate memory"
  1936. "for hw timer[%d]\n", timer_index);
  1937. return NULL;
  1938. }
  1939. /* allocate a hardware generic timer slot */
  1940. timer_table->timers[timer_index] = timer;
  1941. timer->index = timer_index;
  1942. timer->trigger = trigger;
  1943. timer->overflow = overflow;
  1944. timer->arg = arg;
  1945. return timer;
  1946. }
  1947. EXPORT_SYMBOL(ath_gen_timer_alloc);
  1948. void ath9k_hw_gen_timer_start(struct ath_hw *ah,
  1949. struct ath_gen_timer *timer,
  1950. u32 timer_next,
  1951. u32 timer_period)
  1952. {
  1953. struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
  1954. u32 tsf;
  1955. BUG_ON(!timer_period);
  1956. set_bit(timer->index, &timer_table->timer_mask.timer_bits);
  1957. tsf = ath9k_hw_gettsf32(ah);
  1958. ath_print(ath9k_hw_common(ah), ATH_DBG_HWTIMER,
  1959. "curent tsf %x period %x"
  1960. "timer_next %x\n", tsf, timer_period, timer_next);
  1961. /*
  1962. * Pull timer_next forward if the current TSF already passed it
  1963. * because of software latency
  1964. */
  1965. if (timer_next < tsf)
  1966. timer_next = tsf + timer_period;
  1967. /*
  1968. * Program generic timer registers
  1969. */
  1970. REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
  1971. timer_next);
  1972. REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
  1973. timer_period);
  1974. REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
  1975. gen_tmr_configuration[timer->index].mode_mask);
  1976. /* Enable both trigger and thresh interrupt masks */
  1977. REG_SET_BIT(ah, AR_IMR_S5,
  1978. (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
  1979. SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
  1980. }
  1981. EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
  1982. void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
  1983. {
  1984. struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
  1985. if ((timer->index < AR_FIRST_NDP_TIMER) ||
  1986. (timer->index >= ATH_MAX_GEN_TIMER)) {
  1987. return;
  1988. }
  1989. /* Clear generic timer enable bits. */
  1990. REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
  1991. gen_tmr_configuration[timer->index].mode_mask);
  1992. /* Disable both trigger and thresh interrupt masks */
  1993. REG_CLR_BIT(ah, AR_IMR_S5,
  1994. (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
  1995. SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
  1996. clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
  1997. }
  1998. EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
  1999. void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
  2000. {
  2001. struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
  2002. /* free the hardware generic timer slot */
  2003. timer_table->timers[timer->index] = NULL;
  2004. kfree(timer);
  2005. }
  2006. EXPORT_SYMBOL(ath_gen_timer_free);
  2007. /*
  2008. * Generic Timer Interrupts handling
  2009. */
  2010. void ath_gen_timer_isr(struct ath_hw *ah)
  2011. {
  2012. struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
  2013. struct ath_gen_timer *timer;
  2014. struct ath_common *common = ath9k_hw_common(ah);
  2015. u32 trigger_mask, thresh_mask, index;
  2016. /* get hardware generic timer interrupt status */
  2017. trigger_mask = ah->intr_gen_timer_trigger;
  2018. thresh_mask = ah->intr_gen_timer_thresh;
  2019. trigger_mask &= timer_table->timer_mask.val;
  2020. thresh_mask &= timer_table->timer_mask.val;
  2021. trigger_mask &= ~thresh_mask;
  2022. while (thresh_mask) {
  2023. index = rightmost_index(timer_table, &thresh_mask);
  2024. timer = timer_table->timers[index];
  2025. BUG_ON(!timer);
  2026. ath_print(common, ATH_DBG_HWTIMER,
  2027. "TSF overflow for Gen timer %d\n", index);
  2028. timer->overflow(timer->arg);
  2029. }
  2030. while (trigger_mask) {
  2031. index = rightmost_index(timer_table, &trigger_mask);
  2032. timer = timer_table->timers[index];
  2033. BUG_ON(!timer);
  2034. ath_print(common, ATH_DBG_HWTIMER,
  2035. "Gen timer[%d] trigger\n", index);
  2036. timer->trigger(timer->arg);
  2037. }
  2038. }
  2039. EXPORT_SYMBOL(ath_gen_timer_isr);
  2040. /********/
  2041. /* HTC */
  2042. /********/
  2043. void ath9k_hw_htc_resetinit(struct ath_hw *ah)
  2044. {
  2045. ah->htc_reset_init = true;
  2046. }
  2047. EXPORT_SYMBOL(ath9k_hw_htc_resetinit);
  2048. static struct {
  2049. u32 version;
  2050. const char * name;
  2051. } ath_mac_bb_names[] = {
  2052. /* Devices with external radios */
  2053. { AR_SREV_VERSION_5416_PCI, "5416" },
  2054. { AR_SREV_VERSION_5416_PCIE, "5418" },
  2055. { AR_SREV_VERSION_9100, "9100" },
  2056. { AR_SREV_VERSION_9160, "9160" },
  2057. /* Single-chip solutions */
  2058. { AR_SREV_VERSION_9280, "9280" },
  2059. { AR_SREV_VERSION_9285, "9285" },
  2060. { AR_SREV_VERSION_9287, "9287" },
  2061. { AR_SREV_VERSION_9271, "9271" },
  2062. { AR_SREV_VERSION_9300, "9300" },
  2063. };
  2064. /* For devices with external radios */
  2065. static struct {
  2066. u16 version;
  2067. const char * name;
  2068. } ath_rf_names[] = {
  2069. { 0, "5133" },
  2070. { AR_RAD5133_SREV_MAJOR, "5133" },
  2071. { AR_RAD5122_SREV_MAJOR, "5122" },
  2072. { AR_RAD2133_SREV_MAJOR, "2133" },
  2073. { AR_RAD2122_SREV_MAJOR, "2122" }
  2074. };
  2075. /*
  2076. * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
  2077. */
  2078. static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
  2079. {
  2080. int i;
  2081. for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
  2082. if (ath_mac_bb_names[i].version == mac_bb_version) {
  2083. return ath_mac_bb_names[i].name;
  2084. }
  2085. }
  2086. return "????";
  2087. }
  2088. /*
  2089. * Return the RF name. "????" is returned if the RF is unknown.
  2090. * Used for devices with external radios.
  2091. */
  2092. static const char *ath9k_hw_rf_name(u16 rf_version)
  2093. {
  2094. int i;
  2095. for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
  2096. if (ath_rf_names[i].version == rf_version) {
  2097. return ath_rf_names[i].name;
  2098. }
  2099. }
  2100. return "????";
  2101. }
  2102. void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
  2103. {
  2104. int used;
  2105. /* chipsets >= AR9280 are single-chip */
  2106. if (AR_SREV_9280_20_OR_LATER(ah)) {
  2107. used = snprintf(hw_name, len,
  2108. "Atheros AR%s Rev:%x",
  2109. ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
  2110. ah->hw_version.macRev);
  2111. }
  2112. else {
  2113. used = snprintf(hw_name, len,
  2114. "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
  2115. ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
  2116. ah->hw_version.macRev,
  2117. ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
  2118. AR_RADIO_SREV_MAJOR)),
  2119. ah->hw_version.phyRev);
  2120. }
  2121. hw_name[used] = '\0';
  2122. }
  2123. EXPORT_SYMBOL(ath9k_hw_name);