hub.c 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908
  1. /*
  2. * USB hub driver.
  3. *
  4. * (C) Copyright 1999 Linus Torvalds
  5. * (C) Copyright 1999 Johannes Erdfelt
  6. * (C) Copyright 1999 Gregory P. Smith
  7. * (C) Copyright 2001 Brad Hards (bhards@bigpond.net.au)
  8. *
  9. */
  10. #include <linux/kernel.h>
  11. #include <linux/errno.h>
  12. #include <linux/module.h>
  13. #include <linux/moduleparam.h>
  14. #include <linux/completion.h>
  15. #include <linux/sched.h>
  16. #include <linux/list.h>
  17. #include <linux/slab.h>
  18. #include <linux/ioctl.h>
  19. #include <linux/usb.h>
  20. #include <linux/usbdevice_fs.h>
  21. #include <linux/usb/hcd.h>
  22. #include <linux/usb/quirks.h>
  23. #include <linux/kthread.h>
  24. #include <linux/mutex.h>
  25. #include <linux/freezer.h>
  26. #include <asm/uaccess.h>
  27. #include <asm/byteorder.h>
  28. #include "usb.h"
  29. /* if we are in debug mode, always announce new devices */
  30. #ifdef DEBUG
  31. #ifndef CONFIG_USB_ANNOUNCE_NEW_DEVICES
  32. #define CONFIG_USB_ANNOUNCE_NEW_DEVICES
  33. #endif
  34. #endif
  35. struct usb_hub {
  36. struct device *intfdev; /* the "interface" device */
  37. struct usb_device *hdev;
  38. struct kref kref;
  39. struct urb *urb; /* for interrupt polling pipe */
  40. /* buffer for urb ... with extra space in case of babble */
  41. char (*buffer)[8];
  42. union {
  43. struct usb_hub_status hub;
  44. struct usb_port_status port;
  45. } *status; /* buffer for status reports */
  46. struct mutex status_mutex; /* for the status buffer */
  47. int error; /* last reported error */
  48. int nerrors; /* track consecutive errors */
  49. struct list_head event_list; /* hubs w/data or errs ready */
  50. unsigned long event_bits[1]; /* status change bitmask */
  51. unsigned long change_bits[1]; /* ports with logical connect
  52. status change */
  53. unsigned long busy_bits[1]; /* ports being reset or
  54. resumed */
  55. unsigned long removed_bits[1]; /* ports with a "removed"
  56. device present */
  57. unsigned long wakeup_bits[1]; /* ports that have signaled
  58. remote wakeup */
  59. #if USB_MAXCHILDREN > 31 /* 8*sizeof(unsigned long) - 1 */
  60. #error event_bits[] is too short!
  61. #endif
  62. struct usb_hub_descriptor *descriptor; /* class descriptor */
  63. struct usb_tt tt; /* Transaction Translator */
  64. unsigned mA_per_port; /* current for each child */
  65. unsigned limited_power:1;
  66. unsigned quiescing:1;
  67. unsigned disconnected:1;
  68. unsigned has_indicators:1;
  69. u8 indicator[USB_MAXCHILDREN];
  70. struct delayed_work leds;
  71. struct delayed_work init_work;
  72. struct dev_state **port_owners;
  73. };
  74. static inline int hub_is_superspeed(struct usb_device *hdev)
  75. {
  76. return (hdev->descriptor.bDeviceProtocol == USB_HUB_PR_SS);
  77. }
  78. /* Protect struct usb_device->state and ->children members
  79. * Note: Both are also protected by ->dev.sem, except that ->state can
  80. * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
  81. static DEFINE_SPINLOCK(device_state_lock);
  82. /* khubd's worklist and its lock */
  83. static DEFINE_SPINLOCK(hub_event_lock);
  84. static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */
  85. /* Wakes up khubd */
  86. static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
  87. static struct task_struct *khubd_task;
  88. /* cycle leds on hubs that aren't blinking for attention */
  89. static bool blinkenlights = 0;
  90. module_param (blinkenlights, bool, S_IRUGO);
  91. MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
  92. /*
  93. * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
  94. * 10 seconds to send reply for the initial 64-byte descriptor request.
  95. */
  96. /* define initial 64-byte descriptor request timeout in milliseconds */
  97. static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
  98. module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
  99. MODULE_PARM_DESC(initial_descriptor_timeout,
  100. "initial 64-byte descriptor request timeout in milliseconds "
  101. "(default 5000 - 5.0 seconds)");
  102. /*
  103. * As of 2.6.10 we introduce a new USB device initialization scheme which
  104. * closely resembles the way Windows works. Hopefully it will be compatible
  105. * with a wider range of devices than the old scheme. However some previously
  106. * working devices may start giving rise to "device not accepting address"
  107. * errors; if that happens the user can try the old scheme by adjusting the
  108. * following module parameters.
  109. *
  110. * For maximum flexibility there are two boolean parameters to control the
  111. * hub driver's behavior. On the first initialization attempt, if the
  112. * "old_scheme_first" parameter is set then the old scheme will be used,
  113. * otherwise the new scheme is used. If that fails and "use_both_schemes"
  114. * is set, then the driver will make another attempt, using the other scheme.
  115. */
  116. static bool old_scheme_first = 0;
  117. module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
  118. MODULE_PARM_DESC(old_scheme_first,
  119. "start with the old device initialization scheme");
  120. static bool use_both_schemes = 1;
  121. module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
  122. MODULE_PARM_DESC(use_both_schemes,
  123. "try the other device initialization scheme if the "
  124. "first one fails");
  125. /* Mutual exclusion for EHCI CF initialization. This interferes with
  126. * port reset on some companion controllers.
  127. */
  128. DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
  129. EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
  130. #define HUB_DEBOUNCE_TIMEOUT 1500
  131. #define HUB_DEBOUNCE_STEP 25
  132. #define HUB_DEBOUNCE_STABLE 100
  133. static int usb_reset_and_verify_device(struct usb_device *udev);
  134. static inline char *portspeed(struct usb_hub *hub, int portstatus)
  135. {
  136. if (hub_is_superspeed(hub->hdev))
  137. return "5.0 Gb/s";
  138. if (portstatus & USB_PORT_STAT_HIGH_SPEED)
  139. return "480 Mb/s";
  140. else if (portstatus & USB_PORT_STAT_LOW_SPEED)
  141. return "1.5 Mb/s";
  142. else
  143. return "12 Mb/s";
  144. }
  145. /* Note that hdev or one of its children must be locked! */
  146. static struct usb_hub *hdev_to_hub(struct usb_device *hdev)
  147. {
  148. if (!hdev || !hdev->actconfig)
  149. return NULL;
  150. return usb_get_intfdata(hdev->actconfig->interface[0]);
  151. }
  152. static int usb_device_supports_lpm(struct usb_device *udev)
  153. {
  154. /* USB 2.1 (and greater) devices indicate LPM support through
  155. * their USB 2.0 Extended Capabilities BOS descriptor.
  156. */
  157. if (udev->speed == USB_SPEED_HIGH) {
  158. if (udev->bos->ext_cap &&
  159. (USB_LPM_SUPPORT &
  160. le32_to_cpu(udev->bos->ext_cap->bmAttributes)))
  161. return 1;
  162. return 0;
  163. }
  164. /* All USB 3.0 must support LPM, but we need their max exit latency
  165. * information from the SuperSpeed Extended Capabilities BOS descriptor.
  166. */
  167. if (!udev->bos->ss_cap) {
  168. dev_warn(&udev->dev, "No LPM exit latency info found. "
  169. "Power management will be impacted.\n");
  170. return 0;
  171. }
  172. if (udev->parent->lpm_capable)
  173. return 1;
  174. dev_warn(&udev->dev, "Parent hub missing LPM exit latency info. "
  175. "Power management will be impacted.\n");
  176. return 0;
  177. }
  178. /*
  179. * Set the Maximum Exit Latency (MEL) for the host to initiate a transition from
  180. * either U1 or U2.
  181. */
  182. static void usb_set_lpm_mel(struct usb_device *udev,
  183. struct usb3_lpm_parameters *udev_lpm_params,
  184. unsigned int udev_exit_latency,
  185. struct usb_hub *hub,
  186. struct usb3_lpm_parameters *hub_lpm_params,
  187. unsigned int hub_exit_latency)
  188. {
  189. unsigned int total_mel;
  190. unsigned int device_mel;
  191. unsigned int hub_mel;
  192. /*
  193. * Calculate the time it takes to transition all links from the roothub
  194. * to the parent hub into U0. The parent hub must then decode the
  195. * packet (hub header decode latency) to figure out which port it was
  196. * bound for.
  197. *
  198. * The Hub Header decode latency is expressed in 0.1us intervals (0x1
  199. * means 0.1us). Multiply that by 100 to get nanoseconds.
  200. */
  201. total_mel = hub_lpm_params->mel +
  202. (hub->descriptor->u.ss.bHubHdrDecLat * 100);
  203. /*
  204. * How long will it take to transition the downstream hub's port into
  205. * U0? The greater of either the hub exit latency or the device exit
  206. * latency.
  207. *
  208. * The BOS U1/U2 exit latencies are expressed in 1us intervals.
  209. * Multiply that by 1000 to get nanoseconds.
  210. */
  211. device_mel = udev_exit_latency * 1000;
  212. hub_mel = hub_exit_latency * 1000;
  213. if (device_mel > hub_mel)
  214. total_mel += device_mel;
  215. else
  216. total_mel += hub_mel;
  217. udev_lpm_params->mel = total_mel;
  218. }
  219. /*
  220. * Set the maximum Device to Host Exit Latency (PEL) for the device to initiate
  221. * a transition from either U1 or U2.
  222. */
  223. static void usb_set_lpm_pel(struct usb_device *udev,
  224. struct usb3_lpm_parameters *udev_lpm_params,
  225. unsigned int udev_exit_latency,
  226. struct usb_hub *hub,
  227. struct usb3_lpm_parameters *hub_lpm_params,
  228. unsigned int hub_exit_latency,
  229. unsigned int port_to_port_exit_latency)
  230. {
  231. unsigned int first_link_pel;
  232. unsigned int hub_pel;
  233. /*
  234. * First, the device sends an LFPS to transition the link between the
  235. * device and the parent hub into U0. The exit latency is the bigger of
  236. * the device exit latency or the hub exit latency.
  237. */
  238. if (udev_exit_latency > hub_exit_latency)
  239. first_link_pel = udev_exit_latency * 1000;
  240. else
  241. first_link_pel = hub_exit_latency * 1000;
  242. /*
  243. * When the hub starts to receive the LFPS, there is a slight delay for
  244. * it to figure out that one of the ports is sending an LFPS. Then it
  245. * will forward the LFPS to its upstream link. The exit latency is the
  246. * delay, plus the PEL that we calculated for this hub.
  247. */
  248. hub_pel = port_to_port_exit_latency * 1000 + hub_lpm_params->pel;
  249. /*
  250. * According to figure C-7 in the USB 3.0 spec, the PEL for this device
  251. * is the greater of the two exit latencies.
  252. */
  253. if (first_link_pel > hub_pel)
  254. udev_lpm_params->pel = first_link_pel;
  255. else
  256. udev_lpm_params->pel = hub_pel;
  257. }
  258. /*
  259. * Set the System Exit Latency (SEL) to indicate the total worst-case time from
  260. * when a device initiates a transition to U0, until when it will receive the
  261. * first packet from the host controller.
  262. *
  263. * Section C.1.5.1 describes the four components to this:
  264. * - t1: device PEL
  265. * - t2: time for the ERDY to make it from the device to the host.
  266. * - t3: a host-specific delay to process the ERDY.
  267. * - t4: time for the packet to make it from the host to the device.
  268. *
  269. * t3 is specific to both the xHCI host and the platform the host is integrated
  270. * into. The Intel HW folks have said it's negligible, FIXME if a different
  271. * vendor says otherwise.
  272. */
  273. static void usb_set_lpm_sel(struct usb_device *udev,
  274. struct usb3_lpm_parameters *udev_lpm_params)
  275. {
  276. struct usb_device *parent;
  277. unsigned int num_hubs;
  278. unsigned int total_sel;
  279. /* t1 = device PEL */
  280. total_sel = udev_lpm_params->pel;
  281. /* How many external hubs are in between the device & the root port. */
  282. for (parent = udev->parent, num_hubs = 0; parent->parent;
  283. parent = parent->parent)
  284. num_hubs++;
  285. /* t2 = 2.1us + 250ns * (num_hubs - 1) */
  286. if (num_hubs > 0)
  287. total_sel += 2100 + 250 * (num_hubs - 1);
  288. /* t4 = 250ns * num_hubs */
  289. total_sel += 250 * num_hubs;
  290. udev_lpm_params->sel = total_sel;
  291. }
  292. static void usb_set_lpm_parameters(struct usb_device *udev)
  293. {
  294. struct usb_hub *hub;
  295. unsigned int port_to_port_delay;
  296. unsigned int udev_u1_del;
  297. unsigned int udev_u2_del;
  298. unsigned int hub_u1_del;
  299. unsigned int hub_u2_del;
  300. if (!udev->lpm_capable || udev->speed != USB_SPEED_SUPER)
  301. return;
  302. hub = hdev_to_hub(udev->parent);
  303. /* It doesn't take time to transition the roothub into U0, since it
  304. * doesn't have an upstream link.
  305. */
  306. if (!hub)
  307. return;
  308. udev_u1_del = udev->bos->ss_cap->bU1devExitLat;
  309. udev_u2_del = udev->bos->ss_cap->bU2DevExitLat;
  310. hub_u1_del = udev->parent->bos->ss_cap->bU1devExitLat;
  311. hub_u2_del = udev->parent->bos->ss_cap->bU2DevExitLat;
  312. usb_set_lpm_mel(udev, &udev->u1_params, udev_u1_del,
  313. hub, &udev->parent->u1_params, hub_u1_del);
  314. usb_set_lpm_mel(udev, &udev->u2_params, udev_u2_del,
  315. hub, &udev->parent->u2_params, hub_u2_del);
  316. /*
  317. * Appendix C, section C.2.2.2, says that there is a slight delay from
  318. * when the parent hub notices the downstream port is trying to
  319. * transition to U0 to when the hub initiates a U0 transition on its
  320. * upstream port. The section says the delays are tPort2PortU1EL and
  321. * tPort2PortU2EL, but it doesn't define what they are.
  322. *
  323. * The hub chapter, sections 10.4.2.4 and 10.4.2.5 seem to be talking
  324. * about the same delays. Use the maximum delay calculations from those
  325. * sections. For U1, it's tHubPort2PortExitLat, which is 1us max. For
  326. * U2, it's tHubPort2PortExitLat + U2DevExitLat - U1DevExitLat. I
  327. * assume the device exit latencies they are talking about are the hub
  328. * exit latencies.
  329. *
  330. * What do we do if the U2 exit latency is less than the U1 exit
  331. * latency? It's possible, although not likely...
  332. */
  333. port_to_port_delay = 1;
  334. usb_set_lpm_pel(udev, &udev->u1_params, udev_u1_del,
  335. hub, &udev->parent->u1_params, hub_u1_del,
  336. port_to_port_delay);
  337. if (hub_u2_del > hub_u1_del)
  338. port_to_port_delay = 1 + hub_u2_del - hub_u1_del;
  339. else
  340. port_to_port_delay = 1 + hub_u1_del;
  341. usb_set_lpm_pel(udev, &udev->u2_params, udev_u2_del,
  342. hub, &udev->parent->u2_params, hub_u2_del,
  343. port_to_port_delay);
  344. /* Now that we've got PEL, calculate SEL. */
  345. usb_set_lpm_sel(udev, &udev->u1_params);
  346. usb_set_lpm_sel(udev, &udev->u2_params);
  347. }
  348. /* USB 2.0 spec Section 11.24.4.5 */
  349. static int get_hub_descriptor(struct usb_device *hdev, void *data)
  350. {
  351. int i, ret, size;
  352. unsigned dtype;
  353. if (hub_is_superspeed(hdev)) {
  354. dtype = USB_DT_SS_HUB;
  355. size = USB_DT_SS_HUB_SIZE;
  356. } else {
  357. dtype = USB_DT_HUB;
  358. size = sizeof(struct usb_hub_descriptor);
  359. }
  360. for (i = 0; i < 3; i++) {
  361. ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
  362. USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
  363. dtype << 8, 0, data, size,
  364. USB_CTRL_GET_TIMEOUT);
  365. if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
  366. return ret;
  367. }
  368. return -EINVAL;
  369. }
  370. /*
  371. * USB 2.0 spec Section 11.24.2.1
  372. */
  373. static int clear_hub_feature(struct usb_device *hdev, int feature)
  374. {
  375. return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
  376. USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
  377. }
  378. /*
  379. * USB 2.0 spec Section 11.24.2.2
  380. */
  381. static int clear_port_feature(struct usb_device *hdev, int port1, int feature)
  382. {
  383. return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
  384. USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
  385. NULL, 0, 1000);
  386. }
  387. /*
  388. * USB 2.0 spec Section 11.24.2.13
  389. */
  390. static int set_port_feature(struct usb_device *hdev, int port1, int feature)
  391. {
  392. return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
  393. USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
  394. NULL, 0, 1000);
  395. }
  396. /*
  397. * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
  398. * for info about using port indicators
  399. */
  400. static void set_port_led(
  401. struct usb_hub *hub,
  402. int port1,
  403. int selector
  404. )
  405. {
  406. int status = set_port_feature(hub->hdev, (selector << 8) | port1,
  407. USB_PORT_FEAT_INDICATOR);
  408. if (status < 0)
  409. dev_dbg (hub->intfdev,
  410. "port %d indicator %s status %d\n",
  411. port1,
  412. ({ char *s; switch (selector) {
  413. case HUB_LED_AMBER: s = "amber"; break;
  414. case HUB_LED_GREEN: s = "green"; break;
  415. case HUB_LED_OFF: s = "off"; break;
  416. case HUB_LED_AUTO: s = "auto"; break;
  417. default: s = "??"; break;
  418. }; s; }),
  419. status);
  420. }
  421. #define LED_CYCLE_PERIOD ((2*HZ)/3)
  422. static void led_work (struct work_struct *work)
  423. {
  424. struct usb_hub *hub =
  425. container_of(work, struct usb_hub, leds.work);
  426. struct usb_device *hdev = hub->hdev;
  427. unsigned i;
  428. unsigned changed = 0;
  429. int cursor = -1;
  430. if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
  431. return;
  432. for (i = 0; i < hub->descriptor->bNbrPorts; i++) {
  433. unsigned selector, mode;
  434. /* 30%-50% duty cycle */
  435. switch (hub->indicator[i]) {
  436. /* cycle marker */
  437. case INDICATOR_CYCLE:
  438. cursor = i;
  439. selector = HUB_LED_AUTO;
  440. mode = INDICATOR_AUTO;
  441. break;
  442. /* blinking green = sw attention */
  443. case INDICATOR_GREEN_BLINK:
  444. selector = HUB_LED_GREEN;
  445. mode = INDICATOR_GREEN_BLINK_OFF;
  446. break;
  447. case INDICATOR_GREEN_BLINK_OFF:
  448. selector = HUB_LED_OFF;
  449. mode = INDICATOR_GREEN_BLINK;
  450. break;
  451. /* blinking amber = hw attention */
  452. case INDICATOR_AMBER_BLINK:
  453. selector = HUB_LED_AMBER;
  454. mode = INDICATOR_AMBER_BLINK_OFF;
  455. break;
  456. case INDICATOR_AMBER_BLINK_OFF:
  457. selector = HUB_LED_OFF;
  458. mode = INDICATOR_AMBER_BLINK;
  459. break;
  460. /* blink green/amber = reserved */
  461. case INDICATOR_ALT_BLINK:
  462. selector = HUB_LED_GREEN;
  463. mode = INDICATOR_ALT_BLINK_OFF;
  464. break;
  465. case INDICATOR_ALT_BLINK_OFF:
  466. selector = HUB_LED_AMBER;
  467. mode = INDICATOR_ALT_BLINK;
  468. break;
  469. default:
  470. continue;
  471. }
  472. if (selector != HUB_LED_AUTO)
  473. changed = 1;
  474. set_port_led(hub, i + 1, selector);
  475. hub->indicator[i] = mode;
  476. }
  477. if (!changed && blinkenlights) {
  478. cursor++;
  479. cursor %= hub->descriptor->bNbrPorts;
  480. set_port_led(hub, cursor + 1, HUB_LED_GREEN);
  481. hub->indicator[cursor] = INDICATOR_CYCLE;
  482. changed++;
  483. }
  484. if (changed)
  485. schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
  486. }
  487. /* use a short timeout for hub/port status fetches */
  488. #define USB_STS_TIMEOUT 1000
  489. #define USB_STS_RETRIES 5
  490. /*
  491. * USB 2.0 spec Section 11.24.2.6
  492. */
  493. static int get_hub_status(struct usb_device *hdev,
  494. struct usb_hub_status *data)
  495. {
  496. int i, status = -ETIMEDOUT;
  497. for (i = 0; i < USB_STS_RETRIES &&
  498. (status == -ETIMEDOUT || status == -EPIPE); i++) {
  499. status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
  500. USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
  501. data, sizeof(*data), USB_STS_TIMEOUT);
  502. }
  503. return status;
  504. }
  505. /*
  506. * USB 2.0 spec Section 11.24.2.7
  507. */
  508. static int get_port_status(struct usb_device *hdev, int port1,
  509. struct usb_port_status *data)
  510. {
  511. int i, status = -ETIMEDOUT;
  512. for (i = 0; i < USB_STS_RETRIES &&
  513. (status == -ETIMEDOUT || status == -EPIPE); i++) {
  514. status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
  515. USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
  516. data, sizeof(*data), USB_STS_TIMEOUT);
  517. }
  518. return status;
  519. }
  520. static int hub_port_status(struct usb_hub *hub, int port1,
  521. u16 *status, u16 *change)
  522. {
  523. int ret;
  524. mutex_lock(&hub->status_mutex);
  525. ret = get_port_status(hub->hdev, port1, &hub->status->port);
  526. if (ret < 4) {
  527. dev_err(hub->intfdev,
  528. "%s failed (err = %d)\n", __func__, ret);
  529. if (ret >= 0)
  530. ret = -EIO;
  531. } else {
  532. *status = le16_to_cpu(hub->status->port.wPortStatus);
  533. *change = le16_to_cpu(hub->status->port.wPortChange);
  534. ret = 0;
  535. }
  536. mutex_unlock(&hub->status_mutex);
  537. return ret;
  538. }
  539. static void kick_khubd(struct usb_hub *hub)
  540. {
  541. unsigned long flags;
  542. spin_lock_irqsave(&hub_event_lock, flags);
  543. if (!hub->disconnected && list_empty(&hub->event_list)) {
  544. list_add_tail(&hub->event_list, &hub_event_list);
  545. /* Suppress autosuspend until khubd runs */
  546. usb_autopm_get_interface_no_resume(
  547. to_usb_interface(hub->intfdev));
  548. wake_up(&khubd_wait);
  549. }
  550. spin_unlock_irqrestore(&hub_event_lock, flags);
  551. }
  552. void usb_kick_khubd(struct usb_device *hdev)
  553. {
  554. struct usb_hub *hub = hdev_to_hub(hdev);
  555. if (hub)
  556. kick_khubd(hub);
  557. }
  558. /*
  559. * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
  560. * Notification, which indicates it had initiated remote wakeup.
  561. *
  562. * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
  563. * device initiates resume, so the USB core will not receive notice of the
  564. * resume through the normal hub interrupt URB.
  565. */
  566. void usb_wakeup_notification(struct usb_device *hdev,
  567. unsigned int portnum)
  568. {
  569. struct usb_hub *hub;
  570. if (!hdev)
  571. return;
  572. hub = hdev_to_hub(hdev);
  573. if (hub) {
  574. set_bit(portnum, hub->wakeup_bits);
  575. kick_khubd(hub);
  576. }
  577. }
  578. EXPORT_SYMBOL_GPL(usb_wakeup_notification);
  579. /* completion function, fires on port status changes and various faults */
  580. static void hub_irq(struct urb *urb)
  581. {
  582. struct usb_hub *hub = urb->context;
  583. int status = urb->status;
  584. unsigned i;
  585. unsigned long bits;
  586. switch (status) {
  587. case -ENOENT: /* synchronous unlink */
  588. case -ECONNRESET: /* async unlink */
  589. case -ESHUTDOWN: /* hardware going away */
  590. return;
  591. default: /* presumably an error */
  592. /* Cause a hub reset after 10 consecutive errors */
  593. dev_dbg (hub->intfdev, "transfer --> %d\n", status);
  594. if ((++hub->nerrors < 10) || hub->error)
  595. goto resubmit;
  596. hub->error = status;
  597. /* FALL THROUGH */
  598. /* let khubd handle things */
  599. case 0: /* we got data: port status changed */
  600. bits = 0;
  601. for (i = 0; i < urb->actual_length; ++i)
  602. bits |= ((unsigned long) ((*hub->buffer)[i]))
  603. << (i*8);
  604. hub->event_bits[0] = bits;
  605. break;
  606. }
  607. hub->nerrors = 0;
  608. /* Something happened, let khubd figure it out */
  609. kick_khubd(hub);
  610. resubmit:
  611. if (hub->quiescing)
  612. return;
  613. if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
  614. && status != -ENODEV && status != -EPERM)
  615. dev_err (hub->intfdev, "resubmit --> %d\n", status);
  616. }
  617. /* USB 2.0 spec Section 11.24.2.3 */
  618. static inline int
  619. hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
  620. {
  621. return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
  622. HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
  623. tt, NULL, 0, 1000);
  624. }
  625. /*
  626. * enumeration blocks khubd for a long time. we use keventd instead, since
  627. * long blocking there is the exception, not the rule. accordingly, HCDs
  628. * talking to TTs must queue control transfers (not just bulk and iso), so
  629. * both can talk to the same hub concurrently.
  630. */
  631. static void hub_tt_work(struct work_struct *work)
  632. {
  633. struct usb_hub *hub =
  634. container_of(work, struct usb_hub, tt.clear_work);
  635. unsigned long flags;
  636. int limit = 100;
  637. spin_lock_irqsave (&hub->tt.lock, flags);
  638. while (--limit && !list_empty (&hub->tt.clear_list)) {
  639. struct list_head *next;
  640. struct usb_tt_clear *clear;
  641. struct usb_device *hdev = hub->hdev;
  642. const struct hc_driver *drv;
  643. int status;
  644. next = hub->tt.clear_list.next;
  645. clear = list_entry (next, struct usb_tt_clear, clear_list);
  646. list_del (&clear->clear_list);
  647. /* drop lock so HCD can concurrently report other TT errors */
  648. spin_unlock_irqrestore (&hub->tt.lock, flags);
  649. status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
  650. if (status)
  651. dev_err (&hdev->dev,
  652. "clear tt %d (%04x) error %d\n",
  653. clear->tt, clear->devinfo, status);
  654. /* Tell the HCD, even if the operation failed */
  655. drv = clear->hcd->driver;
  656. if (drv->clear_tt_buffer_complete)
  657. (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
  658. kfree(clear);
  659. spin_lock_irqsave(&hub->tt.lock, flags);
  660. }
  661. spin_unlock_irqrestore (&hub->tt.lock, flags);
  662. }
  663. /**
  664. * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
  665. * @urb: an URB associated with the failed or incomplete split transaction
  666. *
  667. * High speed HCDs use this to tell the hub driver that some split control or
  668. * bulk transaction failed in a way that requires clearing internal state of
  669. * a transaction translator. This is normally detected (and reported) from
  670. * interrupt context.
  671. *
  672. * It may not be possible for that hub to handle additional full (or low)
  673. * speed transactions until that state is fully cleared out.
  674. */
  675. int usb_hub_clear_tt_buffer(struct urb *urb)
  676. {
  677. struct usb_device *udev = urb->dev;
  678. int pipe = urb->pipe;
  679. struct usb_tt *tt = udev->tt;
  680. unsigned long flags;
  681. struct usb_tt_clear *clear;
  682. /* we've got to cope with an arbitrary number of pending TT clears,
  683. * since each TT has "at least two" buffers that can need it (and
  684. * there can be many TTs per hub). even if they're uncommon.
  685. */
  686. if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) {
  687. dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
  688. /* FIXME recover somehow ... RESET_TT? */
  689. return -ENOMEM;
  690. }
  691. /* info that CLEAR_TT_BUFFER needs */
  692. clear->tt = tt->multi ? udev->ttport : 1;
  693. clear->devinfo = usb_pipeendpoint (pipe);
  694. clear->devinfo |= udev->devnum << 4;
  695. clear->devinfo |= usb_pipecontrol (pipe)
  696. ? (USB_ENDPOINT_XFER_CONTROL << 11)
  697. : (USB_ENDPOINT_XFER_BULK << 11);
  698. if (usb_pipein (pipe))
  699. clear->devinfo |= 1 << 15;
  700. /* info for completion callback */
  701. clear->hcd = bus_to_hcd(udev->bus);
  702. clear->ep = urb->ep;
  703. /* tell keventd to clear state for this TT */
  704. spin_lock_irqsave (&tt->lock, flags);
  705. list_add_tail (&clear->clear_list, &tt->clear_list);
  706. schedule_work(&tt->clear_work);
  707. spin_unlock_irqrestore (&tt->lock, flags);
  708. return 0;
  709. }
  710. EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
  711. /* If do_delay is false, return the number of milliseconds the caller
  712. * needs to delay.
  713. */
  714. static unsigned hub_power_on(struct usb_hub *hub, bool do_delay)
  715. {
  716. int port1;
  717. unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
  718. unsigned delay;
  719. u16 wHubCharacteristics =
  720. le16_to_cpu(hub->descriptor->wHubCharacteristics);
  721. /* Enable power on each port. Some hubs have reserved values
  722. * of LPSM (> 2) in their descriptors, even though they are
  723. * USB 2.0 hubs. Some hubs do not implement port-power switching
  724. * but only emulate it. In all cases, the ports won't work
  725. * unless we send these messages to the hub.
  726. */
  727. if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2)
  728. dev_dbg(hub->intfdev, "enabling power on all ports\n");
  729. else
  730. dev_dbg(hub->intfdev, "trying to enable port power on "
  731. "non-switchable hub\n");
  732. for (port1 = 1; port1 <= hub->descriptor->bNbrPorts; port1++)
  733. set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
  734. /* Wait at least 100 msec for power to become stable */
  735. delay = max(pgood_delay, (unsigned) 100);
  736. if (do_delay)
  737. msleep(delay);
  738. return delay;
  739. }
  740. static int hub_hub_status(struct usb_hub *hub,
  741. u16 *status, u16 *change)
  742. {
  743. int ret;
  744. mutex_lock(&hub->status_mutex);
  745. ret = get_hub_status(hub->hdev, &hub->status->hub);
  746. if (ret < 0)
  747. dev_err (hub->intfdev,
  748. "%s failed (err = %d)\n", __func__, ret);
  749. else {
  750. *status = le16_to_cpu(hub->status->hub.wHubStatus);
  751. *change = le16_to_cpu(hub->status->hub.wHubChange);
  752. ret = 0;
  753. }
  754. mutex_unlock(&hub->status_mutex);
  755. return ret;
  756. }
  757. static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
  758. {
  759. struct usb_device *hdev = hub->hdev;
  760. int ret = 0;
  761. if (hdev->children[port1-1] && set_state)
  762. usb_set_device_state(hdev->children[port1-1],
  763. USB_STATE_NOTATTACHED);
  764. if (!hub->error && !hub_is_superspeed(hub->hdev))
  765. ret = clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE);
  766. if (ret)
  767. dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
  768. port1, ret);
  769. return ret;
  770. }
  771. /*
  772. * Disable a port and mark a logical connect-change event, so that some
  773. * time later khubd will disconnect() any existing usb_device on the port
  774. * and will re-enumerate if there actually is a device attached.
  775. */
  776. static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
  777. {
  778. dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1);
  779. hub_port_disable(hub, port1, 1);
  780. /* FIXME let caller ask to power down the port:
  781. * - some devices won't enumerate without a VBUS power cycle
  782. * - SRP saves power that way
  783. * - ... new call, TBD ...
  784. * That's easy if this hub can switch power per-port, and
  785. * khubd reactivates the port later (timer, SRP, etc).
  786. * Powerdown must be optional, because of reset/DFU.
  787. */
  788. set_bit(port1, hub->change_bits);
  789. kick_khubd(hub);
  790. }
  791. /**
  792. * usb_remove_device - disable a device's port on its parent hub
  793. * @udev: device to be disabled and removed
  794. * Context: @udev locked, must be able to sleep.
  795. *
  796. * After @udev's port has been disabled, khubd is notified and it will
  797. * see that the device has been disconnected. When the device is
  798. * physically unplugged and something is plugged in, the events will
  799. * be received and processed normally.
  800. */
  801. int usb_remove_device(struct usb_device *udev)
  802. {
  803. struct usb_hub *hub;
  804. struct usb_interface *intf;
  805. if (!udev->parent) /* Can't remove a root hub */
  806. return -EINVAL;
  807. hub = hdev_to_hub(udev->parent);
  808. intf = to_usb_interface(hub->intfdev);
  809. usb_autopm_get_interface(intf);
  810. set_bit(udev->portnum, hub->removed_bits);
  811. hub_port_logical_disconnect(hub, udev->portnum);
  812. usb_autopm_put_interface(intf);
  813. return 0;
  814. }
  815. enum hub_activation_type {
  816. HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */
  817. HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
  818. };
  819. static void hub_init_func2(struct work_struct *ws);
  820. static void hub_init_func3(struct work_struct *ws);
  821. static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
  822. {
  823. struct usb_device *hdev = hub->hdev;
  824. struct usb_hcd *hcd;
  825. int ret;
  826. int port1;
  827. int status;
  828. bool need_debounce_delay = false;
  829. unsigned delay;
  830. /* Continue a partial initialization */
  831. if (type == HUB_INIT2)
  832. goto init2;
  833. if (type == HUB_INIT3)
  834. goto init3;
  835. /* The superspeed hub except for root hub has to use Hub Depth
  836. * value as an offset into the route string to locate the bits
  837. * it uses to determine the downstream port number. So hub driver
  838. * should send a set hub depth request to superspeed hub after
  839. * the superspeed hub is set configuration in initialization or
  840. * reset procedure.
  841. *
  842. * After a resume, port power should still be on.
  843. * For any other type of activation, turn it on.
  844. */
  845. if (type != HUB_RESUME) {
  846. if (hdev->parent && hub_is_superspeed(hdev)) {
  847. ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
  848. HUB_SET_DEPTH, USB_RT_HUB,
  849. hdev->level - 1, 0, NULL, 0,
  850. USB_CTRL_SET_TIMEOUT);
  851. if (ret < 0)
  852. dev_err(hub->intfdev,
  853. "set hub depth failed\n");
  854. }
  855. /* Speed up system boot by using a delayed_work for the
  856. * hub's initial power-up delays. This is pretty awkward
  857. * and the implementation looks like a home-brewed sort of
  858. * setjmp/longjmp, but it saves at least 100 ms for each
  859. * root hub (assuming usbcore is compiled into the kernel
  860. * rather than as a module). It adds up.
  861. *
  862. * This can't be done for HUB_RESUME or HUB_RESET_RESUME
  863. * because for those activation types the ports have to be
  864. * operational when we return. In theory this could be done
  865. * for HUB_POST_RESET, but it's easier not to.
  866. */
  867. if (type == HUB_INIT) {
  868. delay = hub_power_on(hub, false);
  869. PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func2);
  870. schedule_delayed_work(&hub->init_work,
  871. msecs_to_jiffies(delay));
  872. /* Suppress autosuspend until init is done */
  873. usb_autopm_get_interface_no_resume(
  874. to_usb_interface(hub->intfdev));
  875. return; /* Continues at init2: below */
  876. } else if (type == HUB_RESET_RESUME) {
  877. /* The internal host controller state for the hub device
  878. * may be gone after a host power loss on system resume.
  879. * Update the device's info so the HW knows it's a hub.
  880. */
  881. hcd = bus_to_hcd(hdev->bus);
  882. if (hcd->driver->update_hub_device) {
  883. ret = hcd->driver->update_hub_device(hcd, hdev,
  884. &hub->tt, GFP_NOIO);
  885. if (ret < 0) {
  886. dev_err(hub->intfdev, "Host not "
  887. "accepting hub info "
  888. "update.\n");
  889. dev_err(hub->intfdev, "LS/FS devices "
  890. "and hubs may not work "
  891. "under this hub\n.");
  892. }
  893. }
  894. hub_power_on(hub, true);
  895. } else {
  896. hub_power_on(hub, true);
  897. }
  898. }
  899. init2:
  900. /* Check each port and set hub->change_bits to let khubd know
  901. * which ports need attention.
  902. */
  903. for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
  904. struct usb_device *udev = hdev->children[port1-1];
  905. u16 portstatus, portchange;
  906. portstatus = portchange = 0;
  907. status = hub_port_status(hub, port1, &portstatus, &portchange);
  908. if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
  909. dev_dbg(hub->intfdev,
  910. "port %d: status %04x change %04x\n",
  911. port1, portstatus, portchange);
  912. /* After anything other than HUB_RESUME (i.e., initialization
  913. * or any sort of reset), every port should be disabled.
  914. * Unconnected ports should likewise be disabled (paranoia),
  915. * and so should ports for which we have no usb_device.
  916. */
  917. if ((portstatus & USB_PORT_STAT_ENABLE) && (
  918. type != HUB_RESUME ||
  919. !(portstatus & USB_PORT_STAT_CONNECTION) ||
  920. !udev ||
  921. udev->state == USB_STATE_NOTATTACHED)) {
  922. /*
  923. * USB3 protocol ports will automatically transition
  924. * to Enabled state when detect an USB3.0 device attach.
  925. * Do not disable USB3 protocol ports.
  926. */
  927. if (!hub_is_superspeed(hdev)) {
  928. clear_port_feature(hdev, port1,
  929. USB_PORT_FEAT_ENABLE);
  930. portstatus &= ~USB_PORT_STAT_ENABLE;
  931. } else {
  932. /* Pretend that power was lost for USB3 devs */
  933. portstatus &= ~USB_PORT_STAT_ENABLE;
  934. }
  935. }
  936. /* Clear status-change flags; we'll debounce later */
  937. if (portchange & USB_PORT_STAT_C_CONNECTION) {
  938. need_debounce_delay = true;
  939. clear_port_feature(hub->hdev, port1,
  940. USB_PORT_FEAT_C_CONNECTION);
  941. }
  942. if (portchange & USB_PORT_STAT_C_ENABLE) {
  943. need_debounce_delay = true;
  944. clear_port_feature(hub->hdev, port1,
  945. USB_PORT_FEAT_C_ENABLE);
  946. }
  947. if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
  948. hub_is_superspeed(hub->hdev)) {
  949. need_debounce_delay = true;
  950. clear_port_feature(hub->hdev, port1,
  951. USB_PORT_FEAT_C_BH_PORT_RESET);
  952. }
  953. /* We can forget about a "removed" device when there's a
  954. * physical disconnect or the connect status changes.
  955. */
  956. if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
  957. (portchange & USB_PORT_STAT_C_CONNECTION))
  958. clear_bit(port1, hub->removed_bits);
  959. if (!udev || udev->state == USB_STATE_NOTATTACHED) {
  960. /* Tell khubd to disconnect the device or
  961. * check for a new connection
  962. */
  963. if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
  964. set_bit(port1, hub->change_bits);
  965. } else if (portstatus & USB_PORT_STAT_ENABLE) {
  966. bool port_resumed = (portstatus &
  967. USB_PORT_STAT_LINK_STATE) ==
  968. USB_SS_PORT_LS_U0;
  969. /* The power session apparently survived the resume.
  970. * If there was an overcurrent or suspend change
  971. * (i.e., remote wakeup request), have khubd
  972. * take care of it. Look at the port link state
  973. * for USB 3.0 hubs, since they don't have a suspend
  974. * change bit, and they don't set the port link change
  975. * bit on device-initiated resume.
  976. */
  977. if (portchange || (hub_is_superspeed(hub->hdev) &&
  978. port_resumed))
  979. set_bit(port1, hub->change_bits);
  980. } else if (udev->persist_enabled) {
  981. #ifdef CONFIG_PM
  982. udev->reset_resume = 1;
  983. #endif
  984. set_bit(port1, hub->change_bits);
  985. } else {
  986. /* The power session is gone; tell khubd */
  987. usb_set_device_state(udev, USB_STATE_NOTATTACHED);
  988. set_bit(port1, hub->change_bits);
  989. }
  990. }
  991. /* If no port-status-change flags were set, we don't need any
  992. * debouncing. If flags were set we can try to debounce the
  993. * ports all at once right now, instead of letting khubd do them
  994. * one at a time later on.
  995. *
  996. * If any port-status changes do occur during this delay, khubd
  997. * will see them later and handle them normally.
  998. */
  999. if (need_debounce_delay) {
  1000. delay = HUB_DEBOUNCE_STABLE;
  1001. /* Don't do a long sleep inside a workqueue routine */
  1002. if (type == HUB_INIT2) {
  1003. PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func3);
  1004. schedule_delayed_work(&hub->init_work,
  1005. msecs_to_jiffies(delay));
  1006. return; /* Continues at init3: below */
  1007. } else {
  1008. msleep(delay);
  1009. }
  1010. }
  1011. init3:
  1012. hub->quiescing = 0;
  1013. status = usb_submit_urb(hub->urb, GFP_NOIO);
  1014. if (status < 0)
  1015. dev_err(hub->intfdev, "activate --> %d\n", status);
  1016. if (hub->has_indicators && blinkenlights)
  1017. schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
  1018. /* Scan all ports that need attention */
  1019. kick_khubd(hub);
  1020. /* Allow autosuspend if it was suppressed */
  1021. if (type <= HUB_INIT3)
  1022. usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
  1023. }
  1024. /* Implement the continuations for the delays above */
  1025. static void hub_init_func2(struct work_struct *ws)
  1026. {
  1027. struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
  1028. hub_activate(hub, HUB_INIT2);
  1029. }
  1030. static void hub_init_func3(struct work_struct *ws)
  1031. {
  1032. struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
  1033. hub_activate(hub, HUB_INIT3);
  1034. }
  1035. enum hub_quiescing_type {
  1036. HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
  1037. };
  1038. static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
  1039. {
  1040. struct usb_device *hdev = hub->hdev;
  1041. int i;
  1042. cancel_delayed_work_sync(&hub->init_work);
  1043. /* khubd and related activity won't re-trigger */
  1044. hub->quiescing = 1;
  1045. if (type != HUB_SUSPEND) {
  1046. /* Disconnect all the children */
  1047. for (i = 0; i < hdev->maxchild; ++i) {
  1048. if (hdev->children[i])
  1049. usb_disconnect(&hdev->children[i]);
  1050. }
  1051. }
  1052. /* Stop khubd and related activity */
  1053. usb_kill_urb(hub->urb);
  1054. if (hub->has_indicators)
  1055. cancel_delayed_work_sync(&hub->leds);
  1056. if (hub->tt.hub)
  1057. cancel_work_sync(&hub->tt.clear_work);
  1058. }
  1059. /* caller has locked the hub device */
  1060. static int hub_pre_reset(struct usb_interface *intf)
  1061. {
  1062. struct usb_hub *hub = usb_get_intfdata(intf);
  1063. hub_quiesce(hub, HUB_PRE_RESET);
  1064. return 0;
  1065. }
  1066. /* caller has locked the hub device */
  1067. static int hub_post_reset(struct usb_interface *intf)
  1068. {
  1069. struct usb_hub *hub = usb_get_intfdata(intf);
  1070. hub_activate(hub, HUB_POST_RESET);
  1071. return 0;
  1072. }
  1073. static int hub_configure(struct usb_hub *hub,
  1074. struct usb_endpoint_descriptor *endpoint)
  1075. {
  1076. struct usb_hcd *hcd;
  1077. struct usb_device *hdev = hub->hdev;
  1078. struct device *hub_dev = hub->intfdev;
  1079. u16 hubstatus, hubchange;
  1080. u16 wHubCharacteristics;
  1081. unsigned int pipe;
  1082. int maxp, ret;
  1083. char *message = "out of memory";
  1084. hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
  1085. if (!hub->buffer) {
  1086. ret = -ENOMEM;
  1087. goto fail;
  1088. }
  1089. hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
  1090. if (!hub->status) {
  1091. ret = -ENOMEM;
  1092. goto fail;
  1093. }
  1094. mutex_init(&hub->status_mutex);
  1095. hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
  1096. if (!hub->descriptor) {
  1097. ret = -ENOMEM;
  1098. goto fail;
  1099. }
  1100. /* Request the entire hub descriptor.
  1101. * hub->descriptor can handle USB_MAXCHILDREN ports,
  1102. * but the hub can/will return fewer bytes here.
  1103. */
  1104. ret = get_hub_descriptor(hdev, hub->descriptor);
  1105. if (ret < 0) {
  1106. message = "can't read hub descriptor";
  1107. goto fail;
  1108. } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
  1109. message = "hub has too many ports!";
  1110. ret = -ENODEV;
  1111. goto fail;
  1112. }
  1113. hdev->maxchild = hub->descriptor->bNbrPorts;
  1114. dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
  1115. (hdev->maxchild == 1) ? "" : "s");
  1116. hdev->children = kzalloc(hdev->maxchild *
  1117. sizeof(struct usb_device *), GFP_KERNEL);
  1118. hub->port_owners = kzalloc(hdev->maxchild * sizeof(struct dev_state *),
  1119. GFP_KERNEL);
  1120. if (!hdev->children || !hub->port_owners) {
  1121. ret = -ENOMEM;
  1122. goto fail;
  1123. }
  1124. wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
  1125. /* FIXME for USB 3.0, skip for now */
  1126. if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
  1127. !(hub_is_superspeed(hdev))) {
  1128. int i;
  1129. char portstr [USB_MAXCHILDREN + 1];
  1130. for (i = 0; i < hdev->maxchild; i++)
  1131. portstr[i] = hub->descriptor->u.hs.DeviceRemovable
  1132. [((i + 1) / 8)] & (1 << ((i + 1) % 8))
  1133. ? 'F' : 'R';
  1134. portstr[hdev->maxchild] = 0;
  1135. dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
  1136. } else
  1137. dev_dbg(hub_dev, "standalone hub\n");
  1138. switch (wHubCharacteristics & HUB_CHAR_LPSM) {
  1139. case HUB_CHAR_COMMON_LPSM:
  1140. dev_dbg(hub_dev, "ganged power switching\n");
  1141. break;
  1142. case HUB_CHAR_INDV_PORT_LPSM:
  1143. dev_dbg(hub_dev, "individual port power switching\n");
  1144. break;
  1145. case HUB_CHAR_NO_LPSM:
  1146. case HUB_CHAR_LPSM:
  1147. dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
  1148. break;
  1149. }
  1150. switch (wHubCharacteristics & HUB_CHAR_OCPM) {
  1151. case HUB_CHAR_COMMON_OCPM:
  1152. dev_dbg(hub_dev, "global over-current protection\n");
  1153. break;
  1154. case HUB_CHAR_INDV_PORT_OCPM:
  1155. dev_dbg(hub_dev, "individual port over-current protection\n");
  1156. break;
  1157. case HUB_CHAR_NO_OCPM:
  1158. case HUB_CHAR_OCPM:
  1159. dev_dbg(hub_dev, "no over-current protection\n");
  1160. break;
  1161. }
  1162. spin_lock_init (&hub->tt.lock);
  1163. INIT_LIST_HEAD (&hub->tt.clear_list);
  1164. INIT_WORK(&hub->tt.clear_work, hub_tt_work);
  1165. switch (hdev->descriptor.bDeviceProtocol) {
  1166. case USB_HUB_PR_FS:
  1167. break;
  1168. case USB_HUB_PR_HS_SINGLE_TT:
  1169. dev_dbg(hub_dev, "Single TT\n");
  1170. hub->tt.hub = hdev;
  1171. break;
  1172. case USB_HUB_PR_HS_MULTI_TT:
  1173. ret = usb_set_interface(hdev, 0, 1);
  1174. if (ret == 0) {
  1175. dev_dbg(hub_dev, "TT per port\n");
  1176. hub->tt.multi = 1;
  1177. } else
  1178. dev_err(hub_dev, "Using single TT (err %d)\n",
  1179. ret);
  1180. hub->tt.hub = hdev;
  1181. break;
  1182. case USB_HUB_PR_SS:
  1183. /* USB 3.0 hubs don't have a TT */
  1184. break;
  1185. default:
  1186. dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
  1187. hdev->descriptor.bDeviceProtocol);
  1188. break;
  1189. }
  1190. /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
  1191. switch (wHubCharacteristics & HUB_CHAR_TTTT) {
  1192. case HUB_TTTT_8_BITS:
  1193. if (hdev->descriptor.bDeviceProtocol != 0) {
  1194. hub->tt.think_time = 666;
  1195. dev_dbg(hub_dev, "TT requires at most %d "
  1196. "FS bit times (%d ns)\n",
  1197. 8, hub->tt.think_time);
  1198. }
  1199. break;
  1200. case HUB_TTTT_16_BITS:
  1201. hub->tt.think_time = 666 * 2;
  1202. dev_dbg(hub_dev, "TT requires at most %d "
  1203. "FS bit times (%d ns)\n",
  1204. 16, hub->tt.think_time);
  1205. break;
  1206. case HUB_TTTT_24_BITS:
  1207. hub->tt.think_time = 666 * 3;
  1208. dev_dbg(hub_dev, "TT requires at most %d "
  1209. "FS bit times (%d ns)\n",
  1210. 24, hub->tt.think_time);
  1211. break;
  1212. case HUB_TTTT_32_BITS:
  1213. hub->tt.think_time = 666 * 4;
  1214. dev_dbg(hub_dev, "TT requires at most %d "
  1215. "FS bit times (%d ns)\n",
  1216. 32, hub->tt.think_time);
  1217. break;
  1218. }
  1219. /* probe() zeroes hub->indicator[] */
  1220. if (wHubCharacteristics & HUB_CHAR_PORTIND) {
  1221. hub->has_indicators = 1;
  1222. dev_dbg(hub_dev, "Port indicators are supported\n");
  1223. }
  1224. dev_dbg(hub_dev, "power on to power good time: %dms\n",
  1225. hub->descriptor->bPwrOn2PwrGood * 2);
  1226. /* power budgeting mostly matters with bus-powered hubs,
  1227. * and battery-powered root hubs (may provide just 8 mA).
  1228. */
  1229. ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
  1230. if (ret < 2) {
  1231. message = "can't get hub status";
  1232. goto fail;
  1233. }
  1234. le16_to_cpus(&hubstatus);
  1235. if (hdev == hdev->bus->root_hub) {
  1236. if (hdev->bus_mA == 0 || hdev->bus_mA >= 500)
  1237. hub->mA_per_port = 500;
  1238. else {
  1239. hub->mA_per_port = hdev->bus_mA;
  1240. hub->limited_power = 1;
  1241. }
  1242. } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
  1243. dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
  1244. hub->descriptor->bHubContrCurrent);
  1245. hub->limited_power = 1;
  1246. if (hdev->maxchild > 0) {
  1247. int remaining = hdev->bus_mA -
  1248. hub->descriptor->bHubContrCurrent;
  1249. if (remaining < hdev->maxchild * 100)
  1250. dev_warn(hub_dev,
  1251. "insufficient power available "
  1252. "to use all downstream ports\n");
  1253. hub->mA_per_port = 100; /* 7.2.1.1 */
  1254. }
  1255. } else { /* Self-powered external hub */
  1256. /* FIXME: What about battery-powered external hubs that
  1257. * provide less current per port? */
  1258. hub->mA_per_port = 500;
  1259. }
  1260. if (hub->mA_per_port < 500)
  1261. dev_dbg(hub_dev, "%umA bus power budget for each child\n",
  1262. hub->mA_per_port);
  1263. /* Update the HCD's internal representation of this hub before khubd
  1264. * starts getting port status changes for devices under the hub.
  1265. */
  1266. hcd = bus_to_hcd(hdev->bus);
  1267. if (hcd->driver->update_hub_device) {
  1268. ret = hcd->driver->update_hub_device(hcd, hdev,
  1269. &hub->tt, GFP_KERNEL);
  1270. if (ret < 0) {
  1271. message = "can't update HCD hub info";
  1272. goto fail;
  1273. }
  1274. }
  1275. ret = hub_hub_status(hub, &hubstatus, &hubchange);
  1276. if (ret < 0) {
  1277. message = "can't get hub status";
  1278. goto fail;
  1279. }
  1280. /* local power status reports aren't always correct */
  1281. if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
  1282. dev_dbg(hub_dev, "local power source is %s\n",
  1283. (hubstatus & HUB_STATUS_LOCAL_POWER)
  1284. ? "lost (inactive)" : "good");
  1285. if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
  1286. dev_dbg(hub_dev, "%sover-current condition exists\n",
  1287. (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
  1288. /* set up the interrupt endpoint
  1289. * We use the EP's maxpacket size instead of (PORTS+1+7)/8
  1290. * bytes as USB2.0[11.12.3] says because some hubs are known
  1291. * to send more data (and thus cause overflow). For root hubs,
  1292. * maxpktsize is defined in hcd.c's fake endpoint descriptors
  1293. * to be big enough for at least USB_MAXCHILDREN ports. */
  1294. pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
  1295. maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
  1296. if (maxp > sizeof(*hub->buffer))
  1297. maxp = sizeof(*hub->buffer);
  1298. hub->urb = usb_alloc_urb(0, GFP_KERNEL);
  1299. if (!hub->urb) {
  1300. ret = -ENOMEM;
  1301. goto fail;
  1302. }
  1303. usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
  1304. hub, endpoint->bInterval);
  1305. /* maybe cycle the hub leds */
  1306. if (hub->has_indicators && blinkenlights)
  1307. hub->indicator [0] = INDICATOR_CYCLE;
  1308. hub_activate(hub, HUB_INIT);
  1309. return 0;
  1310. fail:
  1311. dev_err (hub_dev, "config failed, %s (err %d)\n",
  1312. message, ret);
  1313. /* hub_disconnect() frees urb and descriptor */
  1314. return ret;
  1315. }
  1316. static void hub_release(struct kref *kref)
  1317. {
  1318. struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
  1319. usb_put_intf(to_usb_interface(hub->intfdev));
  1320. kfree(hub);
  1321. }
  1322. static unsigned highspeed_hubs;
  1323. static void hub_disconnect(struct usb_interface *intf)
  1324. {
  1325. struct usb_hub *hub = usb_get_intfdata(intf);
  1326. struct usb_device *hdev = interface_to_usbdev(intf);
  1327. /* Take the hub off the event list and don't let it be added again */
  1328. spin_lock_irq(&hub_event_lock);
  1329. if (!list_empty(&hub->event_list)) {
  1330. list_del_init(&hub->event_list);
  1331. usb_autopm_put_interface_no_suspend(intf);
  1332. }
  1333. hub->disconnected = 1;
  1334. spin_unlock_irq(&hub_event_lock);
  1335. /* Disconnect all children and quiesce the hub */
  1336. hub->error = 0;
  1337. hub_quiesce(hub, HUB_DISCONNECT);
  1338. usb_set_intfdata (intf, NULL);
  1339. hub->hdev->maxchild = 0;
  1340. if (hub->hdev->speed == USB_SPEED_HIGH)
  1341. highspeed_hubs--;
  1342. usb_free_urb(hub->urb);
  1343. kfree(hdev->children);
  1344. kfree(hub->port_owners);
  1345. kfree(hub->descriptor);
  1346. kfree(hub->status);
  1347. kfree(hub->buffer);
  1348. kref_put(&hub->kref, hub_release);
  1349. }
  1350. static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
  1351. {
  1352. struct usb_host_interface *desc;
  1353. struct usb_endpoint_descriptor *endpoint;
  1354. struct usb_device *hdev;
  1355. struct usb_hub *hub;
  1356. desc = intf->cur_altsetting;
  1357. hdev = interface_to_usbdev(intf);
  1358. /* Hubs have proper suspend/resume support. */
  1359. usb_enable_autosuspend(hdev);
  1360. if (hdev->level == MAX_TOPO_LEVEL) {
  1361. dev_err(&intf->dev,
  1362. "Unsupported bus topology: hub nested too deep\n");
  1363. return -E2BIG;
  1364. }
  1365. #ifdef CONFIG_USB_OTG_BLACKLIST_HUB
  1366. if (hdev->parent) {
  1367. dev_warn(&intf->dev, "ignoring external hub\n");
  1368. return -ENODEV;
  1369. }
  1370. #endif
  1371. /* Some hubs have a subclass of 1, which AFAICT according to the */
  1372. /* specs is not defined, but it works */
  1373. if ((desc->desc.bInterfaceSubClass != 0) &&
  1374. (desc->desc.bInterfaceSubClass != 1)) {
  1375. descriptor_error:
  1376. dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
  1377. return -EIO;
  1378. }
  1379. /* Multiple endpoints? What kind of mutant ninja-hub is this? */
  1380. if (desc->desc.bNumEndpoints != 1)
  1381. goto descriptor_error;
  1382. endpoint = &desc->endpoint[0].desc;
  1383. /* If it's not an interrupt in endpoint, we'd better punt! */
  1384. if (!usb_endpoint_is_int_in(endpoint))
  1385. goto descriptor_error;
  1386. /* We found a hub */
  1387. dev_info (&intf->dev, "USB hub found\n");
  1388. hub = kzalloc(sizeof(*hub), GFP_KERNEL);
  1389. if (!hub) {
  1390. dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
  1391. return -ENOMEM;
  1392. }
  1393. kref_init(&hub->kref);
  1394. INIT_LIST_HEAD(&hub->event_list);
  1395. hub->intfdev = &intf->dev;
  1396. hub->hdev = hdev;
  1397. INIT_DELAYED_WORK(&hub->leds, led_work);
  1398. INIT_DELAYED_WORK(&hub->init_work, NULL);
  1399. usb_get_intf(intf);
  1400. usb_set_intfdata (intf, hub);
  1401. intf->needs_remote_wakeup = 1;
  1402. if (hdev->speed == USB_SPEED_HIGH)
  1403. highspeed_hubs++;
  1404. if (hub_configure(hub, endpoint) >= 0)
  1405. return 0;
  1406. hub_disconnect (intf);
  1407. return -ENODEV;
  1408. }
  1409. static int
  1410. hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
  1411. {
  1412. struct usb_device *hdev = interface_to_usbdev (intf);
  1413. /* assert ifno == 0 (part of hub spec) */
  1414. switch (code) {
  1415. case USBDEVFS_HUB_PORTINFO: {
  1416. struct usbdevfs_hub_portinfo *info = user_data;
  1417. int i;
  1418. spin_lock_irq(&device_state_lock);
  1419. if (hdev->devnum <= 0)
  1420. info->nports = 0;
  1421. else {
  1422. info->nports = hdev->maxchild;
  1423. for (i = 0; i < info->nports; i++) {
  1424. if (hdev->children[i] == NULL)
  1425. info->port[i] = 0;
  1426. else
  1427. info->port[i] =
  1428. hdev->children[i]->devnum;
  1429. }
  1430. }
  1431. spin_unlock_irq(&device_state_lock);
  1432. return info->nports + 1;
  1433. }
  1434. default:
  1435. return -ENOSYS;
  1436. }
  1437. }
  1438. /*
  1439. * Allow user programs to claim ports on a hub. When a device is attached
  1440. * to one of these "claimed" ports, the program will "own" the device.
  1441. */
  1442. static int find_port_owner(struct usb_device *hdev, unsigned port1,
  1443. struct dev_state ***ppowner)
  1444. {
  1445. if (hdev->state == USB_STATE_NOTATTACHED)
  1446. return -ENODEV;
  1447. if (port1 == 0 || port1 > hdev->maxchild)
  1448. return -EINVAL;
  1449. /* This assumes that devices not managed by the hub driver
  1450. * will always have maxchild equal to 0.
  1451. */
  1452. *ppowner = &(hdev_to_hub(hdev)->port_owners[port1 - 1]);
  1453. return 0;
  1454. }
  1455. /* In the following three functions, the caller must hold hdev's lock */
  1456. int usb_hub_claim_port(struct usb_device *hdev, unsigned port1,
  1457. struct dev_state *owner)
  1458. {
  1459. int rc;
  1460. struct dev_state **powner;
  1461. rc = find_port_owner(hdev, port1, &powner);
  1462. if (rc)
  1463. return rc;
  1464. if (*powner)
  1465. return -EBUSY;
  1466. *powner = owner;
  1467. return rc;
  1468. }
  1469. int usb_hub_release_port(struct usb_device *hdev, unsigned port1,
  1470. struct dev_state *owner)
  1471. {
  1472. int rc;
  1473. struct dev_state **powner;
  1474. rc = find_port_owner(hdev, port1, &powner);
  1475. if (rc)
  1476. return rc;
  1477. if (*powner != owner)
  1478. return -ENOENT;
  1479. *powner = NULL;
  1480. return rc;
  1481. }
  1482. void usb_hub_release_all_ports(struct usb_device *hdev, struct dev_state *owner)
  1483. {
  1484. int n;
  1485. struct dev_state **powner;
  1486. n = find_port_owner(hdev, 1, &powner);
  1487. if (n == 0) {
  1488. for (; n < hdev->maxchild; (++n, ++powner)) {
  1489. if (*powner == owner)
  1490. *powner = NULL;
  1491. }
  1492. }
  1493. }
  1494. /* The caller must hold udev's lock */
  1495. bool usb_device_is_owned(struct usb_device *udev)
  1496. {
  1497. struct usb_hub *hub;
  1498. if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
  1499. return false;
  1500. hub = hdev_to_hub(udev->parent);
  1501. return !!hub->port_owners[udev->portnum - 1];
  1502. }
  1503. static void recursively_mark_NOTATTACHED(struct usb_device *udev)
  1504. {
  1505. int i;
  1506. for (i = 0; i < udev->maxchild; ++i) {
  1507. if (udev->children[i])
  1508. recursively_mark_NOTATTACHED(udev->children[i]);
  1509. }
  1510. if (udev->state == USB_STATE_SUSPENDED)
  1511. udev->active_duration -= jiffies;
  1512. udev->state = USB_STATE_NOTATTACHED;
  1513. }
  1514. /**
  1515. * usb_set_device_state - change a device's current state (usbcore, hcds)
  1516. * @udev: pointer to device whose state should be changed
  1517. * @new_state: new state value to be stored
  1518. *
  1519. * udev->state is _not_ fully protected by the device lock. Although
  1520. * most transitions are made only while holding the lock, the state can
  1521. * can change to USB_STATE_NOTATTACHED at almost any time. This
  1522. * is so that devices can be marked as disconnected as soon as possible,
  1523. * without having to wait for any semaphores to be released. As a result,
  1524. * all changes to any device's state must be protected by the
  1525. * device_state_lock spinlock.
  1526. *
  1527. * Once a device has been added to the device tree, all changes to its state
  1528. * should be made using this routine. The state should _not_ be set directly.
  1529. *
  1530. * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
  1531. * Otherwise udev->state is set to new_state, and if new_state is
  1532. * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
  1533. * to USB_STATE_NOTATTACHED.
  1534. */
  1535. void usb_set_device_state(struct usb_device *udev,
  1536. enum usb_device_state new_state)
  1537. {
  1538. unsigned long flags;
  1539. int wakeup = -1;
  1540. spin_lock_irqsave(&device_state_lock, flags);
  1541. if (udev->state == USB_STATE_NOTATTACHED)
  1542. ; /* do nothing */
  1543. else if (new_state != USB_STATE_NOTATTACHED) {
  1544. /* root hub wakeup capabilities are managed out-of-band
  1545. * and may involve silicon errata ... ignore them here.
  1546. */
  1547. if (udev->parent) {
  1548. if (udev->state == USB_STATE_SUSPENDED
  1549. || new_state == USB_STATE_SUSPENDED)
  1550. ; /* No change to wakeup settings */
  1551. else if (new_state == USB_STATE_CONFIGURED)
  1552. wakeup = udev->actconfig->desc.bmAttributes
  1553. & USB_CONFIG_ATT_WAKEUP;
  1554. else
  1555. wakeup = 0;
  1556. }
  1557. if (udev->state == USB_STATE_SUSPENDED &&
  1558. new_state != USB_STATE_SUSPENDED)
  1559. udev->active_duration -= jiffies;
  1560. else if (new_state == USB_STATE_SUSPENDED &&
  1561. udev->state != USB_STATE_SUSPENDED)
  1562. udev->active_duration += jiffies;
  1563. udev->state = new_state;
  1564. } else
  1565. recursively_mark_NOTATTACHED(udev);
  1566. spin_unlock_irqrestore(&device_state_lock, flags);
  1567. if (wakeup >= 0)
  1568. device_set_wakeup_capable(&udev->dev, wakeup);
  1569. }
  1570. EXPORT_SYMBOL_GPL(usb_set_device_state);
  1571. /*
  1572. * Choose a device number.
  1573. *
  1574. * Device numbers are used as filenames in usbfs. On USB-1.1 and
  1575. * USB-2.0 buses they are also used as device addresses, however on
  1576. * USB-3.0 buses the address is assigned by the controller hardware
  1577. * and it usually is not the same as the device number.
  1578. *
  1579. * WUSB devices are simple: they have no hubs behind, so the mapping
  1580. * device <-> virtual port number becomes 1:1. Why? to simplify the
  1581. * life of the device connection logic in
  1582. * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
  1583. * handshake we need to assign a temporary address in the unauthorized
  1584. * space. For simplicity we use the first virtual port number found to
  1585. * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
  1586. * and that becomes it's address [X < 128] or its unauthorized address
  1587. * [X | 0x80].
  1588. *
  1589. * We add 1 as an offset to the one-based USB-stack port number
  1590. * (zero-based wusb virtual port index) for two reasons: (a) dev addr
  1591. * 0 is reserved by USB for default address; (b) Linux's USB stack
  1592. * uses always #1 for the root hub of the controller. So USB stack's
  1593. * port #1, which is wusb virtual-port #0 has address #2.
  1594. *
  1595. * Devices connected under xHCI are not as simple. The host controller
  1596. * supports virtualization, so the hardware assigns device addresses and
  1597. * the HCD must setup data structures before issuing a set address
  1598. * command to the hardware.
  1599. */
  1600. static void choose_devnum(struct usb_device *udev)
  1601. {
  1602. int devnum;
  1603. struct usb_bus *bus = udev->bus;
  1604. /* If khubd ever becomes multithreaded, this will need a lock */
  1605. if (udev->wusb) {
  1606. devnum = udev->portnum + 1;
  1607. BUG_ON(test_bit(devnum, bus->devmap.devicemap));
  1608. } else {
  1609. /* Try to allocate the next devnum beginning at
  1610. * bus->devnum_next. */
  1611. devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
  1612. bus->devnum_next);
  1613. if (devnum >= 128)
  1614. devnum = find_next_zero_bit(bus->devmap.devicemap,
  1615. 128, 1);
  1616. bus->devnum_next = ( devnum >= 127 ? 1 : devnum + 1);
  1617. }
  1618. if (devnum < 128) {
  1619. set_bit(devnum, bus->devmap.devicemap);
  1620. udev->devnum = devnum;
  1621. }
  1622. }
  1623. static void release_devnum(struct usb_device *udev)
  1624. {
  1625. if (udev->devnum > 0) {
  1626. clear_bit(udev->devnum, udev->bus->devmap.devicemap);
  1627. udev->devnum = -1;
  1628. }
  1629. }
  1630. static void update_devnum(struct usb_device *udev, int devnum)
  1631. {
  1632. /* The address for a WUSB device is managed by wusbcore. */
  1633. if (!udev->wusb)
  1634. udev->devnum = devnum;
  1635. }
  1636. static void hub_free_dev(struct usb_device *udev)
  1637. {
  1638. struct usb_hcd *hcd = bus_to_hcd(udev->bus);
  1639. /* Root hubs aren't real devices, so don't free HCD resources */
  1640. if (hcd->driver->free_dev && udev->parent)
  1641. hcd->driver->free_dev(hcd, udev);
  1642. }
  1643. /**
  1644. * usb_disconnect - disconnect a device (usbcore-internal)
  1645. * @pdev: pointer to device being disconnected
  1646. * Context: !in_interrupt ()
  1647. *
  1648. * Something got disconnected. Get rid of it and all of its children.
  1649. *
  1650. * If *pdev is a normal device then the parent hub must already be locked.
  1651. * If *pdev is a root hub then this routine will acquire the
  1652. * usb_bus_list_lock on behalf of the caller.
  1653. *
  1654. * Only hub drivers (including virtual root hub drivers for host
  1655. * controllers) should ever call this.
  1656. *
  1657. * This call is synchronous, and may not be used in an interrupt context.
  1658. */
  1659. void usb_disconnect(struct usb_device **pdev)
  1660. {
  1661. struct usb_device *udev = *pdev;
  1662. int i;
  1663. /* mark the device as inactive, so any further urb submissions for
  1664. * this device (and any of its children) will fail immediately.
  1665. * this quiesces everything except pending urbs.
  1666. */
  1667. usb_set_device_state(udev, USB_STATE_NOTATTACHED);
  1668. dev_info(&udev->dev, "USB disconnect, device number %d\n",
  1669. udev->devnum);
  1670. usb_lock_device(udev);
  1671. /* Free up all the children before we remove this device */
  1672. for (i = 0; i < udev->maxchild; i++) {
  1673. if (udev->children[i])
  1674. usb_disconnect(&udev->children[i]);
  1675. }
  1676. /* deallocate hcd/hardware state ... nuking all pending urbs and
  1677. * cleaning up all state associated with the current configuration
  1678. * so that the hardware is now fully quiesced.
  1679. */
  1680. dev_dbg (&udev->dev, "unregistering device\n");
  1681. usb_disable_device(udev, 0);
  1682. usb_hcd_synchronize_unlinks(udev);
  1683. usb_remove_ep_devs(&udev->ep0);
  1684. usb_unlock_device(udev);
  1685. /* Unregister the device. The device driver is responsible
  1686. * for de-configuring the device and invoking the remove-device
  1687. * notifier chain (used by usbfs and possibly others).
  1688. */
  1689. device_del(&udev->dev);
  1690. /* Free the device number and delete the parent's children[]
  1691. * (or root_hub) pointer.
  1692. */
  1693. release_devnum(udev);
  1694. /* Avoid races with recursively_mark_NOTATTACHED() */
  1695. spin_lock_irq(&device_state_lock);
  1696. *pdev = NULL;
  1697. spin_unlock_irq(&device_state_lock);
  1698. hub_free_dev(udev);
  1699. put_device(&udev->dev);
  1700. }
  1701. #ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
  1702. static void show_string(struct usb_device *udev, char *id, char *string)
  1703. {
  1704. if (!string)
  1705. return;
  1706. dev_printk(KERN_INFO, &udev->dev, "%s: %s\n", id, string);
  1707. }
  1708. static void announce_device(struct usb_device *udev)
  1709. {
  1710. dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
  1711. le16_to_cpu(udev->descriptor.idVendor),
  1712. le16_to_cpu(udev->descriptor.idProduct));
  1713. dev_info(&udev->dev,
  1714. "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
  1715. udev->descriptor.iManufacturer,
  1716. udev->descriptor.iProduct,
  1717. udev->descriptor.iSerialNumber);
  1718. show_string(udev, "Product", udev->product);
  1719. show_string(udev, "Manufacturer", udev->manufacturer);
  1720. show_string(udev, "SerialNumber", udev->serial);
  1721. }
  1722. #else
  1723. static inline void announce_device(struct usb_device *udev) { }
  1724. #endif
  1725. #ifdef CONFIG_USB_OTG
  1726. #include "otg_whitelist.h"
  1727. #endif
  1728. /**
  1729. * usb_enumerate_device_otg - FIXME (usbcore-internal)
  1730. * @udev: newly addressed device (in ADDRESS state)
  1731. *
  1732. * Finish enumeration for On-The-Go devices
  1733. */
  1734. static int usb_enumerate_device_otg(struct usb_device *udev)
  1735. {
  1736. int err = 0;
  1737. #ifdef CONFIG_USB_OTG
  1738. /*
  1739. * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
  1740. * to wake us after we've powered off VBUS; and HNP, switching roles
  1741. * "host" to "peripheral". The OTG descriptor helps figure this out.
  1742. */
  1743. if (!udev->bus->is_b_host
  1744. && udev->config
  1745. && udev->parent == udev->bus->root_hub) {
  1746. struct usb_otg_descriptor *desc = NULL;
  1747. struct usb_bus *bus = udev->bus;
  1748. /* descriptor may appear anywhere in config */
  1749. if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
  1750. le16_to_cpu(udev->config[0].desc.wTotalLength),
  1751. USB_DT_OTG, (void **) &desc) == 0) {
  1752. if (desc->bmAttributes & USB_OTG_HNP) {
  1753. unsigned port1 = udev->portnum;
  1754. dev_info(&udev->dev,
  1755. "Dual-Role OTG device on %sHNP port\n",
  1756. (port1 == bus->otg_port)
  1757. ? "" : "non-");
  1758. /* enable HNP before suspend, it's simpler */
  1759. if (port1 == bus->otg_port)
  1760. bus->b_hnp_enable = 1;
  1761. err = usb_control_msg(udev,
  1762. usb_sndctrlpipe(udev, 0),
  1763. USB_REQ_SET_FEATURE, 0,
  1764. bus->b_hnp_enable
  1765. ? USB_DEVICE_B_HNP_ENABLE
  1766. : USB_DEVICE_A_ALT_HNP_SUPPORT,
  1767. 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
  1768. if (err < 0) {
  1769. /* OTG MESSAGE: report errors here,
  1770. * customize to match your product.
  1771. */
  1772. dev_info(&udev->dev,
  1773. "can't set HNP mode: %d\n",
  1774. err);
  1775. bus->b_hnp_enable = 0;
  1776. }
  1777. }
  1778. }
  1779. }
  1780. if (!is_targeted(udev)) {
  1781. /* Maybe it can talk to us, though we can't talk to it.
  1782. * (Includes HNP test device.)
  1783. */
  1784. if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
  1785. err = usb_port_suspend(udev, PMSG_SUSPEND);
  1786. if (err < 0)
  1787. dev_dbg(&udev->dev, "HNP fail, %d\n", err);
  1788. }
  1789. err = -ENOTSUPP;
  1790. goto fail;
  1791. }
  1792. fail:
  1793. #endif
  1794. return err;
  1795. }
  1796. /**
  1797. * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
  1798. * @udev: newly addressed device (in ADDRESS state)
  1799. *
  1800. * This is only called by usb_new_device() and usb_authorize_device()
  1801. * and FIXME -- all comments that apply to them apply here wrt to
  1802. * environment.
  1803. *
  1804. * If the device is WUSB and not authorized, we don't attempt to read
  1805. * the string descriptors, as they will be errored out by the device
  1806. * until it has been authorized.
  1807. */
  1808. static int usb_enumerate_device(struct usb_device *udev)
  1809. {
  1810. int err;
  1811. if (udev->config == NULL) {
  1812. err = usb_get_configuration(udev);
  1813. if (err < 0) {
  1814. dev_err(&udev->dev, "can't read configurations, error %d\n",
  1815. err);
  1816. goto fail;
  1817. }
  1818. }
  1819. if (udev->wusb == 1 && udev->authorized == 0) {
  1820. udev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1821. udev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1822. udev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1823. }
  1824. else {
  1825. /* read the standard strings and cache them if present */
  1826. udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
  1827. udev->manufacturer = usb_cache_string(udev,
  1828. udev->descriptor.iManufacturer);
  1829. udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
  1830. }
  1831. err = usb_enumerate_device_otg(udev);
  1832. fail:
  1833. return err;
  1834. }
  1835. static void set_usb_port_removable(struct usb_device *udev)
  1836. {
  1837. struct usb_device *hdev = udev->parent;
  1838. struct usb_hub *hub;
  1839. u8 port = udev->portnum;
  1840. u16 wHubCharacteristics;
  1841. bool removable = true;
  1842. if (!hdev)
  1843. return;
  1844. hub = hdev_to_hub(udev->parent);
  1845. wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
  1846. if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
  1847. return;
  1848. if (hub_is_superspeed(hdev)) {
  1849. if (hub->descriptor->u.ss.DeviceRemovable & (1 << port))
  1850. removable = false;
  1851. } else {
  1852. if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
  1853. removable = false;
  1854. }
  1855. if (removable)
  1856. udev->removable = USB_DEVICE_REMOVABLE;
  1857. else
  1858. udev->removable = USB_DEVICE_FIXED;
  1859. }
  1860. /**
  1861. * usb_new_device - perform initial device setup (usbcore-internal)
  1862. * @udev: newly addressed device (in ADDRESS state)
  1863. *
  1864. * This is called with devices which have been detected but not fully
  1865. * enumerated. The device descriptor is available, but not descriptors
  1866. * for any device configuration. The caller must have locked either
  1867. * the parent hub (if udev is a normal device) or else the
  1868. * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
  1869. * udev has already been installed, but udev is not yet visible through
  1870. * sysfs or other filesystem code.
  1871. *
  1872. * It will return if the device is configured properly or not. Zero if
  1873. * the interface was registered with the driver core; else a negative
  1874. * errno value.
  1875. *
  1876. * This call is synchronous, and may not be used in an interrupt context.
  1877. *
  1878. * Only the hub driver or root-hub registrar should ever call this.
  1879. */
  1880. int usb_new_device(struct usb_device *udev)
  1881. {
  1882. int err;
  1883. if (udev->parent) {
  1884. /* Initialize non-root-hub device wakeup to disabled;
  1885. * device (un)configuration controls wakeup capable
  1886. * sysfs power/wakeup controls wakeup enabled/disabled
  1887. */
  1888. device_init_wakeup(&udev->dev, 0);
  1889. }
  1890. /* Tell the runtime-PM framework the device is active */
  1891. pm_runtime_set_active(&udev->dev);
  1892. pm_runtime_get_noresume(&udev->dev);
  1893. pm_runtime_use_autosuspend(&udev->dev);
  1894. pm_runtime_enable(&udev->dev);
  1895. /* By default, forbid autosuspend for all devices. It will be
  1896. * allowed for hubs during binding.
  1897. */
  1898. usb_disable_autosuspend(udev);
  1899. err = usb_enumerate_device(udev); /* Read descriptors */
  1900. if (err < 0)
  1901. goto fail;
  1902. dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
  1903. udev->devnum, udev->bus->busnum,
  1904. (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
  1905. /* export the usbdev device-node for libusb */
  1906. udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
  1907. (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
  1908. /* Tell the world! */
  1909. announce_device(udev);
  1910. device_enable_async_suspend(&udev->dev);
  1911. /*
  1912. * check whether the hub marks this port as non-removable. Do it
  1913. * now so that platform-specific data can override it in
  1914. * device_add()
  1915. */
  1916. if (udev->parent)
  1917. set_usb_port_removable(udev);
  1918. /* Register the device. The device driver is responsible
  1919. * for configuring the device and invoking the add-device
  1920. * notifier chain (used by usbfs and possibly others).
  1921. */
  1922. err = device_add(&udev->dev);
  1923. if (err) {
  1924. dev_err(&udev->dev, "can't device_add, error %d\n", err);
  1925. goto fail;
  1926. }
  1927. (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
  1928. usb_mark_last_busy(udev);
  1929. pm_runtime_put_sync_autosuspend(&udev->dev);
  1930. return err;
  1931. fail:
  1932. usb_set_device_state(udev, USB_STATE_NOTATTACHED);
  1933. pm_runtime_disable(&udev->dev);
  1934. pm_runtime_set_suspended(&udev->dev);
  1935. return err;
  1936. }
  1937. /**
  1938. * usb_deauthorize_device - deauthorize a device (usbcore-internal)
  1939. * @usb_dev: USB device
  1940. *
  1941. * Move the USB device to a very basic state where interfaces are disabled
  1942. * and the device is in fact unconfigured and unusable.
  1943. *
  1944. * We share a lock (that we have) with device_del(), so we need to
  1945. * defer its call.
  1946. */
  1947. int usb_deauthorize_device(struct usb_device *usb_dev)
  1948. {
  1949. usb_lock_device(usb_dev);
  1950. if (usb_dev->authorized == 0)
  1951. goto out_unauthorized;
  1952. usb_dev->authorized = 0;
  1953. usb_set_configuration(usb_dev, -1);
  1954. kfree(usb_dev->product);
  1955. usb_dev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1956. kfree(usb_dev->manufacturer);
  1957. usb_dev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1958. kfree(usb_dev->serial);
  1959. usb_dev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1960. usb_destroy_configuration(usb_dev);
  1961. usb_dev->descriptor.bNumConfigurations = 0;
  1962. out_unauthorized:
  1963. usb_unlock_device(usb_dev);
  1964. return 0;
  1965. }
  1966. int usb_authorize_device(struct usb_device *usb_dev)
  1967. {
  1968. int result = 0, c;
  1969. usb_lock_device(usb_dev);
  1970. if (usb_dev->authorized == 1)
  1971. goto out_authorized;
  1972. result = usb_autoresume_device(usb_dev);
  1973. if (result < 0) {
  1974. dev_err(&usb_dev->dev,
  1975. "can't autoresume for authorization: %d\n", result);
  1976. goto error_autoresume;
  1977. }
  1978. result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
  1979. if (result < 0) {
  1980. dev_err(&usb_dev->dev, "can't re-read device descriptor for "
  1981. "authorization: %d\n", result);
  1982. goto error_device_descriptor;
  1983. }
  1984. kfree(usb_dev->product);
  1985. usb_dev->product = NULL;
  1986. kfree(usb_dev->manufacturer);
  1987. usb_dev->manufacturer = NULL;
  1988. kfree(usb_dev->serial);
  1989. usb_dev->serial = NULL;
  1990. usb_dev->authorized = 1;
  1991. result = usb_enumerate_device(usb_dev);
  1992. if (result < 0)
  1993. goto error_enumerate;
  1994. /* Choose and set the configuration. This registers the interfaces
  1995. * with the driver core and lets interface drivers bind to them.
  1996. */
  1997. c = usb_choose_configuration(usb_dev);
  1998. if (c >= 0) {
  1999. result = usb_set_configuration(usb_dev, c);
  2000. if (result) {
  2001. dev_err(&usb_dev->dev,
  2002. "can't set config #%d, error %d\n", c, result);
  2003. /* This need not be fatal. The user can try to
  2004. * set other configurations. */
  2005. }
  2006. }
  2007. dev_info(&usb_dev->dev, "authorized to connect\n");
  2008. error_enumerate:
  2009. error_device_descriptor:
  2010. usb_autosuspend_device(usb_dev);
  2011. error_autoresume:
  2012. out_authorized:
  2013. usb_unlock_device(usb_dev); // complements locktree
  2014. return result;
  2015. }
  2016. /* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
  2017. static unsigned hub_is_wusb(struct usb_hub *hub)
  2018. {
  2019. struct usb_hcd *hcd;
  2020. if (hub->hdev->parent != NULL) /* not a root hub? */
  2021. return 0;
  2022. hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
  2023. return hcd->wireless;
  2024. }
  2025. #define PORT_RESET_TRIES 5
  2026. #define SET_ADDRESS_TRIES 2
  2027. #define GET_DESCRIPTOR_TRIES 2
  2028. #define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
  2029. #define USE_NEW_SCHEME(i) ((i) / 2 == (int)old_scheme_first)
  2030. #define HUB_ROOT_RESET_TIME 50 /* times are in msec */
  2031. #define HUB_SHORT_RESET_TIME 10
  2032. #define HUB_BH_RESET_TIME 50
  2033. #define HUB_LONG_RESET_TIME 200
  2034. #define HUB_RESET_TIMEOUT 500
  2035. static int hub_port_reset(struct usb_hub *hub, int port1,
  2036. struct usb_device *udev, unsigned int delay, bool warm);
  2037. /* Is a USB 3.0 port in the Inactive or Complinance Mode state?
  2038. * Port worm reset is required to recover
  2039. */
  2040. static bool hub_port_warm_reset_required(struct usb_hub *hub, u16 portstatus)
  2041. {
  2042. return hub_is_superspeed(hub->hdev) &&
  2043. (((portstatus & USB_PORT_STAT_LINK_STATE) ==
  2044. USB_SS_PORT_LS_SS_INACTIVE) ||
  2045. ((portstatus & USB_PORT_STAT_LINK_STATE) ==
  2046. USB_SS_PORT_LS_COMP_MOD)) ;
  2047. }
  2048. static int hub_port_wait_reset(struct usb_hub *hub, int port1,
  2049. struct usb_device *udev, unsigned int delay, bool warm)
  2050. {
  2051. int delay_time, ret;
  2052. u16 portstatus;
  2053. u16 portchange;
  2054. for (delay_time = 0;
  2055. delay_time < HUB_RESET_TIMEOUT;
  2056. delay_time += delay) {
  2057. /* wait to give the device a chance to reset */
  2058. msleep(delay);
  2059. /* read and decode port status */
  2060. ret = hub_port_status(hub, port1, &portstatus, &portchange);
  2061. if (ret < 0)
  2062. return ret;
  2063. /*
  2064. * Some buggy devices require a warm reset to be issued even
  2065. * when the port appears not to be connected.
  2066. */
  2067. if (!warm) {
  2068. /*
  2069. * Some buggy devices can cause an NEC host controller
  2070. * to transition to the "Error" state after a hot port
  2071. * reset. This will show up as the port state in
  2072. * "Inactive", and the port may also report a
  2073. * disconnect. Forcing a warm port reset seems to make
  2074. * the device work.
  2075. *
  2076. * See https://bugzilla.kernel.org/show_bug.cgi?id=41752
  2077. */
  2078. if (hub_port_warm_reset_required(hub, portstatus)) {
  2079. int ret;
  2080. if ((portchange & USB_PORT_STAT_C_CONNECTION))
  2081. clear_port_feature(hub->hdev, port1,
  2082. USB_PORT_FEAT_C_CONNECTION);
  2083. if (portchange & USB_PORT_STAT_C_LINK_STATE)
  2084. clear_port_feature(hub->hdev, port1,
  2085. USB_PORT_FEAT_C_PORT_LINK_STATE);
  2086. if (portchange & USB_PORT_STAT_C_RESET)
  2087. clear_port_feature(hub->hdev, port1,
  2088. USB_PORT_FEAT_C_RESET);
  2089. dev_dbg(hub->intfdev, "hot reset failed, warm reset port %d\n",
  2090. port1);
  2091. ret = hub_port_reset(hub, port1,
  2092. udev, HUB_BH_RESET_TIME,
  2093. true);
  2094. if ((portchange & USB_PORT_STAT_C_CONNECTION))
  2095. clear_port_feature(hub->hdev, port1,
  2096. USB_PORT_FEAT_C_CONNECTION);
  2097. return ret;
  2098. }
  2099. /* Device went away? */
  2100. if (!(portstatus & USB_PORT_STAT_CONNECTION))
  2101. return -ENOTCONN;
  2102. /* bomb out completely if the connection bounced */
  2103. if ((portchange & USB_PORT_STAT_C_CONNECTION))
  2104. return -ENOTCONN;
  2105. /* if we`ve finished resetting, then break out of
  2106. * the loop
  2107. */
  2108. if (!(portstatus & USB_PORT_STAT_RESET) &&
  2109. (portstatus & USB_PORT_STAT_ENABLE)) {
  2110. if (hub_is_wusb(hub))
  2111. udev->speed = USB_SPEED_WIRELESS;
  2112. else if (hub_is_superspeed(hub->hdev))
  2113. udev->speed = USB_SPEED_SUPER;
  2114. else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
  2115. udev->speed = USB_SPEED_HIGH;
  2116. else if (portstatus & USB_PORT_STAT_LOW_SPEED)
  2117. udev->speed = USB_SPEED_LOW;
  2118. else
  2119. udev->speed = USB_SPEED_FULL;
  2120. return 0;
  2121. }
  2122. } else {
  2123. if (portchange & USB_PORT_STAT_C_BH_RESET)
  2124. return 0;
  2125. }
  2126. /* switch to the long delay after two short delay failures */
  2127. if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
  2128. delay = HUB_LONG_RESET_TIME;
  2129. dev_dbg (hub->intfdev,
  2130. "port %d not %sreset yet, waiting %dms\n",
  2131. port1, warm ? "warm " : "", delay);
  2132. }
  2133. return -EBUSY;
  2134. }
  2135. static void hub_port_finish_reset(struct usb_hub *hub, int port1,
  2136. struct usb_device *udev, int *status, bool warm)
  2137. {
  2138. switch (*status) {
  2139. case 0:
  2140. if (!warm) {
  2141. struct usb_hcd *hcd;
  2142. /* TRSTRCY = 10 ms; plus some extra */
  2143. msleep(10 + 40);
  2144. update_devnum(udev, 0);
  2145. hcd = bus_to_hcd(udev->bus);
  2146. if (hcd->driver->reset_device) {
  2147. *status = hcd->driver->reset_device(hcd, udev);
  2148. if (*status < 0) {
  2149. dev_err(&udev->dev, "Cannot reset "
  2150. "HCD device state\n");
  2151. break;
  2152. }
  2153. }
  2154. }
  2155. /* FALL THROUGH */
  2156. case -ENOTCONN:
  2157. case -ENODEV:
  2158. clear_port_feature(hub->hdev,
  2159. port1, USB_PORT_FEAT_C_RESET);
  2160. /* FIXME need disconnect() for NOTATTACHED device */
  2161. if (warm) {
  2162. clear_port_feature(hub->hdev, port1,
  2163. USB_PORT_FEAT_C_BH_PORT_RESET);
  2164. clear_port_feature(hub->hdev, port1,
  2165. USB_PORT_FEAT_C_PORT_LINK_STATE);
  2166. } else {
  2167. usb_set_device_state(udev, *status
  2168. ? USB_STATE_NOTATTACHED
  2169. : USB_STATE_DEFAULT);
  2170. }
  2171. break;
  2172. }
  2173. }
  2174. /* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
  2175. static int hub_port_reset(struct usb_hub *hub, int port1,
  2176. struct usb_device *udev, unsigned int delay, bool warm)
  2177. {
  2178. int i, status;
  2179. if (!warm) {
  2180. /* Block EHCI CF initialization during the port reset.
  2181. * Some companion controllers don't like it when they mix.
  2182. */
  2183. down_read(&ehci_cf_port_reset_rwsem);
  2184. } else {
  2185. if (!hub_is_superspeed(hub->hdev)) {
  2186. dev_err(hub->intfdev, "only USB3 hub support "
  2187. "warm reset\n");
  2188. return -EINVAL;
  2189. }
  2190. }
  2191. /* Reset the port */
  2192. for (i = 0; i < PORT_RESET_TRIES; i++) {
  2193. status = set_port_feature(hub->hdev, port1, (warm ?
  2194. USB_PORT_FEAT_BH_PORT_RESET :
  2195. USB_PORT_FEAT_RESET));
  2196. if (status) {
  2197. dev_err(hub->intfdev,
  2198. "cannot %sreset port %d (err = %d)\n",
  2199. warm ? "warm " : "", port1, status);
  2200. } else {
  2201. status = hub_port_wait_reset(hub, port1, udev, delay,
  2202. warm);
  2203. if (status && status != -ENOTCONN)
  2204. dev_dbg(hub->intfdev,
  2205. "port_wait_reset: err = %d\n",
  2206. status);
  2207. }
  2208. /* return on disconnect or reset */
  2209. if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
  2210. hub_port_finish_reset(hub, port1, udev, &status, warm);
  2211. goto done;
  2212. }
  2213. dev_dbg (hub->intfdev,
  2214. "port %d not enabled, trying %sreset again...\n",
  2215. port1, warm ? "warm " : "");
  2216. delay = HUB_LONG_RESET_TIME;
  2217. }
  2218. dev_err (hub->intfdev,
  2219. "Cannot enable port %i. Maybe the USB cable is bad?\n",
  2220. port1);
  2221. done:
  2222. if (!warm)
  2223. up_read(&ehci_cf_port_reset_rwsem);
  2224. return status;
  2225. }
  2226. /* Check if a port is power on */
  2227. static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
  2228. {
  2229. int ret = 0;
  2230. if (hub_is_superspeed(hub->hdev)) {
  2231. if (portstatus & USB_SS_PORT_STAT_POWER)
  2232. ret = 1;
  2233. } else {
  2234. if (portstatus & USB_PORT_STAT_POWER)
  2235. ret = 1;
  2236. }
  2237. return ret;
  2238. }
  2239. #ifdef CONFIG_PM
  2240. /* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
  2241. static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
  2242. {
  2243. int ret = 0;
  2244. if (hub_is_superspeed(hub->hdev)) {
  2245. if ((portstatus & USB_PORT_STAT_LINK_STATE)
  2246. == USB_SS_PORT_LS_U3)
  2247. ret = 1;
  2248. } else {
  2249. if (portstatus & USB_PORT_STAT_SUSPEND)
  2250. ret = 1;
  2251. }
  2252. return ret;
  2253. }
  2254. /* Determine whether the device on a port is ready for a normal resume,
  2255. * is ready for a reset-resume, or should be disconnected.
  2256. */
  2257. static int check_port_resume_type(struct usb_device *udev,
  2258. struct usb_hub *hub, int port1,
  2259. int status, unsigned portchange, unsigned portstatus)
  2260. {
  2261. /* Is the device still present? */
  2262. if (status || port_is_suspended(hub, portstatus) ||
  2263. !port_is_power_on(hub, portstatus) ||
  2264. !(portstatus & USB_PORT_STAT_CONNECTION)) {
  2265. if (status >= 0)
  2266. status = -ENODEV;
  2267. }
  2268. /* Can't do a normal resume if the port isn't enabled,
  2269. * so try a reset-resume instead.
  2270. */
  2271. else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
  2272. if (udev->persist_enabled)
  2273. udev->reset_resume = 1;
  2274. else
  2275. status = -ENODEV;
  2276. }
  2277. if (status) {
  2278. dev_dbg(hub->intfdev,
  2279. "port %d status %04x.%04x after resume, %d\n",
  2280. port1, portchange, portstatus, status);
  2281. } else if (udev->reset_resume) {
  2282. /* Late port handoff can set status-change bits */
  2283. if (portchange & USB_PORT_STAT_C_CONNECTION)
  2284. clear_port_feature(hub->hdev, port1,
  2285. USB_PORT_FEAT_C_CONNECTION);
  2286. if (portchange & USB_PORT_STAT_C_ENABLE)
  2287. clear_port_feature(hub->hdev, port1,
  2288. USB_PORT_FEAT_C_ENABLE);
  2289. }
  2290. return status;
  2291. }
  2292. #ifdef CONFIG_USB_SUSPEND
  2293. /*
  2294. * usb_port_suspend - suspend a usb device's upstream port
  2295. * @udev: device that's no longer in active use, not a root hub
  2296. * Context: must be able to sleep; device not locked; pm locks held
  2297. *
  2298. * Suspends a USB device that isn't in active use, conserving power.
  2299. * Devices may wake out of a suspend, if anything important happens,
  2300. * using the remote wakeup mechanism. They may also be taken out of
  2301. * suspend by the host, using usb_port_resume(). It's also routine
  2302. * to disconnect devices while they are suspended.
  2303. *
  2304. * This only affects the USB hardware for a device; its interfaces
  2305. * (and, for hubs, child devices) must already have been suspended.
  2306. *
  2307. * Selective port suspend reduces power; most suspended devices draw
  2308. * less than 500 uA. It's also used in OTG, along with remote wakeup.
  2309. * All devices below the suspended port are also suspended.
  2310. *
  2311. * Devices leave suspend state when the host wakes them up. Some devices
  2312. * also support "remote wakeup", where the device can activate the USB
  2313. * tree above them to deliver data, such as a keypress or packet. In
  2314. * some cases, this wakes the USB host.
  2315. *
  2316. * Suspending OTG devices may trigger HNP, if that's been enabled
  2317. * between a pair of dual-role devices. That will change roles, such
  2318. * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
  2319. *
  2320. * Devices on USB hub ports have only one "suspend" state, corresponding
  2321. * to ACPI D2, "may cause the device to lose some context".
  2322. * State transitions include:
  2323. *
  2324. * - suspend, resume ... when the VBUS power link stays live
  2325. * - suspend, disconnect ... VBUS lost
  2326. *
  2327. * Once VBUS drop breaks the circuit, the port it's using has to go through
  2328. * normal re-enumeration procedures, starting with enabling VBUS power.
  2329. * Other than re-initializing the hub (plug/unplug, except for root hubs),
  2330. * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
  2331. * timer, no SRP, no requests through sysfs.
  2332. *
  2333. * If CONFIG_USB_SUSPEND isn't enabled, devices only really suspend when
  2334. * the root hub for their bus goes into global suspend ... so we don't
  2335. * (falsely) update the device power state to say it suspended.
  2336. *
  2337. * Returns 0 on success, else negative errno.
  2338. */
  2339. int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
  2340. {
  2341. struct usb_hub *hub = hdev_to_hub(udev->parent);
  2342. int port1 = udev->portnum;
  2343. int status;
  2344. /* enable remote wakeup when appropriate; this lets the device
  2345. * wake up the upstream hub (including maybe the root hub).
  2346. *
  2347. * NOTE: OTG devices may issue remote wakeup (or SRP) even when
  2348. * we don't explicitly enable it here.
  2349. */
  2350. if (udev->do_remote_wakeup) {
  2351. if (!hub_is_superspeed(hub->hdev)) {
  2352. status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  2353. USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
  2354. USB_DEVICE_REMOTE_WAKEUP, 0,
  2355. NULL, 0,
  2356. USB_CTRL_SET_TIMEOUT);
  2357. } else {
  2358. /* Assume there's only one function on the USB 3.0
  2359. * device and enable remote wake for the first
  2360. * interface. FIXME if the interface association
  2361. * descriptor shows there's more than one function.
  2362. */
  2363. status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  2364. USB_REQ_SET_FEATURE,
  2365. USB_RECIP_INTERFACE,
  2366. USB_INTRF_FUNC_SUSPEND,
  2367. USB_INTRF_FUNC_SUSPEND_RW |
  2368. USB_INTRF_FUNC_SUSPEND_LP,
  2369. NULL, 0,
  2370. USB_CTRL_SET_TIMEOUT);
  2371. }
  2372. if (status) {
  2373. dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
  2374. status);
  2375. /* bail if autosuspend is requested */
  2376. if (PMSG_IS_AUTO(msg))
  2377. return status;
  2378. }
  2379. }
  2380. /* disable USB2 hardware LPM */
  2381. if (udev->usb2_hw_lpm_enabled == 1)
  2382. usb_set_usb2_hardware_lpm(udev, 0);
  2383. if (usb_unlocked_disable_lpm(udev)) {
  2384. dev_err(&udev->dev, "%s Failed to disable LPM before suspend\n.",
  2385. __func__);
  2386. return -ENOMEM;
  2387. }
  2388. /* see 7.1.7.6 */
  2389. if (hub_is_superspeed(hub->hdev))
  2390. status = set_port_feature(hub->hdev,
  2391. port1 | (USB_SS_PORT_LS_U3 << 3),
  2392. USB_PORT_FEAT_LINK_STATE);
  2393. else
  2394. status = set_port_feature(hub->hdev, port1,
  2395. USB_PORT_FEAT_SUSPEND);
  2396. if (status) {
  2397. dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n",
  2398. port1, status);
  2399. /* paranoia: "should not happen" */
  2400. if (udev->do_remote_wakeup)
  2401. (void) usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  2402. USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
  2403. USB_DEVICE_REMOTE_WAKEUP, 0,
  2404. NULL, 0,
  2405. USB_CTRL_SET_TIMEOUT);
  2406. /* Try to enable USB2 hardware LPM again */
  2407. if (udev->usb2_hw_lpm_capable == 1)
  2408. usb_set_usb2_hardware_lpm(udev, 1);
  2409. /* Try to enable USB3 LPM again */
  2410. usb_unlocked_enable_lpm(udev);
  2411. /* System sleep transitions should never fail */
  2412. if (!PMSG_IS_AUTO(msg))
  2413. status = 0;
  2414. } else {
  2415. /* device has up to 10 msec to fully suspend */
  2416. dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
  2417. (PMSG_IS_AUTO(msg) ? "auto-" : ""),
  2418. udev->do_remote_wakeup);
  2419. usb_set_device_state(udev, USB_STATE_SUSPENDED);
  2420. msleep(10);
  2421. }
  2422. usb_mark_last_busy(hub->hdev);
  2423. return status;
  2424. }
  2425. /*
  2426. * If the USB "suspend" state is in use (rather than "global suspend"),
  2427. * many devices will be individually taken out of suspend state using
  2428. * special "resume" signaling. This routine kicks in shortly after
  2429. * hardware resume signaling is finished, either because of selective
  2430. * resume (by host) or remote wakeup (by device) ... now see what changed
  2431. * in the tree that's rooted at this device.
  2432. *
  2433. * If @udev->reset_resume is set then the device is reset before the
  2434. * status check is done.
  2435. */
  2436. static int finish_port_resume(struct usb_device *udev)
  2437. {
  2438. int status = 0;
  2439. u16 devstatus;
  2440. /* caller owns the udev device lock */
  2441. dev_dbg(&udev->dev, "%s\n",
  2442. udev->reset_resume ? "finish reset-resume" : "finish resume");
  2443. /* usb ch9 identifies four variants of SUSPENDED, based on what
  2444. * state the device resumes to. Linux currently won't see the
  2445. * first two on the host side; they'd be inside hub_port_init()
  2446. * during many timeouts, but khubd can't suspend until later.
  2447. */
  2448. usb_set_device_state(udev, udev->actconfig
  2449. ? USB_STATE_CONFIGURED
  2450. : USB_STATE_ADDRESS);
  2451. /* 10.5.4.5 says not to reset a suspended port if the attached
  2452. * device is enabled for remote wakeup. Hence the reset
  2453. * operation is carried out here, after the port has been
  2454. * resumed.
  2455. */
  2456. if (udev->reset_resume)
  2457. retry_reset_resume:
  2458. status = usb_reset_and_verify_device(udev);
  2459. /* 10.5.4.5 says be sure devices in the tree are still there.
  2460. * For now let's assume the device didn't go crazy on resume,
  2461. * and device drivers will know about any resume quirks.
  2462. */
  2463. if (status == 0) {
  2464. devstatus = 0;
  2465. status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
  2466. if (status >= 0)
  2467. status = (status > 0 ? 0 : -ENODEV);
  2468. /* If a normal resume failed, try doing a reset-resume */
  2469. if (status && !udev->reset_resume && udev->persist_enabled) {
  2470. dev_dbg(&udev->dev, "retry with reset-resume\n");
  2471. udev->reset_resume = 1;
  2472. goto retry_reset_resume;
  2473. }
  2474. }
  2475. if (status) {
  2476. dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
  2477. status);
  2478. } else if (udev->actconfig) {
  2479. le16_to_cpus(&devstatus);
  2480. if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP)) {
  2481. status = usb_control_msg(udev,
  2482. usb_sndctrlpipe(udev, 0),
  2483. USB_REQ_CLEAR_FEATURE,
  2484. USB_RECIP_DEVICE,
  2485. USB_DEVICE_REMOTE_WAKEUP, 0,
  2486. NULL, 0,
  2487. USB_CTRL_SET_TIMEOUT);
  2488. if (status)
  2489. dev_dbg(&udev->dev,
  2490. "disable remote wakeup, status %d\n",
  2491. status);
  2492. }
  2493. status = 0;
  2494. }
  2495. return status;
  2496. }
  2497. /*
  2498. * usb_port_resume - re-activate a suspended usb device's upstream port
  2499. * @udev: device to re-activate, not a root hub
  2500. * Context: must be able to sleep; device not locked; pm locks held
  2501. *
  2502. * This will re-activate the suspended device, increasing power usage
  2503. * while letting drivers communicate again with its endpoints.
  2504. * USB resume explicitly guarantees that the power session between
  2505. * the host and the device is the same as it was when the device
  2506. * suspended.
  2507. *
  2508. * If @udev->reset_resume is set then this routine won't check that the
  2509. * port is still enabled. Furthermore, finish_port_resume() above will
  2510. * reset @udev. The end result is that a broken power session can be
  2511. * recovered and @udev will appear to persist across a loss of VBUS power.
  2512. *
  2513. * For example, if a host controller doesn't maintain VBUS suspend current
  2514. * during a system sleep or is reset when the system wakes up, all the USB
  2515. * power sessions below it will be broken. This is especially troublesome
  2516. * for mass-storage devices containing mounted filesystems, since the
  2517. * device will appear to have disconnected and all the memory mappings
  2518. * to it will be lost. Using the USB_PERSIST facility, the device can be
  2519. * made to appear as if it had not disconnected.
  2520. *
  2521. * This facility can be dangerous. Although usb_reset_and_verify_device() makes
  2522. * every effort to insure that the same device is present after the
  2523. * reset as before, it cannot provide a 100% guarantee. Furthermore it's
  2524. * quite possible for a device to remain unaltered but its media to be
  2525. * changed. If the user replaces a flash memory card while the system is
  2526. * asleep, he will have only himself to blame when the filesystem on the
  2527. * new card is corrupted and the system crashes.
  2528. *
  2529. * Returns 0 on success, else negative errno.
  2530. */
  2531. int usb_port_resume(struct usb_device *udev, pm_message_t msg)
  2532. {
  2533. struct usb_hub *hub = hdev_to_hub(udev->parent);
  2534. int port1 = udev->portnum;
  2535. int status;
  2536. u16 portchange, portstatus;
  2537. /* Skip the initial Clear-Suspend step for a remote wakeup */
  2538. status = hub_port_status(hub, port1, &portstatus, &portchange);
  2539. if (status == 0 && !port_is_suspended(hub, portstatus))
  2540. goto SuspendCleared;
  2541. // dev_dbg(hub->intfdev, "resume port %d\n", port1);
  2542. set_bit(port1, hub->busy_bits);
  2543. /* see 7.1.7.7; affects power usage, but not budgeting */
  2544. if (hub_is_superspeed(hub->hdev))
  2545. status = set_port_feature(hub->hdev,
  2546. port1 | (USB_SS_PORT_LS_U0 << 3),
  2547. USB_PORT_FEAT_LINK_STATE);
  2548. else
  2549. status = clear_port_feature(hub->hdev,
  2550. port1, USB_PORT_FEAT_SUSPEND);
  2551. if (status) {
  2552. dev_dbg(hub->intfdev, "can't resume port %d, status %d\n",
  2553. port1, status);
  2554. } else {
  2555. /* drive resume for at least 20 msec */
  2556. dev_dbg(&udev->dev, "usb %sresume\n",
  2557. (PMSG_IS_AUTO(msg) ? "auto-" : ""));
  2558. msleep(25);
  2559. /* Virtual root hubs can trigger on GET_PORT_STATUS to
  2560. * stop resume signaling. Then finish the resume
  2561. * sequence.
  2562. */
  2563. status = hub_port_status(hub, port1, &portstatus, &portchange);
  2564. /* TRSMRCY = 10 msec */
  2565. msleep(10);
  2566. }
  2567. SuspendCleared:
  2568. if (status == 0) {
  2569. if (hub_is_superspeed(hub->hdev)) {
  2570. if (portchange & USB_PORT_STAT_C_LINK_STATE)
  2571. clear_port_feature(hub->hdev, port1,
  2572. USB_PORT_FEAT_C_PORT_LINK_STATE);
  2573. } else {
  2574. if (portchange & USB_PORT_STAT_C_SUSPEND)
  2575. clear_port_feature(hub->hdev, port1,
  2576. USB_PORT_FEAT_C_SUSPEND);
  2577. }
  2578. }
  2579. clear_bit(port1, hub->busy_bits);
  2580. status = check_port_resume_type(udev,
  2581. hub, port1, status, portchange, portstatus);
  2582. if (status == 0)
  2583. status = finish_port_resume(udev);
  2584. if (status < 0) {
  2585. dev_dbg(&udev->dev, "can't resume, status %d\n", status);
  2586. hub_port_logical_disconnect(hub, port1);
  2587. } else {
  2588. /* Try to enable USB2 hardware LPM */
  2589. if (udev->usb2_hw_lpm_capable == 1)
  2590. usb_set_usb2_hardware_lpm(udev, 1);
  2591. /* Try to enable USB3 LPM */
  2592. usb_unlocked_enable_lpm(udev);
  2593. }
  2594. return status;
  2595. }
  2596. /* caller has locked udev */
  2597. int usb_remote_wakeup(struct usb_device *udev)
  2598. {
  2599. int status = 0;
  2600. if (udev->state == USB_STATE_SUSPENDED) {
  2601. dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
  2602. status = usb_autoresume_device(udev);
  2603. if (status == 0) {
  2604. /* Let the drivers do their thing, then... */
  2605. usb_autosuspend_device(udev);
  2606. }
  2607. }
  2608. return status;
  2609. }
  2610. #else /* CONFIG_USB_SUSPEND */
  2611. /* When CONFIG_USB_SUSPEND isn't set, we never suspend or resume any ports. */
  2612. int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
  2613. {
  2614. return 0;
  2615. }
  2616. /* However we may need to do a reset-resume */
  2617. int usb_port_resume(struct usb_device *udev, pm_message_t msg)
  2618. {
  2619. struct usb_hub *hub = hdev_to_hub(udev->parent);
  2620. int port1 = udev->portnum;
  2621. int status;
  2622. u16 portchange, portstatus;
  2623. status = hub_port_status(hub, port1, &portstatus, &portchange);
  2624. status = check_port_resume_type(udev,
  2625. hub, port1, status, portchange, portstatus);
  2626. if (status) {
  2627. dev_dbg(&udev->dev, "can't resume, status %d\n", status);
  2628. hub_port_logical_disconnect(hub, port1);
  2629. } else if (udev->reset_resume) {
  2630. dev_dbg(&udev->dev, "reset-resume\n");
  2631. status = usb_reset_and_verify_device(udev);
  2632. }
  2633. return status;
  2634. }
  2635. #endif
  2636. static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
  2637. {
  2638. struct usb_hub *hub = usb_get_intfdata (intf);
  2639. struct usb_device *hdev = hub->hdev;
  2640. unsigned port1;
  2641. int status;
  2642. /* Warn if children aren't already suspended */
  2643. for (port1 = 1; port1 <= hdev->maxchild; port1++) {
  2644. struct usb_device *udev;
  2645. udev = hdev->children [port1-1];
  2646. if (udev && udev->can_submit) {
  2647. dev_warn(&intf->dev, "port %d nyet suspended\n", port1);
  2648. if (PMSG_IS_AUTO(msg))
  2649. return -EBUSY;
  2650. }
  2651. }
  2652. if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
  2653. /* Enable hub to send remote wakeup for all ports. */
  2654. for (port1 = 1; port1 <= hdev->maxchild; port1++) {
  2655. status = set_port_feature(hdev,
  2656. port1 |
  2657. USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
  2658. USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
  2659. USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
  2660. USB_PORT_FEAT_REMOTE_WAKE_MASK);
  2661. }
  2662. }
  2663. dev_dbg(&intf->dev, "%s\n", __func__);
  2664. /* stop khubd and related activity */
  2665. hub_quiesce(hub, HUB_SUSPEND);
  2666. return 0;
  2667. }
  2668. static int hub_resume(struct usb_interface *intf)
  2669. {
  2670. struct usb_hub *hub = usb_get_intfdata(intf);
  2671. dev_dbg(&intf->dev, "%s\n", __func__);
  2672. hub_activate(hub, HUB_RESUME);
  2673. return 0;
  2674. }
  2675. static int hub_reset_resume(struct usb_interface *intf)
  2676. {
  2677. struct usb_hub *hub = usb_get_intfdata(intf);
  2678. dev_dbg(&intf->dev, "%s\n", __func__);
  2679. hub_activate(hub, HUB_RESET_RESUME);
  2680. return 0;
  2681. }
  2682. /**
  2683. * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
  2684. * @rhdev: struct usb_device for the root hub
  2685. *
  2686. * The USB host controller driver calls this function when its root hub
  2687. * is resumed and Vbus power has been interrupted or the controller
  2688. * has been reset. The routine marks @rhdev as having lost power.
  2689. * When the hub driver is resumed it will take notice and carry out
  2690. * power-session recovery for all the "USB-PERSIST"-enabled child devices;
  2691. * the others will be disconnected.
  2692. */
  2693. void usb_root_hub_lost_power(struct usb_device *rhdev)
  2694. {
  2695. dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
  2696. rhdev->reset_resume = 1;
  2697. }
  2698. EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
  2699. static const char * const usb3_lpm_names[] = {
  2700. "U0",
  2701. "U1",
  2702. "U2",
  2703. "U3",
  2704. };
  2705. /*
  2706. * Send a Set SEL control transfer to the device, prior to enabling
  2707. * device-initiated U1 or U2. This lets the device know the exit latencies from
  2708. * the time the device initiates a U1 or U2 exit, to the time it will receive a
  2709. * packet from the host.
  2710. *
  2711. * This function will fail if the SEL or PEL values for udev are greater than
  2712. * the maximum allowed values for the link state to be enabled.
  2713. */
  2714. static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state)
  2715. {
  2716. struct usb_set_sel_req *sel_values;
  2717. unsigned long long u1_sel;
  2718. unsigned long long u1_pel;
  2719. unsigned long long u2_sel;
  2720. unsigned long long u2_pel;
  2721. int ret;
  2722. /* Convert SEL and PEL stored in ns to us */
  2723. u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
  2724. u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
  2725. u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
  2726. u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
  2727. /*
  2728. * Make sure that the calculated SEL and PEL values for the link
  2729. * state we're enabling aren't bigger than the max SEL/PEL
  2730. * value that will fit in the SET SEL control transfer.
  2731. * Otherwise the device would get an incorrect idea of the exit
  2732. * latency for the link state, and could start a device-initiated
  2733. * U1/U2 when the exit latencies are too high.
  2734. */
  2735. if ((state == USB3_LPM_U1 &&
  2736. (u1_sel > USB3_LPM_MAX_U1_SEL_PEL ||
  2737. u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) ||
  2738. (state == USB3_LPM_U2 &&
  2739. (u2_sel > USB3_LPM_MAX_U2_SEL_PEL ||
  2740. u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) {
  2741. dev_dbg(&udev->dev, "Device-initiated %s disabled due "
  2742. "to long SEL %llu ms or PEL %llu ms\n",
  2743. usb3_lpm_names[state], u1_sel, u1_pel);
  2744. return -EINVAL;
  2745. }
  2746. /*
  2747. * If we're enabling device-initiated LPM for one link state,
  2748. * but the other link state has a too high SEL or PEL value,
  2749. * just set those values to the max in the Set SEL request.
  2750. */
  2751. if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL)
  2752. u1_sel = USB3_LPM_MAX_U1_SEL_PEL;
  2753. if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL)
  2754. u1_pel = USB3_LPM_MAX_U1_SEL_PEL;
  2755. if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL)
  2756. u2_sel = USB3_LPM_MAX_U2_SEL_PEL;
  2757. if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL)
  2758. u2_pel = USB3_LPM_MAX_U2_SEL_PEL;
  2759. /*
  2760. * usb_enable_lpm() can be called as part of a failed device reset,
  2761. * which may be initiated by an error path of a mass storage driver.
  2762. * Therefore, use GFP_NOIO.
  2763. */
  2764. sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO);
  2765. if (!sel_values)
  2766. return -ENOMEM;
  2767. sel_values->u1_sel = u1_sel;
  2768. sel_values->u1_pel = u1_pel;
  2769. sel_values->u2_sel = cpu_to_le16(u2_sel);
  2770. sel_values->u2_pel = cpu_to_le16(u2_pel);
  2771. ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  2772. USB_REQ_SET_SEL,
  2773. USB_RECIP_DEVICE,
  2774. 0, 0,
  2775. sel_values, sizeof *(sel_values),
  2776. USB_CTRL_SET_TIMEOUT);
  2777. kfree(sel_values);
  2778. return ret;
  2779. }
  2780. /*
  2781. * Enable or disable device-initiated U1 or U2 transitions.
  2782. */
  2783. static int usb_set_device_initiated_lpm(struct usb_device *udev,
  2784. enum usb3_link_state state, bool enable)
  2785. {
  2786. int ret;
  2787. int feature;
  2788. switch (state) {
  2789. case USB3_LPM_U1:
  2790. feature = USB_DEVICE_U1_ENABLE;
  2791. break;
  2792. case USB3_LPM_U2:
  2793. feature = USB_DEVICE_U2_ENABLE;
  2794. break;
  2795. default:
  2796. dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n",
  2797. __func__, enable ? "enable" : "disable");
  2798. return -EINVAL;
  2799. }
  2800. if (udev->state != USB_STATE_CONFIGURED) {
  2801. dev_dbg(&udev->dev, "%s: Can't %s %s state "
  2802. "for unconfigured device.\n",
  2803. __func__, enable ? "enable" : "disable",
  2804. usb3_lpm_names[state]);
  2805. return 0;
  2806. }
  2807. if (enable) {
  2808. /*
  2809. * First, let the device know about the exit latencies
  2810. * associated with the link state we're about to enable.
  2811. */
  2812. ret = usb_req_set_sel(udev, state);
  2813. if (ret < 0) {
  2814. dev_warn(&udev->dev, "Set SEL for device-initiated "
  2815. "%s failed.\n", usb3_lpm_names[state]);
  2816. return -EBUSY;
  2817. }
  2818. /*
  2819. * Now send the control transfer to enable device-initiated LPM
  2820. * for either U1 or U2.
  2821. */
  2822. ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  2823. USB_REQ_SET_FEATURE,
  2824. USB_RECIP_DEVICE,
  2825. feature,
  2826. 0, NULL, 0,
  2827. USB_CTRL_SET_TIMEOUT);
  2828. } else {
  2829. ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  2830. USB_REQ_CLEAR_FEATURE,
  2831. USB_RECIP_DEVICE,
  2832. feature,
  2833. 0, NULL, 0,
  2834. USB_CTRL_SET_TIMEOUT);
  2835. }
  2836. if (ret < 0) {
  2837. dev_warn(&udev->dev, "%s of device-initiated %s failed.\n",
  2838. enable ? "Enable" : "Disable",
  2839. usb3_lpm_names[state]);
  2840. return -EBUSY;
  2841. }
  2842. return 0;
  2843. }
  2844. static int usb_set_lpm_timeout(struct usb_device *udev,
  2845. enum usb3_link_state state, int timeout)
  2846. {
  2847. int ret;
  2848. int feature;
  2849. switch (state) {
  2850. case USB3_LPM_U1:
  2851. feature = USB_PORT_FEAT_U1_TIMEOUT;
  2852. break;
  2853. case USB3_LPM_U2:
  2854. feature = USB_PORT_FEAT_U2_TIMEOUT;
  2855. break;
  2856. default:
  2857. dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n",
  2858. __func__);
  2859. return -EINVAL;
  2860. }
  2861. if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT &&
  2862. timeout != USB3_LPM_DEVICE_INITIATED) {
  2863. dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, "
  2864. "which is a reserved value.\n",
  2865. usb3_lpm_names[state], timeout);
  2866. return -EINVAL;
  2867. }
  2868. ret = set_port_feature(udev->parent,
  2869. USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum,
  2870. feature);
  2871. if (ret < 0) {
  2872. dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x,"
  2873. "error code %i\n", usb3_lpm_names[state],
  2874. timeout, ret);
  2875. return -EBUSY;
  2876. }
  2877. if (state == USB3_LPM_U1)
  2878. udev->u1_params.timeout = timeout;
  2879. else
  2880. udev->u2_params.timeout = timeout;
  2881. return 0;
  2882. }
  2883. /*
  2884. * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated
  2885. * U1/U2 entry.
  2886. *
  2887. * We will attempt to enable U1 or U2, but there are no guarantees that the
  2888. * control transfers to set the hub timeout or enable device-initiated U1/U2
  2889. * will be successful.
  2890. *
  2891. * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI
  2892. * driver know about it. If that call fails, it should be harmless, and just
  2893. * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency.
  2894. */
  2895. static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
  2896. enum usb3_link_state state)
  2897. {
  2898. int timeout;
  2899. /* We allow the host controller to set the U1/U2 timeout internally
  2900. * first, so that it can change its schedule to account for the
  2901. * additional latency to send data to a device in a lower power
  2902. * link state.
  2903. */
  2904. timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state);
  2905. /* xHCI host controller doesn't want to enable this LPM state. */
  2906. if (timeout == 0)
  2907. return;
  2908. if (timeout < 0) {
  2909. dev_warn(&udev->dev, "Could not enable %s link state, "
  2910. "xHCI error %i.\n", usb3_lpm_names[state],
  2911. timeout);
  2912. return;
  2913. }
  2914. if (usb_set_lpm_timeout(udev, state, timeout))
  2915. /* If we can't set the parent hub U1/U2 timeout,
  2916. * device-initiated LPM won't be allowed either, so let the xHCI
  2917. * host know that this link state won't be enabled.
  2918. */
  2919. hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
  2920. /* Only a configured device will accept the Set Feature U1/U2_ENABLE */
  2921. else if (udev->actconfig)
  2922. usb_set_device_initiated_lpm(udev, state, true);
  2923. }
  2924. /*
  2925. * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated
  2926. * U1/U2 entry.
  2927. *
  2928. * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry.
  2929. * If zero is returned, the parent will not allow the link to go into U1/U2.
  2930. *
  2931. * If zero is returned, device-initiated U1/U2 entry may still be enabled, but
  2932. * it won't have an effect on the bus link state because the parent hub will
  2933. * still disallow device-initiated U1/U2 entry.
  2934. *
  2935. * If zero is returned, the xHCI host controller may still think U1/U2 entry is
  2936. * possible. The result will be slightly more bus bandwidth will be taken up
  2937. * (to account for U1/U2 exit latency), but it should be harmless.
  2938. */
  2939. static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
  2940. enum usb3_link_state state)
  2941. {
  2942. int feature;
  2943. switch (state) {
  2944. case USB3_LPM_U1:
  2945. feature = USB_PORT_FEAT_U1_TIMEOUT;
  2946. break;
  2947. case USB3_LPM_U2:
  2948. feature = USB_PORT_FEAT_U2_TIMEOUT;
  2949. break;
  2950. default:
  2951. dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n",
  2952. __func__);
  2953. return -EINVAL;
  2954. }
  2955. if (usb_set_lpm_timeout(udev, state, 0))
  2956. return -EBUSY;
  2957. usb_set_device_initiated_lpm(udev, state, false);
  2958. if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state))
  2959. dev_warn(&udev->dev, "Could not disable xHCI %s timeout, "
  2960. "bus schedule bandwidth may be impacted.\n",
  2961. usb3_lpm_names[state]);
  2962. return 0;
  2963. }
  2964. /*
  2965. * Disable hub-initiated and device-initiated U1 and U2 entry.
  2966. * Caller must own the bandwidth_mutex.
  2967. *
  2968. * This will call usb_enable_lpm() on failure, which will decrement
  2969. * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero.
  2970. */
  2971. int usb_disable_lpm(struct usb_device *udev)
  2972. {
  2973. struct usb_hcd *hcd;
  2974. if (!udev || !udev->parent ||
  2975. udev->speed != USB_SPEED_SUPER ||
  2976. !udev->lpm_capable)
  2977. return 0;
  2978. hcd = bus_to_hcd(udev->bus);
  2979. if (!hcd || !hcd->driver->disable_usb3_lpm_timeout)
  2980. return 0;
  2981. udev->lpm_disable_count++;
  2982. if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0))
  2983. return 0;
  2984. /* If LPM is enabled, attempt to disable it. */
  2985. if (usb_disable_link_state(hcd, udev, USB3_LPM_U1))
  2986. goto enable_lpm;
  2987. if (usb_disable_link_state(hcd, udev, USB3_LPM_U2))
  2988. goto enable_lpm;
  2989. return 0;
  2990. enable_lpm:
  2991. usb_enable_lpm(udev);
  2992. return -EBUSY;
  2993. }
  2994. EXPORT_SYMBOL_GPL(usb_disable_lpm);
  2995. /* Grab the bandwidth_mutex before calling usb_disable_lpm() */
  2996. int usb_unlocked_disable_lpm(struct usb_device *udev)
  2997. {
  2998. struct usb_hcd *hcd = bus_to_hcd(udev->bus);
  2999. int ret;
  3000. if (!hcd)
  3001. return -EINVAL;
  3002. mutex_lock(hcd->bandwidth_mutex);
  3003. ret = usb_disable_lpm(udev);
  3004. mutex_unlock(hcd->bandwidth_mutex);
  3005. return ret;
  3006. }
  3007. EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
  3008. /*
  3009. * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The
  3010. * xHCI host policy may prevent U1 or U2 from being enabled.
  3011. *
  3012. * Other callers may have disabled link PM, so U1 and U2 entry will be disabled
  3013. * until the lpm_disable_count drops to zero. Caller must own the
  3014. * bandwidth_mutex.
  3015. */
  3016. void usb_enable_lpm(struct usb_device *udev)
  3017. {
  3018. struct usb_hcd *hcd;
  3019. if (!udev || !udev->parent ||
  3020. udev->speed != USB_SPEED_SUPER ||
  3021. !udev->lpm_capable)
  3022. return;
  3023. udev->lpm_disable_count--;
  3024. hcd = bus_to_hcd(udev->bus);
  3025. /* Double check that we can both enable and disable LPM.
  3026. * Device must be configured to accept set feature U1/U2 timeout.
  3027. */
  3028. if (!hcd || !hcd->driver->enable_usb3_lpm_timeout ||
  3029. !hcd->driver->disable_usb3_lpm_timeout)
  3030. return;
  3031. if (udev->lpm_disable_count > 0)
  3032. return;
  3033. usb_enable_link_state(hcd, udev, USB3_LPM_U1);
  3034. usb_enable_link_state(hcd, udev, USB3_LPM_U2);
  3035. }
  3036. EXPORT_SYMBOL_GPL(usb_enable_lpm);
  3037. /* Grab the bandwidth_mutex before calling usb_enable_lpm() */
  3038. void usb_unlocked_enable_lpm(struct usb_device *udev)
  3039. {
  3040. struct usb_hcd *hcd = bus_to_hcd(udev->bus);
  3041. if (!hcd)
  3042. return;
  3043. mutex_lock(hcd->bandwidth_mutex);
  3044. usb_enable_lpm(udev);
  3045. mutex_unlock(hcd->bandwidth_mutex);
  3046. }
  3047. EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
  3048. #else /* CONFIG_PM */
  3049. #define hub_suspend NULL
  3050. #define hub_resume NULL
  3051. #define hub_reset_resume NULL
  3052. int usb_disable_lpm(struct usb_device *udev)
  3053. {
  3054. return 0;
  3055. }
  3056. EXPORT_SYMBOL_GPL(usb_disable_lpm);
  3057. void usb_enable_lpm(struct usb_device *udev) { }
  3058. EXPORT_SYMBOL_GPL(usb_enable_lpm);
  3059. int usb_unlocked_disable_lpm(struct usb_device *udev)
  3060. {
  3061. return 0;
  3062. }
  3063. EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
  3064. void usb_unlocked_enable_lpm(struct usb_device *udev) { }
  3065. EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
  3066. #endif
  3067. /* USB 2.0 spec, 7.1.7.3 / fig 7-29:
  3068. *
  3069. * Between connect detection and reset signaling there must be a delay
  3070. * of 100ms at least for debounce and power-settling. The corresponding
  3071. * timer shall restart whenever the downstream port detects a disconnect.
  3072. *
  3073. * Apparently there are some bluetooth and irda-dongles and a number of
  3074. * low-speed devices for which this debounce period may last over a second.
  3075. * Not covered by the spec - but easy to deal with.
  3076. *
  3077. * This implementation uses a 1500ms total debounce timeout; if the
  3078. * connection isn't stable by then it returns -ETIMEDOUT. It checks
  3079. * every 25ms for transient disconnects. When the port status has been
  3080. * unchanged for 100ms it returns the port status.
  3081. */
  3082. static int hub_port_debounce(struct usb_hub *hub, int port1)
  3083. {
  3084. int ret;
  3085. int total_time, stable_time = 0;
  3086. u16 portchange, portstatus;
  3087. unsigned connection = 0xffff;
  3088. for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
  3089. ret = hub_port_status(hub, port1, &portstatus, &portchange);
  3090. if (ret < 0)
  3091. return ret;
  3092. if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
  3093. (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
  3094. stable_time += HUB_DEBOUNCE_STEP;
  3095. if (stable_time >= HUB_DEBOUNCE_STABLE)
  3096. break;
  3097. } else {
  3098. stable_time = 0;
  3099. connection = portstatus & USB_PORT_STAT_CONNECTION;
  3100. }
  3101. if (portchange & USB_PORT_STAT_C_CONNECTION) {
  3102. clear_port_feature(hub->hdev, port1,
  3103. USB_PORT_FEAT_C_CONNECTION);
  3104. }
  3105. if (total_time >= HUB_DEBOUNCE_TIMEOUT)
  3106. break;
  3107. msleep(HUB_DEBOUNCE_STEP);
  3108. }
  3109. dev_dbg (hub->intfdev,
  3110. "debounce: port %d: total %dms stable %dms status 0x%x\n",
  3111. port1, total_time, stable_time, portstatus);
  3112. if (stable_time < HUB_DEBOUNCE_STABLE)
  3113. return -ETIMEDOUT;
  3114. return portstatus;
  3115. }
  3116. void usb_ep0_reinit(struct usb_device *udev)
  3117. {
  3118. usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
  3119. usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
  3120. usb_enable_endpoint(udev, &udev->ep0, true);
  3121. }
  3122. EXPORT_SYMBOL_GPL(usb_ep0_reinit);
  3123. #define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
  3124. #define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
  3125. static int hub_set_address(struct usb_device *udev, int devnum)
  3126. {
  3127. int retval;
  3128. struct usb_hcd *hcd = bus_to_hcd(udev->bus);
  3129. /*
  3130. * The host controller will choose the device address,
  3131. * instead of the core having chosen it earlier
  3132. */
  3133. if (!hcd->driver->address_device && devnum <= 1)
  3134. return -EINVAL;
  3135. if (udev->state == USB_STATE_ADDRESS)
  3136. return 0;
  3137. if (udev->state != USB_STATE_DEFAULT)
  3138. return -EINVAL;
  3139. if (hcd->driver->address_device)
  3140. retval = hcd->driver->address_device(hcd, udev);
  3141. else
  3142. retval = usb_control_msg(udev, usb_sndaddr0pipe(),
  3143. USB_REQ_SET_ADDRESS, 0, devnum, 0,
  3144. NULL, 0, USB_CTRL_SET_TIMEOUT);
  3145. if (retval == 0) {
  3146. update_devnum(udev, devnum);
  3147. /* Device now using proper address. */
  3148. usb_set_device_state(udev, USB_STATE_ADDRESS);
  3149. usb_ep0_reinit(udev);
  3150. }
  3151. return retval;
  3152. }
  3153. /* Reset device, (re)assign address, get device descriptor.
  3154. * Device connection must be stable, no more debouncing needed.
  3155. * Returns device in USB_STATE_ADDRESS, except on error.
  3156. *
  3157. * If this is called for an already-existing device (as part of
  3158. * usb_reset_and_verify_device), the caller must own the device lock. For a
  3159. * newly detected device that is not accessible through any global
  3160. * pointers, it's not necessary to lock the device.
  3161. */
  3162. static int
  3163. hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
  3164. int retry_counter)
  3165. {
  3166. static DEFINE_MUTEX(usb_address0_mutex);
  3167. struct usb_device *hdev = hub->hdev;
  3168. struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
  3169. int i, j, retval;
  3170. unsigned delay = HUB_SHORT_RESET_TIME;
  3171. enum usb_device_speed oldspeed = udev->speed;
  3172. const char *speed;
  3173. int devnum = udev->devnum;
  3174. /* root hub ports have a slightly longer reset period
  3175. * (from USB 2.0 spec, section 7.1.7.5)
  3176. */
  3177. if (!hdev->parent) {
  3178. delay = HUB_ROOT_RESET_TIME;
  3179. if (port1 == hdev->bus->otg_port)
  3180. hdev->bus->b_hnp_enable = 0;
  3181. }
  3182. /* Some low speed devices have problems with the quick delay, so */
  3183. /* be a bit pessimistic with those devices. RHbug #23670 */
  3184. if (oldspeed == USB_SPEED_LOW)
  3185. delay = HUB_LONG_RESET_TIME;
  3186. mutex_lock(&usb_address0_mutex);
  3187. /* Reset the device; full speed may morph to high speed */
  3188. /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
  3189. retval = hub_port_reset(hub, port1, udev, delay, false);
  3190. if (retval < 0) /* error or disconnect */
  3191. goto fail;
  3192. /* success, speed is known */
  3193. retval = -ENODEV;
  3194. if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
  3195. dev_dbg(&udev->dev, "device reset changed speed!\n");
  3196. goto fail;
  3197. }
  3198. oldspeed = udev->speed;
  3199. /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
  3200. * it's fixed size except for full speed devices.
  3201. * For Wireless USB devices, ep0 max packet is always 512 (tho
  3202. * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
  3203. */
  3204. switch (udev->speed) {
  3205. case USB_SPEED_SUPER:
  3206. case USB_SPEED_WIRELESS: /* fixed at 512 */
  3207. udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
  3208. break;
  3209. case USB_SPEED_HIGH: /* fixed at 64 */
  3210. udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
  3211. break;
  3212. case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
  3213. /* to determine the ep0 maxpacket size, try to read
  3214. * the device descriptor to get bMaxPacketSize0 and
  3215. * then correct our initial guess.
  3216. */
  3217. udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
  3218. break;
  3219. case USB_SPEED_LOW: /* fixed at 8 */
  3220. udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
  3221. break;
  3222. default:
  3223. goto fail;
  3224. }
  3225. if (udev->speed == USB_SPEED_WIRELESS)
  3226. speed = "variable speed Wireless";
  3227. else
  3228. speed = usb_speed_string(udev->speed);
  3229. if (udev->speed != USB_SPEED_SUPER)
  3230. dev_info(&udev->dev,
  3231. "%s %s USB device number %d using %s\n",
  3232. (udev->config) ? "reset" : "new", speed,
  3233. devnum, udev->bus->controller->driver->name);
  3234. /* Set up TT records, if needed */
  3235. if (hdev->tt) {
  3236. udev->tt = hdev->tt;
  3237. udev->ttport = hdev->ttport;
  3238. } else if (udev->speed != USB_SPEED_HIGH
  3239. && hdev->speed == USB_SPEED_HIGH) {
  3240. if (!hub->tt.hub) {
  3241. dev_err(&udev->dev, "parent hub has no TT\n");
  3242. retval = -EINVAL;
  3243. goto fail;
  3244. }
  3245. udev->tt = &hub->tt;
  3246. udev->ttport = port1;
  3247. }
  3248. /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
  3249. * Because device hardware and firmware is sometimes buggy in
  3250. * this area, and this is how Linux has done it for ages.
  3251. * Change it cautiously.
  3252. *
  3253. * NOTE: If USE_NEW_SCHEME() is true we will start by issuing
  3254. * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
  3255. * so it may help with some non-standards-compliant devices.
  3256. * Otherwise we start with SET_ADDRESS and then try to read the
  3257. * first 8 bytes of the device descriptor to get the ep0 maxpacket
  3258. * value.
  3259. */
  3260. for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
  3261. if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3)) {
  3262. struct usb_device_descriptor *buf;
  3263. int r = 0;
  3264. #define GET_DESCRIPTOR_BUFSIZE 64
  3265. buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
  3266. if (!buf) {
  3267. retval = -ENOMEM;
  3268. continue;
  3269. }
  3270. /* Retry on all errors; some devices are flakey.
  3271. * 255 is for WUSB devices, we actually need to use
  3272. * 512 (WUSB1.0[4.8.1]).
  3273. */
  3274. for (j = 0; j < 3; ++j) {
  3275. buf->bMaxPacketSize0 = 0;
  3276. r = usb_control_msg(udev, usb_rcvaddr0pipe(),
  3277. USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
  3278. USB_DT_DEVICE << 8, 0,
  3279. buf, GET_DESCRIPTOR_BUFSIZE,
  3280. initial_descriptor_timeout);
  3281. switch (buf->bMaxPacketSize0) {
  3282. case 8: case 16: case 32: case 64: case 255:
  3283. if (buf->bDescriptorType ==
  3284. USB_DT_DEVICE) {
  3285. r = 0;
  3286. break;
  3287. }
  3288. /* FALL THROUGH */
  3289. default:
  3290. if (r == 0)
  3291. r = -EPROTO;
  3292. break;
  3293. }
  3294. if (r == 0)
  3295. break;
  3296. }
  3297. udev->descriptor.bMaxPacketSize0 =
  3298. buf->bMaxPacketSize0;
  3299. kfree(buf);
  3300. retval = hub_port_reset(hub, port1, udev, delay, false);
  3301. if (retval < 0) /* error or disconnect */
  3302. goto fail;
  3303. if (oldspeed != udev->speed) {
  3304. dev_dbg(&udev->dev,
  3305. "device reset changed speed!\n");
  3306. retval = -ENODEV;
  3307. goto fail;
  3308. }
  3309. if (r) {
  3310. dev_err(&udev->dev,
  3311. "device descriptor read/64, error %d\n",
  3312. r);
  3313. retval = -EMSGSIZE;
  3314. continue;
  3315. }
  3316. #undef GET_DESCRIPTOR_BUFSIZE
  3317. }
  3318. /*
  3319. * If device is WUSB, we already assigned an
  3320. * unauthorized address in the Connect Ack sequence;
  3321. * authorization will assign the final address.
  3322. */
  3323. if (udev->wusb == 0) {
  3324. for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
  3325. retval = hub_set_address(udev, devnum);
  3326. if (retval >= 0)
  3327. break;
  3328. msleep(200);
  3329. }
  3330. if (retval < 0) {
  3331. dev_err(&udev->dev,
  3332. "device not accepting address %d, error %d\n",
  3333. devnum, retval);
  3334. goto fail;
  3335. }
  3336. if (udev->speed == USB_SPEED_SUPER) {
  3337. devnum = udev->devnum;
  3338. dev_info(&udev->dev,
  3339. "%s SuperSpeed USB device number %d using %s\n",
  3340. (udev->config) ? "reset" : "new",
  3341. devnum, udev->bus->controller->driver->name);
  3342. }
  3343. /* cope with hardware quirkiness:
  3344. * - let SET_ADDRESS settle, some device hardware wants it
  3345. * - read ep0 maxpacket even for high and low speed,
  3346. */
  3347. msleep(10);
  3348. if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3))
  3349. break;
  3350. }
  3351. retval = usb_get_device_descriptor(udev, 8);
  3352. if (retval < 8) {
  3353. dev_err(&udev->dev,
  3354. "device descriptor read/8, error %d\n",
  3355. retval);
  3356. if (retval >= 0)
  3357. retval = -EMSGSIZE;
  3358. } else {
  3359. retval = 0;
  3360. break;
  3361. }
  3362. }
  3363. if (retval)
  3364. goto fail;
  3365. /*
  3366. * Some superspeed devices have finished the link training process
  3367. * and attached to a superspeed hub port, but the device descriptor
  3368. * got from those devices show they aren't superspeed devices. Warm
  3369. * reset the port attached by the devices can fix them.
  3370. */
  3371. if ((udev->speed == USB_SPEED_SUPER) &&
  3372. (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) {
  3373. dev_err(&udev->dev, "got a wrong device descriptor, "
  3374. "warm reset device\n");
  3375. hub_port_reset(hub, port1, udev,
  3376. HUB_BH_RESET_TIME, true);
  3377. retval = -EINVAL;
  3378. goto fail;
  3379. }
  3380. if (udev->descriptor.bMaxPacketSize0 == 0xff ||
  3381. udev->speed == USB_SPEED_SUPER)
  3382. i = 512;
  3383. else
  3384. i = udev->descriptor.bMaxPacketSize0;
  3385. if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
  3386. if (udev->speed == USB_SPEED_LOW ||
  3387. !(i == 8 || i == 16 || i == 32 || i == 64)) {
  3388. dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
  3389. retval = -EMSGSIZE;
  3390. goto fail;
  3391. }
  3392. if (udev->speed == USB_SPEED_FULL)
  3393. dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
  3394. else
  3395. dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
  3396. udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
  3397. usb_ep0_reinit(udev);
  3398. }
  3399. retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
  3400. if (retval < (signed)sizeof(udev->descriptor)) {
  3401. dev_err(&udev->dev, "device descriptor read/all, error %d\n",
  3402. retval);
  3403. if (retval >= 0)
  3404. retval = -ENOMSG;
  3405. goto fail;
  3406. }
  3407. if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
  3408. retval = usb_get_bos_descriptor(udev);
  3409. if (!retval) {
  3410. udev->lpm_capable = usb_device_supports_lpm(udev);
  3411. usb_set_lpm_parameters(udev);
  3412. }
  3413. }
  3414. retval = 0;
  3415. /* notify HCD that we have a device connected and addressed */
  3416. if (hcd->driver->update_device)
  3417. hcd->driver->update_device(hcd, udev);
  3418. fail:
  3419. if (retval) {
  3420. hub_port_disable(hub, port1, 0);
  3421. update_devnum(udev, devnum); /* for disconnect processing */
  3422. }
  3423. mutex_unlock(&usb_address0_mutex);
  3424. return retval;
  3425. }
  3426. static void
  3427. check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
  3428. {
  3429. struct usb_qualifier_descriptor *qual;
  3430. int status;
  3431. qual = kmalloc (sizeof *qual, GFP_KERNEL);
  3432. if (qual == NULL)
  3433. return;
  3434. status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
  3435. qual, sizeof *qual);
  3436. if (status == sizeof *qual) {
  3437. dev_info(&udev->dev, "not running at top speed; "
  3438. "connect to a high speed hub\n");
  3439. /* hub LEDs are probably harder to miss than syslog */
  3440. if (hub->has_indicators) {
  3441. hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
  3442. schedule_delayed_work (&hub->leds, 0);
  3443. }
  3444. }
  3445. kfree(qual);
  3446. }
  3447. static unsigned
  3448. hub_power_remaining (struct usb_hub *hub)
  3449. {
  3450. struct usb_device *hdev = hub->hdev;
  3451. int remaining;
  3452. int port1;
  3453. if (!hub->limited_power)
  3454. return 0;
  3455. remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
  3456. for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
  3457. struct usb_device *udev = hdev->children[port1 - 1];
  3458. int delta;
  3459. if (!udev)
  3460. continue;
  3461. /* Unconfigured devices may not use more than 100mA,
  3462. * or 8mA for OTG ports */
  3463. if (udev->actconfig)
  3464. delta = udev->actconfig->desc.bMaxPower * 2;
  3465. else if (port1 != udev->bus->otg_port || hdev->parent)
  3466. delta = 100;
  3467. else
  3468. delta = 8;
  3469. if (delta > hub->mA_per_port)
  3470. dev_warn(&udev->dev,
  3471. "%dmA is over %umA budget for port %d!\n",
  3472. delta, hub->mA_per_port, port1);
  3473. remaining -= delta;
  3474. }
  3475. if (remaining < 0) {
  3476. dev_warn(hub->intfdev, "%dmA over power budget!\n",
  3477. - remaining);
  3478. remaining = 0;
  3479. }
  3480. return remaining;
  3481. }
  3482. /* Handle physical or logical connection change events.
  3483. * This routine is called when:
  3484. * a port connection-change occurs;
  3485. * a port enable-change occurs (often caused by EMI);
  3486. * usb_reset_and_verify_device() encounters changed descriptors (as from
  3487. * a firmware download)
  3488. * caller already locked the hub
  3489. */
  3490. static void hub_port_connect_change(struct usb_hub *hub, int port1,
  3491. u16 portstatus, u16 portchange)
  3492. {
  3493. struct usb_device *hdev = hub->hdev;
  3494. struct device *hub_dev = hub->intfdev;
  3495. struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
  3496. unsigned wHubCharacteristics =
  3497. le16_to_cpu(hub->descriptor->wHubCharacteristics);
  3498. struct usb_device *udev;
  3499. int status, i;
  3500. dev_dbg (hub_dev,
  3501. "port %d, status %04x, change %04x, %s\n",
  3502. port1, portstatus, portchange, portspeed(hub, portstatus));
  3503. if (hub->has_indicators) {
  3504. set_port_led(hub, port1, HUB_LED_AUTO);
  3505. hub->indicator[port1-1] = INDICATOR_AUTO;
  3506. }
  3507. #ifdef CONFIG_USB_OTG
  3508. /* during HNP, don't repeat the debounce */
  3509. if (hdev->bus->is_b_host)
  3510. portchange &= ~(USB_PORT_STAT_C_CONNECTION |
  3511. USB_PORT_STAT_C_ENABLE);
  3512. #endif
  3513. /* Try to resuscitate an existing device */
  3514. udev = hdev->children[port1-1];
  3515. if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
  3516. udev->state != USB_STATE_NOTATTACHED) {
  3517. usb_lock_device(udev);
  3518. if (portstatus & USB_PORT_STAT_ENABLE) {
  3519. status = 0; /* Nothing to do */
  3520. #ifdef CONFIG_USB_SUSPEND
  3521. } else if (udev->state == USB_STATE_SUSPENDED &&
  3522. udev->persist_enabled) {
  3523. /* For a suspended device, treat this as a
  3524. * remote wakeup event.
  3525. */
  3526. status = usb_remote_wakeup(udev);
  3527. #endif
  3528. } else {
  3529. status = -ENODEV; /* Don't resuscitate */
  3530. }
  3531. usb_unlock_device(udev);
  3532. if (status == 0) {
  3533. clear_bit(port1, hub->change_bits);
  3534. return;
  3535. }
  3536. }
  3537. /* Disconnect any existing devices under this port */
  3538. if (udev)
  3539. usb_disconnect(&hdev->children[port1-1]);
  3540. clear_bit(port1, hub->change_bits);
  3541. /* We can forget about a "removed" device when there's a physical
  3542. * disconnect or the connect status changes.
  3543. */
  3544. if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
  3545. (portchange & USB_PORT_STAT_C_CONNECTION))
  3546. clear_bit(port1, hub->removed_bits);
  3547. if (portchange & (USB_PORT_STAT_C_CONNECTION |
  3548. USB_PORT_STAT_C_ENABLE)) {
  3549. status = hub_port_debounce(hub, port1);
  3550. if (status < 0) {
  3551. if (printk_ratelimit())
  3552. dev_err(hub_dev, "connect-debounce failed, "
  3553. "port %d disabled\n", port1);
  3554. portstatus &= ~USB_PORT_STAT_CONNECTION;
  3555. } else {
  3556. portstatus = status;
  3557. }
  3558. }
  3559. /* Return now if debouncing failed or nothing is connected or
  3560. * the device was "removed".
  3561. */
  3562. if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
  3563. test_bit(port1, hub->removed_bits)) {
  3564. /* maybe switch power back on (e.g. root hub was reset) */
  3565. if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2
  3566. && !port_is_power_on(hub, portstatus))
  3567. set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
  3568. if (portstatus & USB_PORT_STAT_ENABLE)
  3569. goto done;
  3570. return;
  3571. }
  3572. for (i = 0; i < SET_CONFIG_TRIES; i++) {
  3573. /* reallocate for each attempt, since references
  3574. * to the previous one can escape in various ways
  3575. */
  3576. udev = usb_alloc_dev(hdev, hdev->bus, port1);
  3577. if (!udev) {
  3578. dev_err (hub_dev,
  3579. "couldn't allocate port %d usb_device\n",
  3580. port1);
  3581. goto done;
  3582. }
  3583. usb_set_device_state(udev, USB_STATE_POWERED);
  3584. udev->bus_mA = hub->mA_per_port;
  3585. udev->level = hdev->level + 1;
  3586. udev->wusb = hub_is_wusb(hub);
  3587. /* Only USB 3.0 devices are connected to SuperSpeed hubs. */
  3588. if (hub_is_superspeed(hub->hdev))
  3589. udev->speed = USB_SPEED_SUPER;
  3590. else
  3591. udev->speed = USB_SPEED_UNKNOWN;
  3592. choose_devnum(udev);
  3593. if (udev->devnum <= 0) {
  3594. status = -ENOTCONN; /* Don't retry */
  3595. goto loop;
  3596. }
  3597. /* reset (non-USB 3.0 devices) and get descriptor */
  3598. status = hub_port_init(hub, udev, port1, i);
  3599. if (status < 0)
  3600. goto loop;
  3601. usb_detect_quirks(udev);
  3602. if (udev->quirks & USB_QUIRK_DELAY_INIT)
  3603. msleep(1000);
  3604. /* consecutive bus-powered hubs aren't reliable; they can
  3605. * violate the voltage drop budget. if the new child has
  3606. * a "powered" LED, users should notice we didn't enable it
  3607. * (without reading syslog), even without per-port LEDs
  3608. * on the parent.
  3609. */
  3610. if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
  3611. && udev->bus_mA <= 100) {
  3612. u16 devstat;
  3613. status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
  3614. &devstat);
  3615. if (status < 2) {
  3616. dev_dbg(&udev->dev, "get status %d ?\n", status);
  3617. goto loop_disable;
  3618. }
  3619. le16_to_cpus(&devstat);
  3620. if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
  3621. dev_err(&udev->dev,
  3622. "can't connect bus-powered hub "
  3623. "to this port\n");
  3624. if (hub->has_indicators) {
  3625. hub->indicator[port1-1] =
  3626. INDICATOR_AMBER_BLINK;
  3627. schedule_delayed_work (&hub->leds, 0);
  3628. }
  3629. status = -ENOTCONN; /* Don't retry */
  3630. goto loop_disable;
  3631. }
  3632. }
  3633. /* check for devices running slower than they could */
  3634. if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
  3635. && udev->speed == USB_SPEED_FULL
  3636. && highspeed_hubs != 0)
  3637. check_highspeed (hub, udev, port1);
  3638. /* Store the parent's children[] pointer. At this point
  3639. * udev becomes globally accessible, although presumably
  3640. * no one will look at it until hdev is unlocked.
  3641. */
  3642. status = 0;
  3643. /* We mustn't add new devices if the parent hub has
  3644. * been disconnected; we would race with the
  3645. * recursively_mark_NOTATTACHED() routine.
  3646. */
  3647. spin_lock_irq(&device_state_lock);
  3648. if (hdev->state == USB_STATE_NOTATTACHED)
  3649. status = -ENOTCONN;
  3650. else
  3651. hdev->children[port1-1] = udev;
  3652. spin_unlock_irq(&device_state_lock);
  3653. /* Run it through the hoops (find a driver, etc) */
  3654. if (!status) {
  3655. status = usb_new_device(udev);
  3656. if (status) {
  3657. spin_lock_irq(&device_state_lock);
  3658. hdev->children[port1-1] = NULL;
  3659. spin_unlock_irq(&device_state_lock);
  3660. }
  3661. }
  3662. if (status)
  3663. goto loop_disable;
  3664. status = hub_power_remaining(hub);
  3665. if (status)
  3666. dev_dbg(hub_dev, "%dmA power budget left\n", status);
  3667. return;
  3668. loop_disable:
  3669. hub_port_disable(hub, port1, 1);
  3670. loop:
  3671. usb_ep0_reinit(udev);
  3672. release_devnum(udev);
  3673. hub_free_dev(udev);
  3674. usb_put_dev(udev);
  3675. if ((status == -ENOTCONN) || (status == -ENOTSUPP))
  3676. break;
  3677. }
  3678. if (hub->hdev->parent ||
  3679. !hcd->driver->port_handed_over ||
  3680. !(hcd->driver->port_handed_over)(hcd, port1))
  3681. dev_err(hub_dev, "unable to enumerate USB device on port %d\n",
  3682. port1);
  3683. done:
  3684. hub_port_disable(hub, port1, 1);
  3685. if (hcd->driver->relinquish_port && !hub->hdev->parent)
  3686. hcd->driver->relinquish_port(hcd, port1);
  3687. }
  3688. /* Returns 1 if there was a remote wakeup and a connect status change. */
  3689. static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
  3690. u16 portstatus, u16 portchange)
  3691. {
  3692. struct usb_device *hdev;
  3693. struct usb_device *udev;
  3694. int connect_change = 0;
  3695. int ret;
  3696. hdev = hub->hdev;
  3697. udev = hdev->children[port-1];
  3698. if (!hub_is_superspeed(hdev)) {
  3699. if (!(portchange & USB_PORT_STAT_C_SUSPEND))
  3700. return 0;
  3701. clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
  3702. } else {
  3703. if (!udev || udev->state != USB_STATE_SUSPENDED ||
  3704. (portstatus & USB_PORT_STAT_LINK_STATE) !=
  3705. USB_SS_PORT_LS_U0)
  3706. return 0;
  3707. }
  3708. if (udev) {
  3709. /* TRSMRCY = 10 msec */
  3710. msleep(10);
  3711. usb_lock_device(udev);
  3712. ret = usb_remote_wakeup(udev);
  3713. usb_unlock_device(udev);
  3714. if (ret < 0)
  3715. connect_change = 1;
  3716. } else {
  3717. ret = -ENODEV;
  3718. hub_port_disable(hub, port, 1);
  3719. }
  3720. dev_dbg(hub->intfdev, "resume on port %d, status %d\n",
  3721. port, ret);
  3722. return connect_change;
  3723. }
  3724. static void hub_events(void)
  3725. {
  3726. struct list_head *tmp;
  3727. struct usb_device *hdev;
  3728. struct usb_interface *intf;
  3729. struct usb_hub *hub;
  3730. struct device *hub_dev;
  3731. u16 hubstatus;
  3732. u16 hubchange;
  3733. u16 portstatus;
  3734. u16 portchange;
  3735. int i, ret;
  3736. int connect_change, wakeup_change;
  3737. /*
  3738. * We restart the list every time to avoid a deadlock with
  3739. * deleting hubs downstream from this one. This should be
  3740. * safe since we delete the hub from the event list.
  3741. * Not the most efficient, but avoids deadlocks.
  3742. */
  3743. while (1) {
  3744. /* Grab the first entry at the beginning of the list */
  3745. spin_lock_irq(&hub_event_lock);
  3746. if (list_empty(&hub_event_list)) {
  3747. spin_unlock_irq(&hub_event_lock);
  3748. break;
  3749. }
  3750. tmp = hub_event_list.next;
  3751. list_del_init(tmp);
  3752. hub = list_entry(tmp, struct usb_hub, event_list);
  3753. kref_get(&hub->kref);
  3754. spin_unlock_irq(&hub_event_lock);
  3755. hdev = hub->hdev;
  3756. hub_dev = hub->intfdev;
  3757. intf = to_usb_interface(hub_dev);
  3758. dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
  3759. hdev->state, hub->descriptor
  3760. ? hub->descriptor->bNbrPorts
  3761. : 0,
  3762. /* NOTE: expects max 15 ports... */
  3763. (u16) hub->change_bits[0],
  3764. (u16) hub->event_bits[0]);
  3765. /* Lock the device, then check to see if we were
  3766. * disconnected while waiting for the lock to succeed. */
  3767. usb_lock_device(hdev);
  3768. if (unlikely(hub->disconnected))
  3769. goto loop_disconnected;
  3770. /* If the hub has died, clean up after it */
  3771. if (hdev->state == USB_STATE_NOTATTACHED) {
  3772. hub->error = -ENODEV;
  3773. hub_quiesce(hub, HUB_DISCONNECT);
  3774. goto loop;
  3775. }
  3776. /* Autoresume */
  3777. ret = usb_autopm_get_interface(intf);
  3778. if (ret) {
  3779. dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
  3780. goto loop;
  3781. }
  3782. /* If this is an inactive hub, do nothing */
  3783. if (hub->quiescing)
  3784. goto loop_autopm;
  3785. if (hub->error) {
  3786. dev_dbg (hub_dev, "resetting for error %d\n",
  3787. hub->error);
  3788. ret = usb_reset_device(hdev);
  3789. if (ret) {
  3790. dev_dbg (hub_dev,
  3791. "error resetting hub: %d\n", ret);
  3792. goto loop_autopm;
  3793. }
  3794. hub->nerrors = 0;
  3795. hub->error = 0;
  3796. }
  3797. /* deal with port status changes */
  3798. for (i = 1; i <= hub->descriptor->bNbrPorts; i++) {
  3799. if (test_bit(i, hub->busy_bits))
  3800. continue;
  3801. connect_change = test_bit(i, hub->change_bits);
  3802. wakeup_change = test_and_clear_bit(i, hub->wakeup_bits);
  3803. if (!test_and_clear_bit(i, hub->event_bits) &&
  3804. !connect_change && !wakeup_change)
  3805. continue;
  3806. ret = hub_port_status(hub, i,
  3807. &portstatus, &portchange);
  3808. if (ret < 0)
  3809. continue;
  3810. if (portchange & USB_PORT_STAT_C_CONNECTION) {
  3811. clear_port_feature(hdev, i,
  3812. USB_PORT_FEAT_C_CONNECTION);
  3813. connect_change = 1;
  3814. }
  3815. if (portchange & USB_PORT_STAT_C_ENABLE) {
  3816. if (!connect_change)
  3817. dev_dbg (hub_dev,
  3818. "port %d enable change, "
  3819. "status %08x\n",
  3820. i, portstatus);
  3821. clear_port_feature(hdev, i,
  3822. USB_PORT_FEAT_C_ENABLE);
  3823. /*
  3824. * EM interference sometimes causes badly
  3825. * shielded USB devices to be shutdown by
  3826. * the hub, this hack enables them again.
  3827. * Works at least with mouse driver.
  3828. */
  3829. if (!(portstatus & USB_PORT_STAT_ENABLE)
  3830. && !connect_change
  3831. && hdev->children[i-1]) {
  3832. dev_err (hub_dev,
  3833. "port %i "
  3834. "disabled by hub (EMI?), "
  3835. "re-enabling...\n",
  3836. i);
  3837. connect_change = 1;
  3838. }
  3839. }
  3840. if (hub_handle_remote_wakeup(hub, i,
  3841. portstatus, portchange))
  3842. connect_change = 1;
  3843. if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
  3844. u16 status = 0;
  3845. u16 unused;
  3846. dev_dbg(hub_dev, "over-current change on port "
  3847. "%d\n", i);
  3848. clear_port_feature(hdev, i,
  3849. USB_PORT_FEAT_C_OVER_CURRENT);
  3850. msleep(100); /* Cool down */
  3851. hub_power_on(hub, true);
  3852. hub_port_status(hub, i, &status, &unused);
  3853. if (status & USB_PORT_STAT_OVERCURRENT)
  3854. dev_err(hub_dev, "over-current "
  3855. "condition on port %d\n", i);
  3856. }
  3857. if (portchange & USB_PORT_STAT_C_RESET) {
  3858. dev_dbg (hub_dev,
  3859. "reset change on port %d\n",
  3860. i);
  3861. clear_port_feature(hdev, i,
  3862. USB_PORT_FEAT_C_RESET);
  3863. }
  3864. if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
  3865. hub_is_superspeed(hub->hdev)) {
  3866. dev_dbg(hub_dev,
  3867. "warm reset change on port %d\n",
  3868. i);
  3869. clear_port_feature(hdev, i,
  3870. USB_PORT_FEAT_C_BH_PORT_RESET);
  3871. }
  3872. if (portchange & USB_PORT_STAT_C_LINK_STATE) {
  3873. clear_port_feature(hub->hdev, i,
  3874. USB_PORT_FEAT_C_PORT_LINK_STATE);
  3875. }
  3876. if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
  3877. dev_warn(hub_dev,
  3878. "config error on port %d\n",
  3879. i);
  3880. clear_port_feature(hub->hdev, i,
  3881. USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
  3882. }
  3883. /* Warm reset a USB3 protocol port if it's in
  3884. * SS.Inactive state.
  3885. */
  3886. if (hub_port_warm_reset_required(hub, portstatus)) {
  3887. dev_dbg(hub_dev, "warm reset port %d\n", i);
  3888. hub_port_reset(hub, i, NULL,
  3889. HUB_BH_RESET_TIME, true);
  3890. }
  3891. if (connect_change)
  3892. hub_port_connect_change(hub, i,
  3893. portstatus, portchange);
  3894. } /* end for i */
  3895. /* deal with hub status changes */
  3896. if (test_and_clear_bit(0, hub->event_bits) == 0)
  3897. ; /* do nothing */
  3898. else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
  3899. dev_err (hub_dev, "get_hub_status failed\n");
  3900. else {
  3901. if (hubchange & HUB_CHANGE_LOCAL_POWER) {
  3902. dev_dbg (hub_dev, "power change\n");
  3903. clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
  3904. if (hubstatus & HUB_STATUS_LOCAL_POWER)
  3905. /* FIXME: Is this always true? */
  3906. hub->limited_power = 1;
  3907. else
  3908. hub->limited_power = 0;
  3909. }
  3910. if (hubchange & HUB_CHANGE_OVERCURRENT) {
  3911. u16 status = 0;
  3912. u16 unused;
  3913. dev_dbg(hub_dev, "over-current change\n");
  3914. clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
  3915. msleep(500); /* Cool down */
  3916. hub_power_on(hub, true);
  3917. hub_hub_status(hub, &status, &unused);
  3918. if (status & HUB_STATUS_OVERCURRENT)
  3919. dev_err(hub_dev, "over-current "
  3920. "condition\n");
  3921. }
  3922. }
  3923. loop_autopm:
  3924. /* Balance the usb_autopm_get_interface() above */
  3925. usb_autopm_put_interface_no_suspend(intf);
  3926. loop:
  3927. /* Balance the usb_autopm_get_interface_no_resume() in
  3928. * kick_khubd() and allow autosuspend.
  3929. */
  3930. usb_autopm_put_interface(intf);
  3931. loop_disconnected:
  3932. usb_unlock_device(hdev);
  3933. kref_put(&hub->kref, hub_release);
  3934. } /* end while (1) */
  3935. }
  3936. static int hub_thread(void *__unused)
  3937. {
  3938. /* khubd needs to be freezable to avoid intefering with USB-PERSIST
  3939. * port handover. Otherwise it might see that a full-speed device
  3940. * was gone before the EHCI controller had handed its port over to
  3941. * the companion full-speed controller.
  3942. */
  3943. set_freezable();
  3944. do {
  3945. hub_events();
  3946. wait_event_freezable(khubd_wait,
  3947. !list_empty(&hub_event_list) ||
  3948. kthread_should_stop());
  3949. } while (!kthread_should_stop() || !list_empty(&hub_event_list));
  3950. pr_debug("%s: khubd exiting\n", usbcore_name);
  3951. return 0;
  3952. }
  3953. static const struct usb_device_id hub_id_table[] = {
  3954. { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
  3955. .bDeviceClass = USB_CLASS_HUB},
  3956. { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
  3957. .bInterfaceClass = USB_CLASS_HUB},
  3958. { } /* Terminating entry */
  3959. };
  3960. MODULE_DEVICE_TABLE (usb, hub_id_table);
  3961. static struct usb_driver hub_driver = {
  3962. .name = "hub",
  3963. .probe = hub_probe,
  3964. .disconnect = hub_disconnect,
  3965. .suspend = hub_suspend,
  3966. .resume = hub_resume,
  3967. .reset_resume = hub_reset_resume,
  3968. .pre_reset = hub_pre_reset,
  3969. .post_reset = hub_post_reset,
  3970. .unlocked_ioctl = hub_ioctl,
  3971. .id_table = hub_id_table,
  3972. .supports_autosuspend = 1,
  3973. };
  3974. int usb_hub_init(void)
  3975. {
  3976. if (usb_register(&hub_driver) < 0) {
  3977. printk(KERN_ERR "%s: can't register hub driver\n",
  3978. usbcore_name);
  3979. return -1;
  3980. }
  3981. khubd_task = kthread_run(hub_thread, NULL, "khubd");
  3982. if (!IS_ERR(khubd_task))
  3983. return 0;
  3984. /* Fall through if kernel_thread failed */
  3985. usb_deregister(&hub_driver);
  3986. printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
  3987. return -1;
  3988. }
  3989. void usb_hub_cleanup(void)
  3990. {
  3991. kthread_stop(khubd_task);
  3992. /*
  3993. * Hub resources are freed for us by usb_deregister. It calls
  3994. * usb_driver_purge on every device which in turn calls that
  3995. * devices disconnect function if it is using this driver.
  3996. * The hub_disconnect function takes care of releasing the
  3997. * individual hub resources. -greg
  3998. */
  3999. usb_deregister(&hub_driver);
  4000. } /* usb_hub_cleanup() */
  4001. static int descriptors_changed(struct usb_device *udev,
  4002. struct usb_device_descriptor *old_device_descriptor)
  4003. {
  4004. int changed = 0;
  4005. unsigned index;
  4006. unsigned serial_len = 0;
  4007. unsigned len;
  4008. unsigned old_length;
  4009. int length;
  4010. char *buf;
  4011. if (memcmp(&udev->descriptor, old_device_descriptor,
  4012. sizeof(*old_device_descriptor)) != 0)
  4013. return 1;
  4014. /* Since the idVendor, idProduct, and bcdDevice values in the
  4015. * device descriptor haven't changed, we will assume the
  4016. * Manufacturer and Product strings haven't changed either.
  4017. * But the SerialNumber string could be different (e.g., a
  4018. * different flash card of the same brand).
  4019. */
  4020. if (udev->serial)
  4021. serial_len = strlen(udev->serial) + 1;
  4022. len = serial_len;
  4023. for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
  4024. old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
  4025. len = max(len, old_length);
  4026. }
  4027. buf = kmalloc(len, GFP_NOIO);
  4028. if (buf == NULL) {
  4029. dev_err(&udev->dev, "no mem to re-read configs after reset\n");
  4030. /* assume the worst */
  4031. return 1;
  4032. }
  4033. for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
  4034. old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
  4035. length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
  4036. old_length);
  4037. if (length != old_length) {
  4038. dev_dbg(&udev->dev, "config index %d, error %d\n",
  4039. index, length);
  4040. changed = 1;
  4041. break;
  4042. }
  4043. if (memcmp (buf, udev->rawdescriptors[index], old_length)
  4044. != 0) {
  4045. dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
  4046. index,
  4047. ((struct usb_config_descriptor *) buf)->
  4048. bConfigurationValue);
  4049. changed = 1;
  4050. break;
  4051. }
  4052. }
  4053. if (!changed && serial_len) {
  4054. length = usb_string(udev, udev->descriptor.iSerialNumber,
  4055. buf, serial_len);
  4056. if (length + 1 != serial_len) {
  4057. dev_dbg(&udev->dev, "serial string error %d\n",
  4058. length);
  4059. changed = 1;
  4060. } else if (memcmp(buf, udev->serial, length) != 0) {
  4061. dev_dbg(&udev->dev, "serial string changed\n");
  4062. changed = 1;
  4063. }
  4064. }
  4065. kfree(buf);
  4066. return changed;
  4067. }
  4068. /**
  4069. * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
  4070. * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
  4071. *
  4072. * WARNING - don't use this routine to reset a composite device
  4073. * (one with multiple interfaces owned by separate drivers)!
  4074. * Use usb_reset_device() instead.
  4075. *
  4076. * Do a port reset, reassign the device's address, and establish its
  4077. * former operating configuration. If the reset fails, or the device's
  4078. * descriptors change from their values before the reset, or the original
  4079. * configuration and altsettings cannot be restored, a flag will be set
  4080. * telling khubd to pretend the device has been disconnected and then
  4081. * re-connected. All drivers will be unbound, and the device will be
  4082. * re-enumerated and probed all over again.
  4083. *
  4084. * Returns 0 if the reset succeeded, -ENODEV if the device has been
  4085. * flagged for logical disconnection, or some other negative error code
  4086. * if the reset wasn't even attempted.
  4087. *
  4088. * The caller must own the device lock. For example, it's safe to use
  4089. * this from a driver probe() routine after downloading new firmware.
  4090. * For calls that might not occur during probe(), drivers should lock
  4091. * the device using usb_lock_device_for_reset().
  4092. *
  4093. * Locking exception: This routine may also be called from within an
  4094. * autoresume handler. Such usage won't conflict with other tasks
  4095. * holding the device lock because these tasks should always call
  4096. * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
  4097. */
  4098. static int usb_reset_and_verify_device(struct usb_device *udev)
  4099. {
  4100. struct usb_device *parent_hdev = udev->parent;
  4101. struct usb_hub *parent_hub;
  4102. struct usb_hcd *hcd = bus_to_hcd(udev->bus);
  4103. struct usb_device_descriptor descriptor = udev->descriptor;
  4104. int i, ret = 0;
  4105. int port1 = udev->portnum;
  4106. if (udev->state == USB_STATE_NOTATTACHED ||
  4107. udev->state == USB_STATE_SUSPENDED) {
  4108. dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
  4109. udev->state);
  4110. return -EINVAL;
  4111. }
  4112. if (!parent_hdev) {
  4113. /* this requires hcd-specific logic; see ohci_restart() */
  4114. dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
  4115. return -EISDIR;
  4116. }
  4117. parent_hub = hdev_to_hub(parent_hdev);
  4118. set_bit(port1, parent_hub->busy_bits);
  4119. for (i = 0; i < SET_CONFIG_TRIES; ++i) {
  4120. /* ep0 maxpacket size may change; let the HCD know about it.
  4121. * Other endpoints will be handled by re-enumeration. */
  4122. usb_ep0_reinit(udev);
  4123. ret = hub_port_init(parent_hub, udev, port1, i);
  4124. if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
  4125. break;
  4126. }
  4127. clear_bit(port1, parent_hub->busy_bits);
  4128. if (ret < 0)
  4129. goto re_enumerate;
  4130. /* Device might have changed firmware (DFU or similar) */
  4131. if (descriptors_changed(udev, &descriptor)) {
  4132. dev_info(&udev->dev, "device firmware changed\n");
  4133. udev->descriptor = descriptor; /* for disconnect() calls */
  4134. goto re_enumerate;
  4135. }
  4136. /* Restore the device's previous configuration */
  4137. if (!udev->actconfig)
  4138. goto done;
  4139. mutex_lock(hcd->bandwidth_mutex);
  4140. /* Disable LPM while we reset the device and reinstall the alt settings.
  4141. * Device-initiated LPM settings, and system exit latency settings are
  4142. * cleared when the device is reset, so we have to set them up again.
  4143. */
  4144. ret = usb_disable_lpm(udev);
  4145. if (ret) {
  4146. dev_err(&udev->dev, "%s Failed to disable LPM\n.", __func__);
  4147. mutex_unlock(hcd->bandwidth_mutex);
  4148. goto done;
  4149. }
  4150. ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
  4151. if (ret < 0) {
  4152. dev_warn(&udev->dev,
  4153. "Busted HC? Not enough HCD resources for "
  4154. "old configuration.\n");
  4155. usb_enable_lpm(udev);
  4156. mutex_unlock(hcd->bandwidth_mutex);
  4157. goto re_enumerate;
  4158. }
  4159. ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  4160. USB_REQ_SET_CONFIGURATION, 0,
  4161. udev->actconfig->desc.bConfigurationValue, 0,
  4162. NULL, 0, USB_CTRL_SET_TIMEOUT);
  4163. if (ret < 0) {
  4164. dev_err(&udev->dev,
  4165. "can't restore configuration #%d (error=%d)\n",
  4166. udev->actconfig->desc.bConfigurationValue, ret);
  4167. usb_enable_lpm(udev);
  4168. mutex_unlock(hcd->bandwidth_mutex);
  4169. goto re_enumerate;
  4170. }
  4171. mutex_unlock(hcd->bandwidth_mutex);
  4172. usb_set_device_state(udev, USB_STATE_CONFIGURED);
  4173. /* Put interfaces back into the same altsettings as before.
  4174. * Don't bother to send the Set-Interface request for interfaces
  4175. * that were already in altsetting 0; besides being unnecessary,
  4176. * many devices can't handle it. Instead just reset the host-side
  4177. * endpoint state.
  4178. */
  4179. for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
  4180. struct usb_host_config *config = udev->actconfig;
  4181. struct usb_interface *intf = config->interface[i];
  4182. struct usb_interface_descriptor *desc;
  4183. desc = &intf->cur_altsetting->desc;
  4184. if (desc->bAlternateSetting == 0) {
  4185. usb_disable_interface(udev, intf, true);
  4186. usb_enable_interface(udev, intf, true);
  4187. ret = 0;
  4188. } else {
  4189. /* Let the bandwidth allocation function know that this
  4190. * device has been reset, and it will have to use
  4191. * alternate setting 0 as the current alternate setting.
  4192. */
  4193. intf->resetting_device = 1;
  4194. ret = usb_set_interface(udev, desc->bInterfaceNumber,
  4195. desc->bAlternateSetting);
  4196. intf->resetting_device = 0;
  4197. }
  4198. if (ret < 0) {
  4199. dev_err(&udev->dev, "failed to restore interface %d "
  4200. "altsetting %d (error=%d)\n",
  4201. desc->bInterfaceNumber,
  4202. desc->bAlternateSetting,
  4203. ret);
  4204. usb_unlocked_enable_lpm(udev);
  4205. goto re_enumerate;
  4206. }
  4207. }
  4208. /* Now that the alt settings are re-installed, enable LPM. */
  4209. usb_unlocked_enable_lpm(udev);
  4210. done:
  4211. return 0;
  4212. re_enumerate:
  4213. hub_port_logical_disconnect(parent_hub, port1);
  4214. return -ENODEV;
  4215. }
  4216. /**
  4217. * usb_reset_device - warn interface drivers and perform a USB port reset
  4218. * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
  4219. *
  4220. * Warns all drivers bound to registered interfaces (using their pre_reset
  4221. * method), performs the port reset, and then lets the drivers know that
  4222. * the reset is over (using their post_reset method).
  4223. *
  4224. * Return value is the same as for usb_reset_and_verify_device().
  4225. *
  4226. * The caller must own the device lock. For example, it's safe to use
  4227. * this from a driver probe() routine after downloading new firmware.
  4228. * For calls that might not occur during probe(), drivers should lock
  4229. * the device using usb_lock_device_for_reset().
  4230. *
  4231. * If an interface is currently being probed or disconnected, we assume
  4232. * its driver knows how to handle resets. For all other interfaces,
  4233. * if the driver doesn't have pre_reset and post_reset methods then
  4234. * we attempt to unbind it and rebind afterward.
  4235. */
  4236. int usb_reset_device(struct usb_device *udev)
  4237. {
  4238. int ret;
  4239. int i;
  4240. struct usb_host_config *config = udev->actconfig;
  4241. if (udev->state == USB_STATE_NOTATTACHED ||
  4242. udev->state == USB_STATE_SUSPENDED) {
  4243. dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
  4244. udev->state);
  4245. return -EINVAL;
  4246. }
  4247. /* Prevent autosuspend during the reset */
  4248. usb_autoresume_device(udev);
  4249. if (config) {
  4250. for (i = 0; i < config->desc.bNumInterfaces; ++i) {
  4251. struct usb_interface *cintf = config->interface[i];
  4252. struct usb_driver *drv;
  4253. int unbind = 0;
  4254. if (cintf->dev.driver) {
  4255. drv = to_usb_driver(cintf->dev.driver);
  4256. if (drv->pre_reset && drv->post_reset)
  4257. unbind = (drv->pre_reset)(cintf);
  4258. else if (cintf->condition ==
  4259. USB_INTERFACE_BOUND)
  4260. unbind = 1;
  4261. if (unbind)
  4262. usb_forced_unbind_intf(cintf);
  4263. }
  4264. }
  4265. }
  4266. ret = usb_reset_and_verify_device(udev);
  4267. if (config) {
  4268. for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
  4269. struct usb_interface *cintf = config->interface[i];
  4270. struct usb_driver *drv;
  4271. int rebind = cintf->needs_binding;
  4272. if (!rebind && cintf->dev.driver) {
  4273. drv = to_usb_driver(cintf->dev.driver);
  4274. if (drv->post_reset)
  4275. rebind = (drv->post_reset)(cintf);
  4276. else if (cintf->condition ==
  4277. USB_INTERFACE_BOUND)
  4278. rebind = 1;
  4279. }
  4280. if (ret == 0 && rebind)
  4281. usb_rebind_intf(cintf);
  4282. }
  4283. }
  4284. usb_autosuspend_device(udev);
  4285. return ret;
  4286. }
  4287. EXPORT_SYMBOL_GPL(usb_reset_device);
  4288. /**
  4289. * usb_queue_reset_device - Reset a USB device from an atomic context
  4290. * @iface: USB interface belonging to the device to reset
  4291. *
  4292. * This function can be used to reset a USB device from an atomic
  4293. * context, where usb_reset_device() won't work (as it blocks).
  4294. *
  4295. * Doing a reset via this method is functionally equivalent to calling
  4296. * usb_reset_device(), except for the fact that it is delayed to a
  4297. * workqueue. This means that any drivers bound to other interfaces
  4298. * might be unbound, as well as users from usbfs in user space.
  4299. *
  4300. * Corner cases:
  4301. *
  4302. * - Scheduling two resets at the same time from two different drivers
  4303. * attached to two different interfaces of the same device is
  4304. * possible; depending on how the driver attached to each interface
  4305. * handles ->pre_reset(), the second reset might happen or not.
  4306. *
  4307. * - If a driver is unbound and it had a pending reset, the reset will
  4308. * be cancelled.
  4309. *
  4310. * - This function can be called during .probe() or .disconnect()
  4311. * times. On return from .disconnect(), any pending resets will be
  4312. * cancelled.
  4313. *
  4314. * There is no no need to lock/unlock the @reset_ws as schedule_work()
  4315. * does its own.
  4316. *
  4317. * NOTE: We don't do any reference count tracking because it is not
  4318. * needed. The lifecycle of the work_struct is tied to the
  4319. * usb_interface. Before destroying the interface we cancel the
  4320. * work_struct, so the fact that work_struct is queued and or
  4321. * running means the interface (and thus, the device) exist and
  4322. * are referenced.
  4323. */
  4324. void usb_queue_reset_device(struct usb_interface *iface)
  4325. {
  4326. schedule_work(&iface->reset_ws);
  4327. }
  4328. EXPORT_SYMBOL_GPL(usb_queue_reset_device);