base.c 82 KB

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