base.c 85 KB

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