base.c 84 KB

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