base.c 86 KB

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