base.c 88 KB

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