hw.c 106 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993
  1. /*
  2. * Copyright (c) 2008-2009 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 <asm/unaligned.h>
  18. #include "ath9k.h"
  19. #include "initvals.h"
  20. static int btcoex_enable;
  21. module_param(btcoex_enable, bool, 0);
  22. MODULE_PARM_DESC(btcoex_enable, "Enable Bluetooth coexistence support");
  23. #define ATH9K_CLOCK_RATE_CCK 22
  24. #define ATH9K_CLOCK_RATE_5GHZ_OFDM 40
  25. #define ATH9K_CLOCK_RATE_2GHZ_OFDM 44
  26. static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type);
  27. static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan,
  28. enum ath9k_ht_macmode macmode);
  29. static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
  30. struct ar5416_eeprom_def *pEepData,
  31. u32 reg, u32 value);
  32. static void ath9k_hw_9280_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan);
  33. static void ath9k_hw_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan);
  34. /********************/
  35. /* Helper Functions */
  36. /********************/
  37. static u32 ath9k_hw_mac_usec(struct ath_hw *ah, u32 clks)
  38. {
  39. struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
  40. if (!ah->curchan) /* should really check for CCK instead */
  41. return clks / ATH9K_CLOCK_RATE_CCK;
  42. if (conf->channel->band == IEEE80211_BAND_2GHZ)
  43. return clks / ATH9K_CLOCK_RATE_2GHZ_OFDM;
  44. return clks / ATH9K_CLOCK_RATE_5GHZ_OFDM;
  45. }
  46. static u32 ath9k_hw_mac_to_usec(struct ath_hw *ah, u32 clks)
  47. {
  48. struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
  49. if (conf_is_ht40(conf))
  50. return ath9k_hw_mac_usec(ah, clks) / 2;
  51. else
  52. return ath9k_hw_mac_usec(ah, clks);
  53. }
  54. static u32 ath9k_hw_mac_clks(struct ath_hw *ah, u32 usecs)
  55. {
  56. struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
  57. if (!ah->curchan) /* should really check for CCK instead */
  58. return usecs *ATH9K_CLOCK_RATE_CCK;
  59. if (conf->channel->band == IEEE80211_BAND_2GHZ)
  60. return usecs *ATH9K_CLOCK_RATE_2GHZ_OFDM;
  61. return usecs *ATH9K_CLOCK_RATE_5GHZ_OFDM;
  62. }
  63. static u32 ath9k_hw_mac_to_clks(struct ath_hw *ah, u32 usecs)
  64. {
  65. struct ieee80211_conf *conf = &ah->ah_sc->hw->conf;
  66. if (conf_is_ht40(conf))
  67. return ath9k_hw_mac_clks(ah, usecs) * 2;
  68. else
  69. return ath9k_hw_mac_clks(ah, usecs);
  70. }
  71. /*
  72. * Read and write, they both share the same lock. We do this to serialize
  73. * reads and writes on Atheros 802.11n PCI devices only. This is required
  74. * as the FIFO on these devices can only accept sanely 2 requests. After
  75. * that the device goes bananas. Serializing the reads/writes prevents this
  76. * from happening.
  77. */
  78. void ath9k_iowrite32(struct ath_hw *ah, u32 reg_offset, u32 val)
  79. {
  80. if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
  81. unsigned long flags;
  82. spin_lock_irqsave(&ah->ah_sc->sc_serial_rw, flags);
  83. iowrite32(val, ah->ah_sc->mem + reg_offset);
  84. spin_unlock_irqrestore(&ah->ah_sc->sc_serial_rw, flags);
  85. } else
  86. iowrite32(val, ah->ah_sc->mem + reg_offset);
  87. }
  88. unsigned int ath9k_ioread32(struct ath_hw *ah, u32 reg_offset)
  89. {
  90. u32 val;
  91. if (ah->config.serialize_regmode == SER_REG_MODE_ON) {
  92. unsigned long flags;
  93. spin_lock_irqsave(&ah->ah_sc->sc_serial_rw, flags);
  94. val = ioread32(ah->ah_sc->mem + reg_offset);
  95. spin_unlock_irqrestore(&ah->ah_sc->sc_serial_rw, flags);
  96. } else
  97. val = ioread32(ah->ah_sc->mem + reg_offset);
  98. return val;
  99. }
  100. bool ath9k_hw_wait(struct ath_hw *ah, u32 reg, u32 mask, u32 val, u32 timeout)
  101. {
  102. int i;
  103. BUG_ON(timeout < AH_TIME_QUANTUM);
  104. for (i = 0; i < (timeout / AH_TIME_QUANTUM); i++) {
  105. if ((REG_READ(ah, reg) & mask) == val)
  106. return true;
  107. udelay(AH_TIME_QUANTUM);
  108. }
  109. DPRINTF(ah->ah_sc, ATH_DBG_ANY,
  110. "timeout (%d us) on reg 0x%x: 0x%08x & 0x%08x != 0x%08x\n",
  111. timeout, reg, REG_READ(ah, reg), mask, val);
  112. return false;
  113. }
  114. u32 ath9k_hw_reverse_bits(u32 val, u32 n)
  115. {
  116. u32 retval;
  117. int i;
  118. for (i = 0, retval = 0; i < n; i++) {
  119. retval = (retval << 1) | (val & 1);
  120. val >>= 1;
  121. }
  122. return retval;
  123. }
  124. bool ath9k_get_channel_edges(struct ath_hw *ah,
  125. u16 flags, u16 *low,
  126. u16 *high)
  127. {
  128. struct ath9k_hw_capabilities *pCap = &ah->caps;
  129. if (flags & CHANNEL_5GHZ) {
  130. *low = pCap->low_5ghz_chan;
  131. *high = pCap->high_5ghz_chan;
  132. return true;
  133. }
  134. if ((flags & CHANNEL_2GHZ)) {
  135. *low = pCap->low_2ghz_chan;
  136. *high = pCap->high_2ghz_chan;
  137. return true;
  138. }
  139. return false;
  140. }
  141. u16 ath9k_hw_computetxtime(struct ath_hw *ah,
  142. const struct ath_rate_table *rates,
  143. u32 frameLen, u16 rateix,
  144. bool shortPreamble)
  145. {
  146. u32 bitsPerSymbol, numBits, numSymbols, phyTime, txTime;
  147. u32 kbps;
  148. kbps = rates->info[rateix].ratekbps;
  149. if (kbps == 0)
  150. return 0;
  151. switch (rates->info[rateix].phy) {
  152. case WLAN_RC_PHY_CCK:
  153. phyTime = CCK_PREAMBLE_BITS + CCK_PLCP_BITS;
  154. if (shortPreamble && rates->info[rateix].short_preamble)
  155. phyTime >>= 1;
  156. numBits = frameLen << 3;
  157. txTime = CCK_SIFS_TIME + phyTime + ((numBits * 1000) / kbps);
  158. break;
  159. case WLAN_RC_PHY_OFDM:
  160. if (ah->curchan && IS_CHAN_QUARTER_RATE(ah->curchan)) {
  161. bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_QUARTER) / 1000;
  162. numBits = OFDM_PLCP_BITS + (frameLen << 3);
  163. numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
  164. txTime = OFDM_SIFS_TIME_QUARTER
  165. + OFDM_PREAMBLE_TIME_QUARTER
  166. + (numSymbols * OFDM_SYMBOL_TIME_QUARTER);
  167. } else if (ah->curchan &&
  168. IS_CHAN_HALF_RATE(ah->curchan)) {
  169. bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME_HALF) / 1000;
  170. numBits = OFDM_PLCP_BITS + (frameLen << 3);
  171. numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
  172. txTime = OFDM_SIFS_TIME_HALF +
  173. OFDM_PREAMBLE_TIME_HALF
  174. + (numSymbols * OFDM_SYMBOL_TIME_HALF);
  175. } else {
  176. bitsPerSymbol = (kbps * OFDM_SYMBOL_TIME) / 1000;
  177. numBits = OFDM_PLCP_BITS + (frameLen << 3);
  178. numSymbols = DIV_ROUND_UP(numBits, bitsPerSymbol);
  179. txTime = OFDM_SIFS_TIME + OFDM_PREAMBLE_TIME
  180. + (numSymbols * OFDM_SYMBOL_TIME);
  181. }
  182. break;
  183. default:
  184. DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
  185. "Unknown phy %u (rate ix %u)\n",
  186. rates->info[rateix].phy, rateix);
  187. txTime = 0;
  188. break;
  189. }
  190. return txTime;
  191. }
  192. void ath9k_hw_get_channel_centers(struct ath_hw *ah,
  193. struct ath9k_channel *chan,
  194. struct chan_centers *centers)
  195. {
  196. int8_t extoff;
  197. if (!IS_CHAN_HT40(chan)) {
  198. centers->ctl_center = centers->ext_center =
  199. centers->synth_center = chan->channel;
  200. return;
  201. }
  202. if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
  203. (chan->chanmode == CHANNEL_G_HT40PLUS)) {
  204. centers->synth_center =
  205. chan->channel + HT40_CHANNEL_CENTER_SHIFT;
  206. extoff = 1;
  207. } else {
  208. centers->synth_center =
  209. chan->channel - HT40_CHANNEL_CENTER_SHIFT;
  210. extoff = -1;
  211. }
  212. centers->ctl_center =
  213. centers->synth_center - (extoff * HT40_CHANNEL_CENTER_SHIFT);
  214. centers->ext_center =
  215. centers->synth_center + (extoff *
  216. ((ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_20) ?
  217. HT40_CHANNEL_CENTER_SHIFT : 15));
  218. }
  219. /******************/
  220. /* Chip Revisions */
  221. /******************/
  222. static void ath9k_hw_read_revisions(struct ath_hw *ah)
  223. {
  224. u32 val;
  225. val = REG_READ(ah, AR_SREV) & AR_SREV_ID;
  226. if (val == 0xFF) {
  227. val = REG_READ(ah, AR_SREV);
  228. ah->hw_version.macVersion =
  229. (val & AR_SREV_VERSION2) >> AR_SREV_TYPE2_S;
  230. ah->hw_version.macRev = MS(val, AR_SREV_REVISION2);
  231. ah->is_pciexpress = (val & AR_SREV_TYPE2_HOST_MODE) ? 0 : 1;
  232. } else {
  233. if (!AR_SREV_9100(ah))
  234. ah->hw_version.macVersion = MS(val, AR_SREV_VERSION);
  235. ah->hw_version.macRev = val & AR_SREV_REVISION;
  236. if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE)
  237. ah->is_pciexpress = true;
  238. }
  239. }
  240. static int ath9k_hw_get_radiorev(struct ath_hw *ah)
  241. {
  242. u32 val;
  243. int i;
  244. REG_WRITE(ah, AR_PHY(0x36), 0x00007058);
  245. for (i = 0; i < 8; i++)
  246. REG_WRITE(ah, AR_PHY(0x20), 0x00010000);
  247. val = (REG_READ(ah, AR_PHY(256)) >> 24) & 0xff;
  248. val = ((val & 0xf0) >> 4) | ((val & 0x0f) << 4);
  249. return ath9k_hw_reverse_bits(val, 8);
  250. }
  251. /************************************/
  252. /* HW Attach, Detach, Init Routines */
  253. /************************************/
  254. static void ath9k_hw_disablepcie(struct ath_hw *ah)
  255. {
  256. if (AR_SREV_9100(ah))
  257. return;
  258. REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
  259. REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
  260. REG_WRITE(ah, AR_PCIE_SERDES, 0x28000029);
  261. REG_WRITE(ah, AR_PCIE_SERDES, 0x57160824);
  262. REG_WRITE(ah, AR_PCIE_SERDES, 0x25980579);
  263. REG_WRITE(ah, AR_PCIE_SERDES, 0x00000000);
  264. REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
  265. REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
  266. REG_WRITE(ah, AR_PCIE_SERDES, 0x000e1007);
  267. REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
  268. }
  269. static bool ath9k_hw_chip_test(struct ath_hw *ah)
  270. {
  271. u32 regAddr[2] = { AR_STA_ID0, AR_PHY_BASE + (8 << 2) };
  272. u32 regHold[2];
  273. u32 patternData[4] = { 0x55555555,
  274. 0xaaaaaaaa,
  275. 0x66666666,
  276. 0x99999999 };
  277. int i, j;
  278. for (i = 0; i < 2; i++) {
  279. u32 addr = regAddr[i];
  280. u32 wrData, rdData;
  281. regHold[i] = REG_READ(ah, addr);
  282. for (j = 0; j < 0x100; j++) {
  283. wrData = (j << 16) | j;
  284. REG_WRITE(ah, addr, wrData);
  285. rdData = REG_READ(ah, addr);
  286. if (rdData != wrData) {
  287. DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
  288. "address test failed "
  289. "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
  290. addr, wrData, rdData);
  291. return false;
  292. }
  293. }
  294. for (j = 0; j < 4; j++) {
  295. wrData = patternData[j];
  296. REG_WRITE(ah, addr, wrData);
  297. rdData = REG_READ(ah, addr);
  298. if (wrData != rdData) {
  299. DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
  300. "address test failed "
  301. "addr: 0x%08x - wr:0x%08x != rd:0x%08x\n",
  302. addr, wrData, rdData);
  303. return false;
  304. }
  305. }
  306. REG_WRITE(ah, regAddr[i], regHold[i]);
  307. }
  308. udelay(100);
  309. return true;
  310. }
  311. static const char *ath9k_hw_devname(u16 devid)
  312. {
  313. switch (devid) {
  314. case AR5416_DEVID_PCI:
  315. return "Atheros 5416";
  316. case AR5416_DEVID_PCIE:
  317. return "Atheros 5418";
  318. case AR9160_DEVID_PCI:
  319. return "Atheros 9160";
  320. case AR5416_AR9100_DEVID:
  321. return "Atheros 9100";
  322. case AR9280_DEVID_PCI:
  323. case AR9280_DEVID_PCIE:
  324. return "Atheros 9280";
  325. case AR9285_DEVID_PCIE:
  326. return "Atheros 9285";
  327. case AR5416_DEVID_AR9287_PCI:
  328. case AR5416_DEVID_AR9287_PCIE:
  329. return "Atheros 9287";
  330. }
  331. return NULL;
  332. }
  333. static void ath9k_hw_set_defaults(struct ath_hw *ah)
  334. {
  335. int i;
  336. ah->config.dma_beacon_response_time = 2;
  337. ah->config.sw_beacon_response_time = 10;
  338. ah->config.additional_swba_backoff = 0;
  339. ah->config.ack_6mb = 0x0;
  340. ah->config.cwm_ignore_extcca = 0;
  341. ah->config.pcie_powersave_enable = 0;
  342. ah->config.pcie_clock_req = 0;
  343. ah->config.pcie_waen = 0;
  344. ah->config.analog_shiftreg = 1;
  345. ah->config.ht_enable = 1;
  346. ah->config.ofdm_trig_low = 200;
  347. ah->config.ofdm_trig_high = 500;
  348. ah->config.cck_trig_high = 200;
  349. ah->config.cck_trig_low = 100;
  350. ah->config.enable_ani = 1;
  351. ah->config.diversity_control = 0;
  352. ah->config.antenna_switch_swap = 0;
  353. for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
  354. ah->config.spurchans[i][0] = AR_NO_SPUR;
  355. ah->config.spurchans[i][1] = AR_NO_SPUR;
  356. }
  357. ah->config.intr_mitigation = true;
  358. /*
  359. * We need this for PCI devices only (Cardbus, PCI, miniPCI)
  360. * _and_ if on non-uniprocessor systems (Multiprocessor/HT).
  361. * This means we use it for all AR5416 devices, and the few
  362. * minor PCI AR9280 devices out there.
  363. *
  364. * Serialization is required because these devices do not handle
  365. * well the case of two concurrent reads/writes due to the latency
  366. * involved. During one read/write another read/write can be issued
  367. * on another CPU while the previous read/write may still be working
  368. * on our hardware, if we hit this case the hardware poops in a loop.
  369. * We prevent this by serializing reads and writes.
  370. *
  371. * This issue is not present on PCI-Express devices or pre-AR5416
  372. * devices (legacy, 802.11abg).
  373. */
  374. if (num_possible_cpus() > 1)
  375. ah->config.serialize_regmode = SER_REG_MODE_AUTO;
  376. }
  377. static struct ath_hw *ath9k_hw_newstate(u16 devid, struct ath_softc *sc,
  378. int *status)
  379. {
  380. struct ath_hw *ah;
  381. ah = kzalloc(sizeof(struct ath_hw), GFP_KERNEL);
  382. if (ah == NULL) {
  383. DPRINTF(sc, ATH_DBG_FATAL,
  384. "Cannot allocate memory for state block\n");
  385. *status = -ENOMEM;
  386. return NULL;
  387. }
  388. ah->ah_sc = sc;
  389. ah->hw_version.magic = AR5416_MAGIC;
  390. ah->regulatory.country_code = CTRY_DEFAULT;
  391. ah->hw_version.devid = devid;
  392. ah->hw_version.subvendorid = 0;
  393. ah->ah_flags = 0;
  394. if ((devid == AR5416_AR9100_DEVID))
  395. ah->hw_version.macVersion = AR_SREV_VERSION_9100;
  396. if (!AR_SREV_9100(ah))
  397. ah->ah_flags = AH_USE_EEPROM;
  398. ah->regulatory.power_limit = MAX_RATE_POWER;
  399. ah->regulatory.tp_scale = ATH9K_TP_SCALE_MAX;
  400. ah->atim_window = 0;
  401. ah->diversity_control = ah->config.diversity_control;
  402. ah->antenna_switch_swap =
  403. ah->config.antenna_switch_swap;
  404. ah->sta_id1_defaults = AR_STA_ID1_CRPT_MIC_ENABLE;
  405. ah->beacon_interval = 100;
  406. ah->enable_32kHz_clock = DONT_USE_32KHZ;
  407. ah->slottime = (u32) -1;
  408. ah->acktimeout = (u32) -1;
  409. ah->ctstimeout = (u32) -1;
  410. ah->globaltxtimeout = (u32) -1;
  411. ah->gbeacon_rate = 0;
  412. return ah;
  413. }
  414. static int ath9k_hw_rfattach(struct ath_hw *ah)
  415. {
  416. bool rfStatus = false;
  417. int ecode = 0;
  418. rfStatus = ath9k_hw_init_rf(ah, &ecode);
  419. if (!rfStatus) {
  420. DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
  421. "RF setup failed, status: %u\n", ecode);
  422. return ecode;
  423. }
  424. return 0;
  425. }
  426. static int ath9k_hw_rf_claim(struct ath_hw *ah)
  427. {
  428. u32 val;
  429. REG_WRITE(ah, AR_PHY(0), 0x00000007);
  430. val = ath9k_hw_get_radiorev(ah);
  431. switch (val & AR_RADIO_SREV_MAJOR) {
  432. case 0:
  433. val = AR_RAD5133_SREV_MAJOR;
  434. break;
  435. case AR_RAD5133_SREV_MAJOR:
  436. case AR_RAD5122_SREV_MAJOR:
  437. case AR_RAD2133_SREV_MAJOR:
  438. case AR_RAD2122_SREV_MAJOR:
  439. break;
  440. default:
  441. DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
  442. "Radio Chip Rev 0x%02X not supported\n",
  443. val & AR_RADIO_SREV_MAJOR);
  444. return -EOPNOTSUPP;
  445. }
  446. ah->hw_version.analog5GhzRev = val;
  447. return 0;
  448. }
  449. static int ath9k_hw_init_macaddr(struct ath_hw *ah)
  450. {
  451. u32 sum;
  452. int i;
  453. u16 eeval;
  454. sum = 0;
  455. for (i = 0; i < 3; i++) {
  456. eeval = ah->eep_ops->get_eeprom(ah, AR_EEPROM_MAC(i));
  457. sum += eeval;
  458. ah->macaddr[2 * i] = eeval >> 8;
  459. ah->macaddr[2 * i + 1] = eeval & 0xff;
  460. }
  461. if (sum == 0 || sum == 0xffff * 3)
  462. return -EADDRNOTAVAIL;
  463. return 0;
  464. }
  465. static void ath9k_hw_init_rxgain_ini(struct ath_hw *ah)
  466. {
  467. u32 rxgain_type;
  468. if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_17) {
  469. rxgain_type = ah->eep_ops->get_eeprom(ah, EEP_RXGAIN_TYPE);
  470. if (rxgain_type == AR5416_EEP_RXGAIN_13DB_BACKOFF)
  471. INIT_INI_ARRAY(&ah->iniModesRxGain,
  472. ar9280Modes_backoff_13db_rxgain_9280_2,
  473. ARRAY_SIZE(ar9280Modes_backoff_13db_rxgain_9280_2), 6);
  474. else if (rxgain_type == AR5416_EEP_RXGAIN_23DB_BACKOFF)
  475. INIT_INI_ARRAY(&ah->iniModesRxGain,
  476. ar9280Modes_backoff_23db_rxgain_9280_2,
  477. ARRAY_SIZE(ar9280Modes_backoff_23db_rxgain_9280_2), 6);
  478. else
  479. INIT_INI_ARRAY(&ah->iniModesRxGain,
  480. ar9280Modes_original_rxgain_9280_2,
  481. ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
  482. } else {
  483. INIT_INI_ARRAY(&ah->iniModesRxGain,
  484. ar9280Modes_original_rxgain_9280_2,
  485. ARRAY_SIZE(ar9280Modes_original_rxgain_9280_2), 6);
  486. }
  487. }
  488. static void ath9k_hw_init_txgain_ini(struct ath_hw *ah)
  489. {
  490. u32 txgain_type;
  491. if (ah->eep_ops->get_eeprom(ah, EEP_MINOR_REV) >= AR5416_EEP_MINOR_VER_19) {
  492. txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
  493. if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER)
  494. INIT_INI_ARRAY(&ah->iniModesTxGain,
  495. ar9280Modes_high_power_tx_gain_9280_2,
  496. ARRAY_SIZE(ar9280Modes_high_power_tx_gain_9280_2), 6);
  497. else
  498. INIT_INI_ARRAY(&ah->iniModesTxGain,
  499. ar9280Modes_original_tx_gain_9280_2,
  500. ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
  501. } else {
  502. INIT_INI_ARRAY(&ah->iniModesTxGain,
  503. ar9280Modes_original_tx_gain_9280_2,
  504. ARRAY_SIZE(ar9280Modes_original_tx_gain_9280_2), 6);
  505. }
  506. }
  507. static int ath9k_hw_post_attach(struct ath_hw *ah)
  508. {
  509. int ecode;
  510. if (!ath9k_hw_chip_test(ah))
  511. return -ENODEV;
  512. ecode = ath9k_hw_rf_claim(ah);
  513. if (ecode != 0)
  514. return ecode;
  515. ecode = ath9k_hw_eeprom_attach(ah);
  516. if (ecode != 0)
  517. return ecode;
  518. DPRINTF(ah->ah_sc, ATH_DBG_CONFIG, "Eeprom VER: %d, REV: %d\n",
  519. ah->eep_ops->get_eeprom_ver(ah), ah->eep_ops->get_eeprom_rev(ah));
  520. ecode = ath9k_hw_rfattach(ah);
  521. if (ecode != 0)
  522. return ecode;
  523. if (!AR_SREV_9100(ah)) {
  524. ath9k_hw_ani_setup(ah);
  525. ath9k_hw_ani_attach(ah);
  526. }
  527. return 0;
  528. }
  529. static struct ath_hw *ath9k_hw_do_attach(u16 devid, struct ath_softc *sc,
  530. int *status)
  531. {
  532. struct ath_hw *ah;
  533. int ecode;
  534. u32 i, j;
  535. ah = ath9k_hw_newstate(devid, sc, status);
  536. if (ah == NULL)
  537. return NULL;
  538. ath9k_hw_set_defaults(ah);
  539. if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON)) {
  540. DPRINTF(sc, ATH_DBG_FATAL, "Couldn't reset chip\n");
  541. ecode = -EIO;
  542. goto bad;
  543. }
  544. if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
  545. DPRINTF(sc, ATH_DBG_FATAL, "Couldn't wakeup chip\n");
  546. ecode = -EIO;
  547. goto bad;
  548. }
  549. if (ah->config.serialize_regmode == SER_REG_MODE_AUTO) {
  550. if (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI ||
  551. (AR_SREV_9280(ah) && !ah->is_pciexpress)) {
  552. ah->config.serialize_regmode =
  553. SER_REG_MODE_ON;
  554. } else {
  555. ah->config.serialize_regmode =
  556. SER_REG_MODE_OFF;
  557. }
  558. }
  559. DPRINTF(sc, ATH_DBG_RESET, "serialize_regmode is %d\n",
  560. ah->config.serialize_regmode);
  561. if ((ah->hw_version.macVersion != AR_SREV_VERSION_5416_PCI) &&
  562. (ah->hw_version.macVersion != AR_SREV_VERSION_5416_PCIE) &&
  563. (ah->hw_version.macVersion != AR_SREV_VERSION_9160) &&
  564. (!AR_SREV_9100(ah)) && (!AR_SREV_9280(ah)) &&
  565. (!AR_SREV_9285(ah)) && (!AR_SREV_9287(ah))) {
  566. DPRINTF(sc, ATH_DBG_FATAL,
  567. "Mac Chip Rev 0x%02x.%x is not supported by "
  568. "this driver\n", ah->hw_version.macVersion,
  569. ah->hw_version.macRev);
  570. ecode = -EOPNOTSUPP;
  571. goto bad;
  572. }
  573. if (AR_SREV_9100(ah)) {
  574. ah->iq_caldata.calData = &iq_cal_multi_sample;
  575. ah->supp_cals = IQ_MISMATCH_CAL;
  576. ah->is_pciexpress = false;
  577. }
  578. ah->hw_version.phyRev = REG_READ(ah, AR_PHY_CHIP_ID);
  579. if (AR_SREV_9160_10_OR_LATER(ah)) {
  580. if (AR_SREV_9280_10_OR_LATER(ah)) {
  581. ah->iq_caldata.calData = &iq_cal_single_sample;
  582. ah->adcgain_caldata.calData =
  583. &adc_gain_cal_single_sample;
  584. ah->adcdc_caldata.calData =
  585. &adc_dc_cal_single_sample;
  586. ah->adcdc_calinitdata.calData =
  587. &adc_init_dc_cal;
  588. } else {
  589. ah->iq_caldata.calData = &iq_cal_multi_sample;
  590. ah->adcgain_caldata.calData =
  591. &adc_gain_cal_multi_sample;
  592. ah->adcdc_caldata.calData =
  593. &adc_dc_cal_multi_sample;
  594. ah->adcdc_calinitdata.calData =
  595. &adc_init_dc_cal;
  596. }
  597. ah->supp_cals = ADC_GAIN_CAL | ADC_DC_CAL | IQ_MISMATCH_CAL;
  598. }
  599. ah->ani_function = ATH9K_ANI_ALL;
  600. if (AR_SREV_9280_10_OR_LATER(ah))
  601. ah->ani_function &= ~ATH9K_ANI_NOISE_IMMUNITY_LEVEL;
  602. if (AR_SREV_9287_11_OR_LATER(ah)) {
  603. INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_1,
  604. ARRAY_SIZE(ar9287Modes_9287_1_1), 6);
  605. INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_1,
  606. ARRAY_SIZE(ar9287Common_9287_1_1), 2);
  607. if (ah->config.pcie_clock_req)
  608. INIT_INI_ARRAY(&ah->iniPcieSerdes,
  609. ar9287PciePhy_clkreq_off_L1_9287_1_1,
  610. ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_1), 2);
  611. else
  612. INIT_INI_ARRAY(&ah->iniPcieSerdes,
  613. ar9287PciePhy_clkreq_always_on_L1_9287_1_1,
  614. ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_1),
  615. 2);
  616. } else if (AR_SREV_9287_10_OR_LATER(ah)) {
  617. INIT_INI_ARRAY(&ah->iniModes, ar9287Modes_9287_1_0,
  618. ARRAY_SIZE(ar9287Modes_9287_1_0), 6);
  619. INIT_INI_ARRAY(&ah->iniCommon, ar9287Common_9287_1_0,
  620. ARRAY_SIZE(ar9287Common_9287_1_0), 2);
  621. if (ah->config.pcie_clock_req)
  622. INIT_INI_ARRAY(&ah->iniPcieSerdes,
  623. ar9287PciePhy_clkreq_off_L1_9287_1_0,
  624. ARRAY_SIZE(ar9287PciePhy_clkreq_off_L1_9287_1_0), 2);
  625. else
  626. INIT_INI_ARRAY(&ah->iniPcieSerdes,
  627. ar9287PciePhy_clkreq_always_on_L1_9287_1_0,
  628. ARRAY_SIZE(ar9287PciePhy_clkreq_always_on_L1_9287_1_0),
  629. 2);
  630. } else if (AR_SREV_9285_12_OR_LATER(ah)) {
  631. INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285_1_2,
  632. ARRAY_SIZE(ar9285Modes_9285_1_2), 6);
  633. INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285_1_2,
  634. ARRAY_SIZE(ar9285Common_9285_1_2), 2);
  635. if (ah->config.pcie_clock_req) {
  636. INIT_INI_ARRAY(&ah->iniPcieSerdes,
  637. ar9285PciePhy_clkreq_off_L1_9285_1_2,
  638. ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285_1_2), 2);
  639. } else {
  640. INIT_INI_ARRAY(&ah->iniPcieSerdes,
  641. ar9285PciePhy_clkreq_always_on_L1_9285_1_2,
  642. ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285_1_2),
  643. 2);
  644. }
  645. } else if (AR_SREV_9285_10_OR_LATER(ah)) {
  646. INIT_INI_ARRAY(&ah->iniModes, ar9285Modes_9285,
  647. ARRAY_SIZE(ar9285Modes_9285), 6);
  648. INIT_INI_ARRAY(&ah->iniCommon, ar9285Common_9285,
  649. ARRAY_SIZE(ar9285Common_9285), 2);
  650. if (ah->config.pcie_clock_req) {
  651. INIT_INI_ARRAY(&ah->iniPcieSerdes,
  652. ar9285PciePhy_clkreq_off_L1_9285,
  653. ARRAY_SIZE(ar9285PciePhy_clkreq_off_L1_9285), 2);
  654. } else {
  655. INIT_INI_ARRAY(&ah->iniPcieSerdes,
  656. ar9285PciePhy_clkreq_always_on_L1_9285,
  657. ARRAY_SIZE(ar9285PciePhy_clkreq_always_on_L1_9285), 2);
  658. }
  659. } else if (AR_SREV_9280_20_OR_LATER(ah)) {
  660. INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280_2,
  661. ARRAY_SIZE(ar9280Modes_9280_2), 6);
  662. INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280_2,
  663. ARRAY_SIZE(ar9280Common_9280_2), 2);
  664. if (ah->config.pcie_clock_req) {
  665. INIT_INI_ARRAY(&ah->iniPcieSerdes,
  666. ar9280PciePhy_clkreq_off_L1_9280,
  667. ARRAY_SIZE(ar9280PciePhy_clkreq_off_L1_9280),2);
  668. } else {
  669. INIT_INI_ARRAY(&ah->iniPcieSerdes,
  670. ar9280PciePhy_clkreq_always_on_L1_9280,
  671. ARRAY_SIZE(ar9280PciePhy_clkreq_always_on_L1_9280), 2);
  672. }
  673. INIT_INI_ARRAY(&ah->iniModesAdditional,
  674. ar9280Modes_fast_clock_9280_2,
  675. ARRAY_SIZE(ar9280Modes_fast_clock_9280_2), 3);
  676. } else if (AR_SREV_9280_10_OR_LATER(ah)) {
  677. INIT_INI_ARRAY(&ah->iniModes, ar9280Modes_9280,
  678. ARRAY_SIZE(ar9280Modes_9280), 6);
  679. INIT_INI_ARRAY(&ah->iniCommon, ar9280Common_9280,
  680. ARRAY_SIZE(ar9280Common_9280), 2);
  681. } else if (AR_SREV_9160_10_OR_LATER(ah)) {
  682. INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9160,
  683. ARRAY_SIZE(ar5416Modes_9160), 6);
  684. INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9160,
  685. ARRAY_SIZE(ar5416Common_9160), 2);
  686. INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9160,
  687. ARRAY_SIZE(ar5416Bank0_9160), 2);
  688. INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9160,
  689. ARRAY_SIZE(ar5416BB_RfGain_9160), 3);
  690. INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9160,
  691. ARRAY_SIZE(ar5416Bank1_9160), 2);
  692. INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9160,
  693. ARRAY_SIZE(ar5416Bank2_9160), 2);
  694. INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9160,
  695. ARRAY_SIZE(ar5416Bank3_9160), 3);
  696. INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9160,
  697. ARRAY_SIZE(ar5416Bank6_9160), 3);
  698. INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9160,
  699. ARRAY_SIZE(ar5416Bank6TPC_9160), 3);
  700. INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9160,
  701. ARRAY_SIZE(ar5416Bank7_9160), 2);
  702. if (AR_SREV_9160_11(ah)) {
  703. INIT_INI_ARRAY(&ah->iniAddac,
  704. ar5416Addac_91601_1,
  705. ARRAY_SIZE(ar5416Addac_91601_1), 2);
  706. } else {
  707. INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9160,
  708. ARRAY_SIZE(ar5416Addac_9160), 2);
  709. }
  710. } else if (AR_SREV_9100_OR_LATER(ah)) {
  711. INIT_INI_ARRAY(&ah->iniModes, ar5416Modes_9100,
  712. ARRAY_SIZE(ar5416Modes_9100), 6);
  713. INIT_INI_ARRAY(&ah->iniCommon, ar5416Common_9100,
  714. ARRAY_SIZE(ar5416Common_9100), 2);
  715. INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0_9100,
  716. ARRAY_SIZE(ar5416Bank0_9100), 2);
  717. INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain_9100,
  718. ARRAY_SIZE(ar5416BB_RfGain_9100), 3);
  719. INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1_9100,
  720. ARRAY_SIZE(ar5416Bank1_9100), 2);
  721. INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2_9100,
  722. ARRAY_SIZE(ar5416Bank2_9100), 2);
  723. INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3_9100,
  724. ARRAY_SIZE(ar5416Bank3_9100), 3);
  725. INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6_9100,
  726. ARRAY_SIZE(ar5416Bank6_9100), 3);
  727. INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC_9100,
  728. ARRAY_SIZE(ar5416Bank6TPC_9100), 3);
  729. INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7_9100,
  730. ARRAY_SIZE(ar5416Bank7_9100), 2);
  731. INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac_9100,
  732. ARRAY_SIZE(ar5416Addac_9100), 2);
  733. } else {
  734. INIT_INI_ARRAY(&ah->iniModes, ar5416Modes,
  735. ARRAY_SIZE(ar5416Modes), 6);
  736. INIT_INI_ARRAY(&ah->iniCommon, ar5416Common,
  737. ARRAY_SIZE(ar5416Common), 2);
  738. INIT_INI_ARRAY(&ah->iniBank0, ar5416Bank0,
  739. ARRAY_SIZE(ar5416Bank0), 2);
  740. INIT_INI_ARRAY(&ah->iniBB_RfGain, ar5416BB_RfGain,
  741. ARRAY_SIZE(ar5416BB_RfGain), 3);
  742. INIT_INI_ARRAY(&ah->iniBank1, ar5416Bank1,
  743. ARRAY_SIZE(ar5416Bank1), 2);
  744. INIT_INI_ARRAY(&ah->iniBank2, ar5416Bank2,
  745. ARRAY_SIZE(ar5416Bank2), 2);
  746. INIT_INI_ARRAY(&ah->iniBank3, ar5416Bank3,
  747. ARRAY_SIZE(ar5416Bank3), 3);
  748. INIT_INI_ARRAY(&ah->iniBank6, ar5416Bank6,
  749. ARRAY_SIZE(ar5416Bank6), 3);
  750. INIT_INI_ARRAY(&ah->iniBank6TPC, ar5416Bank6TPC,
  751. ARRAY_SIZE(ar5416Bank6TPC), 3);
  752. INIT_INI_ARRAY(&ah->iniBank7, ar5416Bank7,
  753. ARRAY_SIZE(ar5416Bank7), 2);
  754. INIT_INI_ARRAY(&ah->iniAddac, ar5416Addac,
  755. ARRAY_SIZE(ar5416Addac), 2);
  756. }
  757. if (ah->is_pciexpress)
  758. ath9k_hw_configpcipowersave(ah, 0);
  759. else
  760. ath9k_hw_disablepcie(ah);
  761. ecode = ath9k_hw_post_attach(ah);
  762. if (ecode != 0)
  763. goto bad;
  764. if (AR_SREV_9287_11(ah))
  765. INIT_INI_ARRAY(&ah->iniModesRxGain,
  766. ar9287Modes_rx_gain_9287_1_1,
  767. ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_1), 6);
  768. else if (AR_SREV_9287_10(ah))
  769. INIT_INI_ARRAY(&ah->iniModesRxGain,
  770. ar9287Modes_rx_gain_9287_1_0,
  771. ARRAY_SIZE(ar9287Modes_rx_gain_9287_1_0), 6);
  772. else if (AR_SREV_9280_20(ah))
  773. ath9k_hw_init_rxgain_ini(ah);
  774. if (AR_SREV_9287_11(ah)) {
  775. INIT_INI_ARRAY(&ah->iniModesTxGain,
  776. ar9287Modes_tx_gain_9287_1_1,
  777. ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_1), 6);
  778. } else if (AR_SREV_9287_10(ah)) {
  779. INIT_INI_ARRAY(&ah->iniModesTxGain,
  780. ar9287Modes_tx_gain_9287_1_0,
  781. ARRAY_SIZE(ar9287Modes_tx_gain_9287_1_0), 6);
  782. } else if (AR_SREV_9280_20(ah)) {
  783. ath9k_hw_init_txgain_ini(ah);
  784. } else if (AR_SREV_9285_12_OR_LATER(ah)) {
  785. u32 txgain_type = ah->eep_ops->get_eeprom(ah, EEP_TXGAIN_TYPE);
  786. /* txgain table */
  787. if (txgain_type == AR5416_EEP_TXGAIN_HIGH_POWER) {
  788. INIT_INI_ARRAY(&ah->iniModesTxGain,
  789. ar9285Modes_high_power_tx_gain_9285_1_2,
  790. ARRAY_SIZE(ar9285Modes_high_power_tx_gain_9285_1_2), 6);
  791. } else {
  792. INIT_INI_ARRAY(&ah->iniModesTxGain,
  793. ar9285Modes_original_tx_gain_9285_1_2,
  794. ARRAY_SIZE(ar9285Modes_original_tx_gain_9285_1_2), 6);
  795. }
  796. }
  797. ath9k_hw_fill_cap_info(ah);
  798. if ((ah->hw_version.devid == AR9280_DEVID_PCI) &&
  799. test_bit(ATH9K_MODE_11A, ah->caps.wireless_modes)) {
  800. /* EEPROM Fixup */
  801. for (i = 0; i < ah->iniModes.ia_rows; i++) {
  802. u32 reg = INI_RA(&ah->iniModes, i, 0);
  803. for (j = 1; j < ah->iniModes.ia_columns; j++) {
  804. u32 val = INI_RA(&ah->iniModes, i, j);
  805. INI_RA(&ah->iniModes, i, j) =
  806. ath9k_hw_ini_fixup(ah,
  807. &ah->eeprom.def,
  808. reg, val);
  809. }
  810. }
  811. }
  812. ecode = ath9k_hw_init_macaddr(ah);
  813. if (ecode != 0) {
  814. DPRINTF(sc, ATH_DBG_FATAL,
  815. "Failed to initialize MAC address\n");
  816. goto bad;
  817. }
  818. if (AR_SREV_9285(ah))
  819. ah->tx_trig_level = (AR_FTRIG_256B >> AR_FTRIG_S);
  820. else
  821. ah->tx_trig_level = (AR_FTRIG_512B >> AR_FTRIG_S);
  822. ath9k_init_nfcal_hist_buffer(ah);
  823. return ah;
  824. bad:
  825. if (ah)
  826. ath9k_hw_detach(ah);
  827. if (status)
  828. *status = ecode;
  829. return NULL;
  830. }
  831. static void ath9k_hw_init_bb(struct ath_hw *ah,
  832. struct ath9k_channel *chan)
  833. {
  834. u32 synthDelay;
  835. synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
  836. if (IS_CHAN_B(chan))
  837. synthDelay = (4 * synthDelay) / 22;
  838. else
  839. synthDelay /= 10;
  840. REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_EN);
  841. udelay(synthDelay + BASE_ACTIVATE_DELAY);
  842. }
  843. static void ath9k_hw_init_qos(struct ath_hw *ah)
  844. {
  845. REG_WRITE(ah, AR_MIC_QOS_CONTROL, 0x100aa);
  846. REG_WRITE(ah, AR_MIC_QOS_SELECT, 0x3210);
  847. REG_WRITE(ah, AR_QOS_NO_ACK,
  848. SM(2, AR_QOS_NO_ACK_TWO_BIT) |
  849. SM(5, AR_QOS_NO_ACK_BIT_OFF) |
  850. SM(0, AR_QOS_NO_ACK_BYTE_OFF));
  851. REG_WRITE(ah, AR_TXOP_X, AR_TXOP_X_VAL);
  852. REG_WRITE(ah, AR_TXOP_0_3, 0xFFFFFFFF);
  853. REG_WRITE(ah, AR_TXOP_4_7, 0xFFFFFFFF);
  854. REG_WRITE(ah, AR_TXOP_8_11, 0xFFFFFFFF);
  855. REG_WRITE(ah, AR_TXOP_12_15, 0xFFFFFFFF);
  856. }
  857. static void ath9k_hw_init_pll(struct ath_hw *ah,
  858. struct ath9k_channel *chan)
  859. {
  860. u32 pll;
  861. if (AR_SREV_9100(ah)) {
  862. if (chan && IS_CHAN_5GHZ(chan))
  863. pll = 0x1450;
  864. else
  865. pll = 0x1458;
  866. } else {
  867. if (AR_SREV_9280_10_OR_LATER(ah)) {
  868. pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
  869. if (chan && IS_CHAN_HALF_RATE(chan))
  870. pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
  871. else if (chan && IS_CHAN_QUARTER_RATE(chan))
  872. pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
  873. if (chan && IS_CHAN_5GHZ(chan)) {
  874. pll |= SM(0x28, AR_RTC_9160_PLL_DIV);
  875. if (AR_SREV_9280_20(ah)) {
  876. if (((chan->channel % 20) == 0)
  877. || ((chan->channel % 10) == 0))
  878. pll = 0x2850;
  879. else
  880. pll = 0x142c;
  881. }
  882. } else {
  883. pll |= SM(0x2c, AR_RTC_9160_PLL_DIV);
  884. }
  885. } else if (AR_SREV_9160_10_OR_LATER(ah)) {
  886. pll = SM(0x5, AR_RTC_9160_PLL_REFDIV);
  887. if (chan && IS_CHAN_HALF_RATE(chan))
  888. pll |= SM(0x1, AR_RTC_9160_PLL_CLKSEL);
  889. else if (chan && IS_CHAN_QUARTER_RATE(chan))
  890. pll |= SM(0x2, AR_RTC_9160_PLL_CLKSEL);
  891. if (chan && IS_CHAN_5GHZ(chan))
  892. pll |= SM(0x50, AR_RTC_9160_PLL_DIV);
  893. else
  894. pll |= SM(0x58, AR_RTC_9160_PLL_DIV);
  895. } else {
  896. pll = AR_RTC_PLL_REFDIV_5 | AR_RTC_PLL_DIV2;
  897. if (chan && IS_CHAN_HALF_RATE(chan))
  898. pll |= SM(0x1, AR_RTC_PLL_CLKSEL);
  899. else if (chan && IS_CHAN_QUARTER_RATE(chan))
  900. pll |= SM(0x2, AR_RTC_PLL_CLKSEL);
  901. if (chan && IS_CHAN_5GHZ(chan))
  902. pll |= SM(0xa, AR_RTC_PLL_DIV);
  903. else
  904. pll |= SM(0xb, AR_RTC_PLL_DIV);
  905. }
  906. }
  907. REG_WRITE(ah, AR_RTC_PLL_CONTROL, pll);
  908. udelay(RTC_PLL_SETTLE_DELAY);
  909. REG_WRITE(ah, AR_RTC_SLEEP_CLK, AR_RTC_FORCE_DERIVED_CLK);
  910. }
  911. static void ath9k_hw_init_chain_masks(struct ath_hw *ah)
  912. {
  913. int rx_chainmask, tx_chainmask;
  914. rx_chainmask = ah->rxchainmask;
  915. tx_chainmask = ah->txchainmask;
  916. switch (rx_chainmask) {
  917. case 0x5:
  918. REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
  919. AR_PHY_SWAP_ALT_CHAIN);
  920. case 0x3:
  921. if (((ah)->hw_version.macVersion <= AR_SREV_VERSION_9160)) {
  922. REG_WRITE(ah, AR_PHY_RX_CHAINMASK, 0x7);
  923. REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, 0x7);
  924. break;
  925. }
  926. case 0x1:
  927. case 0x2:
  928. case 0x7:
  929. REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
  930. REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
  931. break;
  932. default:
  933. break;
  934. }
  935. REG_WRITE(ah, AR_SELFGEN_MASK, tx_chainmask);
  936. if (tx_chainmask == 0x5) {
  937. REG_SET_BIT(ah, AR_PHY_ANALOG_SWAP,
  938. AR_PHY_SWAP_ALT_CHAIN);
  939. }
  940. if (AR_SREV_9100(ah))
  941. REG_WRITE(ah, AR_PHY_ANALOG_SWAP,
  942. REG_READ(ah, AR_PHY_ANALOG_SWAP) | 0x00000001);
  943. }
  944. static void ath9k_hw_init_interrupt_masks(struct ath_hw *ah,
  945. enum nl80211_iftype opmode)
  946. {
  947. ah->mask_reg = AR_IMR_TXERR |
  948. AR_IMR_TXURN |
  949. AR_IMR_RXERR |
  950. AR_IMR_RXORN |
  951. AR_IMR_BCNMISC;
  952. if (ah->config.intr_mitigation)
  953. ah->mask_reg |= AR_IMR_RXINTM | AR_IMR_RXMINTR;
  954. else
  955. ah->mask_reg |= AR_IMR_RXOK;
  956. ah->mask_reg |= AR_IMR_TXOK;
  957. if (opmode == NL80211_IFTYPE_AP)
  958. ah->mask_reg |= AR_IMR_MIB;
  959. REG_WRITE(ah, AR_IMR, ah->mask_reg);
  960. REG_WRITE(ah, AR_IMR_S2, REG_READ(ah, AR_IMR_S2) | AR_IMR_S2_GTT);
  961. if (!AR_SREV_9100(ah)) {
  962. REG_WRITE(ah, AR_INTR_SYNC_CAUSE, 0xFFFFFFFF);
  963. REG_WRITE(ah, AR_INTR_SYNC_ENABLE, AR_INTR_SYNC_DEFAULT);
  964. REG_WRITE(ah, AR_INTR_SYNC_MASK, 0);
  965. }
  966. }
  967. static bool ath9k_hw_set_ack_timeout(struct ath_hw *ah, u32 us)
  968. {
  969. if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_ACK))) {
  970. DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad ack timeout %u\n", us);
  971. ah->acktimeout = (u32) -1;
  972. return false;
  973. } else {
  974. REG_RMW_FIELD(ah, AR_TIME_OUT,
  975. AR_TIME_OUT_ACK, ath9k_hw_mac_to_clks(ah, us));
  976. ah->acktimeout = us;
  977. return true;
  978. }
  979. }
  980. static bool ath9k_hw_set_cts_timeout(struct ath_hw *ah, u32 us)
  981. {
  982. if (us > ath9k_hw_mac_to_usec(ah, MS(0xffffffff, AR_TIME_OUT_CTS))) {
  983. DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad cts timeout %u\n", us);
  984. ah->ctstimeout = (u32) -1;
  985. return false;
  986. } else {
  987. REG_RMW_FIELD(ah, AR_TIME_OUT,
  988. AR_TIME_OUT_CTS, ath9k_hw_mac_to_clks(ah, us));
  989. ah->ctstimeout = us;
  990. return true;
  991. }
  992. }
  993. static bool ath9k_hw_set_global_txtimeout(struct ath_hw *ah, u32 tu)
  994. {
  995. if (tu > 0xFFFF) {
  996. DPRINTF(ah->ah_sc, ATH_DBG_XMIT,
  997. "bad global tx timeout %u\n", tu);
  998. ah->globaltxtimeout = (u32) -1;
  999. return false;
  1000. } else {
  1001. REG_RMW_FIELD(ah, AR_GTXTO, AR_GTXTO_TIMEOUT_LIMIT, tu);
  1002. ah->globaltxtimeout = tu;
  1003. return true;
  1004. }
  1005. }
  1006. static void ath9k_hw_init_user_settings(struct ath_hw *ah)
  1007. {
  1008. DPRINTF(ah->ah_sc, ATH_DBG_RESET, "ah->misc_mode 0x%x\n",
  1009. ah->misc_mode);
  1010. if (ah->misc_mode != 0)
  1011. REG_WRITE(ah, AR_PCU_MISC,
  1012. REG_READ(ah, AR_PCU_MISC) | ah->misc_mode);
  1013. if (ah->slottime != (u32) -1)
  1014. ath9k_hw_setslottime(ah, ah->slottime);
  1015. if (ah->acktimeout != (u32) -1)
  1016. ath9k_hw_set_ack_timeout(ah, ah->acktimeout);
  1017. if (ah->ctstimeout != (u32) -1)
  1018. ath9k_hw_set_cts_timeout(ah, ah->ctstimeout);
  1019. if (ah->globaltxtimeout != (u32) -1)
  1020. ath9k_hw_set_global_txtimeout(ah, ah->globaltxtimeout);
  1021. }
  1022. const char *ath9k_hw_probe(u16 vendorid, u16 devid)
  1023. {
  1024. return vendorid == ATHEROS_VENDOR_ID ?
  1025. ath9k_hw_devname(devid) : NULL;
  1026. }
  1027. void ath9k_hw_detach(struct ath_hw *ah)
  1028. {
  1029. if (!AR_SREV_9100(ah))
  1030. ath9k_hw_ani_detach(ah);
  1031. ath9k_hw_rfdetach(ah);
  1032. ath9k_hw_setpower(ah, ATH9K_PM_FULL_SLEEP);
  1033. kfree(ah);
  1034. }
  1035. struct ath_hw *ath9k_hw_attach(u16 devid, struct ath_softc *sc, int *error)
  1036. {
  1037. struct ath_hw *ah = NULL;
  1038. switch (devid) {
  1039. case AR5416_DEVID_PCI:
  1040. case AR5416_DEVID_PCIE:
  1041. case AR5416_AR9100_DEVID:
  1042. case AR9160_DEVID_PCI:
  1043. case AR9280_DEVID_PCI:
  1044. case AR9280_DEVID_PCIE:
  1045. case AR9285_DEVID_PCIE:
  1046. case AR5416_DEVID_AR9287_PCI:
  1047. case AR5416_DEVID_AR9287_PCIE:
  1048. ah = ath9k_hw_do_attach(devid, sc, error);
  1049. break;
  1050. default:
  1051. *error = -ENXIO;
  1052. break;
  1053. }
  1054. return ah;
  1055. }
  1056. /*******/
  1057. /* INI */
  1058. /*******/
  1059. static void ath9k_hw_override_ini(struct ath_hw *ah,
  1060. struct ath9k_channel *chan)
  1061. {
  1062. /*
  1063. * Set the RX_ABORT and RX_DIS and clear if off only after
  1064. * RXE is set for MAC. This prevents frames with corrupted
  1065. * descriptor status.
  1066. */
  1067. REG_SET_BIT(ah, AR_DIAG_SW, (AR_DIAG_RX_DIS | AR_DIAG_RX_ABORT));
  1068. if (!AR_SREV_5416_20_OR_LATER(ah) ||
  1069. AR_SREV_9280_10_OR_LATER(ah))
  1070. return;
  1071. REG_WRITE(ah, 0x9800 + (651 << 2), 0x11);
  1072. }
  1073. static u32 ath9k_hw_def_ini_fixup(struct ath_hw *ah,
  1074. struct ar5416_eeprom_def *pEepData,
  1075. u32 reg, u32 value)
  1076. {
  1077. struct base_eep_header *pBase = &(pEepData->baseEepHeader);
  1078. switch (ah->hw_version.devid) {
  1079. case AR9280_DEVID_PCI:
  1080. if (reg == 0x7894) {
  1081. DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
  1082. "ini VAL: %x EEPROM: %x\n", value,
  1083. (pBase->version & 0xff));
  1084. if ((pBase->version & 0xff) > 0x0a) {
  1085. DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
  1086. "PWDCLKIND: %d\n",
  1087. pBase->pwdclkind);
  1088. value &= ~AR_AN_TOP2_PWDCLKIND;
  1089. value |= AR_AN_TOP2_PWDCLKIND &
  1090. (pBase->pwdclkind << AR_AN_TOP2_PWDCLKIND_S);
  1091. } else {
  1092. DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
  1093. "PWDCLKIND Earlier Rev\n");
  1094. }
  1095. DPRINTF(ah->ah_sc, ATH_DBG_EEPROM,
  1096. "final ini VAL: %x\n", value);
  1097. }
  1098. break;
  1099. }
  1100. return value;
  1101. }
  1102. static u32 ath9k_hw_ini_fixup(struct ath_hw *ah,
  1103. struct ar5416_eeprom_def *pEepData,
  1104. u32 reg, u32 value)
  1105. {
  1106. if (ah->eep_map == EEP_MAP_4KBITS)
  1107. return value;
  1108. else
  1109. return ath9k_hw_def_ini_fixup(ah, pEepData, reg, value);
  1110. }
  1111. static void ath9k_olc_init(struct ath_hw *ah)
  1112. {
  1113. u32 i;
  1114. for (i = 0; i < AR9280_TX_GAIN_TABLE_SIZE; i++)
  1115. ah->originalGain[i] =
  1116. MS(REG_READ(ah, AR_PHY_TX_GAIN_TBL1 + i * 4),
  1117. AR_PHY_TX_GAIN);
  1118. ah->PDADCdelta = 0;
  1119. }
  1120. static u32 ath9k_regd_get_ctl(struct ath_regulatory *reg,
  1121. struct ath9k_channel *chan)
  1122. {
  1123. u32 ctl = ath_regd_get_band_ctl(reg, chan->chan->band);
  1124. if (IS_CHAN_B(chan))
  1125. ctl |= CTL_11B;
  1126. else if (IS_CHAN_G(chan))
  1127. ctl |= CTL_11G;
  1128. else
  1129. ctl |= CTL_11A;
  1130. return ctl;
  1131. }
  1132. static int ath9k_hw_process_ini(struct ath_hw *ah,
  1133. struct ath9k_channel *chan,
  1134. enum ath9k_ht_macmode macmode)
  1135. {
  1136. int i, regWrites = 0;
  1137. struct ieee80211_channel *channel = chan->chan;
  1138. u32 modesIndex, freqIndex;
  1139. switch (chan->chanmode) {
  1140. case CHANNEL_A:
  1141. case CHANNEL_A_HT20:
  1142. modesIndex = 1;
  1143. freqIndex = 1;
  1144. break;
  1145. case CHANNEL_A_HT40PLUS:
  1146. case CHANNEL_A_HT40MINUS:
  1147. modesIndex = 2;
  1148. freqIndex = 1;
  1149. break;
  1150. case CHANNEL_G:
  1151. case CHANNEL_G_HT20:
  1152. case CHANNEL_B:
  1153. modesIndex = 4;
  1154. freqIndex = 2;
  1155. break;
  1156. case CHANNEL_G_HT40PLUS:
  1157. case CHANNEL_G_HT40MINUS:
  1158. modesIndex = 3;
  1159. freqIndex = 2;
  1160. break;
  1161. default:
  1162. return -EINVAL;
  1163. }
  1164. REG_WRITE(ah, AR_PHY(0), 0x00000007);
  1165. REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_EXTERNAL_RADIO);
  1166. ah->eep_ops->set_addac(ah, chan);
  1167. if (AR_SREV_5416_22_OR_LATER(ah)) {
  1168. REG_WRITE_ARRAY(&ah->iniAddac, 1, regWrites);
  1169. } else {
  1170. struct ar5416IniArray temp;
  1171. u32 addacSize =
  1172. sizeof(u32) * ah->iniAddac.ia_rows *
  1173. ah->iniAddac.ia_columns;
  1174. memcpy(ah->addac5416_21,
  1175. ah->iniAddac.ia_array, addacSize);
  1176. (ah->addac5416_21)[31 * ah->iniAddac.ia_columns + 1] = 0;
  1177. temp.ia_array = ah->addac5416_21;
  1178. temp.ia_columns = ah->iniAddac.ia_columns;
  1179. temp.ia_rows = ah->iniAddac.ia_rows;
  1180. REG_WRITE_ARRAY(&temp, 1, regWrites);
  1181. }
  1182. REG_WRITE(ah, AR_PHY_ADC_SERIAL_CTL, AR_PHY_SEL_INTERNAL_ADDAC);
  1183. for (i = 0; i < ah->iniModes.ia_rows; i++) {
  1184. u32 reg = INI_RA(&ah->iniModes, i, 0);
  1185. u32 val = INI_RA(&ah->iniModes, i, modesIndex);
  1186. REG_WRITE(ah, reg, val);
  1187. if (reg >= 0x7800 && reg < 0x78a0
  1188. && ah->config.analog_shiftreg) {
  1189. udelay(100);
  1190. }
  1191. DO_DELAY(regWrites);
  1192. }
  1193. if (AR_SREV_9280(ah) || AR_SREV_9287_10_OR_LATER(ah))
  1194. REG_WRITE_ARRAY(&ah->iniModesRxGain, modesIndex, regWrites);
  1195. if (AR_SREV_9280(ah) || AR_SREV_9285_12_OR_LATER(ah) ||
  1196. AR_SREV_9287_10_OR_LATER(ah))
  1197. REG_WRITE_ARRAY(&ah->iniModesTxGain, modesIndex, regWrites);
  1198. for (i = 0; i < ah->iniCommon.ia_rows; i++) {
  1199. u32 reg = INI_RA(&ah->iniCommon, i, 0);
  1200. u32 val = INI_RA(&ah->iniCommon, i, 1);
  1201. REG_WRITE(ah, reg, val);
  1202. if (reg >= 0x7800 && reg < 0x78a0
  1203. && ah->config.analog_shiftreg) {
  1204. udelay(100);
  1205. }
  1206. DO_DELAY(regWrites);
  1207. }
  1208. ath9k_hw_write_regs(ah, modesIndex, freqIndex, regWrites);
  1209. if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan)) {
  1210. REG_WRITE_ARRAY(&ah->iniModesAdditional, modesIndex,
  1211. regWrites);
  1212. }
  1213. ath9k_hw_override_ini(ah, chan);
  1214. ath9k_hw_set_regs(ah, chan, macmode);
  1215. ath9k_hw_init_chain_masks(ah);
  1216. if (OLC_FOR_AR9280_20_LATER)
  1217. ath9k_olc_init(ah);
  1218. ah->eep_ops->set_txpower(ah, chan,
  1219. ath9k_regd_get_ctl(&ah->regulatory, chan),
  1220. channel->max_antenna_gain * 2,
  1221. channel->max_power * 2,
  1222. min((u32) MAX_RATE_POWER,
  1223. (u32) ah->regulatory.power_limit));
  1224. if (!ath9k_hw_set_rf_regs(ah, chan, freqIndex)) {
  1225. DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
  1226. "ar5416SetRfRegs failed\n");
  1227. return -EIO;
  1228. }
  1229. return 0;
  1230. }
  1231. /****************************************/
  1232. /* Reset and Channel Switching Routines */
  1233. /****************************************/
  1234. static void ath9k_hw_set_rfmode(struct ath_hw *ah, struct ath9k_channel *chan)
  1235. {
  1236. u32 rfMode = 0;
  1237. if (chan == NULL)
  1238. return;
  1239. rfMode |= (IS_CHAN_B(chan) || IS_CHAN_G(chan))
  1240. ? AR_PHY_MODE_DYNAMIC : AR_PHY_MODE_OFDM;
  1241. if (!AR_SREV_9280_10_OR_LATER(ah))
  1242. rfMode |= (IS_CHAN_5GHZ(chan)) ?
  1243. AR_PHY_MODE_RF5GHZ : AR_PHY_MODE_RF2GHZ;
  1244. if (AR_SREV_9280_20(ah) && IS_CHAN_A_5MHZ_SPACED(chan))
  1245. rfMode |= (AR_PHY_MODE_DYNAMIC | AR_PHY_MODE_DYN_CCK_DISABLE);
  1246. REG_WRITE(ah, AR_PHY_MODE, rfMode);
  1247. }
  1248. static void ath9k_hw_mark_phy_inactive(struct ath_hw *ah)
  1249. {
  1250. REG_WRITE(ah, AR_PHY_ACTIVE, AR_PHY_ACTIVE_DIS);
  1251. }
  1252. static inline void ath9k_hw_set_dma(struct ath_hw *ah)
  1253. {
  1254. u32 regval;
  1255. regval = REG_READ(ah, AR_AHB_MODE);
  1256. REG_WRITE(ah, AR_AHB_MODE, regval | AR_AHB_PREFETCH_RD_EN);
  1257. regval = REG_READ(ah, AR_TXCFG) & ~AR_TXCFG_DMASZ_MASK;
  1258. REG_WRITE(ah, AR_TXCFG, regval | AR_TXCFG_DMASZ_128B);
  1259. REG_RMW_FIELD(ah, AR_TXCFG, AR_FTRIG, ah->tx_trig_level);
  1260. regval = REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_DMASZ_MASK;
  1261. REG_WRITE(ah, AR_RXCFG, regval | AR_RXCFG_DMASZ_128B);
  1262. REG_WRITE(ah, AR_RXFIFO_CFG, 0x200);
  1263. if (AR_SREV_9285(ah)) {
  1264. REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
  1265. AR_9285_PCU_TXBUF_CTRL_USABLE_SIZE);
  1266. } else {
  1267. REG_WRITE(ah, AR_PCU_TXBUF_CTRL,
  1268. AR_PCU_TXBUF_CTRL_USABLE_SIZE);
  1269. }
  1270. }
  1271. static void ath9k_hw_set_operating_mode(struct ath_hw *ah, int opmode)
  1272. {
  1273. u32 val;
  1274. val = REG_READ(ah, AR_STA_ID1);
  1275. val &= ~(AR_STA_ID1_STA_AP | AR_STA_ID1_ADHOC);
  1276. switch (opmode) {
  1277. case NL80211_IFTYPE_AP:
  1278. REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_STA_AP
  1279. | AR_STA_ID1_KSRCH_MODE);
  1280. REG_CLR_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
  1281. break;
  1282. case NL80211_IFTYPE_ADHOC:
  1283. case NL80211_IFTYPE_MESH_POINT:
  1284. REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_ADHOC
  1285. | AR_STA_ID1_KSRCH_MODE);
  1286. REG_SET_BIT(ah, AR_CFG, AR_CFG_AP_ADHOC_INDICATION);
  1287. break;
  1288. case NL80211_IFTYPE_STATION:
  1289. case NL80211_IFTYPE_MONITOR:
  1290. REG_WRITE(ah, AR_STA_ID1, val | AR_STA_ID1_KSRCH_MODE);
  1291. break;
  1292. }
  1293. }
  1294. static inline void ath9k_hw_get_delta_slope_vals(struct ath_hw *ah,
  1295. u32 coef_scaled,
  1296. u32 *coef_mantissa,
  1297. u32 *coef_exponent)
  1298. {
  1299. u32 coef_exp, coef_man;
  1300. for (coef_exp = 31; coef_exp > 0; coef_exp--)
  1301. if ((coef_scaled >> coef_exp) & 0x1)
  1302. break;
  1303. coef_exp = 14 - (coef_exp - COEF_SCALE_S);
  1304. coef_man = coef_scaled + (1 << (COEF_SCALE_S - coef_exp - 1));
  1305. *coef_mantissa = coef_man >> (COEF_SCALE_S - coef_exp);
  1306. *coef_exponent = coef_exp - 16;
  1307. }
  1308. static void ath9k_hw_set_delta_slope(struct ath_hw *ah,
  1309. struct ath9k_channel *chan)
  1310. {
  1311. u32 coef_scaled, ds_coef_exp, ds_coef_man;
  1312. u32 clockMhzScaled = 0x64000000;
  1313. struct chan_centers centers;
  1314. if (IS_CHAN_HALF_RATE(chan))
  1315. clockMhzScaled = clockMhzScaled >> 1;
  1316. else if (IS_CHAN_QUARTER_RATE(chan))
  1317. clockMhzScaled = clockMhzScaled >> 2;
  1318. ath9k_hw_get_channel_centers(ah, chan, &centers);
  1319. coef_scaled = clockMhzScaled / centers.synth_center;
  1320. ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
  1321. &ds_coef_exp);
  1322. REG_RMW_FIELD(ah, AR_PHY_TIMING3,
  1323. AR_PHY_TIMING3_DSC_MAN, ds_coef_man);
  1324. REG_RMW_FIELD(ah, AR_PHY_TIMING3,
  1325. AR_PHY_TIMING3_DSC_EXP, ds_coef_exp);
  1326. coef_scaled = (9 * coef_scaled) / 10;
  1327. ath9k_hw_get_delta_slope_vals(ah, coef_scaled, &ds_coef_man,
  1328. &ds_coef_exp);
  1329. REG_RMW_FIELD(ah, AR_PHY_HALFGI,
  1330. AR_PHY_HALFGI_DSC_MAN, ds_coef_man);
  1331. REG_RMW_FIELD(ah, AR_PHY_HALFGI,
  1332. AR_PHY_HALFGI_DSC_EXP, ds_coef_exp);
  1333. }
  1334. static bool ath9k_hw_set_reset(struct ath_hw *ah, int type)
  1335. {
  1336. u32 rst_flags;
  1337. u32 tmpReg;
  1338. if (AR_SREV_9100(ah)) {
  1339. u32 val = REG_READ(ah, AR_RTC_DERIVED_CLK);
  1340. val &= ~AR_RTC_DERIVED_CLK_PERIOD;
  1341. val |= SM(1, AR_RTC_DERIVED_CLK_PERIOD);
  1342. REG_WRITE(ah, AR_RTC_DERIVED_CLK, val);
  1343. (void)REG_READ(ah, AR_RTC_DERIVED_CLK);
  1344. }
  1345. REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
  1346. AR_RTC_FORCE_WAKE_ON_INT);
  1347. if (AR_SREV_9100(ah)) {
  1348. rst_flags = AR_RTC_RC_MAC_WARM | AR_RTC_RC_MAC_COLD |
  1349. AR_RTC_RC_COLD_RESET | AR_RTC_RC_WARM_RESET;
  1350. } else {
  1351. tmpReg = REG_READ(ah, AR_INTR_SYNC_CAUSE);
  1352. if (tmpReg &
  1353. (AR_INTR_SYNC_LOCAL_TIMEOUT |
  1354. AR_INTR_SYNC_RADM_CPL_TIMEOUT)) {
  1355. REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
  1356. REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
  1357. } else {
  1358. REG_WRITE(ah, AR_RC, AR_RC_AHB);
  1359. }
  1360. rst_flags = AR_RTC_RC_MAC_WARM;
  1361. if (type == ATH9K_RESET_COLD)
  1362. rst_flags |= AR_RTC_RC_MAC_COLD;
  1363. }
  1364. REG_WRITE(ah, AR_RTC_RC, rst_flags);
  1365. udelay(50);
  1366. REG_WRITE(ah, AR_RTC_RC, 0);
  1367. if (!ath9k_hw_wait(ah, AR_RTC_RC, AR_RTC_RC_M, 0, AH_WAIT_TIMEOUT)) {
  1368. DPRINTF(ah->ah_sc, ATH_DBG_RESET,
  1369. "RTC stuck in MAC reset\n");
  1370. return false;
  1371. }
  1372. if (!AR_SREV_9100(ah))
  1373. REG_WRITE(ah, AR_RC, 0);
  1374. ath9k_hw_init_pll(ah, NULL);
  1375. if (AR_SREV_9100(ah))
  1376. udelay(50);
  1377. return true;
  1378. }
  1379. static bool ath9k_hw_set_reset_power_on(struct ath_hw *ah)
  1380. {
  1381. REG_WRITE(ah, AR_RTC_FORCE_WAKE, AR_RTC_FORCE_WAKE_EN |
  1382. AR_RTC_FORCE_WAKE_ON_INT);
  1383. REG_WRITE(ah, AR_RTC_RESET, 0);
  1384. udelay(2);
  1385. REG_WRITE(ah, AR_RTC_RESET, 1);
  1386. if (!ath9k_hw_wait(ah,
  1387. AR_RTC_STATUS,
  1388. AR_RTC_STATUS_M,
  1389. AR_RTC_STATUS_ON,
  1390. AH_WAIT_TIMEOUT)) {
  1391. DPRINTF(ah->ah_sc, ATH_DBG_RESET, "RTC not waking up\n");
  1392. return false;
  1393. }
  1394. ath9k_hw_read_revisions(ah);
  1395. return ath9k_hw_set_reset(ah, ATH9K_RESET_WARM);
  1396. }
  1397. static bool ath9k_hw_set_reset_reg(struct ath_hw *ah, u32 type)
  1398. {
  1399. REG_WRITE(ah, AR_RTC_FORCE_WAKE,
  1400. AR_RTC_FORCE_WAKE_EN | AR_RTC_FORCE_WAKE_ON_INT);
  1401. switch (type) {
  1402. case ATH9K_RESET_POWER_ON:
  1403. return ath9k_hw_set_reset_power_on(ah);
  1404. case ATH9K_RESET_WARM:
  1405. case ATH9K_RESET_COLD:
  1406. return ath9k_hw_set_reset(ah, type);
  1407. default:
  1408. return false;
  1409. }
  1410. }
  1411. static void ath9k_hw_set_regs(struct ath_hw *ah, struct ath9k_channel *chan,
  1412. enum ath9k_ht_macmode macmode)
  1413. {
  1414. u32 phymode;
  1415. u32 enableDacFifo = 0;
  1416. if (AR_SREV_9285_10_OR_LATER(ah))
  1417. enableDacFifo = (REG_READ(ah, AR_PHY_TURBO) &
  1418. AR_PHY_FC_ENABLE_DAC_FIFO);
  1419. phymode = AR_PHY_FC_HT_EN | AR_PHY_FC_SHORT_GI_40
  1420. | AR_PHY_FC_SINGLE_HT_LTF1 | AR_PHY_FC_WALSH | enableDacFifo;
  1421. if (IS_CHAN_HT40(chan)) {
  1422. phymode |= AR_PHY_FC_DYN2040_EN;
  1423. if ((chan->chanmode == CHANNEL_A_HT40PLUS) ||
  1424. (chan->chanmode == CHANNEL_G_HT40PLUS))
  1425. phymode |= AR_PHY_FC_DYN2040_PRI_CH;
  1426. if (ah->extprotspacing == ATH9K_HT_EXTPROTSPACING_25)
  1427. phymode |= AR_PHY_FC_DYN2040_EXT_CH;
  1428. }
  1429. REG_WRITE(ah, AR_PHY_TURBO, phymode);
  1430. ath9k_hw_set11nmac2040(ah, macmode);
  1431. REG_WRITE(ah, AR_GTXTO, 25 << AR_GTXTO_TIMEOUT_LIMIT_S);
  1432. REG_WRITE(ah, AR_CST, 0xF << AR_CST_TIMEOUT_LIMIT_S);
  1433. }
  1434. static bool ath9k_hw_chip_reset(struct ath_hw *ah,
  1435. struct ath9k_channel *chan)
  1436. {
  1437. if (OLC_FOR_AR9280_20_LATER) {
  1438. if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_POWER_ON))
  1439. return false;
  1440. } else if (!ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM))
  1441. return false;
  1442. if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
  1443. return false;
  1444. ah->chip_fullsleep = false;
  1445. ath9k_hw_init_pll(ah, chan);
  1446. ath9k_hw_set_rfmode(ah, chan);
  1447. return true;
  1448. }
  1449. static bool ath9k_hw_channel_change(struct ath_hw *ah,
  1450. struct ath9k_channel *chan,
  1451. enum ath9k_ht_macmode macmode)
  1452. {
  1453. struct ieee80211_channel *channel = chan->chan;
  1454. u32 synthDelay, qnum;
  1455. for (qnum = 0; qnum < AR_NUM_QCU; qnum++) {
  1456. if (ath9k_hw_numtxpending(ah, qnum)) {
  1457. DPRINTF(ah->ah_sc, ATH_DBG_QUEUE,
  1458. "Transmit frames pending on queue %d\n", qnum);
  1459. return false;
  1460. }
  1461. }
  1462. REG_WRITE(ah, AR_PHY_RFBUS_REQ, AR_PHY_RFBUS_REQ_EN);
  1463. if (!ath9k_hw_wait(ah, AR_PHY_RFBUS_GRANT, AR_PHY_RFBUS_GRANT_EN,
  1464. AR_PHY_RFBUS_GRANT_EN, AH_WAIT_TIMEOUT)) {
  1465. DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
  1466. "Could not kill baseband RX\n");
  1467. return false;
  1468. }
  1469. ath9k_hw_set_regs(ah, chan, macmode);
  1470. if (AR_SREV_9280_10_OR_LATER(ah)) {
  1471. ath9k_hw_ar9280_set_channel(ah, chan);
  1472. } else {
  1473. if (!(ath9k_hw_set_channel(ah, chan))) {
  1474. DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
  1475. "Failed to set channel\n");
  1476. return false;
  1477. }
  1478. }
  1479. ah->eep_ops->set_txpower(ah, chan,
  1480. ath9k_regd_get_ctl(&ah->regulatory, chan),
  1481. channel->max_antenna_gain * 2,
  1482. channel->max_power * 2,
  1483. min((u32) MAX_RATE_POWER,
  1484. (u32) ah->regulatory.power_limit));
  1485. synthDelay = REG_READ(ah, AR_PHY_RX_DELAY) & AR_PHY_RX_DELAY_DELAY;
  1486. if (IS_CHAN_B(chan))
  1487. synthDelay = (4 * synthDelay) / 22;
  1488. else
  1489. synthDelay /= 10;
  1490. udelay(synthDelay + BASE_ACTIVATE_DELAY);
  1491. REG_WRITE(ah, AR_PHY_RFBUS_REQ, 0);
  1492. if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
  1493. ath9k_hw_set_delta_slope(ah, chan);
  1494. if (AR_SREV_9280_10_OR_LATER(ah))
  1495. ath9k_hw_9280_spur_mitigate(ah, chan);
  1496. else
  1497. ath9k_hw_spur_mitigate(ah, chan);
  1498. if (!chan->oneTimeCalsDone)
  1499. chan->oneTimeCalsDone = true;
  1500. return true;
  1501. }
  1502. static void ath9k_hw_9280_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
  1503. {
  1504. int bb_spur = AR_NO_SPUR;
  1505. int freq;
  1506. int bin, cur_bin;
  1507. int bb_spur_off, spur_subchannel_sd;
  1508. int spur_freq_sd;
  1509. int spur_delta_phase;
  1510. int denominator;
  1511. int upper, lower, cur_vit_mask;
  1512. int tmp, newVal;
  1513. int i;
  1514. int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
  1515. AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
  1516. };
  1517. int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
  1518. AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
  1519. };
  1520. int inc[4] = { 0, 100, 0, 0 };
  1521. struct chan_centers centers;
  1522. int8_t mask_m[123];
  1523. int8_t mask_p[123];
  1524. int8_t mask_amt;
  1525. int tmp_mask;
  1526. int cur_bb_spur;
  1527. bool is2GHz = IS_CHAN_2GHZ(chan);
  1528. memset(&mask_m, 0, sizeof(int8_t) * 123);
  1529. memset(&mask_p, 0, sizeof(int8_t) * 123);
  1530. ath9k_hw_get_channel_centers(ah, chan, &centers);
  1531. freq = centers.synth_center;
  1532. ah->config.spurmode = SPUR_ENABLE_EEPROM;
  1533. for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
  1534. cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
  1535. if (is2GHz)
  1536. cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_2GHZ;
  1537. else
  1538. cur_bb_spur = (cur_bb_spur / 10) + AR_BASE_FREQ_5GHZ;
  1539. if (AR_NO_SPUR == cur_bb_spur)
  1540. break;
  1541. cur_bb_spur = cur_bb_spur - freq;
  1542. if (IS_CHAN_HT40(chan)) {
  1543. if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT40) &&
  1544. (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT40)) {
  1545. bb_spur = cur_bb_spur;
  1546. break;
  1547. }
  1548. } else if ((cur_bb_spur > -AR_SPUR_FEEQ_BOUND_HT20) &&
  1549. (cur_bb_spur < AR_SPUR_FEEQ_BOUND_HT20)) {
  1550. bb_spur = cur_bb_spur;
  1551. break;
  1552. }
  1553. }
  1554. if (AR_NO_SPUR == bb_spur) {
  1555. REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
  1556. AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
  1557. return;
  1558. } else {
  1559. REG_CLR_BIT(ah, AR_PHY_FORCE_CLKEN_CCK,
  1560. AR_PHY_FORCE_CLKEN_CCK_MRC_MUX);
  1561. }
  1562. bin = bb_spur * 320;
  1563. tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
  1564. newVal = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
  1565. AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
  1566. AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
  1567. AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
  1568. REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), newVal);
  1569. newVal = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
  1570. AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
  1571. AR_PHY_SPUR_REG_MASK_RATE_SELECT |
  1572. AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
  1573. SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
  1574. REG_WRITE(ah, AR_PHY_SPUR_REG, newVal);
  1575. if (IS_CHAN_HT40(chan)) {
  1576. if (bb_spur < 0) {
  1577. spur_subchannel_sd = 1;
  1578. bb_spur_off = bb_spur + 10;
  1579. } else {
  1580. spur_subchannel_sd = 0;
  1581. bb_spur_off = bb_spur - 10;
  1582. }
  1583. } else {
  1584. spur_subchannel_sd = 0;
  1585. bb_spur_off = bb_spur;
  1586. }
  1587. if (IS_CHAN_HT40(chan))
  1588. spur_delta_phase =
  1589. ((bb_spur * 262144) /
  1590. 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
  1591. else
  1592. spur_delta_phase =
  1593. ((bb_spur * 524288) /
  1594. 10) & AR_PHY_TIMING11_SPUR_DELTA_PHASE;
  1595. denominator = IS_CHAN_2GHZ(chan) ? 44 : 40;
  1596. spur_freq_sd = ((bb_spur_off * 2048) / denominator) & 0x3ff;
  1597. newVal = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
  1598. SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
  1599. SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
  1600. REG_WRITE(ah, AR_PHY_TIMING11, newVal);
  1601. newVal = spur_subchannel_sd << AR_PHY_SFCORR_SPUR_SUBCHNL_SD_S;
  1602. REG_WRITE(ah, AR_PHY_SFCORR_EXT, newVal);
  1603. cur_bin = -6000;
  1604. upper = bin + 100;
  1605. lower = bin - 100;
  1606. for (i = 0; i < 4; i++) {
  1607. int pilot_mask = 0;
  1608. int chan_mask = 0;
  1609. int bp = 0;
  1610. for (bp = 0; bp < 30; bp++) {
  1611. if ((cur_bin > lower) && (cur_bin < upper)) {
  1612. pilot_mask = pilot_mask | 0x1 << bp;
  1613. chan_mask = chan_mask | 0x1 << bp;
  1614. }
  1615. cur_bin += 100;
  1616. }
  1617. cur_bin += inc[i];
  1618. REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
  1619. REG_WRITE(ah, chan_mask_reg[i], chan_mask);
  1620. }
  1621. cur_vit_mask = 6100;
  1622. upper = bin + 120;
  1623. lower = bin - 120;
  1624. for (i = 0; i < 123; i++) {
  1625. if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
  1626. /* workaround for gcc bug #37014 */
  1627. volatile int tmp_v = abs(cur_vit_mask - bin);
  1628. if (tmp_v < 75)
  1629. mask_amt = 1;
  1630. else
  1631. mask_amt = 0;
  1632. if (cur_vit_mask < 0)
  1633. mask_m[abs(cur_vit_mask / 100)] = mask_amt;
  1634. else
  1635. mask_p[cur_vit_mask / 100] = mask_amt;
  1636. }
  1637. cur_vit_mask -= 100;
  1638. }
  1639. tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
  1640. | (mask_m[48] << 26) | (mask_m[49] << 24)
  1641. | (mask_m[50] << 22) | (mask_m[51] << 20)
  1642. | (mask_m[52] << 18) | (mask_m[53] << 16)
  1643. | (mask_m[54] << 14) | (mask_m[55] << 12)
  1644. | (mask_m[56] << 10) | (mask_m[57] << 8)
  1645. | (mask_m[58] << 6) | (mask_m[59] << 4)
  1646. | (mask_m[60] << 2) | (mask_m[61] << 0);
  1647. REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
  1648. REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
  1649. tmp_mask = (mask_m[31] << 28)
  1650. | (mask_m[32] << 26) | (mask_m[33] << 24)
  1651. | (mask_m[34] << 22) | (mask_m[35] << 20)
  1652. | (mask_m[36] << 18) | (mask_m[37] << 16)
  1653. | (mask_m[48] << 14) | (mask_m[39] << 12)
  1654. | (mask_m[40] << 10) | (mask_m[41] << 8)
  1655. | (mask_m[42] << 6) | (mask_m[43] << 4)
  1656. | (mask_m[44] << 2) | (mask_m[45] << 0);
  1657. REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
  1658. REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
  1659. tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
  1660. | (mask_m[18] << 26) | (mask_m[18] << 24)
  1661. | (mask_m[20] << 22) | (mask_m[20] << 20)
  1662. | (mask_m[22] << 18) | (mask_m[22] << 16)
  1663. | (mask_m[24] << 14) | (mask_m[24] << 12)
  1664. | (mask_m[25] << 10) | (mask_m[26] << 8)
  1665. | (mask_m[27] << 6) | (mask_m[28] << 4)
  1666. | (mask_m[29] << 2) | (mask_m[30] << 0);
  1667. REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
  1668. REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
  1669. tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
  1670. | (mask_m[2] << 26) | (mask_m[3] << 24)
  1671. | (mask_m[4] << 22) | (mask_m[5] << 20)
  1672. | (mask_m[6] << 18) | (mask_m[7] << 16)
  1673. | (mask_m[8] << 14) | (mask_m[9] << 12)
  1674. | (mask_m[10] << 10) | (mask_m[11] << 8)
  1675. | (mask_m[12] << 6) | (mask_m[13] << 4)
  1676. | (mask_m[14] << 2) | (mask_m[15] << 0);
  1677. REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
  1678. REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
  1679. tmp_mask = (mask_p[15] << 28)
  1680. | (mask_p[14] << 26) | (mask_p[13] << 24)
  1681. | (mask_p[12] << 22) | (mask_p[11] << 20)
  1682. | (mask_p[10] << 18) | (mask_p[9] << 16)
  1683. | (mask_p[8] << 14) | (mask_p[7] << 12)
  1684. | (mask_p[6] << 10) | (mask_p[5] << 8)
  1685. | (mask_p[4] << 6) | (mask_p[3] << 4)
  1686. | (mask_p[2] << 2) | (mask_p[1] << 0);
  1687. REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
  1688. REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
  1689. tmp_mask = (mask_p[30] << 28)
  1690. | (mask_p[29] << 26) | (mask_p[28] << 24)
  1691. | (mask_p[27] << 22) | (mask_p[26] << 20)
  1692. | (mask_p[25] << 18) | (mask_p[24] << 16)
  1693. | (mask_p[23] << 14) | (mask_p[22] << 12)
  1694. | (mask_p[21] << 10) | (mask_p[20] << 8)
  1695. | (mask_p[19] << 6) | (mask_p[18] << 4)
  1696. | (mask_p[17] << 2) | (mask_p[16] << 0);
  1697. REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
  1698. REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
  1699. tmp_mask = (mask_p[45] << 28)
  1700. | (mask_p[44] << 26) | (mask_p[43] << 24)
  1701. | (mask_p[42] << 22) | (mask_p[41] << 20)
  1702. | (mask_p[40] << 18) | (mask_p[39] << 16)
  1703. | (mask_p[38] << 14) | (mask_p[37] << 12)
  1704. | (mask_p[36] << 10) | (mask_p[35] << 8)
  1705. | (mask_p[34] << 6) | (mask_p[33] << 4)
  1706. | (mask_p[32] << 2) | (mask_p[31] << 0);
  1707. REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
  1708. REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
  1709. tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
  1710. | (mask_p[59] << 26) | (mask_p[58] << 24)
  1711. | (mask_p[57] << 22) | (mask_p[56] << 20)
  1712. | (mask_p[55] << 18) | (mask_p[54] << 16)
  1713. | (mask_p[53] << 14) | (mask_p[52] << 12)
  1714. | (mask_p[51] << 10) | (mask_p[50] << 8)
  1715. | (mask_p[49] << 6) | (mask_p[48] << 4)
  1716. | (mask_p[47] << 2) | (mask_p[46] << 0);
  1717. REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
  1718. REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
  1719. }
  1720. static void ath9k_hw_spur_mitigate(struct ath_hw *ah, struct ath9k_channel *chan)
  1721. {
  1722. int bb_spur = AR_NO_SPUR;
  1723. int bin, cur_bin;
  1724. int spur_freq_sd;
  1725. int spur_delta_phase;
  1726. int denominator;
  1727. int upper, lower, cur_vit_mask;
  1728. int tmp, new;
  1729. int i;
  1730. int pilot_mask_reg[4] = { AR_PHY_TIMING7, AR_PHY_TIMING8,
  1731. AR_PHY_PILOT_MASK_01_30, AR_PHY_PILOT_MASK_31_60
  1732. };
  1733. int chan_mask_reg[4] = { AR_PHY_TIMING9, AR_PHY_TIMING10,
  1734. AR_PHY_CHANNEL_MASK_01_30, AR_PHY_CHANNEL_MASK_31_60
  1735. };
  1736. int inc[4] = { 0, 100, 0, 0 };
  1737. int8_t mask_m[123];
  1738. int8_t mask_p[123];
  1739. int8_t mask_amt;
  1740. int tmp_mask;
  1741. int cur_bb_spur;
  1742. bool is2GHz = IS_CHAN_2GHZ(chan);
  1743. memset(&mask_m, 0, sizeof(int8_t) * 123);
  1744. memset(&mask_p, 0, sizeof(int8_t) * 123);
  1745. for (i = 0; i < AR_EEPROM_MODAL_SPURS; i++) {
  1746. cur_bb_spur = ah->eep_ops->get_spur_channel(ah, i, is2GHz);
  1747. if (AR_NO_SPUR == cur_bb_spur)
  1748. break;
  1749. cur_bb_spur = cur_bb_spur - (chan->channel * 10);
  1750. if ((cur_bb_spur > -95) && (cur_bb_spur < 95)) {
  1751. bb_spur = cur_bb_spur;
  1752. break;
  1753. }
  1754. }
  1755. if (AR_NO_SPUR == bb_spur)
  1756. return;
  1757. bin = bb_spur * 32;
  1758. tmp = REG_READ(ah, AR_PHY_TIMING_CTRL4(0));
  1759. new = tmp | (AR_PHY_TIMING_CTRL4_ENABLE_SPUR_RSSI |
  1760. AR_PHY_TIMING_CTRL4_ENABLE_SPUR_FILTER |
  1761. AR_PHY_TIMING_CTRL4_ENABLE_CHAN_MASK |
  1762. AR_PHY_TIMING_CTRL4_ENABLE_PILOT_MASK);
  1763. REG_WRITE(ah, AR_PHY_TIMING_CTRL4(0), new);
  1764. new = (AR_PHY_SPUR_REG_MASK_RATE_CNTL |
  1765. AR_PHY_SPUR_REG_ENABLE_MASK_PPM |
  1766. AR_PHY_SPUR_REG_MASK_RATE_SELECT |
  1767. AR_PHY_SPUR_REG_ENABLE_VIT_SPUR_RSSI |
  1768. SM(SPUR_RSSI_THRESH, AR_PHY_SPUR_REG_SPUR_RSSI_THRESH));
  1769. REG_WRITE(ah, AR_PHY_SPUR_REG, new);
  1770. spur_delta_phase = ((bb_spur * 524288) / 100) &
  1771. AR_PHY_TIMING11_SPUR_DELTA_PHASE;
  1772. denominator = IS_CHAN_2GHZ(chan) ? 440 : 400;
  1773. spur_freq_sd = ((bb_spur * 2048) / denominator) & 0x3ff;
  1774. new = (AR_PHY_TIMING11_USE_SPUR_IN_AGC |
  1775. SM(spur_freq_sd, AR_PHY_TIMING11_SPUR_FREQ_SD) |
  1776. SM(spur_delta_phase, AR_PHY_TIMING11_SPUR_DELTA_PHASE));
  1777. REG_WRITE(ah, AR_PHY_TIMING11, new);
  1778. cur_bin = -6000;
  1779. upper = bin + 100;
  1780. lower = bin - 100;
  1781. for (i = 0; i < 4; i++) {
  1782. int pilot_mask = 0;
  1783. int chan_mask = 0;
  1784. int bp = 0;
  1785. for (bp = 0; bp < 30; bp++) {
  1786. if ((cur_bin > lower) && (cur_bin < upper)) {
  1787. pilot_mask = pilot_mask | 0x1 << bp;
  1788. chan_mask = chan_mask | 0x1 << bp;
  1789. }
  1790. cur_bin += 100;
  1791. }
  1792. cur_bin += inc[i];
  1793. REG_WRITE(ah, pilot_mask_reg[i], pilot_mask);
  1794. REG_WRITE(ah, chan_mask_reg[i], chan_mask);
  1795. }
  1796. cur_vit_mask = 6100;
  1797. upper = bin + 120;
  1798. lower = bin - 120;
  1799. for (i = 0; i < 123; i++) {
  1800. if ((cur_vit_mask > lower) && (cur_vit_mask < upper)) {
  1801. /* workaround for gcc bug #37014 */
  1802. volatile int tmp_v = abs(cur_vit_mask - bin);
  1803. if (tmp_v < 75)
  1804. mask_amt = 1;
  1805. else
  1806. mask_amt = 0;
  1807. if (cur_vit_mask < 0)
  1808. mask_m[abs(cur_vit_mask / 100)] = mask_amt;
  1809. else
  1810. mask_p[cur_vit_mask / 100] = mask_amt;
  1811. }
  1812. cur_vit_mask -= 100;
  1813. }
  1814. tmp_mask = (mask_m[46] << 30) | (mask_m[47] << 28)
  1815. | (mask_m[48] << 26) | (mask_m[49] << 24)
  1816. | (mask_m[50] << 22) | (mask_m[51] << 20)
  1817. | (mask_m[52] << 18) | (mask_m[53] << 16)
  1818. | (mask_m[54] << 14) | (mask_m[55] << 12)
  1819. | (mask_m[56] << 10) | (mask_m[57] << 8)
  1820. | (mask_m[58] << 6) | (mask_m[59] << 4)
  1821. | (mask_m[60] << 2) | (mask_m[61] << 0);
  1822. REG_WRITE(ah, AR_PHY_BIN_MASK_1, tmp_mask);
  1823. REG_WRITE(ah, AR_PHY_VIT_MASK2_M_46_61, tmp_mask);
  1824. tmp_mask = (mask_m[31] << 28)
  1825. | (mask_m[32] << 26) | (mask_m[33] << 24)
  1826. | (mask_m[34] << 22) | (mask_m[35] << 20)
  1827. | (mask_m[36] << 18) | (mask_m[37] << 16)
  1828. | (mask_m[48] << 14) | (mask_m[39] << 12)
  1829. | (mask_m[40] << 10) | (mask_m[41] << 8)
  1830. | (mask_m[42] << 6) | (mask_m[43] << 4)
  1831. | (mask_m[44] << 2) | (mask_m[45] << 0);
  1832. REG_WRITE(ah, AR_PHY_BIN_MASK_2, tmp_mask);
  1833. REG_WRITE(ah, AR_PHY_MASK2_M_31_45, tmp_mask);
  1834. tmp_mask = (mask_m[16] << 30) | (mask_m[16] << 28)
  1835. | (mask_m[18] << 26) | (mask_m[18] << 24)
  1836. | (mask_m[20] << 22) | (mask_m[20] << 20)
  1837. | (mask_m[22] << 18) | (mask_m[22] << 16)
  1838. | (mask_m[24] << 14) | (mask_m[24] << 12)
  1839. | (mask_m[25] << 10) | (mask_m[26] << 8)
  1840. | (mask_m[27] << 6) | (mask_m[28] << 4)
  1841. | (mask_m[29] << 2) | (mask_m[30] << 0);
  1842. REG_WRITE(ah, AR_PHY_BIN_MASK_3, tmp_mask);
  1843. REG_WRITE(ah, AR_PHY_MASK2_M_16_30, tmp_mask);
  1844. tmp_mask = (mask_m[0] << 30) | (mask_m[1] << 28)
  1845. | (mask_m[2] << 26) | (mask_m[3] << 24)
  1846. | (mask_m[4] << 22) | (mask_m[5] << 20)
  1847. | (mask_m[6] << 18) | (mask_m[7] << 16)
  1848. | (mask_m[8] << 14) | (mask_m[9] << 12)
  1849. | (mask_m[10] << 10) | (mask_m[11] << 8)
  1850. | (mask_m[12] << 6) | (mask_m[13] << 4)
  1851. | (mask_m[14] << 2) | (mask_m[15] << 0);
  1852. REG_WRITE(ah, AR_PHY_MASK_CTL, tmp_mask);
  1853. REG_WRITE(ah, AR_PHY_MASK2_M_00_15, tmp_mask);
  1854. tmp_mask = (mask_p[15] << 28)
  1855. | (mask_p[14] << 26) | (mask_p[13] << 24)
  1856. | (mask_p[12] << 22) | (mask_p[11] << 20)
  1857. | (mask_p[10] << 18) | (mask_p[9] << 16)
  1858. | (mask_p[8] << 14) | (mask_p[7] << 12)
  1859. | (mask_p[6] << 10) | (mask_p[5] << 8)
  1860. | (mask_p[4] << 6) | (mask_p[3] << 4)
  1861. | (mask_p[2] << 2) | (mask_p[1] << 0);
  1862. REG_WRITE(ah, AR_PHY_BIN_MASK2_1, tmp_mask);
  1863. REG_WRITE(ah, AR_PHY_MASK2_P_15_01, tmp_mask);
  1864. tmp_mask = (mask_p[30] << 28)
  1865. | (mask_p[29] << 26) | (mask_p[28] << 24)
  1866. | (mask_p[27] << 22) | (mask_p[26] << 20)
  1867. | (mask_p[25] << 18) | (mask_p[24] << 16)
  1868. | (mask_p[23] << 14) | (mask_p[22] << 12)
  1869. | (mask_p[21] << 10) | (mask_p[20] << 8)
  1870. | (mask_p[19] << 6) | (mask_p[18] << 4)
  1871. | (mask_p[17] << 2) | (mask_p[16] << 0);
  1872. REG_WRITE(ah, AR_PHY_BIN_MASK2_2, tmp_mask);
  1873. REG_WRITE(ah, AR_PHY_MASK2_P_30_16, tmp_mask);
  1874. tmp_mask = (mask_p[45] << 28)
  1875. | (mask_p[44] << 26) | (mask_p[43] << 24)
  1876. | (mask_p[42] << 22) | (mask_p[41] << 20)
  1877. | (mask_p[40] << 18) | (mask_p[39] << 16)
  1878. | (mask_p[38] << 14) | (mask_p[37] << 12)
  1879. | (mask_p[36] << 10) | (mask_p[35] << 8)
  1880. | (mask_p[34] << 6) | (mask_p[33] << 4)
  1881. | (mask_p[32] << 2) | (mask_p[31] << 0);
  1882. REG_WRITE(ah, AR_PHY_BIN_MASK2_3, tmp_mask);
  1883. REG_WRITE(ah, AR_PHY_MASK2_P_45_31, tmp_mask);
  1884. tmp_mask = (mask_p[61] << 30) | (mask_p[60] << 28)
  1885. | (mask_p[59] << 26) | (mask_p[58] << 24)
  1886. | (mask_p[57] << 22) | (mask_p[56] << 20)
  1887. | (mask_p[55] << 18) | (mask_p[54] << 16)
  1888. | (mask_p[53] << 14) | (mask_p[52] << 12)
  1889. | (mask_p[51] << 10) | (mask_p[50] << 8)
  1890. | (mask_p[49] << 6) | (mask_p[48] << 4)
  1891. | (mask_p[47] << 2) | (mask_p[46] << 0);
  1892. REG_WRITE(ah, AR_PHY_BIN_MASK2_4, tmp_mask);
  1893. REG_WRITE(ah, AR_PHY_MASK2_P_61_45, tmp_mask);
  1894. }
  1895. static void ath9k_enable_rfkill(struct ath_hw *ah)
  1896. {
  1897. REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
  1898. AR_GPIO_INPUT_EN_VAL_RFSILENT_BB);
  1899. REG_CLR_BIT(ah, AR_GPIO_INPUT_MUX2,
  1900. AR_GPIO_INPUT_MUX2_RFSILENT);
  1901. ath9k_hw_cfg_gpio_input(ah, ah->rfkill_gpio);
  1902. REG_SET_BIT(ah, AR_PHY_TEST, RFSILENT_BB);
  1903. }
  1904. int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
  1905. bool bChannelChange)
  1906. {
  1907. u32 saveLedState;
  1908. struct ath_softc *sc = ah->ah_sc;
  1909. struct ath9k_channel *curchan = ah->curchan;
  1910. u32 saveDefAntenna;
  1911. u32 macStaId1;
  1912. int i, rx_chainmask, r;
  1913. ah->extprotspacing = sc->ht_extprotspacing;
  1914. ah->txchainmask = sc->tx_chainmask;
  1915. ah->rxchainmask = sc->rx_chainmask;
  1916. if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
  1917. return -EIO;
  1918. if (curchan)
  1919. ath9k_hw_getnf(ah, curchan);
  1920. if (bChannelChange &&
  1921. (ah->chip_fullsleep != true) &&
  1922. (ah->curchan != NULL) &&
  1923. (chan->channel != ah->curchan->channel) &&
  1924. ((chan->channelFlags & CHANNEL_ALL) ==
  1925. (ah->curchan->channelFlags & CHANNEL_ALL)) &&
  1926. (!AR_SREV_9280(ah) || (!IS_CHAN_A_5MHZ_SPACED(chan) &&
  1927. !IS_CHAN_A_5MHZ_SPACED(ah->curchan)))) {
  1928. if (ath9k_hw_channel_change(ah, chan, sc->tx_chan_width)) {
  1929. ath9k_hw_loadnf(ah, ah->curchan);
  1930. ath9k_hw_start_nfcal(ah);
  1931. return 0;
  1932. }
  1933. }
  1934. saveDefAntenna = REG_READ(ah, AR_DEF_ANTENNA);
  1935. if (saveDefAntenna == 0)
  1936. saveDefAntenna = 1;
  1937. macStaId1 = REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_BASE_RATE_11B;
  1938. saveLedState = REG_READ(ah, AR_CFG_LED) &
  1939. (AR_CFG_LED_ASSOC_CTL | AR_CFG_LED_MODE_SEL |
  1940. AR_CFG_LED_BLINK_THRESH_SEL | AR_CFG_LED_BLINK_SLOW);
  1941. ath9k_hw_mark_phy_inactive(ah);
  1942. if (!ath9k_hw_chip_reset(ah, chan)) {
  1943. DPRINTF(ah->ah_sc, ATH_DBG_FATAL, "Chip reset failed\n");
  1944. return -EINVAL;
  1945. }
  1946. if (AR_SREV_9280_10_OR_LATER(ah))
  1947. REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL, AR_GPIO_JTAG_DISABLE);
  1948. if (AR_SREV_9287_10_OR_LATER(ah)) {
  1949. /* Enable ASYNC FIFO */
  1950. REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
  1951. AR_MAC_PCU_ASYNC_FIFO_REG3_DATAPATH_SEL);
  1952. REG_SET_BIT(ah, AR_PHY_MODE, AR_PHY_MODE_ASYNCFIFO);
  1953. REG_CLR_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
  1954. AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
  1955. REG_SET_BIT(ah, AR_MAC_PCU_ASYNC_FIFO_REG3,
  1956. AR_MAC_PCU_ASYNC_FIFO_REG3_SOFT_RESET);
  1957. }
  1958. r = ath9k_hw_process_ini(ah, chan, sc->tx_chan_width);
  1959. if (r)
  1960. return r;
  1961. /* Setup MFP options for CCMP */
  1962. if (AR_SREV_9280_20_OR_LATER(ah)) {
  1963. /* Mask Retry(b11), PwrMgt(b12), MoreData(b13) to 0 in mgmt
  1964. * frames when constructing CCMP AAD. */
  1965. REG_RMW_FIELD(ah, AR_AES_MUTE_MASK1, AR_AES_MUTE_MASK1_FC_MGMT,
  1966. 0xc7ff);
  1967. ah->sw_mgmt_crypto = false;
  1968. } else if (AR_SREV_9160_10_OR_LATER(ah)) {
  1969. /* Disable hardware crypto for management frames */
  1970. REG_CLR_BIT(ah, AR_PCU_MISC_MODE2,
  1971. AR_PCU_MISC_MODE2_MGMT_CRYPTO_ENABLE);
  1972. REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
  1973. AR_PCU_MISC_MODE2_NO_CRYPTO_FOR_NON_DATA_PKT);
  1974. ah->sw_mgmt_crypto = true;
  1975. } else
  1976. ah->sw_mgmt_crypto = true;
  1977. if (IS_CHAN_OFDM(chan) || IS_CHAN_HT(chan))
  1978. ath9k_hw_set_delta_slope(ah, chan);
  1979. if (AR_SREV_9280_10_OR_LATER(ah))
  1980. ath9k_hw_9280_spur_mitigate(ah, chan);
  1981. else
  1982. ath9k_hw_spur_mitigate(ah, chan);
  1983. ah->eep_ops->set_board_values(ah, chan);
  1984. ath9k_hw_decrease_chain_power(ah, chan);
  1985. REG_WRITE(ah, AR_STA_ID0, get_unaligned_le32(ah->macaddr));
  1986. REG_WRITE(ah, AR_STA_ID1, get_unaligned_le16(ah->macaddr + 4)
  1987. | macStaId1
  1988. | AR_STA_ID1_RTS_USE_DEF
  1989. | (ah->config.
  1990. ack_6mb ? AR_STA_ID1_ACKCTS_6MB : 0)
  1991. | ah->sta_id1_defaults);
  1992. ath9k_hw_set_operating_mode(ah, ah->opmode);
  1993. REG_WRITE(ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
  1994. REG_WRITE(ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
  1995. REG_WRITE(ah, AR_DEF_ANTENNA, saveDefAntenna);
  1996. REG_WRITE(ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
  1997. REG_WRITE(ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
  1998. ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
  1999. REG_WRITE(ah, AR_ISR, ~0);
  2000. REG_WRITE(ah, AR_RSSI_THR, INIT_RSSI_THR);
  2001. if (AR_SREV_9280_10_OR_LATER(ah))
  2002. ath9k_hw_ar9280_set_channel(ah, chan);
  2003. else
  2004. if (!(ath9k_hw_set_channel(ah, chan)))
  2005. return -EIO;
  2006. for (i = 0; i < AR_NUM_DCU; i++)
  2007. REG_WRITE(ah, AR_DQCUMASK(i), 1 << i);
  2008. ah->intr_txqs = 0;
  2009. for (i = 0; i < ah->caps.total_queues; i++)
  2010. ath9k_hw_resettxqueue(ah, i);
  2011. ath9k_hw_init_interrupt_masks(ah, ah->opmode);
  2012. ath9k_hw_init_qos(ah);
  2013. if (ah->caps.hw_caps & ATH9K_HW_CAP_RFSILENT)
  2014. ath9k_enable_rfkill(ah);
  2015. ath9k_hw_init_user_settings(ah);
  2016. if (AR_SREV_9287_10_OR_LATER(ah)) {
  2017. REG_WRITE(ah, AR_D_GBL_IFS_SIFS,
  2018. AR_D_GBL_IFS_SIFS_ASYNC_FIFO_DUR);
  2019. REG_WRITE(ah, AR_D_GBL_IFS_SLOT,
  2020. AR_D_GBL_IFS_SLOT_ASYNC_FIFO_DUR);
  2021. REG_WRITE(ah, AR_D_GBL_IFS_EIFS,
  2022. AR_D_GBL_IFS_EIFS_ASYNC_FIFO_DUR);
  2023. REG_WRITE(ah, AR_TIME_OUT, AR_TIME_OUT_ACK_CTS_ASYNC_FIFO_DUR);
  2024. REG_WRITE(ah, AR_USEC, AR_USEC_ASYNC_FIFO_DUR);
  2025. REG_SET_BIT(ah, AR_MAC_PCU_LOGIC_ANALYZER,
  2026. AR_MAC_PCU_LOGIC_ANALYZER_DISBUG20768);
  2027. REG_RMW_FIELD(ah, AR_AHB_MODE, AR_AHB_CUSTOM_BURST_EN,
  2028. AR_AHB_CUSTOM_BURST_ASYNC_FIFO_VAL);
  2029. }
  2030. if (AR_SREV_9287_10_OR_LATER(ah)) {
  2031. REG_SET_BIT(ah, AR_PCU_MISC_MODE2,
  2032. AR_PCU_MISC_MODE2_ENABLE_AGGWEP);
  2033. }
  2034. REG_WRITE(ah, AR_STA_ID1,
  2035. REG_READ(ah, AR_STA_ID1) | AR_STA_ID1_PRESERVE_SEQNUM);
  2036. ath9k_hw_set_dma(ah);
  2037. REG_WRITE(ah, AR_OBS, 8);
  2038. if (ah->config.intr_mitigation) {
  2039. REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500);
  2040. REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000);
  2041. }
  2042. ath9k_hw_init_bb(ah, chan);
  2043. if (!ath9k_hw_init_cal(ah, chan))
  2044. return -EIO;
  2045. rx_chainmask = ah->rxchainmask;
  2046. if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
  2047. REG_WRITE(ah, AR_PHY_RX_CHAINMASK, rx_chainmask);
  2048. REG_WRITE(ah, AR_PHY_CAL_CHAINMASK, rx_chainmask);
  2049. }
  2050. REG_WRITE(ah, AR_CFG_LED, saveLedState | AR_CFG_SCLK_32KHZ);
  2051. if (AR_SREV_9100(ah)) {
  2052. u32 mask;
  2053. mask = REG_READ(ah, AR_CFG);
  2054. if (mask & (AR_CFG_SWRB | AR_CFG_SWTB | AR_CFG_SWRG)) {
  2055. DPRINTF(ah->ah_sc, ATH_DBG_RESET,
  2056. "CFG Byte Swap Set 0x%x\n", mask);
  2057. } else {
  2058. mask =
  2059. INIT_CONFIG_STATUS | AR_CFG_SWRB | AR_CFG_SWTB;
  2060. REG_WRITE(ah, AR_CFG, mask);
  2061. DPRINTF(ah->ah_sc, ATH_DBG_RESET,
  2062. "Setting CFG 0x%x\n", REG_READ(ah, AR_CFG));
  2063. }
  2064. } else {
  2065. #ifdef __BIG_ENDIAN
  2066. REG_WRITE(ah, AR_CFG, AR_CFG_SWTD | AR_CFG_SWRD);
  2067. #endif
  2068. }
  2069. return 0;
  2070. }
  2071. /************************/
  2072. /* Key Cache Management */
  2073. /************************/
  2074. bool ath9k_hw_keyreset(struct ath_hw *ah, u16 entry)
  2075. {
  2076. u32 keyType;
  2077. if (entry >= ah->caps.keycache_size) {
  2078. DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
  2079. "keychache entry %u out of range\n", entry);
  2080. return false;
  2081. }
  2082. keyType = REG_READ(ah, AR_KEYTABLE_TYPE(entry));
  2083. REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
  2084. REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
  2085. REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
  2086. REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), 0);
  2087. REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), 0);
  2088. REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), AR_KEYTABLE_TYPE_CLR);
  2089. REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), 0);
  2090. REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), 0);
  2091. if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
  2092. u16 micentry = entry + 64;
  2093. REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), 0);
  2094. REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
  2095. REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), 0);
  2096. REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
  2097. }
  2098. if (ah->curchan == NULL)
  2099. return true;
  2100. return true;
  2101. }
  2102. bool ath9k_hw_keysetmac(struct ath_hw *ah, u16 entry, const u8 *mac)
  2103. {
  2104. u32 macHi, macLo;
  2105. if (entry >= ah->caps.keycache_size) {
  2106. DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
  2107. "keychache entry %u out of range\n", entry);
  2108. return false;
  2109. }
  2110. if (mac != NULL) {
  2111. macHi = (mac[5] << 8) | mac[4];
  2112. macLo = (mac[3] << 24) |
  2113. (mac[2] << 16) |
  2114. (mac[1] << 8) |
  2115. mac[0];
  2116. macLo >>= 1;
  2117. macLo |= (macHi & 1) << 31;
  2118. macHi >>= 1;
  2119. } else {
  2120. macLo = macHi = 0;
  2121. }
  2122. REG_WRITE(ah, AR_KEYTABLE_MAC0(entry), macLo);
  2123. REG_WRITE(ah, AR_KEYTABLE_MAC1(entry), macHi | AR_KEYTABLE_VALID);
  2124. return true;
  2125. }
  2126. bool ath9k_hw_set_keycache_entry(struct ath_hw *ah, u16 entry,
  2127. const struct ath9k_keyval *k,
  2128. const u8 *mac)
  2129. {
  2130. const struct ath9k_hw_capabilities *pCap = &ah->caps;
  2131. u32 key0, key1, key2, key3, key4;
  2132. u32 keyType;
  2133. if (entry >= pCap->keycache_size) {
  2134. DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
  2135. "keycache entry %u out of range\n", entry);
  2136. return false;
  2137. }
  2138. switch (k->kv_type) {
  2139. case ATH9K_CIPHER_AES_OCB:
  2140. keyType = AR_KEYTABLE_TYPE_AES;
  2141. break;
  2142. case ATH9K_CIPHER_AES_CCM:
  2143. if (!(pCap->hw_caps & ATH9K_HW_CAP_CIPHER_AESCCM)) {
  2144. DPRINTF(ah->ah_sc, ATH_DBG_ANY,
  2145. "AES-CCM not supported by mac rev 0x%x\n",
  2146. ah->hw_version.macRev);
  2147. return false;
  2148. }
  2149. keyType = AR_KEYTABLE_TYPE_CCM;
  2150. break;
  2151. case ATH9K_CIPHER_TKIP:
  2152. keyType = AR_KEYTABLE_TYPE_TKIP;
  2153. if (ATH9K_IS_MIC_ENABLED(ah)
  2154. && entry + 64 >= pCap->keycache_size) {
  2155. DPRINTF(ah->ah_sc, ATH_DBG_ANY,
  2156. "entry %u inappropriate for TKIP\n", entry);
  2157. return false;
  2158. }
  2159. break;
  2160. case ATH9K_CIPHER_WEP:
  2161. if (k->kv_len < WLAN_KEY_LEN_WEP40) {
  2162. DPRINTF(ah->ah_sc, ATH_DBG_ANY,
  2163. "WEP key length %u too small\n", k->kv_len);
  2164. return false;
  2165. }
  2166. if (k->kv_len <= WLAN_KEY_LEN_WEP40)
  2167. keyType = AR_KEYTABLE_TYPE_40;
  2168. else if (k->kv_len <= WLAN_KEY_LEN_WEP104)
  2169. keyType = AR_KEYTABLE_TYPE_104;
  2170. else
  2171. keyType = AR_KEYTABLE_TYPE_128;
  2172. break;
  2173. case ATH9K_CIPHER_CLR:
  2174. keyType = AR_KEYTABLE_TYPE_CLR;
  2175. break;
  2176. default:
  2177. DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
  2178. "cipher %u not supported\n", k->kv_type);
  2179. return false;
  2180. }
  2181. key0 = get_unaligned_le32(k->kv_val + 0);
  2182. key1 = get_unaligned_le16(k->kv_val + 4);
  2183. key2 = get_unaligned_le32(k->kv_val + 6);
  2184. key3 = get_unaligned_le16(k->kv_val + 10);
  2185. key4 = get_unaligned_le32(k->kv_val + 12);
  2186. if (k->kv_len <= WLAN_KEY_LEN_WEP104)
  2187. key4 &= 0xff;
  2188. /*
  2189. * Note: Key cache registers access special memory area that requires
  2190. * two 32-bit writes to actually update the values in the internal
  2191. * memory. Consequently, the exact order and pairs used here must be
  2192. * maintained.
  2193. */
  2194. if (keyType == AR_KEYTABLE_TYPE_TKIP && ATH9K_IS_MIC_ENABLED(ah)) {
  2195. u16 micentry = entry + 64;
  2196. /*
  2197. * Write inverted key[47:0] first to avoid Michael MIC errors
  2198. * on frames that could be sent or received at the same time.
  2199. * The correct key will be written in the end once everything
  2200. * else is ready.
  2201. */
  2202. REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), ~key0);
  2203. REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), ~key1);
  2204. /* Write key[95:48] */
  2205. REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
  2206. REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
  2207. /* Write key[127:96] and key type */
  2208. REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
  2209. REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
  2210. /* Write MAC address for the entry */
  2211. (void) ath9k_hw_keysetmac(ah, entry, mac);
  2212. if (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) {
  2213. /*
  2214. * TKIP uses two key cache entries:
  2215. * Michael MIC TX/RX keys in the same key cache entry
  2216. * (idx = main index + 64):
  2217. * key0 [31:0] = RX key [31:0]
  2218. * key1 [15:0] = TX key [31:16]
  2219. * key1 [31:16] = reserved
  2220. * key2 [31:0] = RX key [63:32]
  2221. * key3 [15:0] = TX key [15:0]
  2222. * key3 [31:16] = reserved
  2223. * key4 [31:0] = TX key [63:32]
  2224. */
  2225. u32 mic0, mic1, mic2, mic3, mic4;
  2226. mic0 = get_unaligned_le32(k->kv_mic + 0);
  2227. mic2 = get_unaligned_le32(k->kv_mic + 4);
  2228. mic1 = get_unaligned_le16(k->kv_txmic + 2) & 0xffff;
  2229. mic3 = get_unaligned_le16(k->kv_txmic + 0) & 0xffff;
  2230. mic4 = get_unaligned_le32(k->kv_txmic + 4);
  2231. /* Write RX[31:0] and TX[31:16] */
  2232. REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
  2233. REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), mic1);
  2234. /* Write RX[63:32] and TX[15:0] */
  2235. REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
  2236. REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), mic3);
  2237. /* Write TX[63:32] and keyType(reserved) */
  2238. REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), mic4);
  2239. REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
  2240. AR_KEYTABLE_TYPE_CLR);
  2241. } else {
  2242. /*
  2243. * TKIP uses four key cache entries (two for group
  2244. * keys):
  2245. * Michael MIC TX/RX keys are in different key cache
  2246. * entries (idx = main index + 64 for TX and
  2247. * main index + 32 + 96 for RX):
  2248. * key0 [31:0] = TX/RX MIC key [31:0]
  2249. * key1 [31:0] = reserved
  2250. * key2 [31:0] = TX/RX MIC key [63:32]
  2251. * key3 [31:0] = reserved
  2252. * key4 [31:0] = reserved
  2253. *
  2254. * Upper layer code will call this function separately
  2255. * for TX and RX keys when these registers offsets are
  2256. * used.
  2257. */
  2258. u32 mic0, mic2;
  2259. mic0 = get_unaligned_le32(k->kv_mic + 0);
  2260. mic2 = get_unaligned_le32(k->kv_mic + 4);
  2261. /* Write MIC key[31:0] */
  2262. REG_WRITE(ah, AR_KEYTABLE_KEY0(micentry), mic0);
  2263. REG_WRITE(ah, AR_KEYTABLE_KEY1(micentry), 0);
  2264. /* Write MIC key[63:32] */
  2265. REG_WRITE(ah, AR_KEYTABLE_KEY2(micentry), mic2);
  2266. REG_WRITE(ah, AR_KEYTABLE_KEY3(micentry), 0);
  2267. /* Write TX[63:32] and keyType(reserved) */
  2268. REG_WRITE(ah, AR_KEYTABLE_KEY4(micentry), 0);
  2269. REG_WRITE(ah, AR_KEYTABLE_TYPE(micentry),
  2270. AR_KEYTABLE_TYPE_CLR);
  2271. }
  2272. /* MAC address registers are reserved for the MIC entry */
  2273. REG_WRITE(ah, AR_KEYTABLE_MAC0(micentry), 0);
  2274. REG_WRITE(ah, AR_KEYTABLE_MAC1(micentry), 0);
  2275. /*
  2276. * Write the correct (un-inverted) key[47:0] last to enable
  2277. * TKIP now that all other registers are set with correct
  2278. * values.
  2279. */
  2280. REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
  2281. REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
  2282. } else {
  2283. /* Write key[47:0] */
  2284. REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), key0);
  2285. REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), key1);
  2286. /* Write key[95:48] */
  2287. REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2);
  2288. REG_WRITE(ah, AR_KEYTABLE_KEY3(entry), key3);
  2289. /* Write key[127:96] and key type */
  2290. REG_WRITE(ah, AR_KEYTABLE_KEY4(entry), key4);
  2291. REG_WRITE(ah, AR_KEYTABLE_TYPE(entry), keyType);
  2292. /* Write MAC address for the entry */
  2293. (void) ath9k_hw_keysetmac(ah, entry, mac);
  2294. }
  2295. return true;
  2296. }
  2297. bool ath9k_hw_keyisvalid(struct ath_hw *ah, u16 entry)
  2298. {
  2299. if (entry < ah->caps.keycache_size) {
  2300. u32 val = REG_READ(ah, AR_KEYTABLE_MAC1(entry));
  2301. if (val & AR_KEYTABLE_VALID)
  2302. return true;
  2303. }
  2304. return false;
  2305. }
  2306. /******************************/
  2307. /* Power Management (Chipset) */
  2308. /******************************/
  2309. static void ath9k_set_power_sleep(struct ath_hw *ah, int setChip)
  2310. {
  2311. REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
  2312. if (setChip) {
  2313. REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
  2314. AR_RTC_FORCE_WAKE_EN);
  2315. if (!AR_SREV_9100(ah))
  2316. REG_WRITE(ah, AR_RC, AR_RC_AHB | AR_RC_HOSTIF);
  2317. REG_CLR_BIT(ah, (AR_RTC_RESET),
  2318. AR_RTC_RESET_EN);
  2319. }
  2320. }
  2321. static void ath9k_set_power_network_sleep(struct ath_hw *ah, int setChip)
  2322. {
  2323. REG_SET_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
  2324. if (setChip) {
  2325. struct ath9k_hw_capabilities *pCap = &ah->caps;
  2326. if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
  2327. REG_WRITE(ah, AR_RTC_FORCE_WAKE,
  2328. AR_RTC_FORCE_WAKE_ON_INT);
  2329. } else {
  2330. REG_CLR_BIT(ah, AR_RTC_FORCE_WAKE,
  2331. AR_RTC_FORCE_WAKE_EN);
  2332. }
  2333. }
  2334. }
  2335. static bool ath9k_hw_set_power_awake(struct ath_hw *ah, int setChip)
  2336. {
  2337. u32 val;
  2338. int i;
  2339. if (setChip) {
  2340. if ((REG_READ(ah, AR_RTC_STATUS) &
  2341. AR_RTC_STATUS_M) == AR_RTC_STATUS_SHUTDOWN) {
  2342. if (ath9k_hw_set_reset_reg(ah,
  2343. ATH9K_RESET_POWER_ON) != true) {
  2344. return false;
  2345. }
  2346. }
  2347. if (AR_SREV_9100(ah))
  2348. REG_SET_BIT(ah, AR_RTC_RESET,
  2349. AR_RTC_RESET_EN);
  2350. REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
  2351. AR_RTC_FORCE_WAKE_EN);
  2352. udelay(50);
  2353. for (i = POWER_UP_TIME / 50; i > 0; i--) {
  2354. val = REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M;
  2355. if (val == AR_RTC_STATUS_ON)
  2356. break;
  2357. udelay(50);
  2358. REG_SET_BIT(ah, AR_RTC_FORCE_WAKE,
  2359. AR_RTC_FORCE_WAKE_EN);
  2360. }
  2361. if (i == 0) {
  2362. DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
  2363. "Failed to wakeup in %uus\n", POWER_UP_TIME / 20);
  2364. return false;
  2365. }
  2366. }
  2367. REG_CLR_BIT(ah, AR_STA_ID1, AR_STA_ID1_PWR_SAV);
  2368. return true;
  2369. }
  2370. static bool ath9k_hw_setpower_nolock(struct ath_hw *ah,
  2371. enum ath9k_power_mode mode)
  2372. {
  2373. int status = true, setChip = true;
  2374. static const char *modes[] = {
  2375. "AWAKE",
  2376. "FULL-SLEEP",
  2377. "NETWORK SLEEP",
  2378. "UNDEFINED"
  2379. };
  2380. DPRINTF(ah->ah_sc, ATH_DBG_RESET, "%s -> %s\n",
  2381. modes[ah->power_mode], modes[mode]);
  2382. switch (mode) {
  2383. case ATH9K_PM_AWAKE:
  2384. status = ath9k_hw_set_power_awake(ah, setChip);
  2385. break;
  2386. case ATH9K_PM_FULL_SLEEP:
  2387. ath9k_set_power_sleep(ah, setChip);
  2388. ah->chip_fullsleep = true;
  2389. break;
  2390. case ATH9K_PM_NETWORK_SLEEP:
  2391. ath9k_set_power_network_sleep(ah, setChip);
  2392. break;
  2393. default:
  2394. DPRINTF(ah->ah_sc, ATH_DBG_FATAL,
  2395. "Unknown power mode %u\n", mode);
  2396. return false;
  2397. }
  2398. ah->power_mode = mode;
  2399. return status;
  2400. }
  2401. bool ath9k_hw_setpower(struct ath_hw *ah, enum ath9k_power_mode mode)
  2402. {
  2403. unsigned long flags;
  2404. bool ret;
  2405. spin_lock_irqsave(&ah->ah_sc->sc_pm_lock, flags);
  2406. ret = ath9k_hw_setpower_nolock(ah, mode);
  2407. spin_unlock_irqrestore(&ah->ah_sc->sc_pm_lock, flags);
  2408. return ret;
  2409. }
  2410. void ath9k_ps_wakeup(struct ath_softc *sc)
  2411. {
  2412. unsigned long flags;
  2413. spin_lock_irqsave(&sc->sc_pm_lock, flags);
  2414. if (++sc->ps_usecount != 1)
  2415. goto unlock;
  2416. if (sc->sc_ah->power_mode != ATH9K_PM_AWAKE)
  2417. ath9k_hw_setpower_nolock(sc->sc_ah, ATH9K_PM_AWAKE);
  2418. unlock:
  2419. spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
  2420. }
  2421. void ath9k_ps_restore(struct ath_softc *sc)
  2422. {
  2423. unsigned long flags;
  2424. spin_lock_irqsave(&sc->sc_pm_lock, flags);
  2425. if (--sc->ps_usecount != 0)
  2426. goto unlock;
  2427. if (sc->ps_enabled &&
  2428. !(sc->sc_flags & (SC_OP_WAIT_FOR_BEACON |
  2429. SC_OP_WAIT_FOR_CAB |
  2430. SC_OP_WAIT_FOR_PSPOLL_DATA |
  2431. SC_OP_WAIT_FOR_TX_ACK)))
  2432. ath9k_hw_setpower_nolock(sc->sc_ah, ATH9K_PM_NETWORK_SLEEP);
  2433. unlock:
  2434. spin_unlock_irqrestore(&sc->sc_pm_lock, flags);
  2435. }
  2436. /*
  2437. * Helper for ASPM support.
  2438. *
  2439. * Disable PLL when in L0s as well as receiver clock when in L1.
  2440. * This power saving option must be enabled through the SerDes.
  2441. *
  2442. * Programming the SerDes must go through the same 288 bit serial shift
  2443. * register as the other analog registers. Hence the 9 writes.
  2444. */
  2445. void ath9k_hw_configpcipowersave(struct ath_hw *ah, int restore)
  2446. {
  2447. u8 i;
  2448. if (ah->is_pciexpress != true)
  2449. return;
  2450. /* Do not touch SerDes registers */
  2451. if (ah->config.pcie_powersave_enable == 2)
  2452. return;
  2453. /* Nothing to do on restore for 11N */
  2454. if (restore)
  2455. return;
  2456. if (AR_SREV_9280_20_OR_LATER(ah)) {
  2457. /*
  2458. * AR9280 2.0 or later chips use SerDes values from the
  2459. * initvals.h initialized depending on chipset during
  2460. * ath9k_hw_do_attach()
  2461. */
  2462. for (i = 0; i < ah->iniPcieSerdes.ia_rows; i++) {
  2463. REG_WRITE(ah, INI_RA(&ah->iniPcieSerdes, i, 0),
  2464. INI_RA(&ah->iniPcieSerdes, i, 1));
  2465. }
  2466. } else if (AR_SREV_9280(ah) &&
  2467. (ah->hw_version.macRev == AR_SREV_REVISION_9280_10)) {
  2468. REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fd00);
  2469. REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
  2470. /* RX shut off when elecidle is asserted */
  2471. REG_WRITE(ah, AR_PCIE_SERDES, 0xa8000019);
  2472. REG_WRITE(ah, AR_PCIE_SERDES, 0x13160820);
  2473. REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980560);
  2474. /* Shut off CLKREQ active in L1 */
  2475. if (ah->config.pcie_clock_req)
  2476. REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffc);
  2477. else
  2478. REG_WRITE(ah, AR_PCIE_SERDES, 0x401deffd);
  2479. REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
  2480. REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
  2481. REG_WRITE(ah, AR_PCIE_SERDES, 0x00043007);
  2482. /* Load the new settings */
  2483. REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
  2484. } else {
  2485. REG_WRITE(ah, AR_PCIE_SERDES, 0x9248fc00);
  2486. REG_WRITE(ah, AR_PCIE_SERDES, 0x24924924);
  2487. /* RX shut off when elecidle is asserted */
  2488. REG_WRITE(ah, AR_PCIE_SERDES, 0x28000039);
  2489. REG_WRITE(ah, AR_PCIE_SERDES, 0x53160824);
  2490. REG_WRITE(ah, AR_PCIE_SERDES, 0xe5980579);
  2491. /*
  2492. * Ignore ah->ah_config.pcie_clock_req setting for
  2493. * pre-AR9280 11n
  2494. */
  2495. REG_WRITE(ah, AR_PCIE_SERDES, 0x001defff);
  2496. REG_WRITE(ah, AR_PCIE_SERDES, 0x1aaabe40);
  2497. REG_WRITE(ah, AR_PCIE_SERDES, 0xbe105554);
  2498. REG_WRITE(ah, AR_PCIE_SERDES, 0x000e3007);
  2499. /* Load the new settings */
  2500. REG_WRITE(ah, AR_PCIE_SERDES2, 0x00000000);
  2501. }
  2502. udelay(1000);
  2503. /* set bit 19 to allow forcing of pcie core into L1 state */
  2504. REG_SET_BIT(ah, AR_PCIE_PM_CTRL, AR_PCIE_PM_CTRL_ENA);
  2505. /* Several PCIe massages to ensure proper behaviour */
  2506. if (ah->config.pcie_waen) {
  2507. REG_WRITE(ah, AR_WA, ah->config.pcie_waen);
  2508. } else {
  2509. if (AR_SREV_9285(ah))
  2510. REG_WRITE(ah, AR_WA, AR9285_WA_DEFAULT);
  2511. /*
  2512. * On AR9280 chips bit 22 of 0x4004 needs to be set to
  2513. * otherwise card may disappear.
  2514. */
  2515. else if (AR_SREV_9280(ah))
  2516. REG_WRITE(ah, AR_WA, AR9280_WA_DEFAULT);
  2517. else
  2518. REG_WRITE(ah, AR_WA, AR_WA_DEFAULT);
  2519. }
  2520. }
  2521. /**********************/
  2522. /* Interrupt Handling */
  2523. /**********************/
  2524. bool ath9k_hw_intrpend(struct ath_hw *ah)
  2525. {
  2526. u32 host_isr;
  2527. if (AR_SREV_9100(ah))
  2528. return true;
  2529. host_isr = REG_READ(ah, AR_INTR_ASYNC_CAUSE);
  2530. if ((host_isr & AR_INTR_MAC_IRQ) && (host_isr != AR_INTR_SPURIOUS))
  2531. return true;
  2532. host_isr = REG_READ(ah, AR_INTR_SYNC_CAUSE);
  2533. if ((host_isr & AR_INTR_SYNC_DEFAULT)
  2534. && (host_isr != AR_INTR_SPURIOUS))
  2535. return true;
  2536. return false;
  2537. }
  2538. bool ath9k_hw_getisr(struct ath_hw *ah, enum ath9k_int *masked)
  2539. {
  2540. u32 isr = 0;
  2541. u32 mask2 = 0;
  2542. struct ath9k_hw_capabilities *pCap = &ah->caps;
  2543. u32 sync_cause = 0;
  2544. bool fatal_int = false;
  2545. if (!AR_SREV_9100(ah)) {
  2546. if (REG_READ(ah, AR_INTR_ASYNC_CAUSE) & AR_INTR_MAC_IRQ) {
  2547. if ((REG_READ(ah, AR_RTC_STATUS) & AR_RTC_STATUS_M)
  2548. == AR_RTC_STATUS_ON) {
  2549. isr = REG_READ(ah, AR_ISR);
  2550. }
  2551. }
  2552. sync_cause = REG_READ(ah, AR_INTR_SYNC_CAUSE) &
  2553. AR_INTR_SYNC_DEFAULT;
  2554. *masked = 0;
  2555. if (!isr && !sync_cause)
  2556. return false;
  2557. } else {
  2558. *masked = 0;
  2559. isr = REG_READ(ah, AR_ISR);
  2560. }
  2561. if (isr) {
  2562. if (isr & AR_ISR_BCNMISC) {
  2563. u32 isr2;
  2564. isr2 = REG_READ(ah, AR_ISR_S2);
  2565. if (isr2 & AR_ISR_S2_TIM)
  2566. mask2 |= ATH9K_INT_TIM;
  2567. if (isr2 & AR_ISR_S2_DTIM)
  2568. mask2 |= ATH9K_INT_DTIM;
  2569. if (isr2 & AR_ISR_S2_DTIMSYNC)
  2570. mask2 |= ATH9K_INT_DTIMSYNC;
  2571. if (isr2 & (AR_ISR_S2_CABEND))
  2572. mask2 |= ATH9K_INT_CABEND;
  2573. if (isr2 & AR_ISR_S2_GTT)
  2574. mask2 |= ATH9K_INT_GTT;
  2575. if (isr2 & AR_ISR_S2_CST)
  2576. mask2 |= ATH9K_INT_CST;
  2577. if (isr2 & AR_ISR_S2_TSFOOR)
  2578. mask2 |= ATH9K_INT_TSFOOR;
  2579. }
  2580. isr = REG_READ(ah, AR_ISR_RAC);
  2581. if (isr == 0xffffffff) {
  2582. *masked = 0;
  2583. return false;
  2584. }
  2585. *masked = isr & ATH9K_INT_COMMON;
  2586. if (ah->config.intr_mitigation) {
  2587. if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM))
  2588. *masked |= ATH9K_INT_RX;
  2589. }
  2590. if (isr & (AR_ISR_RXOK | AR_ISR_RXERR))
  2591. *masked |= ATH9K_INT_RX;
  2592. if (isr &
  2593. (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR |
  2594. AR_ISR_TXEOL)) {
  2595. u32 s0_s, s1_s;
  2596. *masked |= ATH9K_INT_TX;
  2597. s0_s = REG_READ(ah, AR_ISR_S0_S);
  2598. ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXOK);
  2599. ah->intr_txqs |= MS(s0_s, AR_ISR_S0_QCU_TXDESC);
  2600. s1_s = REG_READ(ah, AR_ISR_S1_S);
  2601. ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXERR);
  2602. ah->intr_txqs |= MS(s1_s, AR_ISR_S1_QCU_TXEOL);
  2603. }
  2604. if (isr & AR_ISR_RXORN) {
  2605. DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
  2606. "receive FIFO overrun interrupt\n");
  2607. }
  2608. if (!AR_SREV_9100(ah)) {
  2609. if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
  2610. u32 isr5 = REG_READ(ah, AR_ISR_S5_S);
  2611. if (isr5 & AR_ISR_S5_TIM_TIMER)
  2612. *masked |= ATH9K_INT_TIM_TIMER;
  2613. }
  2614. }
  2615. *masked |= mask2;
  2616. }
  2617. if (AR_SREV_9100(ah))
  2618. return true;
  2619. if (sync_cause) {
  2620. fatal_int =
  2621. (sync_cause &
  2622. (AR_INTR_SYNC_HOST1_FATAL | AR_INTR_SYNC_HOST1_PERR))
  2623. ? true : false;
  2624. if (fatal_int) {
  2625. if (sync_cause & AR_INTR_SYNC_HOST1_FATAL) {
  2626. DPRINTF(ah->ah_sc, ATH_DBG_ANY,
  2627. "received PCI FATAL interrupt\n");
  2628. }
  2629. if (sync_cause & AR_INTR_SYNC_HOST1_PERR) {
  2630. DPRINTF(ah->ah_sc, ATH_DBG_ANY,
  2631. "received PCI PERR interrupt\n");
  2632. }
  2633. *masked |= ATH9K_INT_FATAL;
  2634. }
  2635. if (sync_cause & AR_INTR_SYNC_RADM_CPL_TIMEOUT) {
  2636. DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
  2637. "AR_INTR_SYNC_RADM_CPL_TIMEOUT\n");
  2638. REG_WRITE(ah, AR_RC, AR_RC_HOSTIF);
  2639. REG_WRITE(ah, AR_RC, 0);
  2640. *masked |= ATH9K_INT_FATAL;
  2641. }
  2642. if (sync_cause & AR_INTR_SYNC_LOCAL_TIMEOUT) {
  2643. DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT,
  2644. "AR_INTR_SYNC_LOCAL_TIMEOUT\n");
  2645. }
  2646. REG_WRITE(ah, AR_INTR_SYNC_CAUSE_CLR, sync_cause);
  2647. (void) REG_READ(ah, AR_INTR_SYNC_CAUSE_CLR);
  2648. }
  2649. return true;
  2650. }
  2651. enum ath9k_int ath9k_hw_intrget(struct ath_hw *ah)
  2652. {
  2653. return ah->mask_reg;
  2654. }
  2655. enum ath9k_int ath9k_hw_set_interrupts(struct ath_hw *ah, enum ath9k_int ints)
  2656. {
  2657. u32 omask = ah->mask_reg;
  2658. u32 mask, mask2;
  2659. struct ath9k_hw_capabilities *pCap = &ah->caps;
  2660. DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "0x%x => 0x%x\n", omask, ints);
  2661. if (omask & ATH9K_INT_GLOBAL) {
  2662. DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "disable IER\n");
  2663. REG_WRITE(ah, AR_IER, AR_IER_DISABLE);
  2664. (void) REG_READ(ah, AR_IER);
  2665. if (!AR_SREV_9100(ah)) {
  2666. REG_WRITE(ah, AR_INTR_ASYNC_ENABLE, 0);
  2667. (void) REG_READ(ah, AR_INTR_ASYNC_ENABLE);
  2668. REG_WRITE(ah, AR_INTR_SYNC_ENABLE, 0);
  2669. (void) REG_READ(ah, AR_INTR_SYNC_ENABLE);
  2670. }
  2671. }
  2672. mask = ints & ATH9K_INT_COMMON;
  2673. mask2 = 0;
  2674. if (ints & ATH9K_INT_TX) {
  2675. if (ah->txok_interrupt_mask)
  2676. mask |= AR_IMR_TXOK;
  2677. if (ah->txdesc_interrupt_mask)
  2678. mask |= AR_IMR_TXDESC;
  2679. if (ah->txerr_interrupt_mask)
  2680. mask |= AR_IMR_TXERR;
  2681. if (ah->txeol_interrupt_mask)
  2682. mask |= AR_IMR_TXEOL;
  2683. }
  2684. if (ints & ATH9K_INT_RX) {
  2685. mask |= AR_IMR_RXERR;
  2686. if (ah->config.intr_mitigation)
  2687. mask |= AR_IMR_RXMINTR | AR_IMR_RXINTM;
  2688. else
  2689. mask |= AR_IMR_RXOK | AR_IMR_RXDESC;
  2690. if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP))
  2691. mask |= AR_IMR_GENTMR;
  2692. }
  2693. if (ints & (ATH9K_INT_BMISC)) {
  2694. mask |= AR_IMR_BCNMISC;
  2695. if (ints & ATH9K_INT_TIM)
  2696. mask2 |= AR_IMR_S2_TIM;
  2697. if (ints & ATH9K_INT_DTIM)
  2698. mask2 |= AR_IMR_S2_DTIM;
  2699. if (ints & ATH9K_INT_DTIMSYNC)
  2700. mask2 |= AR_IMR_S2_DTIMSYNC;
  2701. if (ints & ATH9K_INT_CABEND)
  2702. mask2 |= AR_IMR_S2_CABEND;
  2703. if (ints & ATH9K_INT_TSFOOR)
  2704. mask2 |= AR_IMR_S2_TSFOOR;
  2705. }
  2706. if (ints & (ATH9K_INT_GTT | ATH9K_INT_CST)) {
  2707. mask |= AR_IMR_BCNMISC;
  2708. if (ints & ATH9K_INT_GTT)
  2709. mask2 |= AR_IMR_S2_GTT;
  2710. if (ints & ATH9K_INT_CST)
  2711. mask2 |= AR_IMR_S2_CST;
  2712. }
  2713. DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "new IMR 0x%x\n", mask);
  2714. REG_WRITE(ah, AR_IMR, mask);
  2715. mask = REG_READ(ah, AR_IMR_S2) & ~(AR_IMR_S2_TIM |
  2716. AR_IMR_S2_DTIM |
  2717. AR_IMR_S2_DTIMSYNC |
  2718. AR_IMR_S2_CABEND |
  2719. AR_IMR_S2_CABTO |
  2720. AR_IMR_S2_TSFOOR |
  2721. AR_IMR_S2_GTT | AR_IMR_S2_CST);
  2722. REG_WRITE(ah, AR_IMR_S2, mask | mask2);
  2723. ah->mask_reg = ints;
  2724. if (!(pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)) {
  2725. if (ints & ATH9K_INT_TIM_TIMER)
  2726. REG_SET_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
  2727. else
  2728. REG_CLR_BIT(ah, AR_IMR_S5, AR_IMR_S5_TIM_TIMER);
  2729. }
  2730. if (ints & ATH9K_INT_GLOBAL) {
  2731. DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "enable IER\n");
  2732. REG_WRITE(ah, AR_IER, AR_IER_ENABLE);
  2733. if (!AR_SREV_9100(ah)) {
  2734. REG_WRITE(ah, AR_INTR_ASYNC_ENABLE,
  2735. AR_INTR_MAC_IRQ);
  2736. REG_WRITE(ah, AR_INTR_ASYNC_MASK, AR_INTR_MAC_IRQ);
  2737. REG_WRITE(ah, AR_INTR_SYNC_ENABLE,
  2738. AR_INTR_SYNC_DEFAULT);
  2739. REG_WRITE(ah, AR_INTR_SYNC_MASK,
  2740. AR_INTR_SYNC_DEFAULT);
  2741. }
  2742. DPRINTF(ah->ah_sc, ATH_DBG_INTERRUPT, "AR_IMR 0x%x IER 0x%x\n",
  2743. REG_READ(ah, AR_IMR), REG_READ(ah, AR_IER));
  2744. }
  2745. return omask;
  2746. }
  2747. /*******************/
  2748. /* Beacon Handling */
  2749. /*******************/
  2750. void ath9k_hw_beaconinit(struct ath_hw *ah, u32 next_beacon, u32 beacon_period)
  2751. {
  2752. int flags = 0;
  2753. ah->beacon_interval = beacon_period;
  2754. switch (ah->opmode) {
  2755. case NL80211_IFTYPE_STATION:
  2756. case NL80211_IFTYPE_MONITOR:
  2757. REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
  2758. REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, 0xffff);
  2759. REG_WRITE(ah, AR_NEXT_SWBA, 0x7ffff);
  2760. flags |= AR_TBTT_TIMER_EN;
  2761. break;
  2762. case NL80211_IFTYPE_ADHOC:
  2763. case NL80211_IFTYPE_MESH_POINT:
  2764. REG_SET_BIT(ah, AR_TXCFG,
  2765. AR_TXCFG_ADHOC_BEACON_ATIM_TX_POLICY);
  2766. REG_WRITE(ah, AR_NEXT_NDP_TIMER,
  2767. TU_TO_USEC(next_beacon +
  2768. (ah->atim_window ? ah->
  2769. atim_window : 1)));
  2770. flags |= AR_NDP_TIMER_EN;
  2771. case NL80211_IFTYPE_AP:
  2772. REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(next_beacon));
  2773. REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT,
  2774. TU_TO_USEC(next_beacon -
  2775. ah->config.
  2776. dma_beacon_response_time));
  2777. REG_WRITE(ah, AR_NEXT_SWBA,
  2778. TU_TO_USEC(next_beacon -
  2779. ah->config.
  2780. sw_beacon_response_time));
  2781. flags |=
  2782. AR_TBTT_TIMER_EN | AR_DBA_TIMER_EN | AR_SWBA_TIMER_EN;
  2783. break;
  2784. default:
  2785. DPRINTF(ah->ah_sc, ATH_DBG_BEACON,
  2786. "%s: unsupported opmode: %d\n",
  2787. __func__, ah->opmode);
  2788. return;
  2789. break;
  2790. }
  2791. REG_WRITE(ah, AR_BEACON_PERIOD, TU_TO_USEC(beacon_period));
  2792. REG_WRITE(ah, AR_DMA_BEACON_PERIOD, TU_TO_USEC(beacon_period));
  2793. REG_WRITE(ah, AR_SWBA_PERIOD, TU_TO_USEC(beacon_period));
  2794. REG_WRITE(ah, AR_NDP_PERIOD, TU_TO_USEC(beacon_period));
  2795. beacon_period &= ~ATH9K_BEACON_ENA;
  2796. if (beacon_period & ATH9K_BEACON_RESET_TSF) {
  2797. beacon_period &= ~ATH9K_BEACON_RESET_TSF;
  2798. ath9k_hw_reset_tsf(ah);
  2799. }
  2800. REG_SET_BIT(ah, AR_TIMER_MODE, flags);
  2801. }
  2802. void ath9k_hw_set_sta_beacon_timers(struct ath_hw *ah,
  2803. const struct ath9k_beacon_state *bs)
  2804. {
  2805. u32 nextTbtt, beaconintval, dtimperiod, beacontimeout;
  2806. struct ath9k_hw_capabilities *pCap = &ah->caps;
  2807. REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bs->bs_nexttbtt));
  2808. REG_WRITE(ah, AR_BEACON_PERIOD,
  2809. TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
  2810. REG_WRITE(ah, AR_DMA_BEACON_PERIOD,
  2811. TU_TO_USEC(bs->bs_intval & ATH9K_BEACON_PERIOD));
  2812. REG_RMW_FIELD(ah, AR_RSSI_THR,
  2813. AR_RSSI_THR_BM_THR, bs->bs_bmissthreshold);
  2814. beaconintval = bs->bs_intval & ATH9K_BEACON_PERIOD;
  2815. if (bs->bs_sleepduration > beaconintval)
  2816. beaconintval = bs->bs_sleepduration;
  2817. dtimperiod = bs->bs_dtimperiod;
  2818. if (bs->bs_sleepduration > dtimperiod)
  2819. dtimperiod = bs->bs_sleepduration;
  2820. if (beaconintval == dtimperiod)
  2821. nextTbtt = bs->bs_nextdtim;
  2822. else
  2823. nextTbtt = bs->bs_nexttbtt;
  2824. DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next DTIM %d\n", bs->bs_nextdtim);
  2825. DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "next beacon %d\n", nextTbtt);
  2826. DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "beacon period %d\n", beaconintval);
  2827. DPRINTF(ah->ah_sc, ATH_DBG_BEACON, "DTIM period %d\n", dtimperiod);
  2828. REG_WRITE(ah, AR_NEXT_DTIM,
  2829. TU_TO_USEC(bs->bs_nextdtim - SLEEP_SLOP));
  2830. REG_WRITE(ah, AR_NEXT_TIM, TU_TO_USEC(nextTbtt - SLEEP_SLOP));
  2831. REG_WRITE(ah, AR_SLEEP1,
  2832. SM((CAB_TIMEOUT_VAL << 3), AR_SLEEP1_CAB_TIMEOUT)
  2833. | AR_SLEEP1_ASSUME_DTIM);
  2834. if (pCap->hw_caps & ATH9K_HW_CAP_AUTOSLEEP)
  2835. beacontimeout = (BEACON_TIMEOUT_VAL << 3);
  2836. else
  2837. beacontimeout = MIN_BEACON_TIMEOUT_VAL;
  2838. REG_WRITE(ah, AR_SLEEP2,
  2839. SM(beacontimeout, AR_SLEEP2_BEACON_TIMEOUT));
  2840. REG_WRITE(ah, AR_TIM_PERIOD, TU_TO_USEC(beaconintval));
  2841. REG_WRITE(ah, AR_DTIM_PERIOD, TU_TO_USEC(dtimperiod));
  2842. REG_SET_BIT(ah, AR_TIMER_MODE,
  2843. AR_TBTT_TIMER_EN | AR_TIM_TIMER_EN |
  2844. AR_DTIM_TIMER_EN);
  2845. /* TSF Out of Range Threshold */
  2846. REG_WRITE(ah, AR_TSFOOR_THRESHOLD, bs->bs_tsfoor_threshold);
  2847. }
  2848. /*******************/
  2849. /* HW Capabilities */
  2850. /*******************/
  2851. void ath9k_hw_fill_cap_info(struct ath_hw *ah)
  2852. {
  2853. struct ath9k_hw_capabilities *pCap = &ah->caps;
  2854. u16 capField = 0, eeval;
  2855. eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_0);
  2856. ah->regulatory.current_rd = eeval;
  2857. eeval = ah->eep_ops->get_eeprom(ah, EEP_REG_1);
  2858. if (AR_SREV_9285_10_OR_LATER(ah))
  2859. eeval |= AR9285_RDEXT_DEFAULT;
  2860. ah->regulatory.current_rd_ext = eeval;
  2861. capField = ah->eep_ops->get_eeprom(ah, EEP_OP_CAP);
  2862. if (ah->opmode != NL80211_IFTYPE_AP &&
  2863. ah->hw_version.subvendorid == AR_SUBVENDOR_ID_NEW_A) {
  2864. if (ah->regulatory.current_rd == 0x64 ||
  2865. ah->regulatory.current_rd == 0x65)
  2866. ah->regulatory.current_rd += 5;
  2867. else if (ah->regulatory.current_rd == 0x41)
  2868. ah->regulatory.current_rd = 0x43;
  2869. DPRINTF(ah->ah_sc, ATH_DBG_REGULATORY,
  2870. "regdomain mapped to 0x%x\n", ah->regulatory.current_rd);
  2871. }
  2872. eeval = ah->eep_ops->get_eeprom(ah, EEP_OP_MODE);
  2873. bitmap_zero(pCap->wireless_modes, ATH9K_MODE_MAX);
  2874. if (eeval & AR5416_OPFLAGS_11A) {
  2875. set_bit(ATH9K_MODE_11A, pCap->wireless_modes);
  2876. if (ah->config.ht_enable) {
  2877. if (!(eeval & AR5416_OPFLAGS_N_5G_HT20))
  2878. set_bit(ATH9K_MODE_11NA_HT20,
  2879. pCap->wireless_modes);
  2880. if (!(eeval & AR5416_OPFLAGS_N_5G_HT40)) {
  2881. set_bit(ATH9K_MODE_11NA_HT40PLUS,
  2882. pCap->wireless_modes);
  2883. set_bit(ATH9K_MODE_11NA_HT40MINUS,
  2884. pCap->wireless_modes);
  2885. }
  2886. }
  2887. }
  2888. if (eeval & AR5416_OPFLAGS_11G) {
  2889. set_bit(ATH9K_MODE_11G, pCap->wireless_modes);
  2890. if (ah->config.ht_enable) {
  2891. if (!(eeval & AR5416_OPFLAGS_N_2G_HT20))
  2892. set_bit(ATH9K_MODE_11NG_HT20,
  2893. pCap->wireless_modes);
  2894. if (!(eeval & AR5416_OPFLAGS_N_2G_HT40)) {
  2895. set_bit(ATH9K_MODE_11NG_HT40PLUS,
  2896. pCap->wireless_modes);
  2897. set_bit(ATH9K_MODE_11NG_HT40MINUS,
  2898. pCap->wireless_modes);
  2899. }
  2900. }
  2901. }
  2902. pCap->tx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_TX_MASK);
  2903. if ((ah->hw_version.devid == AR5416_DEVID_PCI) &&
  2904. !(eeval & AR5416_OPFLAGS_11A))
  2905. pCap->rx_chainmask = ath9k_hw_gpio_get(ah, 0) ? 0x5 : 0x7;
  2906. else
  2907. pCap->rx_chainmask = ah->eep_ops->get_eeprom(ah, EEP_RX_MASK);
  2908. if (!(AR_SREV_9280(ah) && (ah->hw_version.macRev == 0)))
  2909. ah->misc_mode |= AR_PCU_MIC_NEW_LOC_ENA;
  2910. pCap->low_2ghz_chan = 2312;
  2911. pCap->high_2ghz_chan = 2732;
  2912. pCap->low_5ghz_chan = 4920;
  2913. pCap->high_5ghz_chan = 6100;
  2914. pCap->hw_caps &= ~ATH9K_HW_CAP_CIPHER_CKIP;
  2915. pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_TKIP;
  2916. pCap->hw_caps |= ATH9K_HW_CAP_CIPHER_AESCCM;
  2917. pCap->hw_caps &= ~ATH9K_HW_CAP_MIC_CKIP;
  2918. pCap->hw_caps |= ATH9K_HW_CAP_MIC_TKIP;
  2919. pCap->hw_caps |= ATH9K_HW_CAP_MIC_AESCCM;
  2920. if (ah->config.ht_enable)
  2921. pCap->hw_caps |= ATH9K_HW_CAP_HT;
  2922. else
  2923. pCap->hw_caps &= ~ATH9K_HW_CAP_HT;
  2924. pCap->hw_caps |= ATH9K_HW_CAP_GTT;
  2925. pCap->hw_caps |= ATH9K_HW_CAP_VEOL;
  2926. pCap->hw_caps |= ATH9K_HW_CAP_BSSIDMASK;
  2927. pCap->hw_caps &= ~ATH9K_HW_CAP_MCAST_KEYSEARCH;
  2928. if (capField & AR_EEPROM_EEPCAP_MAXQCU)
  2929. pCap->total_queues =
  2930. MS(capField, AR_EEPROM_EEPCAP_MAXQCU);
  2931. else
  2932. pCap->total_queues = ATH9K_NUM_TX_QUEUES;
  2933. if (capField & AR_EEPROM_EEPCAP_KC_ENTRIES)
  2934. pCap->keycache_size =
  2935. 1 << MS(capField, AR_EEPROM_EEPCAP_KC_ENTRIES);
  2936. else
  2937. pCap->keycache_size = AR_KEYTABLE_SIZE;
  2938. pCap->hw_caps |= ATH9K_HW_CAP_FASTCC;
  2939. pCap->tx_triglevel_max = MAX_TX_FIFO_THRESHOLD;
  2940. if (AR_SREV_9285_10_OR_LATER(ah))
  2941. pCap->num_gpio_pins = AR9285_NUM_GPIO;
  2942. else if (AR_SREV_9280_10_OR_LATER(ah))
  2943. pCap->num_gpio_pins = AR928X_NUM_GPIO;
  2944. else
  2945. pCap->num_gpio_pins = AR_NUM_GPIO;
  2946. if (AR_SREV_9160_10_OR_LATER(ah) || AR_SREV_9100(ah)) {
  2947. pCap->hw_caps |= ATH9K_HW_CAP_CST;
  2948. pCap->rts_aggr_limit = ATH_AMPDU_LIMIT_MAX;
  2949. } else {
  2950. pCap->rts_aggr_limit = (8 * 1024);
  2951. }
  2952. pCap->hw_caps |= ATH9K_HW_CAP_ENHANCEDPM;
  2953. #if defined(CONFIG_RFKILL) || defined(CONFIG_RFKILL_MODULE)
  2954. ah->rfsilent = ah->eep_ops->get_eeprom(ah, EEP_RF_SILENT);
  2955. if (ah->rfsilent & EEP_RFSILENT_ENABLED) {
  2956. ah->rfkill_gpio =
  2957. MS(ah->rfsilent, EEP_RFSILENT_GPIO_SEL);
  2958. ah->rfkill_polarity =
  2959. MS(ah->rfsilent, EEP_RFSILENT_POLARITY);
  2960. pCap->hw_caps |= ATH9K_HW_CAP_RFSILENT;
  2961. }
  2962. #endif
  2963. if ((ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCI) ||
  2964. (ah->hw_version.macVersion == AR_SREV_VERSION_5416_PCIE) ||
  2965. (ah->hw_version.macVersion == AR_SREV_VERSION_9160) ||
  2966. (ah->hw_version.macVersion == AR_SREV_VERSION_9100) ||
  2967. (ah->hw_version.macVersion == AR_SREV_VERSION_9280) ||
  2968. (ah->hw_version.macVersion == AR_SREV_VERSION_9285))
  2969. pCap->hw_caps &= ~ATH9K_HW_CAP_AUTOSLEEP;
  2970. else
  2971. pCap->hw_caps |= ATH9K_HW_CAP_AUTOSLEEP;
  2972. if (AR_SREV_9280(ah) || AR_SREV_9285(ah))
  2973. pCap->hw_caps &= ~ATH9K_HW_CAP_4KB_SPLITTRANS;
  2974. else
  2975. pCap->hw_caps |= ATH9K_HW_CAP_4KB_SPLITTRANS;
  2976. if (ah->regulatory.current_rd_ext & (1 << REG_EXT_JAPAN_MIDBAND)) {
  2977. pCap->reg_cap =
  2978. AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
  2979. AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN |
  2980. AR_EEPROM_EEREGCAP_EN_KK_U2 |
  2981. AR_EEPROM_EEREGCAP_EN_KK_MIDBAND;
  2982. } else {
  2983. pCap->reg_cap =
  2984. AR_EEPROM_EEREGCAP_EN_KK_NEW_11A |
  2985. AR_EEPROM_EEREGCAP_EN_KK_U1_EVEN;
  2986. }
  2987. pCap->reg_cap |= AR_EEPROM_EEREGCAP_EN_FCC_MIDBAND;
  2988. pCap->num_antcfg_5ghz =
  2989. ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_5GHZ);
  2990. pCap->num_antcfg_2ghz =
  2991. ah->eep_ops->get_num_ant_config(ah, ATH9K_HAL_FREQ_BAND_2GHZ);
  2992. if (AR_SREV_9280_10_OR_LATER(ah) && btcoex_enable) {
  2993. pCap->hw_caps |= ATH9K_HW_CAP_BT_COEX;
  2994. ah->btactive_gpio = 6;
  2995. ah->wlanactive_gpio = 5;
  2996. }
  2997. }
  2998. bool ath9k_hw_getcapability(struct ath_hw *ah, enum ath9k_capability_type type,
  2999. u32 capability, u32 *result)
  3000. {
  3001. switch (type) {
  3002. case ATH9K_CAP_CIPHER:
  3003. switch (capability) {
  3004. case ATH9K_CIPHER_AES_CCM:
  3005. case ATH9K_CIPHER_AES_OCB:
  3006. case ATH9K_CIPHER_TKIP:
  3007. case ATH9K_CIPHER_WEP:
  3008. case ATH9K_CIPHER_MIC:
  3009. case ATH9K_CIPHER_CLR:
  3010. return true;
  3011. default:
  3012. return false;
  3013. }
  3014. case ATH9K_CAP_TKIP_MIC:
  3015. switch (capability) {
  3016. case 0:
  3017. return true;
  3018. case 1:
  3019. return (ah->sta_id1_defaults &
  3020. AR_STA_ID1_CRPT_MIC_ENABLE) ? true :
  3021. false;
  3022. }
  3023. case ATH9K_CAP_TKIP_SPLIT:
  3024. return (ah->misc_mode & AR_PCU_MIC_NEW_LOC_ENA) ?
  3025. false : true;
  3026. case ATH9K_CAP_DIVERSITY:
  3027. return (REG_READ(ah, AR_PHY_CCK_DETECT) &
  3028. AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV) ?
  3029. true : false;
  3030. case ATH9K_CAP_MCAST_KEYSRCH:
  3031. switch (capability) {
  3032. case 0:
  3033. return true;
  3034. case 1:
  3035. if (REG_READ(ah, AR_STA_ID1) & AR_STA_ID1_ADHOC) {
  3036. return false;
  3037. } else {
  3038. return (ah->sta_id1_defaults &
  3039. AR_STA_ID1_MCAST_KSRCH) ? true :
  3040. false;
  3041. }
  3042. }
  3043. return false;
  3044. case ATH9K_CAP_TXPOW:
  3045. switch (capability) {
  3046. case 0:
  3047. return 0;
  3048. case 1:
  3049. *result = ah->regulatory.power_limit;
  3050. return 0;
  3051. case 2:
  3052. *result = ah->regulatory.max_power_level;
  3053. return 0;
  3054. case 3:
  3055. *result = ah->regulatory.tp_scale;
  3056. return 0;
  3057. }
  3058. return false;
  3059. case ATH9K_CAP_DS:
  3060. return (AR_SREV_9280_20_OR_LATER(ah) &&
  3061. (ah->eep_ops->get_eeprom(ah, EEP_RC_CHAIN_MASK) == 1))
  3062. ? false : true;
  3063. default:
  3064. return false;
  3065. }
  3066. }
  3067. bool ath9k_hw_setcapability(struct ath_hw *ah, enum ath9k_capability_type type,
  3068. u32 capability, u32 setting, int *status)
  3069. {
  3070. u32 v;
  3071. switch (type) {
  3072. case ATH9K_CAP_TKIP_MIC:
  3073. if (setting)
  3074. ah->sta_id1_defaults |=
  3075. AR_STA_ID1_CRPT_MIC_ENABLE;
  3076. else
  3077. ah->sta_id1_defaults &=
  3078. ~AR_STA_ID1_CRPT_MIC_ENABLE;
  3079. return true;
  3080. case ATH9K_CAP_DIVERSITY:
  3081. v = REG_READ(ah, AR_PHY_CCK_DETECT);
  3082. if (setting)
  3083. v |= AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
  3084. else
  3085. v &= ~AR_PHY_CCK_DETECT_BB_ENABLE_ANT_FAST_DIV;
  3086. REG_WRITE(ah, AR_PHY_CCK_DETECT, v);
  3087. return true;
  3088. case ATH9K_CAP_MCAST_KEYSRCH:
  3089. if (setting)
  3090. ah->sta_id1_defaults |= AR_STA_ID1_MCAST_KSRCH;
  3091. else
  3092. ah->sta_id1_defaults &= ~AR_STA_ID1_MCAST_KSRCH;
  3093. return true;
  3094. default:
  3095. return false;
  3096. }
  3097. }
  3098. /****************************/
  3099. /* GPIO / RFKILL / Antennae */
  3100. /****************************/
  3101. static void ath9k_hw_gpio_cfg_output_mux(struct ath_hw *ah,
  3102. u32 gpio, u32 type)
  3103. {
  3104. int addr;
  3105. u32 gpio_shift, tmp;
  3106. if (gpio > 11)
  3107. addr = AR_GPIO_OUTPUT_MUX3;
  3108. else if (gpio > 5)
  3109. addr = AR_GPIO_OUTPUT_MUX2;
  3110. else
  3111. addr = AR_GPIO_OUTPUT_MUX1;
  3112. gpio_shift = (gpio % 6) * 5;
  3113. if (AR_SREV_9280_20_OR_LATER(ah)
  3114. || (addr != AR_GPIO_OUTPUT_MUX1)) {
  3115. REG_RMW(ah, addr, (type << gpio_shift),
  3116. (0x1f << gpio_shift));
  3117. } else {
  3118. tmp = REG_READ(ah, addr);
  3119. tmp = ((tmp & 0x1F0) << 1) | (tmp & ~0x1F0);
  3120. tmp &= ~(0x1f << gpio_shift);
  3121. tmp |= (type << gpio_shift);
  3122. REG_WRITE(ah, addr, tmp);
  3123. }
  3124. }
  3125. void ath9k_hw_cfg_gpio_input(struct ath_hw *ah, u32 gpio)
  3126. {
  3127. u32 gpio_shift;
  3128. ASSERT(gpio < ah->caps.num_gpio_pins);
  3129. gpio_shift = gpio << 1;
  3130. REG_RMW(ah,
  3131. AR_GPIO_OE_OUT,
  3132. (AR_GPIO_OE_OUT_DRV_NO << gpio_shift),
  3133. (AR_GPIO_OE_OUT_DRV << gpio_shift));
  3134. }
  3135. u32 ath9k_hw_gpio_get(struct ath_hw *ah, u32 gpio)
  3136. {
  3137. #define MS_REG_READ(x, y) \
  3138. (MS(REG_READ(ah, AR_GPIO_IN_OUT), x##_GPIO_IN_VAL) & (AR_GPIO_BIT(y)))
  3139. if (gpio >= ah->caps.num_gpio_pins)
  3140. return 0xffffffff;
  3141. if (AR_SREV_9287_10_OR_LATER(ah))
  3142. return MS_REG_READ(AR9287, gpio) != 0;
  3143. else if (AR_SREV_9285_10_OR_LATER(ah))
  3144. return MS_REG_READ(AR9285, gpio) != 0;
  3145. else if (AR_SREV_9280_10_OR_LATER(ah))
  3146. return MS_REG_READ(AR928X, gpio) != 0;
  3147. else
  3148. return MS_REG_READ(AR, gpio) != 0;
  3149. }
  3150. void ath9k_hw_cfg_output(struct ath_hw *ah, u32 gpio,
  3151. u32 ah_signal_type)
  3152. {
  3153. u32 gpio_shift;
  3154. ath9k_hw_gpio_cfg_output_mux(ah, gpio, ah_signal_type);
  3155. gpio_shift = 2 * gpio;
  3156. REG_RMW(ah,
  3157. AR_GPIO_OE_OUT,
  3158. (AR_GPIO_OE_OUT_DRV_ALL << gpio_shift),
  3159. (AR_GPIO_OE_OUT_DRV << gpio_shift));
  3160. }
  3161. void ath9k_hw_set_gpio(struct ath_hw *ah, u32 gpio, u32 val)
  3162. {
  3163. REG_RMW(ah, AR_GPIO_IN_OUT, ((val & 1) << gpio),
  3164. AR_GPIO_BIT(gpio));
  3165. }
  3166. u32 ath9k_hw_getdefantenna(struct ath_hw *ah)
  3167. {
  3168. return REG_READ(ah, AR_DEF_ANTENNA) & 0x7;
  3169. }
  3170. void ath9k_hw_setantenna(struct ath_hw *ah, u32 antenna)
  3171. {
  3172. REG_WRITE(ah, AR_DEF_ANTENNA, (antenna & 0x7));
  3173. }
  3174. bool ath9k_hw_setantennaswitch(struct ath_hw *ah,
  3175. enum ath9k_ant_setting settings,
  3176. struct ath9k_channel *chan,
  3177. u8 *tx_chainmask,
  3178. u8 *rx_chainmask,
  3179. u8 *antenna_cfgd)
  3180. {
  3181. static u8 tx_chainmask_cfg, rx_chainmask_cfg;
  3182. if (AR_SREV_9280(ah)) {
  3183. if (!tx_chainmask_cfg) {
  3184. tx_chainmask_cfg = *tx_chainmask;
  3185. rx_chainmask_cfg = *rx_chainmask;
  3186. }
  3187. switch (settings) {
  3188. case ATH9K_ANT_FIXED_A:
  3189. *tx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
  3190. *rx_chainmask = ATH9K_ANTENNA0_CHAINMASK;
  3191. *antenna_cfgd = true;
  3192. break;
  3193. case ATH9K_ANT_FIXED_B:
  3194. if (ah->caps.tx_chainmask >
  3195. ATH9K_ANTENNA1_CHAINMASK) {
  3196. *tx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
  3197. }
  3198. *rx_chainmask = ATH9K_ANTENNA1_CHAINMASK;
  3199. *antenna_cfgd = true;
  3200. break;
  3201. case ATH9K_ANT_VARIABLE:
  3202. *tx_chainmask = tx_chainmask_cfg;
  3203. *rx_chainmask = rx_chainmask_cfg;
  3204. *antenna_cfgd = true;
  3205. break;
  3206. default:
  3207. break;
  3208. }
  3209. } else {
  3210. ah->diversity_control = settings;
  3211. }
  3212. return true;
  3213. }
  3214. /*********************/
  3215. /* General Operation */
  3216. /*********************/
  3217. u32 ath9k_hw_getrxfilter(struct ath_hw *ah)
  3218. {
  3219. u32 bits = REG_READ(ah, AR_RX_FILTER);
  3220. u32 phybits = REG_READ(ah, AR_PHY_ERR);
  3221. if (phybits & AR_PHY_ERR_RADAR)
  3222. bits |= ATH9K_RX_FILTER_PHYRADAR;
  3223. if (phybits & (AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING))
  3224. bits |= ATH9K_RX_FILTER_PHYERR;
  3225. return bits;
  3226. }
  3227. void ath9k_hw_setrxfilter(struct ath_hw *ah, u32 bits)
  3228. {
  3229. u32 phybits;
  3230. REG_WRITE(ah, AR_RX_FILTER, (bits & 0xffff) | AR_RX_COMPR_BAR);
  3231. phybits = 0;
  3232. if (bits & ATH9K_RX_FILTER_PHYRADAR)
  3233. phybits |= AR_PHY_ERR_RADAR;
  3234. if (bits & ATH9K_RX_FILTER_PHYERR)
  3235. phybits |= AR_PHY_ERR_OFDM_TIMING | AR_PHY_ERR_CCK_TIMING;
  3236. REG_WRITE(ah, AR_PHY_ERR, phybits);
  3237. if (phybits)
  3238. REG_WRITE(ah, AR_RXCFG,
  3239. REG_READ(ah, AR_RXCFG) | AR_RXCFG_ZLFDMA);
  3240. else
  3241. REG_WRITE(ah, AR_RXCFG,
  3242. REG_READ(ah, AR_RXCFG) & ~AR_RXCFG_ZLFDMA);
  3243. }
  3244. bool ath9k_hw_phy_disable(struct ath_hw *ah)
  3245. {
  3246. return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_WARM);
  3247. }
  3248. bool ath9k_hw_disable(struct ath_hw *ah)
  3249. {
  3250. if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
  3251. return false;
  3252. return ath9k_hw_set_reset_reg(ah, ATH9K_RESET_COLD);
  3253. }
  3254. void ath9k_hw_set_txpowerlimit(struct ath_hw *ah, u32 limit)
  3255. {
  3256. struct ath9k_channel *chan = ah->curchan;
  3257. struct ieee80211_channel *channel = chan->chan;
  3258. ah->regulatory.power_limit = min(limit, (u32) MAX_RATE_POWER);
  3259. ah->eep_ops->set_txpower(ah, chan,
  3260. ath9k_regd_get_ctl(&ah->regulatory, chan),
  3261. channel->max_antenna_gain * 2,
  3262. channel->max_power * 2,
  3263. min((u32) MAX_RATE_POWER,
  3264. (u32) ah->regulatory.power_limit));
  3265. }
  3266. void ath9k_hw_setmac(struct ath_hw *ah, const u8 *mac)
  3267. {
  3268. memcpy(ah->macaddr, mac, ETH_ALEN);
  3269. }
  3270. void ath9k_hw_setopmode(struct ath_hw *ah)
  3271. {
  3272. ath9k_hw_set_operating_mode(ah, ah->opmode);
  3273. }
  3274. void ath9k_hw_setmcastfilter(struct ath_hw *ah, u32 filter0, u32 filter1)
  3275. {
  3276. REG_WRITE(ah, AR_MCAST_FIL0, filter0);
  3277. REG_WRITE(ah, AR_MCAST_FIL1, filter1);
  3278. }
  3279. void ath9k_hw_setbssidmask(struct ath_softc *sc)
  3280. {
  3281. REG_WRITE(sc->sc_ah, AR_BSSMSKL, get_unaligned_le32(sc->bssidmask));
  3282. REG_WRITE(sc->sc_ah, AR_BSSMSKU, get_unaligned_le16(sc->bssidmask + 4));
  3283. }
  3284. void ath9k_hw_write_associd(struct ath_softc *sc)
  3285. {
  3286. REG_WRITE(sc->sc_ah, AR_BSS_ID0, get_unaligned_le32(sc->curbssid));
  3287. REG_WRITE(sc->sc_ah, AR_BSS_ID1, get_unaligned_le16(sc->curbssid + 4) |
  3288. ((sc->curaid & 0x3fff) << AR_BSS_ID1_AID_S));
  3289. }
  3290. u64 ath9k_hw_gettsf64(struct ath_hw *ah)
  3291. {
  3292. u64 tsf;
  3293. tsf = REG_READ(ah, AR_TSF_U32);
  3294. tsf = (tsf << 32) | REG_READ(ah, AR_TSF_L32);
  3295. return tsf;
  3296. }
  3297. void ath9k_hw_settsf64(struct ath_hw *ah, u64 tsf64)
  3298. {
  3299. REG_WRITE(ah, AR_TSF_L32, tsf64 & 0xffffffff);
  3300. REG_WRITE(ah, AR_TSF_U32, (tsf64 >> 32) & 0xffffffff);
  3301. }
  3302. void ath9k_hw_reset_tsf(struct ath_hw *ah)
  3303. {
  3304. ath9k_ps_wakeup(ah->ah_sc);
  3305. if (!ath9k_hw_wait(ah, AR_SLP32_MODE, AR_SLP32_TSF_WRITE_STATUS, 0,
  3306. AH_TSF_WRITE_TIMEOUT))
  3307. DPRINTF(ah->ah_sc, ATH_DBG_RESET,
  3308. "AR_SLP32_TSF_WRITE_STATUS limit exceeded\n");
  3309. REG_WRITE(ah, AR_RESET_TSF, AR_RESET_TSF_ONCE);
  3310. ath9k_ps_restore(ah->ah_sc);
  3311. }
  3312. bool ath9k_hw_set_tsfadjust(struct ath_hw *ah, u32 setting)
  3313. {
  3314. if (setting)
  3315. ah->misc_mode |= AR_PCU_TX_ADD_TSF;
  3316. else
  3317. ah->misc_mode &= ~AR_PCU_TX_ADD_TSF;
  3318. return true;
  3319. }
  3320. bool ath9k_hw_setslottime(struct ath_hw *ah, u32 us)
  3321. {
  3322. if (us < ATH9K_SLOT_TIME_9 || us > ath9k_hw_mac_to_usec(ah, 0xffff)) {
  3323. DPRINTF(ah->ah_sc, ATH_DBG_RESET, "bad slot time %u\n", us);
  3324. ah->slottime = (u32) -1;
  3325. return false;
  3326. } else {
  3327. REG_WRITE(ah, AR_D_GBL_IFS_SLOT, ath9k_hw_mac_to_clks(ah, us));
  3328. ah->slottime = us;
  3329. return true;
  3330. }
  3331. }
  3332. void ath9k_hw_set11nmac2040(struct ath_hw *ah, enum ath9k_ht_macmode mode)
  3333. {
  3334. u32 macmode;
  3335. if (mode == ATH9K_HT_MACMODE_2040 &&
  3336. !ah->config.cwm_ignore_extcca)
  3337. macmode = AR_2040_JOINED_RX_CLEAR;
  3338. else
  3339. macmode = 0;
  3340. REG_WRITE(ah, AR_2040_MODE, macmode);
  3341. }
  3342. /***************************/
  3343. /* Bluetooth Coexistence */
  3344. /***************************/
  3345. void ath9k_hw_btcoex_enable(struct ath_hw *ah)
  3346. {
  3347. /* connect bt_active to baseband */
  3348. REG_CLR_BIT(ah, AR_GPIO_INPUT_EN_VAL,
  3349. (AR_GPIO_INPUT_EN_VAL_BT_PRIORITY_DEF |
  3350. AR_GPIO_INPUT_EN_VAL_BT_FREQUENCY_DEF));
  3351. REG_SET_BIT(ah, AR_GPIO_INPUT_EN_VAL,
  3352. AR_GPIO_INPUT_EN_VAL_BT_ACTIVE_BB);
  3353. /* Set input mux for bt_active to gpio pin */
  3354. REG_RMW_FIELD(ah, AR_GPIO_INPUT_MUX1,
  3355. AR_GPIO_INPUT_MUX1_BT_ACTIVE,
  3356. ah->btactive_gpio);
  3357. /* Configure the desired gpio port for input */
  3358. ath9k_hw_cfg_gpio_input(ah, ah->btactive_gpio);
  3359. /* Configure the desired GPIO port for TX_FRAME output */
  3360. ath9k_hw_cfg_output(ah, ah->wlanactive_gpio,
  3361. AR_GPIO_OUTPUT_MUX_AS_TX_FRAME);
  3362. }