base.c 93 KB

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