hw.c 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252
  1. /*
  2. * Copyright (c) 2008-2011 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 <linux/module.h>
  19. #include <asm/unaligned.h>
  20. #include "hw.h"
  21. #include "hw-ops.h"
  22. #include "rc.h"
  23. #include "ar9003_mac.h"
  24. #include "ar9003_mci.h"
  25. #include "ar9003_phy.h"
  26. #include "debug.h"
  27. #include "ath9k.h"
  28. static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
  29. MODULE_AUTHOR("Atheros Communications");
  30. MODULE_DESCRIPTION("Support for Atheros 802.11n wireless LAN cards.");
  31. MODULE_SUPPORTED_DEVICE("Atheros 802.11n WLAN cards");
  32. MODULE_LICENSE("Dual BSD/GPL");
  33. static int __init ath9k_init(void)
  34. {
  35. return 0;
  36. }
  37. module_init(ath9k_init);
  38. static void __exit ath9k_exit(void)
  39. {
  40. return;
  41. }
  42. module_exit(ath9k_exit);
  43. /* Private hardware callbacks */
  44. static void ath9k_hw_init_cal_settings(struct ath_hw *ah)
  45. {
  46. ath9k_hw_private_ops(ah)->init_cal_settings(ah);
  47. }
  48. static u32 ath9k_hw_compute_pll_control(struct ath_hw *ah,
  49. struct ath9k_channel *chan)
  50. {
  51. return ath9k_hw_private_ops(ah)->compute_pll_control(ah, chan);
  52. }
  53. static void ath9k_hw_init_mode_gain_regs(struct ath_hw *ah)
  54. {
  55. if (!ath9k_hw_private_ops(ah)->init_mode_gain_regs)
  56. return;
  57. ath9k_hw_private_ops(ah)->init_mode_gain_regs(ah);
  58. }
  59. static void ath9k_hw_ani_cache_ini_regs(struct ath_hw *ah)
  60. {
  61. /* You will not have this callback if using the old ANI */
  62. if (!ath9k_hw_private_ops(ah)->ani_cache_ini_regs)
  63. return;
  64. ath9k_hw_private_ops(ah)->ani_cache_ini_regs(ah);
  65. }
  66. /********************/
  67. /* Helper Functions */
  68. /********************/
  69. #ifdef CONFIG_ATH9K_DEBUGFS
  70. void ath9k_debug_sync_cause(struct ath_common *common, u32 sync_cause)
  71. {
  72. struct ath_softc *sc = common->priv;
  73. if (sync_cause)
  74. sc->debug.stats.istats.sync_cause_all++;
  75. if (sync_cause & AR_INTR_SYNC_RTC_IRQ)
  76. sc->debug.stats.istats.sync_rtc_irq++;
  77. if (sync_cause & AR_INTR_SYNC_MAC_IRQ)
  78. sc->debug.stats.istats.sync_mac_irq++;
  79. if (sync_cause & AR_INTR_SYNC_EEPROM_ILLEGAL_ACCESS)
  80. sc->debug.stats.istats.eeprom_illegal_access++;
  81. if (sync_cause & AR_INTR_SYNC_APB_TIMEOUT)
  82. sc->debug.stats.istats.apb_timeout++;
  83. if (sync_cause & AR_INTR_SYNC_PCI_MODE_CONFLICT)
  84. sc->debug.stats.istats.pci_mode_conflict++;
  85. if (sync_cause & AR_INTR_SYNC_HOST1_FATAL)
  86. sc->debug.stats.istats.host1_fatal++;
  87. if (sync_cause & AR_INTR_SYNC_HOST1_PERR)
  88. sc->debug.stats.istats.host1_perr++;
  89. if (sync_cause & AR_INTR_SYNC_TRCV_FIFO_PERR)
  90. sc->debug.stats.istats.trcv_fifo_perr++;
  91. if (sync_cause & AR_INTR_SYNC_RADM_CPL_EP)
  92. sc->debug.stats.istats.radm_cpl_ep++;
  93. if (sync_cause & AR_INTR_SYNC_RADM_CPL_DLLP_ABORT)
  94. sc->debug.stats.istats.radm_cpl_dllp_abort++;
  95. if (sync_cause & AR_INTR_SYNC_RADM_CPL_TLP_ABORT)
  96. sc->debug.stats.istats.radm_cpl_tlp_abort++;
  97. if (sync_cause & AR_INTR_SYNC_RADM_CPL_ECRC_ERR)
  98. sc->debug.stats.istats.radm_cpl_ecrc_err++;
  99. if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT)
  100. sc->debug.stats.istats.radm_cpl_timeout++;
  101. if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT)
  102. sc->debug.stats.istats.local_timeout++;
  103. if (sync_cause & AR_INTR_SYNC_PM_ACCESS)
  104. sc->debug.stats.istats.pm_access++;
  105. if (sync_cause & AR_INTR_SYNC_MAC_AWAKE)
  106. sc->debug.stats.istats.mac_awake++;
  107. if (sync_cause & AR_INTR_SYNC_MAC_ASLEEP)
  108. sc->debug.stats.istats.mac_asleep++;
  109. if (sync_cause & AR_INTR_SYNC_MAC_SLEEP_ACCESS)
  110. sc->debug.stats.istats.mac_sleep_access++;
  111. }
  112. #endif
  113. static void ath9k_hw_set_clockrate(struct ath_hw *ah)
  114. {
  115. struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
  116. struct ath_common *common = ath9k_hw_common(ah);
  117. unsigned int clockrate;
  118. /* AR9287 v1.3+ uses async FIFO and runs the MAC at 117 MHz */
  119. if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah))
  120. clockrate = 117;
  121. else if (!ah->curchan) /* should really check for CCK instead */
  122. clockrate = ATH9K_CLOCK_RATE_CCK;
  123. else if (conf->chandef.chan->band == IEEE80211_BAND_2GHZ)
  124. clockrate = ATH9K_CLOCK_RATE_2GHZ_OFDM;
  125. else if (ah->caps.hw_caps & ATH9K_HW_CAP_FASTCLOCK)
  126. clockrate = ATH9K_CLOCK_FAST_RATE_5GHZ_OFDM;
  127. else
  128. clockrate = ATH9K_CLOCK_RATE_5GHZ_OFDM;
  129. if (conf_is_ht40(conf))
  130. clockrate *= 2;
  131. if (ah->curchan) {
  132. if (IS_CHAN_HALF_RATE(ah->curchan))
  133. clockrate /= 2;
  134. if (IS_CHAN_QUARTER_RATE(ah->curchan))
  135. clockrate /= 4;
  136. }
  137. common->clockrate = clockrate;
  138. }
  139. static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
  140. {
  141. struct ath_common *common = ath9k_hw_common(ah);
  142. return usecs * common->clockrate;
  143. }
  144. bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
  145. {
  146. int i;
  147. BUG_ON(timeout < AH_TIME_QUANTUM);
  148. for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
  149. if ((REG_READ(ah, reg) & mask) == val)
  150. return true;
  151. udelay(AH_TIME_QUANTUM);
  152. }
  153. ath_dbg(ath9k_hw_common(ah), ANY,
  154. "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
  155. timeout, reg, REG_READ(ah, reg), mask, val);
  156. return false;
  157. }
  158. EXPORT_SYMBOL(ath9k_hw_wait);
  159. void ath9k_hw_synth_delay(struct ath_hw *ah, struct ath9k_channel *chan,
  160. int hw_delay)
  161. {
  162. if (IS_CHAN_B(chan))
  163. hw_delay = (4 * hw_delay) / 22;
  164. else
  165. hw_delay /= 10;
  166. if (IS_CHAN_HALF_RATE(chan))
  167. hw_delay *= 2;
  168. else if (IS_CHAN_QUARTER_RATE(chan))
  169. hw_delay *= 4;
  170. udelay(hw_delay + BASE_ACTIVATE_DELAY);
  171. }
  172. void ath9k_hw_write_array(struct ath_hw *ah, const struct ar5416IniArray *array,
  173. int column, unsigned int *writecnt)
  174. {
  175. int r;
  176. ENABLE_REGWRITE_BUFFER(ah);
  177. for (r = 0; r < array->ia_rows; r++) {
  178. REG_WRITE(ah, INI_RA(array, r, 0),
  179. INI_RA(array, r, column));
  180. DO_DELAY(*writecnt);
  181. }
  182. REGWRITE_BUFFER_FLUSH(ah);
  183. }
  184. u32 ath9k_hw_reverse_bits(u32 val, u32 n)
  185. {
  186. u32 retval;
  187. int i;
  188. for (i = 0, retval = 0; i < n; i++) {
  189. retval = (retval << 1) | (val & 1);
  190. val >>= 1;
  191. }
  192. return retval;
  193. }
  194. u16 ath9k_hw_computetxtime(struct ath_hw *ah,
  195. u8 phy, int kbps,
  196. u32 frameLen, u16 rateix,
  197. bool shortPreamble)
  198. {
  199. u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
  200. if (kbps == 0)
  201. return 0;
  202. switch (phy) {
  203. case WLAN_RC_PHY_CCK:
  204. phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
  205. if (shortPreamble)
  206. phyTime >>= 1;
  207. numBits = frameLen << 3;
  208. txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
  209. break;
  210. case WLAN_RC_PHY_OFDM:
  211. if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
  212. bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
  213. numBits = OFDM_PLCP_BITS + (frameLen << 3);
  214. numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
  215. txTime = OFDM_SIFS_TIME_QUARTER
  216. + OFDM_PREAMBLE_TIME_QUARTER
  217. + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
  218. } else if (ah->curchan &&
  219. IS_CHAN_HALF_RATE(ah->curchan)) {
  220. bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
  221. numBits = OFDM_PLCP_BITS + (frameLen << 3);
  222. numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
  223. txTime = OFDM_SIFS_TIME_HALF +
  224. OFDM_PREAMBLE_TIME_HALF
  225. + (numSymbols * OFDM_SYMBOL_TIME_HALF);
  226. } else {
  227. bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
  228. numBits = OFDM_PLCP_BITS + (frameLen << 3);
  229. numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
  230. txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
  231. + (numSymbols * OFDM_SYMBOL_TIME);
  232. }
  233. break;
  234. default:
  235. ath_err(ath9k_hw_common(ah),
  236. "Unknown phy %u (rate ix %u)\n", phy, rateix);
  237. txTime = 0;
  238. break;
  239. }
  240. return txTime;
  241. }
  242. EXPORT_SYMBOL(ath9k_hw_computetxtime);
  243. void ath9k_hw_get_channel_centers(struct ath_hw *ah,
  244. struct ath9k_channel *chan,
  245. struct chan_centers *centers)
  246. {
  247. int8_t extoff;
  248. if (!IS_CHAN_HT40(chan)) {
  249. centers->ctl_center = centers->ext_center =
  250. centers->synth_center = chan->channel;
  251. return;
  252. }
  253. if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
  254. (chan->chanmode == CHANNEL_G_HT40PLUS)) {
  255. centers->synth_center =
  256. chan->channel + HT40_CHANNEL_CENTER_SHIFT;
  257. extoff = 1;
  258. } else {
  259. centers->synth_center =
  260. chan->channel - HT40_CHANNEL_CENTER_SHIFT;
  261. extoff = -1;
  262. }
  263. centers->ctl_center =
  264. centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
  265. /* 25 MHz spacing is supported by hw but not on upper layers */
  266. centers->ext_center =
  267. centers->synth_center + (extoff * HT40_CHANNEL_CENTER_SHIFT);
  268. }
  269. /******************/
  270. /* Chip Revisions */
  271. /******************/
  272. static void ath9k_hw_read_revisions(struct ath_hw *ah)
  273. {
  274. u32 val;
  275. switch (ah->hw_version.devid) {
  276. case AR5416_AR9100_DEVID:
  277. ah->hw_version.macVersion = AR_SREV_VERSION_9100;
  278. break;
  279. case AR9300_DEVID_AR9330:
  280. ah->hw_version.macVersion = AR_SREV_VERSION_9330;
  281. if (ah->get_mac_revision) {
  282. ah->hw_version.macRev = ah->get_mac_revision();
  283. } else {
  284. val = REG_READ(ah, AR_SREV);
  285. ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
  286. }
  287. return;
  288. case AR9300_DEVID_AR9340:
  289. ah->hw_version.macVersion = AR_SREV_VERSION_9340;
  290. val = REG_READ(ah, AR_SREV);
  291. ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
  292. return;
  293. case AR9300_DEVID_QCA955X:
  294. ah->hw_version.macVersion = AR_SREV_VERSION_9550;
  295. return;
  296. }
  297. val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
  298. if (val == 0xFF) {
  299. val = REG_READ(ah, AR_SREV);
  300. ah->hw_version.macVersion =
  301. (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
  302. ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
  303. if (AR_SREV_9462(ah) || AR_SREV_9565(ah))
  304. ah->is_pciexpress = true;
  305. else
  306. ah->is_pciexpress = (val &
  307. AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
  308. } else {
  309. if (!AR_SREV_9100(ah))
  310. ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
  311. ah->hw_version.macRev = val & AR_SREV_REVISION;
  312. if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
  313. ah->is_pciexpress = true;
  314. }
  315. }
  316. /************************************/
  317. /* HW Attach, Detach, Init Routines */
  318. /************************************/
  319. static void ath9k_hw_disablepcie(struct ath_hw *ah)
  320. {
  321. if (!AR_SREV_5416(ah))
  322. return;
  323. REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
  324. REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
  325. REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
  326. REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
  327. REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
  328. REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
  329. REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
  330. REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
  331. REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
  332. REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
  333. }
  334. /* This should work for all families including legacy */
  335. static bool ath9k_hw_chip_test(struct ath_hw *ah)
  336. {
  337. struct ath_common *common = ath9k_hw_common(ah);
  338. u32 regAddr[2] = { AR_STA_ID0 };
  339. u32 regHold[2];
  340. static const u32 patternData[4] = {
  341. 0x55555555, 0xaaaaaaaa, 0x66666666, 0x99999999
  342. };
  343. int i, j, loop_max;
  344. if (!AR_SREV_9300_20_OR_LATER(ah)) {
  345. loop_max = 2;
  346. regAddr[1] = AR_PHY_BASE + (8 << 2);
  347. } else
  348. loop_max = 1;
  349. for (i = 0; i < loop_max; i++) {
  350. u32 addr = regAddr[i];
  351. u32 wrData, rdData;
  352. regHold[i] = REG_READ(ah, addr);
  353. for (j = 0; j < 0x100; j++) {
  354. wrData = (j << 16) | j;
  355. REG_WRITE(ah, addr, wrData);
  356. rdData = REG_READ(ah, addr);
  357. if (rdData != wrData) {
  358. ath_err(common,
  359. "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
  360. addr, wrData, rdData);
  361. return false;
  362. }
  363. }
  364. for (j = 0; j < 4; j++) {
  365. wrData = patternData[j];
  366. REG_WRITE(ah, addr, wrData);
  367. rdData = REG_READ(ah, addr);
  368. if (wrData != rdData) {
  369. ath_err(common,
  370. "address test failed addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
  371. addr, wrData, rdData);
  372. return false;
  373. }
  374. }
  375. REG_WRITE(ah, regAddr[i], regHold[i]);
  376. }
  377. udelay(100);
  378. return true;
  379. }
  380. static void ath9k_hw_init_config(struct ath_hw *ah)
  381. {
  382. int i;
  383. ah->config.dma_beacon_response_time = 1;
  384. ah->config.sw_beacon_response_time = 6;
  385. ah->config.additional_swba_backoff = 0;
  386. ah->config.ack_6mb = 0x0;
  387. ah->config.cwm_ignore_extcca = 0;
  388. ah->config.pcie_clock_req = 0;
  389. ah->config.pcie_waen = 0;
  390. ah->config.analog_shiftreg = 1;
  391. ah->config.enable_ani = true;
  392. for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
  393. ah->config.spurchans[i][0] = AR_NO_SPUR;
  394. ah->config.spurchans[i][1] = AR_NO_SPUR;
  395. }
  396. ah->config.rx_intr_mitigation = true;
  397. ah->config.pcieSerDesWrite = true;
  398. /*
  399. * We need this for PCI devices only (Cardbus, PCI, miniPCI)
  400. * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
  401. * This means we use it for all AR5416 devices, and the few
  402. * minor PCI AR9280 devices out there.
  403. *
  404. * Serialization is required because these devices do not handle
  405. * well the case of two concurrent reads/writes due to the latency
  406. * involved. During one read/write another read/write can be issued
  407. * on another CPU while the previous read/write may still be working
  408. * on our hardware, if we hit this case the hardware poops in a loop.
  409. * We prevent this by serializing reads and writes.
  410. *
  411. * This issue is not present on PCI-Express devices or pre-AR5416
  412. * devices (legacy, 802.11abg).
  413. */
  414. if (num_possible_cpus() > 1)
  415. ah->config.serialize_regmode = SER_REG_MODE_AUTO;
  416. }
  417. static void ath9k_hw_init_defaults(struct ath_hw *ah)
  418. {
  419. struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
  420. regulatory->country_code = CTRY_DEFAULT;
  421. regulatory->power_limit = MAX_RATE_POWER;
  422. ah->hw_version.magic = AR5416_MAGIC;
  423. ah->hw_version.subvendorid = 0;
  424. ah->atim_window = 0;
  425. ah->sta_id1_defaults =
  426. AR_STA_ID1_CRPT_MIC_ENABLE |
  427. AR_STA_ID1_MCAST_KSRCH;
  428. if (AR_SREV_9100(ah))
  429. ah->sta_id1_defaults |= AR_STA_ID1_AR9100_BA_FIX;
  430. ah->slottime = ATH9K_SLOT_TIME_9;
  431. ah->globaltxtimeout = (u32) -1;
  432. ah->power_mode = ATH9K_PM_UNDEFINED;
  433. ah->htc_reset_init = true;
  434. }
  435. static int ath9k_hw_init_macaddr(struct ath_hw *ah)
  436. {
  437. struct ath_common *common = ath9k_hw_common(ah);
  438. u32 sum;
  439. int i;
  440. u16 eeval;
  441. static const u32 EEP_MAC[] = { EEP_MAC_LSW, EEP_MAC_MID, EEP_MAC_MSW };
  442. sum = 0;
  443. for (i = 0; i < 3; i++) {
  444. eeval = ah->eep_ops->get_eeprom(ah, EEP_MAC[i]);
  445. sum += eeval;
  446. common->macaddr[2 * i] = eeval >> 8;
  447. common->macaddr[2 * i + 1] = eeval & 0xff;
  448. }
  449. if (sum == 0 || sum == 0xffff * 3)
  450. return -EADDRNOTAVAIL;
  451. return 0;
  452. }
  453. static int ath9k_hw_post_init(struct ath_hw *ah)
  454. {
  455. struct ath_common *common = ath9k_hw_common(ah);
  456. int ecode;
  457. if (common->bus_ops->ath_bus_type != ATH_USB) {
  458. if (!ath9k_hw_chip_test(ah))
  459. return -ENODEV;
  460. }
  461. if (!AR_SREV_9300_20_OR_LATER(ah)) {
  462. ecode = ar9002_hw_rf_claim(ah);
  463. if (ecode != 0)
  464. return ecode;
  465. }
  466. ecode = ath9k_hw_eeprom_init(ah);
  467. if (ecode != 0)
  468. return ecode;
  469. ath_dbg(ath9k_hw_common(ah), CONFIG, "Eeprom VER: %d, REV: %d\n",
  470. ah->eep_ops->get_eeprom_ver(ah),
  471. ah->eep_ops->get_eeprom_rev(ah));
  472. if (ah->config.enable_ani)
  473. ath9k_hw_ani_init(ah);
  474. return 0;
  475. }
  476. static int ath9k_hw_attach_ops(struct ath_hw *ah)
  477. {
  478. if (!AR_SREV_9300_20_OR_LATER(ah))
  479. return ar9002_hw_attach_ops(ah);
  480. ar9003_hw_attach_ops(ah);
  481. return 0;
  482. }
  483. /* Called for all hardware families */
  484. static int __ath9k_hw_init(struct ath_hw *ah)
  485. {
  486. struct ath_common *common = ath9k_hw_common(ah);
  487. int r = 0;
  488. ath9k_hw_read_revisions(ah);
  489. /*
  490. * Read back AR_WA into a permanent copy and set bits 14 and 17.
  491. * We need to do this to avoid RMW of this register. We cannot
  492. * read the reg when chip is asleep.
  493. */
  494. ah->WARegVal = REG_READ(ah, AR_WA);
  495. ah->WARegVal |= (AR_WA_D3_L1_DISABLE |
  496. AR_WA_ASPM_TIMER_BASED_DISABLE);
  497. if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
  498. ath_err(common, "Couldn't reset chip\n");
  499. return -EIO;
  500. }
  501. if (AR_SREV_9462(ah))
  502. ah->WARegVal &= ~AR_WA_D3_L1_DISABLE;
  503. if (AR_SREV_9565(ah)) {
  504. ah->WARegVal |= AR_WA_BIT22;
  505. REG_WRITE(ah, AR_WA, ah->WARegVal);
  506. }
  507. ath9k_hw_init_defaults(ah);
  508. ath9k_hw_init_config(ah);
  509. r = ath9k_hw_attach_ops(ah);
  510. if (r)
  511. return r;
  512. if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
  513. ath_err(common, "Couldn't wakeup chip\n");
  514. return -EIO;
  515. }
  516. if (NR_CPUS > 1 && ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
  517. if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
  518. ((AR_SREV_9160(ah) || AR_SREV_9280(ah) || AR_SREV_9287(ah)) &&
  519. !ah->is_pciexpress)) {
  520. ah->config.serialize_regmode =
  521. SER_REG_MODE_ON;
  522. } else {
  523. ah->config.serialize_regmode =
  524. SER_REG_MODE_OFF;
  525. }
  526. }
  527. ath_dbg(common, RESET, "serialize_regmode is %d\n",
  528. ah->config.serialize_regmode);
  529. if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
  530. ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD >> 1;
  531. else
  532. ah->config.max_txtrig_level = MAX_TX_FIFO_THRESHOLD;
  533. switch (ah->hw_version.macVersion) {
  534. case AR_SREV_VERSION_5416_PCI:
  535. case AR_SREV_VERSION_5416_PCIE:
  536. case AR_SREV_VERSION_9160:
  537. case AR_SREV_VERSION_9100:
  538. case AR_SREV_VERSION_9280:
  539. case AR_SREV_VERSION_9285:
  540. case AR_SREV_VERSION_9287:
  541. case AR_SREV_VERSION_9271:
  542. case AR_SREV_VERSION_9300:
  543. case AR_SREV_VERSION_9330:
  544. case AR_SREV_VERSION_9485:
  545. case AR_SREV_VERSION_9340:
  546. case AR_SREV_VERSION_9462:
  547. case AR_SREV_VERSION_9550:
  548. case AR_SREV_VERSION_9565:
  549. break;
  550. default:
  551. ath_err(common,
  552. "Mac Chip Rev 0x%02x.%x is not supported by this driver\n",
  553. ah->hw_version.macVersion, ah->hw_version.macRev);
  554. return -EOPNOTSUPP;
  555. }
  556. if (AR_SREV_9271(ah) || AR_SREV_9100(ah) || AR_SREV_9340(ah) ||
  557. AR_SREV_9330(ah) || AR_SREV_9550(ah))
  558. ah->is_pciexpress = false;
  559. ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
  560. ath9k_hw_init_cal_settings(ah);
  561. ah->ani_function = ATH9K_ANI_ALL;
  562. if (AR_SREV_9280_20_OR_LATER(ah) && !AR_SREV_9300_20_OR_LATER(ah))
  563. ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
  564. if (!AR_SREV_9300_20_OR_LATER(ah))
  565. ah->ani_function &= ~ATH9K_ANI_MRC_CCK;
  566. if (!ah->is_pciexpress)
  567. ath9k_hw_disablepcie(ah);
  568. r = ath9k_hw_post_init(ah);
  569. if (r)
  570. return r;
  571. ath9k_hw_init_mode_gain_regs(ah);
  572. r = ath9k_hw_fill_cap_info(ah);
  573. if (r)
  574. return r;
  575. r = ath9k_hw_init_macaddr(ah);
  576. if (r) {
  577. ath_err(common, "Failed to initialize MAC address\n");
  578. return r;
  579. }
  580. if (AR_SREV_9285(ah) || AR_SREV_9271(ah))
  581. ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
  582. else
  583. ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
  584. if (AR_SREV_9330(ah))
  585. ah->bb_watchdog_timeout_ms = 85;
  586. else
  587. ah->bb_watchdog_timeout_ms = 25;
  588. common->state = ATH_HW_INITIALIZED;
  589. return 0;
  590. }
  591. int ath9k_hw_init(struct ath_hw *ah)
  592. {
  593. int ret;
  594. struct ath_common *common = ath9k_hw_common(ah);
  595. /* These are all the AR5008/AR9001/AR9002/AR9003 hardware family of chipsets */
  596. switch (ah->hw_version.devid) {
  597. case AR5416_DEVID_PCI:
  598. case AR5416_DEVID_PCIE:
  599. case AR5416_AR9100_DEVID:
  600. case AR9160_DEVID_PCI:
  601. case AR9280_DEVID_PCI:
  602. case AR9280_DEVID_PCIE:
  603. case AR9285_DEVID_PCIE:
  604. case AR9287_DEVID_PCI:
  605. case AR9287_DEVID_PCIE:
  606. case AR2427_DEVID_PCIE:
  607. case AR9300_DEVID_PCIE:
  608. case AR9300_DEVID_AR9485_PCIE:
  609. case AR9300_DEVID_AR9330:
  610. case AR9300_DEVID_AR9340:
  611. case AR9300_DEVID_QCA955X:
  612. case AR9300_DEVID_AR9580:
  613. case AR9300_DEVID_AR9462:
  614. case AR9485_DEVID_AR1111:
  615. case AR9300_DEVID_AR9565:
  616. break;
  617. default:
  618. if (common->bus_ops->ath_bus_type == ATH_USB)
  619. break;
  620. ath_err(common, "Hardware device ID 0x%04x not supported\n",
  621. ah->hw_version.devid);
  622. return -EOPNOTSUPP;
  623. }
  624. ret = __ath9k_hw_init(ah);
  625. if (ret) {
  626. ath_err(common,
  627. "Unable to initialize hardware; initialization status: %d\n",
  628. ret);
  629. return ret;
  630. }
  631. return 0;
  632. }
  633. EXPORT_SYMBOL(ath9k_hw_init);
  634. static void ath9k_hw_init_qos(struct ath_hw *ah)
  635. {
  636. ENABLE_REGWRITE_BUFFER(ah);
  637. REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
  638. REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
  639. REG_WRITE(ah, AR_QOS_NO_ACK,
  640. SM(2, AR_QOS_NO_ACK_TWO_BIT) |
  641. SM(5, AR_QOS_NO_ACK_BIT_OFF) |
  642. SM(0, AR_QOS_NO_ACK_BYTE_OFF));
  643. REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
  644. REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
  645. REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
  646. REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
  647. REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
  648. REGWRITE_BUFFER_FLUSH(ah);
  649. }
  650. u32 ar9003_get_pll_sqsum_dvc(struct ath_hw *ah)
  651. {
  652. struct ath_common *common = ath9k_hw_common(ah);
  653. int i = 0;
  654. REG_CLR_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
  655. udelay(100);
  656. REG_SET_BIT(ah, PLL3, PLL3_DO_MEAS_MASK);
  657. while ((REG_READ(ah, PLL4) & PLL4_MEAS_DONE) == 0) {
  658. udelay(100);
  659. if (WARN_ON_ONCE(i >= 100)) {
  660. ath_err(common, "PLL4 meaurement not done\n");
  661. break;
  662. }
  663. i++;
  664. }
  665. return (REG_READ(ah, PLL3) & SQSUM_DVC_MASK) >> 3;
  666. }
  667. EXPORT_SYMBOL(ar9003_get_pll_sqsum_dvc);
  668. static void ath9k_hw_init_pll(struct ath_hw *ah,
  669. struct ath9k_channel *chan)
  670. {
  671. u32 pll;
  672. if (AR_SREV_9485(ah) || AR_SREV_9565(ah)) {
  673. /* program BB PLL ki and kd value, ki=0x4, kd=0x40 */
  674. REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
  675. AR_CH0_BB_DPLL2_PLL_PWD, 0x1);
  676. REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
  677. AR_CH0_DPLL2_KD, 0x40);
  678. REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
  679. AR_CH0_DPLL2_KI, 0x4);
  680. REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
  681. AR_CH0_BB_DPLL1_REFDIV, 0x5);
  682. REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
  683. AR_CH0_BB_DPLL1_NINI, 0x58);
  684. REG_RMW_FIELD(ah, AR_CH0_BB_DPLL1,
  685. AR_CH0_BB_DPLL1_NFRAC, 0x0);
  686. REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
  687. AR_CH0_BB_DPLL2_OUTDIV, 0x1);
  688. REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
  689. AR_CH0_BB_DPLL2_LOCAL_PLL, 0x1);
  690. REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
  691. AR_CH0_BB_DPLL2_EN_NEGTRIG, 0x1);
  692. /* program BB PLL phase_shift to 0x6 */
  693. REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
  694. AR_CH0_BB_DPLL3_PHASE_SHIFT, 0x6);
  695. REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2,
  696. AR_CH0_BB_DPLL2_PLL_PWD, 0x0);
  697. udelay(1000);
  698. } else if (AR_SREV_9330(ah)) {
  699. u32 ddr_dpll2, pll_control2, kd;
  700. if (ah->is_clk_25mhz) {
  701. ddr_dpll2 = 0x18e82f01;
  702. pll_control2 = 0xe04a3d;
  703. kd = 0x1d;
  704. } else {
  705. ddr_dpll2 = 0x19e82f01;
  706. pll_control2 = 0x886666;
  707. kd = 0x3d;
  708. }
  709. /* program DDR PLL ki and kd value */
  710. REG_WRITE(ah, AR_CH0_DDR_DPLL2, ddr_dpll2);
  711. /* program DDR PLL phase_shift */
  712. REG_RMW_FIELD(ah, AR_CH0_DDR_DPLL3,
  713. AR_CH0_DPLL3_PHASE_SHIFT, 0x1);
  714. REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x1142c);
  715. udelay(1000);
  716. /* program refdiv, nint, frac to RTC register */
  717. REG_WRITE(ah, AR_RTC_PLL_CONTROL2, pll_control2);
  718. /* program BB PLL kd and ki value */
  719. REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2, AR_CH0_DPLL2_KD, kd);
  720. REG_RMW_FIELD(ah, AR_CH0_BB_DPLL2, AR_CH0_DPLL2_KI, 0x06);
  721. /* program BB PLL phase_shift */
  722. REG_RMW_FIELD(ah, AR_CH0_BB_DPLL3,
  723. AR_CH0_BB_DPLL3_PHASE_SHIFT, 0x1);
  724. } else if (AR_SREV_9340(ah) || AR_SREV_9550(ah)) {
  725. u32 regval, pll2_divint, pll2_divfrac, refdiv;
  726. REG_WRITE(ah, AR_RTC_PLL_CONTROL, 0x1142c);
  727. udelay(1000);
  728. REG_SET_BIT(ah, AR_PHY_PLL_MODE, 0x1 << 16);
  729. udelay(100);
  730. if (ah->is_clk_25mhz) {
  731. pll2_divint = 0x54;
  732. pll2_divfrac = 0x1eb85;
  733. refdiv = 3;
  734. } else {
  735. if (AR_SREV_9340(ah)) {
  736. pll2_divint = 88;
  737. pll2_divfrac = 0;
  738. refdiv = 5;
  739. } else {
  740. pll2_divint = 0x11;
  741. pll2_divfrac = 0x26666;
  742. refdiv = 1;
  743. }
  744. }
  745. regval = REG_READ(ah, AR_PHY_PLL_MODE);
  746. regval |= (0x1 << 16);
  747. REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
  748. udelay(100);
  749. REG_WRITE(ah, AR_PHY_PLL_CONTROL, (refdiv << 27) |
  750. (pll2_divint << 18) | pll2_divfrac);
  751. udelay(100);
  752. regval = REG_READ(ah, AR_PHY_PLL_MODE);
  753. if (AR_SREV_9340(ah))
  754. regval = (regval & 0x80071fff) | (0x1 << 30) |
  755. (0x1 << 13) | (0x4 << 26) | (0x18 << 19);
  756. else
  757. regval = (regval & 0x80071fff) | (0x3 << 30) |
  758. (0x1 << 13) | (0x4 << 26) | (0x60 << 19);
  759. REG_WRITE(ah, AR_PHY_PLL_MODE, regval);
  760. REG_WRITE(ah, AR_PHY_PLL_MODE,
  761. REG_READ(ah, AR_PHY_PLL_MODE) & 0xfffeffff);
  762. udelay(1000);
  763. }
  764. pll = ath9k_hw_compute_pll_control(ah, chan);
  765. if (AR_SREV_9565(ah))
  766. pll |= 0x40000;
  767. REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
  768. if (AR_SREV_9485(ah) || AR_SREV_9340(ah) || AR_SREV_9330(ah) ||
  769. AR_SREV_9550(ah))
  770. udelay(1000);
  771. /* Switch the core clock for ar9271 to 117Mhz */
  772. if (AR_SREV_9271(ah)) {
  773. udelay(500);
  774. REG_WRITE(ah, 0x50040, 0x304);
  775. }
  776. udelay(RTC_PLL_SETTLE_DELAY);
  777. REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
  778. if (AR_SREV_9340(ah) || AR_SREV_9550(ah)) {
  779. if (ah->is_clk_25mhz) {
  780. REG_WRITE(ah, AR_RTC_DERIVED_CLK, 0x17c << 1);
  781. REG_WRITE(ah, AR_SLP32_MODE, 0x0010f3d7);
  782. REG_WRITE(ah, AR_SLP32_INC, 0x0001e7ae);
  783. } else {
  784. REG_WRITE(ah, AR_RTC_DERIVED_CLK, 0x261 << 1);
  785. REG_WRITE(ah, AR_SLP32_MODE, 0x0010f400);
  786. REG_WRITE(ah, AR_SLP32_INC, 0x0001e800);
  787. }
  788. udelay(100);
  789. }
  790. }
  791. static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
  792. enum nl80211_iftype opmode)
  793. {
  794. u32 sync_default = AR_INTR_SYNC_DEFAULT;
  795. u32 imr_reg = AR_IMR_TXERR |
  796. AR_IMR_TXURN |
  797. AR_IMR_RXERR |
  798. AR_IMR_RXORN |
  799. AR_IMR_BCNMISC;
  800. if (AR_SREV_9340(ah) || AR_SREV_9550(ah))
  801. sync_default &= ~AR_INTR_SYNC_HOST1_FATAL;
  802. if (AR_SREV_9300_20_OR_LATER(ah)) {
  803. imr_reg |= AR_IMR_RXOK_HP;
  804. if (ah->config.rx_intr_mitigation)
  805. imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
  806. else
  807. imr_reg |= AR_IMR_RXOK_LP;
  808. } else {
  809. if (ah->config.rx_intr_mitigation)
  810. imr_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
  811. else
  812. imr_reg |= AR_IMR_RXOK;
  813. }
  814. if (ah->config.tx_intr_mitigation)
  815. imr_reg |= AR_IMR_TXINTM | AR_IMR_TXMINTR;
  816. else
  817. imr_reg |= AR_IMR_TXOK;
  818. ENABLE_REGWRITE_BUFFER(ah);
  819. REG_WRITE(ah, AR_IMR, imr_reg);
  820. ah->imrs2_reg |= AR_IMR_S2_GTT;
  821. REG_WRITE(ah, AR_IMR_S2, ah->imrs2_reg);
  822. if (!AR_SREV_9100(ah)) {
  823. REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
  824. REG_WRITE(ah, AR_INTR_SYNC_ENABLE, sync_default);
  825. REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
  826. }
  827. REGWRITE_BUFFER_FLUSH(ah);
  828. if (AR_SREV_9300_20_OR_LATER(ah)) {
  829. REG_WRITE(ah, AR_INTR_PRIO_ASYNC_ENABLE, 0);
  830. REG_WRITE(ah, AR_INTR_PRIO_ASYNC_MASK, 0);
  831. REG_WRITE(ah, AR_INTR_PRIO_SYNC_ENABLE, 0);
  832. REG_WRITE(ah, AR_INTR_PRIO_SYNC_MASK, 0);
  833. }
  834. }
  835. static void ath9k_hw_set_sifs_time(struct ath_hw *ah, u32 us)
  836. {
  837. u32 val = ath9k_hw_mac_to_clks(ah, us - 2);
  838. val = min(val, (u32) 0xFFFF);
  839. REG_WRITE(ah, AR_D_GBL_IFS_SIFS, val);
  840. }
  841. static void ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
  842. {
  843. u32 val = ath9k_hw_mac_to_clks(ah, us);
  844. val = min(val, (u32) 0xFFFF);
  845. REG_WRITE(ah, AR_D_GBL_IFS_SLOT, val);
  846. }
  847. static void ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
  848. {
  849. u32 val = ath9k_hw_mac_to_clks(ah, us);
  850. val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_ACK));
  851. REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_ACK, val);
  852. }
  853. static void ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
  854. {
  855. u32 val = ath9k_hw_mac_to_clks(ah, us);
  856. val = min(val, (u32) MS(0xFFFFFFFF, AR_TIME_OUT_CTS));
  857. REG_RMW_FIELD(ah, AR_TIME_OUT, AR_TIME_OUT_CTS, val);
  858. }
  859. static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
  860. {
  861. if (tu > 0xFFFF) {
  862. ath_dbg(ath9k_hw_common(ah), XMIT, "bad global tx timeout %u\n",
  863. tu);
  864. ah->globaltxtimeout = (u32) -1;
  865. return false;
  866. } else {
  867. REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
  868. ah->globaltxtimeout = tu;
  869. return true;
  870. }
  871. }
  872. void ath9k_hw_init_global_settings(struct ath_hw *ah)
  873. {
  874. struct ath_common *common = ath9k_hw_common(ah);
  875. struct ieee80211_conf *conf = &common->hw->conf;
  876. const struct ath9k_channel *chan = ah->curchan;
  877. int acktimeout, ctstimeout, ack_offset = 0;
  878. int slottime;
  879. int sifstime;
  880. int rx_lat = 0, tx_lat = 0, eifs = 0;
  881. u32 reg;
  882. ath_dbg(ath9k_hw_common(ah), RESET, "ah->misc_mode 0x%x\n",
  883. ah->misc_mode);
  884. if (!chan)
  885. return;
  886. if (ah->misc_mode != 0)
  887. REG_SET_BIT(ah, AR_PCU_MISC, ah->misc_mode);
  888. if (IS_CHAN_A_FAST_CLOCK(ah, chan))
  889. rx_lat = 41;
  890. else
  891. rx_lat = 37;
  892. tx_lat = 54;
  893. if (IS_CHAN_5GHZ(chan))
  894. sifstime = 16;
  895. else
  896. sifstime = 10;
  897. if (IS_CHAN_HALF_RATE(chan)) {
  898. eifs = 175;
  899. rx_lat *= 2;
  900. tx_lat *= 2;
  901. if (IS_CHAN_A_FAST_CLOCK(ah, chan))
  902. tx_lat += 11;
  903. sifstime *= 2;
  904. ack_offset = 16;
  905. slottime = 13;
  906. } else if (IS_CHAN_QUARTER_RATE(chan)) {
  907. eifs = 340;
  908. rx_lat = (rx_lat * 4) - 1;
  909. tx_lat *= 4;
  910. if (IS_CHAN_A_FAST_CLOCK(ah, chan))
  911. tx_lat += 22;
  912. sifstime *= 4;
  913. ack_offset = 32;
  914. slottime = 21;
  915. } else {
  916. if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah)) {
  917. eifs = AR_D_GBL_IFS_EIFS_ASYNC_FIFO;
  918. reg = AR_USEC_ASYNC_FIFO;
  919. } else {
  920. eifs = REG_READ(ah, AR_D_GBL_IFS_EIFS)/
  921. common->clockrate;
  922. reg = REG_READ(ah, AR_USEC);
  923. }
  924. rx_lat = MS(reg, AR_USEC_RX_LAT);
  925. tx_lat = MS(reg, AR_USEC_TX_LAT);
  926. slottime = ah->slottime;
  927. }
  928. /* As defined by IEEE 802.11-2007 17.3.8.6 */
  929. acktimeout = slottime + sifstime + 3 * ah->coverage_class + ack_offset;
  930. ctstimeout = acktimeout;
  931. /*
  932. * Workaround for early ACK timeouts, add an offset to match the
  933. * initval's 64us ack timeout value. Use 48us for the CTS timeout.
  934. * This was initially only meant to work around an issue with delayed
  935. * BA frames in some implementations, but it has been found to fix ACK
  936. * timeout issues in other cases as well.
  937. */
  938. if (conf->chandef.chan &&
  939. conf->chandef.chan->band == IEEE80211_BAND_2GHZ &&
  940. !IS_CHAN_HALF_RATE(chan) && !IS_CHAN_QUARTER_RATE(chan)) {
  941. acktimeout += 64 - sifstime - ah->slottime;
  942. ctstimeout += 48 - sifstime - ah->slottime;
  943. }
  944. ath9k_hw_set_sifs_time(ah, sifstime);
  945. ath9k_hw_setslottime(ah, slottime);
  946. ath9k_hw_set_ack_timeout(ah, acktimeout);
  947. ath9k_hw_set_cts_timeout(ah, ctstimeout);
  948. if (ah->globaltxtimeout != (u32) -1)
  949. ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
  950. REG_WRITE(ah, AR_D_GBL_IFS_EIFS, ath9k_hw_mac_to_clks(ah, eifs));
  951. REG_RMW(ah, AR_USEC,
  952. (common->clockrate - 1) |
  953. SM(rx_lat, AR_USEC_RX_LAT) |
  954. SM(tx_lat, AR_USEC_TX_LAT),
  955. AR_USEC_TX_LAT | AR_USEC_RX_LAT | AR_USEC_USEC);
  956. }
  957. EXPORT_SYMBOL(ath9k_hw_init_global_settings);
  958. void ath9k_hw_deinit(struct ath_hw *ah)
  959. {
  960. struct ath_common *common = ath9k_hw_common(ah);
  961. if (common->state < ATH_HW_INITIALIZED)
  962. return;
  963. ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
  964. }
  965. EXPORT_SYMBOL(ath9k_hw_deinit);
  966. /*******/
  967. /* INI */
  968. /*******/
  969. u32 ath9k_regd_get_ctl(struct ath_regulatory *reg, struct ath9k_channel *chan)
  970. {
  971. u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
  972. if (IS_CHAN_B(chan))
  973. ctl |= CTL_11B;
  974. else if (IS_CHAN_G(chan))
  975. ctl |= CTL_11G;
  976. else
  977. ctl |= CTL_11A;
  978. return ctl;
  979. }
  980. /****************************************/
  981. /* Reset and Channel Switching Routines */
  982. /****************************************/
  983. static inline void ath9k_hw_set_dma(struct ath_hw *ah)
  984. {
  985. struct ath_common *common = ath9k_hw_common(ah);
  986. ENABLE_REGWRITE_BUFFER(ah);
  987. /*
  988. * set AHB_MODE not to do cacheline prefetches
  989. */
  990. if (!AR_SREV_9300_20_OR_LATER(ah))
  991. REG_SET_BIT(ah, AR_AHB_MODE, AR_AHB_PREFETCH_RD_EN);
  992. /*
  993. * let mac dma reads be in 128 byte chunks
  994. */
  995. REG_RMW(ah, AR_TXCFG, AR_TXCFG_DMASZ_128B, AR_TXCFG_DMASZ_MASK);
  996. REGWRITE_BUFFER_FLUSH(ah);
  997. /*
  998. * Restore TX Trigger Level to its pre-reset value.
  999. * The initial value depends on whether aggregation is enabled, and is
  1000. * adjusted whenever underruns are detected.
  1001. */
  1002. if (!AR_SREV_9300_20_OR_LATER(ah))
  1003. REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
  1004. ENABLE_REGWRITE_BUFFER(ah);
  1005. /*
  1006. * let mac dma writes be in 128 byte chunks
  1007. */
  1008. REG_RMW(ah, AR_RXCFG, AR_RXCFG_DMASZ_128B, AR_RXCFG_DMASZ_MASK);
  1009. /*
  1010. * Setup receive FIFO threshold to hold off TX activities
  1011. */
  1012. REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
  1013. if (AR_SREV_9300_20_OR_LATER(ah)) {
  1014. REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_HP, 0x1);
  1015. REG_RMW_FIELD(ah, AR_RXBP_THRESH, AR_RXBP_THRESH_LP, 0x1);
  1016. ath9k_hw_set_rx_bufsize(ah, common->rx_bufsize -
  1017. ah->caps.rx_status_len);
  1018. }
  1019. /*
  1020. * reduce the number of usable entries in PCU TXBUF to avoid
  1021. * wrap around issues.
  1022. */
  1023. if (AR_SREV_9285(ah)) {
  1024. /* For AR9285 the number of Fifos are reduced to half.
  1025. * So set the usable tx buf size also to half to
  1026. * avoid data/delimiter underruns
  1027. */
  1028. REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
  1029. AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
  1030. } else if (!AR_SREV_9271(ah)) {
  1031. REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
  1032. AR_PCU_TXBUF_CTRL_USABLE_SIZE);
  1033. }
  1034. REGWRITE_BUFFER_FLUSH(ah);
  1035. if (AR_SREV_9300_20_OR_LATER(ah))
  1036. ath9k_hw_reset_txstatus_ring(ah);
  1037. }
  1038. static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
  1039. {
  1040. u32 mask = AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC;
  1041. u32 set = AR_STA_ID1_KSRCH_MODE;
  1042. switch (opmode) {
  1043. case NL80211_IFTYPE_ADHOC:
  1044. case NL80211_IFTYPE_MESH_POINT:
  1045. set |= AR_STA_ID1_ADHOC;
  1046. REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
  1047. break;
  1048. case NL80211_IFTYPE_AP:
  1049. set |= AR_STA_ID1_STA_AP;
  1050. /* fall through */
  1051. case NL80211_IFTYPE_STATION:
  1052. REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
  1053. break;
  1054. default:
  1055. if (!ah->is_monitoring)
  1056. set = 0;
  1057. break;
  1058. }
  1059. REG_RMW(ah, AR_STA_ID1, set, mask);
  1060. }
  1061. void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah, u32 coef_scaled,
  1062. u32 *coef_mantissa, u32 *coef_exponent)
  1063. {
  1064. u32 coef_exp, coef_man;
  1065. for (coef_exp = 31; coef_exp > 0; coef_exp--)
  1066. if ((coef_scaled >> coef_exp) & 0x1)
  1067. break;
  1068. coef_exp = 14 - (coef_exp - COEF_SCALE_S);
  1069. coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
  1070. *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
  1071. *coef_exponent = coef_exp - 16;
  1072. }
  1073. static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
  1074. {
  1075. u32 rst_flags;
  1076. u32 tmpReg;
  1077. if (AR_SREV_9100(ah)) {
  1078. REG_RMW_FIELD(ah, AR_RTC_DERIVED_CLK,
  1079. AR_RTC_DERIVED_CLK_PERIOD, 1);
  1080. (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
  1081. }
  1082. ENABLE_REGWRITE_BUFFER(ah);
  1083. if (AR_SREV_9300_20_OR_LATER(ah)) {
  1084. REG_WRITE(ah, AR_WA, ah->WARegVal);
  1085. udelay(10);
  1086. }
  1087. REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
  1088. AR_RTC_FORCE_WAKE_ON_INT);
  1089. if (AR_SREV_9100(ah)) {
  1090. rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
  1091. AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
  1092. } else {
  1093. tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
  1094. if (tmpReg &
  1095. (AR_INTR_SYNC_LOCAL_TIMEOUT |
  1096. AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
  1097. u32 val;
  1098. REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
  1099. val = AR_RC_HOSTIF;
  1100. if (!AR_SREV_9300_20_OR_LATER(ah))
  1101. val |= AR_RC_AHB;
  1102. REG_WRITE(ah, AR_RC, val);
  1103. } else if (!AR_SREV_9300_20_OR_LATER(ah))
  1104. REG_WRITE(ah, AR_RC, AR_RC_AHB);
  1105. rst_flags = AR_RTC_RC_MAC_WARM;
  1106. if (type == ATH9K_RESET_COLD)
  1107. rst_flags |= AR_RTC_RC_MAC_COLD;
  1108. }
  1109. if (AR_SREV_9330(ah)) {
  1110. int npend = 0;
  1111. int i;
  1112. /* AR9330 WAR:
  1113. * call external reset function to reset WMAC if:
  1114. * - doing a cold reset
  1115. * - we have pending frames in the TX queues
  1116. */
  1117. for (i = 0; i < AR_NUM_QCU; i++) {
  1118. npend = ath9k_hw_numtxpending(ah, i);
  1119. if (npend)
  1120. break;
  1121. }
  1122. if (ah->external_reset &&
  1123. (npend || type == ATH9K_RESET_COLD)) {
  1124. int reset_err = 0;
  1125. ath_dbg(ath9k_hw_common(ah), RESET,
  1126. "reset MAC via external reset\n");
  1127. reset_err = ah->external_reset();
  1128. if (reset_err) {
  1129. ath_err(ath9k_hw_common(ah),
  1130. "External reset failed, err=%d\n",
  1131. reset_err);
  1132. return false;
  1133. }
  1134. REG_WRITE(ah, AR_RTC_RESET, 1);
  1135. }
  1136. }
  1137. if (ath9k_hw_mci_is_enabled(ah))
  1138. ar9003_mci_check_gpm_offset(ah);
  1139. REG_WRITE(ah, AR_RTC_RC, rst_flags);
  1140. REGWRITE_BUFFER_FLUSH(ah);
  1141. udelay(50);
  1142. REG_WRITE(ah, AR_RTC_RC, 0);
  1143. if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
  1144. ath_dbg(ath9k_hw_common(ah), RESET, "RTC stuck in MAC reset\n");
  1145. return false;
  1146. }
  1147. if (!AR_SREV_9100(ah))
  1148. REG_WRITE(ah, AR_RC, 0);
  1149. if (AR_SREV_9100(ah))
  1150. udelay(50);
  1151. return true;
  1152. }
  1153. static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
  1154. {
  1155. ENABLE_REGWRITE_BUFFER(ah);
  1156. if (AR_SREV_9300_20_OR_LATER(ah)) {
  1157. REG_WRITE(ah, AR_WA, ah->WARegVal);
  1158. udelay(10);
  1159. }
  1160. REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
  1161. AR_RTC_FORCE_WAKE_ON_INT);
  1162. if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
  1163. REG_WRITE(ah, AR_RC, AR_RC_AHB);
  1164. REG_WRITE(ah, AR_RTC_RESET, 0);
  1165. REGWRITE_BUFFER_FLUSH(ah);
  1166. if (!AR_SREV_9300_20_OR_LATER(ah))
  1167. udelay(2);
  1168. if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
  1169. REG_WRITE(ah, AR_RC, 0);
  1170. REG_WRITE(ah, AR_RTC_RESET, 1);
  1171. if (!ath9k_hw_wait(ah,
  1172. AR_RTC_STATUS,
  1173. AR_RTC_STATUS_M,
  1174. AR_RTC_STATUS_ON,
  1175. AH_WAIT_TIMEOUT)) {
  1176. ath_dbg(ath9k_hw_common(ah), RESET, "RTC not waking up\n");
  1177. return false;
  1178. }
  1179. return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
  1180. }
  1181. static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
  1182. {
  1183. bool ret = false;
  1184. if (AR_SREV_9300_20_OR_LATER(ah)) {
  1185. REG_WRITE(ah, AR_WA, ah->WARegVal);
  1186. udelay(10);
  1187. }
  1188. REG_WRITE(ah, AR_RTC_FORCE_WAKE,
  1189. AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
  1190. if (!ah->reset_power_on)
  1191. type = ATH9K_RESET_POWER_ON;
  1192. switch (type) {
  1193. case ATH9K_RESET_POWER_ON:
  1194. ret = ath9k_hw_set_reset_power_on(ah);
  1195. if (ret)
  1196. ah->reset_power_on = true;
  1197. break;
  1198. case ATH9K_RESET_WARM:
  1199. case ATH9K_RESET_COLD:
  1200. ret = ath9k_hw_set_reset(ah, type);
  1201. break;
  1202. default:
  1203. break;
  1204. }
  1205. return ret;
  1206. }
  1207. static bool ath9k_hw_chip_reset(struct ath_hw *ah,
  1208. struct ath9k_channel *chan)
  1209. {
  1210. int reset_type = ATH9K_RESET_WARM;
  1211. if (AR_SREV_9280(ah)) {
  1212. if (ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL))
  1213. reset_type = ATH9K_RESET_POWER_ON;
  1214. else
  1215. reset_type = ATH9K_RESET_COLD;
  1216. } else if (ah->chip_fullsleep || REG_READ(ah, AR_Q_TXE) ||
  1217. (REG_READ(ah, AR_CR) & AR_CR_RXE))
  1218. reset_type = ATH9K_RESET_COLD;
  1219. if (!ath9k_hw_set_reset_reg(ah, reset_type))
  1220. return false;
  1221. if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
  1222. return false;
  1223. ah->chip_fullsleep = false;
  1224. if (AR_SREV_9330(ah))
  1225. ar9003_hw_internal_regulator_apply(ah);
  1226. ath9k_hw_init_pll(ah, chan);
  1227. ath9k_hw_set_rfmode(ah, chan);
  1228. return true;
  1229. }
  1230. static bool ath9k_hw_channel_change(struct ath_hw *ah,
  1231. struct ath9k_channel *chan)
  1232. {
  1233. struct ath_common *common = ath9k_hw_common(ah);
  1234. u32 qnum;
  1235. int r;
  1236. bool edma = !!(ah->caps.hw_caps & ATH9K_HW_CAP_EDMA);
  1237. bool band_switch, mode_diff;
  1238. u8 ini_reloaded;
  1239. band_switch = (chan->channelFlags & (CHANNEL_2GHZ | CHANNEL_5GHZ)) !=
  1240. (ah->curchan->channelFlags & (CHANNEL_2GHZ |
  1241. CHANNEL_5GHZ));
  1242. mode_diff = (chan->chanmode != ah->curchan->chanmode);
  1243. for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
  1244. if (ath9k_hw_numtxpending(ah, qnum)) {
  1245. ath_dbg(common, QUEUE,
  1246. "Transmit frames pending on queue %d\n", qnum);
  1247. return false;
  1248. }
  1249. }
  1250. if (!ath9k_hw_rfbus_req(ah)) {
  1251. ath_err(common, "Could not kill baseband RX\n");
  1252. return false;
  1253. }
  1254. if (edma && (band_switch || mode_diff)) {
  1255. ath9k_hw_mark_phy_inactive(ah);
  1256. udelay(5);
  1257. ath9k_hw_init_pll(ah, NULL);
  1258. if (ath9k_hw_fast_chan_change(ah, chan, &ini_reloaded)) {
  1259. ath_err(common, "Failed to do fast channel change\n");
  1260. return false;
  1261. }
  1262. }
  1263. ath9k_hw_set_channel_regs(ah, chan);
  1264. r = ath9k_hw_rf_set_freq(ah, chan);
  1265. if (r) {
  1266. ath_err(common, "Failed to set channel\n");
  1267. return false;
  1268. }
  1269. ath9k_hw_set_clockrate(ah);
  1270. ath9k_hw_apply_txpower(ah, chan, false);
  1271. ath9k_hw_rfbus_done(ah);
  1272. if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
  1273. ath9k_hw_set_delta_slope(ah, chan);
  1274. ath9k_hw_spur_mitigate_freq(ah, chan);
  1275. if (edma && (band_switch || mode_diff)) {
  1276. ah->ah_flags |= AH_FASTCC;
  1277. if (band_switch || ini_reloaded)
  1278. ah->eep_ops->set_board_values(ah, chan);
  1279. ath9k_hw_init_bb(ah, chan);
  1280. if (band_switch || ini_reloaded)
  1281. ath9k_hw_init_cal(ah, chan);
  1282. ah->ah_flags &= ~AH_FASTCC;
  1283. }
  1284. return true;
  1285. }
  1286. static void ath9k_hw_apply_gpio_override(struct ath_hw *ah)
  1287. {
  1288. u32 gpio_mask = ah->gpio_mask;
  1289. int i;
  1290. for (i = 0; gpio_mask; i++, gpio_mask >>= 1) {
  1291. if (!(gpio_mask & 1))
  1292. continue;
  1293. ath9k_hw_cfg_output(ah, i, AR_GPIO_OUTPUT_MUX_AS_OUTPUT);
  1294. ath9k_hw_set_gpio(ah, i, !!(ah->gpio_val & BIT(i)));
  1295. }
  1296. }
  1297. static bool ath9k_hw_check_dcs(u32 dma_dbg, u32 num_dcu_states,
  1298. int *hang_state, int *hang_pos)
  1299. {
  1300. static u32 dcu_chain_state[] = {5, 6, 9}; /* DCU chain stuck states */
  1301. u32 chain_state, dcs_pos, i;
  1302. for (dcs_pos = 0; dcs_pos < num_dcu_states; dcs_pos++) {
  1303. chain_state = (dma_dbg >> (5 * dcs_pos)) & 0x1f;
  1304. for (i = 0; i < 3; i++) {
  1305. if (chain_state == dcu_chain_state[i]) {
  1306. *hang_state = chain_state;
  1307. *hang_pos = dcs_pos;
  1308. return true;
  1309. }
  1310. }
  1311. }
  1312. return false;
  1313. }
  1314. #define DCU_COMPLETE_STATE 1
  1315. #define DCU_COMPLETE_STATE_MASK 0x3
  1316. #define NUM_STATUS_READS 50
  1317. static bool ath9k_hw_detect_mac_hang(struct ath_hw *ah)
  1318. {
  1319. u32 chain_state, comp_state, dcs_reg = AR_DMADBG_4;
  1320. u32 i, hang_pos, hang_state, num_state = 6;
  1321. comp_state = REG_READ(ah, AR_DMADBG_6);
  1322. if ((comp_state & DCU_COMPLETE_STATE_MASK) != DCU_COMPLETE_STATE) {
  1323. ath_dbg(ath9k_hw_common(ah), RESET,
  1324. "MAC Hang signature not found at DCU complete\n");
  1325. return false;
  1326. }
  1327. chain_state = REG_READ(ah, dcs_reg);
  1328. if (ath9k_hw_check_dcs(chain_state, num_state, &hang_state, &hang_pos))
  1329. goto hang_check_iter;
  1330. dcs_reg = AR_DMADBG_5;
  1331. num_state = 4;
  1332. chain_state = REG_READ(ah, dcs_reg);
  1333. if (ath9k_hw_check_dcs(chain_state, num_state, &hang_state, &hang_pos))
  1334. goto hang_check_iter;
  1335. ath_dbg(ath9k_hw_common(ah), RESET,
  1336. "MAC Hang signature 1 not found\n");
  1337. return false;
  1338. hang_check_iter:
  1339. ath_dbg(ath9k_hw_common(ah), RESET,
  1340. "DCU registers: chain %08x complete %08x Hang: state %d pos %d\n",
  1341. chain_state, comp_state, hang_state, hang_pos);
  1342. for (i = 0; i < NUM_STATUS_READS; i++) {
  1343. chain_state = REG_READ(ah, dcs_reg);
  1344. chain_state = (chain_state >> (5 * hang_pos)) & 0x1f;
  1345. comp_state = REG_READ(ah, AR_DMADBG_6);
  1346. if (((comp_state & DCU_COMPLETE_STATE_MASK) !=
  1347. DCU_COMPLETE_STATE) ||
  1348. (chain_state != hang_state))
  1349. return false;
  1350. }
  1351. ath_dbg(ath9k_hw_common(ah), RESET, "MAC Hang signature 1 found\n");
  1352. return true;
  1353. }
  1354. bool ath9k_hw_check_alive(struct ath_hw *ah)
  1355. {
  1356. int count = 50;
  1357. u32 reg;
  1358. if (AR_SREV_9300(ah))
  1359. return !ath9k_hw_detect_mac_hang(ah);
  1360. if (AR_SREV_9285_12_OR_LATER(ah))
  1361. return true;
  1362. do {
  1363. reg = REG_READ(ah, AR_OBS_BUS_1);
  1364. if ((reg & 0x7E7FFFEF) == 0x00702400)
  1365. continue;
  1366. switch (reg & 0x7E000B00) {
  1367. case 0x1E000000:
  1368. case 0x52000B00:
  1369. case 0x18000B00:
  1370. continue;
  1371. default:
  1372. return true;
  1373. }
  1374. } while (count-- > 0);
  1375. return false;
  1376. }
  1377. EXPORT_SYMBOL(ath9k_hw_check_alive);
  1378. static void ath9k_hw_init_mfp(struct ath_hw *ah)
  1379. {
  1380. /* Setup MFP options for CCMP */
  1381. if (AR_SREV_9280_20_OR_LATER(ah)) {
  1382. /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
  1383. * frames when constructing CCMP AAD. */
  1384. REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
  1385. 0xc7ff);
  1386. ah->sw_mgmt_crypto = false;
  1387. } else if (AR_SREV_9160_10_OR_LATER(ah)) {
  1388. /* Disable hardware crypto for management frames */
  1389. REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
  1390. AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
  1391. REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
  1392. AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
  1393. ah->sw_mgmt_crypto = true;
  1394. } else {
  1395. ah->sw_mgmt_crypto = true;
  1396. }
  1397. }
  1398. static void ath9k_hw_reset_opmode(struct ath_hw *ah,
  1399. u32 macStaId1, u32 saveDefAntenna)
  1400. {
  1401. struct ath_common *common = ath9k_hw_common(ah);
  1402. ENABLE_REGWRITE_BUFFER(ah);
  1403. REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(common->macaddr));
  1404. REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(common->macaddr + 4)
  1405. | macStaId1
  1406. | AR_STA_ID1_RTS_USE_DEF
  1407. | (ah->config.ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
  1408. | ah->sta_id1_defaults);
  1409. ath_hw_setbssidmask(common);
  1410. REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
  1411. ath9k_hw_write_associd(ah);
  1412. REG_WRITE(ah, AR_ISR, ~0);
  1413. REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
  1414. REGWRITE_BUFFER_FLUSH(ah);
  1415. ath9k_hw_set_operating_mode(ah, ah->opmode);
  1416. }
  1417. static void ath9k_hw_init_queues(struct ath_hw *ah)
  1418. {
  1419. int i;
  1420. ENABLE_REGWRITE_BUFFER(ah);
  1421. for (i = 0; i < AR_NUM_DCU; i++)
  1422. REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
  1423. REGWRITE_BUFFER_FLUSH(ah);
  1424. ah->intr_txqs = 0;
  1425. for (i = 0; i < ATH9K_NUM_TX_QUEUES; i++)
  1426. ath9k_hw_resettxqueue(ah, i);
  1427. }
  1428. /*
  1429. * For big endian systems turn on swapping for descriptors
  1430. */
  1431. static void ath9k_hw_init_desc(struct ath_hw *ah)
  1432. {
  1433. struct ath_common *common = ath9k_hw_common(ah);
  1434. if (AR_SREV_9100(ah)) {
  1435. u32 mask;
  1436. mask = REG_READ(ah, AR_CFG);
  1437. if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
  1438. ath_dbg(common, RESET, "CFG Byte Swap Set 0x%x\n",
  1439. mask);
  1440. } else {
  1441. mask = INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
  1442. REG_WRITE(ah, AR_CFG, mask);
  1443. ath_dbg(common, RESET, "Setting CFG 0x%x\n",
  1444. REG_READ(ah, AR_CFG));
  1445. }
  1446. } else {
  1447. if (common->bus_ops->ath_bus_type == ATH_USB) {
  1448. /* Configure AR9271 target WLAN */
  1449. if (AR_SREV_9271(ah))
  1450. REG_WRITE(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB);
  1451. else
  1452. REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
  1453. }
  1454. #ifdef __BIG_ENDIAN
  1455. else if (AR_SREV_9330(ah) || AR_SREV_9340(ah) ||
  1456. AR_SREV_9550(ah))
  1457. REG_RMW(ah, AR_CFG, AR_CFG_SWRB | AR_CFG_SWTB, 0);
  1458. else
  1459. REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
  1460. #endif
  1461. }
  1462. }
  1463. /*
  1464. * Fast channel change:
  1465. * (Change synthesizer based on channel freq without resetting chip)
  1466. *
  1467. * Don't do FCC when
  1468. * - Flag is not set
  1469. * - Chip is just coming out of full sleep
  1470. * - Channel to be set is same as current channel
  1471. * - Channel flags are different, (eg.,moving from 2GHz to 5GHz channel)
  1472. */
  1473. static int ath9k_hw_do_fastcc(struct ath_hw *ah, struct ath9k_channel *chan)
  1474. {
  1475. struct ath_common *common = ath9k_hw_common(ah);
  1476. int ret;
  1477. if (AR_SREV_9280(ah) && common->bus_ops->ath_bus_type == ATH_PCI)
  1478. goto fail;
  1479. if (ah->chip_fullsleep)
  1480. goto fail;
  1481. if (!ah->curchan)
  1482. goto fail;
  1483. if (chan->channel == ah->curchan->channel)
  1484. goto fail;
  1485. if ((ah->curchan->channelFlags | chan->channelFlags) &
  1486. (CHANNEL_HALF | CHANNEL_QUARTER))
  1487. goto fail;
  1488. if ((chan->channelFlags & CHANNEL_ALL) !=
  1489. (ah->curchan->channelFlags & CHANNEL_ALL))
  1490. goto fail;
  1491. if (!ath9k_hw_check_alive(ah))
  1492. goto fail;
  1493. /*
  1494. * For AR9462, make sure that calibration data for
  1495. * re-using are present.
  1496. */
  1497. if (AR_SREV_9462(ah) && (ah->caldata &&
  1498. (!ah->caldata->done_txiqcal_once ||
  1499. !ah->caldata->done_txclcal_once ||
  1500. !ah->caldata->rtt_done)))
  1501. goto fail;
  1502. ath_dbg(common, RESET, "FastChannelChange for %d -> %d\n",
  1503. ah->curchan->channel, chan->channel);
  1504. ret = ath9k_hw_channel_change(ah, chan);
  1505. if (!ret)
  1506. goto fail;
  1507. if (ath9k_hw_mci_is_enabled(ah))
  1508. ar9003_mci_2g5g_switch(ah, false);
  1509. ath9k_hw_loadnf(ah, ah->curchan);
  1510. ath9k_hw_start_nfcal(ah, true);
  1511. if (AR_SREV_9271(ah))
  1512. ar9002_hw_load_ani_reg(ah, chan);
  1513. return 0;
  1514. fail:
  1515. return -EINVAL;
  1516. }
  1517. int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
  1518. struct ath9k_hw_cal_data *caldata, bool fastcc)
  1519. {
  1520. struct ath_common *common = ath9k_hw_common(ah);
  1521. u32 saveLedState;
  1522. u32 saveDefAntenna;
  1523. u32 macStaId1;
  1524. u64 tsf = 0;
  1525. int r;
  1526. bool start_mci_reset = false;
  1527. bool save_fullsleep = ah->chip_fullsleep;
  1528. if (ath9k_hw_mci_is_enabled(ah)) {
  1529. start_mci_reset = ar9003_mci_start_reset(ah, chan);
  1530. if (start_mci_reset)
  1531. return 0;
  1532. }
  1533. if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
  1534. return -EIO;
  1535. if (ah->curchan && !ah->chip_fullsleep)
  1536. ath9k_hw_getnf(ah, ah->curchan);
  1537. ah->caldata = caldata;
  1538. if (caldata && (chan->channel != caldata->channel ||
  1539. chan->channelFlags != caldata->channelFlags)) {
  1540. /* Operating channel changed, reset channel calibration data */
  1541. memset(caldata, 0, sizeof(*caldata));
  1542. ath9k_init_nfcal_hist_buffer(ah, chan);
  1543. } else if (caldata) {
  1544. caldata->paprd_packet_sent = false;
  1545. }
  1546. ah->noise = ath9k_hw_getchan_noise(ah, chan);
  1547. if (fastcc) {
  1548. r = ath9k_hw_do_fastcc(ah, chan);
  1549. if (!r)
  1550. return r;
  1551. }
  1552. if (ath9k_hw_mci_is_enabled(ah))
  1553. ar9003_mci_stop_bt(ah, save_fullsleep);
  1554. saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
  1555. if (saveDefAntenna == 0)
  1556. saveDefAntenna = 1;
  1557. macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
  1558. /* For chips on which RTC reset is done, save TSF before it gets cleared */
  1559. if (AR_SREV_9100(ah) ||
  1560. (AR_SREV_9280(ah) && ah->eep_ops->get_eeprom(ah, EEP_OL_PWRCTRL)))
  1561. tsf = ath9k_hw_gettsf64(ah);
  1562. saveLedState = REG_READ(ah, AR_CFG_LED) &
  1563. (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
  1564. AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
  1565. ath9k_hw_mark_phy_inactive(ah);
  1566. ah->paprd_table_write_done = false;
  1567. /* Only required on the first reset */
  1568. if (AR_SREV_9271(ah) && ah->htc_reset_init) {
  1569. REG_WRITE(ah,
  1570. AR9271_RESET_POWER_DOWN_CONTROL,
  1571. AR9271_RADIO_RF_RST);
  1572. udelay(50);
  1573. }
  1574. if (!ath9k_hw_chip_reset(ah, chan)) {
  1575. ath_err(common, "Chip reset failed\n");
  1576. return -EINVAL;
  1577. }
  1578. /* Only required on the first reset */
  1579. if (AR_SREV_9271(ah) && ah->htc_reset_init) {
  1580. ah->htc_reset_init = false;
  1581. REG_WRITE(ah,
  1582. AR9271_RESET_POWER_DOWN_CONTROL,
  1583. AR9271_GATE_MAC_CTL);
  1584. udelay(50);
  1585. }
  1586. /* Restore TSF */
  1587. if (tsf)
  1588. ath9k_hw_settsf64(ah, tsf);
  1589. if (AR_SREV_9280_20_OR_LATER(ah))
  1590. REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
  1591. if (!AR_SREV_9300_20_OR_LATER(ah))
  1592. ar9002_hw_enable_async_fifo(ah);
  1593. r = ath9k_hw_process_ini(ah, chan);
  1594. if (r)
  1595. return r;
  1596. if (ath9k_hw_mci_is_enabled(ah))
  1597. ar9003_mci_reset(ah, false, IS_CHAN_2GHZ(chan), save_fullsleep);
  1598. /*
  1599. * Some AR91xx SoC devices frequently fail to accept TSF writes
  1600. * right after the chip reset. When that happens, write a new
  1601. * value after the initvals have been applied, with an offset
  1602. * based on measured time difference
  1603. */
  1604. if (AR_SREV_9100(ah) && (ath9k_hw_gettsf64(ah) < tsf)) {
  1605. tsf += 1500;
  1606. ath9k_hw_settsf64(ah, tsf);
  1607. }
  1608. ath9k_hw_init_mfp(ah);
  1609. if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
  1610. ath9k_hw_set_delta_slope(ah, chan);
  1611. ath9k_hw_spur_mitigate_freq(ah, chan);
  1612. ah->eep_ops->set_board_values(ah, chan);
  1613. ath9k_hw_reset_opmode(ah, macStaId1, saveDefAntenna);
  1614. r = ath9k_hw_rf_set_freq(ah, chan);
  1615. if (r)
  1616. return r;
  1617. ath9k_hw_set_clockrate(ah);
  1618. ath9k_hw_init_queues(ah);
  1619. ath9k_hw_init_interrupt_masks(ah, ah->opmode);
  1620. ath9k_hw_ani_cache_ini_regs(ah);
  1621. ath9k_hw_init_qos(ah);
  1622. if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
  1623. ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
  1624. ath9k_hw_init_global_settings(ah);
  1625. if (AR_SREV_9287(ah) && AR_SREV_9287_13_OR_LATER(ah)) {
  1626. REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
  1627. AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
  1628. REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
  1629. AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
  1630. REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
  1631. AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
  1632. }
  1633. REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PRESERVE_SEQNUM);
  1634. ath9k_hw_set_dma(ah);
  1635. if (!ath9k_hw_mci_is_enabled(ah))
  1636. REG_WRITE(ah, AR_OBS, 8);
  1637. if (ah->config.rx_intr_mitigation) {
  1638. REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
  1639. REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
  1640. }
  1641. if (ah->config.tx_intr_mitigation) {
  1642. REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300);
  1643. REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750);
  1644. }
  1645. ath9k_hw_init_bb(ah, chan);
  1646. if (caldata) {
  1647. caldata->done_txiqcal_once = false;
  1648. caldata->done_txclcal_once = false;
  1649. }
  1650. if (!ath9k_hw_init_cal(ah, chan))
  1651. return -EIO;
  1652. if (ath9k_hw_mci_is_enabled(ah) && ar9003_mci_end_reset(ah, chan, caldata))
  1653. return -EIO;
  1654. ENABLE_REGWRITE_BUFFER(ah);
  1655. ath9k_hw_restore_chainmask(ah);
  1656. REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
  1657. REGWRITE_BUFFER_FLUSH(ah);
  1658. ath9k_hw_init_desc(ah);
  1659. if (ath9k_hw_btcoex_is_enabled(ah))
  1660. ath9k_hw_btcoex_enable(ah);
  1661. if (ath9k_hw_mci_is_enabled(ah))
  1662. ar9003_mci_check_bt(ah);
  1663. ath9k_hw_loadnf(ah, chan);
  1664. ath9k_hw_start_nfcal(ah, true);
  1665. if (AR_SREV_9300_20_OR_LATER(ah)) {
  1666. ar9003_hw_bb_watchdog_config(ah);
  1667. ar9003_hw_disable_phy_restart(ah);
  1668. }
  1669. ath9k_hw_apply_gpio_override(ah);
  1670. if (AR_SREV_9565(ah) && ah->shared_chain_lnadiv)
  1671. REG_SET_BIT(ah, AR_BTCOEX_WL_LNADIV, AR_BTCOEX_WL_LNADIV_FORCE_ON);
  1672. return 0;
  1673. }
  1674. EXPORT_SYMBOL(ath9k_hw_reset);
  1675. /******************************/
  1676. /* Power Management (Chipset) */
  1677. /******************************/
  1678. /*
  1679. * Notify Power Mgt is disabled in self-generated frames.
  1680. * If requested, force chip to sleep.
  1681. */
  1682. static void ath9k_set_power_sleep(struct ath_hw *ah)
  1683. {
  1684. REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
  1685. if (AR_SREV_9462(ah) || AR_SREV_9565(ah)) {
  1686. REG_CLR_BIT(ah, AR_TIMER_MODE, 0xff);
  1687. REG_CLR_BIT(ah, AR_NDP2_TIMER_MODE, 0xff);
  1688. REG_CLR_BIT(ah, AR_SLP32_INC, 0xfffff);
  1689. /* xxx Required for WLAN only case ? */
  1690. REG_WRITE(ah, AR_MCI_INTERRUPT_RX_MSG_EN, 0);
  1691. udelay(100);
  1692. }
  1693. /*
  1694. * Clear the RTC force wake bit to allow the
  1695. * mac to go to sleep.
  1696. */
  1697. REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN);
  1698. if (ath9k_hw_mci_is_enabled(ah))
  1699. udelay(100);
  1700. if (!AR_SREV_9100(ah) && !AR_SREV_9300_20_OR_LATER(ah))
  1701. REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
  1702. /* Shutdown chip. Active low */
  1703. if (!AR_SREV_5416(ah) && !AR_SREV_9271(ah)) {
  1704. REG_CLR_BIT(ah, AR_RTC_RESET, AR_RTC_RESET_EN);
  1705. udelay(2);
  1706. }
  1707. /* Clear Bit 14 of AR_WA after putting chip into Full Sleep mode. */
  1708. if (AR_SREV_9300_20_OR_LATER(ah))
  1709. REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
  1710. }
  1711. /*
  1712. * Notify Power Management is enabled in self-generating
  1713. * frames. If request, set power mode of chip to
  1714. * auto/normal. Duration in units of 128us (1/8 TU).
  1715. */
  1716. static void ath9k_set_power_network_sleep(struct ath_hw *ah)
  1717. {
  1718. struct ath9k_hw_capabilities *pCap = &ah->caps;
  1719. REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
  1720. if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
  1721. /* Set WakeOnInterrupt bit; clear ForceWake bit */
  1722. REG_WRITE(ah, AR_RTC_FORCE_WAKE,
  1723. AR_RTC_FORCE_WAKE_ON_INT);
  1724. } else {
  1725. /* When chip goes into network sleep, it could be waken
  1726. * up by MCI_INT interrupt caused by BT's HW messages
  1727. * (LNA_xxx, CONT_xxx) which chould be in a very fast
  1728. * rate (~100us). This will cause chip to leave and
  1729. * re-enter network sleep mode frequently, which in
  1730. * consequence will have WLAN MCI HW to generate lots of
  1731. * SYS_WAKING and SYS_SLEEPING messages which will make
  1732. * BT CPU to busy to process.
  1733. */
  1734. if (ath9k_hw_mci_is_enabled(ah))
  1735. REG_CLR_BIT(ah, AR_MCI_INTERRUPT_RX_MSG_EN,
  1736. AR_MCI_INTERRUPT_RX_HW_MSG_MASK);
  1737. /*
  1738. * Clear the RTC force wake bit to allow the
  1739. * mac to go to sleep.
  1740. */
  1741. REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN);
  1742. if (ath9k_hw_mci_is_enabled(ah))
  1743. udelay(30);
  1744. }
  1745. /* Clear Bit 14 of AR_WA after putting chip into Net Sleep mode. */
  1746. if (AR_SREV_9300_20_OR_LATER(ah))
  1747. REG_WRITE(ah, AR_WA, ah->WARegVal & ~AR_WA_D3_L1_DISABLE);
  1748. }
  1749. static bool ath9k_hw_set_power_awake(struct ath_hw *ah)
  1750. {
  1751. u32 val;
  1752. int i;
  1753. /* Set Bits 14 and 17 of AR_WA before powering on the chip. */
  1754. if (AR_SREV_9300_20_OR_LATER(ah)) {
  1755. REG_WRITE(ah, AR_WA, ah->WARegVal);
  1756. udelay(10);
  1757. }
  1758. if ((REG_READ(ah, AR_RTC_STATUS) &
  1759. AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
  1760. if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
  1761. return false;
  1762. }
  1763. if (!AR_SREV_9300_20_OR_LATER(ah))
  1764. ath9k_hw_init_pll(ah, NULL);
  1765. }
  1766. if (AR_SREV_9100(ah))
  1767. REG_SET_BIT(ah, AR_RTC_RESET,
  1768. AR_RTC_RESET_EN);
  1769. REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
  1770. AR_RTC_FORCE_WAKE_EN);
  1771. udelay(50);
  1772. for (i = POWER_UP_TIME / 50; i > 0; i--) {
  1773. val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
  1774. if (val == AR_RTC_STATUS_ON)
  1775. break;
  1776. udelay(50);
  1777. REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
  1778. AR_RTC_FORCE_WAKE_EN);
  1779. }
  1780. if (i == 0) {
  1781. ath_err(ath9k_hw_common(ah),
  1782. "Failed to wakeup in %uus\n",
  1783. POWER_UP_TIME / 20);
  1784. return false;
  1785. }
  1786. if (ath9k_hw_mci_is_enabled(ah))
  1787. ar9003_mci_set_power_awake(ah);
  1788. REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
  1789. return true;
  1790. }
  1791. bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
  1792. {
  1793. struct ath_common *common = ath9k_hw_common(ah);
  1794. int status = true;
  1795. static const char *modes[] = {
  1796. "AWAKE",
  1797. "FULL-SLEEP",
  1798. "NETWORK SLEEP",
  1799. "UNDEFINED"
  1800. };
  1801. if (ah->power_mode == mode)
  1802. return status;
  1803. ath_dbg(common, RESET, "%s -> %s\n",
  1804. modes[ah->power_mode], modes[mode]);
  1805. switch (mode) {
  1806. case ATH9K_PM_AWAKE:
  1807. status = ath9k_hw_set_power_awake(ah);
  1808. break;
  1809. case ATH9K_PM_FULL_SLEEP:
  1810. if (ath9k_hw_mci_is_enabled(ah))
  1811. ar9003_mci_set_full_sleep(ah);
  1812. ath9k_set_power_sleep(ah);
  1813. ah->chip_fullsleep = true;
  1814. break;
  1815. case ATH9K_PM_NETWORK_SLEEP:
  1816. ath9k_set_power_network_sleep(ah);
  1817. break;
  1818. default:
  1819. ath_err(common, "Unknown power mode %u\n", mode);
  1820. return false;
  1821. }
  1822. ah->power_mode = mode;
  1823. /*
  1824. * XXX: If this warning never comes up after a while then
  1825. * simply keep the ATH_DBG_WARN_ON_ONCE() but make
  1826. * ath9k_hw_setpower() return type void.
  1827. */
  1828. if (!(ah->ah_flags & AH_UNPLUGGED))
  1829. ATH_DBG_WARN_ON_ONCE(!status);
  1830. return status;
  1831. }
  1832. EXPORT_SYMBOL(ath9k_hw_setpower);
  1833. /*******************/
  1834. /* Beacon Handling */
  1835. /*******************/
  1836. void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
  1837. {
  1838. int flags = 0;
  1839. ENABLE_REGWRITE_BUFFER(ah);
  1840. switch (ah->opmode) {
  1841. case NL80211_IFTYPE_ADHOC:
  1842. case NL80211_IFTYPE_MESH_POINT:
  1843. REG_SET_BIT(ah, AR_TXCFG,
  1844. AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
  1845. REG_WRITE(ah, AR_NEXT_NDP_TIMER, next_beacon +
  1846. TU_TO_USEC(ah->atim_window ? ah->atim_window : 1));
  1847. flags |= AR_NDP_TIMER_EN;
  1848. case NL80211_IFTYPE_AP:
  1849. REG_WRITE(ah, AR_NEXT_TBTT_TIMER, next_beacon);
  1850. REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, next_beacon -
  1851. TU_TO_USEC(ah->config.dma_beacon_response_time));
  1852. REG_WRITE(ah, AR_NEXT_SWBA, next_beacon -
  1853. TU_TO_USEC(ah->config.sw_beacon_response_time));
  1854. flags |=
  1855. AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
  1856. break;
  1857. default:
  1858. ath_dbg(ath9k_hw_common(ah), BEACON,
  1859. "%s: unsupported opmode: %d\n", __func__, ah->opmode);
  1860. return;
  1861. break;
  1862. }
  1863. REG_WRITE(ah, AR_BEACON_PERIOD, beacon_period);
  1864. REG_WRITE(ah, AR_DMA_BEACON_PERIOD, beacon_period);
  1865. REG_WRITE(ah, AR_SWBA_PERIOD, beacon_period);
  1866. REG_WRITE(ah, AR_NDP_PERIOD, beacon_period);
  1867. REGWRITE_BUFFER_FLUSH(ah);
  1868. REG_SET_BIT(ah, AR_TIMER_MODE, flags);
  1869. }
  1870. EXPORT_SYMBOL(ath9k_hw_beaconinit);
  1871. void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
  1872. const struct ath9k_beacon_state *bs)
  1873. {
  1874. u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
  1875. struct ath9k_hw_capabilities *pCap = &ah->caps;
  1876. struct ath_common *common = ath9k_hw_common(ah);
  1877. ENABLE_REGWRITE_BUFFER(ah);
  1878. REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
  1879. REG_WRITE(ah, AR_BEACON_PERIOD,
  1880. TU_TO_USEC(bs->bs_intval));
  1881. REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
  1882. TU_TO_USEC(bs->bs_intval));
  1883. REGWRITE_BUFFER_FLUSH(ah);
  1884. REG_RMW_FIELD(ah, AR_RSSI_THR,
  1885. AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
  1886. beaconintval = bs->bs_intval;
  1887. if (bs->bs_sleepduration > beaconintval)
  1888. beaconintval = bs->bs_sleepduration;
  1889. dtimperiod = bs->bs_dtimperiod;
  1890. if (bs->bs_sleepduration > dtimperiod)
  1891. dtimperiod = bs->bs_sleepduration;
  1892. if (beaconintval == dtimperiod)
  1893. nextTbtt = bs->bs_nextdtim;
  1894. else
  1895. nextTbtt = bs->bs_nexttbtt;
  1896. ath_dbg(common, BEACON, "next DTIM %d\n", bs->bs_nextdtim);
  1897. ath_dbg(common, BEACON, "next beacon %d\n", nextTbtt);
  1898. ath_dbg(common, BEACON, "beacon period %d\n", beaconintval);
  1899. ath_dbg(common, BEACON, "DTIM period %d\n", dtimperiod);
  1900. ENABLE_REGWRITE_BUFFER(ah);
  1901. REG_WRITE(ah, AR_NEXT_DTIM,
  1902. TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
  1903. REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
  1904. REG_WRITE(ah, AR_SLEEP1,
  1905. SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
  1906. | AR_SLEEP1_ASSUME_DTIM);
  1907. if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
  1908. beacontimeout = (BEACON_TIMEOUT_VAL << 3);
  1909. else
  1910. beacontimeout = MIN_BEACON_TIMEOUT_VAL;
  1911. REG_WRITE(ah, AR_SLEEP2,
  1912. SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
  1913. REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
  1914. REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
  1915. REGWRITE_BUFFER_FLUSH(ah);
  1916. REG_SET_BIT(ah, AR_TIMER_MODE,
  1917. AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
  1918. AR_DTIM_TIMER_EN);
  1919. /* TSF Out of Range Threshold */
  1920. REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
  1921. }
  1922. EXPORT_SYMBOL(ath9k_hw_set_sta_beacon_timers);
  1923. /*******************/
  1924. /* HW Capabilities */
  1925. /*******************/
  1926. static u8 fixup_chainmask(u8 chip_chainmask, u8 eeprom_chainmask)
  1927. {
  1928. eeprom_chainmask &= chip_chainmask;
  1929. if (eeprom_chainmask)
  1930. return eeprom_chainmask;
  1931. else
  1932. return chip_chainmask;
  1933. }
  1934. /**
  1935. * ath9k_hw_dfs_tested - checks if DFS has been tested with used chipset
  1936. * @ah: the atheros hardware data structure
  1937. *
  1938. * We enable DFS support upstream on chipsets which have passed a series
  1939. * of tests. The testing requirements are going to be documented. Desired
  1940. * test requirements are documented at:
  1941. *
  1942. * http://wireless.kernel.org/en/users/Drivers/ath9k/dfs
  1943. *
  1944. * Once a new chipset gets properly tested an individual commit can be used
  1945. * to document the testing for DFS for that chipset.
  1946. */
  1947. static bool ath9k_hw_dfs_tested(struct ath_hw *ah)
  1948. {
  1949. switch (ah->hw_version.macVersion) {
  1950. /* for temporary testing DFS with 9280 */
  1951. case AR_SREV_VERSION_9280:
  1952. /* AR9580 will likely be our first target to get testing on */
  1953. case AR_SREV_VERSION_9580:
  1954. return true;
  1955. default:
  1956. return false;
  1957. }
  1958. }
  1959. int ath9k_hw_fill_cap_info(struct ath_hw *ah)
  1960. {
  1961. struct ath9k_hw_capabilities *pCap = &ah->caps;
  1962. struct ath_regulatory *regulatory = ath9k_hw_regulatory(ah);
  1963. struct ath_common *common = ath9k_hw_common(ah);
  1964. unsigned int chip_chainmask;
  1965. u16 eeval;
  1966. u8 ant_div_ctl1, tx_chainmask, rx_chainmask;
  1967. eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
  1968. regulatory->current_rd = eeval;
  1969. if (ah->opmode != NL80211_IFTYPE_AP &&
  1970. ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
  1971. if (regulatory->current_rd == 0x64 ||
  1972. regulatory->current_rd == 0x65)
  1973. regulatory->current_rd += 5;
  1974. else if (regulatory->current_rd == 0x41)
  1975. regulatory->current_rd = 0x43;
  1976. ath_dbg(common, REGULATORY, "regdomain mapped to 0x%x\n",
  1977. regulatory->current_rd);
  1978. }
  1979. eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
  1980. if ((eeval & (AR5416_OPFLAGS_11G | AR5416_OPFLAGS_11A)) == 0) {
  1981. ath_err(common,
  1982. "no band has been marked as supported in EEPROM\n");
  1983. return -EINVAL;
  1984. }
  1985. if (eeval & AR5416_OPFLAGS_11A)
  1986. pCap->hw_caps |= ATH9K_HW_CAP_5GHZ;
  1987. if (eeval & AR5416_OPFLAGS_11G)
  1988. pCap->hw_caps |= ATH9K_HW_CAP_2GHZ;
  1989. if (AR_SREV_9485(ah) ||
  1990. AR_SREV_9285(ah) ||
  1991. AR_SREV_9330(ah) ||
  1992. AR_SREV_9565(ah))
  1993. chip_chainmask = 1;
  1994. else if (AR_SREV_9462(ah))
  1995. chip_chainmask = 3;
  1996. else if (!AR_SREV_9280_20_OR_LATER(ah))
  1997. chip_chainmask = 7;
  1998. else if (!AR_SREV_9300_20_OR_LATER(ah) || AR_SREV_9340(ah))
  1999. chip_chainmask = 3;
  2000. else
  2001. chip_chainmask = 7;
  2002. pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
  2003. /*
  2004. * For AR9271 we will temporarilly uses the rx chainmax as read from
  2005. * the EEPROM.
  2006. */
  2007. if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
  2008. !(eeval & AR5416_OPFLAGS_11A) &&
  2009. !(AR_SREV_9271(ah)))
  2010. /* CB71: GPIO 0 is pulled down to indicate 3 rx chains */
  2011. pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
  2012. else if (AR_SREV_9100(ah))
  2013. pCap->rx_chainmask = 0x7;
  2014. else
  2015. /* Use rx_chainmask from EEPROM. */
  2016. pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
  2017. pCap->tx_chainmask = fixup_chainmask(chip_chainmask, pCap->tx_chainmask);
  2018. pCap->rx_chainmask = fixup_chainmask(chip_chainmask, pCap->rx_chainmask);
  2019. ah->txchainmask = pCap->tx_chainmask;
  2020. ah->rxchainmask = pCap->rx_chainmask;
  2021. ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
  2022. /* enable key search for every frame in an aggregate */
  2023. if (AR_SREV_9300_20_OR_LATER(ah))
  2024. ah->misc_mode |= AR_PCU_ALWAYS_PERFORM_KEYSEARCH;
  2025. common->crypt_caps |= ATH_CRYPT_CAP_CIPHER_AESCCM;
  2026. if (ah->hw_version.devid != AR2427_DEVID_PCIE)
  2027. pCap->hw_caps |= ATH9K_HW_CAP_HT;
  2028. else
  2029. pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
  2030. if (AR_SREV_9271(ah))
  2031. pCap->num_gpio_pins = AR9271_NUM_GPIO;
  2032. else if (AR_DEVID_7010(ah))
  2033. pCap->num_gpio_pins = AR7010_NUM_GPIO;
  2034. else if (AR_SREV_9300_20_OR_LATER(ah))
  2035. pCap->num_gpio_pins = AR9300_NUM_GPIO;
  2036. else if (AR_SREV_9287_11_OR_LATER(ah))
  2037. pCap->num_gpio_pins = AR9287_NUM_GPIO;
  2038. else if (AR_SREV_9285_12_OR_LATER(ah))
  2039. pCap->num_gpio_pins = AR9285_NUM_GPIO;
  2040. else if (AR_SREV_9280_20_OR_LATER(ah))
  2041. pCap->num_gpio_pins = AR928X_NUM_GPIO;
  2042. else
  2043. pCap->num_gpio_pins = AR_NUM_GPIO;
  2044. if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah))
  2045. pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
  2046. else
  2047. pCap->rts_aggr_limit = (8 * 1024);
  2048. #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
  2049. ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
  2050. if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
  2051. ah->rfkill_gpio =
  2052. MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
  2053. ah->rfkill_polarity =
  2054. MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
  2055. pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
  2056. }
  2057. #endif
  2058. if (AR_SREV_9271(ah) || AR_SREV_9300_20_OR_LATER(ah))
  2059. pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
  2060. else
  2061. pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
  2062. if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
  2063. pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
  2064. else
  2065. pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
  2066. if (AR_SREV_9300_20_OR_LATER(ah)) {
  2067. pCap->hw_caps |= ATH9K_HW_CAP_EDMA | ATH9K_HW_CAP_FASTCLOCK;
  2068. if (!AR_SREV_9330(ah) && !AR_SREV_9485(ah) && !AR_SREV_9565(ah))
  2069. pCap->hw_caps |= ATH9K_HW_CAP_LDPC;
  2070. pCap->rx_hp_qdepth = ATH9K_HW_RX_HP_QDEPTH;
  2071. pCap->rx_lp_qdepth = ATH9K_HW_RX_LP_QDEPTH;
  2072. pCap->rx_status_len = sizeof(struct ar9003_rxs);
  2073. pCap->tx_desc_len = sizeof(struct ar9003_txc);
  2074. pCap->txs_len = sizeof(struct ar9003_txs);
  2075. } else {
  2076. pCap->tx_desc_len = sizeof(struct ath_desc);
  2077. if (AR_SREV_9280_20(ah))
  2078. pCap->hw_caps |= ATH9K_HW_CAP_FASTCLOCK;
  2079. }
  2080. if (AR_SREV_9300_20_OR_LATER(ah))
  2081. pCap->hw_caps |= ATH9K_HW_CAP_RAC_SUPPORTED;
  2082. if (AR_SREV_9300_20_OR_LATER(ah))
  2083. ah->ent_mode = REG_READ(ah, AR_ENT_OTP);
  2084. if (AR_SREV_9287_11_OR_LATER(ah) || AR_SREV_9271(ah))
  2085. pCap->hw_caps |= ATH9K_HW_CAP_SGI_20;
  2086. if (AR_SREV_9285(ah))
  2087. if (ah->eep_ops->get_eeprom(ah, EEP_MODAL_VER) >= 3) {
  2088. ant_div_ctl1 =
  2089. ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
  2090. if ((ant_div_ctl1 & 0x1) && ((ant_div_ctl1 >> 3) & 0x1))
  2091. pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
  2092. }
  2093. if (AR_SREV_9300_20_OR_LATER(ah)) {
  2094. if (ah->eep_ops->get_eeprom(ah, EEP_CHAIN_MASK_REDUCE))
  2095. pCap->hw_caps |= ATH9K_HW_CAP_APM;
  2096. }
  2097. if (AR_SREV_9330(ah) || AR_SREV_9485(ah) || AR_SREV_9565(ah)) {
  2098. ant_div_ctl1 = ah->eep_ops->get_eeprom(ah, EEP_ANT_DIV_CTL1);
  2099. /*
  2100. * enable the diversity-combining algorithm only when
  2101. * both enable_lna_div and enable_fast_div are set
  2102. * Table for Diversity
  2103. * ant_div_alt_lnaconf bit 0-1
  2104. * ant_div_main_lnaconf bit 2-3
  2105. * ant_div_alt_gaintb bit 4
  2106. * ant_div_main_gaintb bit 5
  2107. * enable_ant_div_lnadiv bit 6
  2108. * enable_ant_fast_div bit 7
  2109. */
  2110. if ((ant_div_ctl1 >> 0x6) == 0x3)
  2111. pCap->hw_caps |= ATH9K_HW_CAP_ANT_DIV_COMB;
  2112. }
  2113. if (ath9k_hw_dfs_tested(ah))
  2114. pCap->hw_caps |= ATH9K_HW_CAP_DFS;
  2115. tx_chainmask = pCap->tx_chainmask;
  2116. rx_chainmask = pCap->rx_chainmask;
  2117. while (tx_chainmask || rx_chainmask) {
  2118. if (tx_chainmask & BIT(0))
  2119. pCap->max_txchains++;
  2120. if (rx_chainmask & BIT(0))
  2121. pCap->max_rxchains++;
  2122. tx_chainmask >>= 1;
  2123. rx_chainmask >>= 1;
  2124. }
  2125. if (AR_SREV_9462(ah) || AR_SREV_9565(ah)) {
  2126. if (!(ah->ent_mode & AR_ENT_OTP_49GHZ_DISABLE))
  2127. pCap->hw_caps |= ATH9K_HW_CAP_MCI;
  2128. if (AR_SREV_9462_20(ah))
  2129. pCap->hw_caps |= ATH9K_HW_CAP_RTT;
  2130. }
  2131. if (AR_SREV_9280_20_OR_LATER(ah)) {
  2132. pCap->hw_caps |= ATH9K_HW_WOW_DEVICE_CAPABLE |
  2133. ATH9K_HW_WOW_PATTERN_MATCH_EXACT;
  2134. if (AR_SREV_9280(ah))
  2135. pCap->hw_caps |= ATH9K_HW_WOW_PATTERN_MATCH_DWORD;
  2136. }
  2137. if (AR_SREV_9300_20_OR_LATER(ah) &&
  2138. ah->eep_ops->get_eeprom(ah, EEP_PAPRD))
  2139. pCap->hw_caps |= ATH9K_HW_CAP_PAPRD;
  2140. return 0;
  2141. }
  2142. /****************************/
  2143. /* GPIO / RFKILL / Antennae */
  2144. /****************************/
  2145. static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
  2146. u32 gpio, u32 type)
  2147. {
  2148. int addr;
  2149. u32 gpio_shift, tmp;
  2150. if (gpio > 11)
  2151. addr = AR_GPIO_OUTPUT_MUX3;
  2152. else if (gpio > 5)
  2153. addr = AR_GPIO_OUTPUT_MUX2;
  2154. else
  2155. addr = AR_GPIO_OUTPUT_MUX1;
  2156. gpio_shift = (gpio % 6) * 5;
  2157. if (AR_SREV_9280_20_OR_LATER(ah)
  2158. || (addr != AR_GPIO_OUTPUT_MUX1)) {
  2159. REG_RMW(ah, addr, (type << gpio_shift),
  2160. (0x1f << gpio_shift));
  2161. } else {
  2162. tmp = REG_READ(ah, addr);
  2163. tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
  2164. tmp &= ~(0x1f << gpio_shift);
  2165. tmp |= (type << gpio_shift);
  2166. REG_WRITE(ah, addr, tmp);
  2167. }
  2168. }
  2169. void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
  2170. {
  2171. u32 gpio_shift;
  2172. BUG_ON(gpio >= ah->caps.num_gpio_pins);
  2173. if (AR_DEVID_7010(ah)) {
  2174. gpio_shift = gpio;
  2175. REG_RMW(ah, AR7010_GPIO_OE,
  2176. (AR7010_GPIO_OE_AS_INPUT << gpio_shift),
  2177. (AR7010_GPIO_OE_MASK << gpio_shift));
  2178. return;
  2179. }
  2180. gpio_shift = gpio << 1;
  2181. REG_RMW(ah,
  2182. AR_GPIO_OE_OUT,
  2183. (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
  2184. (AR_GPIO_OE_OUT_DRV << gpio_shift));
  2185. }
  2186. EXPORT_SYMBOL(ath9k_hw_cfg_gpio_input);
  2187. u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
  2188. {
  2189. #define MS_REG_READ(x, y) \
  2190. (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
  2191. if (gpio >= ah->caps.num_gpio_pins)
  2192. return 0xffffffff;
  2193. if (AR_DEVID_7010(ah)) {
  2194. u32 val;
  2195. val = REG_READ(ah, AR7010_GPIO_IN);
  2196. return (MS(val, AR7010_GPIO_IN_VAL) & AR_GPIO_BIT(gpio)) == 0;
  2197. } else if (AR_SREV_9300_20_OR_LATER(ah))
  2198. return (MS(REG_READ(ah, AR_GPIO_IN), AR9300_GPIO_IN_VAL) &
  2199. AR_GPIO_BIT(gpio)) != 0;
  2200. else if (AR_SREV_9271(ah))
  2201. return MS_REG_READ(AR9271, gpio) != 0;
  2202. else if (AR_SREV_9287_11_OR_LATER(ah))
  2203. return MS_REG_READ(AR9287, gpio) != 0;
  2204. else if (AR_SREV_9285_12_OR_LATER(ah))
  2205. return MS_REG_READ(AR9285, gpio) != 0;
  2206. else if (AR_SREV_9280_20_OR_LATER(ah))
  2207. return MS_REG_READ(AR928X, gpio) != 0;
  2208. else
  2209. return MS_REG_READ(AR, gpio) != 0;
  2210. }
  2211. EXPORT_SYMBOL(ath9k_hw_gpio_get);
  2212. void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
  2213. u32 ah_signal_type)
  2214. {
  2215. u32 gpio_shift;
  2216. if (AR_DEVID_7010(ah)) {
  2217. gpio_shift = gpio;
  2218. REG_RMW(ah, AR7010_GPIO_OE,
  2219. (AR7010_GPIO_OE_AS_OUTPUT << gpio_shift),
  2220. (AR7010_GPIO_OE_MASK << gpio_shift));
  2221. return;
  2222. }
  2223. ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
  2224. gpio_shift = 2 * gpio;
  2225. REG_RMW(ah,
  2226. AR_GPIO_OE_OUT,
  2227. (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
  2228. (AR_GPIO_OE_OUT_DRV << gpio_shift));
  2229. }
  2230. EXPORT_SYMBOL(ath9k_hw_cfg_output);
  2231. void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
  2232. {
  2233. if (AR_DEVID_7010(ah)) {
  2234. val = val ? 0 : 1;
  2235. REG_RMW(ah, AR7010_GPIO_OUT, ((val&1) << gpio),
  2236. AR_GPIO_BIT(gpio));
  2237. return;
  2238. }
  2239. if (AR_SREV_9271(ah))
  2240. val = ~val;
  2241. REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
  2242. AR_GPIO_BIT(gpio));
  2243. }
  2244. EXPORT_SYMBOL(ath9k_hw_set_gpio);
  2245. void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
  2246. {
  2247. REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
  2248. }
  2249. EXPORT_SYMBOL(ath9k_hw_setantenna);
  2250. /*********************/
  2251. /* General Operation */
  2252. /*********************/
  2253. u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
  2254. {
  2255. u32 bits = REG_READ(ah, AR_RX_FILTER);
  2256. u32 phybits = REG_READ(ah, AR_PHY_ERR);
  2257. if (phybits & AR_PHY_ERR_RADAR)
  2258. bits |= ATH9K_RX_FILTER_PHYRADAR;
  2259. if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
  2260. bits |= ATH9K_RX_FILTER_PHYERR;
  2261. return bits;
  2262. }
  2263. EXPORT_SYMBOL(ath9k_hw_getrxfilter);
  2264. void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
  2265. {
  2266. u32 phybits;
  2267. ENABLE_REGWRITE_BUFFER(ah);
  2268. if (AR_SREV_9462(ah) || AR_SREV_9565(ah))
  2269. bits |= ATH9K_RX_FILTER_CONTROL_WRAPPER;
  2270. REG_WRITE(ah, AR_RX_FILTER, bits);
  2271. phybits = 0;
  2272. if (bits & ATH9K_RX_FILTER_PHYRADAR)
  2273. phybits |= AR_PHY_ERR_RADAR;
  2274. if (bits & ATH9K_RX_FILTER_PHYERR)
  2275. phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
  2276. REG_WRITE(ah, AR_PHY_ERR, phybits);
  2277. if (phybits)
  2278. REG_SET_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
  2279. else
  2280. REG_CLR_BIT(ah, AR_RXCFG, AR_RXCFG_ZLFDMA);
  2281. REGWRITE_BUFFER_FLUSH(ah);
  2282. }
  2283. EXPORT_SYMBOL(ath9k_hw_setrxfilter);
  2284. bool ath9k_hw_phy_disable(struct ath_hw *ah)
  2285. {
  2286. if (ath9k_hw_mci_is_enabled(ah))
  2287. ar9003_mci_bt_gain_ctrl(ah);
  2288. if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
  2289. return false;
  2290. ath9k_hw_init_pll(ah, NULL);
  2291. ah->htc_reset_init = true;
  2292. return true;
  2293. }
  2294. EXPORT_SYMBOL(ath9k_hw_phy_disable);
  2295. bool ath9k_hw_disable(struct ath_hw *ah)
  2296. {
  2297. if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
  2298. return false;
  2299. if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD))
  2300. return false;
  2301. ath9k_hw_init_pll(ah, NULL);
  2302. return true;
  2303. }
  2304. EXPORT_SYMBOL(ath9k_hw_disable);
  2305. static int get_antenna_gain(struct ath_hw *ah, struct ath9k_channel *chan)
  2306. {
  2307. enum eeprom_param gain_param;
  2308. if (IS_CHAN_2GHZ(chan))
  2309. gain_param = EEP_ANTENNA_GAIN_2G;
  2310. else
  2311. gain_param = EEP_ANTENNA_GAIN_5G;
  2312. return ah->eep_ops->get_eeprom(ah, gain_param);
  2313. }
  2314. void ath9k_hw_apply_txpower(struct ath_hw *ah, struct ath9k_channel *chan,
  2315. bool test)
  2316. {
  2317. struct ath_regulatory *reg = ath9k_hw_regulatory(ah);
  2318. struct ieee80211_channel *channel;
  2319. int chan_pwr, new_pwr, max_gain;
  2320. int ant_gain, ant_reduction = 0;
  2321. if (!chan)
  2322. return;
  2323. channel = chan->chan;
  2324. chan_pwr = min_t(int, channel->max_power * 2, MAX_RATE_POWER);
  2325. new_pwr = min_t(int, chan_pwr, reg->power_limit);
  2326. max_gain = chan_pwr - new_pwr + channel->max_antenna_gain * 2;
  2327. ant_gain = get_antenna_gain(ah, chan);
  2328. if (ant_gain > max_gain)
  2329. ant_reduction = ant_gain - max_gain;
  2330. ah->eep_ops->set_txpower(ah, chan,
  2331. ath9k_regd_get_ctl(reg, chan),
  2332. ant_reduction, new_pwr, test);
  2333. }
  2334. void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit, bool test)
  2335. {
  2336. struct ath_regulatory *reg = ath9k_hw_regulatory(ah);
  2337. struct ath9k_channel *chan = ah->curchan;
  2338. struct ieee80211_channel *channel = chan->chan;
  2339. reg->power_limit = min_t(u32, limit, MAX_RATE_POWER);
  2340. if (test)
  2341. channel->max_power = MAX_RATE_POWER / 2;
  2342. ath9k_hw_apply_txpower(ah, chan, test);
  2343. if (test)
  2344. channel->max_power = DIV_ROUND_UP(reg->max_power_level, 2);
  2345. }
  2346. EXPORT_SYMBOL(ath9k_hw_set_txpowerlimit);
  2347. void ath9k_hw_setopmode(struct ath_hw *ah)
  2348. {
  2349. ath9k_hw_set_operating_mode(ah, ah->opmode);
  2350. }
  2351. EXPORT_SYMBOL(ath9k_hw_setopmode);
  2352. void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
  2353. {
  2354. REG_WRITE(ah, AR_MCAST_FIL0, filter0);
  2355. REG_WRITE(ah, AR_MCAST_FIL1, filter1);
  2356. }
  2357. EXPORT_SYMBOL(ath9k_hw_setmcastfilter);
  2358. void ath9k_hw_write_associd(struct ath_hw *ah)
  2359. {
  2360. struct ath_common *common = ath9k_hw_common(ah);
  2361. REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(common->curbssid));
  2362. REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(common->curbssid + 4) |
  2363. ((common->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
  2364. }
  2365. EXPORT_SYMBOL(ath9k_hw_write_associd);
  2366. #define ATH9K_MAX_TSF_READ 10
  2367. u64 ath9k_hw_gettsf64(struct ath_hw *ah)
  2368. {
  2369. u32 tsf_lower, tsf_upper1, tsf_upper2;
  2370. int i;
  2371. tsf_upper1 = REG_READ(ah, AR_TSF_U32);
  2372. for (i = 0; i < ATH9K_MAX_TSF_READ; i++) {
  2373. tsf_lower = REG_READ(ah, AR_TSF_L32);
  2374. tsf_upper2 = REG_READ(ah, AR_TSF_U32);
  2375. if (tsf_upper2 == tsf_upper1)
  2376. break;
  2377. tsf_upper1 = tsf_upper2;
  2378. }
  2379. WARN_ON( i == ATH9K_MAX_TSF_READ );
  2380. return (((u64)tsf_upper1 << 32) | tsf_lower);
  2381. }
  2382. EXPORT_SYMBOL(ath9k_hw_gettsf64);
  2383. void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
  2384. {
  2385. REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
  2386. REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
  2387. }
  2388. EXPORT_SYMBOL(ath9k_hw_settsf64);
  2389. void ath9k_hw_reset_tsf(struct ath_hw *ah)
  2390. {
  2391. if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
  2392. AH_TSF_WRITE_TIMEOUT))
  2393. ath_dbg(ath9k_hw_common(ah), RESET,
  2394. "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
  2395. REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
  2396. }
  2397. EXPORT_SYMBOL(ath9k_hw_reset_tsf);
  2398. void ath9k_hw_set_tsfadjust(struct ath_hw *ah, bool set)
  2399. {
  2400. if (set)
  2401. ah->misc_mode |= AR_PCU_TX_ADD_TSF;
  2402. else
  2403. ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
  2404. }
  2405. EXPORT_SYMBOL(ath9k_hw_set_tsfadjust);
  2406. void ath9k_hw_set11nmac2040(struct ath_hw *ah)
  2407. {
  2408. struct ieee80211_conf *conf = &ath9k_hw_common(ah)->hw->conf;
  2409. u32 macmode;
  2410. if (conf_is_ht40(conf) && !ah->config.cwm_ignore_extcca)
  2411. macmode = AR_2040_JOINED_RX_CLEAR;
  2412. else
  2413. macmode = 0;
  2414. REG_WRITE(ah, AR_2040_MODE, macmode);
  2415. }
  2416. /* HW Generic timers configuration */
  2417. static const struct ath_gen_timer_configuration gen_tmr_configuration[] =
  2418. {
  2419. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  2420. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  2421. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  2422. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  2423. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  2424. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  2425. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  2426. {AR_NEXT_NDP_TIMER, AR_NDP_PERIOD, AR_TIMER_MODE, 0x0080},
  2427. {AR_NEXT_NDP2_TIMER, AR_NDP2_PERIOD, AR_NDP2_TIMER_MODE, 0x0001},
  2428. {AR_NEXT_NDP2_TIMER + 1*4, AR_NDP2_PERIOD + 1*4,
  2429. AR_NDP2_TIMER_MODE, 0x0002},
  2430. {AR_NEXT_NDP2_TIMER + 2*4, AR_NDP2_PERIOD + 2*4,
  2431. AR_NDP2_TIMER_MODE, 0x0004},
  2432. {AR_NEXT_NDP2_TIMER + 3*4, AR_NDP2_PERIOD + 3*4,
  2433. AR_NDP2_TIMER_MODE, 0x0008},
  2434. {AR_NEXT_NDP2_TIMER + 4*4, AR_NDP2_PERIOD + 4*4,
  2435. AR_NDP2_TIMER_MODE, 0x0010},
  2436. {AR_NEXT_NDP2_TIMER + 5*4, AR_NDP2_PERIOD + 5*4,
  2437. AR_NDP2_TIMER_MODE, 0x0020},
  2438. {AR_NEXT_NDP2_TIMER + 6*4, AR_NDP2_PERIOD + 6*4,
  2439. AR_NDP2_TIMER_MODE, 0x0040},
  2440. {AR_NEXT_NDP2_TIMER + 7*4, AR_NDP2_PERIOD + 7*4,
  2441. AR_NDP2_TIMER_MODE, 0x0080}
  2442. };
  2443. /* HW generic timer primitives */
  2444. /* compute and clear index of rightmost 1 */
  2445. static u32 rightmost_index(struct ath_gen_timer_table *timer_table, u32 *mask)
  2446. {
  2447. u32 b;
  2448. b = *mask;
  2449. b &= (0-b);
  2450. *mask &= ~b;
  2451. b *= debruijn32;
  2452. b >>= 27;
  2453. return timer_table->gen_timer_index[b];
  2454. }
  2455. u32 ath9k_hw_gettsf32(struct ath_hw *ah)
  2456. {
  2457. return REG_READ(ah, AR_TSF_L32);
  2458. }
  2459. EXPORT_SYMBOL(ath9k_hw_gettsf32);
  2460. struct ath_gen_timer *ath_gen_timer_alloc(struct ath_hw *ah,
  2461. void (*trigger)(void *),
  2462. void (*overflow)(void *),
  2463. void *arg,
  2464. u8 timer_index)
  2465. {
  2466. struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
  2467. struct ath_gen_timer *timer;
  2468. timer = kzalloc(sizeof(struct ath_gen_timer), GFP_KERNEL);
  2469. if (timer == NULL)
  2470. return NULL;
  2471. /* allocate a hardware generic timer slot */
  2472. timer_table->timers[timer_index] = timer;
  2473. timer->index = timer_index;
  2474. timer->trigger = trigger;
  2475. timer->overflow = overflow;
  2476. timer->arg = arg;
  2477. return timer;
  2478. }
  2479. EXPORT_SYMBOL(ath_gen_timer_alloc);
  2480. void ath9k_hw_gen_timer_start(struct ath_hw *ah,
  2481. struct ath_gen_timer *timer,
  2482. u32 trig_timeout,
  2483. u32 timer_period)
  2484. {
  2485. struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
  2486. u32 tsf, timer_next;
  2487. BUG_ON(!timer_period);
  2488. set_bit(timer->index, &timer_table->timer_mask.timer_bits);
  2489. tsf = ath9k_hw_gettsf32(ah);
  2490. timer_next = tsf + trig_timeout;
  2491. ath_dbg(ath9k_hw_common(ah), HWTIMER,
  2492. "current tsf %x period %x timer_next %x\n",
  2493. tsf, timer_period, timer_next);
  2494. /*
  2495. * Program generic timer registers
  2496. */
  2497. REG_WRITE(ah, gen_tmr_configuration[timer->index].next_addr,
  2498. timer_next);
  2499. REG_WRITE(ah, gen_tmr_configuration[timer->index].period_addr,
  2500. timer_period);
  2501. REG_SET_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
  2502. gen_tmr_configuration[timer->index].mode_mask);
  2503. if (AR_SREV_9462(ah) || AR_SREV_9565(ah)) {
  2504. /*
  2505. * Starting from AR9462, each generic timer can select which tsf
  2506. * to use. But we still follow the old rule, 0 - 7 use tsf and
  2507. * 8 - 15 use tsf2.
  2508. */
  2509. if ((timer->index < AR_GEN_TIMER_BANK_1_LEN))
  2510. REG_CLR_BIT(ah, AR_MAC_PCU_GEN_TIMER_TSF_SEL,
  2511. (1 << timer->index));
  2512. else
  2513. REG_SET_BIT(ah, AR_MAC_PCU_GEN_TIMER_TSF_SEL,
  2514. (1 << timer->index));
  2515. }
  2516. /* Enable both trigger and thresh interrupt masks */
  2517. REG_SET_BIT(ah, AR_IMR_S5,
  2518. (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
  2519. SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
  2520. }
  2521. EXPORT_SYMBOL(ath9k_hw_gen_timer_start);
  2522. void ath9k_hw_gen_timer_stop(struct ath_hw *ah, struct ath_gen_timer *timer)
  2523. {
  2524. struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
  2525. if ((timer->index < AR_FIRST_NDP_TIMER) ||
  2526. (timer->index >= ATH_MAX_GEN_TIMER)) {
  2527. return;
  2528. }
  2529. /* Clear generic timer enable bits. */
  2530. REG_CLR_BIT(ah, gen_tmr_configuration[timer->index].mode_addr,
  2531. gen_tmr_configuration[timer->index].mode_mask);
  2532. if (AR_SREV_9462(ah) || AR_SREV_9565(ah)) {
  2533. /*
  2534. * Need to switch back to TSF if it was using TSF2.
  2535. */
  2536. if ((timer->index >= AR_GEN_TIMER_BANK_1_LEN)) {
  2537. REG_CLR_BIT(ah, AR_MAC_PCU_GEN_TIMER_TSF_SEL,
  2538. (1 << timer->index));
  2539. }
  2540. }
  2541. /* Disable both trigger and thresh interrupt masks */
  2542. REG_CLR_BIT(ah, AR_IMR_S5,
  2543. (SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_THRESH) |
  2544. SM(AR_GENTMR_BIT(timer->index), AR_IMR_S5_GENTIMER_TRIG)));
  2545. clear_bit(timer->index, &timer_table->timer_mask.timer_bits);
  2546. }
  2547. EXPORT_SYMBOL(ath9k_hw_gen_timer_stop);
  2548. void ath_gen_timer_free(struct ath_hw *ah, struct ath_gen_timer *timer)
  2549. {
  2550. struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
  2551. /* free the hardware generic timer slot */
  2552. timer_table->timers[timer->index] = NULL;
  2553. kfree(timer);
  2554. }
  2555. EXPORT_SYMBOL(ath_gen_timer_free);
  2556. /*
  2557. * Generic Timer Interrupts handling
  2558. */
  2559. void ath_gen_timer_isr(struct ath_hw *ah)
  2560. {
  2561. struct ath_gen_timer_table *timer_table = &ah->hw_gen_timers;
  2562. struct ath_gen_timer *timer;
  2563. struct ath_common *common = ath9k_hw_common(ah);
  2564. u32 trigger_mask, thresh_mask, index;
  2565. /* get hardware generic timer interrupt status */
  2566. trigger_mask = ah->intr_gen_timer_trigger;
  2567. thresh_mask = ah->intr_gen_timer_thresh;
  2568. trigger_mask &= timer_table->timer_mask.val;
  2569. thresh_mask &= timer_table->timer_mask.val;
  2570. trigger_mask &= ~thresh_mask;
  2571. while (thresh_mask) {
  2572. index = rightmost_index(timer_table, &thresh_mask);
  2573. timer = timer_table->timers[index];
  2574. BUG_ON(!timer);
  2575. ath_dbg(common, HWTIMER, "TSF overflow for Gen timer %d\n",
  2576. index);
  2577. timer->overflow(timer->arg);
  2578. }
  2579. while (trigger_mask) {
  2580. index = rightmost_index(timer_table, &trigger_mask);
  2581. timer = timer_table->timers[index];
  2582. BUG_ON(!timer);
  2583. ath_dbg(common, HWTIMER,
  2584. "Gen timer[%d] trigger\n", index);
  2585. timer->trigger(timer->arg);
  2586. }
  2587. }
  2588. EXPORT_SYMBOL(ath_gen_timer_isr);
  2589. /********/
  2590. /* HTC */
  2591. /********/
  2592. static struct {
  2593. u32 version;
  2594. const char * name;
  2595. } ath_mac_bb_names[] = {
  2596. /* Devices with external radios */
  2597. { AR_SREV_VERSION_5416_PCI, "5416" },
  2598. { AR_SREV_VERSION_5416_PCIE, "5418" },
  2599. { AR_SREV_VERSION_9100, "9100" },
  2600. { AR_SREV_VERSION_9160, "9160" },
  2601. /* Single-chip solutions */
  2602. { AR_SREV_VERSION_9280, "9280" },
  2603. { AR_SREV_VERSION_9285, "9285" },
  2604. { AR_SREV_VERSION_9287, "9287" },
  2605. { AR_SREV_VERSION_9271, "9271" },
  2606. { AR_SREV_VERSION_9300, "9300" },
  2607. { AR_SREV_VERSION_9330, "9330" },
  2608. { AR_SREV_VERSION_9340, "9340" },
  2609. { AR_SREV_VERSION_9485, "9485" },
  2610. { AR_SREV_VERSION_9462, "9462" },
  2611. { AR_SREV_VERSION_9550, "9550" },
  2612. { AR_SREV_VERSION_9565, "9565" },
  2613. };
  2614. /* For devices with external radios */
  2615. static struct {
  2616. u16 version;
  2617. const char * name;
  2618. } ath_rf_names[] = {
  2619. { 0, "5133" },
  2620. { AR_RAD5133_SREV_MAJOR, "5133" },
  2621. { AR_RAD5122_SREV_MAJOR, "5122" },
  2622. { AR_RAD2133_SREV_MAJOR, "2133" },
  2623. { AR_RAD2122_SREV_MAJOR, "2122" }
  2624. };
  2625. /*
  2626. * Return the MAC/BB name. "????" is returned if the MAC/BB is unknown.
  2627. */
  2628. static const char *ath9k_hw_mac_bb_name(u32 mac_bb_version)
  2629. {
  2630. int i;
  2631. for (i=0; i<ARRAY_SIZE(ath_mac_bb_names); i++) {
  2632. if (ath_mac_bb_names[i].version == mac_bb_version) {
  2633. return ath_mac_bb_names[i].name;
  2634. }
  2635. }
  2636. return "????";
  2637. }
  2638. /*
  2639. * Return the RF name. "????" is returned if the RF is unknown.
  2640. * Used for devices with external radios.
  2641. */
  2642. static const char *ath9k_hw_rf_name(u16 rf_version)
  2643. {
  2644. int i;
  2645. for (i=0; i<ARRAY_SIZE(ath_rf_names); i++) {
  2646. if (ath_rf_names[i].version == rf_version) {
  2647. return ath_rf_names[i].name;
  2648. }
  2649. }
  2650. return "????";
  2651. }
  2652. void ath9k_hw_name(struct ath_hw *ah, char *hw_name, size_t len)
  2653. {
  2654. int used;
  2655. /* chipsets >= AR9280 are single-chip */
  2656. if (AR_SREV_9280_20_OR_LATER(ah)) {
  2657. used = snprintf(hw_name, len,
  2658. "Atheros AR%s Rev:%x",
  2659. ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
  2660. ah->hw_version.macRev);
  2661. }
  2662. else {
  2663. used = snprintf(hw_name, len,
  2664. "Atheros AR%s MAC/BB Rev:%x AR%s RF Rev:%x",
  2665. ath9k_hw_mac_bb_name(ah->hw_version.macVersion),
  2666. ah->hw_version.macRev,
  2667. ath9k_hw_rf_name((ah->hw_version.analog5GhzRev &
  2668. AR_RADIO_SREV_MAJOR)),
  2669. ah->hw_version.phyRev);
  2670. }
  2671. hw_name[used] = '\0';
  2672. }
  2673. EXPORT_SYMBOL(ath9k_hw_name);