hw.c 82 KB

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