base.c 99 KB

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