base.c 95 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594
  1. /*-
  2. * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
  3. * Copyright (c) 2004-2005 Atheros Communications, Inc.
  4. * Copyright (c) 2006 Devicescape Software, Inc.
  5. * Copyright (c) 2007 Jiri Slaby <jirislaby@gmail.com>
  6. * Copyright (c) 2007 Luis R. Rodriguez <mcgrof@winlab.rutgers.edu>
  7. *
  8. * All rights reserved.
  9. *
  10. * Redistribution and use in source and binary forms, with or without
  11. * modification, are permitted provided that the following conditions
  12. * are met:
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer,
  15. * without modification.
  16. * 2. Redistributions in binary form must reproduce at minimum a disclaimer
  17. * similar to the "NO WARRANTY" disclaimer below ("Disclaimer") and any
  18. * redistribution must be conditioned upon including a substantially
  19. * similar Disclaimer requirement for further binary redistribution.
  20. * 3. Neither the names of the above-listed copyright holders nor the names
  21. * of any contributors may be used to endorse or promote products derived
  22. * from this software without specific prior written permission.
  23. *
  24. * Alternatively, this software may be distributed under the terms of the
  25. * GNU General Public License ("GPL") version 2 as published by the Free
  26. * Software Foundation.
  27. *
  28. * NO WARRANTY
  29. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  30. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  31. * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT, MERCHANTIBILITY
  32. * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
  33. * THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY,
  34. * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  35. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  36. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
  37. * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  38. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
  39. * THE POSSIBILITY OF SUCH DAMAGES.
  40. *
  41. */
  42. #include <linux/module.h>
  43. #include <linux/delay.h>
  44. #include <linux/hardirq.h>
  45. #include <linux/if.h>
  46. #include <linux/io.h>
  47. #include <linux/netdevice.h>
  48. #include <linux/cache.h>
  49. #include <linux/ethtool.h>
  50. #include <linux/uaccess.h>
  51. #include <linux/slab.h>
  52. #include <linux/etherdevice.h>
  53. #include <net/ieee80211_radiotap.h>
  54. #include <asm/unaligned.h>
  55. #include "base.h"
  56. #include "reg.h"
  57. #include "debug.h"
  58. #include "ani.h"
  59. #include "../debug.h"
  60. static int modparam_nohwcrypt;
  61. module_param_named(nohwcrypt, modparam_nohwcrypt, bool, S_IRUGO);
  62. MODULE_PARM_DESC(nohwcrypt, "Disable hardware encryption.");
  63. static int modparam_all_channels;
  64. module_param_named(all_channels, modparam_all_channels, bool, S_IRUGO);
  65. MODULE_PARM_DESC(all_channels, "Expose all channels the device can use.");
  66. /* Module info */
  67. MODULE_AUTHOR("Jiri Slaby");
  68. MODULE_AUTHOR("Nick Kossifidis");
  69. MODULE_DESCRIPTION("Support for 5xxx series of Atheros 802.11 wireless LAN cards.");
  70. MODULE_SUPPORTED_DEVICE("Atheros 5xxx WLAN cards");
  71. MODULE_LICENSE("Dual BSD/GPL");
  72. MODULE_VERSION("0.6.0 (EXPERIMENTAL)");
  73. static int ath5k_init(struct ieee80211_hw *hw);
  74. static int ath5k_reset(struct ath5k_softc *sc, struct ieee80211_channel *chan,
  75. bool skip_pcu);
  76. static int ath5k_beacon_update(struct ieee80211_hw *hw,
  77. struct ieee80211_vif *vif);
  78. static void ath5k_beacon_update_timers(struct ath5k_softc *sc, u64 bc_tsf);
  79. /* Known SREVs */
  80. static const struct ath5k_srev_name srev_names[] = {
  81. #ifdef CONFIG_ATHEROS_AR231X
  82. { "5312", AR5K_VERSION_MAC, AR5K_SREV_AR5312_R2 },
  83. { "5312", AR5K_VERSION_MAC, AR5K_SREV_AR5312_R7 },
  84. { "2313", AR5K_VERSION_MAC, AR5K_SREV_AR2313_R8 },
  85. { "2315", AR5K_VERSION_MAC, AR5K_SREV_AR2315_R6 },
  86. { "2315", AR5K_VERSION_MAC, AR5K_SREV_AR2315_R7 },
  87. { "2317", AR5K_VERSION_MAC, AR5K_SREV_AR2317_R1 },
  88. { "2317", AR5K_VERSION_MAC, AR5K_SREV_AR2317_R2 },
  89. #else
  90. { "5210", AR5K_VERSION_MAC, AR5K_SREV_AR5210 },
  91. { "5311", AR5K_VERSION_MAC, AR5K_SREV_AR5311 },
  92. { "5311A", AR5K_VERSION_MAC, AR5K_SREV_AR5311A },
  93. { "5311B", AR5K_VERSION_MAC, AR5K_SREV_AR5311B },
  94. { "5211", AR5K_VERSION_MAC, AR5K_SREV_AR5211 },
  95. { "5212", AR5K_VERSION_MAC, AR5K_SREV_AR5212 },
  96. { "5213", AR5K_VERSION_MAC, AR5K_SREV_AR5213 },
  97. { "5213A", AR5K_VERSION_MAC, AR5K_SREV_AR5213A },
  98. { "2413", AR5K_VERSION_MAC, AR5K_SREV_AR2413 },
  99. { "2414", AR5K_VERSION_MAC, AR5K_SREV_AR2414 },
  100. { "5424", AR5K_VERSION_MAC, AR5K_SREV_AR5424 },
  101. { "5413", AR5K_VERSION_MAC, AR5K_SREV_AR5413 },
  102. { "5414", AR5K_VERSION_MAC, AR5K_SREV_AR5414 },
  103. { "2415", AR5K_VERSION_MAC, AR5K_SREV_AR2415 },
  104. { "5416", AR5K_VERSION_MAC, AR5K_SREV_AR5416 },
  105. { "5418", AR5K_VERSION_MAC, AR5K_SREV_AR5418 },
  106. { "2425", AR5K_VERSION_MAC, AR5K_SREV_AR2425 },
  107. { "2417", AR5K_VERSION_MAC, AR5K_SREV_AR2417 },
  108. #endif
  109. { "xxxxx", AR5K_VERSION_MAC, AR5K_SREV_UNKNOWN },
  110. { "5110", AR5K_VERSION_RAD, AR5K_SREV_RAD_5110 },
  111. { "5111", AR5K_VERSION_RAD, AR5K_SREV_RAD_5111 },
  112. { "5111A", AR5K_VERSION_RAD, AR5K_SREV_RAD_5111A },
  113. { "2111", AR5K_VERSION_RAD, AR5K_SREV_RAD_2111 },
  114. { "5112", AR5K_VERSION_RAD, AR5K_SREV_RAD_5112 },
  115. { "5112A", AR5K_VERSION_RAD, AR5K_SREV_RAD_5112A },
  116. { "5112B", AR5K_VERSION_RAD, AR5K_SREV_RAD_5112B },
  117. { "2112", AR5K_VERSION_RAD, AR5K_SREV_RAD_2112 },
  118. { "2112A", AR5K_VERSION_RAD, AR5K_SREV_RAD_2112A },
  119. { "2112B", AR5K_VERSION_RAD, AR5K_SREV_RAD_2112B },
  120. { "2413", AR5K_VERSION_RAD, AR5K_SREV_RAD_2413 },
  121. { "5413", AR5K_VERSION_RAD, AR5K_SREV_RAD_5413 },
  122. { "5424", AR5K_VERSION_RAD, AR5K_SREV_RAD_5424 },
  123. { "5133", AR5K_VERSION_RAD, AR5K_SREV_RAD_5133 },
  124. #ifdef CONFIG_ATHEROS_AR231X
  125. { "2316", AR5K_VERSION_RAD, AR5K_SREV_RAD_2316 },
  126. { "2317", AR5K_VERSION_RAD, AR5K_SREV_RAD_2317 },
  127. #endif
  128. { "xxxxx", AR5K_VERSION_RAD, AR5K_SREV_UNKNOWN },
  129. };
  130. static const struct ieee80211_rate ath5k_rates[] = {
  131. { .bitrate = 10,
  132. .hw_value = ATH5K_RATE_CODE_1M, },
  133. { .bitrate = 20,
  134. .hw_value = ATH5K_RATE_CODE_2M,
  135. .hw_value_short = ATH5K_RATE_CODE_2M | AR5K_SET_SHORT_PREAMBLE,
  136. .flags = IEEE80211_RATE_SHORT_PREAMBLE },
  137. { .bitrate = 55,
  138. .hw_value = ATH5K_RATE_CODE_5_5M,
  139. .hw_value_short = ATH5K_RATE_CODE_5_5M | AR5K_SET_SHORT_PREAMBLE,
  140. .flags = IEEE80211_RATE_SHORT_PREAMBLE },
  141. { .bitrate = 110,
  142. .hw_value = ATH5K_RATE_CODE_11M,
  143. .hw_value_short = ATH5K_RATE_CODE_11M | AR5K_SET_SHORT_PREAMBLE,
  144. .flags = IEEE80211_RATE_SHORT_PREAMBLE },
  145. { .bitrate = 60,
  146. .hw_value = ATH5K_RATE_CODE_6M,
  147. .flags = 0 },
  148. { .bitrate = 90,
  149. .hw_value = ATH5K_RATE_CODE_9M,
  150. .flags = 0 },
  151. { .bitrate = 120,
  152. .hw_value = ATH5K_RATE_CODE_12M,
  153. .flags = 0 },
  154. { .bitrate = 180,
  155. .hw_value = ATH5K_RATE_CODE_18M,
  156. .flags = 0 },
  157. { .bitrate = 240,
  158. .hw_value = ATH5K_RATE_CODE_24M,
  159. .flags = 0 },
  160. { .bitrate = 360,
  161. .hw_value = ATH5K_RATE_CODE_36M,
  162. .flags = 0 },
  163. { .bitrate = 480,
  164. .hw_value = ATH5K_RATE_CODE_48M,
  165. .flags = 0 },
  166. { .bitrate = 540,
  167. .hw_value = ATH5K_RATE_CODE_54M,
  168. .flags = 0 },
  169. /* XR missing */
  170. };
  171. static inline void ath5k_txbuf_free_skb(struct ath5k_softc *sc,
  172. struct ath5k_buf *bf)
  173. {
  174. BUG_ON(!bf);
  175. if (!bf->skb)
  176. return;
  177. dma_unmap_single(sc->dev, bf->skbaddr, bf->skb->len,
  178. DMA_TO_DEVICE);
  179. dev_kfree_skb_any(bf->skb);
  180. bf->skb = NULL;
  181. bf->skbaddr = 0;
  182. bf->desc->ds_data = 0;
  183. }
  184. static inline void ath5k_rxbuf_free_skb(struct ath5k_softc *sc,
  185. struct ath5k_buf *bf)
  186. {
  187. struct ath5k_hw *ah = sc->ah;
  188. struct ath_common *common = ath5k_hw_common(ah);
  189. BUG_ON(!bf);
  190. if (!bf->skb)
  191. return;
  192. dma_unmap_single(sc->dev, bf->skbaddr, common->rx_bufsize,
  193. DMA_FROM_DEVICE);
  194. dev_kfree_skb_any(bf->skb);
  195. bf->skb = NULL;
  196. bf->skbaddr = 0;
  197. bf->desc->ds_data = 0;
  198. }
  199. static inline u64 ath5k_extend_tsf(struct ath5k_hw *ah, u32 rstamp)
  200. {
  201. u64 tsf = ath5k_hw_get_tsf64(ah);
  202. if ((tsf & 0x7fff) < rstamp)
  203. tsf -= 0x8000;
  204. return (tsf & ~0x7fff) | rstamp;
  205. }
  206. const char *
  207. ath5k_chip_name(enum ath5k_srev_type type, u_int16_t val)
  208. {
  209. const char *name = "xxxxx";
  210. unsigned int i;
  211. for (i = 0; i < ARRAY_SIZE(srev_names); i++) {
  212. if (srev_names[i].sr_type != type)
  213. continue;
  214. if ((val & 0xf0) == srev_names[i].sr_val)
  215. name = srev_names[i].sr_name;
  216. if ((val & 0xff) == srev_names[i].sr_val) {
  217. name = srev_names[i].sr_name;
  218. break;
  219. }
  220. }
  221. return name;
  222. }
  223. static unsigned int ath5k_ioread32(void *hw_priv, u32 reg_offset)
  224. {
  225. struct ath5k_hw *ah = (struct ath5k_hw *) hw_priv;
  226. return ath5k_hw_reg_read(ah, reg_offset);
  227. }
  228. static void ath5k_iowrite32(void *hw_priv, u32 val, u32 reg_offset)
  229. {
  230. struct ath5k_hw *ah = (struct ath5k_hw *) hw_priv;
  231. ath5k_hw_reg_write(ah, val, reg_offset);
  232. }
  233. static const struct ath_ops ath5k_common_ops = {
  234. .read = ath5k_ioread32,
  235. .write = ath5k_iowrite32,
  236. };
  237. /***********************\
  238. * Driver Initialization *
  239. \***********************/
  240. static int ath5k_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request)
  241. {
  242. struct ieee80211_hw *hw = wiphy_to_ieee80211_hw(wiphy);
  243. struct ath5k_softc *sc = hw->priv;
  244. struct ath_regulatory *regulatory = ath5k_hw_regulatory(sc->ah);
  245. return ath_reg_notifier_apply(wiphy, request, regulatory);
  246. }
  247. /********************\
  248. * Channel/mode setup *
  249. \********************/
  250. /*
  251. * Convert IEEE channel number to MHz frequency.
  252. */
  253. static inline short
  254. ath5k_ieee2mhz(short chan)
  255. {
  256. if (chan <= 14 || chan >= 27)
  257. return ieee80211chan2mhz(chan);
  258. else
  259. return 2212 + chan * 20;
  260. }
  261. /*
  262. * Returns true for the channel numbers used without all_channels modparam.
  263. */
  264. static bool ath5k_is_standard_channel(short chan)
  265. {
  266. return ((chan <= 14) ||
  267. /* UNII 1,2 */
  268. ((chan & 3) == 0 && chan >= 36 && chan <= 64) ||
  269. /* midband */
  270. ((chan & 3) == 0 && chan >= 100 && chan <= 140) ||
  271. /* UNII-3 */
  272. ((chan & 3) == 1 && chan >= 149 && chan <= 165));
  273. }
  274. static unsigned int
  275. ath5k_copy_channels(struct ath5k_hw *ah,
  276. struct ieee80211_channel *channels,
  277. unsigned int mode,
  278. unsigned int max)
  279. {
  280. unsigned int i, count, size, chfreq, freq, ch;
  281. if (!test_bit(mode, ah->ah_modes))
  282. return 0;
  283. switch (mode) {
  284. case AR5K_MODE_11A:
  285. /* 1..220, but 2GHz frequencies are filtered by check_channel */
  286. size = 220 ;
  287. chfreq = CHANNEL_5GHZ;
  288. break;
  289. case AR5K_MODE_11B:
  290. case AR5K_MODE_11G:
  291. size = 26;
  292. chfreq = CHANNEL_2GHZ;
  293. break;
  294. default:
  295. ATH5K_WARN(ah->ah_sc, "bad mode, not copying channels\n");
  296. return 0;
  297. }
  298. for (i = 0, count = 0; i < size && max > 0; i++) {
  299. ch = i + 1 ;
  300. freq = ath5k_ieee2mhz(ch);
  301. /* Check if channel is supported by the chipset */
  302. if (!ath5k_channel_ok(ah, freq, chfreq))
  303. continue;
  304. if (!modparam_all_channels && !ath5k_is_standard_channel(ch))
  305. continue;
  306. /* Write channel info and increment counter */
  307. channels[count].center_freq = freq;
  308. channels[count].band = (chfreq == CHANNEL_2GHZ) ?
  309. IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
  310. switch (mode) {
  311. case AR5K_MODE_11A:
  312. case AR5K_MODE_11G:
  313. channels[count].hw_value = chfreq | CHANNEL_OFDM;
  314. break;
  315. case AR5K_MODE_11B:
  316. channels[count].hw_value = CHANNEL_B;
  317. }
  318. count++;
  319. max--;
  320. }
  321. return count;
  322. }
  323. static void
  324. ath5k_setup_rate_idx(struct ath5k_softc *sc, struct ieee80211_supported_band *b)
  325. {
  326. u8 i;
  327. for (i = 0; i < AR5K_MAX_RATES; i++)
  328. sc->rate_idx[b->band][i] = -1;
  329. for (i = 0; i < b->n_bitrates; i++) {
  330. sc->rate_idx[b->band][b->bitrates[i].hw_value] = i;
  331. if (b->bitrates[i].hw_value_short)
  332. sc->rate_idx[b->band][b->bitrates[i].hw_value_short] = i;
  333. }
  334. }
  335. static int
  336. ath5k_setup_bands(struct ieee80211_hw *hw)
  337. {
  338. struct ath5k_softc *sc = hw->priv;
  339. struct ath5k_hw *ah = sc->ah;
  340. struct ieee80211_supported_band *sband;
  341. int max_c, count_c = 0;
  342. int i;
  343. BUILD_BUG_ON(ARRAY_SIZE(sc->sbands) < IEEE80211_NUM_BANDS);
  344. max_c = ARRAY_SIZE(sc->channels);
  345. /* 2GHz band */
  346. sband = &sc->sbands[IEEE80211_BAND_2GHZ];
  347. sband->band = IEEE80211_BAND_2GHZ;
  348. sband->bitrates = &sc->rates[IEEE80211_BAND_2GHZ][0];
  349. if (test_bit(AR5K_MODE_11G, sc->ah->ah_capabilities.cap_mode)) {
  350. /* G mode */
  351. memcpy(sband->bitrates, &ath5k_rates[0],
  352. sizeof(struct ieee80211_rate) * 12);
  353. sband->n_bitrates = 12;
  354. sband->channels = sc->channels;
  355. sband->n_channels = ath5k_copy_channels(ah, sband->channels,
  356. AR5K_MODE_11G, max_c);
  357. hw->wiphy->bands[IEEE80211_BAND_2GHZ] = sband;
  358. count_c = sband->n_channels;
  359. max_c -= count_c;
  360. } else if (test_bit(AR5K_MODE_11B, sc->ah->ah_capabilities.cap_mode)) {
  361. /* B mode */
  362. memcpy(sband->bitrates, &ath5k_rates[0],
  363. sizeof(struct ieee80211_rate) * 4);
  364. sband->n_bitrates = 4;
  365. /* 5211 only supports B rates and uses 4bit rate codes
  366. * (e.g normally we have 0x1B for 1M, but on 5211 we have 0x0B)
  367. * fix them up here:
  368. */
  369. if (ah->ah_version == AR5K_AR5211) {
  370. for (i = 0; i < 4; i++) {
  371. sband->bitrates[i].hw_value =
  372. sband->bitrates[i].hw_value & 0xF;
  373. sband->bitrates[i].hw_value_short =
  374. sband->bitrates[i].hw_value_short & 0xF;
  375. }
  376. }
  377. sband->channels = sc->channels;
  378. sband->n_channels = ath5k_copy_channels(ah, sband->channels,
  379. AR5K_MODE_11B, max_c);
  380. hw->wiphy->bands[IEEE80211_BAND_2GHZ] = sband;
  381. count_c = sband->n_channels;
  382. max_c -= count_c;
  383. }
  384. ath5k_setup_rate_idx(sc, sband);
  385. /* 5GHz band, A mode */
  386. if (test_bit(AR5K_MODE_11A, sc->ah->ah_capabilities.cap_mode)) {
  387. sband = &sc->sbands[IEEE80211_BAND_5GHZ];
  388. sband->band = IEEE80211_BAND_5GHZ;
  389. sband->bitrates = &sc->rates[IEEE80211_BAND_5GHZ][0];
  390. memcpy(sband->bitrates, &ath5k_rates[4],
  391. sizeof(struct ieee80211_rate) * 8);
  392. sband->n_bitrates = 8;
  393. sband->channels = &sc->channels[count_c];
  394. sband->n_channels = ath5k_copy_channels(ah, sband->channels,
  395. AR5K_MODE_11A, max_c);
  396. hw->wiphy->bands[IEEE80211_BAND_5GHZ] = sband;
  397. }
  398. ath5k_setup_rate_idx(sc, sband);
  399. ath5k_debug_dump_bands(sc);
  400. return 0;
  401. }
  402. /*
  403. * Set/change channels. We always reset the chip.
  404. * To accomplish this we must first cleanup any pending DMA,
  405. * then restart stuff after a la ath5k_init.
  406. *
  407. * Called with sc->lock.
  408. */
  409. static int
  410. ath5k_chan_set(struct ath5k_softc *sc, struct ieee80211_channel *chan)
  411. {
  412. ATH5K_DBG(sc, ATH5K_DEBUG_RESET,
  413. "channel set, resetting (%u -> %u MHz)\n",
  414. sc->curchan->center_freq, chan->center_freq);
  415. /*
  416. * To switch channels clear any pending DMA operations;
  417. * wait long enough for the RX fifo to drain, reset the
  418. * hardware at the new frequency, and then re-enable
  419. * the relevant bits of the h/w.
  420. */
  421. return ath5k_reset(sc, chan, true);
  422. }
  423. static void
  424. ath5k_setcurmode(struct ath5k_softc *sc, unsigned int mode)
  425. {
  426. sc->curmode = mode;
  427. if (mode == AR5K_MODE_11A) {
  428. sc->curband = &sc->sbands[IEEE80211_BAND_5GHZ];
  429. } else {
  430. sc->curband = &sc->sbands[IEEE80211_BAND_2GHZ];
  431. }
  432. }
  433. struct ath_vif_iter_data {
  434. const u8 *hw_macaddr;
  435. u8 mask[ETH_ALEN];
  436. u8 active_mac[ETH_ALEN]; /* first active MAC */
  437. bool need_set_hw_addr;
  438. bool found_active;
  439. bool any_assoc;
  440. enum nl80211_iftype opmode;
  441. };
  442. static void ath_vif_iter(void *data, u8 *mac, struct ieee80211_vif *vif)
  443. {
  444. struct ath_vif_iter_data *iter_data = data;
  445. int i;
  446. struct ath5k_vif *avf = (void *)vif->drv_priv;
  447. if (iter_data->hw_macaddr)
  448. for (i = 0; i < ETH_ALEN; i++)
  449. iter_data->mask[i] &=
  450. ~(iter_data->hw_macaddr[i] ^ mac[i]);
  451. if (!iter_data->found_active) {
  452. iter_data->found_active = true;
  453. memcpy(iter_data->active_mac, mac, ETH_ALEN);
  454. }
  455. if (iter_data->need_set_hw_addr && iter_data->hw_macaddr)
  456. if (compare_ether_addr(iter_data->hw_macaddr, mac) == 0)
  457. iter_data->need_set_hw_addr = false;
  458. if (!iter_data->any_assoc) {
  459. if (avf->assoc)
  460. iter_data->any_assoc = true;
  461. }
  462. /* Calculate combined mode - when APs are active, operate in AP mode.
  463. * Otherwise use the mode of the new interface. This can currently
  464. * only deal with combinations of APs and STAs. Only one ad-hoc
  465. * interfaces is allowed.
  466. */
  467. if (avf->opmode == NL80211_IFTYPE_AP)
  468. iter_data->opmode = NL80211_IFTYPE_AP;
  469. else
  470. if (iter_data->opmode == NL80211_IFTYPE_UNSPECIFIED)
  471. iter_data->opmode = avf->opmode;
  472. }
  473. static void ath5k_update_bssid_mask_and_opmode(struct ath5k_softc *sc,
  474. struct ieee80211_vif *vif)
  475. {
  476. struct ath_common *common = ath5k_hw_common(sc->ah);
  477. struct ath_vif_iter_data iter_data;
  478. /*
  479. * Use the hardware MAC address as reference, the hardware uses it
  480. * together with the BSSID mask when matching addresses.
  481. */
  482. iter_data.hw_macaddr = common->macaddr;
  483. memset(&iter_data.mask, 0xff, ETH_ALEN);
  484. iter_data.found_active = false;
  485. iter_data.need_set_hw_addr = true;
  486. iter_data.opmode = NL80211_IFTYPE_UNSPECIFIED;
  487. if (vif)
  488. ath_vif_iter(&iter_data, vif->addr, vif);
  489. /* Get list of all active MAC addresses */
  490. ieee80211_iterate_active_interfaces_atomic(sc->hw, ath_vif_iter,
  491. &iter_data);
  492. memcpy(sc->bssidmask, iter_data.mask, ETH_ALEN);
  493. sc->opmode = iter_data.opmode;
  494. if (sc->opmode == NL80211_IFTYPE_UNSPECIFIED)
  495. /* Nothing active, default to station mode */
  496. sc->opmode = NL80211_IFTYPE_STATION;
  497. ath5k_hw_set_opmode(sc->ah, sc->opmode);
  498. ATH5K_DBG(sc, ATH5K_DEBUG_MODE, "mode setup opmode %d (%s)\n",
  499. sc->opmode, ath_opmode_to_string(sc->opmode));
  500. if (iter_data.need_set_hw_addr && iter_data.found_active)
  501. ath5k_hw_set_lladdr(sc->ah, iter_data.active_mac);
  502. if (ath5k_hw_hasbssidmask(sc->ah))
  503. ath5k_hw_set_bssid_mask(sc->ah, sc->bssidmask);
  504. }
  505. static void
  506. ath5k_mode_setup(struct ath5k_softc *sc, struct ieee80211_vif *vif)
  507. {
  508. struct ath5k_hw *ah = sc->ah;
  509. u32 rfilt;
  510. /* configure rx filter */
  511. rfilt = sc->filter_flags;
  512. ath5k_hw_set_rx_filter(ah, rfilt);
  513. ATH5K_DBG(sc, ATH5K_DEBUG_MODE, "RX filter 0x%x\n", rfilt);
  514. ath5k_update_bssid_mask_and_opmode(sc, vif);
  515. }
  516. static inline int
  517. ath5k_hw_to_driver_rix(struct ath5k_softc *sc, int hw_rix)
  518. {
  519. int rix;
  520. /* return base rate on errors */
  521. if (WARN(hw_rix < 0 || hw_rix >= AR5K_MAX_RATES,
  522. "hw_rix out of bounds: %x\n", hw_rix))
  523. return 0;
  524. rix = sc->rate_idx[sc->curband->band][hw_rix];
  525. if (WARN(rix < 0, "invalid hw_rix: %x\n", hw_rix))
  526. rix = 0;
  527. return rix;
  528. }
  529. /***************\
  530. * Buffers setup *
  531. \***************/
  532. static
  533. struct sk_buff *ath5k_rx_skb_alloc(struct ath5k_softc *sc, dma_addr_t *skb_addr)
  534. {
  535. struct ath_common *common = ath5k_hw_common(sc->ah);
  536. struct sk_buff *skb;
  537. /*
  538. * Allocate buffer with headroom_needed space for the
  539. * fake physical layer header at the start.
  540. */
  541. skb = ath_rxbuf_alloc(common,
  542. common->rx_bufsize,
  543. GFP_ATOMIC);
  544. if (!skb) {
  545. ATH5K_ERR(sc, "can't alloc skbuff of size %u\n",
  546. common->rx_bufsize);
  547. return NULL;
  548. }
  549. *skb_addr = dma_map_single(sc->dev,
  550. skb->data, common->rx_bufsize,
  551. DMA_FROM_DEVICE);
  552. if (unlikely(dma_mapping_error(sc->dev, *skb_addr))) {
  553. ATH5K_ERR(sc, "%s: DMA mapping failed\n", __func__);
  554. dev_kfree_skb(skb);
  555. return NULL;
  556. }
  557. return skb;
  558. }
  559. static int
  560. ath5k_rxbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf)
  561. {
  562. struct ath5k_hw *ah = sc->ah;
  563. struct sk_buff *skb = bf->skb;
  564. struct ath5k_desc *ds;
  565. int ret;
  566. if (!skb) {
  567. skb = ath5k_rx_skb_alloc(sc, &bf->skbaddr);
  568. if (!skb)
  569. return -ENOMEM;
  570. bf->skb = skb;
  571. }
  572. /*
  573. * Setup descriptors. For receive we always terminate
  574. * the descriptor list with a self-linked entry so we'll
  575. * not get overrun under high load (as can happen with a
  576. * 5212 when ANI processing enables PHY error frames).
  577. *
  578. * To ensure the last descriptor is self-linked we create
  579. * each descriptor as self-linked and add it to the end. As
  580. * each additional descriptor is added the previous self-linked
  581. * entry is "fixed" naturally. This should be safe even
  582. * if DMA is happening. When processing RX interrupts we
  583. * never remove/process the last, self-linked, entry on the
  584. * descriptor list. This ensures the hardware always has
  585. * someplace to write a new frame.
  586. */
  587. ds = bf->desc;
  588. ds->ds_link = bf->daddr; /* link to self */
  589. ds->ds_data = bf->skbaddr;
  590. ret = ath5k_hw_setup_rx_desc(ah, ds, ah->common.rx_bufsize, 0);
  591. if (ret) {
  592. ATH5K_ERR(sc, "%s: could not setup RX desc\n", __func__);
  593. return ret;
  594. }
  595. if (sc->rxlink != NULL)
  596. *sc->rxlink = bf->daddr;
  597. sc->rxlink = &ds->ds_link;
  598. return 0;
  599. }
  600. static enum ath5k_pkt_type get_hw_packet_type(struct sk_buff *skb)
  601. {
  602. struct ieee80211_hdr *hdr;
  603. enum ath5k_pkt_type htype;
  604. __le16 fc;
  605. hdr = (struct ieee80211_hdr *)skb->data;
  606. fc = hdr->frame_control;
  607. if (ieee80211_is_beacon(fc))
  608. htype = AR5K_PKT_TYPE_BEACON;
  609. else if (ieee80211_is_probe_resp(fc))
  610. htype = AR5K_PKT_TYPE_PROBE_RESP;
  611. else if (ieee80211_is_atim(fc))
  612. htype = AR5K_PKT_TYPE_ATIM;
  613. else if (ieee80211_is_pspoll(fc))
  614. htype = AR5K_PKT_TYPE_PSPOLL;
  615. else
  616. htype = AR5K_PKT_TYPE_NORMAL;
  617. return htype;
  618. }
  619. static int
  620. ath5k_txbuf_setup(struct ath5k_softc *sc, struct ath5k_buf *bf,
  621. struct ath5k_txq *txq, int padsize)
  622. {
  623. struct ath5k_hw *ah = sc->ah;
  624. struct ath5k_desc *ds = bf->desc;
  625. struct sk_buff *skb = bf->skb;
  626. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  627. unsigned int pktlen, flags, keyidx = AR5K_TXKEYIX_INVALID;
  628. struct ieee80211_rate *rate;
  629. unsigned int mrr_rate[3], mrr_tries[3];
  630. int i, ret;
  631. u16 hw_rate;
  632. u16 cts_rate = 0;
  633. u16 duration = 0;
  634. u8 rc_flags;
  635. flags = AR5K_TXDESC_INTREQ | AR5K_TXDESC_CLRDMASK;
  636. /* XXX endianness */
  637. bf->skbaddr = dma_map_single(sc->dev, skb->data, skb->len,
  638. DMA_TO_DEVICE);
  639. rate = ieee80211_get_tx_rate(sc->hw, info);
  640. if (!rate) {
  641. ret = -EINVAL;
  642. goto err_unmap;
  643. }
  644. if (info->flags & IEEE80211_TX_CTL_NO_ACK)
  645. flags |= AR5K_TXDESC_NOACK;
  646. rc_flags = info->control.rates[0].flags;
  647. hw_rate = (rc_flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE) ?
  648. rate->hw_value_short : rate->hw_value;
  649. pktlen = skb->len;
  650. /* FIXME: If we are in g mode and rate is a CCK rate
  651. * subtract ah->ah_txpower.txp_cck_ofdm_pwr_delta
  652. * from tx power (value is in dB units already) */
  653. if (info->control.hw_key) {
  654. keyidx = info->control.hw_key->hw_key_idx;
  655. pktlen += info->control.hw_key->icv_len;
  656. }
  657. if (rc_flags & IEEE80211_TX_RC_USE_RTS_CTS) {
  658. flags |= AR5K_TXDESC_RTSENA;
  659. cts_rate = ieee80211_get_rts_cts_rate(sc->hw, info)->hw_value;
  660. duration = le16_to_cpu(ieee80211_rts_duration(sc->hw,
  661. info->control.vif, pktlen, info));
  662. }
  663. if (rc_flags & IEEE80211_TX_RC_USE_CTS_PROTECT) {
  664. flags |= AR5K_TXDESC_CTSENA;
  665. cts_rate = ieee80211_get_rts_cts_rate(sc->hw, info)->hw_value;
  666. duration = le16_to_cpu(ieee80211_ctstoself_duration(sc->hw,
  667. info->control.vif, pktlen, info));
  668. }
  669. ret = ah->ah_setup_tx_desc(ah, ds, pktlen,
  670. ieee80211_get_hdrlen_from_skb(skb), padsize,
  671. get_hw_packet_type(skb),
  672. (sc->power_level * 2),
  673. hw_rate,
  674. info->control.rates[0].count, keyidx, ah->ah_tx_ant, flags,
  675. cts_rate, duration);
  676. if (ret)
  677. goto err_unmap;
  678. memset(mrr_rate, 0, sizeof(mrr_rate));
  679. memset(mrr_tries, 0, sizeof(mrr_tries));
  680. for (i = 0; i < 3; i++) {
  681. rate = ieee80211_get_alt_retry_rate(sc->hw, info, i);
  682. if (!rate)
  683. break;
  684. mrr_rate[i] = rate->hw_value;
  685. mrr_tries[i] = info->control.rates[i + 1].count;
  686. }
  687. ath5k_hw_setup_mrr_tx_desc(ah, ds,
  688. mrr_rate[0], mrr_tries[0],
  689. mrr_rate[1], mrr_tries[1],
  690. mrr_rate[2], mrr_tries[2]);
  691. ds->ds_link = 0;
  692. ds->ds_data = bf->skbaddr;
  693. spin_lock_bh(&txq->lock);
  694. list_add_tail(&bf->list, &txq->q);
  695. txq->txq_len++;
  696. if (txq->link == NULL) /* is this first packet? */
  697. ath5k_hw_set_txdp(ah, txq->qnum, bf->daddr);
  698. else /* no, so only link it */
  699. *txq->link = bf->daddr;
  700. txq->link = &ds->ds_link;
  701. ath5k_hw_start_tx_dma(ah, txq->qnum);
  702. mmiowb();
  703. spin_unlock_bh(&txq->lock);
  704. return 0;
  705. err_unmap:
  706. dma_unmap_single(sc->dev, bf->skbaddr, skb->len, DMA_TO_DEVICE);
  707. return ret;
  708. }
  709. /*******************\
  710. * Descriptors setup *
  711. \*******************/
  712. static int
  713. ath5k_desc_alloc(struct ath5k_softc *sc)
  714. {
  715. struct ath5k_desc *ds;
  716. struct ath5k_buf *bf;
  717. dma_addr_t da;
  718. unsigned int i;
  719. int ret;
  720. /* allocate descriptors */
  721. sc->desc_len = sizeof(struct ath5k_desc) *
  722. (ATH_TXBUF + ATH_RXBUF + ATH_BCBUF + 1);
  723. sc->desc = dma_alloc_coherent(sc->dev, sc->desc_len,
  724. &sc->desc_daddr, GFP_KERNEL);
  725. if (sc->desc == NULL) {
  726. ATH5K_ERR(sc, "can't allocate descriptors\n");
  727. ret = -ENOMEM;
  728. goto err;
  729. }
  730. ds = sc->desc;
  731. da = sc->desc_daddr;
  732. ATH5K_DBG(sc, ATH5K_DEBUG_ANY, "DMA map: %p (%zu) -> %llx\n",
  733. ds, sc->desc_len, (unsigned long long)sc->desc_daddr);
  734. bf = kcalloc(1 + ATH_TXBUF + ATH_RXBUF + ATH_BCBUF,
  735. sizeof(struct ath5k_buf), GFP_KERNEL);
  736. if (bf == NULL) {
  737. ATH5K_ERR(sc, "can't allocate bufptr\n");
  738. ret = -ENOMEM;
  739. goto err_free;
  740. }
  741. sc->bufptr = bf;
  742. INIT_LIST_HEAD(&sc->rxbuf);
  743. for (i = 0; i < ATH_RXBUF; i++, bf++, ds++, da += sizeof(*ds)) {
  744. bf->desc = ds;
  745. bf->daddr = da;
  746. list_add_tail(&bf->list, &sc->rxbuf);
  747. }
  748. INIT_LIST_HEAD(&sc->txbuf);
  749. sc->txbuf_len = ATH_TXBUF;
  750. for (i = 0; i < ATH_TXBUF; i++, bf++, ds++,
  751. da += sizeof(*ds)) {
  752. bf->desc = ds;
  753. bf->daddr = da;
  754. list_add_tail(&bf->list, &sc->txbuf);
  755. }
  756. /* beacon buffers */
  757. INIT_LIST_HEAD(&sc->bcbuf);
  758. for (i = 0; i < ATH_BCBUF; i++, bf++, ds++, da += sizeof(*ds)) {
  759. bf->desc = ds;
  760. bf->daddr = da;
  761. list_add_tail(&bf->list, &sc->bcbuf);
  762. }
  763. return 0;
  764. err_free:
  765. dma_free_coherent(sc->dev, sc->desc_len, sc->desc, sc->desc_daddr);
  766. err:
  767. sc->desc = NULL;
  768. return ret;
  769. }
  770. static void
  771. ath5k_desc_free(struct ath5k_softc *sc)
  772. {
  773. struct ath5k_buf *bf;
  774. list_for_each_entry(bf, &sc->txbuf, list)
  775. ath5k_txbuf_free_skb(sc, bf);
  776. list_for_each_entry(bf, &sc->rxbuf, list)
  777. ath5k_rxbuf_free_skb(sc, bf);
  778. list_for_each_entry(bf, &sc->bcbuf, list)
  779. ath5k_txbuf_free_skb(sc, bf);
  780. /* Free memory associated with all descriptors */
  781. dma_free_coherent(sc->dev, sc->desc_len, sc->desc, sc->desc_daddr);
  782. sc->desc = NULL;
  783. sc->desc_daddr = 0;
  784. kfree(sc->bufptr);
  785. sc->bufptr = NULL;
  786. }
  787. /**************\
  788. * Queues setup *
  789. \**************/
  790. static struct ath5k_txq *
  791. ath5k_txq_setup(struct ath5k_softc *sc,
  792. int qtype, int subtype)
  793. {
  794. struct ath5k_hw *ah = sc->ah;
  795. struct ath5k_txq *txq;
  796. struct ath5k_txq_info qi = {
  797. .tqi_subtype = subtype,
  798. /* XXX: default values not correct for B and XR channels,
  799. * but who cares? */
  800. .tqi_aifs = AR5K_TUNE_AIFS,
  801. .tqi_cw_min = AR5K_TUNE_CWMIN,
  802. .tqi_cw_max = AR5K_TUNE_CWMAX
  803. };
  804. int qnum;
  805. /*
  806. * Enable interrupts only for EOL and DESC conditions.
  807. * We mark tx descriptors to receive a DESC interrupt
  808. * when a tx queue gets deep; otherwise we wait for the
  809. * EOL to reap descriptors. Note that this is done to
  810. * reduce interrupt load and this only defers reaping
  811. * descriptors, never transmitting frames. Aside from
  812. * reducing interrupts this also permits more concurrency.
  813. * The only potential downside is if the tx queue backs
  814. * up in which case the top half of the kernel may backup
  815. * due to a lack of tx descriptors.
  816. */
  817. qi.tqi_flags = AR5K_TXQ_FLAG_TXEOLINT_ENABLE |
  818. AR5K_TXQ_FLAG_TXDESCINT_ENABLE;
  819. qnum = ath5k_hw_setup_tx_queue(ah, qtype, &qi);
  820. if (qnum < 0) {
  821. /*
  822. * NB: don't print a message, this happens
  823. * normally on parts with too few tx queues
  824. */
  825. return ERR_PTR(qnum);
  826. }
  827. if (qnum >= ARRAY_SIZE(sc->txqs)) {
  828. ATH5K_ERR(sc, "hw qnum %u out of range, max %tu!\n",
  829. qnum, ARRAY_SIZE(sc->txqs));
  830. ath5k_hw_release_tx_queue(ah, qnum);
  831. return ERR_PTR(-EINVAL);
  832. }
  833. txq = &sc->txqs[qnum];
  834. if (!txq->setup) {
  835. txq->qnum = qnum;
  836. txq->link = NULL;
  837. INIT_LIST_HEAD(&txq->q);
  838. spin_lock_init(&txq->lock);
  839. txq->setup = true;
  840. txq->txq_len = 0;
  841. txq->txq_poll_mark = false;
  842. txq->txq_stuck = 0;
  843. }
  844. return &sc->txqs[qnum];
  845. }
  846. static int
  847. ath5k_beaconq_setup(struct ath5k_hw *ah)
  848. {
  849. struct ath5k_txq_info qi = {
  850. /* XXX: default values not correct for B and XR channels,
  851. * but who cares? */
  852. .tqi_aifs = AR5K_TUNE_AIFS,
  853. .tqi_cw_min = AR5K_TUNE_CWMIN,
  854. .tqi_cw_max = AR5K_TUNE_CWMAX,
  855. /* NB: for dynamic turbo, don't enable any other interrupts */
  856. .tqi_flags = AR5K_TXQ_FLAG_TXDESCINT_ENABLE
  857. };
  858. return ath5k_hw_setup_tx_queue(ah, AR5K_TX_QUEUE_BEACON, &qi);
  859. }
  860. static int
  861. ath5k_beaconq_config(struct ath5k_softc *sc)
  862. {
  863. struct ath5k_hw *ah = sc->ah;
  864. struct ath5k_txq_info qi;
  865. int ret;
  866. ret = ath5k_hw_get_tx_queueprops(ah, sc->bhalq, &qi);
  867. if (ret)
  868. goto err;
  869. if (sc->opmode == NL80211_IFTYPE_AP ||
  870. sc->opmode == NL80211_IFTYPE_MESH_POINT) {
  871. /*
  872. * Always burst out beacon and CAB traffic
  873. * (aifs = cwmin = cwmax = 0)
  874. */
  875. qi.tqi_aifs = 0;
  876. qi.tqi_cw_min = 0;
  877. qi.tqi_cw_max = 0;
  878. } else if (sc->opmode == NL80211_IFTYPE_ADHOC) {
  879. /*
  880. * Adhoc mode; backoff between 0 and (2 * cw_min).
  881. */
  882. qi.tqi_aifs = 0;
  883. qi.tqi_cw_min = 0;
  884. qi.tqi_cw_max = 2 * AR5K_TUNE_CWMIN;
  885. }
  886. ATH5K_DBG(sc, ATH5K_DEBUG_BEACON,
  887. "beacon queueprops tqi_aifs:%d tqi_cw_min:%d tqi_cw_max:%d\n",
  888. qi.tqi_aifs, qi.tqi_cw_min, qi.tqi_cw_max);
  889. ret = ath5k_hw_set_tx_queueprops(ah, sc->bhalq, &qi);
  890. if (ret) {
  891. ATH5K_ERR(sc, "%s: unable to update parameters for beacon "
  892. "hardware queue!\n", __func__);
  893. goto err;
  894. }
  895. ret = ath5k_hw_reset_tx_queue(ah, sc->bhalq); /* push to h/w */
  896. if (ret)
  897. goto err;
  898. /* reconfigure cabq with ready time to 80% of beacon_interval */
  899. ret = ath5k_hw_get_tx_queueprops(ah, AR5K_TX_QUEUE_ID_CAB, &qi);
  900. if (ret)
  901. goto err;
  902. qi.tqi_ready_time = (sc->bintval * 80) / 100;
  903. ret = ath5k_hw_set_tx_queueprops(ah, AR5K_TX_QUEUE_ID_CAB, &qi);
  904. if (ret)
  905. goto err;
  906. ret = ath5k_hw_reset_tx_queue(ah, AR5K_TX_QUEUE_ID_CAB);
  907. err:
  908. return ret;
  909. }
  910. /**
  911. * ath5k_drain_tx_buffs - Empty tx buffers
  912. *
  913. * @sc The &struct ath5k_softc
  914. *
  915. * Empty tx buffers from all queues in preparation
  916. * of a reset or during shutdown.
  917. *
  918. * NB: this assumes output has been stopped and
  919. * we do not need to block ath5k_tx_tasklet
  920. */
  921. static void
  922. ath5k_drain_tx_buffs(struct ath5k_softc *sc)
  923. {
  924. struct ath5k_txq *txq;
  925. struct ath5k_buf *bf, *bf0;
  926. int i;
  927. for (i = 0; i < ARRAY_SIZE(sc->txqs); i++) {
  928. if (sc->txqs[i].setup) {
  929. txq = &sc->txqs[i];
  930. spin_lock_bh(&txq->lock);
  931. list_for_each_entry_safe(bf, bf0, &txq->q, list) {
  932. ath5k_debug_printtxbuf(sc, bf);
  933. ath5k_txbuf_free_skb(sc, bf);
  934. spin_lock_bh(&sc->txbuflock);
  935. list_move_tail(&bf->list, &sc->txbuf);
  936. sc->txbuf_len++;
  937. txq->txq_len--;
  938. spin_unlock_bh(&sc->txbuflock);
  939. }
  940. txq->link = NULL;
  941. txq->txq_poll_mark = false;
  942. spin_unlock_bh(&txq->lock);
  943. }
  944. }
  945. }
  946. static void
  947. ath5k_txq_release(struct ath5k_softc *sc)
  948. {
  949. struct ath5k_txq *txq = sc->txqs;
  950. unsigned int i;
  951. for (i = 0; i < ARRAY_SIZE(sc->txqs); i++, txq++)
  952. if (txq->setup) {
  953. ath5k_hw_release_tx_queue(sc->ah, txq->qnum);
  954. txq->setup = false;
  955. }
  956. }
  957. /*************\
  958. * RX Handling *
  959. \*************/
  960. /*
  961. * Enable the receive h/w following a reset.
  962. */
  963. static int
  964. ath5k_rx_start(struct ath5k_softc *sc)
  965. {
  966. struct ath5k_hw *ah = sc->ah;
  967. struct ath_common *common = ath5k_hw_common(ah);
  968. struct ath5k_buf *bf;
  969. int ret;
  970. common->rx_bufsize = roundup(IEEE80211_MAX_FRAME_LEN, common->cachelsz);
  971. ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "cachelsz %u rx_bufsize %u\n",
  972. common->cachelsz, common->rx_bufsize);
  973. spin_lock_bh(&sc->rxbuflock);
  974. sc->rxlink = NULL;
  975. list_for_each_entry(bf, &sc->rxbuf, list) {
  976. ret = ath5k_rxbuf_setup(sc, bf);
  977. if (ret != 0) {
  978. spin_unlock_bh(&sc->rxbuflock);
  979. goto err;
  980. }
  981. }
  982. bf = list_first_entry(&sc->rxbuf, struct ath5k_buf, list);
  983. ath5k_hw_set_rxdp(ah, bf->daddr);
  984. spin_unlock_bh(&sc->rxbuflock);
  985. ath5k_hw_start_rx_dma(ah); /* enable recv descriptors */
  986. ath5k_mode_setup(sc, NULL); /* set filters, etc. */
  987. ath5k_hw_start_rx_pcu(ah); /* re-enable PCU/DMA engine */
  988. return 0;
  989. err:
  990. return ret;
  991. }
  992. /*
  993. * Disable the receive logic on PCU (DRU)
  994. * In preparation for a shutdown.
  995. *
  996. * Note: Doesn't stop rx DMA, ath5k_hw_dma_stop
  997. * does.
  998. */
  999. static void
  1000. ath5k_rx_stop(struct ath5k_softc *sc)
  1001. {
  1002. struct ath5k_hw *ah = sc->ah;
  1003. ath5k_hw_set_rx_filter(ah, 0); /* clear recv filter */
  1004. ath5k_hw_stop_rx_pcu(ah); /* disable PCU */
  1005. ath5k_debug_printrxbuffs(sc, ah);
  1006. }
  1007. static unsigned int
  1008. ath5k_rx_decrypted(struct ath5k_softc *sc, struct sk_buff *skb,
  1009. struct ath5k_rx_status *rs)
  1010. {
  1011. struct ath5k_hw *ah = sc->ah;
  1012. struct ath_common *common = ath5k_hw_common(ah);
  1013. struct ieee80211_hdr *hdr = (void *)skb->data;
  1014. unsigned int keyix, hlen;
  1015. if (!(rs->rs_status & AR5K_RXERR_DECRYPT) &&
  1016. rs->rs_keyix != AR5K_RXKEYIX_INVALID)
  1017. return RX_FLAG_DECRYPTED;
  1018. /* Apparently when a default key is used to decrypt the packet
  1019. the hw does not set the index used to decrypt. In such cases
  1020. get the index from the packet. */
  1021. hlen = ieee80211_hdrlen(hdr->frame_control);
  1022. if (ieee80211_has_protected(hdr->frame_control) &&
  1023. !(rs->rs_status & AR5K_RXERR_DECRYPT) &&
  1024. skb->len >= hlen + 4) {
  1025. keyix = skb->data[hlen + 3] >> 6;
  1026. if (test_bit(keyix, common->keymap))
  1027. return RX_FLAG_DECRYPTED;
  1028. }
  1029. return 0;
  1030. }
  1031. static void
  1032. ath5k_check_ibss_tsf(struct ath5k_softc *sc, struct sk_buff *skb,
  1033. struct ieee80211_rx_status *rxs)
  1034. {
  1035. struct ath_common *common = ath5k_hw_common(sc->ah);
  1036. u64 tsf, bc_tstamp;
  1037. u32 hw_tu;
  1038. struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data;
  1039. if (ieee80211_is_beacon(mgmt->frame_control) &&
  1040. le16_to_cpu(mgmt->u.beacon.capab_info) & WLAN_CAPABILITY_IBSS &&
  1041. memcmp(mgmt->bssid, common->curbssid, ETH_ALEN) == 0) {
  1042. /*
  1043. * Received an IBSS beacon with the same BSSID. Hardware *must*
  1044. * have updated the local TSF. We have to work around various
  1045. * hardware bugs, though...
  1046. */
  1047. tsf = ath5k_hw_get_tsf64(sc->ah);
  1048. bc_tstamp = le64_to_cpu(mgmt->u.beacon.timestamp);
  1049. hw_tu = TSF_TO_TU(tsf);
  1050. ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
  1051. "beacon %llx mactime %llx (diff %lld) tsf now %llx\n",
  1052. (unsigned long long)bc_tstamp,
  1053. (unsigned long long)rxs->mactime,
  1054. (unsigned long long)(rxs->mactime - bc_tstamp),
  1055. (unsigned long long)tsf);
  1056. /*
  1057. * Sometimes the HW will give us a wrong tstamp in the rx
  1058. * status, causing the timestamp extension to go wrong.
  1059. * (This seems to happen especially with beacon frames bigger
  1060. * than 78 byte (incl. FCS))
  1061. * But we know that the receive timestamp must be later than the
  1062. * timestamp of the beacon since HW must have synced to that.
  1063. *
  1064. * NOTE: here we assume mactime to be after the frame was
  1065. * received, not like mac80211 which defines it at the start.
  1066. */
  1067. if (bc_tstamp > rxs->mactime) {
  1068. ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
  1069. "fixing mactime from %llx to %llx\n",
  1070. (unsigned long long)rxs->mactime,
  1071. (unsigned long long)tsf);
  1072. rxs->mactime = tsf;
  1073. }
  1074. /*
  1075. * Local TSF might have moved higher than our beacon timers,
  1076. * in that case we have to update them to continue sending
  1077. * beacons. This also takes care of synchronizing beacon sending
  1078. * times with other stations.
  1079. */
  1080. if (hw_tu >= sc->nexttbtt)
  1081. ath5k_beacon_update_timers(sc, bc_tstamp);
  1082. /* Check if the beacon timers are still correct, because a TSF
  1083. * update might have created a window between them - for a
  1084. * longer description see the comment of this function: */
  1085. if (!ath5k_hw_check_beacon_timers(sc->ah, sc->bintval)) {
  1086. ath5k_beacon_update_timers(sc, bc_tstamp);
  1087. ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
  1088. "fixed beacon timers after beacon receive\n");
  1089. }
  1090. }
  1091. }
  1092. static void
  1093. ath5k_update_beacon_rssi(struct ath5k_softc *sc, struct sk_buff *skb, int rssi)
  1094. {
  1095. struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *)skb->data;
  1096. struct ath5k_hw *ah = sc->ah;
  1097. struct ath_common *common = ath5k_hw_common(ah);
  1098. /* only beacons from our BSSID */
  1099. if (!ieee80211_is_beacon(mgmt->frame_control) ||
  1100. memcmp(mgmt->bssid, common->curbssid, ETH_ALEN) != 0)
  1101. return;
  1102. ewma_add(&ah->ah_beacon_rssi_avg, rssi);
  1103. /* in IBSS mode we should keep RSSI statistics per neighbour */
  1104. /* le16_to_cpu(mgmt->u.beacon.capab_info) & WLAN_CAPABILITY_IBSS */
  1105. }
  1106. /*
  1107. * Compute padding position. skb must contain an IEEE 802.11 frame
  1108. */
  1109. static int ath5k_common_padpos(struct sk_buff *skb)
  1110. {
  1111. struct ieee80211_hdr * hdr = (struct ieee80211_hdr *)skb->data;
  1112. __le16 frame_control = hdr->frame_control;
  1113. int padpos = 24;
  1114. if (ieee80211_has_a4(frame_control)) {
  1115. padpos += ETH_ALEN;
  1116. }
  1117. if (ieee80211_is_data_qos(frame_control)) {
  1118. padpos += IEEE80211_QOS_CTL_LEN;
  1119. }
  1120. return padpos;
  1121. }
  1122. /*
  1123. * This function expects an 802.11 frame and returns the number of
  1124. * bytes added, or -1 if we don't have enough header room.
  1125. */
  1126. static int ath5k_add_padding(struct sk_buff *skb)
  1127. {
  1128. int padpos = ath5k_common_padpos(skb);
  1129. int padsize = padpos & 3;
  1130. if (padsize && skb->len>padpos) {
  1131. if (skb_headroom(skb) < padsize)
  1132. return -1;
  1133. skb_push(skb, padsize);
  1134. memmove(skb->data, skb->data+padsize, padpos);
  1135. return padsize;
  1136. }
  1137. return 0;
  1138. }
  1139. /*
  1140. * The MAC header is padded to have 32-bit boundary if the
  1141. * packet payload is non-zero. The general calculation for
  1142. * padsize would take into account odd header lengths:
  1143. * padsize = 4 - (hdrlen & 3); however, since only
  1144. * even-length headers are used, padding can only be 0 or 2
  1145. * bytes and we can optimize this a bit. We must not try to
  1146. * remove padding from short control frames that do not have a
  1147. * payload.
  1148. *
  1149. * This function expects an 802.11 frame and returns the number of
  1150. * bytes removed.
  1151. */
  1152. static int ath5k_remove_padding(struct sk_buff *skb)
  1153. {
  1154. int padpos = ath5k_common_padpos(skb);
  1155. int padsize = padpos & 3;
  1156. if (padsize && skb->len>=padpos+padsize) {
  1157. memmove(skb->data + padsize, skb->data, padpos);
  1158. skb_pull(skb, padsize);
  1159. return padsize;
  1160. }
  1161. return 0;
  1162. }
  1163. static void
  1164. ath5k_receive_frame(struct ath5k_softc *sc, struct sk_buff *skb,
  1165. struct ath5k_rx_status *rs)
  1166. {
  1167. struct ieee80211_rx_status *rxs;
  1168. ath5k_remove_padding(skb);
  1169. rxs = IEEE80211_SKB_RXCB(skb);
  1170. rxs->flag = 0;
  1171. if (unlikely(rs->rs_status & AR5K_RXERR_MIC))
  1172. rxs->flag |= RX_FLAG_MMIC_ERROR;
  1173. /*
  1174. * always extend the mac timestamp, since this information is
  1175. * also needed for proper IBSS merging.
  1176. *
  1177. * XXX: it might be too late to do it here, since rs_tstamp is
  1178. * 15bit only. that means TSF extension has to be done within
  1179. * 32768usec (about 32ms). it might be necessary to move this to
  1180. * the interrupt handler, like it is done in madwifi.
  1181. *
  1182. * Unfortunately we don't know when the hardware takes the rx
  1183. * timestamp (beginning of phy frame, data frame, end of rx?).
  1184. * The only thing we know is that it is hardware specific...
  1185. * On AR5213 it seems the rx timestamp is at the end of the
  1186. * frame, but i'm not sure.
  1187. *
  1188. * NOTE: mac80211 defines mactime at the beginning of the first
  1189. * data symbol. Since we don't have any time references it's
  1190. * impossible to comply to that. This affects IBSS merge only
  1191. * right now, so it's not too bad...
  1192. */
  1193. rxs->mactime = ath5k_extend_tsf(sc->ah, rs->rs_tstamp);
  1194. rxs->flag |= RX_FLAG_TSFT;
  1195. rxs->freq = sc->curchan->center_freq;
  1196. rxs->band = sc->curband->band;
  1197. rxs->signal = sc->ah->ah_noise_floor + rs->rs_rssi;
  1198. rxs->antenna = rs->rs_antenna;
  1199. if (rs->rs_antenna > 0 && rs->rs_antenna < 5)
  1200. sc->stats.antenna_rx[rs->rs_antenna]++;
  1201. else
  1202. sc->stats.antenna_rx[0]++; /* invalid */
  1203. rxs->rate_idx = ath5k_hw_to_driver_rix(sc, rs->rs_rate);
  1204. rxs->flag |= ath5k_rx_decrypted(sc, skb, rs);
  1205. if (rxs->rate_idx >= 0 && rs->rs_rate ==
  1206. sc->curband->bitrates[rxs->rate_idx].hw_value_short)
  1207. rxs->flag |= RX_FLAG_SHORTPRE;
  1208. ath5k_debug_dump_skb(sc, skb, "RX ", 0);
  1209. ath5k_update_beacon_rssi(sc, skb, rs->rs_rssi);
  1210. /* check beacons in IBSS mode */
  1211. if (sc->opmode == NL80211_IFTYPE_ADHOC)
  1212. ath5k_check_ibss_tsf(sc, skb, rxs);
  1213. ieee80211_rx(sc->hw, skb);
  1214. }
  1215. /** ath5k_frame_receive_ok() - Do we want to receive this frame or not?
  1216. *
  1217. * Check if we want to further process this frame or not. Also update
  1218. * statistics. Return true if we want this frame, false if not.
  1219. */
  1220. static bool
  1221. ath5k_receive_frame_ok(struct ath5k_softc *sc, struct ath5k_rx_status *rs)
  1222. {
  1223. sc->stats.rx_all_count++;
  1224. sc->stats.rx_bytes_count += rs->rs_datalen;
  1225. if (unlikely(rs->rs_status)) {
  1226. if (rs->rs_status & AR5K_RXERR_CRC)
  1227. sc->stats.rxerr_crc++;
  1228. if (rs->rs_status & AR5K_RXERR_FIFO)
  1229. sc->stats.rxerr_fifo++;
  1230. if (rs->rs_status & AR5K_RXERR_PHY) {
  1231. sc->stats.rxerr_phy++;
  1232. if (rs->rs_phyerr > 0 && rs->rs_phyerr < 32)
  1233. sc->stats.rxerr_phy_code[rs->rs_phyerr]++;
  1234. return false;
  1235. }
  1236. if (rs->rs_status & AR5K_RXERR_DECRYPT) {
  1237. /*
  1238. * Decrypt error. If the error occurred
  1239. * because there was no hardware key, then
  1240. * let the frame through so the upper layers
  1241. * can process it. This is necessary for 5210
  1242. * parts which have no way to setup a ``clear''
  1243. * key cache entry.
  1244. *
  1245. * XXX do key cache faulting
  1246. */
  1247. sc->stats.rxerr_decrypt++;
  1248. if (rs->rs_keyix == AR5K_RXKEYIX_INVALID &&
  1249. !(rs->rs_status & AR5K_RXERR_CRC))
  1250. return true;
  1251. }
  1252. if (rs->rs_status & AR5K_RXERR_MIC) {
  1253. sc->stats.rxerr_mic++;
  1254. return true;
  1255. }
  1256. /* reject any frames with non-crypto errors */
  1257. if (rs->rs_status & ~(AR5K_RXERR_DECRYPT))
  1258. return false;
  1259. }
  1260. if (unlikely(rs->rs_more)) {
  1261. sc->stats.rxerr_jumbo++;
  1262. return false;
  1263. }
  1264. return true;
  1265. }
  1266. static void
  1267. ath5k_tasklet_rx(unsigned long data)
  1268. {
  1269. struct ath5k_rx_status rs = {};
  1270. struct sk_buff *skb, *next_skb;
  1271. dma_addr_t next_skb_addr;
  1272. struct ath5k_softc *sc = (void *)data;
  1273. struct ath5k_hw *ah = sc->ah;
  1274. struct ath_common *common = ath5k_hw_common(ah);
  1275. struct ath5k_buf *bf;
  1276. struct ath5k_desc *ds;
  1277. int ret;
  1278. spin_lock(&sc->rxbuflock);
  1279. if (list_empty(&sc->rxbuf)) {
  1280. ATH5K_WARN(sc, "empty rx buf pool\n");
  1281. goto unlock;
  1282. }
  1283. do {
  1284. bf = list_first_entry(&sc->rxbuf, struct ath5k_buf, list);
  1285. BUG_ON(bf->skb == NULL);
  1286. skb = bf->skb;
  1287. ds = bf->desc;
  1288. /* bail if HW is still using self-linked descriptor */
  1289. if (ath5k_hw_get_rxdp(sc->ah) == bf->daddr)
  1290. break;
  1291. ret = sc->ah->ah_proc_rx_desc(sc->ah, ds, &rs);
  1292. if (unlikely(ret == -EINPROGRESS))
  1293. break;
  1294. else if (unlikely(ret)) {
  1295. ATH5K_ERR(sc, "error in processing rx descriptor\n");
  1296. sc->stats.rxerr_proc++;
  1297. break;
  1298. }
  1299. if (ath5k_receive_frame_ok(sc, &rs)) {
  1300. next_skb = ath5k_rx_skb_alloc(sc, &next_skb_addr);
  1301. /*
  1302. * If we can't replace bf->skb with a new skb under
  1303. * memory pressure, just skip this packet
  1304. */
  1305. if (!next_skb)
  1306. goto next;
  1307. dma_unmap_single(sc->dev, bf->skbaddr,
  1308. common->rx_bufsize,
  1309. DMA_FROM_DEVICE);
  1310. skb_put(skb, rs.rs_datalen);
  1311. ath5k_receive_frame(sc, skb, &rs);
  1312. bf->skb = next_skb;
  1313. bf->skbaddr = next_skb_addr;
  1314. }
  1315. next:
  1316. list_move_tail(&bf->list, &sc->rxbuf);
  1317. } while (ath5k_rxbuf_setup(sc, bf) == 0);
  1318. unlock:
  1319. spin_unlock(&sc->rxbuflock);
  1320. }
  1321. /*************\
  1322. * TX Handling *
  1323. \*************/
  1324. static int ath5k_tx_queue(struct ieee80211_hw *hw, struct sk_buff *skb,
  1325. struct ath5k_txq *txq)
  1326. {
  1327. struct ath5k_softc *sc = hw->priv;
  1328. struct ath5k_buf *bf;
  1329. unsigned long flags;
  1330. int padsize;
  1331. ath5k_debug_dump_skb(sc, skb, "TX ", 1);
  1332. /*
  1333. * The hardware expects the header padded to 4 byte boundaries.
  1334. * If this is not the case, we add the padding after the header.
  1335. */
  1336. padsize = ath5k_add_padding(skb);
  1337. if (padsize < 0) {
  1338. ATH5K_ERR(sc, "tx hdrlen not %%4: not enough"
  1339. " headroom to pad");
  1340. goto drop_packet;
  1341. }
  1342. if (txq->txq_len >= ATH5K_TXQ_LEN_MAX)
  1343. ieee80211_stop_queue(hw, txq->qnum);
  1344. spin_lock_irqsave(&sc->txbuflock, flags);
  1345. if (list_empty(&sc->txbuf)) {
  1346. ATH5K_ERR(sc, "no further txbuf available, dropping packet\n");
  1347. spin_unlock_irqrestore(&sc->txbuflock, flags);
  1348. ieee80211_stop_queues(hw);
  1349. goto drop_packet;
  1350. }
  1351. bf = list_first_entry(&sc->txbuf, struct ath5k_buf, list);
  1352. list_del(&bf->list);
  1353. sc->txbuf_len--;
  1354. if (list_empty(&sc->txbuf))
  1355. ieee80211_stop_queues(hw);
  1356. spin_unlock_irqrestore(&sc->txbuflock, flags);
  1357. bf->skb = skb;
  1358. if (ath5k_txbuf_setup(sc, bf, txq, padsize)) {
  1359. bf->skb = NULL;
  1360. spin_lock_irqsave(&sc->txbuflock, flags);
  1361. list_add_tail(&bf->list, &sc->txbuf);
  1362. sc->txbuf_len++;
  1363. spin_unlock_irqrestore(&sc->txbuflock, flags);
  1364. goto drop_packet;
  1365. }
  1366. return NETDEV_TX_OK;
  1367. drop_packet:
  1368. dev_kfree_skb_any(skb);
  1369. return NETDEV_TX_OK;
  1370. }
  1371. static void
  1372. ath5k_tx_frame_completed(struct ath5k_softc *sc, struct sk_buff *skb,
  1373. struct ath5k_tx_status *ts)
  1374. {
  1375. struct ieee80211_tx_info *info;
  1376. int i;
  1377. sc->stats.tx_all_count++;
  1378. sc->stats.tx_bytes_count += skb->len;
  1379. info = IEEE80211_SKB_CB(skb);
  1380. ieee80211_tx_info_clear_status(info);
  1381. for (i = 0; i < 4; i++) {
  1382. struct ieee80211_tx_rate *r =
  1383. &info->status.rates[i];
  1384. if (ts->ts_rate[i]) {
  1385. r->idx = ath5k_hw_to_driver_rix(sc, ts->ts_rate[i]);
  1386. r->count = ts->ts_retry[i];
  1387. } else {
  1388. r->idx = -1;
  1389. r->count = 0;
  1390. }
  1391. }
  1392. /* count the successful attempt as well */
  1393. info->status.rates[ts->ts_final_idx].count++;
  1394. if (unlikely(ts->ts_status)) {
  1395. sc->stats.ack_fail++;
  1396. if (ts->ts_status & AR5K_TXERR_FILT) {
  1397. info->flags |= IEEE80211_TX_STAT_TX_FILTERED;
  1398. sc->stats.txerr_filt++;
  1399. }
  1400. if (ts->ts_status & AR5K_TXERR_XRETRY)
  1401. sc->stats.txerr_retry++;
  1402. if (ts->ts_status & AR5K_TXERR_FIFO)
  1403. sc->stats.txerr_fifo++;
  1404. } else {
  1405. info->flags |= IEEE80211_TX_STAT_ACK;
  1406. info->status.ack_signal = ts->ts_rssi;
  1407. }
  1408. /*
  1409. * Remove MAC header padding before giving the frame
  1410. * back to mac80211.
  1411. */
  1412. ath5k_remove_padding(skb);
  1413. if (ts->ts_antenna > 0 && ts->ts_antenna < 5)
  1414. sc->stats.antenna_tx[ts->ts_antenna]++;
  1415. else
  1416. sc->stats.antenna_tx[0]++; /* invalid */
  1417. ieee80211_tx_status(sc->hw, skb);
  1418. }
  1419. static void
  1420. ath5k_tx_processq(struct ath5k_softc *sc, struct ath5k_txq *txq)
  1421. {
  1422. struct ath5k_tx_status ts = {};
  1423. struct ath5k_buf *bf, *bf0;
  1424. struct ath5k_desc *ds;
  1425. struct sk_buff *skb;
  1426. int ret;
  1427. spin_lock(&txq->lock);
  1428. list_for_each_entry_safe(bf, bf0, &txq->q, list) {
  1429. txq->txq_poll_mark = false;
  1430. /* skb might already have been processed last time. */
  1431. if (bf->skb != NULL) {
  1432. ds = bf->desc;
  1433. ret = sc->ah->ah_proc_tx_desc(sc->ah, ds, &ts);
  1434. if (unlikely(ret == -EINPROGRESS))
  1435. break;
  1436. else if (unlikely(ret)) {
  1437. ATH5K_ERR(sc,
  1438. "error %d while processing "
  1439. "queue %u\n", ret, txq->qnum);
  1440. break;
  1441. }
  1442. skb = bf->skb;
  1443. bf->skb = NULL;
  1444. dma_unmap_single(sc->dev, bf->skbaddr, skb->len,
  1445. DMA_TO_DEVICE);
  1446. ath5k_tx_frame_completed(sc, skb, &ts);
  1447. }
  1448. /*
  1449. * It's possible that the hardware can say the buffer is
  1450. * completed when it hasn't yet loaded the ds_link from
  1451. * host memory and moved on.
  1452. * Always keep the last descriptor to avoid HW races...
  1453. */
  1454. if (ath5k_hw_get_txdp(sc->ah, txq->qnum) != bf->daddr) {
  1455. spin_lock(&sc->txbuflock);
  1456. list_move_tail(&bf->list, &sc->txbuf);
  1457. sc->txbuf_len++;
  1458. txq->txq_len--;
  1459. spin_unlock(&sc->txbuflock);
  1460. }
  1461. }
  1462. spin_unlock(&txq->lock);
  1463. if (txq->txq_len < ATH5K_TXQ_LEN_LOW && txq->qnum < 4)
  1464. ieee80211_wake_queue(sc->hw, txq->qnum);
  1465. }
  1466. static void
  1467. ath5k_tasklet_tx(unsigned long data)
  1468. {
  1469. int i;
  1470. struct ath5k_softc *sc = (void *)data;
  1471. for (i=0; i < AR5K_NUM_TX_QUEUES; i++)
  1472. if (sc->txqs[i].setup && (sc->ah->ah_txq_isr & BIT(i)))
  1473. ath5k_tx_processq(sc, &sc->txqs[i]);
  1474. }
  1475. /*****************\
  1476. * Beacon handling *
  1477. \*****************/
  1478. /*
  1479. * Setup the beacon frame for transmit.
  1480. */
  1481. static int
  1482. ath5k_beacon_setup(struct ath5k_softc *sc, struct ath5k_buf *bf)
  1483. {
  1484. struct sk_buff *skb = bf->skb;
  1485. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  1486. struct ath5k_hw *ah = sc->ah;
  1487. struct ath5k_desc *ds;
  1488. int ret = 0;
  1489. u8 antenna;
  1490. u32 flags;
  1491. const int padsize = 0;
  1492. bf->skbaddr = dma_map_single(sc->dev, skb->data, skb->len,
  1493. DMA_TO_DEVICE);
  1494. ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, "skb %p [data %p len %u] "
  1495. "skbaddr %llx\n", skb, skb->data, skb->len,
  1496. (unsigned long long)bf->skbaddr);
  1497. if (dma_mapping_error(sc->dev, bf->skbaddr)) {
  1498. ATH5K_ERR(sc, "beacon DMA mapping failed\n");
  1499. return -EIO;
  1500. }
  1501. ds = bf->desc;
  1502. antenna = ah->ah_tx_ant;
  1503. flags = AR5K_TXDESC_NOACK;
  1504. if (sc->opmode == NL80211_IFTYPE_ADHOC && ath5k_hw_hasveol(ah)) {
  1505. ds->ds_link = bf->daddr; /* self-linked */
  1506. flags |= AR5K_TXDESC_VEOL;
  1507. } else
  1508. ds->ds_link = 0;
  1509. /*
  1510. * If we use multiple antennas on AP and use
  1511. * the Sectored AP scenario, switch antenna every
  1512. * 4 beacons to make sure everybody hears our AP.
  1513. * When a client tries to associate, hw will keep
  1514. * track of the tx antenna to be used for this client
  1515. * automaticaly, based on ACKed packets.
  1516. *
  1517. * Note: AP still listens and transmits RTS on the
  1518. * default antenna which is supposed to be an omni.
  1519. *
  1520. * Note2: On sectored scenarios it's possible to have
  1521. * multiple antennas (1 omni -- the default -- and 14
  1522. * sectors), so if we choose to actually support this
  1523. * mode, we need to allow the user to set how many antennas
  1524. * we have and tweak the code below to send beacons
  1525. * on all of them.
  1526. */
  1527. if (ah->ah_ant_mode == AR5K_ANTMODE_SECTOR_AP)
  1528. antenna = sc->bsent & 4 ? 2 : 1;
  1529. /* FIXME: If we are in g mode and rate is a CCK rate
  1530. * subtract ah->ah_txpower.txp_cck_ofdm_pwr_delta
  1531. * from tx power (value is in dB units already) */
  1532. ds->ds_data = bf->skbaddr;
  1533. ret = ah->ah_setup_tx_desc(ah, ds, skb->len,
  1534. ieee80211_get_hdrlen_from_skb(skb), padsize,
  1535. AR5K_PKT_TYPE_BEACON, (sc->power_level * 2),
  1536. ieee80211_get_tx_rate(sc->hw, info)->hw_value,
  1537. 1, AR5K_TXKEYIX_INVALID,
  1538. antenna, flags, 0, 0);
  1539. if (ret)
  1540. goto err_unmap;
  1541. return 0;
  1542. err_unmap:
  1543. dma_unmap_single(sc->dev, bf->skbaddr, skb->len, DMA_TO_DEVICE);
  1544. return ret;
  1545. }
  1546. /*
  1547. * Updates the beacon that is sent by ath5k_beacon_send. For adhoc,
  1548. * this is called only once at config_bss time, for AP we do it every
  1549. * SWBA interrupt so that the TIM will reflect buffered frames.
  1550. *
  1551. * Called with the beacon lock.
  1552. */
  1553. static int
  1554. ath5k_beacon_update(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
  1555. {
  1556. int ret;
  1557. struct ath5k_softc *sc = hw->priv;
  1558. struct ath5k_vif *avf = (void *)vif->drv_priv;
  1559. struct sk_buff *skb;
  1560. if (WARN_ON(!vif)) {
  1561. ret = -EINVAL;
  1562. goto out;
  1563. }
  1564. skb = ieee80211_beacon_get(hw, vif);
  1565. if (!skb) {
  1566. ret = -ENOMEM;
  1567. goto out;
  1568. }
  1569. ath5k_debug_dump_skb(sc, skb, "BC ", 1);
  1570. ath5k_txbuf_free_skb(sc, avf->bbuf);
  1571. avf->bbuf->skb = skb;
  1572. ret = ath5k_beacon_setup(sc, avf->bbuf);
  1573. if (ret)
  1574. avf->bbuf->skb = NULL;
  1575. out:
  1576. return ret;
  1577. }
  1578. /*
  1579. * Transmit a beacon frame at SWBA. Dynamic updates to the
  1580. * frame contents are done as needed and the slot time is
  1581. * also adjusted based on current state.
  1582. *
  1583. * This is called from software irq context (beacontq tasklets)
  1584. * or user context from ath5k_beacon_config.
  1585. */
  1586. static void
  1587. ath5k_beacon_send(struct ath5k_softc *sc)
  1588. {
  1589. struct ath5k_hw *ah = sc->ah;
  1590. struct ieee80211_vif *vif;
  1591. struct ath5k_vif *avf;
  1592. struct ath5k_buf *bf;
  1593. struct sk_buff *skb;
  1594. ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, "in beacon_send\n");
  1595. /*
  1596. * Check if the previous beacon has gone out. If
  1597. * not, don't don't try to post another: skip this
  1598. * period and wait for the next. Missed beacons
  1599. * indicate a problem and should not occur. If we
  1600. * miss too many consecutive beacons reset the device.
  1601. */
  1602. if (unlikely(ath5k_hw_num_tx_pending(ah, sc->bhalq) != 0)) {
  1603. sc->bmisscount++;
  1604. ATH5K_DBG(sc, ATH5K_DEBUG_BEACON,
  1605. "missed %u consecutive beacons\n", sc->bmisscount);
  1606. if (sc->bmisscount > 10) { /* NB: 10 is a guess */
  1607. ATH5K_DBG(sc, ATH5K_DEBUG_BEACON,
  1608. "stuck beacon time (%u missed)\n",
  1609. sc->bmisscount);
  1610. ATH5K_DBG(sc, ATH5K_DEBUG_RESET,
  1611. "stuck beacon, resetting\n");
  1612. ieee80211_queue_work(sc->hw, &sc->reset_work);
  1613. }
  1614. return;
  1615. }
  1616. if (unlikely(sc->bmisscount != 0)) {
  1617. ATH5K_DBG(sc, ATH5K_DEBUG_BEACON,
  1618. "resume beacon xmit after %u misses\n",
  1619. sc->bmisscount);
  1620. sc->bmisscount = 0;
  1621. }
  1622. if (sc->opmode == NL80211_IFTYPE_AP && sc->num_ap_vifs > 1) {
  1623. u64 tsf = ath5k_hw_get_tsf64(ah);
  1624. u32 tsftu = TSF_TO_TU(tsf);
  1625. int slot = ((tsftu % sc->bintval) * ATH_BCBUF) / sc->bintval;
  1626. vif = sc->bslot[(slot + 1) % ATH_BCBUF];
  1627. ATH5K_DBG(sc, ATH5K_DEBUG_BEACON,
  1628. "tsf %llx tsftu %x intval %u slot %u vif %p\n",
  1629. (unsigned long long)tsf, tsftu, sc->bintval, slot, vif);
  1630. } else /* only one interface */
  1631. vif = sc->bslot[0];
  1632. if (!vif)
  1633. return;
  1634. avf = (void *)vif->drv_priv;
  1635. bf = avf->bbuf;
  1636. if (unlikely(bf->skb == NULL || sc->opmode == NL80211_IFTYPE_STATION ||
  1637. sc->opmode == NL80211_IFTYPE_MONITOR)) {
  1638. ATH5K_WARN(sc, "bf=%p bf_skb=%p\n", bf, bf ? bf->skb : NULL);
  1639. return;
  1640. }
  1641. /*
  1642. * Stop any current dma and put the new frame on the queue.
  1643. * This should never fail since we check above that no frames
  1644. * are still pending on the queue.
  1645. */
  1646. if (unlikely(ath5k_hw_stop_beacon_queue(ah, sc->bhalq))) {
  1647. ATH5K_WARN(sc, "beacon queue %u didn't start/stop ?\n", sc->bhalq);
  1648. /* NB: hw still stops DMA, so proceed */
  1649. }
  1650. /* refresh the beacon for AP mode */
  1651. if (sc->opmode == NL80211_IFTYPE_AP)
  1652. ath5k_beacon_update(sc->hw, vif);
  1653. ath5k_hw_set_txdp(ah, sc->bhalq, bf->daddr);
  1654. ath5k_hw_start_tx_dma(ah, sc->bhalq);
  1655. ATH5K_DBG(sc, ATH5K_DEBUG_BEACON, "TXDP[%u] = %llx (%p)\n",
  1656. sc->bhalq, (unsigned long long)bf->daddr, bf->desc);
  1657. skb = ieee80211_get_buffered_bc(sc->hw, vif);
  1658. while (skb) {
  1659. ath5k_tx_queue(sc->hw, skb, sc->cabq);
  1660. skb = ieee80211_get_buffered_bc(sc->hw, vif);
  1661. }
  1662. sc->bsent++;
  1663. }
  1664. /**
  1665. * ath5k_beacon_update_timers - update beacon timers
  1666. *
  1667. * @sc: struct ath5k_softc pointer we are operating on
  1668. * @bc_tsf: the timestamp of the beacon. 0 to reset the TSF. -1 to perform a
  1669. * beacon timer update based on the current HW TSF.
  1670. *
  1671. * Calculate the next target beacon transmit time (TBTT) based on the timestamp
  1672. * of a received beacon or the current local hardware TSF and write it to the
  1673. * beacon timer registers.
  1674. *
  1675. * This is called in a variety of situations, e.g. when a beacon is received,
  1676. * when a TSF update has been detected, but also when an new IBSS is created or
  1677. * when we otherwise know we have to update the timers, but we keep it in this
  1678. * function to have it all together in one place.
  1679. */
  1680. static void
  1681. ath5k_beacon_update_timers(struct ath5k_softc *sc, u64 bc_tsf)
  1682. {
  1683. struct ath5k_hw *ah = sc->ah;
  1684. u32 nexttbtt, intval, hw_tu, bc_tu;
  1685. u64 hw_tsf;
  1686. intval = sc->bintval & AR5K_BEACON_PERIOD;
  1687. if (sc->opmode == NL80211_IFTYPE_AP && sc->num_ap_vifs > 1) {
  1688. intval /= ATH_BCBUF; /* staggered multi-bss beacons */
  1689. if (intval < 15)
  1690. ATH5K_WARN(sc, "intval %u is too low, min 15\n",
  1691. intval);
  1692. }
  1693. if (WARN_ON(!intval))
  1694. return;
  1695. /* beacon TSF converted to TU */
  1696. bc_tu = TSF_TO_TU(bc_tsf);
  1697. /* current TSF converted to TU */
  1698. hw_tsf = ath5k_hw_get_tsf64(ah);
  1699. hw_tu = TSF_TO_TU(hw_tsf);
  1700. #define FUDGE AR5K_TUNE_SW_BEACON_RESP + 3
  1701. /* We use FUDGE to make sure the next TBTT is ahead of the current TU.
  1702. * Since we later substract AR5K_TUNE_SW_BEACON_RESP (10) in the timer
  1703. * configuration we need to make sure it is bigger than that. */
  1704. if (bc_tsf == -1) {
  1705. /*
  1706. * no beacons received, called internally.
  1707. * just need to refresh timers based on HW TSF.
  1708. */
  1709. nexttbtt = roundup(hw_tu + FUDGE, intval);
  1710. } else if (bc_tsf == 0) {
  1711. /*
  1712. * no beacon received, probably called by ath5k_reset_tsf().
  1713. * reset TSF to start with 0.
  1714. */
  1715. nexttbtt = intval;
  1716. intval |= AR5K_BEACON_RESET_TSF;
  1717. } else if (bc_tsf > hw_tsf) {
  1718. /*
  1719. * beacon received, SW merge happend but HW TSF not yet updated.
  1720. * not possible to reconfigure timers yet, but next time we
  1721. * receive a beacon with the same BSSID, the hardware will
  1722. * automatically update the TSF and then we need to reconfigure
  1723. * the timers.
  1724. */
  1725. ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
  1726. "need to wait for HW TSF sync\n");
  1727. return;
  1728. } else {
  1729. /*
  1730. * most important case for beacon synchronization between STA.
  1731. *
  1732. * beacon received and HW TSF has been already updated by HW.
  1733. * update next TBTT based on the TSF of the beacon, but make
  1734. * sure it is ahead of our local TSF timer.
  1735. */
  1736. nexttbtt = bc_tu + roundup(hw_tu + FUDGE - bc_tu, intval);
  1737. }
  1738. #undef FUDGE
  1739. sc->nexttbtt = nexttbtt;
  1740. intval |= AR5K_BEACON_ENA;
  1741. ath5k_hw_init_beacon(ah, nexttbtt, intval);
  1742. /*
  1743. * debugging output last in order to preserve the time critical aspect
  1744. * of this function
  1745. */
  1746. if (bc_tsf == -1)
  1747. ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
  1748. "reconfigured timers based on HW TSF\n");
  1749. else if (bc_tsf == 0)
  1750. ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
  1751. "reset HW TSF and timers\n");
  1752. else
  1753. ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
  1754. "updated timers based on beacon TSF\n");
  1755. ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON,
  1756. "bc_tsf %llx hw_tsf %llx bc_tu %u hw_tu %u nexttbtt %u\n",
  1757. (unsigned long long) bc_tsf,
  1758. (unsigned long long) hw_tsf, bc_tu, hw_tu, nexttbtt);
  1759. ATH5K_DBG_UNLIMIT(sc, ATH5K_DEBUG_BEACON, "intval %u %s %s\n",
  1760. intval & AR5K_BEACON_PERIOD,
  1761. intval & AR5K_BEACON_ENA ? "AR5K_BEACON_ENA" : "",
  1762. intval & AR5K_BEACON_RESET_TSF ? "AR5K_BEACON_RESET_TSF" : "");
  1763. }
  1764. /**
  1765. * ath5k_beacon_config - Configure the beacon queues and interrupts
  1766. *
  1767. * @sc: struct ath5k_softc pointer we are operating on
  1768. *
  1769. * In IBSS mode we use a self-linked tx descriptor if possible. We enable SWBA
  1770. * interrupts to detect TSF updates only.
  1771. */
  1772. static void
  1773. ath5k_beacon_config(struct ath5k_softc *sc)
  1774. {
  1775. struct ath5k_hw *ah = sc->ah;
  1776. unsigned long flags;
  1777. spin_lock_irqsave(&sc->block, flags);
  1778. sc->bmisscount = 0;
  1779. sc->imask &= ~(AR5K_INT_BMISS | AR5K_INT_SWBA);
  1780. if (sc->enable_beacon) {
  1781. /*
  1782. * In IBSS mode we use a self-linked tx descriptor and let the
  1783. * hardware send the beacons automatically. We have to load it
  1784. * only once here.
  1785. * We use the SWBA interrupt only to keep track of the beacon
  1786. * timers in order to detect automatic TSF updates.
  1787. */
  1788. ath5k_beaconq_config(sc);
  1789. sc->imask |= AR5K_INT_SWBA;
  1790. if (sc->opmode == NL80211_IFTYPE_ADHOC) {
  1791. if (ath5k_hw_hasveol(ah))
  1792. ath5k_beacon_send(sc);
  1793. } else
  1794. ath5k_beacon_update_timers(sc, -1);
  1795. } else {
  1796. ath5k_hw_stop_beacon_queue(sc->ah, sc->bhalq);
  1797. }
  1798. ath5k_hw_set_imr(ah, sc->imask);
  1799. mmiowb();
  1800. spin_unlock_irqrestore(&sc->block, flags);
  1801. }
  1802. static void ath5k_tasklet_beacon(unsigned long data)
  1803. {
  1804. struct ath5k_softc *sc = (struct ath5k_softc *) data;
  1805. /*
  1806. * Software beacon alert--time to send a beacon.
  1807. *
  1808. * In IBSS mode we use this interrupt just to
  1809. * keep track of the next TBTT (target beacon
  1810. * transmission time) in order to detect wether
  1811. * automatic TSF updates happened.
  1812. */
  1813. if (sc->opmode == NL80211_IFTYPE_ADHOC) {
  1814. /* XXX: only if VEOL suppported */
  1815. u64 tsf = ath5k_hw_get_tsf64(sc->ah);
  1816. sc->nexttbtt += sc->bintval;
  1817. ATH5K_DBG(sc, ATH5K_DEBUG_BEACON,
  1818. "SWBA nexttbtt: %x hw_tu: %x "
  1819. "TSF: %llx\n",
  1820. sc->nexttbtt,
  1821. TSF_TO_TU(tsf),
  1822. (unsigned long long) tsf);
  1823. } else {
  1824. spin_lock(&sc->block);
  1825. ath5k_beacon_send(sc);
  1826. spin_unlock(&sc->block);
  1827. }
  1828. }
  1829. /********************\
  1830. * Interrupt handling *
  1831. \********************/
  1832. static void
  1833. ath5k_intr_calibration_poll(struct ath5k_hw *ah)
  1834. {
  1835. if (time_is_before_eq_jiffies(ah->ah_cal_next_ani) &&
  1836. !(ah->ah_cal_mask & AR5K_CALIBRATION_FULL)) {
  1837. /* run ANI only when full calibration is not active */
  1838. ah->ah_cal_next_ani = jiffies +
  1839. msecs_to_jiffies(ATH5K_TUNE_CALIBRATION_INTERVAL_ANI);
  1840. tasklet_schedule(&ah->ah_sc->ani_tasklet);
  1841. } else if (time_is_before_eq_jiffies(ah->ah_cal_next_full)) {
  1842. ah->ah_cal_next_full = jiffies +
  1843. msecs_to_jiffies(ATH5K_TUNE_CALIBRATION_INTERVAL_FULL);
  1844. tasklet_schedule(&ah->ah_sc->calib);
  1845. }
  1846. /* we could use SWI to generate enough interrupts to meet our
  1847. * calibration interval requirements, if necessary:
  1848. * AR5K_REG_ENABLE_BITS(ah, AR5K_CR, AR5K_CR_SWI); */
  1849. }
  1850. irqreturn_t
  1851. ath5k_intr(int irq, void *dev_id)
  1852. {
  1853. struct ath5k_softc *sc = dev_id;
  1854. struct ath5k_hw *ah = sc->ah;
  1855. enum ath5k_int status;
  1856. unsigned int counter = 1000;
  1857. if (unlikely(test_bit(ATH_STAT_INVALID, sc->status) ||
  1858. ((ath5k_get_bus_type(ah) != ATH_AHB) &&
  1859. !ath5k_hw_is_intr_pending(ah))))
  1860. return IRQ_NONE;
  1861. do {
  1862. ath5k_hw_get_isr(ah, &status); /* NB: clears IRQ too */
  1863. ATH5K_DBG(sc, ATH5K_DEBUG_INTR, "status 0x%x/0x%x\n",
  1864. status, sc->imask);
  1865. if (unlikely(status & AR5K_INT_FATAL)) {
  1866. /*
  1867. * Fatal errors are unrecoverable.
  1868. * Typically these are caused by DMA errors.
  1869. */
  1870. ATH5K_DBG(sc, ATH5K_DEBUG_RESET,
  1871. "fatal int, resetting\n");
  1872. ieee80211_queue_work(sc->hw, &sc->reset_work);
  1873. } else if (unlikely(status & AR5K_INT_RXORN)) {
  1874. /*
  1875. * Receive buffers are full. Either the bus is busy or
  1876. * the CPU is not fast enough to process all received
  1877. * frames.
  1878. * Older chipsets need a reset to come out of this
  1879. * condition, but we treat it as RX for newer chips.
  1880. * We don't know exactly which versions need a reset -
  1881. * this guess is copied from the HAL.
  1882. */
  1883. sc->stats.rxorn_intr++;
  1884. if (ah->ah_mac_srev < AR5K_SREV_AR5212) {
  1885. ATH5K_DBG(sc, ATH5K_DEBUG_RESET,
  1886. "rx overrun, resetting\n");
  1887. ieee80211_queue_work(sc->hw, &sc->reset_work);
  1888. }
  1889. else
  1890. tasklet_schedule(&sc->rxtq);
  1891. } else {
  1892. if (status & AR5K_INT_SWBA) {
  1893. tasklet_hi_schedule(&sc->beacontq);
  1894. }
  1895. if (status & AR5K_INT_RXEOL) {
  1896. /*
  1897. * NB: the hardware should re-read the link when
  1898. * RXE bit is written, but it doesn't work at
  1899. * least on older hardware revs.
  1900. */
  1901. sc->stats.rxeol_intr++;
  1902. }
  1903. if (status & AR5K_INT_TXURN) {
  1904. /* bump tx trigger level */
  1905. ath5k_hw_update_tx_triglevel(ah, true);
  1906. }
  1907. if (status & (AR5K_INT_RXOK | AR5K_INT_RXERR))
  1908. tasklet_schedule(&sc->rxtq);
  1909. if (status & (AR5K_INT_TXOK | AR5K_INT_TXDESC
  1910. | AR5K_INT_TXERR | AR5K_INT_TXEOL))
  1911. tasklet_schedule(&sc->txtq);
  1912. if (status & AR5K_INT_BMISS) {
  1913. /* TODO */
  1914. }
  1915. if (status & AR5K_INT_MIB) {
  1916. sc->stats.mib_intr++;
  1917. ath5k_hw_update_mib_counters(ah);
  1918. ath5k_ani_mib_intr(ah);
  1919. }
  1920. if (status & AR5K_INT_GPIO)
  1921. tasklet_schedule(&sc->rf_kill.toggleq);
  1922. }
  1923. if (ath5k_get_bus_type(ah) == ATH_AHB)
  1924. break;
  1925. } while (ath5k_hw_is_intr_pending(ah) && --counter > 0);
  1926. if (unlikely(!counter))
  1927. ATH5K_WARN(sc, "too many interrupts, giving up for now\n");
  1928. ath5k_intr_calibration_poll(ah);
  1929. return IRQ_HANDLED;
  1930. }
  1931. /*
  1932. * Periodically recalibrate the PHY to account
  1933. * for temperature/environment changes.
  1934. */
  1935. static void
  1936. ath5k_tasklet_calibrate(unsigned long data)
  1937. {
  1938. struct ath5k_softc *sc = (void *)data;
  1939. struct ath5k_hw *ah = sc->ah;
  1940. /* Only full calibration for now */
  1941. ah->ah_cal_mask |= AR5K_CALIBRATION_FULL;
  1942. ATH5K_DBG(sc, ATH5K_DEBUG_CALIBRATE, "channel %u/%x\n",
  1943. ieee80211_frequency_to_channel(sc->curchan->center_freq),
  1944. sc->curchan->hw_value);
  1945. if (ath5k_hw_gainf_calibrate(ah) == AR5K_RFGAIN_NEED_CHANGE) {
  1946. /*
  1947. * Rfgain is out of bounds, reset the chip
  1948. * to load new gain values.
  1949. */
  1950. ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "calibration, resetting\n");
  1951. ieee80211_queue_work(sc->hw, &sc->reset_work);
  1952. }
  1953. if (ath5k_hw_phy_calibrate(ah, sc->curchan))
  1954. ATH5K_ERR(sc, "calibration of channel %u failed\n",
  1955. ieee80211_frequency_to_channel(
  1956. sc->curchan->center_freq));
  1957. /* Noise floor calibration interrupts rx/tx path while I/Q calibration
  1958. * doesn't.
  1959. * TODO: We should stop TX here, so that it doesn't interfere.
  1960. * Note that stopping the queues is not enough to stop TX! */
  1961. if (time_is_before_eq_jiffies(ah->ah_cal_next_nf)) {
  1962. ah->ah_cal_next_nf = jiffies +
  1963. msecs_to_jiffies(ATH5K_TUNE_CALIBRATION_INTERVAL_NF);
  1964. ath5k_hw_update_noise_floor(ah);
  1965. }
  1966. ah->ah_cal_mask &= ~AR5K_CALIBRATION_FULL;
  1967. }
  1968. static void
  1969. ath5k_tasklet_ani(unsigned long data)
  1970. {
  1971. struct ath5k_softc *sc = (void *)data;
  1972. struct ath5k_hw *ah = sc->ah;
  1973. ah->ah_cal_mask |= AR5K_CALIBRATION_ANI;
  1974. ath5k_ani_calibration(ah);
  1975. ah->ah_cal_mask &= ~AR5K_CALIBRATION_ANI;
  1976. }
  1977. static void
  1978. ath5k_tx_complete_poll_work(struct work_struct *work)
  1979. {
  1980. struct ath5k_softc *sc = container_of(work, struct ath5k_softc,
  1981. tx_complete_work.work);
  1982. struct ath5k_txq *txq;
  1983. int i;
  1984. bool needreset = false;
  1985. for (i = 0; i < ARRAY_SIZE(sc->txqs); i++) {
  1986. if (sc->txqs[i].setup) {
  1987. txq = &sc->txqs[i];
  1988. spin_lock_bh(&txq->lock);
  1989. if (txq->txq_len > 1) {
  1990. if (txq->txq_poll_mark) {
  1991. ATH5K_DBG(sc, ATH5K_DEBUG_XMIT,
  1992. "TX queue stuck %d\n",
  1993. txq->qnum);
  1994. needreset = true;
  1995. txq->txq_stuck++;
  1996. spin_unlock_bh(&txq->lock);
  1997. break;
  1998. } else {
  1999. txq->txq_poll_mark = true;
  2000. }
  2001. }
  2002. spin_unlock_bh(&txq->lock);
  2003. }
  2004. }
  2005. if (needreset) {
  2006. ATH5K_DBG(sc, ATH5K_DEBUG_RESET,
  2007. "TX queues stuck, resetting\n");
  2008. ath5k_reset(sc, NULL, true);
  2009. }
  2010. ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work,
  2011. msecs_to_jiffies(ATH5K_TX_COMPLETE_POLL_INT));
  2012. }
  2013. /*************************\
  2014. * Initialization routines *
  2015. \*************************/
  2016. int
  2017. ath5k_init_softc(struct ath5k_softc *sc, const struct ath_bus_ops *bus_ops)
  2018. {
  2019. struct ieee80211_hw *hw = sc->hw;
  2020. struct ath_common *common;
  2021. int ret;
  2022. int csz;
  2023. /* Initialize driver private data */
  2024. SET_IEEE80211_DEV(hw, sc->dev);
  2025. hw->flags = IEEE80211_HW_RX_INCLUDES_FCS |
  2026. IEEE80211_HW_HOST_BROADCAST_PS_BUFFERING |
  2027. IEEE80211_HW_SIGNAL_DBM;
  2028. hw->wiphy->interface_modes =
  2029. BIT(NL80211_IFTYPE_AP) |
  2030. BIT(NL80211_IFTYPE_STATION) |
  2031. BIT(NL80211_IFTYPE_ADHOC) |
  2032. BIT(NL80211_IFTYPE_MESH_POINT);
  2033. hw->extra_tx_headroom = 2;
  2034. hw->channel_change_time = 5000;
  2035. /*
  2036. * Mark the device as detached to avoid processing
  2037. * interrupts until setup is complete.
  2038. */
  2039. __set_bit(ATH_STAT_INVALID, sc->status);
  2040. sc->opmode = NL80211_IFTYPE_STATION;
  2041. sc->bintval = 1000;
  2042. mutex_init(&sc->lock);
  2043. spin_lock_init(&sc->rxbuflock);
  2044. spin_lock_init(&sc->txbuflock);
  2045. spin_lock_init(&sc->block);
  2046. /* Setup interrupt handler */
  2047. ret = request_irq(sc->irq, ath5k_intr, IRQF_SHARED, "ath", sc);
  2048. if (ret) {
  2049. ATH5K_ERR(sc, "request_irq failed\n");
  2050. goto err;
  2051. }
  2052. /* If we passed the test, malloc an ath5k_hw struct */
  2053. sc->ah = kzalloc(sizeof(struct ath5k_hw), GFP_KERNEL);
  2054. if (!sc->ah) {
  2055. ret = -ENOMEM;
  2056. ATH5K_ERR(sc, "out of memory\n");
  2057. goto err_irq;
  2058. }
  2059. sc->ah->ah_sc = sc;
  2060. sc->ah->ah_iobase = sc->iobase;
  2061. common = ath5k_hw_common(sc->ah);
  2062. common->ops = &ath5k_common_ops;
  2063. common->bus_ops = bus_ops;
  2064. common->ah = sc->ah;
  2065. common->hw = hw;
  2066. common->priv = sc;
  2067. /*
  2068. * Cache line size is used to size and align various
  2069. * structures used to communicate with the hardware.
  2070. */
  2071. ath5k_read_cachesize(common, &csz);
  2072. common->cachelsz = csz << 2; /* convert to bytes */
  2073. spin_lock_init(&common->cc_lock);
  2074. /* Initialize device */
  2075. ret = ath5k_hw_init(sc);
  2076. if (ret)
  2077. goto err_free_ah;
  2078. /* set up multi-rate retry capabilities */
  2079. if (sc->ah->ah_version == AR5K_AR5212) {
  2080. hw->max_rates = 4;
  2081. hw->max_rate_tries = 11;
  2082. }
  2083. hw->vif_data_size = sizeof(struct ath5k_vif);
  2084. /* Finish private driver data initialization */
  2085. ret = ath5k_init(hw);
  2086. if (ret)
  2087. goto err_ah;
  2088. ATH5K_INFO(sc, "Atheros AR%s chip found (MAC: 0x%x, PHY: 0x%x)\n",
  2089. ath5k_chip_name(AR5K_VERSION_MAC, sc->ah->ah_mac_srev),
  2090. sc->ah->ah_mac_srev,
  2091. sc->ah->ah_phy_revision);
  2092. if (!sc->ah->ah_single_chip) {
  2093. /* Single chip radio (!RF5111) */
  2094. if (sc->ah->ah_radio_5ghz_revision &&
  2095. !sc->ah->ah_radio_2ghz_revision) {
  2096. /* No 5GHz support -> report 2GHz radio */
  2097. if (!test_bit(AR5K_MODE_11A,
  2098. sc->ah->ah_capabilities.cap_mode)) {
  2099. ATH5K_INFO(sc, "RF%s 2GHz radio found (0x%x)\n",
  2100. ath5k_chip_name(AR5K_VERSION_RAD,
  2101. sc->ah->ah_radio_5ghz_revision),
  2102. sc->ah->ah_radio_5ghz_revision);
  2103. /* No 2GHz support (5110 and some
  2104. * 5Ghz only cards) -> report 5Ghz radio */
  2105. } else if (!test_bit(AR5K_MODE_11B,
  2106. sc->ah->ah_capabilities.cap_mode)) {
  2107. ATH5K_INFO(sc, "RF%s 5GHz radio found (0x%x)\n",
  2108. ath5k_chip_name(AR5K_VERSION_RAD,
  2109. sc->ah->ah_radio_5ghz_revision),
  2110. sc->ah->ah_radio_5ghz_revision);
  2111. /* Multiband radio */
  2112. } else {
  2113. ATH5K_INFO(sc, "RF%s multiband radio found"
  2114. " (0x%x)\n",
  2115. ath5k_chip_name(AR5K_VERSION_RAD,
  2116. sc->ah->ah_radio_5ghz_revision),
  2117. sc->ah->ah_radio_5ghz_revision);
  2118. }
  2119. }
  2120. /* Multi chip radio (RF5111 - RF2111) ->
  2121. * report both 2GHz/5GHz radios */
  2122. else if (sc->ah->ah_radio_5ghz_revision &&
  2123. sc->ah->ah_radio_2ghz_revision){
  2124. ATH5K_INFO(sc, "RF%s 5GHz radio found (0x%x)\n",
  2125. ath5k_chip_name(AR5K_VERSION_RAD,
  2126. sc->ah->ah_radio_5ghz_revision),
  2127. sc->ah->ah_radio_5ghz_revision);
  2128. ATH5K_INFO(sc, "RF%s 2GHz radio found (0x%x)\n",
  2129. ath5k_chip_name(AR5K_VERSION_RAD,
  2130. sc->ah->ah_radio_2ghz_revision),
  2131. sc->ah->ah_radio_2ghz_revision);
  2132. }
  2133. }
  2134. ath5k_debug_init_device(sc);
  2135. /* ready to process interrupts */
  2136. __clear_bit(ATH_STAT_INVALID, sc->status);
  2137. return 0;
  2138. err_ah:
  2139. ath5k_hw_deinit(sc->ah);
  2140. err_free_ah:
  2141. kfree(sc->ah);
  2142. err_irq:
  2143. free_irq(sc->irq, sc);
  2144. err:
  2145. return ret;
  2146. }
  2147. static int
  2148. ath5k_stop_locked(struct ath5k_softc *sc)
  2149. {
  2150. struct ath5k_hw *ah = sc->ah;
  2151. ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "invalid %u\n",
  2152. test_bit(ATH_STAT_INVALID, sc->status));
  2153. /*
  2154. * Shutdown the hardware and driver:
  2155. * stop output from above
  2156. * disable interrupts
  2157. * turn off timers
  2158. * turn off the radio
  2159. * clear transmit machinery
  2160. * clear receive machinery
  2161. * drain and release tx queues
  2162. * reclaim beacon resources
  2163. * power down hardware
  2164. *
  2165. * Note that some of this work is not possible if the
  2166. * hardware is gone (invalid).
  2167. */
  2168. ieee80211_stop_queues(sc->hw);
  2169. if (!test_bit(ATH_STAT_INVALID, sc->status)) {
  2170. ath5k_led_off(sc);
  2171. ath5k_hw_set_imr(ah, 0);
  2172. synchronize_irq(sc->irq);
  2173. ath5k_rx_stop(sc);
  2174. ath5k_hw_dma_stop(ah);
  2175. ath5k_drain_tx_buffs(sc);
  2176. ath5k_hw_phy_disable(ah);
  2177. }
  2178. return 0;
  2179. }
  2180. static int
  2181. ath5k_init_hw(struct ath5k_softc *sc)
  2182. {
  2183. struct ath5k_hw *ah = sc->ah;
  2184. struct ath_common *common = ath5k_hw_common(ah);
  2185. int ret, i;
  2186. mutex_lock(&sc->lock);
  2187. ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "mode %d\n", sc->opmode);
  2188. /*
  2189. * Stop anything previously setup. This is safe
  2190. * no matter this is the first time through or not.
  2191. */
  2192. ath5k_stop_locked(sc);
  2193. /*
  2194. * The basic interface to setting the hardware in a good
  2195. * state is ``reset''. On return the hardware is known to
  2196. * be powered up and with interrupts disabled. This must
  2197. * be followed by initialization of the appropriate bits
  2198. * and then setup of the interrupt mask.
  2199. */
  2200. sc->curchan = sc->hw->conf.channel;
  2201. sc->curband = &sc->sbands[sc->curchan->band];
  2202. sc->imask = AR5K_INT_RXOK | AR5K_INT_RXERR | AR5K_INT_RXEOL |
  2203. AR5K_INT_RXORN | AR5K_INT_TXDESC | AR5K_INT_TXEOL |
  2204. AR5K_INT_FATAL | AR5K_INT_GLOBAL | AR5K_INT_MIB;
  2205. ret = ath5k_reset(sc, NULL, false);
  2206. if (ret)
  2207. goto done;
  2208. ath5k_rfkill_hw_start(ah);
  2209. /*
  2210. * Reset the key cache since some parts do not reset the
  2211. * contents on initial power up or resume from suspend.
  2212. */
  2213. for (i = 0; i < common->keymax; i++)
  2214. ath_hw_keyreset(common, (u16) i);
  2215. /* Use higher rates for acks instead of base
  2216. * rate */
  2217. ah->ah_ack_bitrate_high = true;
  2218. for (i = 0; i < ARRAY_SIZE(sc->bslot); i++)
  2219. sc->bslot[i] = NULL;
  2220. ret = 0;
  2221. done:
  2222. mmiowb();
  2223. mutex_unlock(&sc->lock);
  2224. ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work,
  2225. msecs_to_jiffies(ATH5K_TX_COMPLETE_POLL_INT));
  2226. return ret;
  2227. }
  2228. static void stop_tasklets(struct ath5k_softc *sc)
  2229. {
  2230. tasklet_kill(&sc->rxtq);
  2231. tasklet_kill(&sc->txtq);
  2232. tasklet_kill(&sc->calib);
  2233. tasklet_kill(&sc->beacontq);
  2234. tasklet_kill(&sc->ani_tasklet);
  2235. }
  2236. /*
  2237. * Stop the device, grabbing the top-level lock to protect
  2238. * against concurrent entry through ath5k_init (which can happen
  2239. * if another thread does a system call and the thread doing the
  2240. * stop is preempted).
  2241. */
  2242. static int
  2243. ath5k_stop_hw(struct ath5k_softc *sc)
  2244. {
  2245. int ret;
  2246. mutex_lock(&sc->lock);
  2247. ret = ath5k_stop_locked(sc);
  2248. if (ret == 0 && !test_bit(ATH_STAT_INVALID, sc->status)) {
  2249. /*
  2250. * Don't set the card in full sleep mode!
  2251. *
  2252. * a) When the device is in this state it must be carefully
  2253. * woken up or references to registers in the PCI clock
  2254. * domain may freeze the bus (and system). This varies
  2255. * by chip and is mostly an issue with newer parts
  2256. * (madwifi sources mentioned srev >= 0x78) that go to
  2257. * sleep more quickly.
  2258. *
  2259. * b) On older chips full sleep results a weird behaviour
  2260. * during wakeup. I tested various cards with srev < 0x78
  2261. * and they don't wake up after module reload, a second
  2262. * module reload is needed to bring the card up again.
  2263. *
  2264. * Until we figure out what's going on don't enable
  2265. * full chip reset on any chip (this is what Legacy HAL
  2266. * and Sam's HAL do anyway). Instead Perform a full reset
  2267. * on the device (same as initial state after attach) and
  2268. * leave it idle (keep MAC/BB on warm reset) */
  2269. ret = ath5k_hw_on_hold(sc->ah);
  2270. ATH5K_DBG(sc, ATH5K_DEBUG_RESET,
  2271. "putting device to sleep\n");
  2272. }
  2273. mmiowb();
  2274. mutex_unlock(&sc->lock);
  2275. stop_tasklets(sc);
  2276. cancel_delayed_work_sync(&sc->tx_complete_work);
  2277. ath5k_rfkill_hw_stop(sc->ah);
  2278. return ret;
  2279. }
  2280. /*
  2281. * Reset the hardware. If chan is not NULL, then also pause rx/tx
  2282. * and change to the given channel.
  2283. *
  2284. * This should be called with sc->lock.
  2285. */
  2286. static int
  2287. ath5k_reset(struct ath5k_softc *sc, struct ieee80211_channel *chan,
  2288. bool skip_pcu)
  2289. {
  2290. struct ath5k_hw *ah = sc->ah;
  2291. int ret;
  2292. ATH5K_DBG(sc, ATH5K_DEBUG_RESET, "resetting\n");
  2293. ath5k_hw_set_imr(ah, 0);
  2294. synchronize_irq(sc->irq);
  2295. stop_tasklets(sc);
  2296. if (chan) {
  2297. ath5k_drain_tx_buffs(sc);
  2298. sc->curchan = chan;
  2299. sc->curband = &sc->sbands[chan->band];
  2300. }
  2301. ret = ath5k_hw_reset(ah, sc->opmode, sc->curchan, chan != NULL,
  2302. skip_pcu);
  2303. if (ret) {
  2304. ATH5K_ERR(sc, "can't reset hardware (%d)\n", ret);
  2305. goto err;
  2306. }
  2307. ret = ath5k_rx_start(sc);
  2308. if (ret) {
  2309. ATH5K_ERR(sc, "can't start recv logic\n");
  2310. goto err;
  2311. }
  2312. ath5k_ani_init(ah, ah->ah_sc->ani_state.ani_mode);
  2313. ah->ah_cal_next_full = jiffies;
  2314. ah->ah_cal_next_ani = jiffies;
  2315. ah->ah_cal_next_nf = jiffies;
  2316. ewma_init(&ah->ah_beacon_rssi_avg, 1024, 8);
  2317. /*
  2318. * Change channels and update the h/w rate map if we're switching;
  2319. * e.g. 11a to 11b/g.
  2320. *
  2321. * We may be doing a reset in response to an ioctl that changes the
  2322. * channel so update any state that might change as a result.
  2323. *
  2324. * XXX needed?
  2325. */
  2326. /* ath5k_chan_change(sc, c); */
  2327. ath5k_beacon_config(sc);
  2328. /* intrs are enabled by ath5k_beacon_config */
  2329. ieee80211_wake_queues(sc->hw);
  2330. return 0;
  2331. err:
  2332. return ret;
  2333. }
  2334. static void ath5k_reset_work(struct work_struct *work)
  2335. {
  2336. struct ath5k_softc *sc = container_of(work, struct ath5k_softc,
  2337. reset_work);
  2338. mutex_lock(&sc->lock);
  2339. ath5k_reset(sc, NULL, true);
  2340. mutex_unlock(&sc->lock);
  2341. }
  2342. static int
  2343. ath5k_init(struct ieee80211_hw *hw)
  2344. {
  2345. struct ath5k_softc *sc = hw->priv;
  2346. struct ath5k_hw *ah = sc->ah;
  2347. struct ath_regulatory *regulatory = ath5k_hw_regulatory(ah);
  2348. struct ath5k_txq *txq;
  2349. u8 mac[ETH_ALEN] = {};
  2350. int ret;
  2351. /*
  2352. * Check if the MAC has multi-rate retry support.
  2353. * We do this by trying to setup a fake extended
  2354. * descriptor. MACs that don't have support will
  2355. * return false w/o doing anything. MACs that do
  2356. * support it will return true w/o doing anything.
  2357. */
  2358. ret = ath5k_hw_setup_mrr_tx_desc(ah, NULL, 0, 0, 0, 0, 0, 0);
  2359. if (ret < 0)
  2360. goto err;
  2361. if (ret > 0)
  2362. __set_bit(ATH_STAT_MRRETRY, sc->status);
  2363. /*
  2364. * Collect the channel list. The 802.11 layer
  2365. * is resposible for filtering this list based
  2366. * on settings like the phy mode and regulatory
  2367. * domain restrictions.
  2368. */
  2369. ret = ath5k_setup_bands(hw);
  2370. if (ret) {
  2371. ATH5K_ERR(sc, "can't get channels\n");
  2372. goto err;
  2373. }
  2374. /* NB: setup here so ath5k_rate_update is happy */
  2375. if (test_bit(AR5K_MODE_11A, ah->ah_modes))
  2376. ath5k_setcurmode(sc, AR5K_MODE_11A);
  2377. else
  2378. ath5k_setcurmode(sc, AR5K_MODE_11B);
  2379. /*
  2380. * Allocate tx+rx descriptors and populate the lists.
  2381. */
  2382. ret = ath5k_desc_alloc(sc);
  2383. if (ret) {
  2384. ATH5K_ERR(sc, "can't allocate descriptors\n");
  2385. goto err;
  2386. }
  2387. /*
  2388. * Allocate hardware transmit queues: one queue for
  2389. * beacon frames and one data queue for each QoS
  2390. * priority. Note that hw functions handle resetting
  2391. * these queues at the needed time.
  2392. */
  2393. ret = ath5k_beaconq_setup(ah);
  2394. if (ret < 0) {
  2395. ATH5K_ERR(sc, "can't setup a beacon xmit queue\n");
  2396. goto err_desc;
  2397. }
  2398. sc->bhalq = ret;
  2399. sc->cabq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_CAB, 0);
  2400. if (IS_ERR(sc->cabq)) {
  2401. ATH5K_ERR(sc, "can't setup cab queue\n");
  2402. ret = PTR_ERR(sc->cabq);
  2403. goto err_bhal;
  2404. }
  2405. /* This order matches mac80211's queue priority, so we can
  2406. * directly use the mac80211 queue number without any mapping */
  2407. txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_VO);
  2408. if (IS_ERR(txq)) {
  2409. ATH5K_ERR(sc, "can't setup xmit queue\n");
  2410. ret = PTR_ERR(txq);
  2411. goto err_queues;
  2412. }
  2413. txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_VI);
  2414. if (IS_ERR(txq)) {
  2415. ATH5K_ERR(sc, "can't setup xmit queue\n");
  2416. ret = PTR_ERR(txq);
  2417. goto err_queues;
  2418. }
  2419. txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_BE);
  2420. if (IS_ERR(txq)) {
  2421. ATH5K_ERR(sc, "can't setup xmit queue\n");
  2422. ret = PTR_ERR(txq);
  2423. goto err_queues;
  2424. }
  2425. txq = ath5k_txq_setup(sc, AR5K_TX_QUEUE_DATA, AR5K_WME_AC_BK);
  2426. if (IS_ERR(txq)) {
  2427. ATH5K_ERR(sc, "can't setup xmit queue\n");
  2428. ret = PTR_ERR(txq);
  2429. goto err_queues;
  2430. }
  2431. hw->queues = 4;
  2432. tasklet_init(&sc->rxtq, ath5k_tasklet_rx, (unsigned long)sc);
  2433. tasklet_init(&sc->txtq, ath5k_tasklet_tx, (unsigned long)sc);
  2434. tasklet_init(&sc->calib, ath5k_tasklet_calibrate, (unsigned long)sc);
  2435. tasklet_init(&sc->beacontq, ath5k_tasklet_beacon, (unsigned long)sc);
  2436. tasklet_init(&sc->ani_tasklet, ath5k_tasklet_ani, (unsigned long)sc);
  2437. INIT_WORK(&sc->reset_work, ath5k_reset_work);
  2438. INIT_DELAYED_WORK(&sc->tx_complete_work, ath5k_tx_complete_poll_work);
  2439. ret = ath5k_eeprom_read_mac(ah, mac);
  2440. if (ret) {
  2441. ATH5K_ERR(sc, "unable to read address from EEPROM\n");
  2442. goto err_queues;
  2443. }
  2444. SET_IEEE80211_PERM_ADDR(hw, mac);
  2445. memcpy(&sc->lladdr, mac, ETH_ALEN);
  2446. /* All MAC address bits matter for ACKs */
  2447. ath5k_update_bssid_mask_and_opmode(sc, NULL);
  2448. regulatory->current_rd = ah->ah_capabilities.cap_eeprom.ee_regdomain;
  2449. ret = ath_regd_init(regulatory, hw->wiphy, ath5k_reg_notifier);
  2450. if (ret) {
  2451. ATH5K_ERR(sc, "can't initialize regulatory system\n");
  2452. goto err_queues;
  2453. }
  2454. ret = ieee80211_register_hw(hw);
  2455. if (ret) {
  2456. ATH5K_ERR(sc, "can't register ieee80211 hw\n");
  2457. goto err_queues;
  2458. }
  2459. if (!ath_is_world_regd(regulatory))
  2460. regulatory_hint(hw->wiphy, regulatory->alpha2);
  2461. ath5k_init_leds(sc);
  2462. ath5k_sysfs_register(sc);
  2463. return 0;
  2464. err_queues:
  2465. ath5k_txq_release(sc);
  2466. err_bhal:
  2467. ath5k_hw_release_tx_queue(ah, sc->bhalq);
  2468. err_desc:
  2469. ath5k_desc_free(sc);
  2470. err:
  2471. return ret;
  2472. }
  2473. void
  2474. ath5k_deinit_softc(struct ath5k_softc *sc)
  2475. {
  2476. struct ieee80211_hw *hw = sc->hw;
  2477. /*
  2478. * NB: the order of these is important:
  2479. * o call the 802.11 layer before detaching ath5k_hw to
  2480. * ensure callbacks into the driver to delete global
  2481. * key cache entries can be handled
  2482. * o reclaim the tx queue data structures after calling
  2483. * the 802.11 layer as we'll get called back to reclaim
  2484. * node state and potentially want to use them
  2485. * o to cleanup the tx queues the hal is called, so detach
  2486. * it last
  2487. * XXX: ??? detach ath5k_hw ???
  2488. * Other than that, it's straightforward...
  2489. */
  2490. ath5k_debug_finish_device(sc);
  2491. ieee80211_unregister_hw(hw);
  2492. ath5k_desc_free(sc);
  2493. ath5k_txq_release(sc);
  2494. ath5k_hw_release_tx_queue(sc->ah, sc->bhalq);
  2495. ath5k_unregister_leds(sc);
  2496. ath5k_sysfs_unregister(sc);
  2497. /*
  2498. * NB: can't reclaim these until after ieee80211_ifdetach
  2499. * returns because we'll get called back to reclaim node
  2500. * state and potentially want to use them.
  2501. */
  2502. ath5k_hw_deinit(sc->ah);
  2503. free_irq(sc->irq, sc);
  2504. }
  2505. /********************\
  2506. * Mac80211 functions *
  2507. \********************/
  2508. static int
  2509. ath5k_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
  2510. {
  2511. struct ath5k_softc *sc = hw->priv;
  2512. u16 qnum = skb_get_queue_mapping(skb);
  2513. if (WARN_ON(qnum >= sc->ah->ah_capabilities.cap_queues.q_tx_num)) {
  2514. dev_kfree_skb_any(skb);
  2515. return 0;
  2516. }
  2517. return ath5k_tx_queue(hw, skb, &sc->txqs[qnum]);
  2518. }
  2519. static int ath5k_start(struct ieee80211_hw *hw)
  2520. {
  2521. return ath5k_init_hw(hw->priv);
  2522. }
  2523. static void ath5k_stop(struct ieee80211_hw *hw)
  2524. {
  2525. ath5k_stop_hw(hw->priv);
  2526. }
  2527. static int ath5k_add_interface(struct ieee80211_hw *hw,
  2528. struct ieee80211_vif *vif)
  2529. {
  2530. struct ath5k_softc *sc = hw->priv;
  2531. int ret;
  2532. struct ath5k_vif *avf = (void *)vif->drv_priv;
  2533. mutex_lock(&sc->lock);
  2534. if ((vif->type == NL80211_IFTYPE_AP ||
  2535. vif->type == NL80211_IFTYPE_ADHOC)
  2536. && (sc->num_ap_vifs + sc->num_adhoc_vifs) >= ATH_BCBUF) {
  2537. ret = -ELNRNG;
  2538. goto end;
  2539. }
  2540. /* Don't allow other interfaces if one ad-hoc is configured.
  2541. * TODO: Fix the problems with ad-hoc and multiple other interfaces.
  2542. * We would need to operate the HW in ad-hoc mode to allow TSF updates
  2543. * for the IBSS, but this breaks with additional AP or STA interfaces
  2544. * at the moment. */
  2545. if (sc->num_adhoc_vifs ||
  2546. (sc->nvifs && vif->type == NL80211_IFTYPE_ADHOC)) {
  2547. ATH5K_ERR(sc, "Only one single ad-hoc interface is allowed.\n");
  2548. ret = -ELNRNG;
  2549. goto end;
  2550. }
  2551. switch (vif->type) {
  2552. case NL80211_IFTYPE_AP:
  2553. case NL80211_IFTYPE_STATION:
  2554. case NL80211_IFTYPE_ADHOC:
  2555. case NL80211_IFTYPE_MESH_POINT:
  2556. avf->opmode = vif->type;
  2557. break;
  2558. default:
  2559. ret = -EOPNOTSUPP;
  2560. goto end;
  2561. }
  2562. sc->nvifs++;
  2563. ATH5K_DBG(sc, ATH5K_DEBUG_MODE, "add interface mode %d\n", avf->opmode);
  2564. /* Assign the vap/adhoc to a beacon xmit slot. */
  2565. if ((avf->opmode == NL80211_IFTYPE_AP) ||
  2566. (avf->opmode == NL80211_IFTYPE_ADHOC)) {
  2567. int slot;
  2568. WARN_ON(list_empty(&sc->bcbuf));
  2569. avf->bbuf = list_first_entry(&sc->bcbuf, struct ath5k_buf,
  2570. list);
  2571. list_del(&avf->bbuf->list);
  2572. avf->bslot = 0;
  2573. for (slot = 0; slot < ATH_BCBUF; slot++) {
  2574. if (!sc->bslot[slot]) {
  2575. avf->bslot = slot;
  2576. break;
  2577. }
  2578. }
  2579. BUG_ON(sc->bslot[avf->bslot] != NULL);
  2580. sc->bslot[avf->bslot] = vif;
  2581. if (avf->opmode == NL80211_IFTYPE_AP)
  2582. sc->num_ap_vifs++;
  2583. else
  2584. sc->num_adhoc_vifs++;
  2585. }
  2586. /* Any MAC address is fine, all others are included through the
  2587. * filter.
  2588. */
  2589. memcpy(&sc->lladdr, vif->addr, ETH_ALEN);
  2590. ath5k_hw_set_lladdr(sc->ah, vif->addr);
  2591. memcpy(&avf->lladdr, vif->addr, ETH_ALEN);
  2592. ath5k_mode_setup(sc, vif);
  2593. ret = 0;
  2594. end:
  2595. mutex_unlock(&sc->lock);
  2596. return ret;
  2597. }
  2598. static void
  2599. ath5k_remove_interface(struct ieee80211_hw *hw,
  2600. struct ieee80211_vif *vif)
  2601. {
  2602. struct ath5k_softc *sc = hw->priv;
  2603. struct ath5k_vif *avf = (void *)vif->drv_priv;
  2604. unsigned int i;
  2605. mutex_lock(&sc->lock);
  2606. sc->nvifs--;
  2607. if (avf->bbuf) {
  2608. ath5k_txbuf_free_skb(sc, avf->bbuf);
  2609. list_add_tail(&avf->bbuf->list, &sc->bcbuf);
  2610. for (i = 0; i < ATH_BCBUF; i++) {
  2611. if (sc->bslot[i] == vif) {
  2612. sc->bslot[i] = NULL;
  2613. break;
  2614. }
  2615. }
  2616. avf->bbuf = NULL;
  2617. }
  2618. if (avf->opmode == NL80211_IFTYPE_AP)
  2619. sc->num_ap_vifs--;
  2620. else if (avf->opmode == NL80211_IFTYPE_ADHOC)
  2621. sc->num_adhoc_vifs--;
  2622. ath5k_update_bssid_mask_and_opmode(sc, NULL);
  2623. mutex_unlock(&sc->lock);
  2624. }
  2625. /*
  2626. * TODO: Phy disable/diversity etc
  2627. */
  2628. static int
  2629. ath5k_config(struct ieee80211_hw *hw, u32 changed)
  2630. {
  2631. struct ath5k_softc *sc = hw->priv;
  2632. struct ath5k_hw *ah = sc->ah;
  2633. struct ieee80211_conf *conf = &hw->conf;
  2634. int ret = 0;
  2635. mutex_lock(&sc->lock);
  2636. if (changed & IEEE80211_CONF_CHANGE_CHANNEL) {
  2637. ret = ath5k_chan_set(sc, conf->channel);
  2638. if (ret < 0)
  2639. goto unlock;
  2640. }
  2641. if ((changed & IEEE80211_CONF_CHANGE_POWER) &&
  2642. (sc->power_level != conf->power_level)) {
  2643. sc->power_level = conf->power_level;
  2644. /* Half dB steps */
  2645. ath5k_hw_set_txpower_limit(ah, (conf->power_level * 2));
  2646. }
  2647. /* TODO:
  2648. * 1) Move this on config_interface and handle each case
  2649. * separately eg. when we have only one STA vif, use
  2650. * AR5K_ANTMODE_SINGLE_AP
  2651. *
  2652. * 2) Allow the user to change antenna mode eg. when only
  2653. * one antenna is present
  2654. *
  2655. * 3) Allow the user to set default/tx antenna when possible
  2656. *
  2657. * 4) Default mode should handle 90% of the cases, together
  2658. * with fixed a/b and single AP modes we should be able to
  2659. * handle 99%. Sectored modes are extreme cases and i still
  2660. * haven't found a usage for them. If we decide to support them,
  2661. * then we must allow the user to set how many tx antennas we
  2662. * have available
  2663. */
  2664. ath5k_hw_set_antenna_mode(ah, ah->ah_ant_mode);
  2665. unlock:
  2666. mutex_unlock(&sc->lock);
  2667. return ret;
  2668. }
  2669. static u64 ath5k_prepare_multicast(struct ieee80211_hw *hw,
  2670. struct netdev_hw_addr_list *mc_list)
  2671. {
  2672. u32 mfilt[2], val;
  2673. u8 pos;
  2674. struct netdev_hw_addr *ha;
  2675. mfilt[0] = 0;
  2676. mfilt[1] = 1;
  2677. netdev_hw_addr_list_for_each(ha, mc_list) {
  2678. /* calculate XOR of eight 6-bit values */
  2679. val = get_unaligned_le32(ha->addr + 0);
  2680. pos = (val >> 18) ^ (val >> 12) ^ (val >> 6) ^ val;
  2681. val = get_unaligned_le32(ha->addr + 3);
  2682. pos ^= (val >> 18) ^ (val >> 12) ^ (val >> 6) ^ val;
  2683. pos &= 0x3f;
  2684. mfilt[pos / 32] |= (1 << (pos % 32));
  2685. /* XXX: we might be able to just do this instead,
  2686. * but not sure, needs testing, if we do use this we'd
  2687. * neet to inform below to not reset the mcast */
  2688. /* ath5k_hw_set_mcast_filterindex(ah,
  2689. * ha->addr[5]); */
  2690. }
  2691. return ((u64)(mfilt[1]) << 32) | mfilt[0];
  2692. }
  2693. static bool ath_any_vif_assoc(struct ath5k_softc *sc)
  2694. {
  2695. struct ath_vif_iter_data iter_data;
  2696. iter_data.hw_macaddr = NULL;
  2697. iter_data.any_assoc = false;
  2698. iter_data.need_set_hw_addr = false;
  2699. iter_data.found_active = true;
  2700. ieee80211_iterate_active_interfaces_atomic(sc->hw, ath_vif_iter,
  2701. &iter_data);
  2702. return iter_data.any_assoc;
  2703. }
  2704. #define SUPPORTED_FIF_FLAGS \
  2705. FIF_PROMISC_IN_BSS | FIF_ALLMULTI | FIF_FCSFAIL | \
  2706. FIF_PLCPFAIL | FIF_CONTROL | FIF_OTHER_BSS | \
  2707. FIF_BCN_PRBRESP_PROMISC
  2708. /*
  2709. * o always accept unicast, broadcast, and multicast traffic
  2710. * o multicast traffic for all BSSIDs will be enabled if mac80211
  2711. * says it should be
  2712. * o maintain current state of phy ofdm or phy cck error reception.
  2713. * If the hardware detects any of these type of errors then
  2714. * ath5k_hw_get_rx_filter() will pass to us the respective
  2715. * hardware filters to be able to receive these type of frames.
  2716. * o probe request frames are accepted only when operating in
  2717. * hostap, adhoc, or monitor modes
  2718. * o enable promiscuous mode according to the interface state
  2719. * o accept beacons:
  2720. * - when operating in adhoc mode so the 802.11 layer creates
  2721. * node table entries for peers,
  2722. * - when operating in station mode for collecting rssi data when
  2723. * the station is otherwise quiet, or
  2724. * - when scanning
  2725. */
  2726. static void ath5k_configure_filter(struct ieee80211_hw *hw,
  2727. unsigned int changed_flags,
  2728. unsigned int *new_flags,
  2729. u64 multicast)
  2730. {
  2731. struct ath5k_softc *sc = hw->priv;
  2732. struct ath5k_hw *ah = sc->ah;
  2733. u32 mfilt[2], rfilt;
  2734. mutex_lock(&sc->lock);
  2735. mfilt[0] = multicast;
  2736. mfilt[1] = multicast >> 32;
  2737. /* Only deal with supported flags */
  2738. changed_flags &= SUPPORTED_FIF_FLAGS;
  2739. *new_flags &= SUPPORTED_FIF_FLAGS;
  2740. /* If HW detects any phy or radar errors, leave those filters on.
  2741. * Also, always enable Unicast, Broadcasts and Multicast
  2742. * XXX: move unicast, bssid broadcasts and multicast to mac80211 */
  2743. rfilt = (ath5k_hw_get_rx_filter(ah) & (AR5K_RX_FILTER_PHYERR)) |
  2744. (AR5K_RX_FILTER_UCAST | AR5K_RX_FILTER_BCAST |
  2745. AR5K_RX_FILTER_MCAST);
  2746. if (changed_flags & (FIF_PROMISC_IN_BSS | FIF_OTHER_BSS)) {
  2747. if (*new_flags & FIF_PROMISC_IN_BSS) {
  2748. __set_bit(ATH_STAT_PROMISC, sc->status);
  2749. } else {
  2750. __clear_bit(ATH_STAT_PROMISC, sc->status);
  2751. }
  2752. }
  2753. if (test_bit(ATH_STAT_PROMISC, sc->status))
  2754. rfilt |= AR5K_RX_FILTER_PROM;
  2755. /* Note, AR5K_RX_FILTER_MCAST is already enabled */
  2756. if (*new_flags & FIF_ALLMULTI) {
  2757. mfilt[0] = ~0;
  2758. mfilt[1] = ~0;
  2759. }
  2760. /* This is the best we can do */
  2761. if (*new_flags & (FIF_FCSFAIL | FIF_PLCPFAIL))
  2762. rfilt |= AR5K_RX_FILTER_PHYERR;
  2763. /* FIF_BCN_PRBRESP_PROMISC really means to enable beacons
  2764. * and probes for any BSSID */
  2765. if ((*new_flags & FIF_BCN_PRBRESP_PROMISC) || (sc->nvifs > 1))
  2766. rfilt |= AR5K_RX_FILTER_BEACON;
  2767. /* FIF_CONTROL doc says that if FIF_PROMISC_IN_BSS is not
  2768. * set we should only pass on control frames for this
  2769. * station. This needs testing. I believe right now this
  2770. * enables *all* control frames, which is OK.. but
  2771. * but we should see if we can improve on granularity */
  2772. if (*new_flags & FIF_CONTROL)
  2773. rfilt |= AR5K_RX_FILTER_CONTROL;
  2774. /* Additional settings per mode -- this is per ath5k */
  2775. /* XXX move these to mac80211, and add a beacon IFF flag to mac80211 */
  2776. switch (sc->opmode) {
  2777. case NL80211_IFTYPE_MESH_POINT:
  2778. rfilt |= AR5K_RX_FILTER_CONTROL |
  2779. AR5K_RX_FILTER_BEACON |
  2780. AR5K_RX_FILTER_PROBEREQ |
  2781. AR5K_RX_FILTER_PROM;
  2782. break;
  2783. case NL80211_IFTYPE_AP:
  2784. case NL80211_IFTYPE_ADHOC:
  2785. rfilt |= AR5K_RX_FILTER_PROBEREQ |
  2786. AR5K_RX_FILTER_BEACON;
  2787. break;
  2788. case NL80211_IFTYPE_STATION:
  2789. if (sc->assoc)
  2790. rfilt |= AR5K_RX_FILTER_BEACON;
  2791. default:
  2792. break;
  2793. }
  2794. /* Set filters */
  2795. ath5k_hw_set_rx_filter(ah, rfilt);
  2796. /* Set multicast bits */
  2797. ath5k_hw_set_mcast_filter(ah, mfilt[0], mfilt[1]);
  2798. /* Set the cached hw filter flags, this will later actually
  2799. * be set in HW */
  2800. sc->filter_flags = rfilt;
  2801. mutex_unlock(&sc->lock);
  2802. }
  2803. static int
  2804. ath5k_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
  2805. struct ieee80211_vif *vif, struct ieee80211_sta *sta,
  2806. struct ieee80211_key_conf *key)
  2807. {
  2808. struct ath5k_softc *sc = hw->priv;
  2809. struct ath5k_hw *ah = sc->ah;
  2810. struct ath_common *common = ath5k_hw_common(ah);
  2811. int ret = 0;
  2812. if (modparam_nohwcrypt)
  2813. return -EOPNOTSUPP;
  2814. switch (key->cipher) {
  2815. case WLAN_CIPHER_SUITE_WEP40:
  2816. case WLAN_CIPHER_SUITE_WEP104:
  2817. case WLAN_CIPHER_SUITE_TKIP:
  2818. break;
  2819. case WLAN_CIPHER_SUITE_CCMP:
  2820. if (common->crypt_caps & ATH_CRYPT_CAP_CIPHER_AESCCM)
  2821. break;
  2822. return -EOPNOTSUPP;
  2823. default:
  2824. WARN_ON(1);
  2825. return -EINVAL;
  2826. }
  2827. mutex_lock(&sc->lock);
  2828. switch (cmd) {
  2829. case SET_KEY:
  2830. ret = ath_key_config(common, vif, sta, key);
  2831. if (ret >= 0) {
  2832. key->hw_key_idx = ret;
  2833. /* push IV and Michael MIC generation to stack */
  2834. key->flags |= IEEE80211_KEY_FLAG_GENERATE_IV;
  2835. if (key->cipher == WLAN_CIPHER_SUITE_TKIP)
  2836. key->flags |= IEEE80211_KEY_FLAG_GENERATE_MMIC;
  2837. if (key->cipher == WLAN_CIPHER_SUITE_CCMP)
  2838. key->flags |= IEEE80211_KEY_FLAG_SW_MGMT;
  2839. ret = 0;
  2840. }
  2841. break;
  2842. case DISABLE_KEY:
  2843. ath_key_delete(common, key);
  2844. break;
  2845. default:
  2846. ret = -EINVAL;
  2847. }
  2848. mmiowb();
  2849. mutex_unlock(&sc->lock);
  2850. return ret;
  2851. }
  2852. static int
  2853. ath5k_get_stats(struct ieee80211_hw *hw,
  2854. struct ieee80211_low_level_stats *stats)
  2855. {
  2856. struct ath5k_softc *sc = hw->priv;
  2857. /* Force update */
  2858. ath5k_hw_update_mib_counters(sc->ah);
  2859. stats->dot11ACKFailureCount = sc->stats.ack_fail;
  2860. stats->dot11RTSFailureCount = sc->stats.rts_fail;
  2861. stats->dot11RTSSuccessCount = sc->stats.rts_ok;
  2862. stats->dot11FCSErrorCount = sc->stats.fcs_error;
  2863. return 0;
  2864. }
  2865. static int ath5k_get_survey(struct ieee80211_hw *hw, int idx,
  2866. struct survey_info *survey)
  2867. {
  2868. struct ath5k_softc *sc = hw->priv;
  2869. struct ieee80211_conf *conf = &hw->conf;
  2870. struct ath_common *common = ath5k_hw_common(sc->ah);
  2871. struct ath_cycle_counters *cc = &common->cc_survey;
  2872. unsigned int div = common->clockrate * 1000;
  2873. if (idx != 0)
  2874. return -ENOENT;
  2875. survey->channel = conf->channel;
  2876. survey->filled = SURVEY_INFO_NOISE_DBM;
  2877. survey->noise = sc->ah->ah_noise_floor;
  2878. spin_lock_bh(&common->cc_lock);
  2879. ath_hw_cycle_counters_update(common);
  2880. if (cc->cycles > 0) {
  2881. survey->filled |= SURVEY_INFO_CHANNEL_TIME |
  2882. SURVEY_INFO_CHANNEL_TIME_BUSY |
  2883. SURVEY_INFO_CHANNEL_TIME_RX |
  2884. SURVEY_INFO_CHANNEL_TIME_TX;
  2885. survey->channel_time += cc->cycles / div;
  2886. survey->channel_time_busy += cc->rx_busy / div;
  2887. survey->channel_time_rx += cc->rx_frame / div;
  2888. survey->channel_time_tx += cc->tx_frame / div;
  2889. }
  2890. memset(cc, 0, sizeof(*cc));
  2891. spin_unlock_bh(&common->cc_lock);
  2892. return 0;
  2893. }
  2894. static u64
  2895. ath5k_get_tsf(struct ieee80211_hw *hw)
  2896. {
  2897. struct ath5k_softc *sc = hw->priv;
  2898. return ath5k_hw_get_tsf64(sc->ah);
  2899. }
  2900. static void
  2901. ath5k_set_tsf(struct ieee80211_hw *hw, u64 tsf)
  2902. {
  2903. struct ath5k_softc *sc = hw->priv;
  2904. ath5k_hw_set_tsf64(sc->ah, tsf);
  2905. }
  2906. static void
  2907. ath5k_reset_tsf(struct ieee80211_hw *hw)
  2908. {
  2909. struct ath5k_softc *sc = hw->priv;
  2910. /*
  2911. * in IBSS mode we need to update the beacon timers too.
  2912. * this will also reset the TSF if we call it with 0
  2913. */
  2914. if (sc->opmode == NL80211_IFTYPE_ADHOC)
  2915. ath5k_beacon_update_timers(sc, 0);
  2916. else
  2917. ath5k_hw_reset_tsf(sc->ah);
  2918. }
  2919. static void
  2920. set_beacon_filter(struct ieee80211_hw *hw, bool enable)
  2921. {
  2922. struct ath5k_softc *sc = hw->priv;
  2923. struct ath5k_hw *ah = sc->ah;
  2924. u32 rfilt;
  2925. rfilt = ath5k_hw_get_rx_filter(ah);
  2926. if (enable)
  2927. rfilt |= AR5K_RX_FILTER_BEACON;
  2928. else
  2929. rfilt &= ~AR5K_RX_FILTER_BEACON;
  2930. ath5k_hw_set_rx_filter(ah, rfilt);
  2931. sc->filter_flags = rfilt;
  2932. }
  2933. static void ath5k_bss_info_changed(struct ieee80211_hw *hw,
  2934. struct ieee80211_vif *vif,
  2935. struct ieee80211_bss_conf *bss_conf,
  2936. u32 changes)
  2937. {
  2938. struct ath5k_vif *avf = (void *)vif->drv_priv;
  2939. struct ath5k_softc *sc = hw->priv;
  2940. struct ath5k_hw *ah = sc->ah;
  2941. struct ath_common *common = ath5k_hw_common(ah);
  2942. unsigned long flags;
  2943. mutex_lock(&sc->lock);
  2944. if (changes & BSS_CHANGED_BSSID) {
  2945. /* Cache for later use during resets */
  2946. memcpy(common->curbssid, bss_conf->bssid, ETH_ALEN);
  2947. common->curaid = 0;
  2948. ath5k_hw_set_bssid(ah);
  2949. mmiowb();
  2950. }
  2951. if (changes & BSS_CHANGED_BEACON_INT)
  2952. sc->bintval = bss_conf->beacon_int;
  2953. if (changes & BSS_CHANGED_ASSOC) {
  2954. avf->assoc = bss_conf->assoc;
  2955. if (bss_conf->assoc)
  2956. sc->assoc = bss_conf->assoc;
  2957. else
  2958. sc->assoc = ath_any_vif_assoc(sc);
  2959. if (sc->opmode == NL80211_IFTYPE_STATION)
  2960. set_beacon_filter(hw, sc->assoc);
  2961. ath5k_hw_set_ledstate(sc->ah, sc->assoc ?
  2962. AR5K_LED_ASSOC : AR5K_LED_INIT);
  2963. if (bss_conf->assoc) {
  2964. ATH5K_DBG(sc, ATH5K_DEBUG_ANY,
  2965. "Bss Info ASSOC %d, bssid: %pM\n",
  2966. bss_conf->aid, common->curbssid);
  2967. common->curaid = bss_conf->aid;
  2968. ath5k_hw_set_bssid(ah);
  2969. /* Once ANI is available you would start it here */
  2970. }
  2971. }
  2972. if (changes & BSS_CHANGED_BEACON) {
  2973. spin_lock_irqsave(&sc->block, flags);
  2974. ath5k_beacon_update(hw, vif);
  2975. spin_unlock_irqrestore(&sc->block, flags);
  2976. }
  2977. if (changes & BSS_CHANGED_BEACON_ENABLED)
  2978. sc->enable_beacon = bss_conf->enable_beacon;
  2979. if (changes & (BSS_CHANGED_BEACON | BSS_CHANGED_BEACON_ENABLED |
  2980. BSS_CHANGED_BEACON_INT))
  2981. ath5k_beacon_config(sc);
  2982. mutex_unlock(&sc->lock);
  2983. }
  2984. static void ath5k_sw_scan_start(struct ieee80211_hw *hw)
  2985. {
  2986. struct ath5k_softc *sc = hw->priv;
  2987. if (!sc->assoc)
  2988. ath5k_hw_set_ledstate(sc->ah, AR5K_LED_SCAN);
  2989. }
  2990. static void ath5k_sw_scan_complete(struct ieee80211_hw *hw)
  2991. {
  2992. struct ath5k_softc *sc = hw->priv;
  2993. ath5k_hw_set_ledstate(sc->ah, sc->assoc ?
  2994. AR5K_LED_ASSOC : AR5K_LED_INIT);
  2995. }
  2996. /**
  2997. * ath5k_set_coverage_class - Set IEEE 802.11 coverage class
  2998. *
  2999. * @hw: struct ieee80211_hw pointer
  3000. * @coverage_class: IEEE 802.11 coverage class number
  3001. *
  3002. * Mac80211 callback. Sets slot time, ACK timeout and CTS timeout for given
  3003. * coverage class. The values are persistent, they are restored after device
  3004. * reset.
  3005. */
  3006. static void ath5k_set_coverage_class(struct ieee80211_hw *hw, u8 coverage_class)
  3007. {
  3008. struct ath5k_softc *sc = hw->priv;
  3009. mutex_lock(&sc->lock);
  3010. ath5k_hw_set_coverage_class(sc->ah, coverage_class);
  3011. mutex_unlock(&sc->lock);
  3012. }
  3013. static int ath5k_conf_tx(struct ieee80211_hw *hw, u16 queue,
  3014. const struct ieee80211_tx_queue_params *params)
  3015. {
  3016. struct ath5k_softc *sc = hw->priv;
  3017. struct ath5k_hw *ah = sc->ah;
  3018. struct ath5k_txq_info qi;
  3019. int ret = 0;
  3020. if (queue >= ah->ah_capabilities.cap_queues.q_tx_num)
  3021. return 0;
  3022. mutex_lock(&sc->lock);
  3023. ath5k_hw_get_tx_queueprops(ah, queue, &qi);
  3024. qi.tqi_aifs = params->aifs;
  3025. qi.tqi_cw_min = params->cw_min;
  3026. qi.tqi_cw_max = params->cw_max;
  3027. qi.tqi_burst_time = params->txop;
  3028. ATH5K_DBG(sc, ATH5K_DEBUG_ANY,
  3029. "Configure tx [queue %d], "
  3030. "aifs: %d, cw_min: %d, cw_max: %d, txop: %d\n",
  3031. queue, params->aifs, params->cw_min,
  3032. params->cw_max, params->txop);
  3033. if (ath5k_hw_set_tx_queueprops(ah, queue, &qi)) {
  3034. ATH5K_ERR(sc,
  3035. "Unable to update hardware queue %u!\n", queue);
  3036. ret = -EIO;
  3037. } else
  3038. ath5k_hw_reset_tx_queue(ah, queue);
  3039. mutex_unlock(&sc->lock);
  3040. return ret;
  3041. }
  3042. static int ath5k_set_antenna(struct ieee80211_hw *hw, u32 tx_ant, u32 rx_ant)
  3043. {
  3044. struct ath5k_softc *sc = hw->priv;
  3045. if (tx_ant == 1 && rx_ant == 1)
  3046. ath5k_hw_set_antenna_mode(sc->ah, AR5K_ANTMODE_FIXED_A);
  3047. else if (tx_ant == 2 && rx_ant == 2)
  3048. ath5k_hw_set_antenna_mode(sc->ah, AR5K_ANTMODE_FIXED_B);
  3049. else if ((tx_ant & 3) == 3 && (rx_ant & 3) == 3)
  3050. ath5k_hw_set_antenna_mode(sc->ah, AR5K_ANTMODE_DEFAULT);
  3051. else
  3052. return -EINVAL;
  3053. return 0;
  3054. }
  3055. static int ath5k_get_antenna(struct ieee80211_hw *hw, u32 *tx_ant, u32 *rx_ant)
  3056. {
  3057. struct ath5k_softc *sc = hw->priv;
  3058. switch (sc->ah->ah_ant_mode) {
  3059. case AR5K_ANTMODE_FIXED_A:
  3060. *tx_ant = 1; *rx_ant = 1; break;
  3061. case AR5K_ANTMODE_FIXED_B:
  3062. *tx_ant = 2; *rx_ant = 2; break;
  3063. case AR5K_ANTMODE_DEFAULT:
  3064. *tx_ant = 3; *rx_ant = 3; break;
  3065. }
  3066. return 0;
  3067. }
  3068. const struct ieee80211_ops ath5k_hw_ops = {
  3069. .tx = ath5k_tx,
  3070. .start = ath5k_start,
  3071. .stop = ath5k_stop,
  3072. .add_interface = ath5k_add_interface,
  3073. .remove_interface = ath5k_remove_interface,
  3074. .config = ath5k_config,
  3075. .prepare_multicast = ath5k_prepare_multicast,
  3076. .configure_filter = ath5k_configure_filter,
  3077. .set_key = ath5k_set_key,
  3078. .get_stats = ath5k_get_stats,
  3079. .get_survey = ath5k_get_survey,
  3080. .conf_tx = ath5k_conf_tx,
  3081. .get_tsf = ath5k_get_tsf,
  3082. .set_tsf = ath5k_set_tsf,
  3083. .reset_tsf = ath5k_reset_tsf,
  3084. .bss_info_changed = ath5k_bss_info_changed,
  3085. .sw_scan_start = ath5k_sw_scan_start,
  3086. .sw_scan_complete = ath5k_sw_scan_complete,
  3087. .set_coverage_class = ath5k_set_coverage_class,
  3088. .set_antenna = ath5k_set_antenna,
  3089. .get_antenna = ath5k_get_antenna,
  3090. };