base.c 80 KB

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