base.c 80 KB

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