base.c 86 KB

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