base.c 82 KB

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