hub.c 139 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905
  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. void **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(void *), GFP_KERNEL);
  1119. if (!hdev->children || !hub->port_owners) {
  1120. ret = -ENOMEM;
  1121. goto fail;
  1122. }
  1123. wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
  1124. /* FIXME for USB 3.0, skip for now */
  1125. if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
  1126. !(hub_is_superspeed(hdev))) {
  1127. int i;
  1128. char portstr [USB_MAXCHILDREN + 1];
  1129. for (i = 0; i < hdev->maxchild; i++)
  1130. portstr[i] = hub->descriptor->u.hs.DeviceRemovable
  1131. [((i + 1) / 8)] & (1 << ((i + 1) % 8))
  1132. ? 'F' : 'R';
  1133. portstr[hdev->maxchild] = 0;
  1134. dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
  1135. } else
  1136. dev_dbg(hub_dev, "standalone hub\n");
  1137. switch (wHubCharacteristics & HUB_CHAR_LPSM) {
  1138. case HUB_CHAR_COMMON_LPSM:
  1139. dev_dbg(hub_dev, "ganged power switching\n");
  1140. break;
  1141. case HUB_CHAR_INDV_PORT_LPSM:
  1142. dev_dbg(hub_dev, "individual port power switching\n");
  1143. break;
  1144. case HUB_CHAR_NO_LPSM:
  1145. case HUB_CHAR_LPSM:
  1146. dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
  1147. break;
  1148. }
  1149. switch (wHubCharacteristics & HUB_CHAR_OCPM) {
  1150. case HUB_CHAR_COMMON_OCPM:
  1151. dev_dbg(hub_dev, "global over-current protection\n");
  1152. break;
  1153. case HUB_CHAR_INDV_PORT_OCPM:
  1154. dev_dbg(hub_dev, "individual port over-current protection\n");
  1155. break;
  1156. case HUB_CHAR_NO_OCPM:
  1157. case HUB_CHAR_OCPM:
  1158. dev_dbg(hub_dev, "no over-current protection\n");
  1159. break;
  1160. }
  1161. spin_lock_init (&hub->tt.lock);
  1162. INIT_LIST_HEAD (&hub->tt.clear_list);
  1163. INIT_WORK(&hub->tt.clear_work, hub_tt_work);
  1164. switch (hdev->descriptor.bDeviceProtocol) {
  1165. case USB_HUB_PR_FS:
  1166. break;
  1167. case USB_HUB_PR_HS_SINGLE_TT:
  1168. dev_dbg(hub_dev, "Single TT\n");
  1169. hub->tt.hub = hdev;
  1170. break;
  1171. case USB_HUB_PR_HS_MULTI_TT:
  1172. ret = usb_set_interface(hdev, 0, 1);
  1173. if (ret == 0) {
  1174. dev_dbg(hub_dev, "TT per port\n");
  1175. hub->tt.multi = 1;
  1176. } else
  1177. dev_err(hub_dev, "Using single TT (err %d)\n",
  1178. ret);
  1179. hub->tt.hub = hdev;
  1180. break;
  1181. case USB_HUB_PR_SS:
  1182. /* USB 3.0 hubs don't have a TT */
  1183. break;
  1184. default:
  1185. dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
  1186. hdev->descriptor.bDeviceProtocol);
  1187. break;
  1188. }
  1189. /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
  1190. switch (wHubCharacteristics & HUB_CHAR_TTTT) {
  1191. case HUB_TTTT_8_BITS:
  1192. if (hdev->descriptor.bDeviceProtocol != 0) {
  1193. hub->tt.think_time = 666;
  1194. dev_dbg(hub_dev, "TT requires at most %d "
  1195. "FS bit times (%d ns)\n",
  1196. 8, hub->tt.think_time);
  1197. }
  1198. break;
  1199. case HUB_TTTT_16_BITS:
  1200. hub->tt.think_time = 666 * 2;
  1201. dev_dbg(hub_dev, "TT requires at most %d "
  1202. "FS bit times (%d ns)\n",
  1203. 16, hub->tt.think_time);
  1204. break;
  1205. case HUB_TTTT_24_BITS:
  1206. hub->tt.think_time = 666 * 3;
  1207. dev_dbg(hub_dev, "TT requires at most %d "
  1208. "FS bit times (%d ns)\n",
  1209. 24, hub->tt.think_time);
  1210. break;
  1211. case HUB_TTTT_32_BITS:
  1212. hub->tt.think_time = 666 * 4;
  1213. dev_dbg(hub_dev, "TT requires at most %d "
  1214. "FS bit times (%d ns)\n",
  1215. 32, hub->tt.think_time);
  1216. break;
  1217. }
  1218. /* probe() zeroes hub->indicator[] */
  1219. if (wHubCharacteristics & HUB_CHAR_PORTIND) {
  1220. hub->has_indicators = 1;
  1221. dev_dbg(hub_dev, "Port indicators are supported\n");
  1222. }
  1223. dev_dbg(hub_dev, "power on to power good time: %dms\n",
  1224. hub->descriptor->bPwrOn2PwrGood * 2);
  1225. /* power budgeting mostly matters with bus-powered hubs,
  1226. * and battery-powered root hubs (may provide just 8 mA).
  1227. */
  1228. ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
  1229. if (ret < 2) {
  1230. message = "can't get hub status";
  1231. goto fail;
  1232. }
  1233. le16_to_cpus(&hubstatus);
  1234. if (hdev == hdev->bus->root_hub) {
  1235. if (hdev->bus_mA == 0 || hdev->bus_mA >= 500)
  1236. hub->mA_per_port = 500;
  1237. else {
  1238. hub->mA_per_port = hdev->bus_mA;
  1239. hub->limited_power = 1;
  1240. }
  1241. } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
  1242. dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
  1243. hub->descriptor->bHubContrCurrent);
  1244. hub->limited_power = 1;
  1245. if (hdev->maxchild > 0) {
  1246. int remaining = hdev->bus_mA -
  1247. hub->descriptor->bHubContrCurrent;
  1248. if (remaining < hdev->maxchild * 100)
  1249. dev_warn(hub_dev,
  1250. "insufficient power available "
  1251. "to use all downstream ports\n");
  1252. hub->mA_per_port = 100; /* 7.2.1.1 */
  1253. }
  1254. } else { /* Self-powered external hub */
  1255. /* FIXME: What about battery-powered external hubs that
  1256. * provide less current per port? */
  1257. hub->mA_per_port = 500;
  1258. }
  1259. if (hub->mA_per_port < 500)
  1260. dev_dbg(hub_dev, "%umA bus power budget for each child\n",
  1261. hub->mA_per_port);
  1262. /* Update the HCD's internal representation of this hub before khubd
  1263. * starts getting port status changes for devices under the hub.
  1264. */
  1265. hcd = bus_to_hcd(hdev->bus);
  1266. if (hcd->driver->update_hub_device) {
  1267. ret = hcd->driver->update_hub_device(hcd, hdev,
  1268. &hub->tt, GFP_KERNEL);
  1269. if (ret < 0) {
  1270. message = "can't update HCD hub info";
  1271. goto fail;
  1272. }
  1273. }
  1274. ret = hub_hub_status(hub, &hubstatus, &hubchange);
  1275. if (ret < 0) {
  1276. message = "can't get hub status";
  1277. goto fail;
  1278. }
  1279. /* local power status reports aren't always correct */
  1280. if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
  1281. dev_dbg(hub_dev, "local power source is %s\n",
  1282. (hubstatus & HUB_STATUS_LOCAL_POWER)
  1283. ? "lost (inactive)" : "good");
  1284. if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
  1285. dev_dbg(hub_dev, "%sover-current condition exists\n",
  1286. (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
  1287. /* set up the interrupt endpoint
  1288. * We use the EP's maxpacket size instead of (PORTS+1+7)/8
  1289. * bytes as USB2.0[11.12.3] says because some hubs are known
  1290. * to send more data (and thus cause overflow). For root hubs,
  1291. * maxpktsize is defined in hcd.c's fake endpoint descriptors
  1292. * to be big enough for at least USB_MAXCHILDREN ports. */
  1293. pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
  1294. maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
  1295. if (maxp > sizeof(*hub->buffer))
  1296. maxp = sizeof(*hub->buffer);
  1297. hub->urb = usb_alloc_urb(0, GFP_KERNEL);
  1298. if (!hub->urb) {
  1299. ret = -ENOMEM;
  1300. goto fail;
  1301. }
  1302. usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
  1303. hub, endpoint->bInterval);
  1304. /* maybe cycle the hub leds */
  1305. if (hub->has_indicators && blinkenlights)
  1306. hub->indicator [0] = INDICATOR_CYCLE;
  1307. hub_activate(hub, HUB_INIT);
  1308. return 0;
  1309. fail:
  1310. dev_err (hub_dev, "config failed, %s (err %d)\n",
  1311. message, ret);
  1312. /* hub_disconnect() frees urb and descriptor */
  1313. return ret;
  1314. }
  1315. static void hub_release(struct kref *kref)
  1316. {
  1317. struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
  1318. usb_put_intf(to_usb_interface(hub->intfdev));
  1319. kfree(hub);
  1320. }
  1321. static unsigned highspeed_hubs;
  1322. static void hub_disconnect(struct usb_interface *intf)
  1323. {
  1324. struct usb_hub *hub = usb_get_intfdata(intf);
  1325. struct usb_device *hdev = interface_to_usbdev(intf);
  1326. /* Take the hub off the event list and don't let it be added again */
  1327. spin_lock_irq(&hub_event_lock);
  1328. if (!list_empty(&hub->event_list)) {
  1329. list_del_init(&hub->event_list);
  1330. usb_autopm_put_interface_no_suspend(intf);
  1331. }
  1332. hub->disconnected = 1;
  1333. spin_unlock_irq(&hub_event_lock);
  1334. /* Disconnect all children and quiesce the hub */
  1335. hub->error = 0;
  1336. hub_quiesce(hub, HUB_DISCONNECT);
  1337. usb_set_intfdata (intf, NULL);
  1338. hub->hdev->maxchild = 0;
  1339. if (hub->hdev->speed == USB_SPEED_HIGH)
  1340. highspeed_hubs--;
  1341. usb_free_urb(hub->urb);
  1342. kfree(hdev->children);
  1343. kfree(hub->port_owners);
  1344. kfree(hub->descriptor);
  1345. kfree(hub->status);
  1346. kfree(hub->buffer);
  1347. kref_put(&hub->kref, hub_release);
  1348. }
  1349. static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
  1350. {
  1351. struct usb_host_interface *desc;
  1352. struct usb_endpoint_descriptor *endpoint;
  1353. struct usb_device *hdev;
  1354. struct usb_hub *hub;
  1355. desc = intf->cur_altsetting;
  1356. hdev = interface_to_usbdev(intf);
  1357. /* Hubs have proper suspend/resume support. */
  1358. usb_enable_autosuspend(hdev);
  1359. if (hdev->level == MAX_TOPO_LEVEL) {
  1360. dev_err(&intf->dev,
  1361. "Unsupported bus topology: hub nested too deep\n");
  1362. return -E2BIG;
  1363. }
  1364. #ifdef CONFIG_USB_OTG_BLACKLIST_HUB
  1365. if (hdev->parent) {
  1366. dev_warn(&intf->dev, "ignoring external hub\n");
  1367. return -ENODEV;
  1368. }
  1369. #endif
  1370. /* Some hubs have a subclass of 1, which AFAICT according to the */
  1371. /* specs is not defined, but it works */
  1372. if ((desc->desc.bInterfaceSubClass != 0) &&
  1373. (desc->desc.bInterfaceSubClass != 1)) {
  1374. descriptor_error:
  1375. dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
  1376. return -EIO;
  1377. }
  1378. /* Multiple endpoints? What kind of mutant ninja-hub is this? */
  1379. if (desc->desc.bNumEndpoints != 1)
  1380. goto descriptor_error;
  1381. endpoint = &desc->endpoint[0].desc;
  1382. /* If it's not an interrupt in endpoint, we'd better punt! */
  1383. if (!usb_endpoint_is_int_in(endpoint))
  1384. goto descriptor_error;
  1385. /* We found a hub */
  1386. dev_info (&intf->dev, "USB hub found\n");
  1387. hub = kzalloc(sizeof(*hub), GFP_KERNEL);
  1388. if (!hub) {
  1389. dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
  1390. return -ENOMEM;
  1391. }
  1392. kref_init(&hub->kref);
  1393. INIT_LIST_HEAD(&hub->event_list);
  1394. hub->intfdev = &intf->dev;
  1395. hub->hdev = hdev;
  1396. INIT_DELAYED_WORK(&hub->leds, led_work);
  1397. INIT_DELAYED_WORK(&hub->init_work, NULL);
  1398. usb_get_intf(intf);
  1399. usb_set_intfdata (intf, hub);
  1400. intf->needs_remote_wakeup = 1;
  1401. if (hdev->speed == USB_SPEED_HIGH)
  1402. highspeed_hubs++;
  1403. if (hub_configure(hub, endpoint) >= 0)
  1404. return 0;
  1405. hub_disconnect (intf);
  1406. return -ENODEV;
  1407. }
  1408. static int
  1409. hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
  1410. {
  1411. struct usb_device *hdev = interface_to_usbdev (intf);
  1412. /* assert ifno == 0 (part of hub spec) */
  1413. switch (code) {
  1414. case USBDEVFS_HUB_PORTINFO: {
  1415. struct usbdevfs_hub_portinfo *info = user_data;
  1416. int i;
  1417. spin_lock_irq(&device_state_lock);
  1418. if (hdev->devnum <= 0)
  1419. info->nports = 0;
  1420. else {
  1421. info->nports = hdev->maxchild;
  1422. for (i = 0; i < info->nports; i++) {
  1423. if (hdev->children[i] == NULL)
  1424. info->port[i] = 0;
  1425. else
  1426. info->port[i] =
  1427. hdev->children[i]->devnum;
  1428. }
  1429. }
  1430. spin_unlock_irq(&device_state_lock);
  1431. return info->nports + 1;
  1432. }
  1433. default:
  1434. return -ENOSYS;
  1435. }
  1436. }
  1437. /*
  1438. * Allow user programs to claim ports on a hub. When a device is attached
  1439. * to one of these "claimed" ports, the program will "own" the device.
  1440. */
  1441. static int find_port_owner(struct usb_device *hdev, unsigned port1,
  1442. void ***ppowner)
  1443. {
  1444. if (hdev->state == USB_STATE_NOTATTACHED)
  1445. return -ENODEV;
  1446. if (port1 == 0 || port1 > hdev->maxchild)
  1447. return -EINVAL;
  1448. /* This assumes that devices not managed by the hub driver
  1449. * will always have maxchild equal to 0.
  1450. */
  1451. *ppowner = &(hdev_to_hub(hdev)->port_owners[port1 - 1]);
  1452. return 0;
  1453. }
  1454. /* In the following three functions, the caller must hold hdev's lock */
  1455. int usb_hub_claim_port(struct usb_device *hdev, unsigned port1, void *owner)
  1456. {
  1457. int rc;
  1458. void **powner;
  1459. rc = find_port_owner(hdev, port1, &powner);
  1460. if (rc)
  1461. return rc;
  1462. if (*powner)
  1463. return -EBUSY;
  1464. *powner = owner;
  1465. return rc;
  1466. }
  1467. int usb_hub_release_port(struct usb_device *hdev, unsigned port1, void *owner)
  1468. {
  1469. int rc;
  1470. void **powner;
  1471. rc = find_port_owner(hdev, port1, &powner);
  1472. if (rc)
  1473. return rc;
  1474. if (*powner != owner)
  1475. return -ENOENT;
  1476. *powner = NULL;
  1477. return rc;
  1478. }
  1479. void usb_hub_release_all_ports(struct usb_device *hdev, void *owner)
  1480. {
  1481. int n;
  1482. void **powner;
  1483. n = find_port_owner(hdev, 1, &powner);
  1484. if (n == 0) {
  1485. for (; n < hdev->maxchild; (++n, ++powner)) {
  1486. if (*powner == owner)
  1487. *powner = NULL;
  1488. }
  1489. }
  1490. }
  1491. /* The caller must hold udev's lock */
  1492. bool usb_device_is_owned(struct usb_device *udev)
  1493. {
  1494. struct usb_hub *hub;
  1495. if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
  1496. return false;
  1497. hub = hdev_to_hub(udev->parent);
  1498. return !!hub->port_owners[udev->portnum - 1];
  1499. }
  1500. static void recursively_mark_NOTATTACHED(struct usb_device *udev)
  1501. {
  1502. int i;
  1503. for (i = 0; i < udev->maxchild; ++i) {
  1504. if (udev->children[i])
  1505. recursively_mark_NOTATTACHED(udev->children[i]);
  1506. }
  1507. if (udev->state == USB_STATE_SUSPENDED)
  1508. udev->active_duration -= jiffies;
  1509. udev->state = USB_STATE_NOTATTACHED;
  1510. }
  1511. /**
  1512. * usb_set_device_state - change a device's current state (usbcore, hcds)
  1513. * @udev: pointer to device whose state should be changed
  1514. * @new_state: new state value to be stored
  1515. *
  1516. * udev->state is _not_ fully protected by the device lock. Although
  1517. * most transitions are made only while holding the lock, the state can
  1518. * can change to USB_STATE_NOTATTACHED at almost any time. This
  1519. * is so that devices can be marked as disconnected as soon as possible,
  1520. * without having to wait for any semaphores to be released. As a result,
  1521. * all changes to any device's state must be protected by the
  1522. * device_state_lock spinlock.
  1523. *
  1524. * Once a device has been added to the device tree, all changes to its state
  1525. * should be made using this routine. The state should _not_ be set directly.
  1526. *
  1527. * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
  1528. * Otherwise udev->state is set to new_state, and if new_state is
  1529. * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
  1530. * to USB_STATE_NOTATTACHED.
  1531. */
  1532. void usb_set_device_state(struct usb_device *udev,
  1533. enum usb_device_state new_state)
  1534. {
  1535. unsigned long flags;
  1536. int wakeup = -1;
  1537. spin_lock_irqsave(&device_state_lock, flags);
  1538. if (udev->state == USB_STATE_NOTATTACHED)
  1539. ; /* do nothing */
  1540. else if (new_state != USB_STATE_NOTATTACHED) {
  1541. /* root hub wakeup capabilities are managed out-of-band
  1542. * and may involve silicon errata ... ignore them here.
  1543. */
  1544. if (udev->parent) {
  1545. if (udev->state == USB_STATE_SUSPENDED
  1546. || new_state == USB_STATE_SUSPENDED)
  1547. ; /* No change to wakeup settings */
  1548. else if (new_state == USB_STATE_CONFIGURED)
  1549. wakeup = udev->actconfig->desc.bmAttributes
  1550. & USB_CONFIG_ATT_WAKEUP;
  1551. else
  1552. wakeup = 0;
  1553. }
  1554. if (udev->state == USB_STATE_SUSPENDED &&
  1555. new_state != USB_STATE_SUSPENDED)
  1556. udev->active_duration -= jiffies;
  1557. else if (new_state == USB_STATE_SUSPENDED &&
  1558. udev->state != USB_STATE_SUSPENDED)
  1559. udev->active_duration += jiffies;
  1560. udev->state = new_state;
  1561. } else
  1562. recursively_mark_NOTATTACHED(udev);
  1563. spin_unlock_irqrestore(&device_state_lock, flags);
  1564. if (wakeup >= 0)
  1565. device_set_wakeup_capable(&udev->dev, wakeup);
  1566. }
  1567. EXPORT_SYMBOL_GPL(usb_set_device_state);
  1568. /*
  1569. * Choose a device number.
  1570. *
  1571. * Device numbers are used as filenames in usbfs. On USB-1.1 and
  1572. * USB-2.0 buses they are also used as device addresses, however on
  1573. * USB-3.0 buses the address is assigned by the controller hardware
  1574. * and it usually is not the same as the device number.
  1575. *
  1576. * WUSB devices are simple: they have no hubs behind, so the mapping
  1577. * device <-> virtual port number becomes 1:1. Why? to simplify the
  1578. * life of the device connection logic in
  1579. * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
  1580. * handshake we need to assign a temporary address in the unauthorized
  1581. * space. For simplicity we use the first virtual port number found to
  1582. * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
  1583. * and that becomes it's address [X < 128] or its unauthorized address
  1584. * [X | 0x80].
  1585. *
  1586. * We add 1 as an offset to the one-based USB-stack port number
  1587. * (zero-based wusb virtual port index) for two reasons: (a) dev addr
  1588. * 0 is reserved by USB for default address; (b) Linux's USB stack
  1589. * uses always #1 for the root hub of the controller. So USB stack's
  1590. * port #1, which is wusb virtual-port #0 has address #2.
  1591. *
  1592. * Devices connected under xHCI are not as simple. The host controller
  1593. * supports virtualization, so the hardware assigns device addresses and
  1594. * the HCD must setup data structures before issuing a set address
  1595. * command to the hardware.
  1596. */
  1597. static void choose_devnum(struct usb_device *udev)
  1598. {
  1599. int devnum;
  1600. struct usb_bus *bus = udev->bus;
  1601. /* If khubd ever becomes multithreaded, this will need a lock */
  1602. if (udev->wusb) {
  1603. devnum = udev->portnum + 1;
  1604. BUG_ON(test_bit(devnum, bus->devmap.devicemap));
  1605. } else {
  1606. /* Try to allocate the next devnum beginning at
  1607. * bus->devnum_next. */
  1608. devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
  1609. bus->devnum_next);
  1610. if (devnum >= 128)
  1611. devnum = find_next_zero_bit(bus->devmap.devicemap,
  1612. 128, 1);
  1613. bus->devnum_next = ( devnum >= 127 ? 1 : devnum + 1);
  1614. }
  1615. if (devnum < 128) {
  1616. set_bit(devnum, bus->devmap.devicemap);
  1617. udev->devnum = devnum;
  1618. }
  1619. }
  1620. static void release_devnum(struct usb_device *udev)
  1621. {
  1622. if (udev->devnum > 0) {
  1623. clear_bit(udev->devnum, udev->bus->devmap.devicemap);
  1624. udev->devnum = -1;
  1625. }
  1626. }
  1627. static void update_devnum(struct usb_device *udev, int devnum)
  1628. {
  1629. /* The address for a WUSB device is managed by wusbcore. */
  1630. if (!udev->wusb)
  1631. udev->devnum = devnum;
  1632. }
  1633. static void hub_free_dev(struct usb_device *udev)
  1634. {
  1635. struct usb_hcd *hcd = bus_to_hcd(udev->bus);
  1636. /* Root hubs aren't real devices, so don't free HCD resources */
  1637. if (hcd->driver->free_dev && udev->parent)
  1638. hcd->driver->free_dev(hcd, udev);
  1639. }
  1640. /**
  1641. * usb_disconnect - disconnect a device (usbcore-internal)
  1642. * @pdev: pointer to device being disconnected
  1643. * Context: !in_interrupt ()
  1644. *
  1645. * Something got disconnected. Get rid of it and all of its children.
  1646. *
  1647. * If *pdev is a normal device then the parent hub must already be locked.
  1648. * If *pdev is a root hub then this routine will acquire the
  1649. * usb_bus_list_lock on behalf of the caller.
  1650. *
  1651. * Only hub drivers (including virtual root hub drivers for host
  1652. * controllers) should ever call this.
  1653. *
  1654. * This call is synchronous, and may not be used in an interrupt context.
  1655. */
  1656. void usb_disconnect(struct usb_device **pdev)
  1657. {
  1658. struct usb_device *udev = *pdev;
  1659. int i;
  1660. /* mark the device as inactive, so any further urb submissions for
  1661. * this device (and any of its children) will fail immediately.
  1662. * this quiesces everything except pending urbs.
  1663. */
  1664. usb_set_device_state(udev, USB_STATE_NOTATTACHED);
  1665. dev_info(&udev->dev, "USB disconnect, device number %d\n",
  1666. udev->devnum);
  1667. usb_lock_device(udev);
  1668. /* Free up all the children before we remove this device */
  1669. for (i = 0; i < udev->maxchild; i++) {
  1670. if (udev->children[i])
  1671. usb_disconnect(&udev->children[i]);
  1672. }
  1673. /* deallocate hcd/hardware state ... nuking all pending urbs and
  1674. * cleaning up all state associated with the current configuration
  1675. * so that the hardware is now fully quiesced.
  1676. */
  1677. dev_dbg (&udev->dev, "unregistering device\n");
  1678. usb_disable_device(udev, 0);
  1679. usb_hcd_synchronize_unlinks(udev);
  1680. usb_remove_ep_devs(&udev->ep0);
  1681. usb_unlock_device(udev);
  1682. /* Unregister the device. The device driver is responsible
  1683. * for de-configuring the device and invoking the remove-device
  1684. * notifier chain (used by usbfs and possibly others).
  1685. */
  1686. device_del(&udev->dev);
  1687. /* Free the device number and delete the parent's children[]
  1688. * (or root_hub) pointer.
  1689. */
  1690. release_devnum(udev);
  1691. /* Avoid races with recursively_mark_NOTATTACHED() */
  1692. spin_lock_irq(&device_state_lock);
  1693. *pdev = NULL;
  1694. spin_unlock_irq(&device_state_lock);
  1695. hub_free_dev(udev);
  1696. put_device(&udev->dev);
  1697. }
  1698. #ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
  1699. static void show_string(struct usb_device *udev, char *id, char *string)
  1700. {
  1701. if (!string)
  1702. return;
  1703. dev_printk(KERN_INFO, &udev->dev, "%s: %s\n", id, string);
  1704. }
  1705. static void announce_device(struct usb_device *udev)
  1706. {
  1707. dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
  1708. le16_to_cpu(udev->descriptor.idVendor),
  1709. le16_to_cpu(udev->descriptor.idProduct));
  1710. dev_info(&udev->dev,
  1711. "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
  1712. udev->descriptor.iManufacturer,
  1713. udev->descriptor.iProduct,
  1714. udev->descriptor.iSerialNumber);
  1715. show_string(udev, "Product", udev->product);
  1716. show_string(udev, "Manufacturer", udev->manufacturer);
  1717. show_string(udev, "SerialNumber", udev->serial);
  1718. }
  1719. #else
  1720. static inline void announce_device(struct usb_device *udev) { }
  1721. #endif
  1722. #ifdef CONFIG_USB_OTG
  1723. #include "otg_whitelist.h"
  1724. #endif
  1725. /**
  1726. * usb_enumerate_device_otg - FIXME (usbcore-internal)
  1727. * @udev: newly addressed device (in ADDRESS state)
  1728. *
  1729. * Finish enumeration for On-The-Go devices
  1730. */
  1731. static int usb_enumerate_device_otg(struct usb_device *udev)
  1732. {
  1733. int err = 0;
  1734. #ifdef CONFIG_USB_OTG
  1735. /*
  1736. * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
  1737. * to wake us after we've powered off VBUS; and HNP, switching roles
  1738. * "host" to "peripheral". The OTG descriptor helps figure this out.
  1739. */
  1740. if (!udev->bus->is_b_host
  1741. && udev->config
  1742. && udev->parent == udev->bus->root_hub) {
  1743. struct usb_otg_descriptor *desc = NULL;
  1744. struct usb_bus *bus = udev->bus;
  1745. /* descriptor may appear anywhere in config */
  1746. if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
  1747. le16_to_cpu(udev->config[0].desc.wTotalLength),
  1748. USB_DT_OTG, (void **) &desc) == 0) {
  1749. if (desc->bmAttributes & USB_OTG_HNP) {
  1750. unsigned port1 = udev->portnum;
  1751. dev_info(&udev->dev,
  1752. "Dual-Role OTG device on %sHNP port\n",
  1753. (port1 == bus->otg_port)
  1754. ? "" : "non-");
  1755. /* enable HNP before suspend, it's simpler */
  1756. if (port1 == bus->otg_port)
  1757. bus->b_hnp_enable = 1;
  1758. err = usb_control_msg(udev,
  1759. usb_sndctrlpipe(udev, 0),
  1760. USB_REQ_SET_FEATURE, 0,
  1761. bus->b_hnp_enable
  1762. ? USB_DEVICE_B_HNP_ENABLE
  1763. : USB_DEVICE_A_ALT_HNP_SUPPORT,
  1764. 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
  1765. if (err < 0) {
  1766. /* OTG MESSAGE: report errors here,
  1767. * customize to match your product.
  1768. */
  1769. dev_info(&udev->dev,
  1770. "can't set HNP mode: %d\n",
  1771. err);
  1772. bus->b_hnp_enable = 0;
  1773. }
  1774. }
  1775. }
  1776. }
  1777. if (!is_targeted(udev)) {
  1778. /* Maybe it can talk to us, though we can't talk to it.
  1779. * (Includes HNP test device.)
  1780. */
  1781. if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
  1782. err = usb_port_suspend(udev, PMSG_SUSPEND);
  1783. if (err < 0)
  1784. dev_dbg(&udev->dev, "HNP fail, %d\n", err);
  1785. }
  1786. err = -ENOTSUPP;
  1787. goto fail;
  1788. }
  1789. fail:
  1790. #endif
  1791. return err;
  1792. }
  1793. /**
  1794. * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
  1795. * @udev: newly addressed device (in ADDRESS state)
  1796. *
  1797. * This is only called by usb_new_device() and usb_authorize_device()
  1798. * and FIXME -- all comments that apply to them apply here wrt to
  1799. * environment.
  1800. *
  1801. * If the device is WUSB and not authorized, we don't attempt to read
  1802. * the string descriptors, as they will be errored out by the device
  1803. * until it has been authorized.
  1804. */
  1805. static int usb_enumerate_device(struct usb_device *udev)
  1806. {
  1807. int err;
  1808. if (udev->config == NULL) {
  1809. err = usb_get_configuration(udev);
  1810. if (err < 0) {
  1811. dev_err(&udev->dev, "can't read configurations, error %d\n",
  1812. err);
  1813. goto fail;
  1814. }
  1815. }
  1816. if (udev->wusb == 1 && udev->authorized == 0) {
  1817. udev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1818. udev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1819. udev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1820. }
  1821. else {
  1822. /* read the standard strings and cache them if present */
  1823. udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
  1824. udev->manufacturer = usb_cache_string(udev,
  1825. udev->descriptor.iManufacturer);
  1826. udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
  1827. }
  1828. err = usb_enumerate_device_otg(udev);
  1829. fail:
  1830. return err;
  1831. }
  1832. static void set_usb_port_removable(struct usb_device *udev)
  1833. {
  1834. struct usb_device *hdev = udev->parent;
  1835. struct usb_hub *hub;
  1836. u8 port = udev->portnum;
  1837. u16 wHubCharacteristics;
  1838. bool removable = true;
  1839. if (!hdev)
  1840. return;
  1841. hub = hdev_to_hub(udev->parent);
  1842. wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
  1843. if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
  1844. return;
  1845. if (hub_is_superspeed(hdev)) {
  1846. if (hub->descriptor->u.ss.DeviceRemovable & (1 << port))
  1847. removable = false;
  1848. } else {
  1849. if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
  1850. removable = false;
  1851. }
  1852. if (removable)
  1853. udev->removable = USB_DEVICE_REMOVABLE;
  1854. else
  1855. udev->removable = USB_DEVICE_FIXED;
  1856. }
  1857. /**
  1858. * usb_new_device - perform initial device setup (usbcore-internal)
  1859. * @udev: newly addressed device (in ADDRESS state)
  1860. *
  1861. * This is called with devices which have been detected but not fully
  1862. * enumerated. The device descriptor is available, but not descriptors
  1863. * for any device configuration. The caller must have locked either
  1864. * the parent hub (if udev is a normal device) or else the
  1865. * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
  1866. * udev has already been installed, but udev is not yet visible through
  1867. * sysfs or other filesystem code.
  1868. *
  1869. * It will return if the device is configured properly or not. Zero if
  1870. * the interface was registered with the driver core; else a negative
  1871. * errno value.
  1872. *
  1873. * This call is synchronous, and may not be used in an interrupt context.
  1874. *
  1875. * Only the hub driver or root-hub registrar should ever call this.
  1876. */
  1877. int usb_new_device(struct usb_device *udev)
  1878. {
  1879. int err;
  1880. if (udev->parent) {
  1881. /* Initialize non-root-hub device wakeup to disabled;
  1882. * device (un)configuration controls wakeup capable
  1883. * sysfs power/wakeup controls wakeup enabled/disabled
  1884. */
  1885. device_init_wakeup(&udev->dev, 0);
  1886. }
  1887. /* Tell the runtime-PM framework the device is active */
  1888. pm_runtime_set_active(&udev->dev);
  1889. pm_runtime_get_noresume(&udev->dev);
  1890. pm_runtime_use_autosuspend(&udev->dev);
  1891. pm_runtime_enable(&udev->dev);
  1892. /* By default, forbid autosuspend for all devices. It will be
  1893. * allowed for hubs during binding.
  1894. */
  1895. usb_disable_autosuspend(udev);
  1896. err = usb_enumerate_device(udev); /* Read descriptors */
  1897. if (err < 0)
  1898. goto fail;
  1899. dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
  1900. udev->devnum, udev->bus->busnum,
  1901. (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
  1902. /* export the usbdev device-node for libusb */
  1903. udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
  1904. (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
  1905. /* Tell the world! */
  1906. announce_device(udev);
  1907. device_enable_async_suspend(&udev->dev);
  1908. /*
  1909. * check whether the hub marks this port as non-removable. Do it
  1910. * now so that platform-specific data can override it in
  1911. * device_add()
  1912. */
  1913. if (udev->parent)
  1914. set_usb_port_removable(udev);
  1915. /* Register the device. The device driver is responsible
  1916. * for configuring the device and invoking the add-device
  1917. * notifier chain (used by usbfs and possibly others).
  1918. */
  1919. err = device_add(&udev->dev);
  1920. if (err) {
  1921. dev_err(&udev->dev, "can't device_add, error %d\n", err);
  1922. goto fail;
  1923. }
  1924. (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
  1925. usb_mark_last_busy(udev);
  1926. pm_runtime_put_sync_autosuspend(&udev->dev);
  1927. return err;
  1928. fail:
  1929. usb_set_device_state(udev, USB_STATE_NOTATTACHED);
  1930. pm_runtime_disable(&udev->dev);
  1931. pm_runtime_set_suspended(&udev->dev);
  1932. return err;
  1933. }
  1934. /**
  1935. * usb_deauthorize_device - deauthorize a device (usbcore-internal)
  1936. * @usb_dev: USB device
  1937. *
  1938. * Move the USB device to a very basic state where interfaces are disabled
  1939. * and the device is in fact unconfigured and unusable.
  1940. *
  1941. * We share a lock (that we have) with device_del(), so we need to
  1942. * defer its call.
  1943. */
  1944. int usb_deauthorize_device(struct usb_device *usb_dev)
  1945. {
  1946. usb_lock_device(usb_dev);
  1947. if (usb_dev->authorized == 0)
  1948. goto out_unauthorized;
  1949. usb_dev->authorized = 0;
  1950. usb_set_configuration(usb_dev, -1);
  1951. kfree(usb_dev->product);
  1952. usb_dev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1953. kfree(usb_dev->manufacturer);
  1954. usb_dev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1955. kfree(usb_dev->serial);
  1956. usb_dev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1957. usb_destroy_configuration(usb_dev);
  1958. usb_dev->descriptor.bNumConfigurations = 0;
  1959. out_unauthorized:
  1960. usb_unlock_device(usb_dev);
  1961. return 0;
  1962. }
  1963. int usb_authorize_device(struct usb_device *usb_dev)
  1964. {
  1965. int result = 0, c;
  1966. usb_lock_device(usb_dev);
  1967. if (usb_dev->authorized == 1)
  1968. goto out_authorized;
  1969. result = usb_autoresume_device(usb_dev);
  1970. if (result < 0) {
  1971. dev_err(&usb_dev->dev,
  1972. "can't autoresume for authorization: %d\n", result);
  1973. goto error_autoresume;
  1974. }
  1975. result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
  1976. if (result < 0) {
  1977. dev_err(&usb_dev->dev, "can't re-read device descriptor for "
  1978. "authorization: %d\n", result);
  1979. goto error_device_descriptor;
  1980. }
  1981. kfree(usb_dev->product);
  1982. usb_dev->product = NULL;
  1983. kfree(usb_dev->manufacturer);
  1984. usb_dev->manufacturer = NULL;
  1985. kfree(usb_dev->serial);
  1986. usb_dev->serial = NULL;
  1987. usb_dev->authorized = 1;
  1988. result = usb_enumerate_device(usb_dev);
  1989. if (result < 0)
  1990. goto error_enumerate;
  1991. /* Choose and set the configuration. This registers the interfaces
  1992. * with the driver core and lets interface drivers bind to them.
  1993. */
  1994. c = usb_choose_configuration(usb_dev);
  1995. if (c >= 0) {
  1996. result = usb_set_configuration(usb_dev, c);
  1997. if (result) {
  1998. dev_err(&usb_dev->dev,
  1999. "can't set config #%d, error %d\n", c, result);
  2000. /* This need not be fatal. The user can try to
  2001. * set other configurations. */
  2002. }
  2003. }
  2004. dev_info(&usb_dev->dev, "authorized to connect\n");
  2005. error_enumerate:
  2006. error_device_descriptor:
  2007. usb_autosuspend_device(usb_dev);
  2008. error_autoresume:
  2009. out_authorized:
  2010. usb_unlock_device(usb_dev); // complements locktree
  2011. return result;
  2012. }
  2013. /* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
  2014. static unsigned hub_is_wusb(struct usb_hub *hub)
  2015. {
  2016. struct usb_hcd *hcd;
  2017. if (hub->hdev->parent != NULL) /* not a root hub? */
  2018. return 0;
  2019. hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
  2020. return hcd->wireless;
  2021. }
  2022. #define PORT_RESET_TRIES 5
  2023. #define SET_ADDRESS_TRIES 2
  2024. #define GET_DESCRIPTOR_TRIES 2
  2025. #define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
  2026. #define USE_NEW_SCHEME(i) ((i) / 2 == (int)old_scheme_first)
  2027. #define HUB_ROOT_RESET_TIME 50 /* times are in msec */
  2028. #define HUB_SHORT_RESET_TIME 10
  2029. #define HUB_BH_RESET_TIME 50
  2030. #define HUB_LONG_RESET_TIME 200
  2031. #define HUB_RESET_TIMEOUT 500
  2032. static int hub_port_reset(struct usb_hub *hub, int port1,
  2033. struct usb_device *udev, unsigned int delay, bool warm);
  2034. /* Is a USB 3.0 port in the Inactive or Complinance Mode state?
  2035. * Port worm reset is required to recover
  2036. */
  2037. static bool hub_port_warm_reset_required(struct usb_hub *hub, u16 portstatus)
  2038. {
  2039. return hub_is_superspeed(hub->hdev) &&
  2040. (((portstatus & USB_PORT_STAT_LINK_STATE) ==
  2041. USB_SS_PORT_LS_SS_INACTIVE) ||
  2042. ((portstatus & USB_PORT_STAT_LINK_STATE) ==
  2043. USB_SS_PORT_LS_COMP_MOD)) ;
  2044. }
  2045. static int hub_port_wait_reset(struct usb_hub *hub, int port1,
  2046. struct usb_device *udev, unsigned int delay, bool warm)
  2047. {
  2048. int delay_time, ret;
  2049. u16 portstatus;
  2050. u16 portchange;
  2051. for (delay_time = 0;
  2052. delay_time < HUB_RESET_TIMEOUT;
  2053. delay_time += delay) {
  2054. /* wait to give the device a chance to reset */
  2055. msleep(delay);
  2056. /* read and decode port status */
  2057. ret = hub_port_status(hub, port1, &portstatus, &portchange);
  2058. if (ret < 0)
  2059. return ret;
  2060. /*
  2061. * Some buggy devices require a warm reset to be issued even
  2062. * when the port appears not to be connected.
  2063. */
  2064. if (!warm) {
  2065. /*
  2066. * Some buggy devices can cause an NEC host controller
  2067. * to transition to the "Error" state after a hot port
  2068. * reset. This will show up as the port state in
  2069. * "Inactive", and the port may also report a
  2070. * disconnect. Forcing a warm port reset seems to make
  2071. * the device work.
  2072. *
  2073. * See https://bugzilla.kernel.org/show_bug.cgi?id=41752
  2074. */
  2075. if (hub_port_warm_reset_required(hub, portstatus)) {
  2076. int ret;
  2077. if ((portchange & USB_PORT_STAT_C_CONNECTION))
  2078. clear_port_feature(hub->hdev, port1,
  2079. USB_PORT_FEAT_C_CONNECTION);
  2080. if (portchange & USB_PORT_STAT_C_LINK_STATE)
  2081. clear_port_feature(hub->hdev, port1,
  2082. USB_PORT_FEAT_C_PORT_LINK_STATE);
  2083. if (portchange & USB_PORT_STAT_C_RESET)
  2084. clear_port_feature(hub->hdev, port1,
  2085. USB_PORT_FEAT_C_RESET);
  2086. dev_dbg(hub->intfdev, "hot reset failed, warm reset port %d\n",
  2087. port1);
  2088. ret = hub_port_reset(hub, port1,
  2089. udev, HUB_BH_RESET_TIME,
  2090. true);
  2091. if ((portchange & USB_PORT_STAT_C_CONNECTION))
  2092. clear_port_feature(hub->hdev, port1,
  2093. USB_PORT_FEAT_C_CONNECTION);
  2094. return ret;
  2095. }
  2096. /* Device went away? */
  2097. if (!(portstatus & USB_PORT_STAT_CONNECTION))
  2098. return -ENOTCONN;
  2099. /* bomb out completely if the connection bounced */
  2100. if ((portchange & USB_PORT_STAT_C_CONNECTION))
  2101. return -ENOTCONN;
  2102. /* if we`ve finished resetting, then break out of
  2103. * the loop
  2104. */
  2105. if (!(portstatus & USB_PORT_STAT_RESET) &&
  2106. (portstatus & USB_PORT_STAT_ENABLE)) {
  2107. if (hub_is_wusb(hub))
  2108. udev->speed = USB_SPEED_WIRELESS;
  2109. else if (hub_is_superspeed(hub->hdev))
  2110. udev->speed = USB_SPEED_SUPER;
  2111. else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
  2112. udev->speed = USB_SPEED_HIGH;
  2113. else if (portstatus & USB_PORT_STAT_LOW_SPEED)
  2114. udev->speed = USB_SPEED_LOW;
  2115. else
  2116. udev->speed = USB_SPEED_FULL;
  2117. return 0;
  2118. }
  2119. } else {
  2120. if (portchange & USB_PORT_STAT_C_BH_RESET)
  2121. return 0;
  2122. }
  2123. /* switch to the long delay after two short delay failures */
  2124. if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
  2125. delay = HUB_LONG_RESET_TIME;
  2126. dev_dbg (hub->intfdev,
  2127. "port %d not %sreset yet, waiting %dms\n",
  2128. port1, warm ? "warm " : "", delay);
  2129. }
  2130. return -EBUSY;
  2131. }
  2132. static void hub_port_finish_reset(struct usb_hub *hub, int port1,
  2133. struct usb_device *udev, int *status, bool warm)
  2134. {
  2135. switch (*status) {
  2136. case 0:
  2137. if (!warm) {
  2138. struct usb_hcd *hcd;
  2139. /* TRSTRCY = 10 ms; plus some extra */
  2140. msleep(10 + 40);
  2141. update_devnum(udev, 0);
  2142. hcd = bus_to_hcd(udev->bus);
  2143. if (hcd->driver->reset_device) {
  2144. *status = hcd->driver->reset_device(hcd, udev);
  2145. if (*status < 0) {
  2146. dev_err(&udev->dev, "Cannot reset "
  2147. "HCD device state\n");
  2148. break;
  2149. }
  2150. }
  2151. }
  2152. /* FALL THROUGH */
  2153. case -ENOTCONN:
  2154. case -ENODEV:
  2155. clear_port_feature(hub->hdev,
  2156. port1, USB_PORT_FEAT_C_RESET);
  2157. /* FIXME need disconnect() for NOTATTACHED device */
  2158. if (warm) {
  2159. clear_port_feature(hub->hdev, port1,
  2160. USB_PORT_FEAT_C_BH_PORT_RESET);
  2161. clear_port_feature(hub->hdev, port1,
  2162. USB_PORT_FEAT_C_PORT_LINK_STATE);
  2163. } else {
  2164. usb_set_device_state(udev, *status
  2165. ? USB_STATE_NOTATTACHED
  2166. : USB_STATE_DEFAULT);
  2167. }
  2168. break;
  2169. }
  2170. }
  2171. /* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
  2172. static int hub_port_reset(struct usb_hub *hub, int port1,
  2173. struct usb_device *udev, unsigned int delay, bool warm)
  2174. {
  2175. int i, status;
  2176. if (!warm) {
  2177. /* Block EHCI CF initialization during the port reset.
  2178. * Some companion controllers don't like it when they mix.
  2179. */
  2180. down_read(&ehci_cf_port_reset_rwsem);
  2181. } else {
  2182. if (!hub_is_superspeed(hub->hdev)) {
  2183. dev_err(hub->intfdev, "only USB3 hub support "
  2184. "warm reset\n");
  2185. return -EINVAL;
  2186. }
  2187. }
  2188. /* Reset the port */
  2189. for (i = 0; i < PORT_RESET_TRIES; i++) {
  2190. status = set_port_feature(hub->hdev, port1, (warm ?
  2191. USB_PORT_FEAT_BH_PORT_RESET :
  2192. USB_PORT_FEAT_RESET));
  2193. if (status) {
  2194. dev_err(hub->intfdev,
  2195. "cannot %sreset port %d (err = %d)\n",
  2196. warm ? "warm " : "", port1, status);
  2197. } else {
  2198. status = hub_port_wait_reset(hub, port1, udev, delay,
  2199. warm);
  2200. if (status && status != -ENOTCONN)
  2201. dev_dbg(hub->intfdev,
  2202. "port_wait_reset: err = %d\n",
  2203. status);
  2204. }
  2205. /* return on disconnect or reset */
  2206. if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
  2207. hub_port_finish_reset(hub, port1, udev, &status, warm);
  2208. goto done;
  2209. }
  2210. dev_dbg (hub->intfdev,
  2211. "port %d not enabled, trying %sreset again...\n",
  2212. port1, warm ? "warm " : "");
  2213. delay = HUB_LONG_RESET_TIME;
  2214. }
  2215. dev_err (hub->intfdev,
  2216. "Cannot enable port %i. Maybe the USB cable is bad?\n",
  2217. port1);
  2218. done:
  2219. if (!warm)
  2220. up_read(&ehci_cf_port_reset_rwsem);
  2221. return status;
  2222. }
  2223. /* Check if a port is power on */
  2224. static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
  2225. {
  2226. int ret = 0;
  2227. if (hub_is_superspeed(hub->hdev)) {
  2228. if (portstatus & USB_SS_PORT_STAT_POWER)
  2229. ret = 1;
  2230. } else {
  2231. if (portstatus & USB_PORT_STAT_POWER)
  2232. ret = 1;
  2233. }
  2234. return ret;
  2235. }
  2236. #ifdef CONFIG_PM
  2237. /* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
  2238. static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
  2239. {
  2240. int ret = 0;
  2241. if (hub_is_superspeed(hub->hdev)) {
  2242. if ((portstatus & USB_PORT_STAT_LINK_STATE)
  2243. == USB_SS_PORT_LS_U3)
  2244. ret = 1;
  2245. } else {
  2246. if (portstatus & USB_PORT_STAT_SUSPEND)
  2247. ret = 1;
  2248. }
  2249. return ret;
  2250. }
  2251. /* Determine whether the device on a port is ready for a normal resume,
  2252. * is ready for a reset-resume, or should be disconnected.
  2253. */
  2254. static int check_port_resume_type(struct usb_device *udev,
  2255. struct usb_hub *hub, int port1,
  2256. int status, unsigned portchange, unsigned portstatus)
  2257. {
  2258. /* Is the device still present? */
  2259. if (status || port_is_suspended(hub, portstatus) ||
  2260. !port_is_power_on(hub, portstatus) ||
  2261. !(portstatus & USB_PORT_STAT_CONNECTION)) {
  2262. if (status >= 0)
  2263. status = -ENODEV;
  2264. }
  2265. /* Can't do a normal resume if the port isn't enabled,
  2266. * so try a reset-resume instead.
  2267. */
  2268. else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
  2269. if (udev->persist_enabled)
  2270. udev->reset_resume = 1;
  2271. else
  2272. status = -ENODEV;
  2273. }
  2274. if (status) {
  2275. dev_dbg(hub->intfdev,
  2276. "port %d status %04x.%04x after resume, %d\n",
  2277. port1, portchange, portstatus, status);
  2278. } else if (udev->reset_resume) {
  2279. /* Late port handoff can set status-change bits */
  2280. if (portchange & USB_PORT_STAT_C_CONNECTION)
  2281. clear_port_feature(hub->hdev, port1,
  2282. USB_PORT_FEAT_C_CONNECTION);
  2283. if (portchange & USB_PORT_STAT_C_ENABLE)
  2284. clear_port_feature(hub->hdev, port1,
  2285. USB_PORT_FEAT_C_ENABLE);
  2286. }
  2287. return status;
  2288. }
  2289. #ifdef CONFIG_USB_SUSPEND
  2290. /*
  2291. * usb_port_suspend - suspend a usb device's upstream port
  2292. * @udev: device that's no longer in active use, not a root hub
  2293. * Context: must be able to sleep; device not locked; pm locks held
  2294. *
  2295. * Suspends a USB device that isn't in active use, conserving power.
  2296. * Devices may wake out of a suspend, if anything important happens,
  2297. * using the remote wakeup mechanism. They may also be taken out of
  2298. * suspend by the host, using usb_port_resume(). It's also routine
  2299. * to disconnect devices while they are suspended.
  2300. *
  2301. * This only affects the USB hardware for a device; its interfaces
  2302. * (and, for hubs, child devices) must already have been suspended.
  2303. *
  2304. * Selective port suspend reduces power; most suspended devices draw
  2305. * less than 500 uA. It's also used in OTG, along with remote wakeup.
  2306. * All devices below the suspended port are also suspended.
  2307. *
  2308. * Devices leave suspend state when the host wakes them up. Some devices
  2309. * also support "remote wakeup", where the device can activate the USB
  2310. * tree above them to deliver data, such as a keypress or packet. In
  2311. * some cases, this wakes the USB host.
  2312. *
  2313. * Suspending OTG devices may trigger HNP, if that's been enabled
  2314. * between a pair of dual-role devices. That will change roles, such
  2315. * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
  2316. *
  2317. * Devices on USB hub ports have only one "suspend" state, corresponding
  2318. * to ACPI D2, "may cause the device to lose some context".
  2319. * State transitions include:
  2320. *
  2321. * - suspend, resume ... when the VBUS power link stays live
  2322. * - suspend, disconnect ... VBUS lost
  2323. *
  2324. * Once VBUS drop breaks the circuit, the port it's using has to go through
  2325. * normal re-enumeration procedures, starting with enabling VBUS power.
  2326. * Other than re-initializing the hub (plug/unplug, except for root hubs),
  2327. * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
  2328. * timer, no SRP, no requests through sysfs.
  2329. *
  2330. * If CONFIG_USB_SUSPEND isn't enabled, devices only really suspend when
  2331. * the root hub for their bus goes into global suspend ... so we don't
  2332. * (falsely) update the device power state to say it suspended.
  2333. *
  2334. * Returns 0 on success, else negative errno.
  2335. */
  2336. int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
  2337. {
  2338. struct usb_hub *hub = hdev_to_hub(udev->parent);
  2339. int port1 = udev->portnum;
  2340. int status;
  2341. /* enable remote wakeup when appropriate; this lets the device
  2342. * wake up the upstream hub (including maybe the root hub).
  2343. *
  2344. * NOTE: OTG devices may issue remote wakeup (or SRP) even when
  2345. * we don't explicitly enable it here.
  2346. */
  2347. if (udev->do_remote_wakeup) {
  2348. if (!hub_is_superspeed(hub->hdev)) {
  2349. status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  2350. USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
  2351. USB_DEVICE_REMOTE_WAKEUP, 0,
  2352. NULL, 0,
  2353. USB_CTRL_SET_TIMEOUT);
  2354. } else {
  2355. /* Assume there's only one function on the USB 3.0
  2356. * device and enable remote wake for the first
  2357. * interface. FIXME if the interface association
  2358. * descriptor shows there's more than one function.
  2359. */
  2360. status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  2361. USB_REQ_SET_FEATURE,
  2362. USB_RECIP_INTERFACE,
  2363. USB_INTRF_FUNC_SUSPEND,
  2364. USB_INTRF_FUNC_SUSPEND_RW |
  2365. USB_INTRF_FUNC_SUSPEND_LP,
  2366. NULL, 0,
  2367. USB_CTRL_SET_TIMEOUT);
  2368. }
  2369. if (status) {
  2370. dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
  2371. status);
  2372. /* bail if autosuspend is requested */
  2373. if (PMSG_IS_AUTO(msg))
  2374. return status;
  2375. }
  2376. }
  2377. /* disable USB2 hardware LPM */
  2378. if (udev->usb2_hw_lpm_enabled == 1)
  2379. usb_set_usb2_hardware_lpm(udev, 0);
  2380. if (usb_unlocked_disable_lpm(udev)) {
  2381. dev_err(&udev->dev, "%s Failed to disable LPM before suspend\n.",
  2382. __func__);
  2383. return -ENOMEM;
  2384. }
  2385. /* see 7.1.7.6 */
  2386. if (hub_is_superspeed(hub->hdev))
  2387. status = set_port_feature(hub->hdev,
  2388. port1 | (USB_SS_PORT_LS_U3 << 3),
  2389. USB_PORT_FEAT_LINK_STATE);
  2390. else
  2391. status = set_port_feature(hub->hdev, port1,
  2392. USB_PORT_FEAT_SUSPEND);
  2393. if (status) {
  2394. dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n",
  2395. port1, status);
  2396. /* paranoia: "should not happen" */
  2397. if (udev->do_remote_wakeup)
  2398. (void) usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  2399. USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
  2400. USB_DEVICE_REMOTE_WAKEUP, 0,
  2401. NULL, 0,
  2402. USB_CTRL_SET_TIMEOUT);
  2403. /* Try to enable USB2 hardware LPM again */
  2404. if (udev->usb2_hw_lpm_capable == 1)
  2405. usb_set_usb2_hardware_lpm(udev, 1);
  2406. /* Try to enable USB3 LPM again */
  2407. usb_unlocked_enable_lpm(udev);
  2408. /* System sleep transitions should never fail */
  2409. if (!PMSG_IS_AUTO(msg))
  2410. status = 0;
  2411. } else {
  2412. /* device has up to 10 msec to fully suspend */
  2413. dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
  2414. (PMSG_IS_AUTO(msg) ? "auto-" : ""),
  2415. udev->do_remote_wakeup);
  2416. usb_set_device_state(udev, USB_STATE_SUSPENDED);
  2417. msleep(10);
  2418. }
  2419. usb_mark_last_busy(hub->hdev);
  2420. return status;
  2421. }
  2422. /*
  2423. * If the USB "suspend" state is in use (rather than "global suspend"),
  2424. * many devices will be individually taken out of suspend state using
  2425. * special "resume" signaling. This routine kicks in shortly after
  2426. * hardware resume signaling is finished, either because of selective
  2427. * resume (by host) or remote wakeup (by device) ... now see what changed
  2428. * in the tree that's rooted at this device.
  2429. *
  2430. * If @udev->reset_resume is set then the device is reset before the
  2431. * status check is done.
  2432. */
  2433. static int finish_port_resume(struct usb_device *udev)
  2434. {
  2435. int status = 0;
  2436. u16 devstatus;
  2437. /* caller owns the udev device lock */
  2438. dev_dbg(&udev->dev, "%s\n",
  2439. udev->reset_resume ? "finish reset-resume" : "finish resume");
  2440. /* usb ch9 identifies four variants of SUSPENDED, based on what
  2441. * state the device resumes to. Linux currently won't see the
  2442. * first two on the host side; they'd be inside hub_port_init()
  2443. * during many timeouts, but khubd can't suspend until later.
  2444. */
  2445. usb_set_device_state(udev, udev->actconfig
  2446. ? USB_STATE_CONFIGURED
  2447. : USB_STATE_ADDRESS);
  2448. /* 10.5.4.5 says not to reset a suspended port if the attached
  2449. * device is enabled for remote wakeup. Hence the reset
  2450. * operation is carried out here, after the port has been
  2451. * resumed.
  2452. */
  2453. if (udev->reset_resume)
  2454. retry_reset_resume:
  2455. status = usb_reset_and_verify_device(udev);
  2456. /* 10.5.4.5 says be sure devices in the tree are still there.
  2457. * For now let's assume the device didn't go crazy on resume,
  2458. * and device drivers will know about any resume quirks.
  2459. */
  2460. if (status == 0) {
  2461. devstatus = 0;
  2462. status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
  2463. if (status >= 0)
  2464. status = (status > 0 ? 0 : -ENODEV);
  2465. /* If a normal resume failed, try doing a reset-resume */
  2466. if (status && !udev->reset_resume && udev->persist_enabled) {
  2467. dev_dbg(&udev->dev, "retry with reset-resume\n");
  2468. udev->reset_resume = 1;
  2469. goto retry_reset_resume;
  2470. }
  2471. }
  2472. if (status) {
  2473. dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
  2474. status);
  2475. } else if (udev->actconfig) {
  2476. le16_to_cpus(&devstatus);
  2477. if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP)) {
  2478. status = usb_control_msg(udev,
  2479. usb_sndctrlpipe(udev, 0),
  2480. USB_REQ_CLEAR_FEATURE,
  2481. USB_RECIP_DEVICE,
  2482. USB_DEVICE_REMOTE_WAKEUP, 0,
  2483. NULL, 0,
  2484. USB_CTRL_SET_TIMEOUT);
  2485. if (status)
  2486. dev_dbg(&udev->dev,
  2487. "disable remote wakeup, status %d\n",
  2488. status);
  2489. }
  2490. status = 0;
  2491. }
  2492. return status;
  2493. }
  2494. /*
  2495. * usb_port_resume - re-activate a suspended usb device's upstream port
  2496. * @udev: device to re-activate, not a root hub
  2497. * Context: must be able to sleep; device not locked; pm locks held
  2498. *
  2499. * This will re-activate the suspended device, increasing power usage
  2500. * while letting drivers communicate again with its endpoints.
  2501. * USB resume explicitly guarantees that the power session between
  2502. * the host and the device is the same as it was when the device
  2503. * suspended.
  2504. *
  2505. * If @udev->reset_resume is set then this routine won't check that the
  2506. * port is still enabled. Furthermore, finish_port_resume() above will
  2507. * reset @udev. The end result is that a broken power session can be
  2508. * recovered and @udev will appear to persist across a loss of VBUS power.
  2509. *
  2510. * For example, if a host controller doesn't maintain VBUS suspend current
  2511. * during a system sleep or is reset when the system wakes up, all the USB
  2512. * power sessions below it will be broken. This is especially troublesome
  2513. * for mass-storage devices containing mounted filesystems, since the
  2514. * device will appear to have disconnected and all the memory mappings
  2515. * to it will be lost. Using the USB_PERSIST facility, the device can be
  2516. * made to appear as if it had not disconnected.
  2517. *
  2518. * This facility can be dangerous. Although usb_reset_and_verify_device() makes
  2519. * every effort to insure that the same device is present after the
  2520. * reset as before, it cannot provide a 100% guarantee. Furthermore it's
  2521. * quite possible for a device to remain unaltered but its media to be
  2522. * changed. If the user replaces a flash memory card while the system is
  2523. * asleep, he will have only himself to blame when the filesystem on the
  2524. * new card is corrupted and the system crashes.
  2525. *
  2526. * Returns 0 on success, else negative errno.
  2527. */
  2528. int usb_port_resume(struct usb_device *udev, pm_message_t msg)
  2529. {
  2530. struct usb_hub *hub = hdev_to_hub(udev->parent);
  2531. int port1 = udev->portnum;
  2532. int status;
  2533. u16 portchange, portstatus;
  2534. /* Skip the initial Clear-Suspend step for a remote wakeup */
  2535. status = hub_port_status(hub, port1, &portstatus, &portchange);
  2536. if (status == 0 && !port_is_suspended(hub, portstatus))
  2537. goto SuspendCleared;
  2538. // dev_dbg(hub->intfdev, "resume port %d\n", port1);
  2539. set_bit(port1, hub->busy_bits);
  2540. /* see 7.1.7.7; affects power usage, but not budgeting */
  2541. if (hub_is_superspeed(hub->hdev))
  2542. status = set_port_feature(hub->hdev,
  2543. port1 | (USB_SS_PORT_LS_U0 << 3),
  2544. USB_PORT_FEAT_LINK_STATE);
  2545. else
  2546. status = clear_port_feature(hub->hdev,
  2547. port1, USB_PORT_FEAT_SUSPEND);
  2548. if (status) {
  2549. dev_dbg(hub->intfdev, "can't resume port %d, status %d\n",
  2550. port1, status);
  2551. } else {
  2552. /* drive resume for at least 20 msec */
  2553. dev_dbg(&udev->dev, "usb %sresume\n",
  2554. (PMSG_IS_AUTO(msg) ? "auto-" : ""));
  2555. msleep(25);
  2556. /* Virtual root hubs can trigger on GET_PORT_STATUS to
  2557. * stop resume signaling. Then finish the resume
  2558. * sequence.
  2559. */
  2560. status = hub_port_status(hub, port1, &portstatus, &portchange);
  2561. /* TRSMRCY = 10 msec */
  2562. msleep(10);
  2563. }
  2564. SuspendCleared:
  2565. if (status == 0) {
  2566. if (hub_is_superspeed(hub->hdev)) {
  2567. if (portchange & USB_PORT_STAT_C_LINK_STATE)
  2568. clear_port_feature(hub->hdev, port1,
  2569. USB_PORT_FEAT_C_PORT_LINK_STATE);
  2570. } else {
  2571. if (portchange & USB_PORT_STAT_C_SUSPEND)
  2572. clear_port_feature(hub->hdev, port1,
  2573. USB_PORT_FEAT_C_SUSPEND);
  2574. }
  2575. }
  2576. clear_bit(port1, hub->busy_bits);
  2577. status = check_port_resume_type(udev,
  2578. hub, port1, status, portchange, portstatus);
  2579. if (status == 0)
  2580. status = finish_port_resume(udev);
  2581. if (status < 0) {
  2582. dev_dbg(&udev->dev, "can't resume, status %d\n", status);
  2583. hub_port_logical_disconnect(hub, port1);
  2584. } else {
  2585. /* Try to enable USB2 hardware LPM */
  2586. if (udev->usb2_hw_lpm_capable == 1)
  2587. usb_set_usb2_hardware_lpm(udev, 1);
  2588. /* Try to enable USB3 LPM */
  2589. usb_unlocked_enable_lpm(udev);
  2590. }
  2591. return status;
  2592. }
  2593. /* caller has locked udev */
  2594. int usb_remote_wakeup(struct usb_device *udev)
  2595. {
  2596. int status = 0;
  2597. if (udev->state == USB_STATE_SUSPENDED) {
  2598. dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
  2599. status = usb_autoresume_device(udev);
  2600. if (status == 0) {
  2601. /* Let the drivers do their thing, then... */
  2602. usb_autosuspend_device(udev);
  2603. }
  2604. }
  2605. return status;
  2606. }
  2607. #else /* CONFIG_USB_SUSPEND */
  2608. /* When CONFIG_USB_SUSPEND isn't set, we never suspend or resume any ports. */
  2609. int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
  2610. {
  2611. return 0;
  2612. }
  2613. /* However we may need to do a reset-resume */
  2614. int usb_port_resume(struct usb_device *udev, pm_message_t msg)
  2615. {
  2616. struct usb_hub *hub = hdev_to_hub(udev->parent);
  2617. int port1 = udev->portnum;
  2618. int status;
  2619. u16 portchange, portstatus;
  2620. status = hub_port_status(hub, port1, &portstatus, &portchange);
  2621. status = check_port_resume_type(udev,
  2622. hub, port1, status, portchange, portstatus);
  2623. if (status) {
  2624. dev_dbg(&udev->dev, "can't resume, status %d\n", status);
  2625. hub_port_logical_disconnect(hub, port1);
  2626. } else if (udev->reset_resume) {
  2627. dev_dbg(&udev->dev, "reset-resume\n");
  2628. status = usb_reset_and_verify_device(udev);
  2629. }
  2630. return status;
  2631. }
  2632. #endif
  2633. static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
  2634. {
  2635. struct usb_hub *hub = usb_get_intfdata (intf);
  2636. struct usb_device *hdev = hub->hdev;
  2637. unsigned port1;
  2638. int status;
  2639. /* Warn if children aren't already suspended */
  2640. for (port1 = 1; port1 <= hdev->maxchild; port1++) {
  2641. struct usb_device *udev;
  2642. udev = hdev->children [port1-1];
  2643. if (udev && udev->can_submit) {
  2644. dev_warn(&intf->dev, "port %d nyet suspended\n", port1);
  2645. if (PMSG_IS_AUTO(msg))
  2646. return -EBUSY;
  2647. }
  2648. }
  2649. if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
  2650. /* Enable hub to send remote wakeup for all ports. */
  2651. for (port1 = 1; port1 <= hdev->maxchild; port1++) {
  2652. status = set_port_feature(hdev,
  2653. port1 |
  2654. USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
  2655. USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
  2656. USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
  2657. USB_PORT_FEAT_REMOTE_WAKE_MASK);
  2658. }
  2659. }
  2660. dev_dbg(&intf->dev, "%s\n", __func__);
  2661. /* stop khubd and related activity */
  2662. hub_quiesce(hub, HUB_SUSPEND);
  2663. return 0;
  2664. }
  2665. static int hub_resume(struct usb_interface *intf)
  2666. {
  2667. struct usb_hub *hub = usb_get_intfdata(intf);
  2668. dev_dbg(&intf->dev, "%s\n", __func__);
  2669. hub_activate(hub, HUB_RESUME);
  2670. return 0;
  2671. }
  2672. static int hub_reset_resume(struct usb_interface *intf)
  2673. {
  2674. struct usb_hub *hub = usb_get_intfdata(intf);
  2675. dev_dbg(&intf->dev, "%s\n", __func__);
  2676. hub_activate(hub, HUB_RESET_RESUME);
  2677. return 0;
  2678. }
  2679. /**
  2680. * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
  2681. * @rhdev: struct usb_device for the root hub
  2682. *
  2683. * The USB host controller driver calls this function when its root hub
  2684. * is resumed and Vbus power has been interrupted or the controller
  2685. * has been reset. The routine marks @rhdev as having lost power.
  2686. * When the hub driver is resumed it will take notice and carry out
  2687. * power-session recovery for all the "USB-PERSIST"-enabled child devices;
  2688. * the others will be disconnected.
  2689. */
  2690. void usb_root_hub_lost_power(struct usb_device *rhdev)
  2691. {
  2692. dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
  2693. rhdev->reset_resume = 1;
  2694. }
  2695. EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
  2696. static const char * const usb3_lpm_names[] = {
  2697. "U0",
  2698. "U1",
  2699. "U2",
  2700. "U3",
  2701. };
  2702. /*
  2703. * Send a Set SEL control transfer to the device, prior to enabling
  2704. * device-initiated U1 or U2. This lets the device know the exit latencies from
  2705. * the time the device initiates a U1 or U2 exit, to the time it will receive a
  2706. * packet from the host.
  2707. *
  2708. * This function will fail if the SEL or PEL values for udev are greater than
  2709. * the maximum allowed values for the link state to be enabled.
  2710. */
  2711. static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state)
  2712. {
  2713. struct usb_set_sel_req *sel_values;
  2714. unsigned long long u1_sel;
  2715. unsigned long long u1_pel;
  2716. unsigned long long u2_sel;
  2717. unsigned long long u2_pel;
  2718. int ret;
  2719. /* Convert SEL and PEL stored in ns to us */
  2720. u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
  2721. u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
  2722. u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
  2723. u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
  2724. /*
  2725. * Make sure that the calculated SEL and PEL values for the link
  2726. * state we're enabling aren't bigger than the max SEL/PEL
  2727. * value that will fit in the SET SEL control transfer.
  2728. * Otherwise the device would get an incorrect idea of the exit
  2729. * latency for the link state, and could start a device-initiated
  2730. * U1/U2 when the exit latencies are too high.
  2731. */
  2732. if ((state == USB3_LPM_U1 &&
  2733. (u1_sel > USB3_LPM_MAX_U1_SEL_PEL ||
  2734. u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) ||
  2735. (state == USB3_LPM_U2 &&
  2736. (u2_sel > USB3_LPM_MAX_U2_SEL_PEL ||
  2737. u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) {
  2738. dev_dbg(&udev->dev, "Device-initiated %s disabled due "
  2739. "to long SEL %llu ms or PEL %llu ms\n",
  2740. usb3_lpm_names[state], u1_sel, u1_pel);
  2741. return -EINVAL;
  2742. }
  2743. /*
  2744. * If we're enabling device-initiated LPM for one link state,
  2745. * but the other link state has a too high SEL or PEL value,
  2746. * just set those values to the max in the Set SEL request.
  2747. */
  2748. if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL)
  2749. u1_sel = USB3_LPM_MAX_U1_SEL_PEL;
  2750. if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL)
  2751. u1_pel = USB3_LPM_MAX_U1_SEL_PEL;
  2752. if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL)
  2753. u2_sel = USB3_LPM_MAX_U2_SEL_PEL;
  2754. if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL)
  2755. u2_pel = USB3_LPM_MAX_U2_SEL_PEL;
  2756. /*
  2757. * usb_enable_lpm() can be called as part of a failed device reset,
  2758. * which may be initiated by an error path of a mass storage driver.
  2759. * Therefore, use GFP_NOIO.
  2760. */
  2761. sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO);
  2762. if (!sel_values)
  2763. return -ENOMEM;
  2764. sel_values->u1_sel = u1_sel;
  2765. sel_values->u1_pel = u1_pel;
  2766. sel_values->u2_sel = cpu_to_le16(u2_sel);
  2767. sel_values->u2_pel = cpu_to_le16(u2_pel);
  2768. ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  2769. USB_REQ_SET_SEL,
  2770. USB_RECIP_DEVICE,
  2771. 0, 0,
  2772. sel_values, sizeof *(sel_values),
  2773. USB_CTRL_SET_TIMEOUT);
  2774. kfree(sel_values);
  2775. return ret;
  2776. }
  2777. /*
  2778. * Enable or disable device-initiated U1 or U2 transitions.
  2779. */
  2780. static int usb_set_device_initiated_lpm(struct usb_device *udev,
  2781. enum usb3_link_state state, bool enable)
  2782. {
  2783. int ret;
  2784. int feature;
  2785. switch (state) {
  2786. case USB3_LPM_U1:
  2787. feature = USB_DEVICE_U1_ENABLE;
  2788. break;
  2789. case USB3_LPM_U2:
  2790. feature = USB_DEVICE_U2_ENABLE;
  2791. break;
  2792. default:
  2793. dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n",
  2794. __func__, enable ? "enable" : "disable");
  2795. return -EINVAL;
  2796. }
  2797. if (udev->state != USB_STATE_CONFIGURED) {
  2798. dev_dbg(&udev->dev, "%s: Can't %s %s state "
  2799. "for unconfigured device.\n",
  2800. __func__, enable ? "enable" : "disable",
  2801. usb3_lpm_names[state]);
  2802. return 0;
  2803. }
  2804. if (enable) {
  2805. /*
  2806. * First, let the device know about the exit latencies
  2807. * associated with the link state we're about to enable.
  2808. */
  2809. ret = usb_req_set_sel(udev, state);
  2810. if (ret < 0) {
  2811. dev_warn(&udev->dev, "Set SEL for device-initiated "
  2812. "%s failed.\n", usb3_lpm_names[state]);
  2813. return -EBUSY;
  2814. }
  2815. /*
  2816. * Now send the control transfer to enable device-initiated LPM
  2817. * for either U1 or U2.
  2818. */
  2819. ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  2820. USB_REQ_SET_FEATURE,
  2821. USB_RECIP_DEVICE,
  2822. feature,
  2823. 0, NULL, 0,
  2824. USB_CTRL_SET_TIMEOUT);
  2825. } else {
  2826. ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  2827. USB_REQ_CLEAR_FEATURE,
  2828. USB_RECIP_DEVICE,
  2829. feature,
  2830. 0, NULL, 0,
  2831. USB_CTRL_SET_TIMEOUT);
  2832. }
  2833. if (ret < 0) {
  2834. dev_warn(&udev->dev, "%s of device-initiated %s failed.\n",
  2835. enable ? "Enable" : "Disable",
  2836. usb3_lpm_names[state]);
  2837. return -EBUSY;
  2838. }
  2839. return 0;
  2840. }
  2841. static int usb_set_lpm_timeout(struct usb_device *udev,
  2842. enum usb3_link_state state, int timeout)
  2843. {
  2844. int ret;
  2845. int feature;
  2846. switch (state) {
  2847. case USB3_LPM_U1:
  2848. feature = USB_PORT_FEAT_U1_TIMEOUT;
  2849. break;
  2850. case USB3_LPM_U2:
  2851. feature = USB_PORT_FEAT_U2_TIMEOUT;
  2852. break;
  2853. default:
  2854. dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n",
  2855. __func__);
  2856. return -EINVAL;
  2857. }
  2858. if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT &&
  2859. timeout != USB3_LPM_DEVICE_INITIATED) {
  2860. dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, "
  2861. "which is a reserved value.\n",
  2862. usb3_lpm_names[state], timeout);
  2863. return -EINVAL;
  2864. }
  2865. ret = set_port_feature(udev->parent,
  2866. USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum,
  2867. feature);
  2868. if (ret < 0) {
  2869. dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x,"
  2870. "error code %i\n", usb3_lpm_names[state],
  2871. timeout, ret);
  2872. return -EBUSY;
  2873. }
  2874. if (state == USB3_LPM_U1)
  2875. udev->u1_params.timeout = timeout;
  2876. else
  2877. udev->u2_params.timeout = timeout;
  2878. return 0;
  2879. }
  2880. /*
  2881. * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated
  2882. * U1/U2 entry.
  2883. *
  2884. * We will attempt to enable U1 or U2, but there are no guarantees that the
  2885. * control transfers to set the hub timeout or enable device-initiated U1/U2
  2886. * will be successful.
  2887. *
  2888. * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI
  2889. * driver know about it. If that call fails, it should be harmless, and just
  2890. * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency.
  2891. */
  2892. static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
  2893. enum usb3_link_state state)
  2894. {
  2895. int timeout;
  2896. /* We allow the host controller to set the U1/U2 timeout internally
  2897. * first, so that it can change its schedule to account for the
  2898. * additional latency to send data to a device in a lower power
  2899. * link state.
  2900. */
  2901. timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state);
  2902. /* xHCI host controller doesn't want to enable this LPM state. */
  2903. if (timeout == 0)
  2904. return;
  2905. if (timeout < 0) {
  2906. dev_warn(&udev->dev, "Could not enable %s link state, "
  2907. "xHCI error %i.\n", usb3_lpm_names[state],
  2908. timeout);
  2909. return;
  2910. }
  2911. if (usb_set_lpm_timeout(udev, state, timeout))
  2912. /* If we can't set the parent hub U1/U2 timeout,
  2913. * device-initiated LPM won't be allowed either, so let the xHCI
  2914. * host know that this link state won't be enabled.
  2915. */
  2916. hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
  2917. /* Only a configured device will accept the Set Feature U1/U2_ENABLE */
  2918. else if (udev->actconfig)
  2919. usb_set_device_initiated_lpm(udev, state, true);
  2920. }
  2921. /*
  2922. * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated
  2923. * U1/U2 entry.
  2924. *
  2925. * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry.
  2926. * If zero is returned, the parent will not allow the link to go into U1/U2.
  2927. *
  2928. * If zero is returned, device-initiated U1/U2 entry may still be enabled, but
  2929. * it won't have an effect on the bus link state because the parent hub will
  2930. * still disallow device-initiated U1/U2 entry.
  2931. *
  2932. * If zero is returned, the xHCI host controller may still think U1/U2 entry is
  2933. * possible. The result will be slightly more bus bandwidth will be taken up
  2934. * (to account for U1/U2 exit latency), but it should be harmless.
  2935. */
  2936. static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
  2937. enum usb3_link_state state)
  2938. {
  2939. int feature;
  2940. switch (state) {
  2941. case USB3_LPM_U1:
  2942. feature = USB_PORT_FEAT_U1_TIMEOUT;
  2943. break;
  2944. case USB3_LPM_U2:
  2945. feature = USB_PORT_FEAT_U2_TIMEOUT;
  2946. break;
  2947. default:
  2948. dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n",
  2949. __func__);
  2950. return -EINVAL;
  2951. }
  2952. if (usb_set_lpm_timeout(udev, state, 0))
  2953. return -EBUSY;
  2954. usb_set_device_initiated_lpm(udev, state, false);
  2955. if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state))
  2956. dev_warn(&udev->dev, "Could not disable xHCI %s timeout, "
  2957. "bus schedule bandwidth may be impacted.\n",
  2958. usb3_lpm_names[state]);
  2959. return 0;
  2960. }
  2961. /*
  2962. * Disable hub-initiated and device-initiated U1 and U2 entry.
  2963. * Caller must own the bandwidth_mutex.
  2964. *
  2965. * This will call usb_enable_lpm() on failure, which will decrement
  2966. * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero.
  2967. */
  2968. int usb_disable_lpm(struct usb_device *udev)
  2969. {
  2970. struct usb_hcd *hcd;
  2971. if (!udev || !udev->parent ||
  2972. udev->speed != USB_SPEED_SUPER ||
  2973. !udev->lpm_capable)
  2974. return 0;
  2975. hcd = bus_to_hcd(udev->bus);
  2976. if (!hcd || !hcd->driver->disable_usb3_lpm_timeout)
  2977. return 0;
  2978. udev->lpm_disable_count++;
  2979. if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0))
  2980. return 0;
  2981. /* If LPM is enabled, attempt to disable it. */
  2982. if (usb_disable_link_state(hcd, udev, USB3_LPM_U1))
  2983. goto enable_lpm;
  2984. if (usb_disable_link_state(hcd, udev, USB3_LPM_U2))
  2985. goto enable_lpm;
  2986. return 0;
  2987. enable_lpm:
  2988. usb_enable_lpm(udev);
  2989. return -EBUSY;
  2990. }
  2991. EXPORT_SYMBOL_GPL(usb_disable_lpm);
  2992. /* Grab the bandwidth_mutex before calling usb_disable_lpm() */
  2993. int usb_unlocked_disable_lpm(struct usb_device *udev)
  2994. {
  2995. struct usb_hcd *hcd = bus_to_hcd(udev->bus);
  2996. int ret;
  2997. if (!hcd)
  2998. return -EINVAL;
  2999. mutex_lock(hcd->bandwidth_mutex);
  3000. ret = usb_disable_lpm(udev);
  3001. mutex_unlock(hcd->bandwidth_mutex);
  3002. return ret;
  3003. }
  3004. EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
  3005. /*
  3006. * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The
  3007. * xHCI host policy may prevent U1 or U2 from being enabled.
  3008. *
  3009. * Other callers may have disabled link PM, so U1 and U2 entry will be disabled
  3010. * until the lpm_disable_count drops to zero. Caller must own the
  3011. * bandwidth_mutex.
  3012. */
  3013. void usb_enable_lpm(struct usb_device *udev)
  3014. {
  3015. struct usb_hcd *hcd;
  3016. if (!udev || !udev->parent ||
  3017. udev->speed != USB_SPEED_SUPER ||
  3018. !udev->lpm_capable)
  3019. return;
  3020. udev->lpm_disable_count--;
  3021. hcd = bus_to_hcd(udev->bus);
  3022. /* Double check that we can both enable and disable LPM.
  3023. * Device must be configured to accept set feature U1/U2 timeout.
  3024. */
  3025. if (!hcd || !hcd->driver->enable_usb3_lpm_timeout ||
  3026. !hcd->driver->disable_usb3_lpm_timeout)
  3027. return;
  3028. if (udev->lpm_disable_count > 0)
  3029. return;
  3030. usb_enable_link_state(hcd, udev, USB3_LPM_U1);
  3031. usb_enable_link_state(hcd, udev, USB3_LPM_U2);
  3032. }
  3033. EXPORT_SYMBOL_GPL(usb_enable_lpm);
  3034. /* Grab the bandwidth_mutex before calling usb_enable_lpm() */
  3035. void usb_unlocked_enable_lpm(struct usb_device *udev)
  3036. {
  3037. struct usb_hcd *hcd = bus_to_hcd(udev->bus);
  3038. if (!hcd)
  3039. return;
  3040. mutex_lock(hcd->bandwidth_mutex);
  3041. usb_enable_lpm(udev);
  3042. mutex_unlock(hcd->bandwidth_mutex);
  3043. }
  3044. EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
  3045. #else /* CONFIG_PM */
  3046. #define hub_suspend NULL
  3047. #define hub_resume NULL
  3048. #define hub_reset_resume NULL
  3049. int usb_disable_lpm(struct usb_device *udev)
  3050. {
  3051. return 0;
  3052. }
  3053. EXPORT_SYMBOL_GPL(usb_disable_lpm);
  3054. void usb_enable_lpm(struct usb_device *udev) { }
  3055. EXPORT_SYMBOL_GPL(usb_enable_lpm);
  3056. int usb_unlocked_disable_lpm(struct usb_device *udev)
  3057. {
  3058. return 0;
  3059. }
  3060. EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
  3061. void usb_unlocked_enable_lpm(struct usb_device *udev) { }
  3062. EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
  3063. #endif
  3064. /* USB 2.0 spec, 7.1.7.3 / fig 7-29:
  3065. *
  3066. * Between connect detection and reset signaling there must be a delay
  3067. * of 100ms at least for debounce and power-settling. The corresponding
  3068. * timer shall restart whenever the downstream port detects a disconnect.
  3069. *
  3070. * Apparently there are some bluetooth and irda-dongles and a number of
  3071. * low-speed devices for which this debounce period may last over a second.
  3072. * Not covered by the spec - but easy to deal with.
  3073. *
  3074. * This implementation uses a 1500ms total debounce timeout; if the
  3075. * connection isn't stable by then it returns -ETIMEDOUT. It checks
  3076. * every 25ms for transient disconnects. When the port status has been
  3077. * unchanged for 100ms it returns the port status.
  3078. */
  3079. static int hub_port_debounce(struct usb_hub *hub, int port1)
  3080. {
  3081. int ret;
  3082. int total_time, stable_time = 0;
  3083. u16 portchange, portstatus;
  3084. unsigned connection = 0xffff;
  3085. for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
  3086. ret = hub_port_status(hub, port1, &portstatus, &portchange);
  3087. if (ret < 0)
  3088. return ret;
  3089. if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
  3090. (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
  3091. stable_time += HUB_DEBOUNCE_STEP;
  3092. if (stable_time >= HUB_DEBOUNCE_STABLE)
  3093. break;
  3094. } else {
  3095. stable_time = 0;
  3096. connection = portstatus & USB_PORT_STAT_CONNECTION;
  3097. }
  3098. if (portchange & USB_PORT_STAT_C_CONNECTION) {
  3099. clear_port_feature(hub->hdev, port1,
  3100. USB_PORT_FEAT_C_CONNECTION);
  3101. }
  3102. if (total_time >= HUB_DEBOUNCE_TIMEOUT)
  3103. break;
  3104. msleep(HUB_DEBOUNCE_STEP);
  3105. }
  3106. dev_dbg (hub->intfdev,
  3107. "debounce: port %d: total %dms stable %dms status 0x%x\n",
  3108. port1, total_time, stable_time, portstatus);
  3109. if (stable_time < HUB_DEBOUNCE_STABLE)
  3110. return -ETIMEDOUT;
  3111. return portstatus;
  3112. }
  3113. void usb_ep0_reinit(struct usb_device *udev)
  3114. {
  3115. usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
  3116. usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
  3117. usb_enable_endpoint(udev, &udev->ep0, true);
  3118. }
  3119. EXPORT_SYMBOL_GPL(usb_ep0_reinit);
  3120. #define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
  3121. #define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
  3122. static int hub_set_address(struct usb_device *udev, int devnum)
  3123. {
  3124. int retval;
  3125. struct usb_hcd *hcd = bus_to_hcd(udev->bus);
  3126. /*
  3127. * The host controller will choose the device address,
  3128. * instead of the core having chosen it earlier
  3129. */
  3130. if (!hcd->driver->address_device && devnum <= 1)
  3131. return -EINVAL;
  3132. if (udev->state == USB_STATE_ADDRESS)
  3133. return 0;
  3134. if (udev->state != USB_STATE_DEFAULT)
  3135. return -EINVAL;
  3136. if (hcd->driver->address_device)
  3137. retval = hcd->driver->address_device(hcd, udev);
  3138. else
  3139. retval = usb_control_msg(udev, usb_sndaddr0pipe(),
  3140. USB_REQ_SET_ADDRESS, 0, devnum, 0,
  3141. NULL, 0, USB_CTRL_SET_TIMEOUT);
  3142. if (retval == 0) {
  3143. update_devnum(udev, devnum);
  3144. /* Device now using proper address. */
  3145. usb_set_device_state(udev, USB_STATE_ADDRESS);
  3146. usb_ep0_reinit(udev);
  3147. }
  3148. return retval;
  3149. }
  3150. /* Reset device, (re)assign address, get device descriptor.
  3151. * Device connection must be stable, no more debouncing needed.
  3152. * Returns device in USB_STATE_ADDRESS, except on error.
  3153. *
  3154. * If this is called for an already-existing device (as part of
  3155. * usb_reset_and_verify_device), the caller must own the device lock. For a
  3156. * newly detected device that is not accessible through any global
  3157. * pointers, it's not necessary to lock the device.
  3158. */
  3159. static int
  3160. hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
  3161. int retry_counter)
  3162. {
  3163. static DEFINE_MUTEX(usb_address0_mutex);
  3164. struct usb_device *hdev = hub->hdev;
  3165. struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
  3166. int i, j, retval;
  3167. unsigned delay = HUB_SHORT_RESET_TIME;
  3168. enum usb_device_speed oldspeed = udev->speed;
  3169. const char *speed;
  3170. int devnum = udev->devnum;
  3171. /* root hub ports have a slightly longer reset period
  3172. * (from USB 2.0 spec, section 7.1.7.5)
  3173. */
  3174. if (!hdev->parent) {
  3175. delay = HUB_ROOT_RESET_TIME;
  3176. if (port1 == hdev->bus->otg_port)
  3177. hdev->bus->b_hnp_enable = 0;
  3178. }
  3179. /* Some low speed devices have problems with the quick delay, so */
  3180. /* be a bit pessimistic with those devices. RHbug #23670 */
  3181. if (oldspeed == USB_SPEED_LOW)
  3182. delay = HUB_LONG_RESET_TIME;
  3183. mutex_lock(&usb_address0_mutex);
  3184. /* Reset the device; full speed may morph to high speed */
  3185. /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
  3186. retval = hub_port_reset(hub, port1, udev, delay, false);
  3187. if (retval < 0) /* error or disconnect */
  3188. goto fail;
  3189. /* success, speed is known */
  3190. retval = -ENODEV;
  3191. if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
  3192. dev_dbg(&udev->dev, "device reset changed speed!\n");
  3193. goto fail;
  3194. }
  3195. oldspeed = udev->speed;
  3196. /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
  3197. * it's fixed size except for full speed devices.
  3198. * For Wireless USB devices, ep0 max packet is always 512 (tho
  3199. * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
  3200. */
  3201. switch (udev->speed) {
  3202. case USB_SPEED_SUPER:
  3203. case USB_SPEED_WIRELESS: /* fixed at 512 */
  3204. udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
  3205. break;
  3206. case USB_SPEED_HIGH: /* fixed at 64 */
  3207. udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
  3208. break;
  3209. case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
  3210. /* to determine the ep0 maxpacket size, try to read
  3211. * the device descriptor to get bMaxPacketSize0 and
  3212. * then correct our initial guess.
  3213. */
  3214. udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
  3215. break;
  3216. case USB_SPEED_LOW: /* fixed at 8 */
  3217. udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
  3218. break;
  3219. default:
  3220. goto fail;
  3221. }
  3222. if (udev->speed == USB_SPEED_WIRELESS)
  3223. speed = "variable speed Wireless";
  3224. else
  3225. speed = usb_speed_string(udev->speed);
  3226. if (udev->speed != USB_SPEED_SUPER)
  3227. dev_info(&udev->dev,
  3228. "%s %s USB device number %d using %s\n",
  3229. (udev->config) ? "reset" : "new", speed,
  3230. devnum, udev->bus->controller->driver->name);
  3231. /* Set up TT records, if needed */
  3232. if (hdev->tt) {
  3233. udev->tt = hdev->tt;
  3234. udev->ttport = hdev->ttport;
  3235. } else if (udev->speed != USB_SPEED_HIGH
  3236. && hdev->speed == USB_SPEED_HIGH) {
  3237. if (!hub->tt.hub) {
  3238. dev_err(&udev->dev, "parent hub has no TT\n");
  3239. retval = -EINVAL;
  3240. goto fail;
  3241. }
  3242. udev->tt = &hub->tt;
  3243. udev->ttport = port1;
  3244. }
  3245. /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
  3246. * Because device hardware and firmware is sometimes buggy in
  3247. * this area, and this is how Linux has done it for ages.
  3248. * Change it cautiously.
  3249. *
  3250. * NOTE: If USE_NEW_SCHEME() is true we will start by issuing
  3251. * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
  3252. * so it may help with some non-standards-compliant devices.
  3253. * Otherwise we start with SET_ADDRESS and then try to read the
  3254. * first 8 bytes of the device descriptor to get the ep0 maxpacket
  3255. * value.
  3256. */
  3257. for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
  3258. if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3)) {
  3259. struct usb_device_descriptor *buf;
  3260. int r = 0;
  3261. #define GET_DESCRIPTOR_BUFSIZE 64
  3262. buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
  3263. if (!buf) {
  3264. retval = -ENOMEM;
  3265. continue;
  3266. }
  3267. /* Retry on all errors; some devices are flakey.
  3268. * 255 is for WUSB devices, we actually need to use
  3269. * 512 (WUSB1.0[4.8.1]).
  3270. */
  3271. for (j = 0; j < 3; ++j) {
  3272. buf->bMaxPacketSize0 = 0;
  3273. r = usb_control_msg(udev, usb_rcvaddr0pipe(),
  3274. USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
  3275. USB_DT_DEVICE << 8, 0,
  3276. buf, GET_DESCRIPTOR_BUFSIZE,
  3277. initial_descriptor_timeout);
  3278. switch (buf->bMaxPacketSize0) {
  3279. case 8: case 16: case 32: case 64: case 255:
  3280. if (buf->bDescriptorType ==
  3281. USB_DT_DEVICE) {
  3282. r = 0;
  3283. break;
  3284. }
  3285. /* FALL THROUGH */
  3286. default:
  3287. if (r == 0)
  3288. r = -EPROTO;
  3289. break;
  3290. }
  3291. if (r == 0)
  3292. break;
  3293. }
  3294. udev->descriptor.bMaxPacketSize0 =
  3295. buf->bMaxPacketSize0;
  3296. kfree(buf);
  3297. retval = hub_port_reset(hub, port1, udev, delay, false);
  3298. if (retval < 0) /* error or disconnect */
  3299. goto fail;
  3300. if (oldspeed != udev->speed) {
  3301. dev_dbg(&udev->dev,
  3302. "device reset changed speed!\n");
  3303. retval = -ENODEV;
  3304. goto fail;
  3305. }
  3306. if (r) {
  3307. dev_err(&udev->dev,
  3308. "device descriptor read/64, error %d\n",
  3309. r);
  3310. retval = -EMSGSIZE;
  3311. continue;
  3312. }
  3313. #undef GET_DESCRIPTOR_BUFSIZE
  3314. }
  3315. /*
  3316. * If device is WUSB, we already assigned an
  3317. * unauthorized address in the Connect Ack sequence;
  3318. * authorization will assign the final address.
  3319. */
  3320. if (udev->wusb == 0) {
  3321. for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
  3322. retval = hub_set_address(udev, devnum);
  3323. if (retval >= 0)
  3324. break;
  3325. msleep(200);
  3326. }
  3327. if (retval < 0) {
  3328. dev_err(&udev->dev,
  3329. "device not accepting address %d, error %d\n",
  3330. devnum, retval);
  3331. goto fail;
  3332. }
  3333. if (udev->speed == USB_SPEED_SUPER) {
  3334. devnum = udev->devnum;
  3335. dev_info(&udev->dev,
  3336. "%s SuperSpeed USB device number %d using %s\n",
  3337. (udev->config) ? "reset" : "new",
  3338. devnum, udev->bus->controller->driver->name);
  3339. }
  3340. /* cope with hardware quirkiness:
  3341. * - let SET_ADDRESS settle, some device hardware wants it
  3342. * - read ep0 maxpacket even for high and low speed,
  3343. */
  3344. msleep(10);
  3345. if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3))
  3346. break;
  3347. }
  3348. retval = usb_get_device_descriptor(udev, 8);
  3349. if (retval < 8) {
  3350. dev_err(&udev->dev,
  3351. "device descriptor read/8, error %d\n",
  3352. retval);
  3353. if (retval >= 0)
  3354. retval = -EMSGSIZE;
  3355. } else {
  3356. retval = 0;
  3357. break;
  3358. }
  3359. }
  3360. if (retval)
  3361. goto fail;
  3362. /*
  3363. * Some superspeed devices have finished the link training process
  3364. * and attached to a superspeed hub port, but the device descriptor
  3365. * got from those devices show they aren't superspeed devices. Warm
  3366. * reset the port attached by the devices can fix them.
  3367. */
  3368. if ((udev->speed == USB_SPEED_SUPER) &&
  3369. (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) {
  3370. dev_err(&udev->dev, "got a wrong device descriptor, "
  3371. "warm reset device\n");
  3372. hub_port_reset(hub, port1, udev,
  3373. HUB_BH_RESET_TIME, true);
  3374. retval = -EINVAL;
  3375. goto fail;
  3376. }
  3377. if (udev->descriptor.bMaxPacketSize0 == 0xff ||
  3378. udev->speed == USB_SPEED_SUPER)
  3379. i = 512;
  3380. else
  3381. i = udev->descriptor.bMaxPacketSize0;
  3382. if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
  3383. if (udev->speed == USB_SPEED_LOW ||
  3384. !(i == 8 || i == 16 || i == 32 || i == 64)) {
  3385. dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
  3386. retval = -EMSGSIZE;
  3387. goto fail;
  3388. }
  3389. if (udev->speed == USB_SPEED_FULL)
  3390. dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
  3391. else
  3392. dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
  3393. udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
  3394. usb_ep0_reinit(udev);
  3395. }
  3396. retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
  3397. if (retval < (signed)sizeof(udev->descriptor)) {
  3398. dev_err(&udev->dev, "device descriptor read/all, error %d\n",
  3399. retval);
  3400. if (retval >= 0)
  3401. retval = -ENOMSG;
  3402. goto fail;
  3403. }
  3404. if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
  3405. retval = usb_get_bos_descriptor(udev);
  3406. if (!retval) {
  3407. udev->lpm_capable = usb_device_supports_lpm(udev);
  3408. usb_set_lpm_parameters(udev);
  3409. }
  3410. }
  3411. retval = 0;
  3412. /* notify HCD that we have a device connected and addressed */
  3413. if (hcd->driver->update_device)
  3414. hcd->driver->update_device(hcd, udev);
  3415. fail:
  3416. if (retval) {
  3417. hub_port_disable(hub, port1, 0);
  3418. update_devnum(udev, devnum); /* for disconnect processing */
  3419. }
  3420. mutex_unlock(&usb_address0_mutex);
  3421. return retval;
  3422. }
  3423. static void
  3424. check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
  3425. {
  3426. struct usb_qualifier_descriptor *qual;
  3427. int status;
  3428. qual = kmalloc (sizeof *qual, GFP_KERNEL);
  3429. if (qual == NULL)
  3430. return;
  3431. status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
  3432. qual, sizeof *qual);
  3433. if (status == sizeof *qual) {
  3434. dev_info(&udev->dev, "not running at top speed; "
  3435. "connect to a high speed hub\n");
  3436. /* hub LEDs are probably harder to miss than syslog */
  3437. if (hub->has_indicators) {
  3438. hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
  3439. schedule_delayed_work (&hub->leds, 0);
  3440. }
  3441. }
  3442. kfree(qual);
  3443. }
  3444. static unsigned
  3445. hub_power_remaining (struct usb_hub *hub)
  3446. {
  3447. struct usb_device *hdev = hub->hdev;
  3448. int remaining;
  3449. int port1;
  3450. if (!hub->limited_power)
  3451. return 0;
  3452. remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
  3453. for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
  3454. struct usb_device *udev = hdev->children[port1 - 1];
  3455. int delta;
  3456. if (!udev)
  3457. continue;
  3458. /* Unconfigured devices may not use more than 100mA,
  3459. * or 8mA for OTG ports */
  3460. if (udev->actconfig)
  3461. delta = udev->actconfig->desc.bMaxPower * 2;
  3462. else if (port1 != udev->bus->otg_port || hdev->parent)
  3463. delta = 100;
  3464. else
  3465. delta = 8;
  3466. if (delta > hub->mA_per_port)
  3467. dev_warn(&udev->dev,
  3468. "%dmA is over %umA budget for port %d!\n",
  3469. delta, hub->mA_per_port, port1);
  3470. remaining -= delta;
  3471. }
  3472. if (remaining < 0) {
  3473. dev_warn(hub->intfdev, "%dmA over power budget!\n",
  3474. - remaining);
  3475. remaining = 0;
  3476. }
  3477. return remaining;
  3478. }
  3479. /* Handle physical or logical connection change events.
  3480. * This routine is called when:
  3481. * a port connection-change occurs;
  3482. * a port enable-change occurs (often caused by EMI);
  3483. * usb_reset_and_verify_device() encounters changed descriptors (as from
  3484. * a firmware download)
  3485. * caller already locked the hub
  3486. */
  3487. static void hub_port_connect_change(struct usb_hub *hub, int port1,
  3488. u16 portstatus, u16 portchange)
  3489. {
  3490. struct usb_device *hdev = hub->hdev;
  3491. struct device *hub_dev = hub->intfdev;
  3492. struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
  3493. unsigned wHubCharacteristics =
  3494. le16_to_cpu(hub->descriptor->wHubCharacteristics);
  3495. struct usb_device *udev;
  3496. int status, i;
  3497. dev_dbg (hub_dev,
  3498. "port %d, status %04x, change %04x, %s\n",
  3499. port1, portstatus, portchange, portspeed(hub, portstatus));
  3500. if (hub->has_indicators) {
  3501. set_port_led(hub, port1, HUB_LED_AUTO);
  3502. hub->indicator[port1-1] = INDICATOR_AUTO;
  3503. }
  3504. #ifdef CONFIG_USB_OTG
  3505. /* during HNP, don't repeat the debounce */
  3506. if (hdev->bus->is_b_host)
  3507. portchange &= ~(USB_PORT_STAT_C_CONNECTION |
  3508. USB_PORT_STAT_C_ENABLE);
  3509. #endif
  3510. /* Try to resuscitate an existing device */
  3511. udev = hdev->children[port1-1];
  3512. if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
  3513. udev->state != USB_STATE_NOTATTACHED) {
  3514. usb_lock_device(udev);
  3515. if (portstatus & USB_PORT_STAT_ENABLE) {
  3516. status = 0; /* Nothing to do */
  3517. #ifdef CONFIG_USB_SUSPEND
  3518. } else if (udev->state == USB_STATE_SUSPENDED &&
  3519. udev->persist_enabled) {
  3520. /* For a suspended device, treat this as a
  3521. * remote wakeup event.
  3522. */
  3523. status = usb_remote_wakeup(udev);
  3524. #endif
  3525. } else {
  3526. status = -ENODEV; /* Don't resuscitate */
  3527. }
  3528. usb_unlock_device(udev);
  3529. if (status == 0) {
  3530. clear_bit(port1, hub->change_bits);
  3531. return;
  3532. }
  3533. }
  3534. /* Disconnect any existing devices under this port */
  3535. if (udev)
  3536. usb_disconnect(&hdev->children[port1-1]);
  3537. clear_bit(port1, hub->change_bits);
  3538. /* We can forget about a "removed" device when there's a physical
  3539. * disconnect or the connect status changes.
  3540. */
  3541. if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
  3542. (portchange & USB_PORT_STAT_C_CONNECTION))
  3543. clear_bit(port1, hub->removed_bits);
  3544. if (portchange & (USB_PORT_STAT_C_CONNECTION |
  3545. USB_PORT_STAT_C_ENABLE)) {
  3546. status = hub_port_debounce(hub, port1);
  3547. if (status < 0) {
  3548. if (printk_ratelimit())
  3549. dev_err(hub_dev, "connect-debounce failed, "
  3550. "port %d disabled\n", port1);
  3551. portstatus &= ~USB_PORT_STAT_CONNECTION;
  3552. } else {
  3553. portstatus = status;
  3554. }
  3555. }
  3556. /* Return now if debouncing failed or nothing is connected or
  3557. * the device was "removed".
  3558. */
  3559. if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
  3560. test_bit(port1, hub->removed_bits)) {
  3561. /* maybe switch power back on (e.g. root hub was reset) */
  3562. if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2
  3563. && !port_is_power_on(hub, portstatus))
  3564. set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
  3565. if (portstatus & USB_PORT_STAT_ENABLE)
  3566. goto done;
  3567. return;
  3568. }
  3569. for (i = 0; i < SET_CONFIG_TRIES; i++) {
  3570. /* reallocate for each attempt, since references
  3571. * to the previous one can escape in various ways
  3572. */
  3573. udev = usb_alloc_dev(hdev, hdev->bus, port1);
  3574. if (!udev) {
  3575. dev_err (hub_dev,
  3576. "couldn't allocate port %d usb_device\n",
  3577. port1);
  3578. goto done;
  3579. }
  3580. usb_set_device_state(udev, USB_STATE_POWERED);
  3581. udev->bus_mA = hub->mA_per_port;
  3582. udev->level = hdev->level + 1;
  3583. udev->wusb = hub_is_wusb(hub);
  3584. /* Only USB 3.0 devices are connected to SuperSpeed hubs. */
  3585. if (hub_is_superspeed(hub->hdev))
  3586. udev->speed = USB_SPEED_SUPER;
  3587. else
  3588. udev->speed = USB_SPEED_UNKNOWN;
  3589. choose_devnum(udev);
  3590. if (udev->devnum <= 0) {
  3591. status = -ENOTCONN; /* Don't retry */
  3592. goto loop;
  3593. }
  3594. /* reset (non-USB 3.0 devices) and get descriptor */
  3595. status = hub_port_init(hub, udev, port1, i);
  3596. if (status < 0)
  3597. goto loop;
  3598. usb_detect_quirks(udev);
  3599. if (udev->quirks & USB_QUIRK_DELAY_INIT)
  3600. msleep(1000);
  3601. /* consecutive bus-powered hubs aren't reliable; they can
  3602. * violate the voltage drop budget. if the new child has
  3603. * a "powered" LED, users should notice we didn't enable it
  3604. * (without reading syslog), even without per-port LEDs
  3605. * on the parent.
  3606. */
  3607. if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
  3608. && udev->bus_mA <= 100) {
  3609. u16 devstat;
  3610. status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
  3611. &devstat);
  3612. if (status < 2) {
  3613. dev_dbg(&udev->dev, "get status %d ?\n", status);
  3614. goto loop_disable;
  3615. }
  3616. le16_to_cpus(&devstat);
  3617. if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
  3618. dev_err(&udev->dev,
  3619. "can't connect bus-powered hub "
  3620. "to this port\n");
  3621. if (hub->has_indicators) {
  3622. hub->indicator[port1-1] =
  3623. INDICATOR_AMBER_BLINK;
  3624. schedule_delayed_work (&hub->leds, 0);
  3625. }
  3626. status = -ENOTCONN; /* Don't retry */
  3627. goto loop_disable;
  3628. }
  3629. }
  3630. /* check for devices running slower than they could */
  3631. if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
  3632. && udev->speed == USB_SPEED_FULL
  3633. && highspeed_hubs != 0)
  3634. check_highspeed (hub, udev, port1);
  3635. /* Store the parent's children[] pointer. At this point
  3636. * udev becomes globally accessible, although presumably
  3637. * no one will look at it until hdev is unlocked.
  3638. */
  3639. status = 0;
  3640. /* We mustn't add new devices if the parent hub has
  3641. * been disconnected; we would race with the
  3642. * recursively_mark_NOTATTACHED() routine.
  3643. */
  3644. spin_lock_irq(&device_state_lock);
  3645. if (hdev->state == USB_STATE_NOTATTACHED)
  3646. status = -ENOTCONN;
  3647. else
  3648. hdev->children[port1-1] = udev;
  3649. spin_unlock_irq(&device_state_lock);
  3650. /* Run it through the hoops (find a driver, etc) */
  3651. if (!status) {
  3652. status = usb_new_device(udev);
  3653. if (status) {
  3654. spin_lock_irq(&device_state_lock);
  3655. hdev->children[port1-1] = NULL;
  3656. spin_unlock_irq(&device_state_lock);
  3657. }
  3658. }
  3659. if (status)
  3660. goto loop_disable;
  3661. status = hub_power_remaining(hub);
  3662. if (status)
  3663. dev_dbg(hub_dev, "%dmA power budget left\n", status);
  3664. return;
  3665. loop_disable:
  3666. hub_port_disable(hub, port1, 1);
  3667. loop:
  3668. usb_ep0_reinit(udev);
  3669. release_devnum(udev);
  3670. hub_free_dev(udev);
  3671. usb_put_dev(udev);
  3672. if ((status == -ENOTCONN) || (status == -ENOTSUPP))
  3673. break;
  3674. }
  3675. if (hub->hdev->parent ||
  3676. !hcd->driver->port_handed_over ||
  3677. !(hcd->driver->port_handed_over)(hcd, port1))
  3678. dev_err(hub_dev, "unable to enumerate USB device on port %d\n",
  3679. port1);
  3680. done:
  3681. hub_port_disable(hub, port1, 1);
  3682. if (hcd->driver->relinquish_port && !hub->hdev->parent)
  3683. hcd->driver->relinquish_port(hcd, port1);
  3684. }
  3685. /* Returns 1 if there was a remote wakeup and a connect status change. */
  3686. static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
  3687. u16 portstatus, u16 portchange)
  3688. {
  3689. struct usb_device *hdev;
  3690. struct usb_device *udev;
  3691. int connect_change = 0;
  3692. int ret;
  3693. hdev = hub->hdev;
  3694. udev = hdev->children[port-1];
  3695. if (!hub_is_superspeed(hdev)) {
  3696. if (!(portchange & USB_PORT_STAT_C_SUSPEND))
  3697. return 0;
  3698. clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
  3699. } else {
  3700. if (!udev || udev->state != USB_STATE_SUSPENDED ||
  3701. (portstatus & USB_PORT_STAT_LINK_STATE) !=
  3702. USB_SS_PORT_LS_U0)
  3703. return 0;
  3704. }
  3705. if (udev) {
  3706. /* TRSMRCY = 10 msec */
  3707. msleep(10);
  3708. usb_lock_device(udev);
  3709. ret = usb_remote_wakeup(udev);
  3710. usb_unlock_device(udev);
  3711. if (ret < 0)
  3712. connect_change = 1;
  3713. } else {
  3714. ret = -ENODEV;
  3715. hub_port_disable(hub, port, 1);
  3716. }
  3717. dev_dbg(hub->intfdev, "resume on port %d, status %d\n",
  3718. port, ret);
  3719. return connect_change;
  3720. }
  3721. static void hub_events(void)
  3722. {
  3723. struct list_head *tmp;
  3724. struct usb_device *hdev;
  3725. struct usb_interface *intf;
  3726. struct usb_hub *hub;
  3727. struct device *hub_dev;
  3728. u16 hubstatus;
  3729. u16 hubchange;
  3730. u16 portstatus;
  3731. u16 portchange;
  3732. int i, ret;
  3733. int connect_change, wakeup_change;
  3734. /*
  3735. * We restart the list every time to avoid a deadlock with
  3736. * deleting hubs downstream from this one. This should be
  3737. * safe since we delete the hub from the event list.
  3738. * Not the most efficient, but avoids deadlocks.
  3739. */
  3740. while (1) {
  3741. /* Grab the first entry at the beginning of the list */
  3742. spin_lock_irq(&hub_event_lock);
  3743. if (list_empty(&hub_event_list)) {
  3744. spin_unlock_irq(&hub_event_lock);
  3745. break;
  3746. }
  3747. tmp = hub_event_list.next;
  3748. list_del_init(tmp);
  3749. hub = list_entry(tmp, struct usb_hub, event_list);
  3750. kref_get(&hub->kref);
  3751. spin_unlock_irq(&hub_event_lock);
  3752. hdev = hub->hdev;
  3753. hub_dev = hub->intfdev;
  3754. intf = to_usb_interface(hub_dev);
  3755. dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
  3756. hdev->state, hub->descriptor
  3757. ? hub->descriptor->bNbrPorts
  3758. : 0,
  3759. /* NOTE: expects max 15 ports... */
  3760. (u16) hub->change_bits[0],
  3761. (u16) hub->event_bits[0]);
  3762. /* Lock the device, then check to see if we were
  3763. * disconnected while waiting for the lock to succeed. */
  3764. usb_lock_device(hdev);
  3765. if (unlikely(hub->disconnected))
  3766. goto loop_disconnected;
  3767. /* If the hub has died, clean up after it */
  3768. if (hdev->state == USB_STATE_NOTATTACHED) {
  3769. hub->error = -ENODEV;
  3770. hub_quiesce(hub, HUB_DISCONNECT);
  3771. goto loop;
  3772. }
  3773. /* Autoresume */
  3774. ret = usb_autopm_get_interface(intf);
  3775. if (ret) {
  3776. dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
  3777. goto loop;
  3778. }
  3779. /* If this is an inactive hub, do nothing */
  3780. if (hub->quiescing)
  3781. goto loop_autopm;
  3782. if (hub->error) {
  3783. dev_dbg (hub_dev, "resetting for error %d\n",
  3784. hub->error);
  3785. ret = usb_reset_device(hdev);
  3786. if (ret) {
  3787. dev_dbg (hub_dev,
  3788. "error resetting hub: %d\n", ret);
  3789. goto loop_autopm;
  3790. }
  3791. hub->nerrors = 0;
  3792. hub->error = 0;
  3793. }
  3794. /* deal with port status changes */
  3795. for (i = 1; i <= hub->descriptor->bNbrPorts; i++) {
  3796. if (test_bit(i, hub->busy_bits))
  3797. continue;
  3798. connect_change = test_bit(i, hub->change_bits);
  3799. wakeup_change = test_and_clear_bit(i, hub->wakeup_bits);
  3800. if (!test_and_clear_bit(i, hub->event_bits) &&
  3801. !connect_change && !wakeup_change)
  3802. continue;
  3803. ret = hub_port_status(hub, i,
  3804. &portstatus, &portchange);
  3805. if (ret < 0)
  3806. continue;
  3807. if (portchange & USB_PORT_STAT_C_CONNECTION) {
  3808. clear_port_feature(hdev, i,
  3809. USB_PORT_FEAT_C_CONNECTION);
  3810. connect_change = 1;
  3811. }
  3812. if (portchange & USB_PORT_STAT_C_ENABLE) {
  3813. if (!connect_change)
  3814. dev_dbg (hub_dev,
  3815. "port %d enable change, "
  3816. "status %08x\n",
  3817. i, portstatus);
  3818. clear_port_feature(hdev, i,
  3819. USB_PORT_FEAT_C_ENABLE);
  3820. /*
  3821. * EM interference sometimes causes badly
  3822. * shielded USB devices to be shutdown by
  3823. * the hub, this hack enables them again.
  3824. * Works at least with mouse driver.
  3825. */
  3826. if (!(portstatus & USB_PORT_STAT_ENABLE)
  3827. && !connect_change
  3828. && hdev->children[i-1]) {
  3829. dev_err (hub_dev,
  3830. "port %i "
  3831. "disabled by hub (EMI?), "
  3832. "re-enabling...\n",
  3833. i);
  3834. connect_change = 1;
  3835. }
  3836. }
  3837. if (hub_handle_remote_wakeup(hub, i,
  3838. portstatus, portchange))
  3839. connect_change = 1;
  3840. if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
  3841. u16 status = 0;
  3842. u16 unused;
  3843. dev_dbg(hub_dev, "over-current change on port "
  3844. "%d\n", i);
  3845. clear_port_feature(hdev, i,
  3846. USB_PORT_FEAT_C_OVER_CURRENT);
  3847. msleep(100); /* Cool down */
  3848. hub_power_on(hub, true);
  3849. hub_port_status(hub, i, &status, &unused);
  3850. if (status & USB_PORT_STAT_OVERCURRENT)
  3851. dev_err(hub_dev, "over-current "
  3852. "condition on port %d\n", i);
  3853. }
  3854. if (portchange & USB_PORT_STAT_C_RESET) {
  3855. dev_dbg (hub_dev,
  3856. "reset change on port %d\n",
  3857. i);
  3858. clear_port_feature(hdev, i,
  3859. USB_PORT_FEAT_C_RESET);
  3860. }
  3861. if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
  3862. hub_is_superspeed(hub->hdev)) {
  3863. dev_dbg(hub_dev,
  3864. "warm reset change on port %d\n",
  3865. i);
  3866. clear_port_feature(hdev, i,
  3867. USB_PORT_FEAT_C_BH_PORT_RESET);
  3868. }
  3869. if (portchange & USB_PORT_STAT_C_LINK_STATE) {
  3870. clear_port_feature(hub->hdev, i,
  3871. USB_PORT_FEAT_C_PORT_LINK_STATE);
  3872. }
  3873. if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
  3874. dev_warn(hub_dev,
  3875. "config error on port %d\n",
  3876. i);
  3877. clear_port_feature(hub->hdev, i,
  3878. USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
  3879. }
  3880. /* Warm reset a USB3 protocol port if it's in
  3881. * SS.Inactive state.
  3882. */
  3883. if (hub_port_warm_reset_required(hub, portstatus)) {
  3884. dev_dbg(hub_dev, "warm reset port %d\n", i);
  3885. hub_port_reset(hub, i, NULL,
  3886. HUB_BH_RESET_TIME, true);
  3887. }
  3888. if (connect_change)
  3889. hub_port_connect_change(hub, i,
  3890. portstatus, portchange);
  3891. } /* end for i */
  3892. /* deal with hub status changes */
  3893. if (test_and_clear_bit(0, hub->event_bits) == 0)
  3894. ; /* do nothing */
  3895. else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
  3896. dev_err (hub_dev, "get_hub_status failed\n");
  3897. else {
  3898. if (hubchange & HUB_CHANGE_LOCAL_POWER) {
  3899. dev_dbg (hub_dev, "power change\n");
  3900. clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
  3901. if (hubstatus & HUB_STATUS_LOCAL_POWER)
  3902. /* FIXME: Is this always true? */
  3903. hub->limited_power = 1;
  3904. else
  3905. hub->limited_power = 0;
  3906. }
  3907. if (hubchange & HUB_CHANGE_OVERCURRENT) {
  3908. u16 status = 0;
  3909. u16 unused;
  3910. dev_dbg(hub_dev, "over-current change\n");
  3911. clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
  3912. msleep(500); /* Cool down */
  3913. hub_power_on(hub, true);
  3914. hub_hub_status(hub, &status, &unused);
  3915. if (status & HUB_STATUS_OVERCURRENT)
  3916. dev_err(hub_dev, "over-current "
  3917. "condition\n");
  3918. }
  3919. }
  3920. loop_autopm:
  3921. /* Balance the usb_autopm_get_interface() above */
  3922. usb_autopm_put_interface_no_suspend(intf);
  3923. loop:
  3924. /* Balance the usb_autopm_get_interface_no_resume() in
  3925. * kick_khubd() and allow autosuspend.
  3926. */
  3927. usb_autopm_put_interface(intf);
  3928. loop_disconnected:
  3929. usb_unlock_device(hdev);
  3930. kref_put(&hub->kref, hub_release);
  3931. } /* end while (1) */
  3932. }
  3933. static int hub_thread(void *__unused)
  3934. {
  3935. /* khubd needs to be freezable to avoid intefering with USB-PERSIST
  3936. * port handover. Otherwise it might see that a full-speed device
  3937. * was gone before the EHCI controller had handed its port over to
  3938. * the companion full-speed controller.
  3939. */
  3940. set_freezable();
  3941. do {
  3942. hub_events();
  3943. wait_event_freezable(khubd_wait,
  3944. !list_empty(&hub_event_list) ||
  3945. kthread_should_stop());
  3946. } while (!kthread_should_stop() || !list_empty(&hub_event_list));
  3947. pr_debug("%s: khubd exiting\n", usbcore_name);
  3948. return 0;
  3949. }
  3950. static const struct usb_device_id hub_id_table[] = {
  3951. { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
  3952. .bDeviceClass = USB_CLASS_HUB},
  3953. { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
  3954. .bInterfaceClass = USB_CLASS_HUB},
  3955. { } /* Terminating entry */
  3956. };
  3957. MODULE_DEVICE_TABLE (usb, hub_id_table);
  3958. static struct usb_driver hub_driver = {
  3959. .name = "hub",
  3960. .probe = hub_probe,
  3961. .disconnect = hub_disconnect,
  3962. .suspend = hub_suspend,
  3963. .resume = hub_resume,
  3964. .reset_resume = hub_reset_resume,
  3965. .pre_reset = hub_pre_reset,
  3966. .post_reset = hub_post_reset,
  3967. .unlocked_ioctl = hub_ioctl,
  3968. .id_table = hub_id_table,
  3969. .supports_autosuspend = 1,
  3970. };
  3971. int usb_hub_init(void)
  3972. {
  3973. if (usb_register(&hub_driver) < 0) {
  3974. printk(KERN_ERR "%s: can't register hub driver\n",
  3975. usbcore_name);
  3976. return -1;
  3977. }
  3978. khubd_task = kthread_run(hub_thread, NULL, "khubd");
  3979. if (!IS_ERR(khubd_task))
  3980. return 0;
  3981. /* Fall through if kernel_thread failed */
  3982. usb_deregister(&hub_driver);
  3983. printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
  3984. return -1;
  3985. }
  3986. void usb_hub_cleanup(void)
  3987. {
  3988. kthread_stop(khubd_task);
  3989. /*
  3990. * Hub resources are freed for us by usb_deregister. It calls
  3991. * usb_driver_purge on every device which in turn calls that
  3992. * devices disconnect function if it is using this driver.
  3993. * The hub_disconnect function takes care of releasing the
  3994. * individual hub resources. -greg
  3995. */
  3996. usb_deregister(&hub_driver);
  3997. } /* usb_hub_cleanup() */
  3998. static int descriptors_changed(struct usb_device *udev,
  3999. struct usb_device_descriptor *old_device_descriptor)
  4000. {
  4001. int changed = 0;
  4002. unsigned index;
  4003. unsigned serial_len = 0;
  4004. unsigned len;
  4005. unsigned old_length;
  4006. int length;
  4007. char *buf;
  4008. if (memcmp(&udev->descriptor, old_device_descriptor,
  4009. sizeof(*old_device_descriptor)) != 0)
  4010. return 1;
  4011. /* Since the idVendor, idProduct, and bcdDevice values in the
  4012. * device descriptor haven't changed, we will assume the
  4013. * Manufacturer and Product strings haven't changed either.
  4014. * But the SerialNumber string could be different (e.g., a
  4015. * different flash card of the same brand).
  4016. */
  4017. if (udev->serial)
  4018. serial_len = strlen(udev->serial) + 1;
  4019. len = serial_len;
  4020. for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
  4021. old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
  4022. len = max(len, old_length);
  4023. }
  4024. buf = kmalloc(len, GFP_NOIO);
  4025. if (buf == NULL) {
  4026. dev_err(&udev->dev, "no mem to re-read configs after reset\n");
  4027. /* assume the worst */
  4028. return 1;
  4029. }
  4030. for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
  4031. old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
  4032. length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
  4033. old_length);
  4034. if (length != old_length) {
  4035. dev_dbg(&udev->dev, "config index %d, error %d\n",
  4036. index, length);
  4037. changed = 1;
  4038. break;
  4039. }
  4040. if (memcmp (buf, udev->rawdescriptors[index], old_length)
  4041. != 0) {
  4042. dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
  4043. index,
  4044. ((struct usb_config_descriptor *) buf)->
  4045. bConfigurationValue);
  4046. changed = 1;
  4047. break;
  4048. }
  4049. }
  4050. if (!changed && serial_len) {
  4051. length = usb_string(udev, udev->descriptor.iSerialNumber,
  4052. buf, serial_len);
  4053. if (length + 1 != serial_len) {
  4054. dev_dbg(&udev->dev, "serial string error %d\n",
  4055. length);
  4056. changed = 1;
  4057. } else if (memcmp(buf, udev->serial, length) != 0) {
  4058. dev_dbg(&udev->dev, "serial string changed\n");
  4059. changed = 1;
  4060. }
  4061. }
  4062. kfree(buf);
  4063. return changed;
  4064. }
  4065. /**
  4066. * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
  4067. * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
  4068. *
  4069. * WARNING - don't use this routine to reset a composite device
  4070. * (one with multiple interfaces owned by separate drivers)!
  4071. * Use usb_reset_device() instead.
  4072. *
  4073. * Do a port reset, reassign the device's address, and establish its
  4074. * former operating configuration. If the reset fails, or the device's
  4075. * descriptors change from their values before the reset, or the original
  4076. * configuration and altsettings cannot be restored, a flag will be set
  4077. * telling khubd to pretend the device has been disconnected and then
  4078. * re-connected. All drivers will be unbound, and the device will be
  4079. * re-enumerated and probed all over again.
  4080. *
  4081. * Returns 0 if the reset succeeded, -ENODEV if the device has been
  4082. * flagged for logical disconnection, or some other negative error code
  4083. * if the reset wasn't even attempted.
  4084. *
  4085. * The caller must own the device lock. For example, it's safe to use
  4086. * this from a driver probe() routine after downloading new firmware.
  4087. * For calls that might not occur during probe(), drivers should lock
  4088. * the device using usb_lock_device_for_reset().
  4089. *
  4090. * Locking exception: This routine may also be called from within an
  4091. * autoresume handler. Such usage won't conflict with other tasks
  4092. * holding the device lock because these tasks should always call
  4093. * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
  4094. */
  4095. static int usb_reset_and_verify_device(struct usb_device *udev)
  4096. {
  4097. struct usb_device *parent_hdev = udev->parent;
  4098. struct usb_hub *parent_hub;
  4099. struct usb_hcd *hcd = bus_to_hcd(udev->bus);
  4100. struct usb_device_descriptor descriptor = udev->descriptor;
  4101. int i, ret = 0;
  4102. int port1 = udev->portnum;
  4103. if (udev->state == USB_STATE_NOTATTACHED ||
  4104. udev->state == USB_STATE_SUSPENDED) {
  4105. dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
  4106. udev->state);
  4107. return -EINVAL;
  4108. }
  4109. if (!parent_hdev) {
  4110. /* this requires hcd-specific logic; see ohci_restart() */
  4111. dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
  4112. return -EISDIR;
  4113. }
  4114. parent_hub = hdev_to_hub(parent_hdev);
  4115. set_bit(port1, parent_hub->busy_bits);
  4116. for (i = 0; i < SET_CONFIG_TRIES; ++i) {
  4117. /* ep0 maxpacket size may change; let the HCD know about it.
  4118. * Other endpoints will be handled by re-enumeration. */
  4119. usb_ep0_reinit(udev);
  4120. ret = hub_port_init(parent_hub, udev, port1, i);
  4121. if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
  4122. break;
  4123. }
  4124. clear_bit(port1, parent_hub->busy_bits);
  4125. if (ret < 0)
  4126. goto re_enumerate;
  4127. /* Device might have changed firmware (DFU or similar) */
  4128. if (descriptors_changed(udev, &descriptor)) {
  4129. dev_info(&udev->dev, "device firmware changed\n");
  4130. udev->descriptor = descriptor; /* for disconnect() calls */
  4131. goto re_enumerate;
  4132. }
  4133. /* Restore the device's previous configuration */
  4134. if (!udev->actconfig)
  4135. goto done;
  4136. mutex_lock(hcd->bandwidth_mutex);
  4137. /* Disable LPM while we reset the device and reinstall the alt settings.
  4138. * Device-initiated LPM settings, and system exit latency settings are
  4139. * cleared when the device is reset, so we have to set them up again.
  4140. */
  4141. ret = usb_disable_lpm(udev);
  4142. if (ret) {
  4143. dev_err(&udev->dev, "%s Failed to disable LPM\n.", __func__);
  4144. mutex_unlock(hcd->bandwidth_mutex);
  4145. goto done;
  4146. }
  4147. ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
  4148. if (ret < 0) {
  4149. dev_warn(&udev->dev,
  4150. "Busted HC? Not enough HCD resources for "
  4151. "old configuration.\n");
  4152. usb_enable_lpm(udev);
  4153. mutex_unlock(hcd->bandwidth_mutex);
  4154. goto re_enumerate;
  4155. }
  4156. ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  4157. USB_REQ_SET_CONFIGURATION, 0,
  4158. udev->actconfig->desc.bConfigurationValue, 0,
  4159. NULL, 0, USB_CTRL_SET_TIMEOUT);
  4160. if (ret < 0) {
  4161. dev_err(&udev->dev,
  4162. "can't restore configuration #%d (error=%d)\n",
  4163. udev->actconfig->desc.bConfigurationValue, ret);
  4164. usb_enable_lpm(udev);
  4165. mutex_unlock(hcd->bandwidth_mutex);
  4166. goto re_enumerate;
  4167. }
  4168. mutex_unlock(hcd->bandwidth_mutex);
  4169. usb_set_device_state(udev, USB_STATE_CONFIGURED);
  4170. /* Put interfaces back into the same altsettings as before.
  4171. * Don't bother to send the Set-Interface request for interfaces
  4172. * that were already in altsetting 0; besides being unnecessary,
  4173. * many devices can't handle it. Instead just reset the host-side
  4174. * endpoint state.
  4175. */
  4176. for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
  4177. struct usb_host_config *config = udev->actconfig;
  4178. struct usb_interface *intf = config->interface[i];
  4179. struct usb_interface_descriptor *desc;
  4180. desc = &intf->cur_altsetting->desc;
  4181. if (desc->bAlternateSetting == 0) {
  4182. usb_disable_interface(udev, intf, true);
  4183. usb_enable_interface(udev, intf, true);
  4184. ret = 0;
  4185. } else {
  4186. /* Let the bandwidth allocation function know that this
  4187. * device has been reset, and it will have to use
  4188. * alternate setting 0 as the current alternate setting.
  4189. */
  4190. intf->resetting_device = 1;
  4191. ret = usb_set_interface(udev, desc->bInterfaceNumber,
  4192. desc->bAlternateSetting);
  4193. intf->resetting_device = 0;
  4194. }
  4195. if (ret < 0) {
  4196. dev_err(&udev->dev, "failed to restore interface %d "
  4197. "altsetting %d (error=%d)\n",
  4198. desc->bInterfaceNumber,
  4199. desc->bAlternateSetting,
  4200. ret);
  4201. usb_unlocked_enable_lpm(udev);
  4202. goto re_enumerate;
  4203. }
  4204. }
  4205. /* Now that the alt settings are re-installed, enable LPM. */
  4206. usb_unlocked_enable_lpm(udev);
  4207. done:
  4208. return 0;
  4209. re_enumerate:
  4210. hub_port_logical_disconnect(parent_hub, port1);
  4211. return -ENODEV;
  4212. }
  4213. /**
  4214. * usb_reset_device - warn interface drivers and perform a USB port reset
  4215. * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
  4216. *
  4217. * Warns all drivers bound to registered interfaces (using their pre_reset
  4218. * method), performs the port reset, and then lets the drivers know that
  4219. * the reset is over (using their post_reset method).
  4220. *
  4221. * Return value is the same as for usb_reset_and_verify_device().
  4222. *
  4223. * The caller must own the device lock. For example, it's safe to use
  4224. * this from a driver probe() routine after downloading new firmware.
  4225. * For calls that might not occur during probe(), drivers should lock
  4226. * the device using usb_lock_device_for_reset().
  4227. *
  4228. * If an interface is currently being probed or disconnected, we assume
  4229. * its driver knows how to handle resets. For all other interfaces,
  4230. * if the driver doesn't have pre_reset and post_reset methods then
  4231. * we attempt to unbind it and rebind afterward.
  4232. */
  4233. int usb_reset_device(struct usb_device *udev)
  4234. {
  4235. int ret;
  4236. int i;
  4237. struct usb_host_config *config = udev->actconfig;
  4238. if (udev->state == USB_STATE_NOTATTACHED ||
  4239. udev->state == USB_STATE_SUSPENDED) {
  4240. dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
  4241. udev->state);
  4242. return -EINVAL;
  4243. }
  4244. /* Prevent autosuspend during the reset */
  4245. usb_autoresume_device(udev);
  4246. if (config) {
  4247. for (i = 0; i < config->desc.bNumInterfaces; ++i) {
  4248. struct usb_interface *cintf = config->interface[i];
  4249. struct usb_driver *drv;
  4250. int unbind = 0;
  4251. if (cintf->dev.driver) {
  4252. drv = to_usb_driver(cintf->dev.driver);
  4253. if (drv->pre_reset && drv->post_reset)
  4254. unbind = (drv->pre_reset)(cintf);
  4255. else if (cintf->condition ==
  4256. USB_INTERFACE_BOUND)
  4257. unbind = 1;
  4258. if (unbind)
  4259. usb_forced_unbind_intf(cintf);
  4260. }
  4261. }
  4262. }
  4263. ret = usb_reset_and_verify_device(udev);
  4264. if (config) {
  4265. for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
  4266. struct usb_interface *cintf = config->interface[i];
  4267. struct usb_driver *drv;
  4268. int rebind = cintf->needs_binding;
  4269. if (!rebind && cintf->dev.driver) {
  4270. drv = to_usb_driver(cintf->dev.driver);
  4271. if (drv->post_reset)
  4272. rebind = (drv->post_reset)(cintf);
  4273. else if (cintf->condition ==
  4274. USB_INTERFACE_BOUND)
  4275. rebind = 1;
  4276. }
  4277. if (ret == 0 && rebind)
  4278. usb_rebind_intf(cintf);
  4279. }
  4280. }
  4281. usb_autosuspend_device(udev);
  4282. return ret;
  4283. }
  4284. EXPORT_SYMBOL_GPL(usb_reset_device);
  4285. /**
  4286. * usb_queue_reset_device - Reset a USB device from an atomic context
  4287. * @iface: USB interface belonging to the device to reset
  4288. *
  4289. * This function can be used to reset a USB device from an atomic
  4290. * context, where usb_reset_device() won't work (as it blocks).
  4291. *
  4292. * Doing a reset via this method is functionally equivalent to calling
  4293. * usb_reset_device(), except for the fact that it is delayed to a
  4294. * workqueue. This means that any drivers bound to other interfaces
  4295. * might be unbound, as well as users from usbfs in user space.
  4296. *
  4297. * Corner cases:
  4298. *
  4299. * - Scheduling two resets at the same time from two different drivers
  4300. * attached to two different interfaces of the same device is
  4301. * possible; depending on how the driver attached to each interface
  4302. * handles ->pre_reset(), the second reset might happen or not.
  4303. *
  4304. * - If a driver is unbound and it had a pending reset, the reset will
  4305. * be cancelled.
  4306. *
  4307. * - This function can be called during .probe() or .disconnect()
  4308. * times. On return from .disconnect(), any pending resets will be
  4309. * cancelled.
  4310. *
  4311. * There is no no need to lock/unlock the @reset_ws as schedule_work()
  4312. * does its own.
  4313. *
  4314. * NOTE: We don't do any reference count tracking because it is not
  4315. * needed. The lifecycle of the work_struct is tied to the
  4316. * usb_interface. Before destroying the interface we cancel the
  4317. * work_struct, so the fact that work_struct is queued and or
  4318. * running means the interface (and thus, the device) exist and
  4319. * are referenced.
  4320. */
  4321. void usb_queue_reset_device(struct usb_interface *iface)
  4322. {
  4323. schedule_work(&iface->reset_ws);
  4324. }
  4325. EXPORT_SYMBOL_GPL(usb_queue_reset_device);