hw.c 81 KB

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