hub.c 141 KB

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