base.c 82 KB

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