base.c 80 KB

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