base.c 81 KB

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