base.c 86 KB

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