main.c 109 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062
  1. /*
  2. *
  3. * Broadcom B43legacy wireless driver
  4. *
  5. * Copyright (c) 2005 Martin Langer <martin-langer@gmx.de>
  6. * Copyright (c) 2005-2008 Stefano Brivio <stefano.brivio@polimi.it>
  7. * Copyright (c) 2005, 2006 Michael Buesch <m@bues.ch>
  8. * Copyright (c) 2005 Danny van Dyk <kugelfang@gentoo.org>
  9. * Copyright (c) 2005 Andreas Jaggi <andreas.jaggi@waterwave.ch>
  10. * Copyright (c) 2007 Larry Finger <Larry.Finger@lwfinger.net>
  11. *
  12. * Some parts of the code in this file are derived from the ipw2200
  13. * driver Copyright(c) 2003 - 2004 Intel Corporation.
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License as published by
  16. * the Free Software Foundation; either version 2 of the License, or
  17. * (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; see the file COPYING. If not, write to
  26. * the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
  27. * Boston, MA 02110-1301, USA.
  28. *
  29. */
  30. #include <linux/delay.h>
  31. #include <linux/init.h>
  32. #include <linux/module.h>
  33. #include <linux/if_arp.h>
  34. #include <linux/etherdevice.h>
  35. #include <linux/firmware.h>
  36. #include <linux/workqueue.h>
  37. #include <linux/sched.h>
  38. #include <linux/skbuff.h>
  39. #include <linux/dma-mapping.h>
  40. #include <linux/slab.h>
  41. #include <net/dst.h>
  42. #include <asm/unaligned.h>
  43. #include "b43legacy.h"
  44. #include "main.h"
  45. #include "debugfs.h"
  46. #include "phy.h"
  47. #include "dma.h"
  48. #include "pio.h"
  49. #include "sysfs.h"
  50. #include "xmit.h"
  51. #include "radio.h"
  52. MODULE_DESCRIPTION("Broadcom B43legacy wireless driver");
  53. MODULE_AUTHOR("Martin Langer");
  54. MODULE_AUTHOR("Stefano Brivio");
  55. MODULE_AUTHOR("Michael Buesch");
  56. MODULE_LICENSE("GPL");
  57. MODULE_FIRMWARE("b43legacy/ucode2.fw");
  58. MODULE_FIRMWARE("b43legacy/ucode4.fw");
  59. #if defined(CONFIG_B43LEGACY_DMA) && defined(CONFIG_B43LEGACY_PIO)
  60. static int modparam_pio;
  61. module_param_named(pio, modparam_pio, int, 0444);
  62. MODULE_PARM_DESC(pio, "enable(1) / disable(0) PIO mode");
  63. #elif defined(CONFIG_B43LEGACY_DMA)
  64. # define modparam_pio 0
  65. #elif defined(CONFIG_B43LEGACY_PIO)
  66. # define modparam_pio 1
  67. #endif
  68. static int modparam_bad_frames_preempt;
  69. module_param_named(bad_frames_preempt, modparam_bad_frames_preempt, int, 0444);
  70. MODULE_PARM_DESC(bad_frames_preempt, "enable(1) / disable(0) Bad Frames"
  71. " Preemption");
  72. static char modparam_fwpostfix[16];
  73. module_param_string(fwpostfix, modparam_fwpostfix, 16, 0444);
  74. MODULE_PARM_DESC(fwpostfix, "Postfix for the firmware files to load.");
  75. /* The following table supports BCM4301, BCM4303 and BCM4306/2 devices. */
  76. static const struct ssb_device_id b43legacy_ssb_tbl[] = {
  77. SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 2),
  78. SSB_DEVICE(SSB_VENDOR_BROADCOM, SSB_DEV_80211, 4),
  79. {},
  80. };
  81. MODULE_DEVICE_TABLE(ssb, b43legacy_ssb_tbl);
  82. /* Channel and ratetables are shared for all devices.
  83. * They can't be const, because ieee80211 puts some precalculated
  84. * data in there. This data is the same for all devices, so we don't
  85. * get concurrency issues */
  86. #define RATETAB_ENT(_rateid, _flags) \
  87. { \
  88. .bitrate = B43legacy_RATE_TO_100KBPS(_rateid), \
  89. .hw_value = (_rateid), \
  90. .flags = (_flags), \
  91. }
  92. /*
  93. * NOTE: When changing this, sync with xmit.c's
  94. * b43legacy_plcp_get_bitrate_idx_* functions!
  95. */
  96. static struct ieee80211_rate __b43legacy_ratetable[] = {
  97. RATETAB_ENT(B43legacy_CCK_RATE_1MB, 0),
  98. RATETAB_ENT(B43legacy_CCK_RATE_2MB, IEEE80211_RATE_SHORT_PREAMBLE),
  99. RATETAB_ENT(B43legacy_CCK_RATE_5MB, IEEE80211_RATE_SHORT_PREAMBLE),
  100. RATETAB_ENT(B43legacy_CCK_RATE_11MB, IEEE80211_RATE_SHORT_PREAMBLE),
  101. RATETAB_ENT(B43legacy_OFDM_RATE_6MB, 0),
  102. RATETAB_ENT(B43legacy_OFDM_RATE_9MB, 0),
  103. RATETAB_ENT(B43legacy_OFDM_RATE_12MB, 0),
  104. RATETAB_ENT(B43legacy_OFDM_RATE_18MB, 0),
  105. RATETAB_ENT(B43legacy_OFDM_RATE_24MB, 0),
  106. RATETAB_ENT(B43legacy_OFDM_RATE_36MB, 0),
  107. RATETAB_ENT(B43legacy_OFDM_RATE_48MB, 0),
  108. RATETAB_ENT(B43legacy_OFDM_RATE_54MB, 0),
  109. };
  110. #define b43legacy_b_ratetable (__b43legacy_ratetable + 0)
  111. #define b43legacy_b_ratetable_size 4
  112. #define b43legacy_g_ratetable (__b43legacy_ratetable + 0)
  113. #define b43legacy_g_ratetable_size 12
  114. #define CHANTAB_ENT(_chanid, _freq) \
  115. { \
  116. .center_freq = (_freq), \
  117. .hw_value = (_chanid), \
  118. }
  119. static struct ieee80211_channel b43legacy_bg_chantable[] = {
  120. CHANTAB_ENT(1, 2412),
  121. CHANTAB_ENT(2, 2417),
  122. CHANTAB_ENT(3, 2422),
  123. CHANTAB_ENT(4, 2427),
  124. CHANTAB_ENT(5, 2432),
  125. CHANTAB_ENT(6, 2437),
  126. CHANTAB_ENT(7, 2442),
  127. CHANTAB_ENT(8, 2447),
  128. CHANTAB_ENT(9, 2452),
  129. CHANTAB_ENT(10, 2457),
  130. CHANTAB_ENT(11, 2462),
  131. CHANTAB_ENT(12, 2467),
  132. CHANTAB_ENT(13, 2472),
  133. CHANTAB_ENT(14, 2484),
  134. };
  135. static struct ieee80211_supported_band b43legacy_band_2GHz_BPHY = {
  136. .channels = b43legacy_bg_chantable,
  137. .n_channels = ARRAY_SIZE(b43legacy_bg_chantable),
  138. .bitrates = b43legacy_b_ratetable,
  139. .n_bitrates = b43legacy_b_ratetable_size,
  140. };
  141. static struct ieee80211_supported_band b43legacy_band_2GHz_GPHY = {
  142. .channels = b43legacy_bg_chantable,
  143. .n_channels = ARRAY_SIZE(b43legacy_bg_chantable),
  144. .bitrates = b43legacy_g_ratetable,
  145. .n_bitrates = b43legacy_g_ratetable_size,
  146. };
  147. static void b43legacy_wireless_core_exit(struct b43legacy_wldev *dev);
  148. static int b43legacy_wireless_core_init(struct b43legacy_wldev *dev);
  149. static void b43legacy_wireless_core_stop(struct b43legacy_wldev *dev);
  150. static int b43legacy_wireless_core_start(struct b43legacy_wldev *dev);
  151. static int b43legacy_ratelimit(struct b43legacy_wl *wl)
  152. {
  153. if (!wl || !wl->current_dev)
  154. return 1;
  155. if (b43legacy_status(wl->current_dev) < B43legacy_STAT_STARTED)
  156. return 1;
  157. /* We are up and running.
  158. * Ratelimit the messages to avoid DoS over the net. */
  159. return net_ratelimit();
  160. }
  161. void b43legacyinfo(struct b43legacy_wl *wl, const char *fmt, ...)
  162. {
  163. struct va_format vaf;
  164. va_list args;
  165. if (!b43legacy_ratelimit(wl))
  166. return;
  167. va_start(args, fmt);
  168. vaf.fmt = fmt;
  169. vaf.va = &args;
  170. printk(KERN_INFO "b43legacy-%s: %pV",
  171. (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
  172. va_end(args);
  173. }
  174. void b43legacyerr(struct b43legacy_wl *wl, const char *fmt, ...)
  175. {
  176. struct va_format vaf;
  177. va_list args;
  178. if (!b43legacy_ratelimit(wl))
  179. return;
  180. va_start(args, fmt);
  181. vaf.fmt = fmt;
  182. vaf.va = &args;
  183. printk(KERN_ERR "b43legacy-%s ERROR: %pV",
  184. (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
  185. va_end(args);
  186. }
  187. void b43legacywarn(struct b43legacy_wl *wl, const char *fmt, ...)
  188. {
  189. struct va_format vaf;
  190. va_list args;
  191. if (!b43legacy_ratelimit(wl))
  192. return;
  193. va_start(args, fmt);
  194. vaf.fmt = fmt;
  195. vaf.va = &args;
  196. printk(KERN_WARNING "b43legacy-%s warning: %pV",
  197. (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
  198. va_end(args);
  199. }
  200. #if B43legacy_DEBUG
  201. void b43legacydbg(struct b43legacy_wl *wl, const char *fmt, ...)
  202. {
  203. struct va_format vaf;
  204. va_list args;
  205. va_start(args, fmt);
  206. vaf.fmt = fmt;
  207. vaf.va = &args;
  208. printk(KERN_DEBUG "b43legacy-%s debug: %pV",
  209. (wl && wl->hw) ? wiphy_name(wl->hw->wiphy) : "wlan", &vaf);
  210. va_end(args);
  211. }
  212. #endif /* DEBUG */
  213. static void b43legacy_ram_write(struct b43legacy_wldev *dev, u16 offset,
  214. u32 val)
  215. {
  216. u32 status;
  217. B43legacy_WARN_ON(offset % 4 != 0);
  218. status = b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
  219. if (status & B43legacy_MACCTL_BE)
  220. val = swab32(val);
  221. b43legacy_write32(dev, B43legacy_MMIO_RAM_CONTROL, offset);
  222. mmiowb();
  223. b43legacy_write32(dev, B43legacy_MMIO_RAM_DATA, val);
  224. }
  225. static inline
  226. void b43legacy_shm_control_word(struct b43legacy_wldev *dev,
  227. u16 routing, u16 offset)
  228. {
  229. u32 control;
  230. /* "offset" is the WORD offset. */
  231. control = routing;
  232. control <<= 16;
  233. control |= offset;
  234. b43legacy_write32(dev, B43legacy_MMIO_SHM_CONTROL, control);
  235. }
  236. u32 b43legacy_shm_read32(struct b43legacy_wldev *dev,
  237. u16 routing, u16 offset)
  238. {
  239. u32 ret;
  240. if (routing == B43legacy_SHM_SHARED) {
  241. B43legacy_WARN_ON((offset & 0x0001) != 0);
  242. if (offset & 0x0003) {
  243. /* Unaligned access */
  244. b43legacy_shm_control_word(dev, routing, offset >> 2);
  245. ret = b43legacy_read16(dev,
  246. B43legacy_MMIO_SHM_DATA_UNALIGNED);
  247. ret <<= 16;
  248. b43legacy_shm_control_word(dev, routing,
  249. (offset >> 2) + 1);
  250. ret |= b43legacy_read16(dev, B43legacy_MMIO_SHM_DATA);
  251. return ret;
  252. }
  253. offset >>= 2;
  254. }
  255. b43legacy_shm_control_word(dev, routing, offset);
  256. ret = b43legacy_read32(dev, B43legacy_MMIO_SHM_DATA);
  257. return ret;
  258. }
  259. u16 b43legacy_shm_read16(struct b43legacy_wldev *dev,
  260. u16 routing, u16 offset)
  261. {
  262. u16 ret;
  263. if (routing == B43legacy_SHM_SHARED) {
  264. B43legacy_WARN_ON((offset & 0x0001) != 0);
  265. if (offset & 0x0003) {
  266. /* Unaligned access */
  267. b43legacy_shm_control_word(dev, routing, offset >> 2);
  268. ret = b43legacy_read16(dev,
  269. B43legacy_MMIO_SHM_DATA_UNALIGNED);
  270. return ret;
  271. }
  272. offset >>= 2;
  273. }
  274. b43legacy_shm_control_word(dev, routing, offset);
  275. ret = b43legacy_read16(dev, B43legacy_MMIO_SHM_DATA);
  276. return ret;
  277. }
  278. void b43legacy_shm_write32(struct b43legacy_wldev *dev,
  279. u16 routing, u16 offset,
  280. u32 value)
  281. {
  282. if (routing == B43legacy_SHM_SHARED) {
  283. B43legacy_WARN_ON((offset & 0x0001) != 0);
  284. if (offset & 0x0003) {
  285. /* Unaligned access */
  286. b43legacy_shm_control_word(dev, routing, offset >> 2);
  287. mmiowb();
  288. b43legacy_write16(dev,
  289. B43legacy_MMIO_SHM_DATA_UNALIGNED,
  290. (value >> 16) & 0xffff);
  291. mmiowb();
  292. b43legacy_shm_control_word(dev, routing,
  293. (offset >> 2) + 1);
  294. mmiowb();
  295. b43legacy_write16(dev, B43legacy_MMIO_SHM_DATA,
  296. value & 0xffff);
  297. return;
  298. }
  299. offset >>= 2;
  300. }
  301. b43legacy_shm_control_word(dev, routing, offset);
  302. mmiowb();
  303. b43legacy_write32(dev, B43legacy_MMIO_SHM_DATA, value);
  304. }
  305. void b43legacy_shm_write16(struct b43legacy_wldev *dev, u16 routing, u16 offset,
  306. u16 value)
  307. {
  308. if (routing == B43legacy_SHM_SHARED) {
  309. B43legacy_WARN_ON((offset & 0x0001) != 0);
  310. if (offset & 0x0003) {
  311. /* Unaligned access */
  312. b43legacy_shm_control_word(dev, routing, offset >> 2);
  313. mmiowb();
  314. b43legacy_write16(dev,
  315. B43legacy_MMIO_SHM_DATA_UNALIGNED,
  316. value);
  317. return;
  318. }
  319. offset >>= 2;
  320. }
  321. b43legacy_shm_control_word(dev, routing, offset);
  322. mmiowb();
  323. b43legacy_write16(dev, B43legacy_MMIO_SHM_DATA, value);
  324. }
  325. /* Read HostFlags */
  326. u32 b43legacy_hf_read(struct b43legacy_wldev *dev)
  327. {
  328. u32 ret;
  329. ret = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
  330. B43legacy_SHM_SH_HOSTFHI);
  331. ret <<= 16;
  332. ret |= b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
  333. B43legacy_SHM_SH_HOSTFLO);
  334. return ret;
  335. }
  336. /* Write HostFlags */
  337. void b43legacy_hf_write(struct b43legacy_wldev *dev, u32 value)
  338. {
  339. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
  340. B43legacy_SHM_SH_HOSTFLO,
  341. (value & 0x0000FFFF));
  342. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
  343. B43legacy_SHM_SH_HOSTFHI,
  344. ((value & 0xFFFF0000) >> 16));
  345. }
  346. void b43legacy_tsf_read(struct b43legacy_wldev *dev, u64 *tsf)
  347. {
  348. /* We need to be careful. As we read the TSF from multiple
  349. * registers, we should take care of register overflows.
  350. * In theory, the whole tsf read process should be atomic.
  351. * We try to be atomic here, by restaring the read process,
  352. * if any of the high registers changed (overflew).
  353. */
  354. if (dev->dev->id.revision >= 3) {
  355. u32 low;
  356. u32 high;
  357. u32 high2;
  358. do {
  359. high = b43legacy_read32(dev,
  360. B43legacy_MMIO_REV3PLUS_TSF_HIGH);
  361. low = b43legacy_read32(dev,
  362. B43legacy_MMIO_REV3PLUS_TSF_LOW);
  363. high2 = b43legacy_read32(dev,
  364. B43legacy_MMIO_REV3PLUS_TSF_HIGH);
  365. } while (unlikely(high != high2));
  366. *tsf = high;
  367. *tsf <<= 32;
  368. *tsf |= low;
  369. } else {
  370. u64 tmp;
  371. u16 v0;
  372. u16 v1;
  373. u16 v2;
  374. u16 v3;
  375. u16 test1;
  376. u16 test2;
  377. u16 test3;
  378. do {
  379. v3 = b43legacy_read16(dev, B43legacy_MMIO_TSF_3);
  380. v2 = b43legacy_read16(dev, B43legacy_MMIO_TSF_2);
  381. v1 = b43legacy_read16(dev, B43legacy_MMIO_TSF_1);
  382. v0 = b43legacy_read16(dev, B43legacy_MMIO_TSF_0);
  383. test3 = b43legacy_read16(dev, B43legacy_MMIO_TSF_3);
  384. test2 = b43legacy_read16(dev, B43legacy_MMIO_TSF_2);
  385. test1 = b43legacy_read16(dev, B43legacy_MMIO_TSF_1);
  386. } while (v3 != test3 || v2 != test2 || v1 != test1);
  387. *tsf = v3;
  388. *tsf <<= 48;
  389. tmp = v2;
  390. tmp <<= 32;
  391. *tsf |= tmp;
  392. tmp = v1;
  393. tmp <<= 16;
  394. *tsf |= tmp;
  395. *tsf |= v0;
  396. }
  397. }
  398. static void b43legacy_time_lock(struct b43legacy_wldev *dev)
  399. {
  400. u32 status;
  401. status = b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
  402. status |= B43legacy_MACCTL_TBTTHOLD;
  403. b43legacy_write32(dev, B43legacy_MMIO_MACCTL, status);
  404. mmiowb();
  405. }
  406. static void b43legacy_time_unlock(struct b43legacy_wldev *dev)
  407. {
  408. u32 status;
  409. status = b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
  410. status &= ~B43legacy_MACCTL_TBTTHOLD;
  411. b43legacy_write32(dev, B43legacy_MMIO_MACCTL, status);
  412. }
  413. static void b43legacy_tsf_write_locked(struct b43legacy_wldev *dev, u64 tsf)
  414. {
  415. /* Be careful with the in-progress timer.
  416. * First zero out the low register, so we have a full
  417. * register-overflow duration to complete the operation.
  418. */
  419. if (dev->dev->id.revision >= 3) {
  420. u32 lo = (tsf & 0x00000000FFFFFFFFULL);
  421. u32 hi = (tsf & 0xFFFFFFFF00000000ULL) >> 32;
  422. b43legacy_write32(dev, B43legacy_MMIO_REV3PLUS_TSF_LOW, 0);
  423. mmiowb();
  424. b43legacy_write32(dev, B43legacy_MMIO_REV3PLUS_TSF_HIGH,
  425. hi);
  426. mmiowb();
  427. b43legacy_write32(dev, B43legacy_MMIO_REV3PLUS_TSF_LOW,
  428. lo);
  429. } else {
  430. u16 v0 = (tsf & 0x000000000000FFFFULL);
  431. u16 v1 = (tsf & 0x00000000FFFF0000ULL) >> 16;
  432. u16 v2 = (tsf & 0x0000FFFF00000000ULL) >> 32;
  433. u16 v3 = (tsf & 0xFFFF000000000000ULL) >> 48;
  434. b43legacy_write16(dev, B43legacy_MMIO_TSF_0, 0);
  435. mmiowb();
  436. b43legacy_write16(dev, B43legacy_MMIO_TSF_3, v3);
  437. mmiowb();
  438. b43legacy_write16(dev, B43legacy_MMIO_TSF_2, v2);
  439. mmiowb();
  440. b43legacy_write16(dev, B43legacy_MMIO_TSF_1, v1);
  441. mmiowb();
  442. b43legacy_write16(dev, B43legacy_MMIO_TSF_0, v0);
  443. }
  444. }
  445. void b43legacy_tsf_write(struct b43legacy_wldev *dev, u64 tsf)
  446. {
  447. b43legacy_time_lock(dev);
  448. b43legacy_tsf_write_locked(dev, tsf);
  449. b43legacy_time_unlock(dev);
  450. }
  451. static
  452. void b43legacy_macfilter_set(struct b43legacy_wldev *dev,
  453. u16 offset, const u8 *mac)
  454. {
  455. static const u8 zero_addr[ETH_ALEN] = { 0 };
  456. u16 data;
  457. if (!mac)
  458. mac = zero_addr;
  459. offset |= 0x0020;
  460. b43legacy_write16(dev, B43legacy_MMIO_MACFILTER_CONTROL, offset);
  461. data = mac[0];
  462. data |= mac[1] << 8;
  463. b43legacy_write16(dev, B43legacy_MMIO_MACFILTER_DATA, data);
  464. data = mac[2];
  465. data |= mac[3] << 8;
  466. b43legacy_write16(dev, B43legacy_MMIO_MACFILTER_DATA, data);
  467. data = mac[4];
  468. data |= mac[5] << 8;
  469. b43legacy_write16(dev, B43legacy_MMIO_MACFILTER_DATA, data);
  470. }
  471. static void b43legacy_write_mac_bssid_templates(struct b43legacy_wldev *dev)
  472. {
  473. static const u8 zero_addr[ETH_ALEN] = { 0 };
  474. const u8 *mac = dev->wl->mac_addr;
  475. const u8 *bssid = dev->wl->bssid;
  476. u8 mac_bssid[ETH_ALEN * 2];
  477. int i;
  478. u32 tmp;
  479. if (!bssid)
  480. bssid = zero_addr;
  481. if (!mac)
  482. mac = zero_addr;
  483. b43legacy_macfilter_set(dev, B43legacy_MACFILTER_BSSID, bssid);
  484. memcpy(mac_bssid, mac, ETH_ALEN);
  485. memcpy(mac_bssid + ETH_ALEN, bssid, ETH_ALEN);
  486. /* Write our MAC address and BSSID to template ram */
  487. for (i = 0; i < ARRAY_SIZE(mac_bssid); i += sizeof(u32)) {
  488. tmp = (u32)(mac_bssid[i + 0]);
  489. tmp |= (u32)(mac_bssid[i + 1]) << 8;
  490. tmp |= (u32)(mac_bssid[i + 2]) << 16;
  491. tmp |= (u32)(mac_bssid[i + 3]) << 24;
  492. b43legacy_ram_write(dev, 0x20 + i, tmp);
  493. b43legacy_ram_write(dev, 0x78 + i, tmp);
  494. b43legacy_ram_write(dev, 0x478 + i, tmp);
  495. }
  496. }
  497. static void b43legacy_upload_card_macaddress(struct b43legacy_wldev *dev)
  498. {
  499. b43legacy_write_mac_bssid_templates(dev);
  500. b43legacy_macfilter_set(dev, B43legacy_MACFILTER_SELF,
  501. dev->wl->mac_addr);
  502. }
  503. static void b43legacy_set_slot_time(struct b43legacy_wldev *dev,
  504. u16 slot_time)
  505. {
  506. /* slot_time is in usec. */
  507. if (dev->phy.type != B43legacy_PHYTYPE_G)
  508. return;
  509. b43legacy_write16(dev, 0x684, 510 + slot_time);
  510. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, 0x0010,
  511. slot_time);
  512. }
  513. static void b43legacy_short_slot_timing_enable(struct b43legacy_wldev *dev)
  514. {
  515. b43legacy_set_slot_time(dev, 9);
  516. }
  517. static void b43legacy_short_slot_timing_disable(struct b43legacy_wldev *dev)
  518. {
  519. b43legacy_set_slot_time(dev, 20);
  520. }
  521. /* Synchronize IRQ top- and bottom-half.
  522. * IRQs must be masked before calling this.
  523. * This must not be called with the irq_lock held.
  524. */
  525. static void b43legacy_synchronize_irq(struct b43legacy_wldev *dev)
  526. {
  527. synchronize_irq(dev->dev->irq);
  528. tasklet_kill(&dev->isr_tasklet);
  529. }
  530. /* DummyTransmission function, as documented on
  531. * http://bcm-specs.sipsolutions.net/DummyTransmission
  532. */
  533. void b43legacy_dummy_transmission(struct b43legacy_wldev *dev)
  534. {
  535. struct b43legacy_phy *phy = &dev->phy;
  536. unsigned int i;
  537. unsigned int max_loop;
  538. u16 value;
  539. u32 buffer[5] = {
  540. 0x00000000,
  541. 0x00D40000,
  542. 0x00000000,
  543. 0x01000000,
  544. 0x00000000,
  545. };
  546. switch (phy->type) {
  547. case B43legacy_PHYTYPE_B:
  548. case B43legacy_PHYTYPE_G:
  549. max_loop = 0xFA;
  550. buffer[0] = 0x000B846E;
  551. break;
  552. default:
  553. B43legacy_BUG_ON(1);
  554. return;
  555. }
  556. for (i = 0; i < 5; i++)
  557. b43legacy_ram_write(dev, i * 4, buffer[i]);
  558. /* dummy read follows */
  559. b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
  560. b43legacy_write16(dev, 0x0568, 0x0000);
  561. b43legacy_write16(dev, 0x07C0, 0x0000);
  562. b43legacy_write16(dev, 0x050C, 0x0000);
  563. b43legacy_write16(dev, 0x0508, 0x0000);
  564. b43legacy_write16(dev, 0x050A, 0x0000);
  565. b43legacy_write16(dev, 0x054C, 0x0000);
  566. b43legacy_write16(dev, 0x056A, 0x0014);
  567. b43legacy_write16(dev, 0x0568, 0x0826);
  568. b43legacy_write16(dev, 0x0500, 0x0000);
  569. b43legacy_write16(dev, 0x0502, 0x0030);
  570. if (phy->radio_ver == 0x2050 && phy->radio_rev <= 0x5)
  571. b43legacy_radio_write16(dev, 0x0051, 0x0017);
  572. for (i = 0x00; i < max_loop; i++) {
  573. value = b43legacy_read16(dev, 0x050E);
  574. if (value & 0x0080)
  575. break;
  576. udelay(10);
  577. }
  578. for (i = 0x00; i < 0x0A; i++) {
  579. value = b43legacy_read16(dev, 0x050E);
  580. if (value & 0x0400)
  581. break;
  582. udelay(10);
  583. }
  584. for (i = 0x00; i < 0x0A; i++) {
  585. value = b43legacy_read16(dev, 0x0690);
  586. if (!(value & 0x0100))
  587. break;
  588. udelay(10);
  589. }
  590. if (phy->radio_ver == 0x2050 && phy->radio_rev <= 0x5)
  591. b43legacy_radio_write16(dev, 0x0051, 0x0037);
  592. }
  593. /* Turn the Analog ON/OFF */
  594. static void b43legacy_switch_analog(struct b43legacy_wldev *dev, int on)
  595. {
  596. b43legacy_write16(dev, B43legacy_MMIO_PHY0, on ? 0 : 0xF4);
  597. }
  598. void b43legacy_wireless_core_reset(struct b43legacy_wldev *dev, u32 flags)
  599. {
  600. u32 tmslow;
  601. u32 macctl;
  602. flags |= B43legacy_TMSLOW_PHYCLKEN;
  603. flags |= B43legacy_TMSLOW_PHYRESET;
  604. ssb_device_enable(dev->dev, flags);
  605. msleep(2); /* Wait for the PLL to turn on. */
  606. /* Now take the PHY out of Reset again */
  607. tmslow = ssb_read32(dev->dev, SSB_TMSLOW);
  608. tmslow |= SSB_TMSLOW_FGC;
  609. tmslow &= ~B43legacy_TMSLOW_PHYRESET;
  610. ssb_write32(dev->dev, SSB_TMSLOW, tmslow);
  611. ssb_read32(dev->dev, SSB_TMSLOW); /* flush */
  612. msleep(1);
  613. tmslow &= ~SSB_TMSLOW_FGC;
  614. ssb_write32(dev->dev, SSB_TMSLOW, tmslow);
  615. ssb_read32(dev->dev, SSB_TMSLOW); /* flush */
  616. msleep(1);
  617. /* Turn Analog ON */
  618. b43legacy_switch_analog(dev, 1);
  619. macctl = b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
  620. macctl &= ~B43legacy_MACCTL_GMODE;
  621. if (flags & B43legacy_TMSLOW_GMODE) {
  622. macctl |= B43legacy_MACCTL_GMODE;
  623. dev->phy.gmode = true;
  624. } else
  625. dev->phy.gmode = false;
  626. macctl |= B43legacy_MACCTL_IHR_ENABLED;
  627. b43legacy_write32(dev, B43legacy_MMIO_MACCTL, macctl);
  628. }
  629. static void handle_irq_transmit_status(struct b43legacy_wldev *dev)
  630. {
  631. u32 v0;
  632. u32 v1;
  633. u16 tmp;
  634. struct b43legacy_txstatus stat;
  635. while (1) {
  636. v0 = b43legacy_read32(dev, B43legacy_MMIO_XMITSTAT_0);
  637. if (!(v0 & 0x00000001))
  638. break;
  639. v1 = b43legacy_read32(dev, B43legacy_MMIO_XMITSTAT_1);
  640. stat.cookie = (v0 >> 16);
  641. stat.seq = (v1 & 0x0000FFFF);
  642. stat.phy_stat = ((v1 & 0x00FF0000) >> 16);
  643. tmp = (v0 & 0x0000FFFF);
  644. stat.frame_count = ((tmp & 0xF000) >> 12);
  645. stat.rts_count = ((tmp & 0x0F00) >> 8);
  646. stat.supp_reason = ((tmp & 0x001C) >> 2);
  647. stat.pm_indicated = !!(tmp & 0x0080);
  648. stat.intermediate = !!(tmp & 0x0040);
  649. stat.for_ampdu = !!(tmp & 0x0020);
  650. stat.acked = !!(tmp & 0x0002);
  651. b43legacy_handle_txstatus(dev, &stat);
  652. }
  653. }
  654. static void drain_txstatus_queue(struct b43legacy_wldev *dev)
  655. {
  656. u32 dummy;
  657. if (dev->dev->id.revision < 5)
  658. return;
  659. /* Read all entries from the microcode TXstatus FIFO
  660. * and throw them away.
  661. */
  662. while (1) {
  663. dummy = b43legacy_read32(dev, B43legacy_MMIO_XMITSTAT_0);
  664. if (!(dummy & 0x00000001))
  665. break;
  666. dummy = b43legacy_read32(dev, B43legacy_MMIO_XMITSTAT_1);
  667. }
  668. }
  669. static u32 b43legacy_jssi_read(struct b43legacy_wldev *dev)
  670. {
  671. u32 val = 0;
  672. val = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED, 0x40A);
  673. val <<= 16;
  674. val |= b43legacy_shm_read16(dev, B43legacy_SHM_SHARED, 0x408);
  675. return val;
  676. }
  677. static void b43legacy_jssi_write(struct b43legacy_wldev *dev, u32 jssi)
  678. {
  679. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, 0x408,
  680. (jssi & 0x0000FFFF));
  681. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, 0x40A,
  682. (jssi & 0xFFFF0000) >> 16);
  683. }
  684. static void b43legacy_generate_noise_sample(struct b43legacy_wldev *dev)
  685. {
  686. b43legacy_jssi_write(dev, 0x7F7F7F7F);
  687. b43legacy_write32(dev, B43legacy_MMIO_MACCMD,
  688. b43legacy_read32(dev, B43legacy_MMIO_MACCMD)
  689. | B43legacy_MACCMD_BGNOISE);
  690. B43legacy_WARN_ON(dev->noisecalc.channel_at_start !=
  691. dev->phy.channel);
  692. }
  693. static void b43legacy_calculate_link_quality(struct b43legacy_wldev *dev)
  694. {
  695. /* Top half of Link Quality calculation. */
  696. if (dev->noisecalc.calculation_running)
  697. return;
  698. dev->noisecalc.channel_at_start = dev->phy.channel;
  699. dev->noisecalc.calculation_running = true;
  700. dev->noisecalc.nr_samples = 0;
  701. b43legacy_generate_noise_sample(dev);
  702. }
  703. static void handle_irq_noise(struct b43legacy_wldev *dev)
  704. {
  705. struct b43legacy_phy *phy = &dev->phy;
  706. u16 tmp;
  707. u8 noise[4];
  708. u8 i;
  709. u8 j;
  710. s32 average;
  711. /* Bottom half of Link Quality calculation. */
  712. B43legacy_WARN_ON(!dev->noisecalc.calculation_running);
  713. if (dev->noisecalc.channel_at_start != phy->channel)
  714. goto drop_calculation;
  715. *((__le32 *)noise) = cpu_to_le32(b43legacy_jssi_read(dev));
  716. if (noise[0] == 0x7F || noise[1] == 0x7F ||
  717. noise[2] == 0x7F || noise[3] == 0x7F)
  718. goto generate_new;
  719. /* Get the noise samples. */
  720. B43legacy_WARN_ON(dev->noisecalc.nr_samples >= 8);
  721. i = dev->noisecalc.nr_samples;
  722. noise[0] = clamp_val(noise[0], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
  723. noise[1] = clamp_val(noise[1], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
  724. noise[2] = clamp_val(noise[2], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
  725. noise[3] = clamp_val(noise[3], 0, ARRAY_SIZE(phy->nrssi_lt) - 1);
  726. dev->noisecalc.samples[i][0] = phy->nrssi_lt[noise[0]];
  727. dev->noisecalc.samples[i][1] = phy->nrssi_lt[noise[1]];
  728. dev->noisecalc.samples[i][2] = phy->nrssi_lt[noise[2]];
  729. dev->noisecalc.samples[i][3] = phy->nrssi_lt[noise[3]];
  730. dev->noisecalc.nr_samples++;
  731. if (dev->noisecalc.nr_samples == 8) {
  732. /* Calculate the Link Quality by the noise samples. */
  733. average = 0;
  734. for (i = 0; i < 8; i++) {
  735. for (j = 0; j < 4; j++)
  736. average += dev->noisecalc.samples[i][j];
  737. }
  738. average /= (8 * 4);
  739. average *= 125;
  740. average += 64;
  741. average /= 128;
  742. tmp = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
  743. 0x40C);
  744. tmp = (tmp / 128) & 0x1F;
  745. if (tmp >= 8)
  746. average += 2;
  747. else
  748. average -= 25;
  749. if (tmp == 8)
  750. average -= 72;
  751. else
  752. average -= 48;
  753. dev->stats.link_noise = average;
  754. drop_calculation:
  755. dev->noisecalc.calculation_running = false;
  756. return;
  757. }
  758. generate_new:
  759. b43legacy_generate_noise_sample(dev);
  760. }
  761. static void handle_irq_tbtt_indication(struct b43legacy_wldev *dev)
  762. {
  763. if (b43legacy_is_mode(dev->wl, NL80211_IFTYPE_AP)) {
  764. /* TODO: PS TBTT */
  765. } else {
  766. if (1/*FIXME: the last PSpoll frame was sent successfully */)
  767. b43legacy_power_saving_ctl_bits(dev, -1, -1);
  768. }
  769. if (b43legacy_is_mode(dev->wl, NL80211_IFTYPE_ADHOC))
  770. dev->dfq_valid = true;
  771. }
  772. static void handle_irq_atim_end(struct b43legacy_wldev *dev)
  773. {
  774. if (dev->dfq_valid) {
  775. b43legacy_write32(dev, B43legacy_MMIO_MACCMD,
  776. b43legacy_read32(dev, B43legacy_MMIO_MACCMD)
  777. | B43legacy_MACCMD_DFQ_VALID);
  778. dev->dfq_valid = false;
  779. }
  780. }
  781. static void handle_irq_pmq(struct b43legacy_wldev *dev)
  782. {
  783. u32 tmp;
  784. /* TODO: AP mode. */
  785. while (1) {
  786. tmp = b43legacy_read32(dev, B43legacy_MMIO_PS_STATUS);
  787. if (!(tmp & 0x00000008))
  788. break;
  789. }
  790. /* 16bit write is odd, but correct. */
  791. b43legacy_write16(dev, B43legacy_MMIO_PS_STATUS, 0x0002);
  792. }
  793. static void b43legacy_write_template_common(struct b43legacy_wldev *dev,
  794. const u8 *data, u16 size,
  795. u16 ram_offset,
  796. u16 shm_size_offset, u8 rate)
  797. {
  798. u32 i;
  799. u32 tmp;
  800. struct b43legacy_plcp_hdr4 plcp;
  801. plcp.data = 0;
  802. b43legacy_generate_plcp_hdr(&plcp, size + FCS_LEN, rate);
  803. b43legacy_ram_write(dev, ram_offset, le32_to_cpu(plcp.data));
  804. ram_offset += sizeof(u32);
  805. /* The PLCP is 6 bytes long, but we only wrote 4 bytes, yet.
  806. * So leave the first two bytes of the next write blank.
  807. */
  808. tmp = (u32)(data[0]) << 16;
  809. tmp |= (u32)(data[1]) << 24;
  810. b43legacy_ram_write(dev, ram_offset, tmp);
  811. ram_offset += sizeof(u32);
  812. for (i = 2; i < size; i += sizeof(u32)) {
  813. tmp = (u32)(data[i + 0]);
  814. if (i + 1 < size)
  815. tmp |= (u32)(data[i + 1]) << 8;
  816. if (i + 2 < size)
  817. tmp |= (u32)(data[i + 2]) << 16;
  818. if (i + 3 < size)
  819. tmp |= (u32)(data[i + 3]) << 24;
  820. b43legacy_ram_write(dev, ram_offset + i - 2, tmp);
  821. }
  822. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, shm_size_offset,
  823. size + sizeof(struct b43legacy_plcp_hdr6));
  824. }
  825. /* Convert a b43legacy antenna number value to the PHY TX control value. */
  826. static u16 b43legacy_antenna_to_phyctl(int antenna)
  827. {
  828. switch (antenna) {
  829. case B43legacy_ANTENNA0:
  830. return B43legacy_TX4_PHY_ANT0;
  831. case B43legacy_ANTENNA1:
  832. return B43legacy_TX4_PHY_ANT1;
  833. }
  834. return B43legacy_TX4_PHY_ANTLAST;
  835. }
  836. static void b43legacy_write_beacon_template(struct b43legacy_wldev *dev,
  837. u16 ram_offset,
  838. u16 shm_size_offset)
  839. {
  840. unsigned int i, len, variable_len;
  841. const struct ieee80211_mgmt *bcn;
  842. const u8 *ie;
  843. bool tim_found = false;
  844. unsigned int rate;
  845. u16 ctl;
  846. int antenna;
  847. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(dev->wl->current_beacon);
  848. bcn = (const struct ieee80211_mgmt *)(dev->wl->current_beacon->data);
  849. len = min_t(size_t, dev->wl->current_beacon->len,
  850. 0x200 - sizeof(struct b43legacy_plcp_hdr6));
  851. rate = ieee80211_get_tx_rate(dev->wl->hw, info)->hw_value;
  852. b43legacy_write_template_common(dev, (const u8 *)bcn, len, ram_offset,
  853. shm_size_offset, rate);
  854. /* Write the PHY TX control parameters. */
  855. antenna = B43legacy_ANTENNA_DEFAULT;
  856. antenna = b43legacy_antenna_to_phyctl(antenna);
  857. ctl = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
  858. B43legacy_SHM_SH_BEACPHYCTL);
  859. /* We can't send beacons with short preamble. Would get PHY errors. */
  860. ctl &= ~B43legacy_TX4_PHY_SHORTPRMBL;
  861. ctl &= ~B43legacy_TX4_PHY_ANT;
  862. ctl &= ~B43legacy_TX4_PHY_ENC;
  863. ctl |= antenna;
  864. ctl |= B43legacy_TX4_PHY_ENC_CCK;
  865. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
  866. B43legacy_SHM_SH_BEACPHYCTL, ctl);
  867. /* Find the position of the TIM and the DTIM_period value
  868. * and write them to SHM. */
  869. ie = bcn->u.beacon.variable;
  870. variable_len = len - offsetof(struct ieee80211_mgmt, u.beacon.variable);
  871. for (i = 0; i < variable_len - 2; ) {
  872. uint8_t ie_id, ie_len;
  873. ie_id = ie[i];
  874. ie_len = ie[i + 1];
  875. if (ie_id == 5) {
  876. u16 tim_position;
  877. u16 dtim_period;
  878. /* This is the TIM Information Element */
  879. /* Check whether the ie_len is in the beacon data range. */
  880. if (variable_len < ie_len + 2 + i)
  881. break;
  882. /* A valid TIM is at least 4 bytes long. */
  883. if (ie_len < 4)
  884. break;
  885. tim_found = true;
  886. tim_position = sizeof(struct b43legacy_plcp_hdr6);
  887. tim_position += offsetof(struct ieee80211_mgmt,
  888. u.beacon.variable);
  889. tim_position += i;
  890. dtim_period = ie[i + 3];
  891. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
  892. B43legacy_SHM_SH_TIMPOS, tim_position);
  893. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
  894. B43legacy_SHM_SH_DTIMP, dtim_period);
  895. break;
  896. }
  897. i += ie_len + 2;
  898. }
  899. if (!tim_found) {
  900. b43legacywarn(dev->wl, "Did not find a valid TIM IE in the "
  901. "beacon template packet. AP or IBSS operation "
  902. "may be broken.\n");
  903. } else
  904. b43legacydbg(dev->wl, "Updated beacon template\n");
  905. }
  906. static void b43legacy_write_probe_resp_plcp(struct b43legacy_wldev *dev,
  907. u16 shm_offset, u16 size,
  908. struct ieee80211_rate *rate)
  909. {
  910. struct b43legacy_plcp_hdr4 plcp;
  911. u32 tmp;
  912. __le16 dur;
  913. plcp.data = 0;
  914. b43legacy_generate_plcp_hdr(&plcp, size + FCS_LEN, rate->hw_value);
  915. dur = ieee80211_generic_frame_duration(dev->wl->hw,
  916. dev->wl->vif,
  917. IEEE80211_BAND_2GHZ,
  918. size,
  919. rate);
  920. /* Write PLCP in two parts and timing for packet transfer */
  921. tmp = le32_to_cpu(plcp.data);
  922. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, shm_offset,
  923. tmp & 0xFFFF);
  924. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, shm_offset + 2,
  925. tmp >> 16);
  926. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, shm_offset + 6,
  927. le16_to_cpu(dur));
  928. }
  929. /* Instead of using custom probe response template, this function
  930. * just patches custom beacon template by:
  931. * 1) Changing packet type
  932. * 2) Patching duration field
  933. * 3) Stripping TIM
  934. */
  935. static const u8 *b43legacy_generate_probe_resp(struct b43legacy_wldev *dev,
  936. u16 *dest_size,
  937. struct ieee80211_rate *rate)
  938. {
  939. const u8 *src_data;
  940. u8 *dest_data;
  941. u16 src_size, elem_size, src_pos, dest_pos;
  942. __le16 dur;
  943. struct ieee80211_hdr *hdr;
  944. size_t ie_start;
  945. src_size = dev->wl->current_beacon->len;
  946. src_data = (const u8 *)dev->wl->current_beacon->data;
  947. /* Get the start offset of the variable IEs in the packet. */
  948. ie_start = offsetof(struct ieee80211_mgmt, u.probe_resp.variable);
  949. B43legacy_WARN_ON(ie_start != offsetof(struct ieee80211_mgmt,
  950. u.beacon.variable));
  951. if (B43legacy_WARN_ON(src_size < ie_start))
  952. return NULL;
  953. dest_data = kmalloc(src_size, GFP_ATOMIC);
  954. if (unlikely(!dest_data))
  955. return NULL;
  956. /* Copy the static data and all Information Elements, except the TIM. */
  957. memcpy(dest_data, src_data, ie_start);
  958. src_pos = ie_start;
  959. dest_pos = ie_start;
  960. for ( ; src_pos < src_size - 2; src_pos += elem_size) {
  961. elem_size = src_data[src_pos + 1] + 2;
  962. if (src_data[src_pos] == 5) {
  963. /* This is the TIM. */
  964. continue;
  965. }
  966. memcpy(dest_data + dest_pos, src_data + src_pos, elem_size);
  967. dest_pos += elem_size;
  968. }
  969. *dest_size = dest_pos;
  970. hdr = (struct ieee80211_hdr *)dest_data;
  971. /* Set the frame control. */
  972. hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_MGMT |
  973. IEEE80211_STYPE_PROBE_RESP);
  974. dur = ieee80211_generic_frame_duration(dev->wl->hw,
  975. dev->wl->vif,
  976. IEEE80211_BAND_2GHZ,
  977. *dest_size,
  978. rate);
  979. hdr->duration_id = dur;
  980. return dest_data;
  981. }
  982. static void b43legacy_write_probe_resp_template(struct b43legacy_wldev *dev,
  983. u16 ram_offset,
  984. u16 shm_size_offset,
  985. struct ieee80211_rate *rate)
  986. {
  987. const u8 *probe_resp_data;
  988. u16 size;
  989. size = dev->wl->current_beacon->len;
  990. probe_resp_data = b43legacy_generate_probe_resp(dev, &size, rate);
  991. if (unlikely(!probe_resp_data))
  992. return;
  993. /* Looks like PLCP headers plus packet timings are stored for
  994. * all possible basic rates
  995. */
  996. b43legacy_write_probe_resp_plcp(dev, 0x31A, size,
  997. &b43legacy_b_ratetable[0]);
  998. b43legacy_write_probe_resp_plcp(dev, 0x32C, size,
  999. &b43legacy_b_ratetable[1]);
  1000. b43legacy_write_probe_resp_plcp(dev, 0x33E, size,
  1001. &b43legacy_b_ratetable[2]);
  1002. b43legacy_write_probe_resp_plcp(dev, 0x350, size,
  1003. &b43legacy_b_ratetable[3]);
  1004. size = min_t(size_t, size,
  1005. 0x200 - sizeof(struct b43legacy_plcp_hdr6));
  1006. b43legacy_write_template_common(dev, probe_resp_data,
  1007. size, ram_offset,
  1008. shm_size_offset, rate->hw_value);
  1009. kfree(probe_resp_data);
  1010. }
  1011. static void b43legacy_upload_beacon0(struct b43legacy_wldev *dev)
  1012. {
  1013. struct b43legacy_wl *wl = dev->wl;
  1014. if (wl->beacon0_uploaded)
  1015. return;
  1016. b43legacy_write_beacon_template(dev, 0x68, 0x18);
  1017. /* FIXME: Probe resp upload doesn't really belong here,
  1018. * but we don't use that feature anyway. */
  1019. b43legacy_write_probe_resp_template(dev, 0x268, 0x4A,
  1020. &__b43legacy_ratetable[3]);
  1021. wl->beacon0_uploaded = true;
  1022. }
  1023. static void b43legacy_upload_beacon1(struct b43legacy_wldev *dev)
  1024. {
  1025. struct b43legacy_wl *wl = dev->wl;
  1026. if (wl->beacon1_uploaded)
  1027. return;
  1028. b43legacy_write_beacon_template(dev, 0x468, 0x1A);
  1029. wl->beacon1_uploaded = true;
  1030. }
  1031. static void handle_irq_beacon(struct b43legacy_wldev *dev)
  1032. {
  1033. struct b43legacy_wl *wl = dev->wl;
  1034. u32 cmd, beacon0_valid, beacon1_valid;
  1035. if (!b43legacy_is_mode(wl, NL80211_IFTYPE_AP))
  1036. return;
  1037. /* This is the bottom half of the asynchronous beacon update. */
  1038. /* Ignore interrupt in the future. */
  1039. dev->irq_mask &= ~B43legacy_IRQ_BEACON;
  1040. cmd = b43legacy_read32(dev, B43legacy_MMIO_MACCMD);
  1041. beacon0_valid = (cmd & B43legacy_MACCMD_BEACON0_VALID);
  1042. beacon1_valid = (cmd & B43legacy_MACCMD_BEACON1_VALID);
  1043. /* Schedule interrupt manually, if busy. */
  1044. if (beacon0_valid && beacon1_valid) {
  1045. b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_REASON, B43legacy_IRQ_BEACON);
  1046. dev->irq_mask |= B43legacy_IRQ_BEACON;
  1047. return;
  1048. }
  1049. if (unlikely(wl->beacon_templates_virgin)) {
  1050. /* We never uploaded a beacon before.
  1051. * Upload both templates now, but only mark one valid. */
  1052. wl->beacon_templates_virgin = false;
  1053. b43legacy_upload_beacon0(dev);
  1054. b43legacy_upload_beacon1(dev);
  1055. cmd = b43legacy_read32(dev, B43legacy_MMIO_MACCMD);
  1056. cmd |= B43legacy_MACCMD_BEACON0_VALID;
  1057. b43legacy_write32(dev, B43legacy_MMIO_MACCMD, cmd);
  1058. } else {
  1059. if (!beacon0_valid) {
  1060. b43legacy_upload_beacon0(dev);
  1061. cmd = b43legacy_read32(dev, B43legacy_MMIO_MACCMD);
  1062. cmd |= B43legacy_MACCMD_BEACON0_VALID;
  1063. b43legacy_write32(dev, B43legacy_MMIO_MACCMD, cmd);
  1064. } else if (!beacon1_valid) {
  1065. b43legacy_upload_beacon1(dev);
  1066. cmd = b43legacy_read32(dev, B43legacy_MMIO_MACCMD);
  1067. cmd |= B43legacy_MACCMD_BEACON1_VALID;
  1068. b43legacy_write32(dev, B43legacy_MMIO_MACCMD, cmd);
  1069. }
  1070. }
  1071. }
  1072. static void b43legacy_beacon_update_trigger_work(struct work_struct *work)
  1073. {
  1074. struct b43legacy_wl *wl = container_of(work, struct b43legacy_wl,
  1075. beacon_update_trigger);
  1076. struct b43legacy_wldev *dev;
  1077. mutex_lock(&wl->mutex);
  1078. dev = wl->current_dev;
  1079. if (likely(dev && (b43legacy_status(dev) >= B43legacy_STAT_INITIALIZED))) {
  1080. spin_lock_irq(&wl->irq_lock);
  1081. /* Update beacon right away or defer to IRQ. */
  1082. handle_irq_beacon(dev);
  1083. /* The handler might have updated the IRQ mask. */
  1084. b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_MASK,
  1085. dev->irq_mask);
  1086. mmiowb();
  1087. spin_unlock_irq(&wl->irq_lock);
  1088. }
  1089. mutex_unlock(&wl->mutex);
  1090. }
  1091. /* Asynchronously update the packet templates in template RAM.
  1092. * Locking: Requires wl->irq_lock to be locked. */
  1093. static void b43legacy_update_templates(struct b43legacy_wl *wl)
  1094. {
  1095. struct sk_buff *beacon;
  1096. /* This is the top half of the ansynchronous beacon update. The bottom
  1097. * half is the beacon IRQ. Beacon update must be asynchronous to avoid
  1098. * sending an invalid beacon. This can happen for example, if the
  1099. * firmware transmits a beacon while we are updating it. */
  1100. /* We could modify the existing beacon and set the aid bit in the TIM
  1101. * field, but that would probably require resizing and moving of data
  1102. * within the beacon template. Simply request a new beacon and let
  1103. * mac80211 do the hard work. */
  1104. beacon = ieee80211_beacon_get(wl->hw, wl->vif);
  1105. if (unlikely(!beacon))
  1106. return;
  1107. if (wl->current_beacon)
  1108. dev_kfree_skb_any(wl->current_beacon);
  1109. wl->current_beacon = beacon;
  1110. wl->beacon0_uploaded = false;
  1111. wl->beacon1_uploaded = false;
  1112. ieee80211_queue_work(wl->hw, &wl->beacon_update_trigger);
  1113. }
  1114. static void b43legacy_set_beacon_int(struct b43legacy_wldev *dev,
  1115. u16 beacon_int)
  1116. {
  1117. b43legacy_time_lock(dev);
  1118. if (dev->dev->id.revision >= 3) {
  1119. b43legacy_write32(dev, B43legacy_MMIO_TSF_CFP_REP,
  1120. (beacon_int << 16));
  1121. b43legacy_write32(dev, B43legacy_MMIO_TSF_CFP_START,
  1122. (beacon_int << 10));
  1123. } else {
  1124. b43legacy_write16(dev, 0x606, (beacon_int >> 6));
  1125. b43legacy_write16(dev, 0x610, beacon_int);
  1126. }
  1127. b43legacy_time_unlock(dev);
  1128. b43legacydbg(dev->wl, "Set beacon interval to %u\n", beacon_int);
  1129. }
  1130. static void handle_irq_ucode_debug(struct b43legacy_wldev *dev)
  1131. {
  1132. }
  1133. /* Interrupt handler bottom-half */
  1134. static void b43legacy_interrupt_tasklet(struct b43legacy_wldev *dev)
  1135. {
  1136. u32 reason;
  1137. u32 dma_reason[ARRAY_SIZE(dev->dma_reason)];
  1138. u32 merged_dma_reason = 0;
  1139. int i;
  1140. unsigned long flags;
  1141. spin_lock_irqsave(&dev->wl->irq_lock, flags);
  1142. B43legacy_WARN_ON(b43legacy_status(dev) <
  1143. B43legacy_STAT_INITIALIZED);
  1144. reason = dev->irq_reason;
  1145. for (i = 0; i < ARRAY_SIZE(dma_reason); i++) {
  1146. dma_reason[i] = dev->dma_reason[i];
  1147. merged_dma_reason |= dma_reason[i];
  1148. }
  1149. if (unlikely(reason & B43legacy_IRQ_MAC_TXERR))
  1150. b43legacyerr(dev->wl, "MAC transmission error\n");
  1151. if (unlikely(reason & B43legacy_IRQ_PHY_TXERR)) {
  1152. b43legacyerr(dev->wl, "PHY transmission error\n");
  1153. rmb();
  1154. if (unlikely(atomic_dec_and_test(&dev->phy.txerr_cnt))) {
  1155. b43legacyerr(dev->wl, "Too many PHY TX errors, "
  1156. "restarting the controller\n");
  1157. b43legacy_controller_restart(dev, "PHY TX errors");
  1158. }
  1159. }
  1160. if (unlikely(merged_dma_reason & (B43legacy_DMAIRQ_FATALMASK |
  1161. B43legacy_DMAIRQ_NONFATALMASK))) {
  1162. if (merged_dma_reason & B43legacy_DMAIRQ_FATALMASK) {
  1163. b43legacyerr(dev->wl, "Fatal DMA error: "
  1164. "0x%08X, 0x%08X, 0x%08X, "
  1165. "0x%08X, 0x%08X, 0x%08X\n",
  1166. dma_reason[0], dma_reason[1],
  1167. dma_reason[2], dma_reason[3],
  1168. dma_reason[4], dma_reason[5]);
  1169. b43legacy_controller_restart(dev, "DMA error");
  1170. mmiowb();
  1171. spin_unlock_irqrestore(&dev->wl->irq_lock, flags);
  1172. return;
  1173. }
  1174. if (merged_dma_reason & B43legacy_DMAIRQ_NONFATALMASK)
  1175. b43legacyerr(dev->wl, "DMA error: "
  1176. "0x%08X, 0x%08X, 0x%08X, "
  1177. "0x%08X, 0x%08X, 0x%08X\n",
  1178. dma_reason[0], dma_reason[1],
  1179. dma_reason[2], dma_reason[3],
  1180. dma_reason[4], dma_reason[5]);
  1181. }
  1182. if (unlikely(reason & B43legacy_IRQ_UCODE_DEBUG))
  1183. handle_irq_ucode_debug(dev);
  1184. if (reason & B43legacy_IRQ_TBTT_INDI)
  1185. handle_irq_tbtt_indication(dev);
  1186. if (reason & B43legacy_IRQ_ATIM_END)
  1187. handle_irq_atim_end(dev);
  1188. if (reason & B43legacy_IRQ_BEACON)
  1189. handle_irq_beacon(dev);
  1190. if (reason & B43legacy_IRQ_PMQ)
  1191. handle_irq_pmq(dev);
  1192. if (reason & B43legacy_IRQ_TXFIFO_FLUSH_OK)
  1193. ;/*TODO*/
  1194. if (reason & B43legacy_IRQ_NOISESAMPLE_OK)
  1195. handle_irq_noise(dev);
  1196. /* Check the DMA reason registers for received data. */
  1197. if (dma_reason[0] & B43legacy_DMAIRQ_RX_DONE) {
  1198. if (b43legacy_using_pio(dev))
  1199. b43legacy_pio_rx(dev->pio.queue0);
  1200. else
  1201. b43legacy_dma_rx(dev->dma.rx_ring0);
  1202. }
  1203. B43legacy_WARN_ON(dma_reason[1] & B43legacy_DMAIRQ_RX_DONE);
  1204. B43legacy_WARN_ON(dma_reason[2] & B43legacy_DMAIRQ_RX_DONE);
  1205. if (dma_reason[3] & B43legacy_DMAIRQ_RX_DONE) {
  1206. if (b43legacy_using_pio(dev))
  1207. b43legacy_pio_rx(dev->pio.queue3);
  1208. else
  1209. b43legacy_dma_rx(dev->dma.rx_ring3);
  1210. }
  1211. B43legacy_WARN_ON(dma_reason[4] & B43legacy_DMAIRQ_RX_DONE);
  1212. B43legacy_WARN_ON(dma_reason[5] & B43legacy_DMAIRQ_RX_DONE);
  1213. if (reason & B43legacy_IRQ_TX_OK)
  1214. handle_irq_transmit_status(dev);
  1215. b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_MASK, dev->irq_mask);
  1216. mmiowb();
  1217. spin_unlock_irqrestore(&dev->wl->irq_lock, flags);
  1218. }
  1219. static void pio_irq_workaround(struct b43legacy_wldev *dev,
  1220. u16 base, int queueidx)
  1221. {
  1222. u16 rxctl;
  1223. rxctl = b43legacy_read16(dev, base + B43legacy_PIO_RXCTL);
  1224. if (rxctl & B43legacy_PIO_RXCTL_DATAAVAILABLE)
  1225. dev->dma_reason[queueidx] |= B43legacy_DMAIRQ_RX_DONE;
  1226. else
  1227. dev->dma_reason[queueidx] &= ~B43legacy_DMAIRQ_RX_DONE;
  1228. }
  1229. static void b43legacy_interrupt_ack(struct b43legacy_wldev *dev, u32 reason)
  1230. {
  1231. if (b43legacy_using_pio(dev) &&
  1232. (dev->dev->id.revision < 3) &&
  1233. (!(reason & B43legacy_IRQ_PIO_WORKAROUND))) {
  1234. /* Apply a PIO specific workaround to the dma_reasons */
  1235. pio_irq_workaround(dev, B43legacy_MMIO_PIO1_BASE, 0);
  1236. pio_irq_workaround(dev, B43legacy_MMIO_PIO2_BASE, 1);
  1237. pio_irq_workaround(dev, B43legacy_MMIO_PIO3_BASE, 2);
  1238. pio_irq_workaround(dev, B43legacy_MMIO_PIO4_BASE, 3);
  1239. }
  1240. b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_REASON, reason);
  1241. b43legacy_write32(dev, B43legacy_MMIO_DMA0_REASON,
  1242. dev->dma_reason[0]);
  1243. b43legacy_write32(dev, B43legacy_MMIO_DMA1_REASON,
  1244. dev->dma_reason[1]);
  1245. b43legacy_write32(dev, B43legacy_MMIO_DMA2_REASON,
  1246. dev->dma_reason[2]);
  1247. b43legacy_write32(dev, B43legacy_MMIO_DMA3_REASON,
  1248. dev->dma_reason[3]);
  1249. b43legacy_write32(dev, B43legacy_MMIO_DMA4_REASON,
  1250. dev->dma_reason[4]);
  1251. b43legacy_write32(dev, B43legacy_MMIO_DMA5_REASON,
  1252. dev->dma_reason[5]);
  1253. }
  1254. /* Interrupt handler top-half */
  1255. static irqreturn_t b43legacy_interrupt_handler(int irq, void *dev_id)
  1256. {
  1257. irqreturn_t ret = IRQ_NONE;
  1258. struct b43legacy_wldev *dev = dev_id;
  1259. u32 reason;
  1260. B43legacy_WARN_ON(!dev);
  1261. spin_lock(&dev->wl->irq_lock);
  1262. if (unlikely(b43legacy_status(dev) < B43legacy_STAT_STARTED))
  1263. /* This can only happen on shared IRQ lines. */
  1264. goto out;
  1265. reason = b43legacy_read32(dev, B43legacy_MMIO_GEN_IRQ_REASON);
  1266. if (reason == 0xffffffff) /* shared IRQ */
  1267. goto out;
  1268. ret = IRQ_HANDLED;
  1269. reason &= dev->irq_mask;
  1270. if (!reason)
  1271. goto out;
  1272. dev->dma_reason[0] = b43legacy_read32(dev,
  1273. B43legacy_MMIO_DMA0_REASON)
  1274. & 0x0001DC00;
  1275. dev->dma_reason[1] = b43legacy_read32(dev,
  1276. B43legacy_MMIO_DMA1_REASON)
  1277. & 0x0000DC00;
  1278. dev->dma_reason[2] = b43legacy_read32(dev,
  1279. B43legacy_MMIO_DMA2_REASON)
  1280. & 0x0000DC00;
  1281. dev->dma_reason[3] = b43legacy_read32(dev,
  1282. B43legacy_MMIO_DMA3_REASON)
  1283. & 0x0001DC00;
  1284. dev->dma_reason[4] = b43legacy_read32(dev,
  1285. B43legacy_MMIO_DMA4_REASON)
  1286. & 0x0000DC00;
  1287. dev->dma_reason[5] = b43legacy_read32(dev,
  1288. B43legacy_MMIO_DMA5_REASON)
  1289. & 0x0000DC00;
  1290. b43legacy_interrupt_ack(dev, reason);
  1291. /* Disable all IRQs. They are enabled again in the bottom half. */
  1292. b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_MASK, 0);
  1293. /* Save the reason code and call our bottom half. */
  1294. dev->irq_reason = reason;
  1295. tasklet_schedule(&dev->isr_tasklet);
  1296. out:
  1297. mmiowb();
  1298. spin_unlock(&dev->wl->irq_lock);
  1299. return ret;
  1300. }
  1301. static void b43legacy_release_firmware(struct b43legacy_wldev *dev)
  1302. {
  1303. release_firmware(dev->fw.ucode);
  1304. dev->fw.ucode = NULL;
  1305. release_firmware(dev->fw.pcm);
  1306. dev->fw.pcm = NULL;
  1307. release_firmware(dev->fw.initvals);
  1308. dev->fw.initvals = NULL;
  1309. release_firmware(dev->fw.initvals_band);
  1310. dev->fw.initvals_band = NULL;
  1311. }
  1312. static void b43legacy_print_fw_helptext(struct b43legacy_wl *wl)
  1313. {
  1314. b43legacyerr(wl, "You must go to http://wireless.kernel.org/en/users/"
  1315. "Drivers/b43#devicefirmware "
  1316. "and download the correct firmware (version 3).\n");
  1317. }
  1318. static void b43legacy_fw_cb(const struct firmware *firmware, void *context)
  1319. {
  1320. struct b43legacy_wldev *dev = context;
  1321. dev->fwp = firmware;
  1322. complete(&dev->fw_load_complete);
  1323. }
  1324. static int do_request_fw(struct b43legacy_wldev *dev,
  1325. const char *name,
  1326. const struct firmware **fw, bool async)
  1327. {
  1328. char path[sizeof(modparam_fwpostfix) + 32];
  1329. struct b43legacy_fw_header *hdr;
  1330. u32 size;
  1331. int err;
  1332. if (!name)
  1333. return 0;
  1334. snprintf(path, ARRAY_SIZE(path),
  1335. "b43legacy%s/%s.fw",
  1336. modparam_fwpostfix, name);
  1337. b43legacyinfo(dev->wl, "Loading firmware %s\n", path);
  1338. if (async) {
  1339. init_completion(&dev->fw_load_complete);
  1340. err = request_firmware_nowait(THIS_MODULE, 1, path,
  1341. dev->dev->dev, GFP_KERNEL,
  1342. dev, b43legacy_fw_cb);
  1343. if (err) {
  1344. b43legacyerr(dev->wl, "Unable to load firmware\n");
  1345. return err;
  1346. }
  1347. /* stall here until fw ready */
  1348. wait_for_completion(&dev->fw_load_complete);
  1349. if (!dev->fwp)
  1350. err = -EINVAL;
  1351. *fw = dev->fwp;
  1352. } else {
  1353. err = request_firmware(fw, path, dev->dev->dev);
  1354. }
  1355. if (err) {
  1356. b43legacyerr(dev->wl, "Firmware file \"%s\" not found "
  1357. "or load failed.\n", path);
  1358. return err;
  1359. }
  1360. if ((*fw)->size < sizeof(struct b43legacy_fw_header))
  1361. goto err_format;
  1362. hdr = (struct b43legacy_fw_header *)((*fw)->data);
  1363. switch (hdr->type) {
  1364. case B43legacy_FW_TYPE_UCODE:
  1365. case B43legacy_FW_TYPE_PCM:
  1366. size = be32_to_cpu(hdr->size);
  1367. if (size != (*fw)->size - sizeof(struct b43legacy_fw_header))
  1368. goto err_format;
  1369. /* fallthrough */
  1370. case B43legacy_FW_TYPE_IV:
  1371. if (hdr->ver != 1)
  1372. goto err_format;
  1373. break;
  1374. default:
  1375. goto err_format;
  1376. }
  1377. return err;
  1378. err_format:
  1379. b43legacyerr(dev->wl, "Firmware file \"%s\" format error.\n", path);
  1380. return -EPROTO;
  1381. }
  1382. static int b43legacy_one_core_attach(struct ssb_device *dev,
  1383. struct b43legacy_wl *wl);
  1384. static void b43legacy_one_core_detach(struct ssb_device *dev);
  1385. static void b43legacy_request_firmware(struct work_struct *work)
  1386. {
  1387. struct b43legacy_wl *wl = container_of(work,
  1388. struct b43legacy_wl, firmware_load);
  1389. struct b43legacy_wldev *dev = wl->current_dev;
  1390. struct b43legacy_firmware *fw = &dev->fw;
  1391. const u8 rev = dev->dev->id.revision;
  1392. const char *filename;
  1393. int err;
  1394. if (!fw->ucode) {
  1395. if (rev == 2)
  1396. filename = "ucode2";
  1397. else if (rev == 4)
  1398. filename = "ucode4";
  1399. else
  1400. filename = "ucode5";
  1401. err = do_request_fw(dev, filename, &fw->ucode, true);
  1402. if (err)
  1403. goto err_load;
  1404. }
  1405. if (!fw->pcm) {
  1406. if (rev < 5)
  1407. filename = "pcm4";
  1408. else
  1409. filename = "pcm5";
  1410. err = do_request_fw(dev, filename, &fw->pcm, false);
  1411. if (err)
  1412. goto err_load;
  1413. }
  1414. if (!fw->initvals) {
  1415. switch (dev->phy.type) {
  1416. case B43legacy_PHYTYPE_B:
  1417. case B43legacy_PHYTYPE_G:
  1418. if ((rev >= 5) && (rev <= 10))
  1419. filename = "b0g0initvals5";
  1420. else if (rev == 2 || rev == 4)
  1421. filename = "b0g0initvals2";
  1422. else
  1423. goto err_no_initvals;
  1424. break;
  1425. default:
  1426. goto err_no_initvals;
  1427. }
  1428. err = do_request_fw(dev, filename, &fw->initvals, false);
  1429. if (err)
  1430. goto err_load;
  1431. }
  1432. if (!fw->initvals_band) {
  1433. switch (dev->phy.type) {
  1434. case B43legacy_PHYTYPE_B:
  1435. case B43legacy_PHYTYPE_G:
  1436. if ((rev >= 5) && (rev <= 10))
  1437. filename = "b0g0bsinitvals5";
  1438. else if (rev >= 11)
  1439. filename = NULL;
  1440. else if (rev == 2 || rev == 4)
  1441. filename = NULL;
  1442. else
  1443. goto err_no_initvals;
  1444. break;
  1445. default:
  1446. goto err_no_initvals;
  1447. }
  1448. err = do_request_fw(dev, filename, &fw->initvals_band, false);
  1449. if (err)
  1450. goto err_load;
  1451. }
  1452. err = ieee80211_register_hw(wl->hw);
  1453. if (err)
  1454. goto err_one_core_detach;
  1455. return;
  1456. err_one_core_detach:
  1457. b43legacy_one_core_detach(dev->dev);
  1458. goto error;
  1459. err_load:
  1460. b43legacy_print_fw_helptext(dev->wl);
  1461. goto error;
  1462. err_no_initvals:
  1463. err = -ENODEV;
  1464. b43legacyerr(dev->wl, "No Initial Values firmware file for PHY %u, "
  1465. "core rev %u\n", dev->phy.type, rev);
  1466. goto error;
  1467. error:
  1468. b43legacy_release_firmware(dev);
  1469. return;
  1470. }
  1471. static int b43legacy_upload_microcode(struct b43legacy_wldev *dev)
  1472. {
  1473. struct wiphy *wiphy = dev->wl->hw->wiphy;
  1474. const size_t hdr_len = sizeof(struct b43legacy_fw_header);
  1475. const __be32 *data;
  1476. unsigned int i;
  1477. unsigned int len;
  1478. u16 fwrev;
  1479. u16 fwpatch;
  1480. u16 fwdate;
  1481. u16 fwtime;
  1482. u32 tmp, macctl;
  1483. int err = 0;
  1484. /* Jump the microcode PSM to offset 0 */
  1485. macctl = b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
  1486. B43legacy_WARN_ON(macctl & B43legacy_MACCTL_PSM_RUN);
  1487. macctl |= B43legacy_MACCTL_PSM_JMP0;
  1488. b43legacy_write32(dev, B43legacy_MMIO_MACCTL, macctl);
  1489. /* Zero out all microcode PSM registers and shared memory. */
  1490. for (i = 0; i < 64; i++)
  1491. b43legacy_shm_write16(dev, B43legacy_SHM_WIRELESS, i, 0);
  1492. for (i = 0; i < 4096; i += 2)
  1493. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, i, 0);
  1494. /* Upload Microcode. */
  1495. data = (__be32 *) (dev->fw.ucode->data + hdr_len);
  1496. len = (dev->fw.ucode->size - hdr_len) / sizeof(__be32);
  1497. b43legacy_shm_control_word(dev,
  1498. B43legacy_SHM_UCODE |
  1499. B43legacy_SHM_AUTOINC_W,
  1500. 0x0000);
  1501. for (i = 0; i < len; i++) {
  1502. b43legacy_write32(dev, B43legacy_MMIO_SHM_DATA,
  1503. be32_to_cpu(data[i]));
  1504. udelay(10);
  1505. }
  1506. if (dev->fw.pcm) {
  1507. /* Upload PCM data. */
  1508. data = (__be32 *) (dev->fw.pcm->data + hdr_len);
  1509. len = (dev->fw.pcm->size - hdr_len) / sizeof(__be32);
  1510. b43legacy_shm_control_word(dev, B43legacy_SHM_HW, 0x01EA);
  1511. b43legacy_write32(dev, B43legacy_MMIO_SHM_DATA, 0x00004000);
  1512. /* No need for autoinc bit in SHM_HW */
  1513. b43legacy_shm_control_word(dev, B43legacy_SHM_HW, 0x01EB);
  1514. for (i = 0; i < len; i++) {
  1515. b43legacy_write32(dev, B43legacy_MMIO_SHM_DATA,
  1516. be32_to_cpu(data[i]));
  1517. udelay(10);
  1518. }
  1519. }
  1520. b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_REASON,
  1521. B43legacy_IRQ_ALL);
  1522. /* Start the microcode PSM */
  1523. macctl = b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
  1524. macctl &= ~B43legacy_MACCTL_PSM_JMP0;
  1525. macctl |= B43legacy_MACCTL_PSM_RUN;
  1526. b43legacy_write32(dev, B43legacy_MMIO_MACCTL, macctl);
  1527. /* Wait for the microcode to load and respond */
  1528. i = 0;
  1529. while (1) {
  1530. tmp = b43legacy_read32(dev, B43legacy_MMIO_GEN_IRQ_REASON);
  1531. if (tmp == B43legacy_IRQ_MAC_SUSPENDED)
  1532. break;
  1533. i++;
  1534. if (i >= B43legacy_IRQWAIT_MAX_RETRIES) {
  1535. b43legacyerr(dev->wl, "Microcode not responding\n");
  1536. b43legacy_print_fw_helptext(dev->wl);
  1537. err = -ENODEV;
  1538. goto error;
  1539. }
  1540. msleep_interruptible(50);
  1541. if (signal_pending(current)) {
  1542. err = -EINTR;
  1543. goto error;
  1544. }
  1545. }
  1546. /* dummy read follows */
  1547. b43legacy_read32(dev, B43legacy_MMIO_GEN_IRQ_REASON);
  1548. /* Get and check the revisions. */
  1549. fwrev = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
  1550. B43legacy_SHM_SH_UCODEREV);
  1551. fwpatch = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
  1552. B43legacy_SHM_SH_UCODEPATCH);
  1553. fwdate = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
  1554. B43legacy_SHM_SH_UCODEDATE);
  1555. fwtime = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
  1556. B43legacy_SHM_SH_UCODETIME);
  1557. if (fwrev > 0x128) {
  1558. b43legacyerr(dev->wl, "YOU ARE TRYING TO LOAD V4 FIRMWARE."
  1559. " Only firmware from binary drivers version 3.x"
  1560. " is supported. You must change your firmware"
  1561. " files.\n");
  1562. b43legacy_print_fw_helptext(dev->wl);
  1563. err = -EOPNOTSUPP;
  1564. goto error;
  1565. }
  1566. b43legacyinfo(dev->wl, "Loading firmware version 0x%X, patch level %u "
  1567. "(20%.2i-%.2i-%.2i %.2i:%.2i:%.2i)\n", fwrev, fwpatch,
  1568. (fwdate >> 12) & 0xF, (fwdate >> 8) & 0xF, fwdate & 0xFF,
  1569. (fwtime >> 11) & 0x1F, (fwtime >> 5) & 0x3F,
  1570. fwtime & 0x1F);
  1571. dev->fw.rev = fwrev;
  1572. dev->fw.patch = fwpatch;
  1573. snprintf(wiphy->fw_version, sizeof(wiphy->fw_version), "%u.%u",
  1574. dev->fw.rev, dev->fw.patch);
  1575. wiphy->hw_version = dev->dev->id.coreid;
  1576. return 0;
  1577. error:
  1578. macctl = b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
  1579. macctl &= ~B43legacy_MACCTL_PSM_RUN;
  1580. macctl |= B43legacy_MACCTL_PSM_JMP0;
  1581. b43legacy_write32(dev, B43legacy_MMIO_MACCTL, macctl);
  1582. return err;
  1583. }
  1584. static int b43legacy_write_initvals(struct b43legacy_wldev *dev,
  1585. const struct b43legacy_iv *ivals,
  1586. size_t count,
  1587. size_t array_size)
  1588. {
  1589. const struct b43legacy_iv *iv;
  1590. u16 offset;
  1591. size_t i;
  1592. bool bit32;
  1593. BUILD_BUG_ON(sizeof(struct b43legacy_iv) != 6);
  1594. iv = ivals;
  1595. for (i = 0; i < count; i++) {
  1596. if (array_size < sizeof(iv->offset_size))
  1597. goto err_format;
  1598. array_size -= sizeof(iv->offset_size);
  1599. offset = be16_to_cpu(iv->offset_size);
  1600. bit32 = !!(offset & B43legacy_IV_32BIT);
  1601. offset &= B43legacy_IV_OFFSET_MASK;
  1602. if (offset >= 0x1000)
  1603. goto err_format;
  1604. if (bit32) {
  1605. u32 value;
  1606. if (array_size < sizeof(iv->data.d32))
  1607. goto err_format;
  1608. array_size -= sizeof(iv->data.d32);
  1609. value = get_unaligned_be32(&iv->data.d32);
  1610. b43legacy_write32(dev, offset, value);
  1611. iv = (const struct b43legacy_iv *)((const uint8_t *)iv +
  1612. sizeof(__be16) +
  1613. sizeof(__be32));
  1614. } else {
  1615. u16 value;
  1616. if (array_size < sizeof(iv->data.d16))
  1617. goto err_format;
  1618. array_size -= sizeof(iv->data.d16);
  1619. value = be16_to_cpu(iv->data.d16);
  1620. b43legacy_write16(dev, offset, value);
  1621. iv = (const struct b43legacy_iv *)((const uint8_t *)iv +
  1622. sizeof(__be16) +
  1623. sizeof(__be16));
  1624. }
  1625. }
  1626. if (array_size)
  1627. goto err_format;
  1628. return 0;
  1629. err_format:
  1630. b43legacyerr(dev->wl, "Initial Values Firmware file-format error.\n");
  1631. b43legacy_print_fw_helptext(dev->wl);
  1632. return -EPROTO;
  1633. }
  1634. static int b43legacy_upload_initvals(struct b43legacy_wldev *dev)
  1635. {
  1636. const size_t hdr_len = sizeof(struct b43legacy_fw_header);
  1637. const struct b43legacy_fw_header *hdr;
  1638. struct b43legacy_firmware *fw = &dev->fw;
  1639. const struct b43legacy_iv *ivals;
  1640. size_t count;
  1641. int err;
  1642. hdr = (const struct b43legacy_fw_header *)(fw->initvals->data);
  1643. ivals = (const struct b43legacy_iv *)(fw->initvals->data + hdr_len);
  1644. count = be32_to_cpu(hdr->size);
  1645. err = b43legacy_write_initvals(dev, ivals, count,
  1646. fw->initvals->size - hdr_len);
  1647. if (err)
  1648. goto out;
  1649. if (fw->initvals_band) {
  1650. hdr = (const struct b43legacy_fw_header *)
  1651. (fw->initvals_band->data);
  1652. ivals = (const struct b43legacy_iv *)(fw->initvals_band->data
  1653. + hdr_len);
  1654. count = be32_to_cpu(hdr->size);
  1655. err = b43legacy_write_initvals(dev, ivals, count,
  1656. fw->initvals_band->size - hdr_len);
  1657. if (err)
  1658. goto out;
  1659. }
  1660. out:
  1661. return err;
  1662. }
  1663. /* Initialize the GPIOs
  1664. * http://bcm-specs.sipsolutions.net/GPIO
  1665. */
  1666. static int b43legacy_gpio_init(struct b43legacy_wldev *dev)
  1667. {
  1668. struct ssb_bus *bus = dev->dev->bus;
  1669. struct ssb_device *gpiodev, *pcidev = NULL;
  1670. u32 mask;
  1671. u32 set;
  1672. b43legacy_write32(dev, B43legacy_MMIO_MACCTL,
  1673. b43legacy_read32(dev,
  1674. B43legacy_MMIO_MACCTL)
  1675. & 0xFFFF3FFF);
  1676. b43legacy_write16(dev, B43legacy_MMIO_GPIO_MASK,
  1677. b43legacy_read16(dev,
  1678. B43legacy_MMIO_GPIO_MASK)
  1679. | 0x000F);
  1680. mask = 0x0000001F;
  1681. set = 0x0000000F;
  1682. if (dev->dev->bus->chip_id == 0x4301) {
  1683. mask |= 0x0060;
  1684. set |= 0x0060;
  1685. }
  1686. if (dev->dev->bus->sprom.boardflags_lo & B43legacy_BFL_PACTRL) {
  1687. b43legacy_write16(dev, B43legacy_MMIO_GPIO_MASK,
  1688. b43legacy_read16(dev,
  1689. B43legacy_MMIO_GPIO_MASK)
  1690. | 0x0200);
  1691. mask |= 0x0200;
  1692. set |= 0x0200;
  1693. }
  1694. if (dev->dev->id.revision >= 2)
  1695. mask |= 0x0010; /* FIXME: This is redundant. */
  1696. #ifdef CONFIG_SSB_DRIVER_PCICORE
  1697. pcidev = bus->pcicore.dev;
  1698. #endif
  1699. gpiodev = bus->chipco.dev ? : pcidev;
  1700. if (!gpiodev)
  1701. return 0;
  1702. ssb_write32(gpiodev, B43legacy_GPIO_CONTROL,
  1703. (ssb_read32(gpiodev, B43legacy_GPIO_CONTROL)
  1704. & ~mask) | set);
  1705. return 0;
  1706. }
  1707. /* Turn off all GPIO stuff. Call this on module unload, for example. */
  1708. static void b43legacy_gpio_cleanup(struct b43legacy_wldev *dev)
  1709. {
  1710. struct ssb_bus *bus = dev->dev->bus;
  1711. struct ssb_device *gpiodev, *pcidev = NULL;
  1712. #ifdef CONFIG_SSB_DRIVER_PCICORE
  1713. pcidev = bus->pcicore.dev;
  1714. #endif
  1715. gpiodev = bus->chipco.dev ? : pcidev;
  1716. if (!gpiodev)
  1717. return;
  1718. ssb_write32(gpiodev, B43legacy_GPIO_CONTROL, 0);
  1719. }
  1720. /* http://bcm-specs.sipsolutions.net/EnableMac */
  1721. void b43legacy_mac_enable(struct b43legacy_wldev *dev)
  1722. {
  1723. dev->mac_suspended--;
  1724. B43legacy_WARN_ON(dev->mac_suspended < 0);
  1725. B43legacy_WARN_ON(irqs_disabled());
  1726. if (dev->mac_suspended == 0) {
  1727. b43legacy_write32(dev, B43legacy_MMIO_MACCTL,
  1728. b43legacy_read32(dev,
  1729. B43legacy_MMIO_MACCTL)
  1730. | B43legacy_MACCTL_ENABLED);
  1731. b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_REASON,
  1732. B43legacy_IRQ_MAC_SUSPENDED);
  1733. /* the next two are dummy reads */
  1734. b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
  1735. b43legacy_read32(dev, B43legacy_MMIO_GEN_IRQ_REASON);
  1736. b43legacy_power_saving_ctl_bits(dev, -1, -1);
  1737. /* Re-enable IRQs. */
  1738. spin_lock_irq(&dev->wl->irq_lock);
  1739. b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_MASK,
  1740. dev->irq_mask);
  1741. spin_unlock_irq(&dev->wl->irq_lock);
  1742. }
  1743. }
  1744. /* http://bcm-specs.sipsolutions.net/SuspendMAC */
  1745. void b43legacy_mac_suspend(struct b43legacy_wldev *dev)
  1746. {
  1747. int i;
  1748. u32 tmp;
  1749. might_sleep();
  1750. B43legacy_WARN_ON(irqs_disabled());
  1751. B43legacy_WARN_ON(dev->mac_suspended < 0);
  1752. if (dev->mac_suspended == 0) {
  1753. /* Mask IRQs before suspending MAC. Otherwise
  1754. * the MAC stays busy and won't suspend. */
  1755. spin_lock_irq(&dev->wl->irq_lock);
  1756. b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_MASK, 0);
  1757. spin_unlock_irq(&dev->wl->irq_lock);
  1758. b43legacy_synchronize_irq(dev);
  1759. b43legacy_power_saving_ctl_bits(dev, -1, 1);
  1760. b43legacy_write32(dev, B43legacy_MMIO_MACCTL,
  1761. b43legacy_read32(dev,
  1762. B43legacy_MMIO_MACCTL)
  1763. & ~B43legacy_MACCTL_ENABLED);
  1764. b43legacy_read32(dev, B43legacy_MMIO_GEN_IRQ_REASON);
  1765. for (i = 40; i; i--) {
  1766. tmp = b43legacy_read32(dev,
  1767. B43legacy_MMIO_GEN_IRQ_REASON);
  1768. if (tmp & B43legacy_IRQ_MAC_SUSPENDED)
  1769. goto out;
  1770. msleep(1);
  1771. }
  1772. b43legacyerr(dev->wl, "MAC suspend failed\n");
  1773. }
  1774. out:
  1775. dev->mac_suspended++;
  1776. }
  1777. static void b43legacy_adjust_opmode(struct b43legacy_wldev *dev)
  1778. {
  1779. struct b43legacy_wl *wl = dev->wl;
  1780. u32 ctl;
  1781. u16 cfp_pretbtt;
  1782. ctl = b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
  1783. /* Reset status to STA infrastructure mode. */
  1784. ctl &= ~B43legacy_MACCTL_AP;
  1785. ctl &= ~B43legacy_MACCTL_KEEP_CTL;
  1786. ctl &= ~B43legacy_MACCTL_KEEP_BADPLCP;
  1787. ctl &= ~B43legacy_MACCTL_KEEP_BAD;
  1788. ctl &= ~B43legacy_MACCTL_PROMISC;
  1789. ctl &= ~B43legacy_MACCTL_BEACPROMISC;
  1790. ctl |= B43legacy_MACCTL_INFRA;
  1791. if (b43legacy_is_mode(wl, NL80211_IFTYPE_AP))
  1792. ctl |= B43legacy_MACCTL_AP;
  1793. else if (b43legacy_is_mode(wl, NL80211_IFTYPE_ADHOC))
  1794. ctl &= ~B43legacy_MACCTL_INFRA;
  1795. if (wl->filter_flags & FIF_CONTROL)
  1796. ctl |= B43legacy_MACCTL_KEEP_CTL;
  1797. if (wl->filter_flags & FIF_FCSFAIL)
  1798. ctl |= B43legacy_MACCTL_KEEP_BAD;
  1799. if (wl->filter_flags & FIF_PLCPFAIL)
  1800. ctl |= B43legacy_MACCTL_KEEP_BADPLCP;
  1801. if (wl->filter_flags & FIF_BCN_PRBRESP_PROMISC)
  1802. ctl |= B43legacy_MACCTL_BEACPROMISC;
  1803. /* Workaround: On old hardware the HW-MAC-address-filter
  1804. * doesn't work properly, so always run promisc in filter
  1805. * it in software. */
  1806. if (dev->dev->id.revision <= 4)
  1807. ctl |= B43legacy_MACCTL_PROMISC;
  1808. b43legacy_write32(dev, B43legacy_MMIO_MACCTL, ctl);
  1809. cfp_pretbtt = 2;
  1810. if ((ctl & B43legacy_MACCTL_INFRA) &&
  1811. !(ctl & B43legacy_MACCTL_AP)) {
  1812. if (dev->dev->bus->chip_id == 0x4306 &&
  1813. dev->dev->bus->chip_rev == 3)
  1814. cfp_pretbtt = 100;
  1815. else
  1816. cfp_pretbtt = 50;
  1817. }
  1818. b43legacy_write16(dev, 0x612, cfp_pretbtt);
  1819. }
  1820. static void b43legacy_rate_memory_write(struct b43legacy_wldev *dev,
  1821. u16 rate,
  1822. int is_ofdm)
  1823. {
  1824. u16 offset;
  1825. if (is_ofdm) {
  1826. offset = 0x480;
  1827. offset += (b43legacy_plcp_get_ratecode_ofdm(rate) & 0x000F) * 2;
  1828. } else {
  1829. offset = 0x4C0;
  1830. offset += (b43legacy_plcp_get_ratecode_cck(rate) & 0x000F) * 2;
  1831. }
  1832. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, offset + 0x20,
  1833. b43legacy_shm_read16(dev,
  1834. B43legacy_SHM_SHARED, offset));
  1835. }
  1836. static void b43legacy_rate_memory_init(struct b43legacy_wldev *dev)
  1837. {
  1838. switch (dev->phy.type) {
  1839. case B43legacy_PHYTYPE_G:
  1840. b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_6MB, 1);
  1841. b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_12MB, 1);
  1842. b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_18MB, 1);
  1843. b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_24MB, 1);
  1844. b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_36MB, 1);
  1845. b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_48MB, 1);
  1846. b43legacy_rate_memory_write(dev, B43legacy_OFDM_RATE_54MB, 1);
  1847. /* fallthrough */
  1848. case B43legacy_PHYTYPE_B:
  1849. b43legacy_rate_memory_write(dev, B43legacy_CCK_RATE_1MB, 0);
  1850. b43legacy_rate_memory_write(dev, B43legacy_CCK_RATE_2MB, 0);
  1851. b43legacy_rate_memory_write(dev, B43legacy_CCK_RATE_5MB, 0);
  1852. b43legacy_rate_memory_write(dev, B43legacy_CCK_RATE_11MB, 0);
  1853. break;
  1854. default:
  1855. B43legacy_BUG_ON(1);
  1856. }
  1857. }
  1858. /* Set the TX-Antenna for management frames sent by firmware. */
  1859. static void b43legacy_mgmtframe_txantenna(struct b43legacy_wldev *dev,
  1860. int antenna)
  1861. {
  1862. u16 ant = 0;
  1863. u16 tmp;
  1864. switch (antenna) {
  1865. case B43legacy_ANTENNA0:
  1866. ant |= B43legacy_TX4_PHY_ANT0;
  1867. break;
  1868. case B43legacy_ANTENNA1:
  1869. ant |= B43legacy_TX4_PHY_ANT1;
  1870. break;
  1871. case B43legacy_ANTENNA_AUTO:
  1872. ant |= B43legacy_TX4_PHY_ANTLAST;
  1873. break;
  1874. default:
  1875. B43legacy_BUG_ON(1);
  1876. }
  1877. /* FIXME We also need to set the other flags of the PHY control
  1878. * field somewhere. */
  1879. /* For Beacons */
  1880. tmp = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
  1881. B43legacy_SHM_SH_BEACPHYCTL);
  1882. tmp = (tmp & ~B43legacy_TX4_PHY_ANT) | ant;
  1883. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
  1884. B43legacy_SHM_SH_BEACPHYCTL, tmp);
  1885. /* For ACK/CTS */
  1886. tmp = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
  1887. B43legacy_SHM_SH_ACKCTSPHYCTL);
  1888. tmp = (tmp & ~B43legacy_TX4_PHY_ANT) | ant;
  1889. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
  1890. B43legacy_SHM_SH_ACKCTSPHYCTL, tmp);
  1891. /* For Probe Resposes */
  1892. tmp = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
  1893. B43legacy_SHM_SH_PRPHYCTL);
  1894. tmp = (tmp & ~B43legacy_TX4_PHY_ANT) | ant;
  1895. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
  1896. B43legacy_SHM_SH_PRPHYCTL, tmp);
  1897. }
  1898. /* This is the opposite of b43legacy_chip_init() */
  1899. static void b43legacy_chip_exit(struct b43legacy_wldev *dev)
  1900. {
  1901. b43legacy_radio_turn_off(dev, 1);
  1902. b43legacy_gpio_cleanup(dev);
  1903. /* firmware is released later */
  1904. }
  1905. /* Initialize the chip
  1906. * http://bcm-specs.sipsolutions.net/ChipInit
  1907. */
  1908. static int b43legacy_chip_init(struct b43legacy_wldev *dev)
  1909. {
  1910. struct b43legacy_phy *phy = &dev->phy;
  1911. int err;
  1912. int tmp;
  1913. u32 value32, macctl;
  1914. u16 value16;
  1915. /* Initialize the MAC control */
  1916. macctl = B43legacy_MACCTL_IHR_ENABLED | B43legacy_MACCTL_SHM_ENABLED;
  1917. if (dev->phy.gmode)
  1918. macctl |= B43legacy_MACCTL_GMODE;
  1919. macctl |= B43legacy_MACCTL_INFRA;
  1920. b43legacy_write32(dev, B43legacy_MMIO_MACCTL, macctl);
  1921. err = b43legacy_upload_microcode(dev);
  1922. if (err)
  1923. goto out; /* firmware is released later */
  1924. err = b43legacy_gpio_init(dev);
  1925. if (err)
  1926. goto out; /* firmware is released later */
  1927. err = b43legacy_upload_initvals(dev);
  1928. if (err)
  1929. goto err_gpio_clean;
  1930. b43legacy_radio_turn_on(dev);
  1931. b43legacy_write16(dev, 0x03E6, 0x0000);
  1932. err = b43legacy_phy_init(dev);
  1933. if (err)
  1934. goto err_radio_off;
  1935. /* Select initial Interference Mitigation. */
  1936. tmp = phy->interfmode;
  1937. phy->interfmode = B43legacy_INTERFMODE_NONE;
  1938. b43legacy_radio_set_interference_mitigation(dev, tmp);
  1939. b43legacy_phy_set_antenna_diversity(dev);
  1940. b43legacy_mgmtframe_txantenna(dev, B43legacy_ANTENNA_DEFAULT);
  1941. if (phy->type == B43legacy_PHYTYPE_B) {
  1942. value16 = b43legacy_read16(dev, 0x005E);
  1943. value16 |= 0x0004;
  1944. b43legacy_write16(dev, 0x005E, value16);
  1945. }
  1946. b43legacy_write32(dev, 0x0100, 0x01000000);
  1947. if (dev->dev->id.revision < 5)
  1948. b43legacy_write32(dev, 0x010C, 0x01000000);
  1949. value32 = b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
  1950. value32 &= ~B43legacy_MACCTL_INFRA;
  1951. b43legacy_write32(dev, B43legacy_MMIO_MACCTL, value32);
  1952. value32 = b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
  1953. value32 |= B43legacy_MACCTL_INFRA;
  1954. b43legacy_write32(dev, B43legacy_MMIO_MACCTL, value32);
  1955. if (b43legacy_using_pio(dev)) {
  1956. b43legacy_write32(dev, 0x0210, 0x00000100);
  1957. b43legacy_write32(dev, 0x0230, 0x00000100);
  1958. b43legacy_write32(dev, 0x0250, 0x00000100);
  1959. b43legacy_write32(dev, 0x0270, 0x00000100);
  1960. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, 0x0034,
  1961. 0x0000);
  1962. }
  1963. /* Probe Response Timeout value */
  1964. /* FIXME: Default to 0, has to be set by ioctl probably... :-/ */
  1965. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED, 0x0074, 0x0000);
  1966. /* Initially set the wireless operation mode. */
  1967. b43legacy_adjust_opmode(dev);
  1968. if (dev->dev->id.revision < 3) {
  1969. b43legacy_write16(dev, 0x060E, 0x0000);
  1970. b43legacy_write16(dev, 0x0610, 0x8000);
  1971. b43legacy_write16(dev, 0x0604, 0x0000);
  1972. b43legacy_write16(dev, 0x0606, 0x0200);
  1973. } else {
  1974. b43legacy_write32(dev, 0x0188, 0x80000000);
  1975. b43legacy_write32(dev, 0x018C, 0x02000000);
  1976. }
  1977. b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_REASON, 0x00004000);
  1978. b43legacy_write32(dev, B43legacy_MMIO_DMA0_IRQ_MASK, 0x0001DC00);
  1979. b43legacy_write32(dev, B43legacy_MMIO_DMA1_IRQ_MASK, 0x0000DC00);
  1980. b43legacy_write32(dev, B43legacy_MMIO_DMA2_IRQ_MASK, 0x0000DC00);
  1981. b43legacy_write32(dev, B43legacy_MMIO_DMA3_IRQ_MASK, 0x0001DC00);
  1982. b43legacy_write32(dev, B43legacy_MMIO_DMA4_IRQ_MASK, 0x0000DC00);
  1983. b43legacy_write32(dev, B43legacy_MMIO_DMA5_IRQ_MASK, 0x0000DC00);
  1984. value32 = ssb_read32(dev->dev, SSB_TMSLOW);
  1985. value32 |= B43legacy_TMSLOW_MACPHYCLKEN;
  1986. ssb_write32(dev->dev, SSB_TMSLOW, value32);
  1987. b43legacy_write16(dev, B43legacy_MMIO_POWERUP_DELAY,
  1988. dev->dev->bus->chipco.fast_pwrup_delay);
  1989. /* PHY TX errors counter. */
  1990. atomic_set(&phy->txerr_cnt, B43legacy_PHY_TX_BADNESS_LIMIT);
  1991. B43legacy_WARN_ON(err != 0);
  1992. b43legacydbg(dev->wl, "Chip initialized\n");
  1993. out:
  1994. return err;
  1995. err_radio_off:
  1996. b43legacy_radio_turn_off(dev, 1);
  1997. err_gpio_clean:
  1998. b43legacy_gpio_cleanup(dev);
  1999. goto out;
  2000. }
  2001. static void b43legacy_periodic_every120sec(struct b43legacy_wldev *dev)
  2002. {
  2003. struct b43legacy_phy *phy = &dev->phy;
  2004. if (phy->type != B43legacy_PHYTYPE_G || phy->rev < 2)
  2005. return;
  2006. b43legacy_mac_suspend(dev);
  2007. b43legacy_phy_lo_g_measure(dev);
  2008. b43legacy_mac_enable(dev);
  2009. }
  2010. static void b43legacy_periodic_every60sec(struct b43legacy_wldev *dev)
  2011. {
  2012. b43legacy_phy_lo_mark_all_unused(dev);
  2013. if (dev->dev->bus->sprom.boardflags_lo & B43legacy_BFL_RSSI) {
  2014. b43legacy_mac_suspend(dev);
  2015. b43legacy_calc_nrssi_slope(dev);
  2016. b43legacy_mac_enable(dev);
  2017. }
  2018. }
  2019. static void b43legacy_periodic_every30sec(struct b43legacy_wldev *dev)
  2020. {
  2021. /* Update device statistics. */
  2022. b43legacy_calculate_link_quality(dev);
  2023. }
  2024. static void b43legacy_periodic_every15sec(struct b43legacy_wldev *dev)
  2025. {
  2026. b43legacy_phy_xmitpower(dev); /* FIXME: unless scanning? */
  2027. atomic_set(&dev->phy.txerr_cnt, B43legacy_PHY_TX_BADNESS_LIMIT);
  2028. wmb();
  2029. }
  2030. static void do_periodic_work(struct b43legacy_wldev *dev)
  2031. {
  2032. unsigned int state;
  2033. state = dev->periodic_state;
  2034. if (state % 8 == 0)
  2035. b43legacy_periodic_every120sec(dev);
  2036. if (state % 4 == 0)
  2037. b43legacy_periodic_every60sec(dev);
  2038. if (state % 2 == 0)
  2039. b43legacy_periodic_every30sec(dev);
  2040. b43legacy_periodic_every15sec(dev);
  2041. }
  2042. /* Periodic work locking policy:
  2043. * The whole periodic work handler is protected by
  2044. * wl->mutex. If another lock is needed somewhere in the
  2045. * pwork callchain, it's acquired in-place, where it's needed.
  2046. */
  2047. static void b43legacy_periodic_work_handler(struct work_struct *work)
  2048. {
  2049. struct b43legacy_wldev *dev = container_of(work, struct b43legacy_wldev,
  2050. periodic_work.work);
  2051. struct b43legacy_wl *wl = dev->wl;
  2052. unsigned long delay;
  2053. mutex_lock(&wl->mutex);
  2054. if (unlikely(b43legacy_status(dev) != B43legacy_STAT_STARTED))
  2055. goto out;
  2056. if (b43legacy_debug(dev, B43legacy_DBG_PWORK_STOP))
  2057. goto out_requeue;
  2058. do_periodic_work(dev);
  2059. dev->periodic_state++;
  2060. out_requeue:
  2061. if (b43legacy_debug(dev, B43legacy_DBG_PWORK_FAST))
  2062. delay = msecs_to_jiffies(50);
  2063. else
  2064. delay = round_jiffies_relative(HZ * 15);
  2065. ieee80211_queue_delayed_work(wl->hw, &dev->periodic_work, delay);
  2066. out:
  2067. mutex_unlock(&wl->mutex);
  2068. }
  2069. static void b43legacy_periodic_tasks_setup(struct b43legacy_wldev *dev)
  2070. {
  2071. struct delayed_work *work = &dev->periodic_work;
  2072. dev->periodic_state = 0;
  2073. INIT_DELAYED_WORK(work, b43legacy_periodic_work_handler);
  2074. ieee80211_queue_delayed_work(dev->wl->hw, work, 0);
  2075. }
  2076. /* Validate access to the chip (SHM) */
  2077. static int b43legacy_validate_chipaccess(struct b43legacy_wldev *dev)
  2078. {
  2079. u32 value;
  2080. u32 shm_backup;
  2081. shm_backup = b43legacy_shm_read32(dev, B43legacy_SHM_SHARED, 0);
  2082. b43legacy_shm_write32(dev, B43legacy_SHM_SHARED, 0, 0xAA5555AA);
  2083. if (b43legacy_shm_read32(dev, B43legacy_SHM_SHARED, 0) !=
  2084. 0xAA5555AA)
  2085. goto error;
  2086. b43legacy_shm_write32(dev, B43legacy_SHM_SHARED, 0, 0x55AAAA55);
  2087. if (b43legacy_shm_read32(dev, B43legacy_SHM_SHARED, 0) !=
  2088. 0x55AAAA55)
  2089. goto error;
  2090. b43legacy_shm_write32(dev, B43legacy_SHM_SHARED, 0, shm_backup);
  2091. value = b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
  2092. if ((value | B43legacy_MACCTL_GMODE) !=
  2093. (B43legacy_MACCTL_GMODE | B43legacy_MACCTL_IHR_ENABLED))
  2094. goto error;
  2095. value = b43legacy_read32(dev, B43legacy_MMIO_GEN_IRQ_REASON);
  2096. if (value)
  2097. goto error;
  2098. return 0;
  2099. error:
  2100. b43legacyerr(dev->wl, "Failed to validate the chipaccess\n");
  2101. return -ENODEV;
  2102. }
  2103. static void b43legacy_security_init(struct b43legacy_wldev *dev)
  2104. {
  2105. dev->max_nr_keys = (dev->dev->id.revision >= 5) ? 58 : 20;
  2106. B43legacy_WARN_ON(dev->max_nr_keys > ARRAY_SIZE(dev->key));
  2107. dev->ktp = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
  2108. 0x0056);
  2109. /* KTP is a word address, but we address SHM bytewise.
  2110. * So multiply by two.
  2111. */
  2112. dev->ktp *= 2;
  2113. if (dev->dev->id.revision >= 5)
  2114. /* Number of RCMTA address slots */
  2115. b43legacy_write16(dev, B43legacy_MMIO_RCMTA_COUNT,
  2116. dev->max_nr_keys - 8);
  2117. }
  2118. #ifdef CONFIG_B43LEGACY_HWRNG
  2119. static int b43legacy_rng_read(struct hwrng *rng, u32 *data)
  2120. {
  2121. struct b43legacy_wl *wl = (struct b43legacy_wl *)rng->priv;
  2122. unsigned long flags;
  2123. /* Don't take wl->mutex here, as it could deadlock with
  2124. * hwrng internal locking. It's not needed to take
  2125. * wl->mutex here, anyway. */
  2126. spin_lock_irqsave(&wl->irq_lock, flags);
  2127. *data = b43legacy_read16(wl->current_dev, B43legacy_MMIO_RNG);
  2128. spin_unlock_irqrestore(&wl->irq_lock, flags);
  2129. return (sizeof(u16));
  2130. }
  2131. #endif
  2132. static void b43legacy_rng_exit(struct b43legacy_wl *wl)
  2133. {
  2134. #ifdef CONFIG_B43LEGACY_HWRNG
  2135. if (wl->rng_initialized)
  2136. hwrng_unregister(&wl->rng);
  2137. #endif
  2138. }
  2139. static int b43legacy_rng_init(struct b43legacy_wl *wl)
  2140. {
  2141. int err = 0;
  2142. #ifdef CONFIG_B43LEGACY_HWRNG
  2143. snprintf(wl->rng_name, ARRAY_SIZE(wl->rng_name),
  2144. "%s_%s", KBUILD_MODNAME, wiphy_name(wl->hw->wiphy));
  2145. wl->rng.name = wl->rng_name;
  2146. wl->rng.data_read = b43legacy_rng_read;
  2147. wl->rng.priv = (unsigned long)wl;
  2148. wl->rng_initialized = 1;
  2149. err = hwrng_register(&wl->rng);
  2150. if (err) {
  2151. wl->rng_initialized = 0;
  2152. b43legacyerr(wl, "Failed to register the random "
  2153. "number generator (%d)\n", err);
  2154. }
  2155. #endif
  2156. return err;
  2157. }
  2158. static void b43legacy_tx_work(struct work_struct *work)
  2159. {
  2160. struct b43legacy_wl *wl = container_of(work, struct b43legacy_wl,
  2161. tx_work);
  2162. struct b43legacy_wldev *dev;
  2163. struct sk_buff *skb;
  2164. int queue_num;
  2165. int err = 0;
  2166. mutex_lock(&wl->mutex);
  2167. dev = wl->current_dev;
  2168. if (unlikely(!dev || b43legacy_status(dev) < B43legacy_STAT_STARTED)) {
  2169. mutex_unlock(&wl->mutex);
  2170. return;
  2171. }
  2172. for (queue_num = 0; queue_num < B43legacy_QOS_QUEUE_NUM; queue_num++) {
  2173. while (skb_queue_len(&wl->tx_queue[queue_num])) {
  2174. skb = skb_dequeue(&wl->tx_queue[queue_num]);
  2175. if (b43legacy_using_pio(dev))
  2176. err = b43legacy_pio_tx(dev, skb);
  2177. else
  2178. err = b43legacy_dma_tx(dev, skb);
  2179. if (err == -ENOSPC) {
  2180. wl->tx_queue_stopped[queue_num] = 1;
  2181. ieee80211_stop_queue(wl->hw, queue_num);
  2182. skb_queue_head(&wl->tx_queue[queue_num], skb);
  2183. break;
  2184. }
  2185. if (unlikely(err))
  2186. dev_kfree_skb(skb); /* Drop it */
  2187. err = 0;
  2188. }
  2189. if (!err)
  2190. wl->tx_queue_stopped[queue_num] = 0;
  2191. }
  2192. mutex_unlock(&wl->mutex);
  2193. }
  2194. static void b43legacy_op_tx(struct ieee80211_hw *hw,
  2195. struct ieee80211_tx_control *control,
  2196. struct sk_buff *skb)
  2197. {
  2198. struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
  2199. if (unlikely(skb->len < 2 + 2 + 6)) {
  2200. /* Too short, this can't be a valid frame. */
  2201. dev_kfree_skb_any(skb);
  2202. return;
  2203. }
  2204. B43legacy_WARN_ON(skb_shinfo(skb)->nr_frags);
  2205. skb_queue_tail(&wl->tx_queue[skb->queue_mapping], skb);
  2206. if (!wl->tx_queue_stopped[skb->queue_mapping])
  2207. ieee80211_queue_work(wl->hw, &wl->tx_work);
  2208. else
  2209. ieee80211_stop_queue(wl->hw, skb->queue_mapping);
  2210. }
  2211. static int b43legacy_op_conf_tx(struct ieee80211_hw *hw,
  2212. struct ieee80211_vif *vif, u16 queue,
  2213. const struct ieee80211_tx_queue_params *params)
  2214. {
  2215. return 0;
  2216. }
  2217. static int b43legacy_op_get_stats(struct ieee80211_hw *hw,
  2218. struct ieee80211_low_level_stats *stats)
  2219. {
  2220. struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
  2221. unsigned long flags;
  2222. spin_lock_irqsave(&wl->irq_lock, flags);
  2223. memcpy(stats, &wl->ieee_stats, sizeof(*stats));
  2224. spin_unlock_irqrestore(&wl->irq_lock, flags);
  2225. return 0;
  2226. }
  2227. static const char *phymode_to_string(unsigned int phymode)
  2228. {
  2229. switch (phymode) {
  2230. case B43legacy_PHYMODE_B:
  2231. return "B";
  2232. case B43legacy_PHYMODE_G:
  2233. return "G";
  2234. default:
  2235. B43legacy_BUG_ON(1);
  2236. }
  2237. return "";
  2238. }
  2239. static int find_wldev_for_phymode(struct b43legacy_wl *wl,
  2240. unsigned int phymode,
  2241. struct b43legacy_wldev **dev,
  2242. bool *gmode)
  2243. {
  2244. struct b43legacy_wldev *d;
  2245. list_for_each_entry(d, &wl->devlist, list) {
  2246. if (d->phy.possible_phymodes & phymode) {
  2247. /* Ok, this device supports the PHY-mode.
  2248. * Set the gmode bit. */
  2249. *gmode = true;
  2250. *dev = d;
  2251. return 0;
  2252. }
  2253. }
  2254. return -ESRCH;
  2255. }
  2256. static void b43legacy_put_phy_into_reset(struct b43legacy_wldev *dev)
  2257. {
  2258. struct ssb_device *sdev = dev->dev;
  2259. u32 tmslow;
  2260. tmslow = ssb_read32(sdev, SSB_TMSLOW);
  2261. tmslow &= ~B43legacy_TMSLOW_GMODE;
  2262. tmslow |= B43legacy_TMSLOW_PHYRESET;
  2263. tmslow |= SSB_TMSLOW_FGC;
  2264. ssb_write32(sdev, SSB_TMSLOW, tmslow);
  2265. msleep(1);
  2266. tmslow = ssb_read32(sdev, SSB_TMSLOW);
  2267. tmslow &= ~SSB_TMSLOW_FGC;
  2268. tmslow |= B43legacy_TMSLOW_PHYRESET;
  2269. ssb_write32(sdev, SSB_TMSLOW, tmslow);
  2270. msleep(1);
  2271. }
  2272. /* Expects wl->mutex locked */
  2273. static int b43legacy_switch_phymode(struct b43legacy_wl *wl,
  2274. unsigned int new_mode)
  2275. {
  2276. struct b43legacy_wldev *uninitialized_var(up_dev);
  2277. struct b43legacy_wldev *down_dev;
  2278. int err;
  2279. bool gmode = false;
  2280. int prev_status;
  2281. err = find_wldev_for_phymode(wl, new_mode, &up_dev, &gmode);
  2282. if (err) {
  2283. b43legacyerr(wl, "Could not find a device for %s-PHY mode\n",
  2284. phymode_to_string(new_mode));
  2285. return err;
  2286. }
  2287. if ((up_dev == wl->current_dev) &&
  2288. (!!wl->current_dev->phy.gmode == !!gmode))
  2289. /* This device is already running. */
  2290. return 0;
  2291. b43legacydbg(wl, "Reconfiguring PHYmode to %s-PHY\n",
  2292. phymode_to_string(new_mode));
  2293. down_dev = wl->current_dev;
  2294. prev_status = b43legacy_status(down_dev);
  2295. /* Shutdown the currently running core. */
  2296. if (prev_status >= B43legacy_STAT_STARTED)
  2297. b43legacy_wireless_core_stop(down_dev);
  2298. if (prev_status >= B43legacy_STAT_INITIALIZED)
  2299. b43legacy_wireless_core_exit(down_dev);
  2300. if (down_dev != up_dev)
  2301. /* We switch to a different core, so we put PHY into
  2302. * RESET on the old core. */
  2303. b43legacy_put_phy_into_reset(down_dev);
  2304. /* Now start the new core. */
  2305. up_dev->phy.gmode = gmode;
  2306. if (prev_status >= B43legacy_STAT_INITIALIZED) {
  2307. err = b43legacy_wireless_core_init(up_dev);
  2308. if (err) {
  2309. b43legacyerr(wl, "Fatal: Could not initialize device"
  2310. " for newly selected %s-PHY mode\n",
  2311. phymode_to_string(new_mode));
  2312. goto init_failure;
  2313. }
  2314. }
  2315. if (prev_status >= B43legacy_STAT_STARTED) {
  2316. err = b43legacy_wireless_core_start(up_dev);
  2317. if (err) {
  2318. b43legacyerr(wl, "Fatal: Could not start device for "
  2319. "newly selected %s-PHY mode\n",
  2320. phymode_to_string(new_mode));
  2321. b43legacy_wireless_core_exit(up_dev);
  2322. goto init_failure;
  2323. }
  2324. }
  2325. B43legacy_WARN_ON(b43legacy_status(up_dev) != prev_status);
  2326. b43legacy_shm_write32(up_dev, B43legacy_SHM_SHARED, 0x003E, 0);
  2327. wl->current_dev = up_dev;
  2328. return 0;
  2329. init_failure:
  2330. /* Whoops, failed to init the new core. No core is operating now. */
  2331. wl->current_dev = NULL;
  2332. return err;
  2333. }
  2334. /* Write the short and long frame retry limit values. */
  2335. static void b43legacy_set_retry_limits(struct b43legacy_wldev *dev,
  2336. unsigned int short_retry,
  2337. unsigned int long_retry)
  2338. {
  2339. /* The retry limit is a 4-bit counter. Enforce this to avoid overflowing
  2340. * the chip-internal counter. */
  2341. short_retry = min(short_retry, (unsigned int)0xF);
  2342. long_retry = min(long_retry, (unsigned int)0xF);
  2343. b43legacy_shm_write16(dev, B43legacy_SHM_WIRELESS, 0x0006, short_retry);
  2344. b43legacy_shm_write16(dev, B43legacy_SHM_WIRELESS, 0x0007, long_retry);
  2345. }
  2346. static int b43legacy_op_dev_config(struct ieee80211_hw *hw,
  2347. u32 changed)
  2348. {
  2349. struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
  2350. struct b43legacy_wldev *dev;
  2351. struct b43legacy_phy *phy;
  2352. struct ieee80211_conf *conf = &hw->conf;
  2353. unsigned long flags;
  2354. unsigned int new_phymode = 0xFFFF;
  2355. int antenna_tx;
  2356. int err = 0;
  2357. antenna_tx = B43legacy_ANTENNA_DEFAULT;
  2358. mutex_lock(&wl->mutex);
  2359. dev = wl->current_dev;
  2360. phy = &dev->phy;
  2361. if (changed & IEEE80211_CONF_CHANGE_RETRY_LIMITS)
  2362. b43legacy_set_retry_limits(dev,
  2363. conf->short_frame_max_tx_count,
  2364. conf->long_frame_max_tx_count);
  2365. changed &= ~IEEE80211_CONF_CHANGE_RETRY_LIMITS;
  2366. if (!changed)
  2367. goto out_unlock_mutex;
  2368. /* Switch the PHY mode (if necessary). */
  2369. switch (conf->chandef.chan->band) {
  2370. case IEEE80211_BAND_2GHZ:
  2371. if (phy->type == B43legacy_PHYTYPE_B)
  2372. new_phymode = B43legacy_PHYMODE_B;
  2373. else
  2374. new_phymode = B43legacy_PHYMODE_G;
  2375. break;
  2376. default:
  2377. B43legacy_WARN_ON(1);
  2378. }
  2379. err = b43legacy_switch_phymode(wl, new_phymode);
  2380. if (err)
  2381. goto out_unlock_mutex;
  2382. /* Disable IRQs while reconfiguring the device.
  2383. * This makes it possible to drop the spinlock throughout
  2384. * the reconfiguration process. */
  2385. spin_lock_irqsave(&wl->irq_lock, flags);
  2386. if (b43legacy_status(dev) < B43legacy_STAT_STARTED) {
  2387. spin_unlock_irqrestore(&wl->irq_lock, flags);
  2388. goto out_unlock_mutex;
  2389. }
  2390. b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_MASK, 0);
  2391. spin_unlock_irqrestore(&wl->irq_lock, flags);
  2392. b43legacy_synchronize_irq(dev);
  2393. /* Switch to the requested channel.
  2394. * The firmware takes care of races with the TX handler. */
  2395. if (conf->chandef.chan->hw_value != phy->channel)
  2396. b43legacy_radio_selectchannel(dev, conf->chandef.chan->hw_value,
  2397. 0);
  2398. dev->wl->radiotap_enabled = !!(conf->flags & IEEE80211_CONF_MONITOR);
  2399. /* Adjust the desired TX power level. */
  2400. if (conf->power_level != 0) {
  2401. if (conf->power_level != phy->power_level) {
  2402. phy->power_level = conf->power_level;
  2403. b43legacy_phy_xmitpower(dev);
  2404. }
  2405. }
  2406. /* Antennas for RX and management frame TX. */
  2407. b43legacy_mgmtframe_txantenna(dev, antenna_tx);
  2408. if (wl->radio_enabled != phy->radio_on) {
  2409. if (wl->radio_enabled) {
  2410. b43legacy_radio_turn_on(dev);
  2411. b43legacyinfo(dev->wl, "Radio turned on by software\n");
  2412. if (!dev->radio_hw_enable)
  2413. b43legacyinfo(dev->wl, "The hardware RF-kill"
  2414. " button still turns the radio"
  2415. " physically off. Press the"
  2416. " button to turn it on.\n");
  2417. } else {
  2418. b43legacy_radio_turn_off(dev, 0);
  2419. b43legacyinfo(dev->wl, "Radio turned off by"
  2420. " software\n");
  2421. }
  2422. }
  2423. spin_lock_irqsave(&wl->irq_lock, flags);
  2424. b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_MASK, dev->irq_mask);
  2425. mmiowb();
  2426. spin_unlock_irqrestore(&wl->irq_lock, flags);
  2427. out_unlock_mutex:
  2428. mutex_unlock(&wl->mutex);
  2429. return err;
  2430. }
  2431. static void b43legacy_update_basic_rates(struct b43legacy_wldev *dev, u32 brates)
  2432. {
  2433. struct ieee80211_supported_band *sband =
  2434. dev->wl->hw->wiphy->bands[IEEE80211_BAND_2GHZ];
  2435. struct ieee80211_rate *rate;
  2436. int i;
  2437. u16 basic, direct, offset, basic_offset, rateptr;
  2438. for (i = 0; i < sband->n_bitrates; i++) {
  2439. rate = &sband->bitrates[i];
  2440. if (b43legacy_is_cck_rate(rate->hw_value)) {
  2441. direct = B43legacy_SHM_SH_CCKDIRECT;
  2442. basic = B43legacy_SHM_SH_CCKBASIC;
  2443. offset = b43legacy_plcp_get_ratecode_cck(rate->hw_value);
  2444. offset &= 0xF;
  2445. } else {
  2446. direct = B43legacy_SHM_SH_OFDMDIRECT;
  2447. basic = B43legacy_SHM_SH_OFDMBASIC;
  2448. offset = b43legacy_plcp_get_ratecode_ofdm(rate->hw_value);
  2449. offset &= 0xF;
  2450. }
  2451. rate = ieee80211_get_response_rate(sband, brates, rate->bitrate);
  2452. if (b43legacy_is_cck_rate(rate->hw_value)) {
  2453. basic_offset = b43legacy_plcp_get_ratecode_cck(rate->hw_value);
  2454. basic_offset &= 0xF;
  2455. } else {
  2456. basic_offset = b43legacy_plcp_get_ratecode_ofdm(rate->hw_value);
  2457. basic_offset &= 0xF;
  2458. }
  2459. /*
  2460. * Get the pointer that we need to point to
  2461. * from the direct map
  2462. */
  2463. rateptr = b43legacy_shm_read16(dev, B43legacy_SHM_SHARED,
  2464. direct + 2 * basic_offset);
  2465. /* and write it to the basic map */
  2466. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
  2467. basic + 2 * offset, rateptr);
  2468. }
  2469. }
  2470. static void b43legacy_op_bss_info_changed(struct ieee80211_hw *hw,
  2471. struct ieee80211_vif *vif,
  2472. struct ieee80211_bss_conf *conf,
  2473. u32 changed)
  2474. {
  2475. struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
  2476. struct b43legacy_wldev *dev;
  2477. unsigned long flags;
  2478. mutex_lock(&wl->mutex);
  2479. B43legacy_WARN_ON(wl->vif != vif);
  2480. dev = wl->current_dev;
  2481. /* Disable IRQs while reconfiguring the device.
  2482. * This makes it possible to drop the spinlock throughout
  2483. * the reconfiguration process. */
  2484. spin_lock_irqsave(&wl->irq_lock, flags);
  2485. if (b43legacy_status(dev) < B43legacy_STAT_STARTED) {
  2486. spin_unlock_irqrestore(&wl->irq_lock, flags);
  2487. goto out_unlock_mutex;
  2488. }
  2489. b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_MASK, 0);
  2490. if (changed & BSS_CHANGED_BSSID) {
  2491. b43legacy_synchronize_irq(dev);
  2492. if (conf->bssid)
  2493. memcpy(wl->bssid, conf->bssid, ETH_ALEN);
  2494. else
  2495. eth_zero_addr(wl->bssid);
  2496. }
  2497. if (b43legacy_status(dev) >= B43legacy_STAT_INITIALIZED) {
  2498. if (changed & BSS_CHANGED_BEACON &&
  2499. (b43legacy_is_mode(wl, NL80211_IFTYPE_AP) ||
  2500. b43legacy_is_mode(wl, NL80211_IFTYPE_ADHOC)))
  2501. b43legacy_update_templates(wl);
  2502. if (changed & BSS_CHANGED_BSSID)
  2503. b43legacy_write_mac_bssid_templates(dev);
  2504. }
  2505. spin_unlock_irqrestore(&wl->irq_lock, flags);
  2506. b43legacy_mac_suspend(dev);
  2507. if (changed & BSS_CHANGED_BEACON_INT &&
  2508. (b43legacy_is_mode(wl, NL80211_IFTYPE_AP) ||
  2509. b43legacy_is_mode(wl, NL80211_IFTYPE_ADHOC)))
  2510. b43legacy_set_beacon_int(dev, conf->beacon_int);
  2511. if (changed & BSS_CHANGED_BASIC_RATES)
  2512. b43legacy_update_basic_rates(dev, conf->basic_rates);
  2513. if (changed & BSS_CHANGED_ERP_SLOT) {
  2514. if (conf->use_short_slot)
  2515. b43legacy_short_slot_timing_enable(dev);
  2516. else
  2517. b43legacy_short_slot_timing_disable(dev);
  2518. }
  2519. b43legacy_mac_enable(dev);
  2520. spin_lock_irqsave(&wl->irq_lock, flags);
  2521. b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_MASK, dev->irq_mask);
  2522. /* XXX: why? */
  2523. mmiowb();
  2524. spin_unlock_irqrestore(&wl->irq_lock, flags);
  2525. out_unlock_mutex:
  2526. mutex_unlock(&wl->mutex);
  2527. }
  2528. static void b43legacy_op_configure_filter(struct ieee80211_hw *hw,
  2529. unsigned int changed,
  2530. unsigned int *fflags,u64 multicast)
  2531. {
  2532. struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
  2533. struct b43legacy_wldev *dev = wl->current_dev;
  2534. unsigned long flags;
  2535. if (!dev) {
  2536. *fflags = 0;
  2537. return;
  2538. }
  2539. spin_lock_irqsave(&wl->irq_lock, flags);
  2540. *fflags &= FIF_ALLMULTI |
  2541. FIF_FCSFAIL |
  2542. FIF_PLCPFAIL |
  2543. FIF_CONTROL |
  2544. FIF_OTHER_BSS |
  2545. FIF_BCN_PRBRESP_PROMISC;
  2546. changed &= FIF_ALLMULTI |
  2547. FIF_FCSFAIL |
  2548. FIF_PLCPFAIL |
  2549. FIF_CONTROL |
  2550. FIF_OTHER_BSS |
  2551. FIF_BCN_PRBRESP_PROMISC;
  2552. wl->filter_flags = *fflags;
  2553. if (changed && b43legacy_status(dev) >= B43legacy_STAT_INITIALIZED)
  2554. b43legacy_adjust_opmode(dev);
  2555. spin_unlock_irqrestore(&wl->irq_lock, flags);
  2556. }
  2557. /* Locking: wl->mutex */
  2558. static void b43legacy_wireless_core_stop(struct b43legacy_wldev *dev)
  2559. {
  2560. struct b43legacy_wl *wl = dev->wl;
  2561. unsigned long flags;
  2562. int queue_num;
  2563. if (b43legacy_status(dev) < B43legacy_STAT_STARTED)
  2564. return;
  2565. /* Disable and sync interrupts. We must do this before than
  2566. * setting the status to INITIALIZED, as the interrupt handler
  2567. * won't care about IRQs then. */
  2568. spin_lock_irqsave(&wl->irq_lock, flags);
  2569. b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_MASK, 0);
  2570. b43legacy_read32(dev, B43legacy_MMIO_GEN_IRQ_MASK); /* flush */
  2571. spin_unlock_irqrestore(&wl->irq_lock, flags);
  2572. b43legacy_synchronize_irq(dev);
  2573. b43legacy_set_status(dev, B43legacy_STAT_INITIALIZED);
  2574. mutex_unlock(&wl->mutex);
  2575. /* Must unlock as it would otherwise deadlock. No races here.
  2576. * Cancel the possibly running self-rearming periodic work. */
  2577. cancel_delayed_work_sync(&dev->periodic_work);
  2578. cancel_work_sync(&wl->tx_work);
  2579. mutex_lock(&wl->mutex);
  2580. /* Drain all TX queues. */
  2581. for (queue_num = 0; queue_num < B43legacy_QOS_QUEUE_NUM; queue_num++) {
  2582. while (skb_queue_len(&wl->tx_queue[queue_num]))
  2583. dev_kfree_skb(skb_dequeue(&wl->tx_queue[queue_num]));
  2584. }
  2585. b43legacy_mac_suspend(dev);
  2586. free_irq(dev->dev->irq, dev);
  2587. b43legacydbg(wl, "Wireless interface stopped\n");
  2588. }
  2589. /* Locking: wl->mutex */
  2590. static int b43legacy_wireless_core_start(struct b43legacy_wldev *dev)
  2591. {
  2592. int err;
  2593. B43legacy_WARN_ON(b43legacy_status(dev) != B43legacy_STAT_INITIALIZED);
  2594. drain_txstatus_queue(dev);
  2595. err = request_irq(dev->dev->irq, b43legacy_interrupt_handler,
  2596. IRQF_SHARED, KBUILD_MODNAME, dev);
  2597. if (err) {
  2598. b43legacyerr(dev->wl, "Cannot request IRQ-%d\n",
  2599. dev->dev->irq);
  2600. goto out;
  2601. }
  2602. /* We are ready to run. */
  2603. ieee80211_wake_queues(dev->wl->hw);
  2604. b43legacy_set_status(dev, B43legacy_STAT_STARTED);
  2605. /* Start data flow (TX/RX) */
  2606. b43legacy_mac_enable(dev);
  2607. b43legacy_write32(dev, B43legacy_MMIO_GEN_IRQ_MASK, dev->irq_mask);
  2608. /* Start maintenance work */
  2609. b43legacy_periodic_tasks_setup(dev);
  2610. b43legacydbg(dev->wl, "Wireless interface started\n");
  2611. out:
  2612. return err;
  2613. }
  2614. /* Get PHY and RADIO versioning numbers */
  2615. static int b43legacy_phy_versioning(struct b43legacy_wldev *dev)
  2616. {
  2617. struct b43legacy_phy *phy = &dev->phy;
  2618. u32 tmp;
  2619. u8 analog_type;
  2620. u8 phy_type;
  2621. u8 phy_rev;
  2622. u16 radio_manuf;
  2623. u16 radio_ver;
  2624. u16 radio_rev;
  2625. int unsupported = 0;
  2626. /* Get PHY versioning */
  2627. tmp = b43legacy_read16(dev, B43legacy_MMIO_PHY_VER);
  2628. analog_type = (tmp & B43legacy_PHYVER_ANALOG)
  2629. >> B43legacy_PHYVER_ANALOG_SHIFT;
  2630. phy_type = (tmp & B43legacy_PHYVER_TYPE) >> B43legacy_PHYVER_TYPE_SHIFT;
  2631. phy_rev = (tmp & B43legacy_PHYVER_VERSION);
  2632. switch (phy_type) {
  2633. case B43legacy_PHYTYPE_B:
  2634. if (phy_rev != 2 && phy_rev != 4
  2635. && phy_rev != 6 && phy_rev != 7)
  2636. unsupported = 1;
  2637. break;
  2638. case B43legacy_PHYTYPE_G:
  2639. if (phy_rev > 8)
  2640. unsupported = 1;
  2641. break;
  2642. default:
  2643. unsupported = 1;
  2644. }
  2645. if (unsupported) {
  2646. b43legacyerr(dev->wl, "FOUND UNSUPPORTED PHY "
  2647. "(Analog %u, Type %u, Revision %u)\n",
  2648. analog_type, phy_type, phy_rev);
  2649. return -EOPNOTSUPP;
  2650. }
  2651. b43legacydbg(dev->wl, "Found PHY: Analog %u, Type %u, Revision %u\n",
  2652. analog_type, phy_type, phy_rev);
  2653. /* Get RADIO versioning */
  2654. if (dev->dev->bus->chip_id == 0x4317) {
  2655. if (dev->dev->bus->chip_rev == 0)
  2656. tmp = 0x3205017F;
  2657. else if (dev->dev->bus->chip_rev == 1)
  2658. tmp = 0x4205017F;
  2659. else
  2660. tmp = 0x5205017F;
  2661. } else {
  2662. b43legacy_write16(dev, B43legacy_MMIO_RADIO_CONTROL,
  2663. B43legacy_RADIOCTL_ID);
  2664. tmp = b43legacy_read16(dev, B43legacy_MMIO_RADIO_DATA_HIGH);
  2665. tmp <<= 16;
  2666. b43legacy_write16(dev, B43legacy_MMIO_RADIO_CONTROL,
  2667. B43legacy_RADIOCTL_ID);
  2668. tmp |= b43legacy_read16(dev, B43legacy_MMIO_RADIO_DATA_LOW);
  2669. }
  2670. radio_manuf = (tmp & 0x00000FFF);
  2671. radio_ver = (tmp & 0x0FFFF000) >> 12;
  2672. radio_rev = (tmp & 0xF0000000) >> 28;
  2673. switch (phy_type) {
  2674. case B43legacy_PHYTYPE_B:
  2675. if ((radio_ver & 0xFFF0) != 0x2050)
  2676. unsupported = 1;
  2677. break;
  2678. case B43legacy_PHYTYPE_G:
  2679. if (radio_ver != 0x2050)
  2680. unsupported = 1;
  2681. break;
  2682. default:
  2683. B43legacy_BUG_ON(1);
  2684. }
  2685. if (unsupported) {
  2686. b43legacyerr(dev->wl, "FOUND UNSUPPORTED RADIO "
  2687. "(Manuf 0x%X, Version 0x%X, Revision %u)\n",
  2688. radio_manuf, radio_ver, radio_rev);
  2689. return -EOPNOTSUPP;
  2690. }
  2691. b43legacydbg(dev->wl, "Found Radio: Manuf 0x%X, Version 0x%X,"
  2692. " Revision %u\n", radio_manuf, radio_ver, radio_rev);
  2693. phy->radio_manuf = radio_manuf;
  2694. phy->radio_ver = radio_ver;
  2695. phy->radio_rev = radio_rev;
  2696. phy->analog = analog_type;
  2697. phy->type = phy_type;
  2698. phy->rev = phy_rev;
  2699. return 0;
  2700. }
  2701. static void setup_struct_phy_for_init(struct b43legacy_wldev *dev,
  2702. struct b43legacy_phy *phy)
  2703. {
  2704. struct b43legacy_lopair *lo;
  2705. int i;
  2706. memset(phy->minlowsig, 0xFF, sizeof(phy->minlowsig));
  2707. memset(phy->minlowsigpos, 0, sizeof(phy->minlowsigpos));
  2708. /* Assume the radio is enabled. If it's not enabled, the state will
  2709. * immediately get fixed on the first periodic work run. */
  2710. dev->radio_hw_enable = true;
  2711. phy->savedpctlreg = 0xFFFF;
  2712. phy->aci_enable = false;
  2713. phy->aci_wlan_automatic = false;
  2714. phy->aci_hw_rssi = false;
  2715. lo = phy->_lo_pairs;
  2716. if (lo)
  2717. memset(lo, 0, sizeof(struct b43legacy_lopair) *
  2718. B43legacy_LO_COUNT);
  2719. phy->max_lb_gain = 0;
  2720. phy->trsw_rx_gain = 0;
  2721. /* Set default attenuation values. */
  2722. phy->bbatt = b43legacy_default_baseband_attenuation(dev);
  2723. phy->rfatt = b43legacy_default_radio_attenuation(dev);
  2724. phy->txctl1 = b43legacy_default_txctl1(dev);
  2725. phy->txpwr_offset = 0;
  2726. /* NRSSI */
  2727. phy->nrssislope = 0;
  2728. for (i = 0; i < ARRAY_SIZE(phy->nrssi); i++)
  2729. phy->nrssi[i] = -1000;
  2730. for (i = 0; i < ARRAY_SIZE(phy->nrssi_lt); i++)
  2731. phy->nrssi_lt[i] = i;
  2732. phy->lofcal = 0xFFFF;
  2733. phy->initval = 0xFFFF;
  2734. phy->interfmode = B43legacy_INTERFMODE_NONE;
  2735. phy->channel = 0xFF;
  2736. }
  2737. static void setup_struct_wldev_for_init(struct b43legacy_wldev *dev)
  2738. {
  2739. /* Flags */
  2740. dev->dfq_valid = false;
  2741. /* Stats */
  2742. memset(&dev->stats, 0, sizeof(dev->stats));
  2743. setup_struct_phy_for_init(dev, &dev->phy);
  2744. /* IRQ related flags */
  2745. dev->irq_reason = 0;
  2746. memset(dev->dma_reason, 0, sizeof(dev->dma_reason));
  2747. dev->irq_mask = B43legacy_IRQ_MASKTEMPLATE;
  2748. dev->mac_suspended = 1;
  2749. /* Noise calculation context */
  2750. memset(&dev->noisecalc, 0, sizeof(dev->noisecalc));
  2751. }
  2752. static void b43legacy_set_synth_pu_delay(struct b43legacy_wldev *dev,
  2753. bool idle) {
  2754. u16 pu_delay = 1050;
  2755. if (b43legacy_is_mode(dev->wl, NL80211_IFTYPE_ADHOC) || idle)
  2756. pu_delay = 500;
  2757. if ((dev->phy.radio_ver == 0x2050) && (dev->phy.radio_rev == 8))
  2758. pu_delay = max(pu_delay, (u16)2400);
  2759. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
  2760. B43legacy_SHM_SH_SPUWKUP, pu_delay);
  2761. }
  2762. /* Set the TSF CFP pre-TargetBeaconTransmissionTime. */
  2763. static void b43legacy_set_pretbtt(struct b43legacy_wldev *dev)
  2764. {
  2765. u16 pretbtt;
  2766. /* The time value is in microseconds. */
  2767. if (b43legacy_is_mode(dev->wl, NL80211_IFTYPE_ADHOC))
  2768. pretbtt = 2;
  2769. else
  2770. pretbtt = 250;
  2771. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
  2772. B43legacy_SHM_SH_PRETBTT, pretbtt);
  2773. b43legacy_write16(dev, B43legacy_MMIO_TSF_CFP_PRETBTT, pretbtt);
  2774. }
  2775. /* Shutdown a wireless core */
  2776. /* Locking: wl->mutex */
  2777. static void b43legacy_wireless_core_exit(struct b43legacy_wldev *dev)
  2778. {
  2779. struct b43legacy_phy *phy = &dev->phy;
  2780. u32 macctl;
  2781. B43legacy_WARN_ON(b43legacy_status(dev) > B43legacy_STAT_INITIALIZED);
  2782. if (b43legacy_status(dev) != B43legacy_STAT_INITIALIZED)
  2783. return;
  2784. b43legacy_set_status(dev, B43legacy_STAT_UNINIT);
  2785. /* Stop the microcode PSM. */
  2786. macctl = b43legacy_read32(dev, B43legacy_MMIO_MACCTL);
  2787. macctl &= ~B43legacy_MACCTL_PSM_RUN;
  2788. macctl |= B43legacy_MACCTL_PSM_JMP0;
  2789. b43legacy_write32(dev, B43legacy_MMIO_MACCTL, macctl);
  2790. b43legacy_leds_exit(dev);
  2791. b43legacy_rng_exit(dev->wl);
  2792. b43legacy_pio_free(dev);
  2793. b43legacy_dma_free(dev);
  2794. b43legacy_chip_exit(dev);
  2795. b43legacy_radio_turn_off(dev, 1);
  2796. b43legacy_switch_analog(dev, 0);
  2797. if (phy->dyn_tssi_tbl)
  2798. kfree(phy->tssi2dbm);
  2799. kfree(phy->lo_control);
  2800. phy->lo_control = NULL;
  2801. if (dev->wl->current_beacon) {
  2802. dev_kfree_skb_any(dev->wl->current_beacon);
  2803. dev->wl->current_beacon = NULL;
  2804. }
  2805. ssb_device_disable(dev->dev, 0);
  2806. ssb_bus_may_powerdown(dev->dev->bus);
  2807. }
  2808. static void prepare_phy_data_for_init(struct b43legacy_wldev *dev)
  2809. {
  2810. struct b43legacy_phy *phy = &dev->phy;
  2811. int i;
  2812. /* Set default attenuation values. */
  2813. phy->bbatt = b43legacy_default_baseband_attenuation(dev);
  2814. phy->rfatt = b43legacy_default_radio_attenuation(dev);
  2815. phy->txctl1 = b43legacy_default_txctl1(dev);
  2816. phy->txctl2 = 0xFFFF;
  2817. phy->txpwr_offset = 0;
  2818. /* NRSSI */
  2819. phy->nrssislope = 0;
  2820. for (i = 0; i < ARRAY_SIZE(phy->nrssi); i++)
  2821. phy->nrssi[i] = -1000;
  2822. for (i = 0; i < ARRAY_SIZE(phy->nrssi_lt); i++)
  2823. phy->nrssi_lt[i] = i;
  2824. phy->lofcal = 0xFFFF;
  2825. phy->initval = 0xFFFF;
  2826. phy->aci_enable = false;
  2827. phy->aci_wlan_automatic = false;
  2828. phy->aci_hw_rssi = false;
  2829. phy->antenna_diversity = 0xFFFF;
  2830. memset(phy->minlowsig, 0xFF, sizeof(phy->minlowsig));
  2831. memset(phy->minlowsigpos, 0, sizeof(phy->minlowsigpos));
  2832. /* Flags */
  2833. phy->calibrated = 0;
  2834. if (phy->_lo_pairs)
  2835. memset(phy->_lo_pairs, 0,
  2836. sizeof(struct b43legacy_lopair) * B43legacy_LO_COUNT);
  2837. memset(phy->loopback_gain, 0, sizeof(phy->loopback_gain));
  2838. }
  2839. /* Initialize a wireless core */
  2840. static int b43legacy_wireless_core_init(struct b43legacy_wldev *dev)
  2841. {
  2842. struct b43legacy_wl *wl = dev->wl;
  2843. struct ssb_bus *bus = dev->dev->bus;
  2844. struct b43legacy_phy *phy = &dev->phy;
  2845. struct ssb_sprom *sprom = &dev->dev->bus->sprom;
  2846. int err;
  2847. u32 hf;
  2848. u32 tmp;
  2849. B43legacy_WARN_ON(b43legacy_status(dev) != B43legacy_STAT_UNINIT);
  2850. err = ssb_bus_powerup(bus, 0);
  2851. if (err)
  2852. goto out;
  2853. if (!ssb_device_is_enabled(dev->dev)) {
  2854. tmp = phy->gmode ? B43legacy_TMSLOW_GMODE : 0;
  2855. b43legacy_wireless_core_reset(dev, tmp);
  2856. }
  2857. if ((phy->type == B43legacy_PHYTYPE_B) ||
  2858. (phy->type == B43legacy_PHYTYPE_G)) {
  2859. phy->_lo_pairs = kzalloc(sizeof(struct b43legacy_lopair)
  2860. * B43legacy_LO_COUNT,
  2861. GFP_KERNEL);
  2862. if (!phy->_lo_pairs)
  2863. return -ENOMEM;
  2864. }
  2865. setup_struct_wldev_for_init(dev);
  2866. err = b43legacy_phy_init_tssi2dbm_table(dev);
  2867. if (err)
  2868. goto err_kfree_lo_control;
  2869. /* Enable IRQ routing to this device. */
  2870. ssb_pcicore_dev_irqvecs_enable(&bus->pcicore, dev->dev);
  2871. prepare_phy_data_for_init(dev);
  2872. b43legacy_phy_calibrate(dev);
  2873. err = b43legacy_chip_init(dev);
  2874. if (err)
  2875. goto err_kfree_tssitbl;
  2876. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
  2877. B43legacy_SHM_SH_WLCOREREV,
  2878. dev->dev->id.revision);
  2879. hf = b43legacy_hf_read(dev);
  2880. if (phy->type == B43legacy_PHYTYPE_G) {
  2881. hf |= B43legacy_HF_SYMW;
  2882. if (phy->rev == 1)
  2883. hf |= B43legacy_HF_GDCW;
  2884. if (sprom->boardflags_lo & B43legacy_BFL_PACTRL)
  2885. hf |= B43legacy_HF_OFDMPABOOST;
  2886. } else if (phy->type == B43legacy_PHYTYPE_B) {
  2887. hf |= B43legacy_HF_SYMW;
  2888. if (phy->rev >= 2 && phy->radio_ver == 0x2050)
  2889. hf &= ~B43legacy_HF_GDCW;
  2890. }
  2891. b43legacy_hf_write(dev, hf);
  2892. b43legacy_set_retry_limits(dev,
  2893. B43legacy_DEFAULT_SHORT_RETRY_LIMIT,
  2894. B43legacy_DEFAULT_LONG_RETRY_LIMIT);
  2895. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
  2896. 0x0044, 3);
  2897. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
  2898. 0x0046, 2);
  2899. /* Disable sending probe responses from firmware.
  2900. * Setting the MaxTime to one usec will always trigger
  2901. * a timeout, so we never send any probe resp.
  2902. * A timeout of zero is infinite. */
  2903. b43legacy_shm_write16(dev, B43legacy_SHM_SHARED,
  2904. B43legacy_SHM_SH_PRMAXTIME, 1);
  2905. b43legacy_rate_memory_init(dev);
  2906. /* Minimum Contention Window */
  2907. if (phy->type == B43legacy_PHYTYPE_B)
  2908. b43legacy_shm_write16(dev, B43legacy_SHM_WIRELESS,
  2909. 0x0003, 31);
  2910. else
  2911. b43legacy_shm_write16(dev, B43legacy_SHM_WIRELESS,
  2912. 0x0003, 15);
  2913. /* Maximum Contention Window */
  2914. b43legacy_shm_write16(dev, B43legacy_SHM_WIRELESS,
  2915. 0x0004, 1023);
  2916. do {
  2917. if (b43legacy_using_pio(dev))
  2918. err = b43legacy_pio_init(dev);
  2919. else {
  2920. err = b43legacy_dma_init(dev);
  2921. if (!err)
  2922. b43legacy_qos_init(dev);
  2923. }
  2924. } while (err == -EAGAIN);
  2925. if (err)
  2926. goto err_chip_exit;
  2927. b43legacy_set_synth_pu_delay(dev, 1);
  2928. ssb_bus_powerup(bus, 1); /* Enable dynamic PCTL */
  2929. b43legacy_upload_card_macaddress(dev);
  2930. b43legacy_security_init(dev);
  2931. b43legacy_rng_init(wl);
  2932. ieee80211_wake_queues(dev->wl->hw);
  2933. b43legacy_set_status(dev, B43legacy_STAT_INITIALIZED);
  2934. b43legacy_leds_init(dev);
  2935. out:
  2936. return err;
  2937. err_chip_exit:
  2938. b43legacy_chip_exit(dev);
  2939. err_kfree_tssitbl:
  2940. if (phy->dyn_tssi_tbl)
  2941. kfree(phy->tssi2dbm);
  2942. err_kfree_lo_control:
  2943. kfree(phy->lo_control);
  2944. phy->lo_control = NULL;
  2945. ssb_bus_may_powerdown(bus);
  2946. B43legacy_WARN_ON(b43legacy_status(dev) != B43legacy_STAT_UNINIT);
  2947. return err;
  2948. }
  2949. static int b43legacy_op_add_interface(struct ieee80211_hw *hw,
  2950. struct ieee80211_vif *vif)
  2951. {
  2952. struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
  2953. struct b43legacy_wldev *dev;
  2954. unsigned long flags;
  2955. int err = -EOPNOTSUPP;
  2956. /* TODO: allow WDS/AP devices to coexist */
  2957. if (vif->type != NL80211_IFTYPE_AP &&
  2958. vif->type != NL80211_IFTYPE_STATION &&
  2959. vif->type != NL80211_IFTYPE_WDS &&
  2960. vif->type != NL80211_IFTYPE_ADHOC)
  2961. return -EOPNOTSUPP;
  2962. mutex_lock(&wl->mutex);
  2963. if (wl->operating)
  2964. goto out_mutex_unlock;
  2965. b43legacydbg(wl, "Adding Interface type %d\n", vif->type);
  2966. dev = wl->current_dev;
  2967. wl->operating = true;
  2968. wl->vif = vif;
  2969. wl->if_type = vif->type;
  2970. memcpy(wl->mac_addr, vif->addr, ETH_ALEN);
  2971. spin_lock_irqsave(&wl->irq_lock, flags);
  2972. b43legacy_adjust_opmode(dev);
  2973. b43legacy_set_pretbtt(dev);
  2974. b43legacy_set_synth_pu_delay(dev, 0);
  2975. b43legacy_upload_card_macaddress(dev);
  2976. spin_unlock_irqrestore(&wl->irq_lock, flags);
  2977. err = 0;
  2978. out_mutex_unlock:
  2979. mutex_unlock(&wl->mutex);
  2980. return err;
  2981. }
  2982. static void b43legacy_op_remove_interface(struct ieee80211_hw *hw,
  2983. struct ieee80211_vif *vif)
  2984. {
  2985. struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
  2986. struct b43legacy_wldev *dev = wl->current_dev;
  2987. unsigned long flags;
  2988. b43legacydbg(wl, "Removing Interface type %d\n", vif->type);
  2989. mutex_lock(&wl->mutex);
  2990. B43legacy_WARN_ON(!wl->operating);
  2991. B43legacy_WARN_ON(wl->vif != vif);
  2992. wl->vif = NULL;
  2993. wl->operating = false;
  2994. spin_lock_irqsave(&wl->irq_lock, flags);
  2995. b43legacy_adjust_opmode(dev);
  2996. eth_zero_addr(wl->mac_addr);
  2997. b43legacy_upload_card_macaddress(dev);
  2998. spin_unlock_irqrestore(&wl->irq_lock, flags);
  2999. mutex_unlock(&wl->mutex);
  3000. }
  3001. static int b43legacy_op_start(struct ieee80211_hw *hw)
  3002. {
  3003. struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
  3004. struct b43legacy_wldev *dev = wl->current_dev;
  3005. int did_init = 0;
  3006. int err = 0;
  3007. /* Kill all old instance specific information to make sure
  3008. * the card won't use it in the short timeframe between start
  3009. * and mac80211 reconfiguring it. */
  3010. eth_zero_addr(wl->bssid);
  3011. eth_zero_addr(wl->mac_addr);
  3012. wl->filter_flags = 0;
  3013. wl->beacon0_uploaded = false;
  3014. wl->beacon1_uploaded = false;
  3015. wl->beacon_templates_virgin = true;
  3016. wl->radio_enabled = true;
  3017. mutex_lock(&wl->mutex);
  3018. if (b43legacy_status(dev) < B43legacy_STAT_INITIALIZED) {
  3019. err = b43legacy_wireless_core_init(dev);
  3020. if (err)
  3021. goto out_mutex_unlock;
  3022. did_init = 1;
  3023. }
  3024. if (b43legacy_status(dev) < B43legacy_STAT_STARTED) {
  3025. err = b43legacy_wireless_core_start(dev);
  3026. if (err) {
  3027. if (did_init)
  3028. b43legacy_wireless_core_exit(dev);
  3029. goto out_mutex_unlock;
  3030. }
  3031. }
  3032. wiphy_rfkill_start_polling(hw->wiphy);
  3033. out_mutex_unlock:
  3034. mutex_unlock(&wl->mutex);
  3035. return err;
  3036. }
  3037. static void b43legacy_op_stop(struct ieee80211_hw *hw)
  3038. {
  3039. struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
  3040. struct b43legacy_wldev *dev = wl->current_dev;
  3041. cancel_work_sync(&(wl->beacon_update_trigger));
  3042. mutex_lock(&wl->mutex);
  3043. if (b43legacy_status(dev) >= B43legacy_STAT_STARTED)
  3044. b43legacy_wireless_core_stop(dev);
  3045. b43legacy_wireless_core_exit(dev);
  3046. wl->radio_enabled = false;
  3047. mutex_unlock(&wl->mutex);
  3048. }
  3049. static int b43legacy_op_beacon_set_tim(struct ieee80211_hw *hw,
  3050. struct ieee80211_sta *sta, bool set)
  3051. {
  3052. struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
  3053. unsigned long flags;
  3054. spin_lock_irqsave(&wl->irq_lock, flags);
  3055. b43legacy_update_templates(wl);
  3056. spin_unlock_irqrestore(&wl->irq_lock, flags);
  3057. return 0;
  3058. }
  3059. static int b43legacy_op_get_survey(struct ieee80211_hw *hw, int idx,
  3060. struct survey_info *survey)
  3061. {
  3062. struct b43legacy_wl *wl = hw_to_b43legacy_wl(hw);
  3063. struct b43legacy_wldev *dev = wl->current_dev;
  3064. struct ieee80211_conf *conf = &hw->conf;
  3065. if (idx != 0)
  3066. return -ENOENT;
  3067. survey->channel = conf->chandef.chan;
  3068. survey->filled = SURVEY_INFO_NOISE_DBM;
  3069. survey->noise = dev->stats.link_noise;
  3070. return 0;
  3071. }
  3072. static const struct ieee80211_ops b43legacy_hw_ops = {
  3073. .tx = b43legacy_op_tx,
  3074. .conf_tx = b43legacy_op_conf_tx,
  3075. .add_interface = b43legacy_op_add_interface,
  3076. .remove_interface = b43legacy_op_remove_interface,
  3077. .config = b43legacy_op_dev_config,
  3078. .bss_info_changed = b43legacy_op_bss_info_changed,
  3079. .configure_filter = b43legacy_op_configure_filter,
  3080. .get_stats = b43legacy_op_get_stats,
  3081. .start = b43legacy_op_start,
  3082. .stop = b43legacy_op_stop,
  3083. .set_tim = b43legacy_op_beacon_set_tim,
  3084. .get_survey = b43legacy_op_get_survey,
  3085. .rfkill_poll = b43legacy_rfkill_poll,
  3086. };
  3087. /* Hard-reset the chip. Do not call this directly.
  3088. * Use b43legacy_controller_restart()
  3089. */
  3090. static void b43legacy_chip_reset(struct work_struct *work)
  3091. {
  3092. struct b43legacy_wldev *dev =
  3093. container_of(work, struct b43legacy_wldev, restart_work);
  3094. struct b43legacy_wl *wl = dev->wl;
  3095. int err = 0;
  3096. int prev_status;
  3097. mutex_lock(&wl->mutex);
  3098. prev_status = b43legacy_status(dev);
  3099. /* Bring the device down... */
  3100. if (prev_status >= B43legacy_STAT_STARTED)
  3101. b43legacy_wireless_core_stop(dev);
  3102. if (prev_status >= B43legacy_STAT_INITIALIZED)
  3103. b43legacy_wireless_core_exit(dev);
  3104. /* ...and up again. */
  3105. if (prev_status >= B43legacy_STAT_INITIALIZED) {
  3106. err = b43legacy_wireless_core_init(dev);
  3107. if (err)
  3108. goto out;
  3109. }
  3110. if (prev_status >= B43legacy_STAT_STARTED) {
  3111. err = b43legacy_wireless_core_start(dev);
  3112. if (err) {
  3113. b43legacy_wireless_core_exit(dev);
  3114. goto out;
  3115. }
  3116. }
  3117. out:
  3118. if (err)
  3119. wl->current_dev = NULL; /* Failed to init the dev. */
  3120. mutex_unlock(&wl->mutex);
  3121. if (err)
  3122. b43legacyerr(wl, "Controller restart FAILED\n");
  3123. else
  3124. b43legacyinfo(wl, "Controller restarted\n");
  3125. }
  3126. static int b43legacy_setup_modes(struct b43legacy_wldev *dev,
  3127. int have_bphy,
  3128. int have_gphy)
  3129. {
  3130. struct ieee80211_hw *hw = dev->wl->hw;
  3131. struct b43legacy_phy *phy = &dev->phy;
  3132. phy->possible_phymodes = 0;
  3133. if (have_bphy) {
  3134. hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
  3135. &b43legacy_band_2GHz_BPHY;
  3136. phy->possible_phymodes |= B43legacy_PHYMODE_B;
  3137. }
  3138. if (have_gphy) {
  3139. hw->wiphy->bands[IEEE80211_BAND_2GHZ] =
  3140. &b43legacy_band_2GHz_GPHY;
  3141. phy->possible_phymodes |= B43legacy_PHYMODE_G;
  3142. }
  3143. return 0;
  3144. }
  3145. static void b43legacy_wireless_core_detach(struct b43legacy_wldev *dev)
  3146. {
  3147. /* We release firmware that late to not be required to re-request
  3148. * is all the time when we reinit the core. */
  3149. b43legacy_release_firmware(dev);
  3150. }
  3151. static int b43legacy_wireless_core_attach(struct b43legacy_wldev *dev)
  3152. {
  3153. struct b43legacy_wl *wl = dev->wl;
  3154. struct ssb_bus *bus = dev->dev->bus;
  3155. struct pci_dev *pdev = (bus->bustype == SSB_BUSTYPE_PCI) ? bus->host_pci : NULL;
  3156. int err;
  3157. int have_bphy = 0;
  3158. int have_gphy = 0;
  3159. u32 tmp;
  3160. /* Do NOT do any device initialization here.
  3161. * Do it in wireless_core_init() instead.
  3162. * This function is for gathering basic information about the HW, only.
  3163. * Also some structs may be set up here. But most likely you want to
  3164. * have that in core_init(), too.
  3165. */
  3166. err = ssb_bus_powerup(bus, 0);
  3167. if (err) {
  3168. b43legacyerr(wl, "Bus powerup failed\n");
  3169. goto out;
  3170. }
  3171. /* Get the PHY type. */
  3172. if (dev->dev->id.revision >= 5) {
  3173. u32 tmshigh;
  3174. tmshigh = ssb_read32(dev->dev, SSB_TMSHIGH);
  3175. have_gphy = !!(tmshigh & B43legacy_TMSHIGH_GPHY);
  3176. if (!have_gphy)
  3177. have_bphy = 1;
  3178. } else if (dev->dev->id.revision == 4)
  3179. have_gphy = 1;
  3180. else
  3181. have_bphy = 1;
  3182. dev->phy.gmode = (have_gphy || have_bphy);
  3183. dev->phy.radio_on = true;
  3184. tmp = dev->phy.gmode ? B43legacy_TMSLOW_GMODE : 0;
  3185. b43legacy_wireless_core_reset(dev, tmp);
  3186. err = b43legacy_phy_versioning(dev);
  3187. if (err)
  3188. goto err_powerdown;
  3189. /* Check if this device supports multiband. */
  3190. if (!pdev ||
  3191. (pdev->device != 0x4312 &&
  3192. pdev->device != 0x4319 &&
  3193. pdev->device != 0x4324)) {
  3194. /* No multiband support. */
  3195. have_bphy = 0;
  3196. have_gphy = 0;
  3197. switch (dev->phy.type) {
  3198. case B43legacy_PHYTYPE_B:
  3199. have_bphy = 1;
  3200. break;
  3201. case B43legacy_PHYTYPE_G:
  3202. have_gphy = 1;
  3203. break;
  3204. default:
  3205. B43legacy_BUG_ON(1);
  3206. }
  3207. }
  3208. dev->phy.gmode = (have_gphy || have_bphy);
  3209. tmp = dev->phy.gmode ? B43legacy_TMSLOW_GMODE : 0;
  3210. b43legacy_wireless_core_reset(dev, tmp);
  3211. err = b43legacy_validate_chipaccess(dev);
  3212. if (err)
  3213. goto err_powerdown;
  3214. err = b43legacy_setup_modes(dev, have_bphy, have_gphy);
  3215. if (err)
  3216. goto err_powerdown;
  3217. /* Now set some default "current_dev" */
  3218. if (!wl->current_dev)
  3219. wl->current_dev = dev;
  3220. INIT_WORK(&dev->restart_work, b43legacy_chip_reset);
  3221. b43legacy_radio_turn_off(dev, 1);
  3222. b43legacy_switch_analog(dev, 0);
  3223. ssb_device_disable(dev->dev, 0);
  3224. ssb_bus_may_powerdown(bus);
  3225. out:
  3226. return err;
  3227. err_powerdown:
  3228. ssb_bus_may_powerdown(bus);
  3229. return err;
  3230. }
  3231. static void b43legacy_one_core_detach(struct ssb_device *dev)
  3232. {
  3233. struct b43legacy_wldev *wldev;
  3234. struct b43legacy_wl *wl;
  3235. /* Do not cancel ieee80211-workqueue based work here.
  3236. * See comment in b43legacy_remove(). */
  3237. wldev = ssb_get_drvdata(dev);
  3238. wl = wldev->wl;
  3239. b43legacy_debugfs_remove_device(wldev);
  3240. b43legacy_wireless_core_detach(wldev);
  3241. list_del(&wldev->list);
  3242. wl->nr_devs--;
  3243. ssb_set_drvdata(dev, NULL);
  3244. kfree(wldev);
  3245. }
  3246. static int b43legacy_one_core_attach(struct ssb_device *dev,
  3247. struct b43legacy_wl *wl)
  3248. {
  3249. struct b43legacy_wldev *wldev;
  3250. int err = -ENOMEM;
  3251. wldev = kzalloc(sizeof(*wldev), GFP_KERNEL);
  3252. if (!wldev)
  3253. goto out;
  3254. wldev->dev = dev;
  3255. wldev->wl = wl;
  3256. b43legacy_set_status(wldev, B43legacy_STAT_UNINIT);
  3257. wldev->bad_frames_preempt = modparam_bad_frames_preempt;
  3258. tasklet_init(&wldev->isr_tasklet,
  3259. (void (*)(unsigned long))b43legacy_interrupt_tasklet,
  3260. (unsigned long)wldev);
  3261. if (modparam_pio)
  3262. wldev->__using_pio = true;
  3263. INIT_LIST_HEAD(&wldev->list);
  3264. err = b43legacy_wireless_core_attach(wldev);
  3265. if (err)
  3266. goto err_kfree_wldev;
  3267. list_add(&wldev->list, &wl->devlist);
  3268. wl->nr_devs++;
  3269. ssb_set_drvdata(dev, wldev);
  3270. b43legacy_debugfs_add_device(wldev);
  3271. out:
  3272. return err;
  3273. err_kfree_wldev:
  3274. kfree(wldev);
  3275. return err;
  3276. }
  3277. static void b43legacy_sprom_fixup(struct ssb_bus *bus)
  3278. {
  3279. /* boardflags workarounds */
  3280. if (bus->boardinfo.vendor == PCI_VENDOR_ID_APPLE &&
  3281. bus->boardinfo.type == 0x4E &&
  3282. bus->sprom.board_rev > 0x40)
  3283. bus->sprom.boardflags_lo |= B43legacy_BFL_PACTRL;
  3284. }
  3285. static void b43legacy_wireless_exit(struct ssb_device *dev,
  3286. struct b43legacy_wl *wl)
  3287. {
  3288. struct ieee80211_hw *hw = wl->hw;
  3289. ssb_set_devtypedata(dev, NULL);
  3290. ieee80211_free_hw(hw);
  3291. }
  3292. static int b43legacy_wireless_init(struct ssb_device *dev)
  3293. {
  3294. struct ssb_sprom *sprom = &dev->bus->sprom;
  3295. struct ieee80211_hw *hw;
  3296. struct b43legacy_wl *wl;
  3297. int err = -ENOMEM;
  3298. int queue_num;
  3299. b43legacy_sprom_fixup(dev->bus);
  3300. hw = ieee80211_alloc_hw(sizeof(*wl), &b43legacy_hw_ops);
  3301. if (!hw) {
  3302. b43legacyerr(NULL, "Could not allocate ieee80211 device\n");
  3303. goto out;
  3304. }
  3305. /* fill hw info */
  3306. ieee80211_hw_set(hw, RX_INCLUDES_FCS);
  3307. ieee80211_hw_set(hw, SIGNAL_DBM);
  3308. hw->wiphy->interface_modes =
  3309. BIT(NL80211_IFTYPE_AP) |
  3310. BIT(NL80211_IFTYPE_STATION) |
  3311. BIT(NL80211_IFTYPE_WDS) |
  3312. BIT(NL80211_IFTYPE_ADHOC);
  3313. hw->queues = 1; /* FIXME: hardware has more queues */
  3314. hw->max_rates = 2;
  3315. SET_IEEE80211_DEV(hw, dev->dev);
  3316. if (is_valid_ether_addr(sprom->et1mac))
  3317. SET_IEEE80211_PERM_ADDR(hw, sprom->et1mac);
  3318. else
  3319. SET_IEEE80211_PERM_ADDR(hw, sprom->il0mac);
  3320. /* Get and initialize struct b43legacy_wl */
  3321. wl = hw_to_b43legacy_wl(hw);
  3322. memset(wl, 0, sizeof(*wl));
  3323. wl->hw = hw;
  3324. spin_lock_init(&wl->irq_lock);
  3325. spin_lock_init(&wl->leds_lock);
  3326. mutex_init(&wl->mutex);
  3327. INIT_LIST_HEAD(&wl->devlist);
  3328. INIT_WORK(&wl->beacon_update_trigger, b43legacy_beacon_update_trigger_work);
  3329. INIT_WORK(&wl->tx_work, b43legacy_tx_work);
  3330. /* Initialize queues and flags. */
  3331. for (queue_num = 0; queue_num < B43legacy_QOS_QUEUE_NUM; queue_num++) {
  3332. skb_queue_head_init(&wl->tx_queue[queue_num]);
  3333. wl->tx_queue_stopped[queue_num] = 0;
  3334. }
  3335. ssb_set_devtypedata(dev, wl);
  3336. b43legacyinfo(wl, "Broadcom %04X WLAN found (core revision %u)\n",
  3337. dev->bus->chip_id, dev->id.revision);
  3338. err = 0;
  3339. out:
  3340. return err;
  3341. }
  3342. static int b43legacy_probe(struct ssb_device *dev,
  3343. const struct ssb_device_id *id)
  3344. {
  3345. struct b43legacy_wl *wl;
  3346. int err;
  3347. int first = 0;
  3348. wl = ssb_get_devtypedata(dev);
  3349. if (!wl) {
  3350. /* Probing the first core - setup common struct b43legacy_wl */
  3351. first = 1;
  3352. err = b43legacy_wireless_init(dev);
  3353. if (err)
  3354. goto out;
  3355. wl = ssb_get_devtypedata(dev);
  3356. B43legacy_WARN_ON(!wl);
  3357. }
  3358. err = b43legacy_one_core_attach(dev, wl);
  3359. if (err)
  3360. goto err_wireless_exit;
  3361. /* setup and start work to load firmware */
  3362. INIT_WORK(&wl->firmware_load, b43legacy_request_firmware);
  3363. schedule_work(&wl->firmware_load);
  3364. out:
  3365. return err;
  3366. err_wireless_exit:
  3367. if (first)
  3368. b43legacy_wireless_exit(dev, wl);
  3369. return err;
  3370. }
  3371. static void b43legacy_remove(struct ssb_device *dev)
  3372. {
  3373. struct b43legacy_wl *wl = ssb_get_devtypedata(dev);
  3374. struct b43legacy_wldev *wldev = ssb_get_drvdata(dev);
  3375. /* We must cancel any work here before unregistering from ieee80211,
  3376. * as the ieee80211 unreg will destroy the workqueue. */
  3377. cancel_work_sync(&wldev->restart_work);
  3378. cancel_work_sync(&wl->firmware_load);
  3379. complete(&wldev->fw_load_complete);
  3380. B43legacy_WARN_ON(!wl);
  3381. if (!wldev->fw.ucode)
  3382. return; /* NULL if fw never loaded */
  3383. if (wl->current_dev == wldev)
  3384. ieee80211_unregister_hw(wl->hw);
  3385. b43legacy_one_core_detach(dev);
  3386. if (list_empty(&wl->devlist))
  3387. /* Last core on the chip unregistered.
  3388. * We can destroy common struct b43legacy_wl.
  3389. */
  3390. b43legacy_wireless_exit(dev, wl);
  3391. }
  3392. /* Perform a hardware reset. This can be called from any context. */
  3393. void b43legacy_controller_restart(struct b43legacy_wldev *dev,
  3394. const char *reason)
  3395. {
  3396. /* Must avoid requeueing, if we are in shutdown. */
  3397. if (b43legacy_status(dev) < B43legacy_STAT_INITIALIZED)
  3398. return;
  3399. b43legacyinfo(dev->wl, "Controller RESET (%s) ...\n", reason);
  3400. ieee80211_queue_work(dev->wl->hw, &dev->restart_work);
  3401. }
  3402. #ifdef CONFIG_PM
  3403. static int b43legacy_suspend(struct ssb_device *dev, pm_message_t state)
  3404. {
  3405. struct b43legacy_wldev *wldev = ssb_get_drvdata(dev);
  3406. struct b43legacy_wl *wl = wldev->wl;
  3407. b43legacydbg(wl, "Suspending...\n");
  3408. mutex_lock(&wl->mutex);
  3409. wldev->suspend_init_status = b43legacy_status(wldev);
  3410. if (wldev->suspend_init_status >= B43legacy_STAT_STARTED)
  3411. b43legacy_wireless_core_stop(wldev);
  3412. if (wldev->suspend_init_status >= B43legacy_STAT_INITIALIZED)
  3413. b43legacy_wireless_core_exit(wldev);
  3414. mutex_unlock(&wl->mutex);
  3415. b43legacydbg(wl, "Device suspended.\n");
  3416. return 0;
  3417. }
  3418. static int b43legacy_resume(struct ssb_device *dev)
  3419. {
  3420. struct b43legacy_wldev *wldev = ssb_get_drvdata(dev);
  3421. struct b43legacy_wl *wl = wldev->wl;
  3422. int err = 0;
  3423. b43legacydbg(wl, "Resuming...\n");
  3424. mutex_lock(&wl->mutex);
  3425. if (wldev->suspend_init_status >= B43legacy_STAT_INITIALIZED) {
  3426. err = b43legacy_wireless_core_init(wldev);
  3427. if (err) {
  3428. b43legacyerr(wl, "Resume failed at core init\n");
  3429. goto out;
  3430. }
  3431. }
  3432. if (wldev->suspend_init_status >= B43legacy_STAT_STARTED) {
  3433. err = b43legacy_wireless_core_start(wldev);
  3434. if (err) {
  3435. b43legacy_wireless_core_exit(wldev);
  3436. b43legacyerr(wl, "Resume failed at core start\n");
  3437. goto out;
  3438. }
  3439. }
  3440. b43legacydbg(wl, "Device resumed.\n");
  3441. out:
  3442. mutex_unlock(&wl->mutex);
  3443. return err;
  3444. }
  3445. #else /* CONFIG_PM */
  3446. # define b43legacy_suspend NULL
  3447. # define b43legacy_resume NULL
  3448. #endif /* CONFIG_PM */
  3449. static struct ssb_driver b43legacy_ssb_driver = {
  3450. .name = KBUILD_MODNAME,
  3451. .id_table = b43legacy_ssb_tbl,
  3452. .probe = b43legacy_probe,
  3453. .remove = b43legacy_remove,
  3454. .suspend = b43legacy_suspend,
  3455. .resume = b43legacy_resume,
  3456. };
  3457. static void b43legacy_print_driverinfo(void)
  3458. {
  3459. const char *feat_pci = "", *feat_leds = "",
  3460. *feat_pio = "", *feat_dma = "";
  3461. #ifdef CONFIG_B43LEGACY_PCI_AUTOSELECT
  3462. feat_pci = "P";
  3463. #endif
  3464. #ifdef CONFIG_B43LEGACY_LEDS
  3465. feat_leds = "L";
  3466. #endif
  3467. #ifdef CONFIG_B43LEGACY_PIO
  3468. feat_pio = "I";
  3469. #endif
  3470. #ifdef CONFIG_B43LEGACY_DMA
  3471. feat_dma = "D";
  3472. #endif
  3473. printk(KERN_INFO "Broadcom 43xx-legacy driver loaded "
  3474. "[ Features: %s%s%s%s ]\n",
  3475. feat_pci, feat_leds, feat_pio, feat_dma);
  3476. }
  3477. static int __init b43legacy_init(void)
  3478. {
  3479. int err;
  3480. b43legacy_debugfs_init();
  3481. err = ssb_driver_register(&b43legacy_ssb_driver);
  3482. if (err)
  3483. goto err_dfs_exit;
  3484. b43legacy_print_driverinfo();
  3485. return err;
  3486. err_dfs_exit:
  3487. b43legacy_debugfs_exit();
  3488. return err;
  3489. }
  3490. static void __exit b43legacy_exit(void)
  3491. {
  3492. ssb_driver_unregister(&b43legacy_ssb_driver);
  3493. b43legacy_debugfs_exit();
  3494. }
  3495. module_init(b43legacy_init)
  3496. module_exit(b43legacy_exit)