hub.c 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849
  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/kthread.h>
  22. #include <linux/mutex.h>
  23. #include <linux/freezer.h>
  24. #include <asm/uaccess.h>
  25. #include <asm/byteorder.h>
  26. #include "usb.h"
  27. #include "hcd.h"
  28. #include "hub.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. #if USB_MAXCHILDREN > 31 /* 8*sizeof(unsigned long) - 1 */
  58. #error event_bits[] is too short!
  59. #endif
  60. struct usb_hub_descriptor *descriptor; /* class descriptor */
  61. struct usb_tt tt; /* Transaction Translator */
  62. unsigned mA_per_port; /* current for each child */
  63. unsigned init_done:1;
  64. unsigned limited_power:1;
  65. unsigned quiescing:1;
  66. unsigned disconnected:1;
  67. unsigned has_indicators:1;
  68. u8 indicator[USB_MAXCHILDREN];
  69. struct delayed_work leds;
  70. struct delayed_work init_work;
  71. void **port_owners;
  72. };
  73. /* Protect struct usb_device->state and ->children members
  74. * Note: Both are also protected by ->dev.sem, except that ->state can
  75. * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
  76. static DEFINE_SPINLOCK(device_state_lock);
  77. /* khubd's worklist and its lock */
  78. static DEFINE_SPINLOCK(hub_event_lock);
  79. static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */
  80. /* Wakes up khubd */
  81. static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
  82. static struct task_struct *khubd_task;
  83. /* cycle leds on hubs that aren't blinking for attention */
  84. static int blinkenlights = 0;
  85. module_param (blinkenlights, bool, S_IRUGO);
  86. MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
  87. /*
  88. * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
  89. * 10 seconds to send reply for the initial 64-byte descriptor request.
  90. */
  91. /* define initial 64-byte descriptor request timeout in milliseconds */
  92. static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
  93. module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
  94. MODULE_PARM_DESC(initial_descriptor_timeout,
  95. "initial 64-byte descriptor request timeout in milliseconds "
  96. "(default 5000 - 5.0 seconds)");
  97. /*
  98. * As of 2.6.10 we introduce a new USB device initialization scheme which
  99. * closely resembles the way Windows works. Hopefully it will be compatible
  100. * with a wider range of devices than the old scheme. However some previously
  101. * working devices may start giving rise to "device not accepting address"
  102. * errors; if that happens the user can try the old scheme by adjusting the
  103. * following module parameters.
  104. *
  105. * For maximum flexibility there are two boolean parameters to control the
  106. * hub driver's behavior. On the first initialization attempt, if the
  107. * "old_scheme_first" parameter is set then the old scheme will be used,
  108. * otherwise the new scheme is used. If that fails and "use_both_schemes"
  109. * is set, then the driver will make another attempt, using the other scheme.
  110. */
  111. static int old_scheme_first = 0;
  112. module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
  113. MODULE_PARM_DESC(old_scheme_first,
  114. "start with the old device initialization scheme");
  115. static int use_both_schemes = 1;
  116. module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
  117. MODULE_PARM_DESC(use_both_schemes,
  118. "try the other device initialization scheme if the "
  119. "first one fails");
  120. /* Mutual exclusion for EHCI CF initialization. This interferes with
  121. * port reset on some companion controllers.
  122. */
  123. DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
  124. EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
  125. #define HUB_DEBOUNCE_TIMEOUT 1500
  126. #define HUB_DEBOUNCE_STEP 25
  127. #define HUB_DEBOUNCE_STABLE 100
  128. static int usb_reset_and_verify_device(struct usb_device *udev);
  129. static inline char *portspeed(int portstatus)
  130. {
  131. if (portstatus & (1 << USB_PORT_FEAT_HIGHSPEED))
  132. return "480 Mb/s";
  133. else if (portstatus & (1 << USB_PORT_FEAT_LOWSPEED))
  134. return "1.5 Mb/s";
  135. else if (portstatus & (1 << USB_PORT_FEAT_SUPERSPEED))
  136. return "5.0 Gb/s";
  137. else
  138. return "12 Mb/s";
  139. }
  140. /* Note that hdev or one of its children must be locked! */
  141. static struct usb_hub *hdev_to_hub(struct usb_device *hdev)
  142. {
  143. if (!hdev || !hdev->actconfig)
  144. return NULL;
  145. return usb_get_intfdata(hdev->actconfig->interface[0]);
  146. }
  147. /* USB 2.0 spec Section 11.24.4.5 */
  148. static int get_hub_descriptor(struct usb_device *hdev, void *data, int size)
  149. {
  150. int i, ret;
  151. for (i = 0; i < 3; i++) {
  152. ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
  153. USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
  154. USB_DT_HUB << 8, 0, data, size,
  155. USB_CTRL_GET_TIMEOUT);
  156. if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
  157. return ret;
  158. }
  159. return -EINVAL;
  160. }
  161. /*
  162. * USB 2.0 spec Section 11.24.2.1
  163. */
  164. static int clear_hub_feature(struct usb_device *hdev, int feature)
  165. {
  166. return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
  167. USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
  168. }
  169. /*
  170. * USB 2.0 spec Section 11.24.2.2
  171. */
  172. static int clear_port_feature(struct usb_device *hdev, int port1, int feature)
  173. {
  174. return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
  175. USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
  176. NULL, 0, 1000);
  177. }
  178. /*
  179. * USB 2.0 spec Section 11.24.2.13
  180. */
  181. static int set_port_feature(struct usb_device *hdev, int port1, int feature)
  182. {
  183. return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
  184. USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
  185. NULL, 0, 1000);
  186. }
  187. /*
  188. * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
  189. * for info about using port indicators
  190. */
  191. static void set_port_led(
  192. struct usb_hub *hub,
  193. int port1,
  194. int selector
  195. )
  196. {
  197. int status = set_port_feature(hub->hdev, (selector << 8) | port1,
  198. USB_PORT_FEAT_INDICATOR);
  199. if (status < 0)
  200. dev_dbg (hub->intfdev,
  201. "port %d indicator %s status %d\n",
  202. port1,
  203. ({ char *s; switch (selector) {
  204. case HUB_LED_AMBER: s = "amber"; break;
  205. case HUB_LED_GREEN: s = "green"; break;
  206. case HUB_LED_OFF: s = "off"; break;
  207. case HUB_LED_AUTO: s = "auto"; break;
  208. default: s = "??"; break;
  209. }; s; }),
  210. status);
  211. }
  212. #define LED_CYCLE_PERIOD ((2*HZ)/3)
  213. static void led_work (struct work_struct *work)
  214. {
  215. struct usb_hub *hub =
  216. container_of(work, struct usb_hub, leds.work);
  217. struct usb_device *hdev = hub->hdev;
  218. unsigned i;
  219. unsigned changed = 0;
  220. int cursor = -1;
  221. if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
  222. return;
  223. for (i = 0; i < hub->descriptor->bNbrPorts; i++) {
  224. unsigned selector, mode;
  225. /* 30%-50% duty cycle */
  226. switch (hub->indicator[i]) {
  227. /* cycle marker */
  228. case INDICATOR_CYCLE:
  229. cursor = i;
  230. selector = HUB_LED_AUTO;
  231. mode = INDICATOR_AUTO;
  232. break;
  233. /* blinking green = sw attention */
  234. case INDICATOR_GREEN_BLINK:
  235. selector = HUB_LED_GREEN;
  236. mode = INDICATOR_GREEN_BLINK_OFF;
  237. break;
  238. case INDICATOR_GREEN_BLINK_OFF:
  239. selector = HUB_LED_OFF;
  240. mode = INDICATOR_GREEN_BLINK;
  241. break;
  242. /* blinking amber = hw attention */
  243. case INDICATOR_AMBER_BLINK:
  244. selector = HUB_LED_AMBER;
  245. mode = INDICATOR_AMBER_BLINK_OFF;
  246. break;
  247. case INDICATOR_AMBER_BLINK_OFF:
  248. selector = HUB_LED_OFF;
  249. mode = INDICATOR_AMBER_BLINK;
  250. break;
  251. /* blink green/amber = reserved */
  252. case INDICATOR_ALT_BLINK:
  253. selector = HUB_LED_GREEN;
  254. mode = INDICATOR_ALT_BLINK_OFF;
  255. break;
  256. case INDICATOR_ALT_BLINK_OFF:
  257. selector = HUB_LED_AMBER;
  258. mode = INDICATOR_ALT_BLINK;
  259. break;
  260. default:
  261. continue;
  262. }
  263. if (selector != HUB_LED_AUTO)
  264. changed = 1;
  265. set_port_led(hub, i + 1, selector);
  266. hub->indicator[i] = mode;
  267. }
  268. if (!changed && blinkenlights) {
  269. cursor++;
  270. cursor %= hub->descriptor->bNbrPorts;
  271. set_port_led(hub, cursor + 1, HUB_LED_GREEN);
  272. hub->indicator[cursor] = INDICATOR_CYCLE;
  273. changed++;
  274. }
  275. if (changed)
  276. schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
  277. }
  278. /* use a short timeout for hub/port status fetches */
  279. #define USB_STS_TIMEOUT 1000
  280. #define USB_STS_RETRIES 5
  281. /*
  282. * USB 2.0 spec Section 11.24.2.6
  283. */
  284. static int get_hub_status(struct usb_device *hdev,
  285. struct usb_hub_status *data)
  286. {
  287. int i, status = -ETIMEDOUT;
  288. for (i = 0; i < USB_STS_RETRIES && status == -ETIMEDOUT; i++) {
  289. status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
  290. USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
  291. data, sizeof(*data), USB_STS_TIMEOUT);
  292. }
  293. return status;
  294. }
  295. /*
  296. * USB 2.0 spec Section 11.24.2.7
  297. */
  298. static int get_port_status(struct usb_device *hdev, int port1,
  299. struct usb_port_status *data)
  300. {
  301. int i, status = -ETIMEDOUT;
  302. for (i = 0; i < USB_STS_RETRIES && status == -ETIMEDOUT; i++) {
  303. status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
  304. USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
  305. data, sizeof(*data), USB_STS_TIMEOUT);
  306. }
  307. return status;
  308. }
  309. static int hub_port_status(struct usb_hub *hub, int port1,
  310. u16 *status, u16 *change)
  311. {
  312. int ret;
  313. mutex_lock(&hub->status_mutex);
  314. ret = get_port_status(hub->hdev, port1, &hub->status->port);
  315. if (ret < 4) {
  316. dev_err(hub->intfdev,
  317. "%s failed (err = %d)\n", __func__, ret);
  318. if (ret >= 0)
  319. ret = -EIO;
  320. } else {
  321. *status = le16_to_cpu(hub->status->port.wPortStatus);
  322. *change = le16_to_cpu(hub->status->port.wPortChange);
  323. ret = 0;
  324. }
  325. mutex_unlock(&hub->status_mutex);
  326. return ret;
  327. }
  328. static void kick_khubd(struct usb_hub *hub)
  329. {
  330. unsigned long flags;
  331. spin_lock_irqsave(&hub_event_lock, flags);
  332. if (!hub->disconnected && list_empty(&hub->event_list)) {
  333. list_add_tail(&hub->event_list, &hub_event_list);
  334. /* Suppress autosuspend until khubd runs */
  335. usb_autopm_get_interface_no_resume(
  336. to_usb_interface(hub->intfdev));
  337. wake_up(&khubd_wait);
  338. }
  339. spin_unlock_irqrestore(&hub_event_lock, flags);
  340. }
  341. void usb_kick_khubd(struct usb_device *hdev)
  342. {
  343. struct usb_hub *hub = hdev_to_hub(hdev);
  344. if (hub)
  345. kick_khubd(hub);
  346. }
  347. /* completion function, fires on port status changes and various faults */
  348. static void hub_irq(struct urb *urb)
  349. {
  350. struct usb_hub *hub = urb->context;
  351. int status = urb->status;
  352. unsigned i;
  353. unsigned long bits;
  354. switch (status) {
  355. case -ENOENT: /* synchronous unlink */
  356. case -ECONNRESET: /* async unlink */
  357. case -ESHUTDOWN: /* hardware going away */
  358. return;
  359. default: /* presumably an error */
  360. /* Cause a hub reset after 10 consecutive errors */
  361. dev_dbg (hub->intfdev, "transfer --> %d\n", status);
  362. if ((++hub->nerrors < 10) || hub->error)
  363. goto resubmit;
  364. hub->error = status;
  365. /* FALL THROUGH */
  366. /* let khubd handle things */
  367. case 0: /* we got data: port status changed */
  368. bits = 0;
  369. for (i = 0; i < urb->actual_length; ++i)
  370. bits |= ((unsigned long) ((*hub->buffer)[i]))
  371. << (i*8);
  372. hub->event_bits[0] = bits;
  373. break;
  374. }
  375. hub->nerrors = 0;
  376. /* Something happened, let khubd figure it out */
  377. kick_khubd(hub);
  378. resubmit:
  379. if (hub->quiescing)
  380. return;
  381. if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
  382. && status != -ENODEV && status != -EPERM)
  383. dev_err (hub->intfdev, "resubmit --> %d\n", status);
  384. }
  385. /* USB 2.0 spec Section 11.24.2.3 */
  386. static inline int
  387. hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
  388. {
  389. return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
  390. HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
  391. tt, NULL, 0, 1000);
  392. }
  393. /*
  394. * enumeration blocks khubd for a long time. we use keventd instead, since
  395. * long blocking there is the exception, not the rule. accordingly, HCDs
  396. * talking to TTs must queue control transfers (not just bulk and iso), so
  397. * both can talk to the same hub concurrently.
  398. */
  399. static void hub_tt_work(struct work_struct *work)
  400. {
  401. struct usb_hub *hub =
  402. container_of(work, struct usb_hub, tt.clear_work);
  403. unsigned long flags;
  404. int limit = 100;
  405. spin_lock_irqsave (&hub->tt.lock, flags);
  406. while (--limit && !list_empty (&hub->tt.clear_list)) {
  407. struct list_head *next;
  408. struct usb_tt_clear *clear;
  409. struct usb_device *hdev = hub->hdev;
  410. const struct hc_driver *drv;
  411. int status;
  412. next = hub->tt.clear_list.next;
  413. clear = list_entry (next, struct usb_tt_clear, clear_list);
  414. list_del (&clear->clear_list);
  415. /* drop lock so HCD can concurrently report other TT errors */
  416. spin_unlock_irqrestore (&hub->tt.lock, flags);
  417. status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
  418. if (status)
  419. dev_err (&hdev->dev,
  420. "clear tt %d (%04x) error %d\n",
  421. clear->tt, clear->devinfo, status);
  422. /* Tell the HCD, even if the operation failed */
  423. drv = clear->hcd->driver;
  424. if (drv->clear_tt_buffer_complete)
  425. (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
  426. kfree(clear);
  427. spin_lock_irqsave(&hub->tt.lock, flags);
  428. }
  429. spin_unlock_irqrestore (&hub->tt.lock, flags);
  430. }
  431. /**
  432. * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
  433. * @urb: an URB associated with the failed or incomplete split transaction
  434. *
  435. * High speed HCDs use this to tell the hub driver that some split control or
  436. * bulk transaction failed in a way that requires clearing internal state of
  437. * a transaction translator. This is normally detected (and reported) from
  438. * interrupt context.
  439. *
  440. * It may not be possible for that hub to handle additional full (or low)
  441. * speed transactions until that state is fully cleared out.
  442. */
  443. int usb_hub_clear_tt_buffer(struct urb *urb)
  444. {
  445. struct usb_device *udev = urb->dev;
  446. int pipe = urb->pipe;
  447. struct usb_tt *tt = udev->tt;
  448. unsigned long flags;
  449. struct usb_tt_clear *clear;
  450. /* we've got to cope with an arbitrary number of pending TT clears,
  451. * since each TT has "at least two" buffers that can need it (and
  452. * there can be many TTs per hub). even if they're uncommon.
  453. */
  454. if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) {
  455. dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
  456. /* FIXME recover somehow ... RESET_TT? */
  457. return -ENOMEM;
  458. }
  459. /* info that CLEAR_TT_BUFFER needs */
  460. clear->tt = tt->multi ? udev->ttport : 1;
  461. clear->devinfo = usb_pipeendpoint (pipe);
  462. clear->devinfo |= udev->devnum << 4;
  463. clear->devinfo |= usb_pipecontrol (pipe)
  464. ? (USB_ENDPOINT_XFER_CONTROL << 11)
  465. : (USB_ENDPOINT_XFER_BULK << 11);
  466. if (usb_pipein (pipe))
  467. clear->devinfo |= 1 << 15;
  468. /* info for completion callback */
  469. clear->hcd = bus_to_hcd(udev->bus);
  470. clear->ep = urb->ep;
  471. /* tell keventd to clear state for this TT */
  472. spin_lock_irqsave (&tt->lock, flags);
  473. list_add_tail (&clear->clear_list, &tt->clear_list);
  474. schedule_work(&tt->clear_work);
  475. spin_unlock_irqrestore (&tt->lock, flags);
  476. return 0;
  477. }
  478. EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
  479. /* If do_delay is false, return the number of milliseconds the caller
  480. * needs to delay.
  481. */
  482. static unsigned hub_power_on(struct usb_hub *hub, bool do_delay)
  483. {
  484. int port1;
  485. unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
  486. unsigned delay;
  487. u16 wHubCharacteristics =
  488. le16_to_cpu(hub->descriptor->wHubCharacteristics);
  489. /* Enable power on each port. Some hubs have reserved values
  490. * of LPSM (> 2) in their descriptors, even though they are
  491. * USB 2.0 hubs. Some hubs do not implement port-power switching
  492. * but only emulate it. In all cases, the ports won't work
  493. * unless we send these messages to the hub.
  494. */
  495. if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2)
  496. dev_dbg(hub->intfdev, "enabling power on all ports\n");
  497. else
  498. dev_dbg(hub->intfdev, "trying to enable port power on "
  499. "non-switchable hub\n");
  500. for (port1 = 1; port1 <= hub->descriptor->bNbrPorts; port1++)
  501. set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
  502. /* Wait at least 100 msec for power to become stable */
  503. delay = max(pgood_delay, (unsigned) 100);
  504. if (do_delay)
  505. msleep(delay);
  506. return delay;
  507. }
  508. static int hub_hub_status(struct usb_hub *hub,
  509. u16 *status, u16 *change)
  510. {
  511. int ret;
  512. mutex_lock(&hub->status_mutex);
  513. ret = get_hub_status(hub->hdev, &hub->status->hub);
  514. if (ret < 0)
  515. dev_err (hub->intfdev,
  516. "%s failed (err = %d)\n", __func__, ret);
  517. else {
  518. *status = le16_to_cpu(hub->status->hub.wHubStatus);
  519. *change = le16_to_cpu(hub->status->hub.wHubChange);
  520. ret = 0;
  521. }
  522. mutex_unlock(&hub->status_mutex);
  523. return ret;
  524. }
  525. static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
  526. {
  527. struct usb_device *hdev = hub->hdev;
  528. int ret = 0;
  529. if (hdev->children[port1-1] && set_state)
  530. usb_set_device_state(hdev->children[port1-1],
  531. USB_STATE_NOTATTACHED);
  532. if (!hub->error)
  533. ret = clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE);
  534. if (ret)
  535. dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
  536. port1, ret);
  537. return ret;
  538. }
  539. /*
  540. * Disable a port and mark a logical connnect-change event, so that some
  541. * time later khubd will disconnect() any existing usb_device on the port
  542. * and will re-enumerate if there actually is a device attached.
  543. */
  544. static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
  545. {
  546. dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1);
  547. hub_port_disable(hub, port1, 1);
  548. /* FIXME let caller ask to power down the port:
  549. * - some devices won't enumerate without a VBUS power cycle
  550. * - SRP saves power that way
  551. * - ... new call, TBD ...
  552. * That's easy if this hub can switch power per-port, and
  553. * khubd reactivates the port later (timer, SRP, etc).
  554. * Powerdown must be optional, because of reset/DFU.
  555. */
  556. set_bit(port1, hub->change_bits);
  557. kick_khubd(hub);
  558. }
  559. /**
  560. * usb_remove_device - disable a device's port on its parent hub
  561. * @udev: device to be disabled and removed
  562. * Context: @udev locked, must be able to sleep.
  563. *
  564. * After @udev's port has been disabled, khubd is notified and it will
  565. * see that the device has been disconnected. When the device is
  566. * physically unplugged and something is plugged in, the events will
  567. * be received and processed normally.
  568. */
  569. int usb_remove_device(struct usb_device *udev)
  570. {
  571. struct usb_hub *hub;
  572. struct usb_interface *intf;
  573. if (!udev->parent) /* Can't remove a root hub */
  574. return -EINVAL;
  575. hub = hdev_to_hub(udev->parent);
  576. intf = to_usb_interface(hub->intfdev);
  577. usb_autopm_get_interface(intf);
  578. set_bit(udev->portnum, hub->removed_bits);
  579. hub_port_logical_disconnect(hub, udev->portnum);
  580. usb_autopm_put_interface(intf);
  581. return 0;
  582. }
  583. enum hub_activation_type {
  584. HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */
  585. HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
  586. };
  587. static void hub_init_func2(struct work_struct *ws);
  588. static void hub_init_func3(struct work_struct *ws);
  589. static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
  590. {
  591. struct usb_device *hdev = hub->hdev;
  592. int port1;
  593. int status;
  594. bool need_debounce_delay = false;
  595. unsigned delay;
  596. /* Continue a partial initialization */
  597. if (type == HUB_INIT2)
  598. goto init2;
  599. if (type == HUB_INIT3)
  600. goto init3;
  601. /* After a resume, port power should still be on.
  602. * For any other type of activation, turn it on.
  603. */
  604. if (type != HUB_RESUME) {
  605. /* Speed up system boot by using a delayed_work for the
  606. * hub's initial power-up delays. This is pretty awkward
  607. * and the implementation looks like a home-brewed sort of
  608. * setjmp/longjmp, but it saves at least 100 ms for each
  609. * root hub (assuming usbcore is compiled into the kernel
  610. * rather than as a module). It adds up.
  611. *
  612. * This can't be done for HUB_RESUME or HUB_RESET_RESUME
  613. * because for those activation types the ports have to be
  614. * operational when we return. In theory this could be done
  615. * for HUB_POST_RESET, but it's easier not to.
  616. */
  617. if (type == HUB_INIT) {
  618. delay = hub_power_on(hub, false);
  619. PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func2);
  620. schedule_delayed_work(&hub->init_work,
  621. msecs_to_jiffies(delay));
  622. /* Suppress autosuspend until init is done */
  623. usb_autopm_get_interface_no_resume(
  624. to_usb_interface(hub->intfdev));
  625. return; /* Continues at init2: below */
  626. } else {
  627. hub_power_on(hub, true);
  628. }
  629. }
  630. init2:
  631. /* Check each port and set hub->change_bits to let khubd know
  632. * which ports need attention.
  633. */
  634. for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
  635. struct usb_device *udev = hdev->children[port1-1];
  636. u16 portstatus, portchange;
  637. portstatus = portchange = 0;
  638. status = hub_port_status(hub, port1, &portstatus, &portchange);
  639. if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
  640. dev_dbg(hub->intfdev,
  641. "port %d: status %04x change %04x\n",
  642. port1, portstatus, portchange);
  643. /* After anything other than HUB_RESUME (i.e., initialization
  644. * or any sort of reset), every port should be disabled.
  645. * Unconnected ports should likewise be disabled (paranoia),
  646. * and so should ports for which we have no usb_device.
  647. */
  648. if ((portstatus & USB_PORT_STAT_ENABLE) && (
  649. type != HUB_RESUME ||
  650. !(portstatus & USB_PORT_STAT_CONNECTION) ||
  651. !udev ||
  652. udev->state == USB_STATE_NOTATTACHED)) {
  653. clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE);
  654. portstatus &= ~USB_PORT_STAT_ENABLE;
  655. }
  656. /* Clear status-change flags; we'll debounce later */
  657. if (portchange & USB_PORT_STAT_C_CONNECTION) {
  658. need_debounce_delay = true;
  659. clear_port_feature(hub->hdev, port1,
  660. USB_PORT_FEAT_C_CONNECTION);
  661. }
  662. if (portchange & USB_PORT_STAT_C_ENABLE) {
  663. need_debounce_delay = true;
  664. clear_port_feature(hub->hdev, port1,
  665. USB_PORT_FEAT_C_ENABLE);
  666. }
  667. /* We can forget about a "removed" device when there's a
  668. * physical disconnect or the connect status changes.
  669. */
  670. if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
  671. (portchange & USB_PORT_STAT_C_CONNECTION))
  672. clear_bit(port1, hub->removed_bits);
  673. if (!udev || udev->state == USB_STATE_NOTATTACHED) {
  674. /* Tell khubd to disconnect the device or
  675. * check for a new connection
  676. */
  677. if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
  678. set_bit(port1, hub->change_bits);
  679. } else if (portstatus & USB_PORT_STAT_ENABLE) {
  680. /* The power session apparently survived the resume.
  681. * If there was an overcurrent or suspend change
  682. * (i.e., remote wakeup request), have khubd
  683. * take care of it.
  684. */
  685. if (portchange)
  686. set_bit(port1, hub->change_bits);
  687. } else if (udev->persist_enabled) {
  688. #ifdef CONFIG_PM
  689. udev->reset_resume = 1;
  690. #endif
  691. set_bit(port1, hub->change_bits);
  692. } else {
  693. /* The power session is gone; tell khubd */
  694. usb_set_device_state(udev, USB_STATE_NOTATTACHED);
  695. set_bit(port1, hub->change_bits);
  696. }
  697. }
  698. /* If no port-status-change flags were set, we don't need any
  699. * debouncing. If flags were set we can try to debounce the
  700. * ports all at once right now, instead of letting khubd do them
  701. * one at a time later on.
  702. *
  703. * If any port-status changes do occur during this delay, khubd
  704. * will see them later and handle them normally.
  705. */
  706. if (need_debounce_delay) {
  707. delay = HUB_DEBOUNCE_STABLE;
  708. /* Don't do a long sleep inside a workqueue routine */
  709. if (type == HUB_INIT2) {
  710. PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func3);
  711. schedule_delayed_work(&hub->init_work,
  712. msecs_to_jiffies(delay));
  713. return; /* Continues at init3: below */
  714. } else {
  715. msleep(delay);
  716. }
  717. }
  718. init3:
  719. hub->quiescing = 0;
  720. hub->init_done = 1;
  721. status = usb_submit_urb(hub->urb, GFP_NOIO);
  722. if (status < 0)
  723. dev_err(hub->intfdev, "activate --> %d\n", status);
  724. if (hub->has_indicators && blinkenlights)
  725. schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
  726. /* Scan all ports that need attention */
  727. kick_khubd(hub);
  728. /* Allow autosuspend if it was suppressed */
  729. if (type <= HUB_INIT3)
  730. usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
  731. }
  732. /* Implement the continuations for the delays above */
  733. static void hub_init_func2(struct work_struct *ws)
  734. {
  735. struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
  736. hub_activate(hub, HUB_INIT2);
  737. }
  738. static void hub_init_func3(struct work_struct *ws)
  739. {
  740. struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
  741. hub_activate(hub, HUB_INIT3);
  742. }
  743. enum hub_quiescing_type {
  744. HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
  745. };
  746. static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
  747. {
  748. struct usb_device *hdev = hub->hdev;
  749. int i;
  750. cancel_delayed_work_sync(&hub->init_work);
  751. if (!hub->init_done) {
  752. hub->init_done = 1;
  753. usb_autopm_put_interface_no_suspend(
  754. to_usb_interface(hub->intfdev));
  755. }
  756. /* khubd and related activity won't re-trigger */
  757. hub->quiescing = 1;
  758. if (type != HUB_SUSPEND) {
  759. /* Disconnect all the children */
  760. for (i = 0; i < hdev->maxchild; ++i) {
  761. if (hdev->children[i])
  762. usb_disconnect(&hdev->children[i]);
  763. }
  764. }
  765. /* Stop khubd and related activity */
  766. usb_kill_urb(hub->urb);
  767. if (hub->has_indicators)
  768. cancel_delayed_work_sync(&hub->leds);
  769. if (hub->tt.hub)
  770. cancel_work_sync(&hub->tt.clear_work);
  771. }
  772. /* caller has locked the hub device */
  773. static int hub_pre_reset(struct usb_interface *intf)
  774. {
  775. struct usb_hub *hub = usb_get_intfdata(intf);
  776. hub_quiesce(hub, HUB_PRE_RESET);
  777. return 0;
  778. }
  779. /* caller has locked the hub device */
  780. static int hub_post_reset(struct usb_interface *intf)
  781. {
  782. struct usb_hub *hub = usb_get_intfdata(intf);
  783. hub_activate(hub, HUB_POST_RESET);
  784. return 0;
  785. }
  786. static int hub_configure(struct usb_hub *hub,
  787. struct usb_endpoint_descriptor *endpoint)
  788. {
  789. struct usb_hcd *hcd;
  790. struct usb_device *hdev = hub->hdev;
  791. struct device *hub_dev = hub->intfdev;
  792. u16 hubstatus, hubchange;
  793. u16 wHubCharacteristics;
  794. unsigned int pipe;
  795. int maxp, ret;
  796. char *message = "out of memory";
  797. hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
  798. if (!hub->buffer) {
  799. ret = -ENOMEM;
  800. goto fail;
  801. }
  802. hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
  803. if (!hub->status) {
  804. ret = -ENOMEM;
  805. goto fail;
  806. }
  807. mutex_init(&hub->status_mutex);
  808. hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
  809. if (!hub->descriptor) {
  810. ret = -ENOMEM;
  811. goto fail;
  812. }
  813. /* Request the entire hub descriptor.
  814. * hub->descriptor can handle USB_MAXCHILDREN ports,
  815. * but the hub can/will return fewer bytes here.
  816. */
  817. ret = get_hub_descriptor(hdev, hub->descriptor,
  818. sizeof(*hub->descriptor));
  819. if (ret < 0) {
  820. message = "can't read hub descriptor";
  821. goto fail;
  822. } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
  823. message = "hub has too many ports!";
  824. ret = -ENODEV;
  825. goto fail;
  826. }
  827. hdev->maxchild = hub->descriptor->bNbrPorts;
  828. dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
  829. (hdev->maxchild == 1) ? "" : "s");
  830. hub->port_owners = kzalloc(hdev->maxchild * sizeof(void *), GFP_KERNEL);
  831. if (!hub->port_owners) {
  832. ret = -ENOMEM;
  833. goto fail;
  834. }
  835. wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
  836. if (wHubCharacteristics & HUB_CHAR_COMPOUND) {
  837. int i;
  838. char portstr [USB_MAXCHILDREN + 1];
  839. for (i = 0; i < hdev->maxchild; i++)
  840. portstr[i] = hub->descriptor->DeviceRemovable
  841. [((i + 1) / 8)] & (1 << ((i + 1) % 8))
  842. ? 'F' : 'R';
  843. portstr[hdev->maxchild] = 0;
  844. dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
  845. } else
  846. dev_dbg(hub_dev, "standalone hub\n");
  847. switch (wHubCharacteristics & HUB_CHAR_LPSM) {
  848. case 0x00:
  849. dev_dbg(hub_dev, "ganged power switching\n");
  850. break;
  851. case 0x01:
  852. dev_dbg(hub_dev, "individual port power switching\n");
  853. break;
  854. case 0x02:
  855. case 0x03:
  856. dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
  857. break;
  858. }
  859. switch (wHubCharacteristics & HUB_CHAR_OCPM) {
  860. case 0x00:
  861. dev_dbg(hub_dev, "global over-current protection\n");
  862. break;
  863. case 0x08:
  864. dev_dbg(hub_dev, "individual port over-current protection\n");
  865. break;
  866. case 0x10:
  867. case 0x18:
  868. dev_dbg(hub_dev, "no over-current protection\n");
  869. break;
  870. }
  871. spin_lock_init (&hub->tt.lock);
  872. INIT_LIST_HEAD (&hub->tt.clear_list);
  873. INIT_WORK(&hub->tt.clear_work, hub_tt_work);
  874. switch (hdev->descriptor.bDeviceProtocol) {
  875. case 0:
  876. break;
  877. case 1:
  878. dev_dbg(hub_dev, "Single TT\n");
  879. hub->tt.hub = hdev;
  880. break;
  881. case 2:
  882. ret = usb_set_interface(hdev, 0, 1);
  883. if (ret == 0) {
  884. dev_dbg(hub_dev, "TT per port\n");
  885. hub->tt.multi = 1;
  886. } else
  887. dev_err(hub_dev, "Using single TT (err %d)\n",
  888. ret);
  889. hub->tt.hub = hdev;
  890. break;
  891. case 3:
  892. /* USB 3.0 hubs don't have a TT */
  893. break;
  894. default:
  895. dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
  896. hdev->descriptor.bDeviceProtocol);
  897. break;
  898. }
  899. /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
  900. switch (wHubCharacteristics & HUB_CHAR_TTTT) {
  901. case HUB_TTTT_8_BITS:
  902. if (hdev->descriptor.bDeviceProtocol != 0) {
  903. hub->tt.think_time = 666;
  904. dev_dbg(hub_dev, "TT requires at most %d "
  905. "FS bit times (%d ns)\n",
  906. 8, hub->tt.think_time);
  907. }
  908. break;
  909. case HUB_TTTT_16_BITS:
  910. hub->tt.think_time = 666 * 2;
  911. dev_dbg(hub_dev, "TT requires at most %d "
  912. "FS bit times (%d ns)\n",
  913. 16, hub->tt.think_time);
  914. break;
  915. case HUB_TTTT_24_BITS:
  916. hub->tt.think_time = 666 * 3;
  917. dev_dbg(hub_dev, "TT requires at most %d "
  918. "FS bit times (%d ns)\n",
  919. 24, hub->tt.think_time);
  920. break;
  921. case HUB_TTTT_32_BITS:
  922. hub->tt.think_time = 666 * 4;
  923. dev_dbg(hub_dev, "TT requires at most %d "
  924. "FS bit times (%d ns)\n",
  925. 32, hub->tt.think_time);
  926. break;
  927. }
  928. /* probe() zeroes hub->indicator[] */
  929. if (wHubCharacteristics & HUB_CHAR_PORTIND) {
  930. hub->has_indicators = 1;
  931. dev_dbg(hub_dev, "Port indicators are supported\n");
  932. }
  933. dev_dbg(hub_dev, "power on to power good time: %dms\n",
  934. hub->descriptor->bPwrOn2PwrGood * 2);
  935. /* power budgeting mostly matters with bus-powered hubs,
  936. * and battery-powered root hubs (may provide just 8 mA).
  937. */
  938. ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
  939. if (ret < 2) {
  940. message = "can't get hub status";
  941. goto fail;
  942. }
  943. le16_to_cpus(&hubstatus);
  944. if (hdev == hdev->bus->root_hub) {
  945. if (hdev->bus_mA == 0 || hdev->bus_mA >= 500)
  946. hub->mA_per_port = 500;
  947. else {
  948. hub->mA_per_port = hdev->bus_mA;
  949. hub->limited_power = 1;
  950. }
  951. } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
  952. dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
  953. hub->descriptor->bHubContrCurrent);
  954. hub->limited_power = 1;
  955. if (hdev->maxchild > 0) {
  956. int remaining = hdev->bus_mA -
  957. hub->descriptor->bHubContrCurrent;
  958. if (remaining < hdev->maxchild * 100)
  959. dev_warn(hub_dev,
  960. "insufficient power available "
  961. "to use all downstream ports\n");
  962. hub->mA_per_port = 100; /* 7.2.1.1 */
  963. }
  964. } else { /* Self-powered external hub */
  965. /* FIXME: What about battery-powered external hubs that
  966. * provide less current per port? */
  967. hub->mA_per_port = 500;
  968. }
  969. if (hub->mA_per_port < 500)
  970. dev_dbg(hub_dev, "%umA bus power budget for each child\n",
  971. hub->mA_per_port);
  972. /* Update the HCD's internal representation of this hub before khubd
  973. * starts getting port status changes for devices under the hub.
  974. */
  975. hcd = bus_to_hcd(hdev->bus);
  976. if (hcd->driver->update_hub_device) {
  977. ret = hcd->driver->update_hub_device(hcd, hdev,
  978. &hub->tt, GFP_KERNEL);
  979. if (ret < 0) {
  980. message = "can't update HCD hub info";
  981. goto fail;
  982. }
  983. }
  984. ret = hub_hub_status(hub, &hubstatus, &hubchange);
  985. if (ret < 0) {
  986. message = "can't get hub status";
  987. goto fail;
  988. }
  989. /* local power status reports aren't always correct */
  990. if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
  991. dev_dbg(hub_dev, "local power source is %s\n",
  992. (hubstatus & HUB_STATUS_LOCAL_POWER)
  993. ? "lost (inactive)" : "good");
  994. if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
  995. dev_dbg(hub_dev, "%sover-current condition exists\n",
  996. (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
  997. /* set up the interrupt endpoint
  998. * We use the EP's maxpacket size instead of (PORTS+1+7)/8
  999. * bytes as USB2.0[11.12.3] says because some hubs are known
  1000. * to send more data (and thus cause overflow). For root hubs,
  1001. * maxpktsize is defined in hcd.c's fake endpoint descriptors
  1002. * to be big enough for at least USB_MAXCHILDREN ports. */
  1003. pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
  1004. maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
  1005. if (maxp > sizeof(*hub->buffer))
  1006. maxp = sizeof(*hub->buffer);
  1007. hub->urb = usb_alloc_urb(0, GFP_KERNEL);
  1008. if (!hub->urb) {
  1009. ret = -ENOMEM;
  1010. goto fail;
  1011. }
  1012. usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
  1013. hub, endpoint->bInterval);
  1014. /* maybe cycle the hub leds */
  1015. if (hub->has_indicators && blinkenlights)
  1016. hub->indicator [0] = INDICATOR_CYCLE;
  1017. hub_activate(hub, HUB_INIT);
  1018. return 0;
  1019. fail:
  1020. dev_err (hub_dev, "config failed, %s (err %d)\n",
  1021. message, ret);
  1022. /* hub_disconnect() frees urb and descriptor */
  1023. return ret;
  1024. }
  1025. static void hub_release(struct kref *kref)
  1026. {
  1027. struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
  1028. usb_put_intf(to_usb_interface(hub->intfdev));
  1029. kfree(hub);
  1030. }
  1031. static unsigned highspeed_hubs;
  1032. static void hub_disconnect(struct usb_interface *intf)
  1033. {
  1034. struct usb_hub *hub = usb_get_intfdata (intf);
  1035. /* Take the hub off the event list and don't let it be added again */
  1036. spin_lock_irq(&hub_event_lock);
  1037. if (!list_empty(&hub->event_list)) {
  1038. list_del_init(&hub->event_list);
  1039. usb_autopm_put_interface_no_suspend(intf);
  1040. }
  1041. hub->disconnected = 1;
  1042. spin_unlock_irq(&hub_event_lock);
  1043. /* Disconnect all children and quiesce the hub */
  1044. hub->error = 0;
  1045. hub_quiesce(hub, HUB_DISCONNECT);
  1046. usb_set_intfdata (intf, NULL);
  1047. hub->hdev->maxchild = 0;
  1048. if (hub->hdev->speed == USB_SPEED_HIGH)
  1049. highspeed_hubs--;
  1050. usb_free_urb(hub->urb);
  1051. kfree(hub->port_owners);
  1052. kfree(hub->descriptor);
  1053. kfree(hub->status);
  1054. kfree(hub->buffer);
  1055. kref_put(&hub->kref, hub_release);
  1056. }
  1057. static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
  1058. {
  1059. struct usb_host_interface *desc;
  1060. struct usb_endpoint_descriptor *endpoint;
  1061. struct usb_device *hdev;
  1062. struct usb_hub *hub;
  1063. desc = intf->cur_altsetting;
  1064. hdev = interface_to_usbdev(intf);
  1065. if (hdev->level == MAX_TOPO_LEVEL) {
  1066. dev_err(&intf->dev,
  1067. "Unsupported bus topology: hub nested too deep\n");
  1068. return -E2BIG;
  1069. }
  1070. #ifdef CONFIG_USB_OTG_BLACKLIST_HUB
  1071. if (hdev->parent) {
  1072. dev_warn(&intf->dev, "ignoring external hub\n");
  1073. return -ENODEV;
  1074. }
  1075. #endif
  1076. /* Some hubs have a subclass of 1, which AFAICT according to the */
  1077. /* specs is not defined, but it works */
  1078. if ((desc->desc.bInterfaceSubClass != 0) &&
  1079. (desc->desc.bInterfaceSubClass != 1)) {
  1080. descriptor_error:
  1081. dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
  1082. return -EIO;
  1083. }
  1084. /* Multiple endpoints? What kind of mutant ninja-hub is this? */
  1085. if (desc->desc.bNumEndpoints != 1)
  1086. goto descriptor_error;
  1087. endpoint = &desc->endpoint[0].desc;
  1088. /* If it's not an interrupt in endpoint, we'd better punt! */
  1089. if (!usb_endpoint_is_int_in(endpoint))
  1090. goto descriptor_error;
  1091. /* We found a hub */
  1092. dev_info (&intf->dev, "USB hub found\n");
  1093. hub = kzalloc(sizeof(*hub), GFP_KERNEL);
  1094. if (!hub) {
  1095. dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
  1096. return -ENOMEM;
  1097. }
  1098. kref_init(&hub->kref);
  1099. INIT_LIST_HEAD(&hub->event_list);
  1100. hub->intfdev = &intf->dev;
  1101. hub->hdev = hdev;
  1102. INIT_DELAYED_WORK(&hub->leds, led_work);
  1103. INIT_DELAYED_WORK(&hub->init_work, NULL);
  1104. usb_get_intf(intf);
  1105. usb_set_intfdata (intf, hub);
  1106. intf->needs_remote_wakeup = 1;
  1107. if (hdev->speed == USB_SPEED_HIGH)
  1108. highspeed_hubs++;
  1109. if (hub_configure(hub, endpoint) >= 0)
  1110. return 0;
  1111. hub_disconnect (intf);
  1112. return -ENODEV;
  1113. }
  1114. static int
  1115. hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
  1116. {
  1117. struct usb_device *hdev = interface_to_usbdev (intf);
  1118. /* assert ifno == 0 (part of hub spec) */
  1119. switch (code) {
  1120. case USBDEVFS_HUB_PORTINFO: {
  1121. struct usbdevfs_hub_portinfo *info = user_data;
  1122. int i;
  1123. spin_lock_irq(&device_state_lock);
  1124. if (hdev->devnum <= 0)
  1125. info->nports = 0;
  1126. else {
  1127. info->nports = hdev->maxchild;
  1128. for (i = 0; i < info->nports; i++) {
  1129. if (hdev->children[i] == NULL)
  1130. info->port[i] = 0;
  1131. else
  1132. info->port[i] =
  1133. hdev->children[i]->devnum;
  1134. }
  1135. }
  1136. spin_unlock_irq(&device_state_lock);
  1137. return info->nports + 1;
  1138. }
  1139. default:
  1140. return -ENOSYS;
  1141. }
  1142. }
  1143. /*
  1144. * Allow user programs to claim ports on a hub. When a device is attached
  1145. * to one of these "claimed" ports, the program will "own" the device.
  1146. */
  1147. static int find_port_owner(struct usb_device *hdev, unsigned port1,
  1148. void ***ppowner)
  1149. {
  1150. if (hdev->state == USB_STATE_NOTATTACHED)
  1151. return -ENODEV;
  1152. if (port1 == 0 || port1 > hdev->maxchild)
  1153. return -EINVAL;
  1154. /* This assumes that devices not managed by the hub driver
  1155. * will always have maxchild equal to 0.
  1156. */
  1157. *ppowner = &(hdev_to_hub(hdev)->port_owners[port1 - 1]);
  1158. return 0;
  1159. }
  1160. /* In the following three functions, the caller must hold hdev's lock */
  1161. int usb_hub_claim_port(struct usb_device *hdev, unsigned port1, void *owner)
  1162. {
  1163. int rc;
  1164. void **powner;
  1165. rc = find_port_owner(hdev, port1, &powner);
  1166. if (rc)
  1167. return rc;
  1168. if (*powner)
  1169. return -EBUSY;
  1170. *powner = owner;
  1171. return rc;
  1172. }
  1173. int usb_hub_release_port(struct usb_device *hdev, unsigned port1, void *owner)
  1174. {
  1175. int rc;
  1176. void **powner;
  1177. rc = find_port_owner(hdev, port1, &powner);
  1178. if (rc)
  1179. return rc;
  1180. if (*powner != owner)
  1181. return -ENOENT;
  1182. *powner = NULL;
  1183. return rc;
  1184. }
  1185. void usb_hub_release_all_ports(struct usb_device *hdev, void *owner)
  1186. {
  1187. int n;
  1188. void **powner;
  1189. n = find_port_owner(hdev, 1, &powner);
  1190. if (n == 0) {
  1191. for (; n < hdev->maxchild; (++n, ++powner)) {
  1192. if (*powner == owner)
  1193. *powner = NULL;
  1194. }
  1195. }
  1196. }
  1197. /* The caller must hold udev's lock */
  1198. bool usb_device_is_owned(struct usb_device *udev)
  1199. {
  1200. struct usb_hub *hub;
  1201. if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
  1202. return false;
  1203. hub = hdev_to_hub(udev->parent);
  1204. return !!hub->port_owners[udev->portnum - 1];
  1205. }
  1206. static void recursively_mark_NOTATTACHED(struct usb_device *udev)
  1207. {
  1208. int i;
  1209. for (i = 0; i < udev->maxchild; ++i) {
  1210. if (udev->children[i])
  1211. recursively_mark_NOTATTACHED(udev->children[i]);
  1212. }
  1213. if (udev->state == USB_STATE_SUSPENDED) {
  1214. udev->discon_suspended = 1;
  1215. udev->active_duration -= jiffies;
  1216. }
  1217. udev->state = USB_STATE_NOTATTACHED;
  1218. }
  1219. /**
  1220. * usb_set_device_state - change a device's current state (usbcore, hcds)
  1221. * @udev: pointer to device whose state should be changed
  1222. * @new_state: new state value to be stored
  1223. *
  1224. * udev->state is _not_ fully protected by the device lock. Although
  1225. * most transitions are made only while holding the lock, the state can
  1226. * can change to USB_STATE_NOTATTACHED at almost any time. This
  1227. * is so that devices can be marked as disconnected as soon as possible,
  1228. * without having to wait for any semaphores to be released. As a result,
  1229. * all changes to any device's state must be protected by the
  1230. * device_state_lock spinlock.
  1231. *
  1232. * Once a device has been added to the device tree, all changes to its state
  1233. * should be made using this routine. The state should _not_ be set directly.
  1234. *
  1235. * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
  1236. * Otherwise udev->state is set to new_state, and if new_state is
  1237. * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
  1238. * to USB_STATE_NOTATTACHED.
  1239. */
  1240. void usb_set_device_state(struct usb_device *udev,
  1241. enum usb_device_state new_state)
  1242. {
  1243. unsigned long flags;
  1244. spin_lock_irqsave(&device_state_lock, flags);
  1245. if (udev->state == USB_STATE_NOTATTACHED)
  1246. ; /* do nothing */
  1247. else if (new_state != USB_STATE_NOTATTACHED) {
  1248. /* root hub wakeup capabilities are managed out-of-band
  1249. * and may involve silicon errata ... ignore them here.
  1250. */
  1251. if (udev->parent) {
  1252. if (udev->state == USB_STATE_SUSPENDED
  1253. || new_state == USB_STATE_SUSPENDED)
  1254. ; /* No change to wakeup settings */
  1255. else if (new_state == USB_STATE_CONFIGURED)
  1256. device_init_wakeup(&udev->dev,
  1257. (udev->actconfig->desc.bmAttributes
  1258. & USB_CONFIG_ATT_WAKEUP));
  1259. else
  1260. device_init_wakeup(&udev->dev, 0);
  1261. }
  1262. if (udev->state == USB_STATE_SUSPENDED &&
  1263. new_state != USB_STATE_SUSPENDED)
  1264. udev->active_duration -= jiffies;
  1265. else if (new_state == USB_STATE_SUSPENDED &&
  1266. udev->state != USB_STATE_SUSPENDED)
  1267. udev->active_duration += jiffies;
  1268. udev->state = new_state;
  1269. } else
  1270. recursively_mark_NOTATTACHED(udev);
  1271. spin_unlock_irqrestore(&device_state_lock, flags);
  1272. }
  1273. EXPORT_SYMBOL_GPL(usb_set_device_state);
  1274. /*
  1275. * WUSB devices are simple: they have no hubs behind, so the mapping
  1276. * device <-> virtual port number becomes 1:1. Why? to simplify the
  1277. * life of the device connection logic in
  1278. * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
  1279. * handshake we need to assign a temporary address in the unauthorized
  1280. * space. For simplicity we use the first virtual port number found to
  1281. * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
  1282. * and that becomes it's address [X < 128] or its unauthorized address
  1283. * [X | 0x80].
  1284. *
  1285. * We add 1 as an offset to the one-based USB-stack port number
  1286. * (zero-based wusb virtual port index) for two reasons: (a) dev addr
  1287. * 0 is reserved by USB for default address; (b) Linux's USB stack
  1288. * uses always #1 for the root hub of the controller. So USB stack's
  1289. * port #1, which is wusb virtual-port #0 has address #2.
  1290. *
  1291. * Devices connected under xHCI are not as simple. The host controller
  1292. * supports virtualization, so the hardware assigns device addresses and
  1293. * the HCD must setup data structures before issuing a set address
  1294. * command to the hardware.
  1295. */
  1296. static void choose_address(struct usb_device *udev)
  1297. {
  1298. int devnum;
  1299. struct usb_bus *bus = udev->bus;
  1300. /* If khubd ever becomes multithreaded, this will need a lock */
  1301. if (udev->wusb) {
  1302. devnum = udev->portnum + 1;
  1303. BUG_ON(test_bit(devnum, bus->devmap.devicemap));
  1304. } else {
  1305. /* Try to allocate the next devnum beginning at
  1306. * bus->devnum_next. */
  1307. devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
  1308. bus->devnum_next);
  1309. if (devnum >= 128)
  1310. devnum = find_next_zero_bit(bus->devmap.devicemap,
  1311. 128, 1);
  1312. bus->devnum_next = ( devnum >= 127 ? 1 : devnum + 1);
  1313. }
  1314. if (devnum < 128) {
  1315. set_bit(devnum, bus->devmap.devicemap);
  1316. udev->devnum = devnum;
  1317. }
  1318. }
  1319. static void release_address(struct usb_device *udev)
  1320. {
  1321. if (udev->devnum > 0) {
  1322. clear_bit(udev->devnum, udev->bus->devmap.devicemap);
  1323. udev->devnum = -1;
  1324. }
  1325. }
  1326. static void update_address(struct usb_device *udev, int devnum)
  1327. {
  1328. /* The address for a WUSB device is managed by wusbcore. */
  1329. if (!udev->wusb)
  1330. udev->devnum = devnum;
  1331. }
  1332. #ifdef CONFIG_USB_SUSPEND
  1333. static void usb_stop_pm(struct usb_device *udev)
  1334. {
  1335. /* Synchronize with the ksuspend thread to prevent any more
  1336. * autosuspend requests from being submitted, and decrement
  1337. * the parent's count of unsuspended children.
  1338. */
  1339. usb_pm_lock(udev);
  1340. if (udev->parent && !udev->discon_suspended)
  1341. usb_autosuspend_device(udev->parent);
  1342. usb_pm_unlock(udev);
  1343. /* Stop any autosuspend or autoresume requests already submitted */
  1344. cancel_delayed_work_sync(&udev->autosuspend);
  1345. cancel_work_sync(&udev->autoresume);
  1346. }
  1347. #else
  1348. static inline void usb_stop_pm(struct usb_device *udev)
  1349. { }
  1350. #endif
  1351. /**
  1352. * usb_disconnect - disconnect a device (usbcore-internal)
  1353. * @pdev: pointer to device being disconnected
  1354. * Context: !in_interrupt ()
  1355. *
  1356. * Something got disconnected. Get rid of it and all of its children.
  1357. *
  1358. * If *pdev is a normal device then the parent hub must already be locked.
  1359. * If *pdev is a root hub then this routine will acquire the
  1360. * usb_bus_list_lock on behalf of the caller.
  1361. *
  1362. * Only hub drivers (including virtual root hub drivers for host
  1363. * controllers) should ever call this.
  1364. *
  1365. * This call is synchronous, and may not be used in an interrupt context.
  1366. */
  1367. void usb_disconnect(struct usb_device **pdev)
  1368. {
  1369. struct usb_device *udev = *pdev;
  1370. int i;
  1371. if (!udev) {
  1372. pr_debug ("%s nodev\n", __func__);
  1373. return;
  1374. }
  1375. /* mark the device as inactive, so any further urb submissions for
  1376. * this device (and any of its children) will fail immediately.
  1377. * this quiesces everyting except pending urbs.
  1378. */
  1379. usb_set_device_state(udev, USB_STATE_NOTATTACHED);
  1380. dev_info (&udev->dev, "USB disconnect, address %d\n", udev->devnum);
  1381. usb_lock_device(udev);
  1382. /* Free up all the children before we remove this device */
  1383. for (i = 0; i < USB_MAXCHILDREN; i++) {
  1384. if (udev->children[i])
  1385. usb_disconnect(&udev->children[i]);
  1386. }
  1387. /* deallocate hcd/hardware state ... nuking all pending urbs and
  1388. * cleaning up all state associated with the current configuration
  1389. * so that the hardware is now fully quiesced.
  1390. */
  1391. dev_dbg (&udev->dev, "unregistering device\n");
  1392. usb_disable_device(udev, 0);
  1393. usb_hcd_synchronize_unlinks(udev);
  1394. usb_remove_ep_devs(&udev->ep0);
  1395. usb_unlock_device(udev);
  1396. /* Unregister the device. The device driver is responsible
  1397. * for de-configuring the device and invoking the remove-device
  1398. * notifier chain (used by usbfs and possibly others).
  1399. */
  1400. device_del(&udev->dev);
  1401. /* Free the device number and delete the parent's children[]
  1402. * (or root_hub) pointer.
  1403. */
  1404. release_address(udev);
  1405. /* Avoid races with recursively_mark_NOTATTACHED() */
  1406. spin_lock_irq(&device_state_lock);
  1407. *pdev = NULL;
  1408. spin_unlock_irq(&device_state_lock);
  1409. usb_stop_pm(udev);
  1410. put_device(&udev->dev);
  1411. }
  1412. #ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
  1413. static void show_string(struct usb_device *udev, char *id, char *string)
  1414. {
  1415. if (!string)
  1416. return;
  1417. dev_printk(KERN_INFO, &udev->dev, "%s: %s\n", id, string);
  1418. }
  1419. static void announce_device(struct usb_device *udev)
  1420. {
  1421. dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n",
  1422. le16_to_cpu(udev->descriptor.idVendor),
  1423. le16_to_cpu(udev->descriptor.idProduct));
  1424. dev_info(&udev->dev,
  1425. "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
  1426. udev->descriptor.iManufacturer,
  1427. udev->descriptor.iProduct,
  1428. udev->descriptor.iSerialNumber);
  1429. show_string(udev, "Product", udev->product);
  1430. show_string(udev, "Manufacturer", udev->manufacturer);
  1431. show_string(udev, "SerialNumber", udev->serial);
  1432. }
  1433. #else
  1434. static inline void announce_device(struct usb_device *udev) { }
  1435. #endif
  1436. #ifdef CONFIG_USB_OTG
  1437. #include "otg_whitelist.h"
  1438. #endif
  1439. /**
  1440. * usb_enumerate_device_otg - FIXME (usbcore-internal)
  1441. * @udev: newly addressed device (in ADDRESS state)
  1442. *
  1443. * Finish enumeration for On-The-Go devices
  1444. */
  1445. static int usb_enumerate_device_otg(struct usb_device *udev)
  1446. {
  1447. int err = 0;
  1448. #ifdef CONFIG_USB_OTG
  1449. /*
  1450. * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
  1451. * to wake us after we've powered off VBUS; and HNP, switching roles
  1452. * "host" to "peripheral". The OTG descriptor helps figure this out.
  1453. */
  1454. if (!udev->bus->is_b_host
  1455. && udev->config
  1456. && udev->parent == udev->bus->root_hub) {
  1457. struct usb_otg_descriptor *desc = NULL;
  1458. struct usb_bus *bus = udev->bus;
  1459. /* descriptor may appear anywhere in config */
  1460. if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
  1461. le16_to_cpu(udev->config[0].desc.wTotalLength),
  1462. USB_DT_OTG, (void **) &desc) == 0) {
  1463. if (desc->bmAttributes & USB_OTG_HNP) {
  1464. unsigned port1 = udev->portnum;
  1465. dev_info(&udev->dev,
  1466. "Dual-Role OTG device on %sHNP port\n",
  1467. (port1 == bus->otg_port)
  1468. ? "" : "non-");
  1469. /* enable HNP before suspend, it's simpler */
  1470. if (port1 == bus->otg_port)
  1471. bus->b_hnp_enable = 1;
  1472. err = usb_control_msg(udev,
  1473. usb_sndctrlpipe(udev, 0),
  1474. USB_REQ_SET_FEATURE, 0,
  1475. bus->b_hnp_enable
  1476. ? USB_DEVICE_B_HNP_ENABLE
  1477. : USB_DEVICE_A_ALT_HNP_SUPPORT,
  1478. 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
  1479. if (err < 0) {
  1480. /* OTG MESSAGE: report errors here,
  1481. * customize to match your product.
  1482. */
  1483. dev_info(&udev->dev,
  1484. "can't set HNP mode: %d\n",
  1485. err);
  1486. bus->b_hnp_enable = 0;
  1487. }
  1488. }
  1489. }
  1490. }
  1491. if (!is_targeted(udev)) {
  1492. /* Maybe it can talk to us, though we can't talk to it.
  1493. * (Includes HNP test device.)
  1494. */
  1495. if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
  1496. err = usb_port_suspend(udev, PMSG_SUSPEND);
  1497. if (err < 0)
  1498. dev_dbg(&udev->dev, "HNP fail, %d\n", err);
  1499. }
  1500. err = -ENOTSUPP;
  1501. goto fail;
  1502. }
  1503. fail:
  1504. #endif
  1505. return err;
  1506. }
  1507. /**
  1508. * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
  1509. * @udev: newly addressed device (in ADDRESS state)
  1510. *
  1511. * This is only called by usb_new_device() and usb_authorize_device()
  1512. * and FIXME -- all comments that apply to them apply here wrt to
  1513. * environment.
  1514. *
  1515. * If the device is WUSB and not authorized, we don't attempt to read
  1516. * the string descriptors, as they will be errored out by the device
  1517. * until it has been authorized.
  1518. */
  1519. static int usb_enumerate_device(struct usb_device *udev)
  1520. {
  1521. int err;
  1522. if (udev->config == NULL) {
  1523. err = usb_get_configuration(udev);
  1524. if (err < 0) {
  1525. dev_err(&udev->dev, "can't read configurations, error %d\n",
  1526. err);
  1527. goto fail;
  1528. }
  1529. }
  1530. if (udev->wusb == 1 && udev->authorized == 0) {
  1531. udev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1532. udev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1533. udev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1534. }
  1535. else {
  1536. /* read the standard strings and cache them if present */
  1537. udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
  1538. udev->manufacturer = usb_cache_string(udev,
  1539. udev->descriptor.iManufacturer);
  1540. udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
  1541. }
  1542. err = usb_enumerate_device_otg(udev);
  1543. fail:
  1544. return err;
  1545. }
  1546. /**
  1547. * usb_new_device - perform initial device setup (usbcore-internal)
  1548. * @udev: newly addressed device (in ADDRESS state)
  1549. *
  1550. * This is called with devices which have been detected but not fully
  1551. * enumerated. The device descriptor is available, but not descriptors
  1552. * for any device configuration. The caller must have locked either
  1553. * the parent hub (if udev is a normal device) or else the
  1554. * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
  1555. * udev has already been installed, but udev is not yet visible through
  1556. * sysfs or other filesystem code.
  1557. *
  1558. * It will return if the device is configured properly or not. Zero if
  1559. * the interface was registered with the driver core; else a negative
  1560. * errno value.
  1561. *
  1562. * This call is synchronous, and may not be used in an interrupt context.
  1563. *
  1564. * Only the hub driver or root-hub registrar should ever call this.
  1565. */
  1566. int usb_new_device(struct usb_device *udev)
  1567. {
  1568. int err;
  1569. /* Increment the parent's count of unsuspended children */
  1570. if (udev->parent)
  1571. usb_autoresume_device(udev->parent);
  1572. usb_detect_quirks(udev);
  1573. err = usb_enumerate_device(udev); /* Read descriptors */
  1574. if (err < 0)
  1575. goto fail;
  1576. dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
  1577. udev->devnum, udev->bus->busnum,
  1578. (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
  1579. /* export the usbdev device-node for libusb */
  1580. udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
  1581. (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
  1582. /* Tell the world! */
  1583. announce_device(udev);
  1584. /* Register the device. The device driver is responsible
  1585. * for configuring the device and invoking the add-device
  1586. * notifier chain (used by usbfs and possibly others).
  1587. */
  1588. err = device_add(&udev->dev);
  1589. if (err) {
  1590. dev_err(&udev->dev, "can't device_add, error %d\n", err);
  1591. goto fail;
  1592. }
  1593. (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
  1594. return err;
  1595. fail:
  1596. usb_set_device_state(udev, USB_STATE_NOTATTACHED);
  1597. usb_stop_pm(udev);
  1598. return err;
  1599. }
  1600. /**
  1601. * usb_deauthorize_device - deauthorize a device (usbcore-internal)
  1602. * @usb_dev: USB device
  1603. *
  1604. * Move the USB device to a very basic state where interfaces are disabled
  1605. * and the device is in fact unconfigured and unusable.
  1606. *
  1607. * We share a lock (that we have) with device_del(), so we need to
  1608. * defer its call.
  1609. */
  1610. int usb_deauthorize_device(struct usb_device *usb_dev)
  1611. {
  1612. usb_lock_device(usb_dev);
  1613. if (usb_dev->authorized == 0)
  1614. goto out_unauthorized;
  1615. usb_dev->authorized = 0;
  1616. usb_set_configuration(usb_dev, -1);
  1617. kfree(usb_dev->product);
  1618. usb_dev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1619. kfree(usb_dev->manufacturer);
  1620. usb_dev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1621. kfree(usb_dev->serial);
  1622. usb_dev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL);
  1623. usb_destroy_configuration(usb_dev);
  1624. usb_dev->descriptor.bNumConfigurations = 0;
  1625. out_unauthorized:
  1626. usb_unlock_device(usb_dev);
  1627. return 0;
  1628. }
  1629. int usb_authorize_device(struct usb_device *usb_dev)
  1630. {
  1631. int result = 0, c;
  1632. usb_lock_device(usb_dev);
  1633. if (usb_dev->authorized == 1)
  1634. goto out_authorized;
  1635. result = usb_autoresume_device(usb_dev);
  1636. if (result < 0) {
  1637. dev_err(&usb_dev->dev,
  1638. "can't autoresume for authorization: %d\n", result);
  1639. goto error_autoresume;
  1640. }
  1641. result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
  1642. if (result < 0) {
  1643. dev_err(&usb_dev->dev, "can't re-read device descriptor for "
  1644. "authorization: %d\n", result);
  1645. goto error_device_descriptor;
  1646. }
  1647. kfree(usb_dev->product);
  1648. usb_dev->product = NULL;
  1649. kfree(usb_dev->manufacturer);
  1650. usb_dev->manufacturer = NULL;
  1651. kfree(usb_dev->serial);
  1652. usb_dev->serial = NULL;
  1653. usb_dev->authorized = 1;
  1654. result = usb_enumerate_device(usb_dev);
  1655. if (result < 0)
  1656. goto error_enumerate;
  1657. /* Choose and set the configuration. This registers the interfaces
  1658. * with the driver core and lets interface drivers bind to them.
  1659. */
  1660. c = usb_choose_configuration(usb_dev);
  1661. if (c >= 0) {
  1662. result = usb_set_configuration(usb_dev, c);
  1663. if (result) {
  1664. dev_err(&usb_dev->dev,
  1665. "can't set config #%d, error %d\n", c, result);
  1666. /* This need not be fatal. The user can try to
  1667. * set other configurations. */
  1668. }
  1669. }
  1670. dev_info(&usb_dev->dev, "authorized to connect\n");
  1671. error_enumerate:
  1672. error_device_descriptor:
  1673. usb_autosuspend_device(usb_dev);
  1674. error_autoresume:
  1675. out_authorized:
  1676. usb_unlock_device(usb_dev); // complements locktree
  1677. return result;
  1678. }
  1679. /* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
  1680. static unsigned hub_is_wusb(struct usb_hub *hub)
  1681. {
  1682. struct usb_hcd *hcd;
  1683. if (hub->hdev->parent != NULL) /* not a root hub? */
  1684. return 0;
  1685. hcd = container_of(hub->hdev->bus, struct usb_hcd, self);
  1686. return hcd->wireless;
  1687. }
  1688. #define PORT_RESET_TRIES 5
  1689. #define SET_ADDRESS_TRIES 2
  1690. #define GET_DESCRIPTOR_TRIES 2
  1691. #define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
  1692. #define USE_NEW_SCHEME(i) ((i) / 2 == old_scheme_first)
  1693. #define HUB_ROOT_RESET_TIME 50 /* times are in msec */
  1694. #define HUB_SHORT_RESET_TIME 10
  1695. #define HUB_LONG_RESET_TIME 200
  1696. #define HUB_RESET_TIMEOUT 500
  1697. static int hub_port_wait_reset(struct usb_hub *hub, int port1,
  1698. struct usb_device *udev, unsigned int delay)
  1699. {
  1700. int delay_time, ret;
  1701. u16 portstatus;
  1702. u16 portchange;
  1703. for (delay_time = 0;
  1704. delay_time < HUB_RESET_TIMEOUT;
  1705. delay_time += delay) {
  1706. /* wait to give the device a chance to reset */
  1707. msleep(delay);
  1708. /* read and decode port status */
  1709. ret = hub_port_status(hub, port1, &portstatus, &portchange);
  1710. if (ret < 0)
  1711. return ret;
  1712. /* Device went away? */
  1713. if (!(portstatus & USB_PORT_STAT_CONNECTION))
  1714. return -ENOTCONN;
  1715. /* bomb out completely if the connection bounced */
  1716. if ((portchange & USB_PORT_STAT_C_CONNECTION))
  1717. return -ENOTCONN;
  1718. /* if we`ve finished resetting, then break out of the loop */
  1719. if (!(portstatus & USB_PORT_STAT_RESET) &&
  1720. (portstatus & USB_PORT_STAT_ENABLE)) {
  1721. if (hub_is_wusb(hub))
  1722. udev->speed = USB_SPEED_VARIABLE;
  1723. else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
  1724. udev->speed = USB_SPEED_HIGH;
  1725. else if (portstatus & USB_PORT_STAT_LOW_SPEED)
  1726. udev->speed = USB_SPEED_LOW;
  1727. else
  1728. udev->speed = USB_SPEED_FULL;
  1729. return 0;
  1730. }
  1731. /* switch to the long delay after two short delay failures */
  1732. if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
  1733. delay = HUB_LONG_RESET_TIME;
  1734. dev_dbg (hub->intfdev,
  1735. "port %d not reset yet, waiting %dms\n",
  1736. port1, delay);
  1737. }
  1738. return -EBUSY;
  1739. }
  1740. static int hub_port_reset(struct usb_hub *hub, int port1,
  1741. struct usb_device *udev, unsigned int delay)
  1742. {
  1743. int i, status;
  1744. /* Block EHCI CF initialization during the port reset.
  1745. * Some companion controllers don't like it when they mix.
  1746. */
  1747. down_read(&ehci_cf_port_reset_rwsem);
  1748. /* Reset the port */
  1749. for (i = 0; i < PORT_RESET_TRIES; i++) {
  1750. status = set_port_feature(hub->hdev,
  1751. port1, USB_PORT_FEAT_RESET);
  1752. if (status)
  1753. dev_err(hub->intfdev,
  1754. "cannot reset port %d (err = %d)\n",
  1755. port1, status);
  1756. else {
  1757. status = hub_port_wait_reset(hub, port1, udev, delay);
  1758. if (status && status != -ENOTCONN)
  1759. dev_dbg(hub->intfdev,
  1760. "port_wait_reset: err = %d\n",
  1761. status);
  1762. }
  1763. /* return on disconnect or reset */
  1764. switch (status) {
  1765. case 0:
  1766. /* TRSTRCY = 10 ms; plus some extra */
  1767. msleep(10 + 40);
  1768. update_address(udev, 0);
  1769. /* FALL THROUGH */
  1770. case -ENOTCONN:
  1771. case -ENODEV:
  1772. clear_port_feature(hub->hdev,
  1773. port1, USB_PORT_FEAT_C_RESET);
  1774. /* FIXME need disconnect() for NOTATTACHED device */
  1775. usb_set_device_state(udev, status
  1776. ? USB_STATE_NOTATTACHED
  1777. : USB_STATE_DEFAULT);
  1778. goto done;
  1779. }
  1780. dev_dbg (hub->intfdev,
  1781. "port %d not enabled, trying reset again...\n",
  1782. port1);
  1783. delay = HUB_LONG_RESET_TIME;
  1784. }
  1785. dev_err (hub->intfdev,
  1786. "Cannot enable port %i. Maybe the USB cable is bad?\n",
  1787. port1);
  1788. done:
  1789. up_read(&ehci_cf_port_reset_rwsem);
  1790. return status;
  1791. }
  1792. #ifdef CONFIG_PM
  1793. #define MASK_BITS (USB_PORT_STAT_POWER | USB_PORT_STAT_CONNECTION | \
  1794. USB_PORT_STAT_SUSPEND)
  1795. #define WANT_BITS (USB_PORT_STAT_POWER | USB_PORT_STAT_CONNECTION)
  1796. /* Determine whether the device on a port is ready for a normal resume,
  1797. * is ready for a reset-resume, or should be disconnected.
  1798. */
  1799. static int check_port_resume_type(struct usb_device *udev,
  1800. struct usb_hub *hub, int port1,
  1801. int status, unsigned portchange, unsigned portstatus)
  1802. {
  1803. /* Is the device still present? */
  1804. if (status || (portstatus & MASK_BITS) != WANT_BITS) {
  1805. if (status >= 0)
  1806. status = -ENODEV;
  1807. }
  1808. /* Can't do a normal resume if the port isn't enabled,
  1809. * so try a reset-resume instead.
  1810. */
  1811. else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
  1812. if (udev->persist_enabled)
  1813. udev->reset_resume = 1;
  1814. else
  1815. status = -ENODEV;
  1816. }
  1817. if (status) {
  1818. dev_dbg(hub->intfdev,
  1819. "port %d status %04x.%04x after resume, %d\n",
  1820. port1, portchange, portstatus, status);
  1821. } else if (udev->reset_resume) {
  1822. /* Late port handoff can set status-change bits */
  1823. if (portchange & USB_PORT_STAT_C_CONNECTION)
  1824. clear_port_feature(hub->hdev, port1,
  1825. USB_PORT_FEAT_C_CONNECTION);
  1826. if (portchange & USB_PORT_STAT_C_ENABLE)
  1827. clear_port_feature(hub->hdev, port1,
  1828. USB_PORT_FEAT_C_ENABLE);
  1829. }
  1830. return status;
  1831. }
  1832. #ifdef CONFIG_USB_SUSPEND
  1833. /*
  1834. * usb_port_suspend - suspend a usb device's upstream port
  1835. * @udev: device that's no longer in active use, not a root hub
  1836. * Context: must be able to sleep; device not locked; pm locks held
  1837. *
  1838. * Suspends a USB device that isn't in active use, conserving power.
  1839. * Devices may wake out of a suspend, if anything important happens,
  1840. * using the remote wakeup mechanism. They may also be taken out of
  1841. * suspend by the host, using usb_port_resume(). It's also routine
  1842. * to disconnect devices while they are suspended.
  1843. *
  1844. * This only affects the USB hardware for a device; its interfaces
  1845. * (and, for hubs, child devices) must already have been suspended.
  1846. *
  1847. * Selective port suspend reduces power; most suspended devices draw
  1848. * less than 500 uA. It's also used in OTG, along with remote wakeup.
  1849. * All devices below the suspended port are also suspended.
  1850. *
  1851. * Devices leave suspend state when the host wakes them up. Some devices
  1852. * also support "remote wakeup", where the device can activate the USB
  1853. * tree above them to deliver data, such as a keypress or packet. In
  1854. * some cases, this wakes the USB host.
  1855. *
  1856. * Suspending OTG devices may trigger HNP, if that's been enabled
  1857. * between a pair of dual-role devices. That will change roles, such
  1858. * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
  1859. *
  1860. * Devices on USB hub ports have only one "suspend" state, corresponding
  1861. * to ACPI D2, "may cause the device to lose some context".
  1862. * State transitions include:
  1863. *
  1864. * - suspend, resume ... when the VBUS power link stays live
  1865. * - suspend, disconnect ... VBUS lost
  1866. *
  1867. * Once VBUS drop breaks the circuit, the port it's using has to go through
  1868. * normal re-enumeration procedures, starting with enabling VBUS power.
  1869. * Other than re-initializing the hub (plug/unplug, except for root hubs),
  1870. * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
  1871. * timer, no SRP, no requests through sysfs.
  1872. *
  1873. * If CONFIG_USB_SUSPEND isn't enabled, devices only really suspend when
  1874. * the root hub for their bus goes into global suspend ... so we don't
  1875. * (falsely) update the device power state to say it suspended.
  1876. *
  1877. * Returns 0 on success, else negative errno.
  1878. */
  1879. int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
  1880. {
  1881. struct usb_hub *hub = hdev_to_hub(udev->parent);
  1882. int port1 = udev->portnum;
  1883. int status;
  1884. // dev_dbg(hub->intfdev, "suspend port %d\n", port1);
  1885. /* enable remote wakeup when appropriate; this lets the device
  1886. * wake up the upstream hub (including maybe the root hub).
  1887. *
  1888. * NOTE: OTG devices may issue remote wakeup (or SRP) even when
  1889. * we don't explicitly enable it here.
  1890. */
  1891. if (udev->do_remote_wakeup) {
  1892. status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  1893. USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
  1894. USB_DEVICE_REMOTE_WAKEUP, 0,
  1895. NULL, 0,
  1896. USB_CTRL_SET_TIMEOUT);
  1897. if (status) {
  1898. dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
  1899. status);
  1900. /* bail if autosuspend is requested */
  1901. if (msg.event & PM_EVENT_AUTO)
  1902. return status;
  1903. }
  1904. }
  1905. /* see 7.1.7.6 */
  1906. status = set_port_feature(hub->hdev, port1, USB_PORT_FEAT_SUSPEND);
  1907. if (status) {
  1908. dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n",
  1909. port1, status);
  1910. /* paranoia: "should not happen" */
  1911. if (udev->do_remote_wakeup)
  1912. (void) usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  1913. USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
  1914. USB_DEVICE_REMOTE_WAKEUP, 0,
  1915. NULL, 0,
  1916. USB_CTRL_SET_TIMEOUT);
  1917. } else {
  1918. /* device has up to 10 msec to fully suspend */
  1919. dev_dbg(&udev->dev, "usb %ssuspend\n",
  1920. (msg.event & PM_EVENT_AUTO ? "auto-" : ""));
  1921. usb_set_device_state(udev, USB_STATE_SUSPENDED);
  1922. msleep(10);
  1923. }
  1924. return status;
  1925. }
  1926. /*
  1927. * If the USB "suspend" state is in use (rather than "global suspend"),
  1928. * many devices will be individually taken out of suspend state using
  1929. * special "resume" signaling. This routine kicks in shortly after
  1930. * hardware resume signaling is finished, either because of selective
  1931. * resume (by host) or remote wakeup (by device) ... now see what changed
  1932. * in the tree that's rooted at this device.
  1933. *
  1934. * If @udev->reset_resume is set then the device is reset before the
  1935. * status check is done.
  1936. */
  1937. static int finish_port_resume(struct usb_device *udev)
  1938. {
  1939. int status = 0;
  1940. u16 devstatus;
  1941. /* caller owns the udev device lock */
  1942. dev_dbg(&udev->dev, "%s\n",
  1943. udev->reset_resume ? "finish reset-resume" : "finish resume");
  1944. /* usb ch9 identifies four variants of SUSPENDED, based on what
  1945. * state the device resumes to. Linux currently won't see the
  1946. * first two on the host side; they'd be inside hub_port_init()
  1947. * during many timeouts, but khubd can't suspend until later.
  1948. */
  1949. usb_set_device_state(udev, udev->actconfig
  1950. ? USB_STATE_CONFIGURED
  1951. : USB_STATE_ADDRESS);
  1952. /* 10.5.4.5 says not to reset a suspended port if the attached
  1953. * device is enabled for remote wakeup. Hence the reset
  1954. * operation is carried out here, after the port has been
  1955. * resumed.
  1956. */
  1957. if (udev->reset_resume)
  1958. retry_reset_resume:
  1959. status = usb_reset_and_verify_device(udev);
  1960. /* 10.5.4.5 says be sure devices in the tree are still there.
  1961. * For now let's assume the device didn't go crazy on resume,
  1962. * and device drivers will know about any resume quirks.
  1963. */
  1964. if (status == 0) {
  1965. devstatus = 0;
  1966. status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
  1967. if (status >= 0)
  1968. status = (status > 0 ? 0 : -ENODEV);
  1969. /* If a normal resume failed, try doing a reset-resume */
  1970. if (status && !udev->reset_resume && udev->persist_enabled) {
  1971. dev_dbg(&udev->dev, "retry with reset-resume\n");
  1972. udev->reset_resume = 1;
  1973. goto retry_reset_resume;
  1974. }
  1975. }
  1976. if (status) {
  1977. dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
  1978. status);
  1979. } else if (udev->actconfig) {
  1980. le16_to_cpus(&devstatus);
  1981. if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP)) {
  1982. status = usb_control_msg(udev,
  1983. usb_sndctrlpipe(udev, 0),
  1984. USB_REQ_CLEAR_FEATURE,
  1985. USB_RECIP_DEVICE,
  1986. USB_DEVICE_REMOTE_WAKEUP, 0,
  1987. NULL, 0,
  1988. USB_CTRL_SET_TIMEOUT);
  1989. if (status)
  1990. dev_dbg(&udev->dev,
  1991. "disable remote wakeup, status %d\n",
  1992. status);
  1993. }
  1994. status = 0;
  1995. }
  1996. return status;
  1997. }
  1998. /*
  1999. * usb_port_resume - re-activate a suspended usb device's upstream port
  2000. * @udev: device to re-activate, not a root hub
  2001. * Context: must be able to sleep; device not locked; pm locks held
  2002. *
  2003. * This will re-activate the suspended device, increasing power usage
  2004. * while letting drivers communicate again with its endpoints.
  2005. * USB resume explicitly guarantees that the power session between
  2006. * the host and the device is the same as it was when the device
  2007. * suspended.
  2008. *
  2009. * If @udev->reset_resume is set then this routine won't check that the
  2010. * port is still enabled. Furthermore, finish_port_resume() above will
  2011. * reset @udev. The end result is that a broken power session can be
  2012. * recovered and @udev will appear to persist across a loss of VBUS power.
  2013. *
  2014. * For example, if a host controller doesn't maintain VBUS suspend current
  2015. * during a system sleep or is reset when the system wakes up, all the USB
  2016. * power sessions below it will be broken. This is especially troublesome
  2017. * for mass-storage devices containing mounted filesystems, since the
  2018. * device will appear to have disconnected and all the memory mappings
  2019. * to it will be lost. Using the USB_PERSIST facility, the device can be
  2020. * made to appear as if it had not disconnected.
  2021. *
  2022. * This facility can be dangerous. Although usb_reset_and_verify_device() makes
  2023. * every effort to insure that the same device is present after the
  2024. * reset as before, it cannot provide a 100% guarantee. Furthermore it's
  2025. * quite possible for a device to remain unaltered but its media to be
  2026. * changed. If the user replaces a flash memory card while the system is
  2027. * asleep, he will have only himself to blame when the filesystem on the
  2028. * new card is corrupted and the system crashes.
  2029. *
  2030. * Returns 0 on success, else negative errno.
  2031. */
  2032. int usb_port_resume(struct usb_device *udev, pm_message_t msg)
  2033. {
  2034. struct usb_hub *hub = hdev_to_hub(udev->parent);
  2035. int port1 = udev->portnum;
  2036. int status;
  2037. u16 portchange, portstatus;
  2038. /* Skip the initial Clear-Suspend step for a remote wakeup */
  2039. status = hub_port_status(hub, port1, &portstatus, &portchange);
  2040. if (status == 0 && !(portstatus & USB_PORT_STAT_SUSPEND))
  2041. goto SuspendCleared;
  2042. // dev_dbg(hub->intfdev, "resume port %d\n", port1);
  2043. set_bit(port1, hub->busy_bits);
  2044. /* see 7.1.7.7; affects power usage, but not budgeting */
  2045. status = clear_port_feature(hub->hdev,
  2046. port1, USB_PORT_FEAT_SUSPEND);
  2047. if (status) {
  2048. dev_dbg(hub->intfdev, "can't resume port %d, status %d\n",
  2049. port1, status);
  2050. } else {
  2051. /* drive resume for at least 20 msec */
  2052. dev_dbg(&udev->dev, "usb %sresume\n",
  2053. (msg.event & PM_EVENT_AUTO ? "auto-" : ""));
  2054. msleep(25);
  2055. /* Virtual root hubs can trigger on GET_PORT_STATUS to
  2056. * stop resume signaling. Then finish the resume
  2057. * sequence.
  2058. */
  2059. status = hub_port_status(hub, port1, &portstatus, &portchange);
  2060. /* TRSMRCY = 10 msec */
  2061. msleep(10);
  2062. }
  2063. SuspendCleared:
  2064. if (status == 0) {
  2065. if (portchange & USB_PORT_STAT_C_SUSPEND)
  2066. clear_port_feature(hub->hdev, port1,
  2067. USB_PORT_FEAT_C_SUSPEND);
  2068. }
  2069. clear_bit(port1, hub->busy_bits);
  2070. status = check_port_resume_type(udev,
  2071. hub, port1, status, portchange, portstatus);
  2072. if (status == 0)
  2073. status = finish_port_resume(udev);
  2074. if (status < 0) {
  2075. dev_dbg(&udev->dev, "can't resume, status %d\n", status);
  2076. hub_port_logical_disconnect(hub, port1);
  2077. }
  2078. return status;
  2079. }
  2080. /* caller has locked udev */
  2081. static int remote_wakeup(struct usb_device *udev)
  2082. {
  2083. int status = 0;
  2084. if (udev->state == USB_STATE_SUSPENDED) {
  2085. dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
  2086. usb_mark_last_busy(udev);
  2087. status = usb_external_resume_device(udev, PMSG_REMOTE_RESUME);
  2088. }
  2089. return status;
  2090. }
  2091. #else /* CONFIG_USB_SUSPEND */
  2092. /* When CONFIG_USB_SUSPEND isn't set, we never suspend or resume any ports. */
  2093. int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
  2094. {
  2095. return 0;
  2096. }
  2097. /* However we may need to do a reset-resume */
  2098. int usb_port_resume(struct usb_device *udev, pm_message_t msg)
  2099. {
  2100. struct usb_hub *hub = hdev_to_hub(udev->parent);
  2101. int port1 = udev->portnum;
  2102. int status;
  2103. u16 portchange, portstatus;
  2104. status = hub_port_status(hub, port1, &portstatus, &portchange);
  2105. status = check_port_resume_type(udev,
  2106. hub, port1, status, portchange, portstatus);
  2107. if (status) {
  2108. dev_dbg(&udev->dev, "can't resume, status %d\n", status);
  2109. hub_port_logical_disconnect(hub, port1);
  2110. } else if (udev->reset_resume) {
  2111. dev_dbg(&udev->dev, "reset-resume\n");
  2112. status = usb_reset_and_verify_device(udev);
  2113. }
  2114. return status;
  2115. }
  2116. static inline int remote_wakeup(struct usb_device *udev)
  2117. {
  2118. return 0;
  2119. }
  2120. #endif
  2121. static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
  2122. {
  2123. struct usb_hub *hub = usb_get_intfdata (intf);
  2124. struct usb_device *hdev = hub->hdev;
  2125. unsigned port1;
  2126. /* fail if children aren't already suspended */
  2127. for (port1 = 1; port1 <= hdev->maxchild; port1++) {
  2128. struct usb_device *udev;
  2129. udev = hdev->children [port1-1];
  2130. if (udev && udev->can_submit) {
  2131. if (!(msg.event & PM_EVENT_AUTO))
  2132. dev_dbg(&intf->dev, "port %d nyet suspended\n",
  2133. port1);
  2134. return -EBUSY;
  2135. }
  2136. }
  2137. dev_dbg(&intf->dev, "%s\n", __func__);
  2138. /* stop khubd and related activity */
  2139. hub_quiesce(hub, HUB_SUSPEND);
  2140. return 0;
  2141. }
  2142. static int hub_resume(struct usb_interface *intf)
  2143. {
  2144. struct usb_hub *hub = usb_get_intfdata(intf);
  2145. dev_dbg(&intf->dev, "%s\n", __func__);
  2146. hub_activate(hub, HUB_RESUME);
  2147. return 0;
  2148. }
  2149. static int hub_reset_resume(struct usb_interface *intf)
  2150. {
  2151. struct usb_hub *hub = usb_get_intfdata(intf);
  2152. dev_dbg(&intf->dev, "%s\n", __func__);
  2153. hub_activate(hub, HUB_RESET_RESUME);
  2154. return 0;
  2155. }
  2156. /**
  2157. * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
  2158. * @rhdev: struct usb_device for the root hub
  2159. *
  2160. * The USB host controller driver calls this function when its root hub
  2161. * is resumed and Vbus power has been interrupted or the controller
  2162. * has been reset. The routine marks @rhdev as having lost power.
  2163. * When the hub driver is resumed it will take notice and carry out
  2164. * power-session recovery for all the "USB-PERSIST"-enabled child devices;
  2165. * the others will be disconnected.
  2166. */
  2167. void usb_root_hub_lost_power(struct usb_device *rhdev)
  2168. {
  2169. dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
  2170. rhdev->reset_resume = 1;
  2171. }
  2172. EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
  2173. #else /* CONFIG_PM */
  2174. static inline int remote_wakeup(struct usb_device *udev)
  2175. {
  2176. return 0;
  2177. }
  2178. #define hub_suspend NULL
  2179. #define hub_resume NULL
  2180. #define hub_reset_resume NULL
  2181. #endif
  2182. /* USB 2.0 spec, 7.1.7.3 / fig 7-29:
  2183. *
  2184. * Between connect detection and reset signaling there must be a delay
  2185. * of 100ms at least for debounce and power-settling. The corresponding
  2186. * timer shall restart whenever the downstream port detects a disconnect.
  2187. *
  2188. * Apparently there are some bluetooth and irda-dongles and a number of
  2189. * low-speed devices for which this debounce period may last over a second.
  2190. * Not covered by the spec - but easy to deal with.
  2191. *
  2192. * This implementation uses a 1500ms total debounce timeout; if the
  2193. * connection isn't stable by then it returns -ETIMEDOUT. It checks
  2194. * every 25ms for transient disconnects. When the port status has been
  2195. * unchanged for 100ms it returns the port status.
  2196. */
  2197. static int hub_port_debounce(struct usb_hub *hub, int port1)
  2198. {
  2199. int ret;
  2200. int total_time, stable_time = 0;
  2201. u16 portchange, portstatus;
  2202. unsigned connection = 0xffff;
  2203. for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
  2204. ret = hub_port_status(hub, port1, &portstatus, &portchange);
  2205. if (ret < 0)
  2206. return ret;
  2207. if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
  2208. (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
  2209. stable_time += HUB_DEBOUNCE_STEP;
  2210. if (stable_time >= HUB_DEBOUNCE_STABLE)
  2211. break;
  2212. } else {
  2213. stable_time = 0;
  2214. connection = portstatus & USB_PORT_STAT_CONNECTION;
  2215. }
  2216. if (portchange & USB_PORT_STAT_C_CONNECTION) {
  2217. clear_port_feature(hub->hdev, port1,
  2218. USB_PORT_FEAT_C_CONNECTION);
  2219. }
  2220. if (total_time >= HUB_DEBOUNCE_TIMEOUT)
  2221. break;
  2222. msleep(HUB_DEBOUNCE_STEP);
  2223. }
  2224. dev_dbg (hub->intfdev,
  2225. "debounce: port %d: total %dms stable %dms status 0x%x\n",
  2226. port1, total_time, stable_time, portstatus);
  2227. if (stable_time < HUB_DEBOUNCE_STABLE)
  2228. return -ETIMEDOUT;
  2229. return portstatus;
  2230. }
  2231. void usb_ep0_reinit(struct usb_device *udev)
  2232. {
  2233. usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
  2234. usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
  2235. usb_enable_endpoint(udev, &udev->ep0, true);
  2236. }
  2237. EXPORT_SYMBOL_GPL(usb_ep0_reinit);
  2238. #define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
  2239. #define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
  2240. static int hub_set_address(struct usb_device *udev, int devnum)
  2241. {
  2242. int retval;
  2243. struct usb_hcd *hcd = bus_to_hcd(udev->bus);
  2244. /*
  2245. * The host controller will choose the device address,
  2246. * instead of the core having chosen it earlier
  2247. */
  2248. if (!hcd->driver->address_device && devnum <= 1)
  2249. return -EINVAL;
  2250. if (udev->state == USB_STATE_ADDRESS)
  2251. return 0;
  2252. if (udev->state != USB_STATE_DEFAULT)
  2253. return -EINVAL;
  2254. if (hcd->driver->address_device) {
  2255. retval = hcd->driver->address_device(hcd, udev);
  2256. } else {
  2257. retval = usb_control_msg(udev, usb_sndaddr0pipe(),
  2258. USB_REQ_SET_ADDRESS, 0, devnum, 0,
  2259. NULL, 0, USB_CTRL_SET_TIMEOUT);
  2260. if (retval == 0)
  2261. update_address(udev, devnum);
  2262. }
  2263. if (retval == 0) {
  2264. /* Device now using proper address. */
  2265. usb_set_device_state(udev, USB_STATE_ADDRESS);
  2266. usb_ep0_reinit(udev);
  2267. }
  2268. return retval;
  2269. }
  2270. /* Reset device, (re)assign address, get device descriptor.
  2271. * Device connection must be stable, no more debouncing needed.
  2272. * Returns device in USB_STATE_ADDRESS, except on error.
  2273. *
  2274. * If this is called for an already-existing device (as part of
  2275. * usb_reset_and_verify_device), the caller must own the device lock. For a
  2276. * newly detected device that is not accessible through any global
  2277. * pointers, it's not necessary to lock the device.
  2278. */
  2279. static int
  2280. hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
  2281. int retry_counter)
  2282. {
  2283. static DEFINE_MUTEX(usb_address0_mutex);
  2284. struct usb_device *hdev = hub->hdev;
  2285. struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
  2286. int i, j, retval;
  2287. unsigned delay = HUB_SHORT_RESET_TIME;
  2288. enum usb_device_speed oldspeed = udev->speed;
  2289. char *speed, *type;
  2290. int devnum = udev->devnum;
  2291. /* root hub ports have a slightly longer reset period
  2292. * (from USB 2.0 spec, section 7.1.7.5)
  2293. */
  2294. if (!hdev->parent) {
  2295. delay = HUB_ROOT_RESET_TIME;
  2296. if (port1 == hdev->bus->otg_port)
  2297. hdev->bus->b_hnp_enable = 0;
  2298. }
  2299. /* Some low speed devices have problems with the quick delay, so */
  2300. /* be a bit pessimistic with those devices. RHbug #23670 */
  2301. if (oldspeed == USB_SPEED_LOW)
  2302. delay = HUB_LONG_RESET_TIME;
  2303. mutex_lock(&usb_address0_mutex);
  2304. if ((hcd->driver->flags & HCD_USB3) && udev->config) {
  2305. /* FIXME this will need special handling by the xHCI driver. */
  2306. dev_dbg(&udev->dev,
  2307. "xHCI reset of configured device "
  2308. "not supported yet.\n");
  2309. retval = -EINVAL;
  2310. goto fail;
  2311. } else if (!udev->config && oldspeed == USB_SPEED_SUPER) {
  2312. /* Don't reset USB 3.0 devices during an initial setup */
  2313. usb_set_device_state(udev, USB_STATE_DEFAULT);
  2314. } else {
  2315. /* Reset the device; full speed may morph to high speed */
  2316. /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
  2317. retval = hub_port_reset(hub, port1, udev, delay);
  2318. if (retval < 0) /* error or disconnect */
  2319. goto fail;
  2320. /* success, speed is known */
  2321. }
  2322. retval = -ENODEV;
  2323. if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
  2324. dev_dbg(&udev->dev, "device reset changed speed!\n");
  2325. goto fail;
  2326. }
  2327. oldspeed = udev->speed;
  2328. /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
  2329. * it's fixed size except for full speed devices.
  2330. * For Wireless USB devices, ep0 max packet is always 512 (tho
  2331. * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
  2332. */
  2333. switch (udev->speed) {
  2334. case USB_SPEED_SUPER:
  2335. case USB_SPEED_VARIABLE: /* fixed at 512 */
  2336. udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
  2337. break;
  2338. case USB_SPEED_HIGH: /* fixed at 64 */
  2339. udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
  2340. break;
  2341. case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
  2342. /* to determine the ep0 maxpacket size, try to read
  2343. * the device descriptor to get bMaxPacketSize0 and
  2344. * then correct our initial guess.
  2345. */
  2346. udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
  2347. break;
  2348. case USB_SPEED_LOW: /* fixed at 8 */
  2349. udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
  2350. break;
  2351. default:
  2352. goto fail;
  2353. }
  2354. type = "";
  2355. switch (udev->speed) {
  2356. case USB_SPEED_LOW: speed = "low"; break;
  2357. case USB_SPEED_FULL: speed = "full"; break;
  2358. case USB_SPEED_HIGH: speed = "high"; break;
  2359. case USB_SPEED_SUPER:
  2360. speed = "super";
  2361. break;
  2362. case USB_SPEED_VARIABLE:
  2363. speed = "variable";
  2364. type = "Wireless ";
  2365. break;
  2366. default: speed = "?"; break;
  2367. }
  2368. if (udev->speed != USB_SPEED_SUPER)
  2369. dev_info(&udev->dev,
  2370. "%s %s speed %sUSB device using %s and address %d\n",
  2371. (udev->config) ? "reset" : "new", speed, type,
  2372. udev->bus->controller->driver->name, devnum);
  2373. /* Set up TT records, if needed */
  2374. if (hdev->tt) {
  2375. udev->tt = hdev->tt;
  2376. udev->ttport = hdev->ttport;
  2377. } else if (udev->speed != USB_SPEED_HIGH
  2378. && hdev->speed == USB_SPEED_HIGH) {
  2379. udev->tt = &hub->tt;
  2380. udev->ttport = port1;
  2381. }
  2382. /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
  2383. * Because device hardware and firmware is sometimes buggy in
  2384. * this area, and this is how Linux has done it for ages.
  2385. * Change it cautiously.
  2386. *
  2387. * NOTE: If USE_NEW_SCHEME() is true we will start by issuing
  2388. * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
  2389. * so it may help with some non-standards-compliant devices.
  2390. * Otherwise we start with SET_ADDRESS and then try to read the
  2391. * first 8 bytes of the device descriptor to get the ep0 maxpacket
  2392. * value.
  2393. */
  2394. for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
  2395. /*
  2396. * An xHCI controller cannot send any packets to a device until
  2397. * a set address command successfully completes.
  2398. */
  2399. if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3)) {
  2400. struct usb_device_descriptor *buf;
  2401. int r = 0;
  2402. #define GET_DESCRIPTOR_BUFSIZE 64
  2403. buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
  2404. if (!buf) {
  2405. retval = -ENOMEM;
  2406. continue;
  2407. }
  2408. /* Retry on all errors; some devices are flakey.
  2409. * 255 is for WUSB devices, we actually need to use
  2410. * 512 (WUSB1.0[4.8.1]).
  2411. */
  2412. for (j = 0; j < 3; ++j) {
  2413. buf->bMaxPacketSize0 = 0;
  2414. r = usb_control_msg(udev, usb_rcvaddr0pipe(),
  2415. USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
  2416. USB_DT_DEVICE << 8, 0,
  2417. buf, GET_DESCRIPTOR_BUFSIZE,
  2418. initial_descriptor_timeout);
  2419. switch (buf->bMaxPacketSize0) {
  2420. case 8: case 16: case 32: case 64: case 255:
  2421. if (buf->bDescriptorType ==
  2422. USB_DT_DEVICE) {
  2423. r = 0;
  2424. break;
  2425. }
  2426. /* FALL THROUGH */
  2427. default:
  2428. if (r == 0)
  2429. r = -EPROTO;
  2430. break;
  2431. }
  2432. if (r == 0)
  2433. break;
  2434. }
  2435. udev->descriptor.bMaxPacketSize0 =
  2436. buf->bMaxPacketSize0;
  2437. kfree(buf);
  2438. retval = hub_port_reset(hub, port1, udev, delay);
  2439. if (retval < 0) /* error or disconnect */
  2440. goto fail;
  2441. if (oldspeed != udev->speed) {
  2442. dev_dbg(&udev->dev,
  2443. "device reset changed speed!\n");
  2444. retval = -ENODEV;
  2445. goto fail;
  2446. }
  2447. if (r) {
  2448. dev_err(&udev->dev,
  2449. "device descriptor read/64, error %d\n",
  2450. r);
  2451. retval = -EMSGSIZE;
  2452. continue;
  2453. }
  2454. #undef GET_DESCRIPTOR_BUFSIZE
  2455. }
  2456. /*
  2457. * If device is WUSB, we already assigned an
  2458. * unauthorized address in the Connect Ack sequence;
  2459. * authorization will assign the final address.
  2460. */
  2461. if (udev->wusb == 0) {
  2462. for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
  2463. retval = hub_set_address(udev, devnum);
  2464. if (retval >= 0)
  2465. break;
  2466. msleep(200);
  2467. }
  2468. if (retval < 0) {
  2469. dev_err(&udev->dev,
  2470. "device not accepting address %d, error %d\n",
  2471. devnum, retval);
  2472. goto fail;
  2473. }
  2474. if (udev->speed == USB_SPEED_SUPER) {
  2475. devnum = udev->devnum;
  2476. dev_info(&udev->dev,
  2477. "%s SuperSpeed USB device using %s and address %d\n",
  2478. (udev->config) ? "reset" : "new",
  2479. udev->bus->controller->driver->name, devnum);
  2480. }
  2481. /* cope with hardware quirkiness:
  2482. * - let SET_ADDRESS settle, some device hardware wants it
  2483. * - read ep0 maxpacket even for high and low speed,
  2484. */
  2485. msleep(10);
  2486. if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3))
  2487. break;
  2488. }
  2489. retval = usb_get_device_descriptor(udev, 8);
  2490. if (retval < 8) {
  2491. dev_err(&udev->dev,
  2492. "device descriptor read/8, error %d\n",
  2493. retval);
  2494. if (retval >= 0)
  2495. retval = -EMSGSIZE;
  2496. } else {
  2497. retval = 0;
  2498. break;
  2499. }
  2500. }
  2501. if (retval)
  2502. goto fail;
  2503. if (udev->descriptor.bMaxPacketSize0 == 0xff ||
  2504. udev->speed == USB_SPEED_SUPER)
  2505. i = 512;
  2506. else
  2507. i = udev->descriptor.bMaxPacketSize0;
  2508. if (le16_to_cpu(udev->ep0.desc.wMaxPacketSize) != i) {
  2509. if (udev->speed != USB_SPEED_FULL ||
  2510. !(i == 8 || i == 16 || i == 32 || i == 64)) {
  2511. dev_err(&udev->dev, "ep0 maxpacket = %d\n", i);
  2512. retval = -EMSGSIZE;
  2513. goto fail;
  2514. }
  2515. dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
  2516. udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
  2517. usb_ep0_reinit(udev);
  2518. }
  2519. retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
  2520. if (retval < (signed)sizeof(udev->descriptor)) {
  2521. dev_err(&udev->dev, "device descriptor read/all, error %d\n",
  2522. retval);
  2523. if (retval >= 0)
  2524. retval = -ENOMSG;
  2525. goto fail;
  2526. }
  2527. retval = 0;
  2528. fail:
  2529. if (retval) {
  2530. hub_port_disable(hub, port1, 0);
  2531. update_address(udev, devnum); /* for disconnect processing */
  2532. }
  2533. mutex_unlock(&usb_address0_mutex);
  2534. return retval;
  2535. }
  2536. static void
  2537. check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
  2538. {
  2539. struct usb_qualifier_descriptor *qual;
  2540. int status;
  2541. qual = kmalloc (sizeof *qual, GFP_KERNEL);
  2542. if (qual == NULL)
  2543. return;
  2544. status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
  2545. qual, sizeof *qual);
  2546. if (status == sizeof *qual) {
  2547. dev_info(&udev->dev, "not running at top speed; "
  2548. "connect to a high speed hub\n");
  2549. /* hub LEDs are probably harder to miss than syslog */
  2550. if (hub->has_indicators) {
  2551. hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
  2552. schedule_delayed_work (&hub->leds, 0);
  2553. }
  2554. }
  2555. kfree(qual);
  2556. }
  2557. static unsigned
  2558. hub_power_remaining (struct usb_hub *hub)
  2559. {
  2560. struct usb_device *hdev = hub->hdev;
  2561. int remaining;
  2562. int port1;
  2563. if (!hub->limited_power)
  2564. return 0;
  2565. remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
  2566. for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
  2567. struct usb_device *udev = hdev->children[port1 - 1];
  2568. int delta;
  2569. if (!udev)
  2570. continue;
  2571. /* Unconfigured devices may not use more than 100mA,
  2572. * or 8mA for OTG ports */
  2573. if (udev->actconfig)
  2574. delta = udev->actconfig->desc.bMaxPower * 2;
  2575. else if (port1 != udev->bus->otg_port || hdev->parent)
  2576. delta = 100;
  2577. else
  2578. delta = 8;
  2579. if (delta > hub->mA_per_port)
  2580. dev_warn(&udev->dev,
  2581. "%dmA is over %umA budget for port %d!\n",
  2582. delta, hub->mA_per_port, port1);
  2583. remaining -= delta;
  2584. }
  2585. if (remaining < 0) {
  2586. dev_warn(hub->intfdev, "%dmA over power budget!\n",
  2587. - remaining);
  2588. remaining = 0;
  2589. }
  2590. return remaining;
  2591. }
  2592. /* Handle physical or logical connection change events.
  2593. * This routine is called when:
  2594. * a port connection-change occurs;
  2595. * a port enable-change occurs (often caused by EMI);
  2596. * usb_reset_and_verify_device() encounters changed descriptors (as from
  2597. * a firmware download)
  2598. * caller already locked the hub
  2599. */
  2600. static void hub_port_connect_change(struct usb_hub *hub, int port1,
  2601. u16 portstatus, u16 portchange)
  2602. {
  2603. struct usb_device *hdev = hub->hdev;
  2604. struct device *hub_dev = hub->intfdev;
  2605. struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
  2606. unsigned wHubCharacteristics =
  2607. le16_to_cpu(hub->descriptor->wHubCharacteristics);
  2608. struct usb_device *udev;
  2609. int status, i;
  2610. dev_dbg (hub_dev,
  2611. "port %d, status %04x, change %04x, %s\n",
  2612. port1, portstatus, portchange, portspeed (portstatus));
  2613. if (hub->has_indicators) {
  2614. set_port_led(hub, port1, HUB_LED_AUTO);
  2615. hub->indicator[port1-1] = INDICATOR_AUTO;
  2616. }
  2617. #ifdef CONFIG_USB_OTG
  2618. /* during HNP, don't repeat the debounce */
  2619. if (hdev->bus->is_b_host)
  2620. portchange &= ~(USB_PORT_STAT_C_CONNECTION |
  2621. USB_PORT_STAT_C_ENABLE);
  2622. #endif
  2623. /* Try to resuscitate an existing device */
  2624. udev = hdev->children[port1-1];
  2625. if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
  2626. udev->state != USB_STATE_NOTATTACHED) {
  2627. usb_lock_device(udev);
  2628. if (portstatus & USB_PORT_STAT_ENABLE) {
  2629. status = 0; /* Nothing to do */
  2630. #ifdef CONFIG_USB_SUSPEND
  2631. } else if (udev->state == USB_STATE_SUSPENDED &&
  2632. udev->persist_enabled) {
  2633. /* For a suspended device, treat this as a
  2634. * remote wakeup event.
  2635. */
  2636. status = remote_wakeup(udev);
  2637. #endif
  2638. } else {
  2639. status = -ENODEV; /* Don't resuscitate */
  2640. }
  2641. usb_unlock_device(udev);
  2642. if (status == 0) {
  2643. clear_bit(port1, hub->change_bits);
  2644. return;
  2645. }
  2646. }
  2647. /* Disconnect any existing devices under this port */
  2648. if (udev)
  2649. usb_disconnect(&hdev->children[port1-1]);
  2650. clear_bit(port1, hub->change_bits);
  2651. /* We can forget about a "removed" device when there's a physical
  2652. * disconnect or the connect status changes.
  2653. */
  2654. if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
  2655. (portchange & USB_PORT_STAT_C_CONNECTION))
  2656. clear_bit(port1, hub->removed_bits);
  2657. if (portchange & (USB_PORT_STAT_C_CONNECTION |
  2658. USB_PORT_STAT_C_ENABLE)) {
  2659. status = hub_port_debounce(hub, port1);
  2660. if (status < 0) {
  2661. if (printk_ratelimit())
  2662. dev_err(hub_dev, "connect-debounce failed, "
  2663. "port %d disabled\n", port1);
  2664. portstatus &= ~USB_PORT_STAT_CONNECTION;
  2665. } else {
  2666. portstatus = status;
  2667. }
  2668. }
  2669. /* Return now if debouncing failed or nothing is connected or
  2670. * the device was "removed".
  2671. */
  2672. if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
  2673. test_bit(port1, hub->removed_bits)) {
  2674. /* maybe switch power back on (e.g. root hub was reset) */
  2675. if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2
  2676. && !(portstatus & (1 << USB_PORT_FEAT_POWER)))
  2677. set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
  2678. if (portstatus & USB_PORT_STAT_ENABLE)
  2679. goto done;
  2680. return;
  2681. }
  2682. for (i = 0; i < SET_CONFIG_TRIES; i++) {
  2683. /* reallocate for each attempt, since references
  2684. * to the previous one can escape in various ways
  2685. */
  2686. udev = usb_alloc_dev(hdev, hdev->bus, port1);
  2687. if (!udev) {
  2688. dev_err (hub_dev,
  2689. "couldn't allocate port %d usb_device\n",
  2690. port1);
  2691. goto done;
  2692. }
  2693. usb_set_device_state(udev, USB_STATE_POWERED);
  2694. udev->bus_mA = hub->mA_per_port;
  2695. udev->level = hdev->level + 1;
  2696. udev->wusb = hub_is_wusb(hub);
  2697. /*
  2698. * USB 3.0 devices are reset automatically before the connect
  2699. * port status change appears, and the root hub port status
  2700. * shows the correct speed. We also get port change
  2701. * notifications for USB 3.0 devices from the USB 3.0 portion of
  2702. * an external USB 3.0 hub, but this isn't handled correctly yet
  2703. * FIXME.
  2704. */
  2705. if (!(hcd->driver->flags & HCD_USB3))
  2706. udev->speed = USB_SPEED_UNKNOWN;
  2707. else if ((hdev->parent == NULL) &&
  2708. (portstatus & (1 << USB_PORT_FEAT_SUPERSPEED)))
  2709. udev->speed = USB_SPEED_SUPER;
  2710. else
  2711. udev->speed = USB_SPEED_UNKNOWN;
  2712. /*
  2713. * xHCI needs to issue an address device command later
  2714. * in the hub_port_init sequence for SS/HS/FS/LS devices.
  2715. */
  2716. if (!(hcd->driver->flags & HCD_USB3)) {
  2717. /* set the address */
  2718. choose_address(udev);
  2719. if (udev->devnum <= 0) {
  2720. status = -ENOTCONN; /* Don't retry */
  2721. goto loop;
  2722. }
  2723. }
  2724. /* reset (non-USB 3.0 devices) and get descriptor */
  2725. status = hub_port_init(hub, udev, port1, i);
  2726. if (status < 0)
  2727. goto loop;
  2728. /* consecutive bus-powered hubs aren't reliable; they can
  2729. * violate the voltage drop budget. if the new child has
  2730. * a "powered" LED, users should notice we didn't enable it
  2731. * (without reading syslog), even without per-port LEDs
  2732. * on the parent.
  2733. */
  2734. if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
  2735. && udev->bus_mA <= 100) {
  2736. u16 devstat;
  2737. status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
  2738. &devstat);
  2739. if (status < 2) {
  2740. dev_dbg(&udev->dev, "get status %d ?\n", status);
  2741. goto loop_disable;
  2742. }
  2743. le16_to_cpus(&devstat);
  2744. if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
  2745. dev_err(&udev->dev,
  2746. "can't connect bus-powered hub "
  2747. "to this port\n");
  2748. if (hub->has_indicators) {
  2749. hub->indicator[port1-1] =
  2750. INDICATOR_AMBER_BLINK;
  2751. schedule_delayed_work (&hub->leds, 0);
  2752. }
  2753. status = -ENOTCONN; /* Don't retry */
  2754. goto loop_disable;
  2755. }
  2756. }
  2757. /* check for devices running slower than they could */
  2758. if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
  2759. && udev->speed == USB_SPEED_FULL
  2760. && highspeed_hubs != 0)
  2761. check_highspeed (hub, udev, port1);
  2762. /* Store the parent's children[] pointer. At this point
  2763. * udev becomes globally accessible, although presumably
  2764. * no one will look at it until hdev is unlocked.
  2765. */
  2766. status = 0;
  2767. /* We mustn't add new devices if the parent hub has
  2768. * been disconnected; we would race with the
  2769. * recursively_mark_NOTATTACHED() routine.
  2770. */
  2771. spin_lock_irq(&device_state_lock);
  2772. if (hdev->state == USB_STATE_NOTATTACHED)
  2773. status = -ENOTCONN;
  2774. else
  2775. hdev->children[port1-1] = udev;
  2776. spin_unlock_irq(&device_state_lock);
  2777. /* Run it through the hoops (find a driver, etc) */
  2778. if (!status) {
  2779. status = usb_new_device(udev);
  2780. if (status) {
  2781. spin_lock_irq(&device_state_lock);
  2782. hdev->children[port1-1] = NULL;
  2783. spin_unlock_irq(&device_state_lock);
  2784. }
  2785. }
  2786. if (status)
  2787. goto loop_disable;
  2788. status = hub_power_remaining(hub);
  2789. if (status)
  2790. dev_dbg(hub_dev, "%dmA power budget left\n", status);
  2791. return;
  2792. loop_disable:
  2793. hub_port_disable(hub, port1, 1);
  2794. loop:
  2795. usb_ep0_reinit(udev);
  2796. release_address(udev);
  2797. usb_put_dev(udev);
  2798. if ((status == -ENOTCONN) || (status == -ENOTSUPP))
  2799. break;
  2800. }
  2801. if (hub->hdev->parent ||
  2802. !hcd->driver->port_handed_over ||
  2803. !(hcd->driver->port_handed_over)(hcd, port1))
  2804. dev_err(hub_dev, "unable to enumerate USB device on port %d\n",
  2805. port1);
  2806. done:
  2807. hub_port_disable(hub, port1, 1);
  2808. if (hcd->driver->relinquish_port && !hub->hdev->parent)
  2809. hcd->driver->relinquish_port(hcd, port1);
  2810. }
  2811. static void hub_events(void)
  2812. {
  2813. struct list_head *tmp;
  2814. struct usb_device *hdev;
  2815. struct usb_interface *intf;
  2816. struct usb_hub *hub;
  2817. struct device *hub_dev;
  2818. u16 hubstatus;
  2819. u16 hubchange;
  2820. u16 portstatus;
  2821. u16 portchange;
  2822. int i, ret;
  2823. int connect_change;
  2824. /*
  2825. * We restart the list every time to avoid a deadlock with
  2826. * deleting hubs downstream from this one. This should be
  2827. * safe since we delete the hub from the event list.
  2828. * Not the most efficient, but avoids deadlocks.
  2829. */
  2830. while (1) {
  2831. /* Grab the first entry at the beginning of the list */
  2832. spin_lock_irq(&hub_event_lock);
  2833. if (list_empty(&hub_event_list)) {
  2834. spin_unlock_irq(&hub_event_lock);
  2835. break;
  2836. }
  2837. tmp = hub_event_list.next;
  2838. list_del_init(tmp);
  2839. hub = list_entry(tmp, struct usb_hub, event_list);
  2840. kref_get(&hub->kref);
  2841. spin_unlock_irq(&hub_event_lock);
  2842. hdev = hub->hdev;
  2843. hub_dev = hub->intfdev;
  2844. intf = to_usb_interface(hub_dev);
  2845. dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
  2846. hdev->state, hub->descriptor
  2847. ? hub->descriptor->bNbrPorts
  2848. : 0,
  2849. /* NOTE: expects max 15 ports... */
  2850. (u16) hub->change_bits[0],
  2851. (u16) hub->event_bits[0]);
  2852. /* Lock the device, then check to see if we were
  2853. * disconnected while waiting for the lock to succeed. */
  2854. usb_lock_device(hdev);
  2855. if (unlikely(hub->disconnected))
  2856. goto loop2;
  2857. /* If the hub has died, clean up after it */
  2858. if (hdev->state == USB_STATE_NOTATTACHED) {
  2859. hub->error = -ENODEV;
  2860. hub_quiesce(hub, HUB_DISCONNECT);
  2861. goto loop;
  2862. }
  2863. /* Autoresume */
  2864. ret = usb_autopm_get_interface(intf);
  2865. if (ret) {
  2866. dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
  2867. goto loop;
  2868. }
  2869. /* If this is an inactive hub, do nothing */
  2870. if (hub->quiescing)
  2871. goto loop_autopm;
  2872. if (hub->error) {
  2873. dev_dbg (hub_dev, "resetting for error %d\n",
  2874. hub->error);
  2875. ret = usb_reset_device(hdev);
  2876. if (ret) {
  2877. dev_dbg (hub_dev,
  2878. "error resetting hub: %d\n", ret);
  2879. goto loop_autopm;
  2880. }
  2881. hub->nerrors = 0;
  2882. hub->error = 0;
  2883. }
  2884. /* deal with port status changes */
  2885. for (i = 1; i <= hub->descriptor->bNbrPorts; i++) {
  2886. if (test_bit(i, hub->busy_bits))
  2887. continue;
  2888. connect_change = test_bit(i, hub->change_bits);
  2889. if (!test_and_clear_bit(i, hub->event_bits) &&
  2890. !connect_change)
  2891. continue;
  2892. ret = hub_port_status(hub, i,
  2893. &portstatus, &portchange);
  2894. if (ret < 0)
  2895. continue;
  2896. if (portchange & USB_PORT_STAT_C_CONNECTION) {
  2897. clear_port_feature(hdev, i,
  2898. USB_PORT_FEAT_C_CONNECTION);
  2899. connect_change = 1;
  2900. }
  2901. if (portchange & USB_PORT_STAT_C_ENABLE) {
  2902. if (!connect_change)
  2903. dev_dbg (hub_dev,
  2904. "port %d enable change, "
  2905. "status %08x\n",
  2906. i, portstatus);
  2907. clear_port_feature(hdev, i,
  2908. USB_PORT_FEAT_C_ENABLE);
  2909. /*
  2910. * EM interference sometimes causes badly
  2911. * shielded USB devices to be shutdown by
  2912. * the hub, this hack enables them again.
  2913. * Works at least with mouse driver.
  2914. */
  2915. if (!(portstatus & USB_PORT_STAT_ENABLE)
  2916. && !connect_change
  2917. && hdev->children[i-1]) {
  2918. dev_err (hub_dev,
  2919. "port %i "
  2920. "disabled by hub (EMI?), "
  2921. "re-enabling...\n",
  2922. i);
  2923. connect_change = 1;
  2924. }
  2925. }
  2926. if (portchange & USB_PORT_STAT_C_SUSPEND) {
  2927. struct usb_device *udev;
  2928. clear_port_feature(hdev, i,
  2929. USB_PORT_FEAT_C_SUSPEND);
  2930. udev = hdev->children[i-1];
  2931. if (udev) {
  2932. usb_lock_device(udev);
  2933. ret = remote_wakeup(hdev->
  2934. children[i-1]);
  2935. usb_unlock_device(udev);
  2936. if (ret < 0)
  2937. connect_change = 1;
  2938. } else {
  2939. ret = -ENODEV;
  2940. hub_port_disable(hub, i, 1);
  2941. }
  2942. dev_dbg (hub_dev,
  2943. "resume on port %d, status %d\n",
  2944. i, ret);
  2945. }
  2946. if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
  2947. dev_err (hub_dev,
  2948. "over-current change on port %d\n",
  2949. i);
  2950. clear_port_feature(hdev, i,
  2951. USB_PORT_FEAT_C_OVER_CURRENT);
  2952. hub_power_on(hub, true);
  2953. }
  2954. if (portchange & USB_PORT_STAT_C_RESET) {
  2955. dev_dbg (hub_dev,
  2956. "reset change on port %d\n",
  2957. i);
  2958. clear_port_feature(hdev, i,
  2959. USB_PORT_FEAT_C_RESET);
  2960. }
  2961. if (connect_change)
  2962. hub_port_connect_change(hub, i,
  2963. portstatus, portchange);
  2964. } /* end for i */
  2965. /* deal with hub status changes */
  2966. if (test_and_clear_bit(0, hub->event_bits) == 0)
  2967. ; /* do nothing */
  2968. else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
  2969. dev_err (hub_dev, "get_hub_status failed\n");
  2970. else {
  2971. if (hubchange & HUB_CHANGE_LOCAL_POWER) {
  2972. dev_dbg (hub_dev, "power change\n");
  2973. clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
  2974. if (hubstatus & HUB_STATUS_LOCAL_POWER)
  2975. /* FIXME: Is this always true? */
  2976. hub->limited_power = 1;
  2977. else
  2978. hub->limited_power = 0;
  2979. }
  2980. if (hubchange & HUB_CHANGE_OVERCURRENT) {
  2981. dev_dbg (hub_dev, "overcurrent change\n");
  2982. msleep(500); /* Cool down */
  2983. clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
  2984. hub_power_on(hub, true);
  2985. }
  2986. }
  2987. loop_autopm:
  2988. /* Balance the usb_autopm_get_interface() above */
  2989. usb_autopm_put_interface_no_suspend(intf);
  2990. loop:
  2991. /* Balance the usb_autopm_get_interface_no_resume() in
  2992. * kick_khubd() and allow autosuspend.
  2993. */
  2994. usb_autopm_put_interface(intf);
  2995. loop2:
  2996. usb_unlock_device(hdev);
  2997. kref_put(&hub->kref, hub_release);
  2998. } /* end while (1) */
  2999. }
  3000. static int hub_thread(void *__unused)
  3001. {
  3002. /* khubd needs to be freezable to avoid intefering with USB-PERSIST
  3003. * port handover. Otherwise it might see that a full-speed device
  3004. * was gone before the EHCI controller had handed its port over to
  3005. * the companion full-speed controller.
  3006. */
  3007. set_freezable();
  3008. do {
  3009. hub_events();
  3010. wait_event_freezable(khubd_wait,
  3011. !list_empty(&hub_event_list) ||
  3012. kthread_should_stop());
  3013. } while (!kthread_should_stop() || !list_empty(&hub_event_list));
  3014. pr_debug("%s: khubd exiting\n", usbcore_name);
  3015. return 0;
  3016. }
  3017. static struct usb_device_id hub_id_table [] = {
  3018. { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
  3019. .bDeviceClass = USB_CLASS_HUB},
  3020. { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
  3021. .bInterfaceClass = USB_CLASS_HUB},
  3022. { } /* Terminating entry */
  3023. };
  3024. MODULE_DEVICE_TABLE (usb, hub_id_table);
  3025. static struct usb_driver hub_driver = {
  3026. .name = "hub",
  3027. .probe = hub_probe,
  3028. .disconnect = hub_disconnect,
  3029. .suspend = hub_suspend,
  3030. .resume = hub_resume,
  3031. .reset_resume = hub_reset_resume,
  3032. .pre_reset = hub_pre_reset,
  3033. .post_reset = hub_post_reset,
  3034. .ioctl = hub_ioctl,
  3035. .id_table = hub_id_table,
  3036. .supports_autosuspend = 1,
  3037. };
  3038. int usb_hub_init(void)
  3039. {
  3040. if (usb_register(&hub_driver) < 0) {
  3041. printk(KERN_ERR "%s: can't register hub driver\n",
  3042. usbcore_name);
  3043. return -1;
  3044. }
  3045. khubd_task = kthread_run(hub_thread, NULL, "khubd");
  3046. if (!IS_ERR(khubd_task))
  3047. return 0;
  3048. /* Fall through if kernel_thread failed */
  3049. usb_deregister(&hub_driver);
  3050. printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
  3051. return -1;
  3052. }
  3053. void usb_hub_cleanup(void)
  3054. {
  3055. kthread_stop(khubd_task);
  3056. /*
  3057. * Hub resources are freed for us by usb_deregister. It calls
  3058. * usb_driver_purge on every device which in turn calls that
  3059. * devices disconnect function if it is using this driver.
  3060. * The hub_disconnect function takes care of releasing the
  3061. * individual hub resources. -greg
  3062. */
  3063. usb_deregister(&hub_driver);
  3064. } /* usb_hub_cleanup() */
  3065. static int descriptors_changed(struct usb_device *udev,
  3066. struct usb_device_descriptor *old_device_descriptor)
  3067. {
  3068. int changed = 0;
  3069. unsigned index;
  3070. unsigned serial_len = 0;
  3071. unsigned len;
  3072. unsigned old_length;
  3073. int length;
  3074. char *buf;
  3075. if (memcmp(&udev->descriptor, old_device_descriptor,
  3076. sizeof(*old_device_descriptor)) != 0)
  3077. return 1;
  3078. /* Since the idVendor, idProduct, and bcdDevice values in the
  3079. * device descriptor haven't changed, we will assume the
  3080. * Manufacturer and Product strings haven't changed either.
  3081. * But the SerialNumber string could be different (e.g., a
  3082. * different flash card of the same brand).
  3083. */
  3084. if (udev->serial)
  3085. serial_len = strlen(udev->serial) + 1;
  3086. len = serial_len;
  3087. for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
  3088. old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
  3089. len = max(len, old_length);
  3090. }
  3091. buf = kmalloc(len, GFP_NOIO);
  3092. if (buf == NULL) {
  3093. dev_err(&udev->dev, "no mem to re-read configs after reset\n");
  3094. /* assume the worst */
  3095. return 1;
  3096. }
  3097. for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
  3098. old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
  3099. length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
  3100. old_length);
  3101. if (length != old_length) {
  3102. dev_dbg(&udev->dev, "config index %d, error %d\n",
  3103. index, length);
  3104. changed = 1;
  3105. break;
  3106. }
  3107. if (memcmp (buf, udev->rawdescriptors[index], old_length)
  3108. != 0) {
  3109. dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
  3110. index,
  3111. ((struct usb_config_descriptor *) buf)->
  3112. bConfigurationValue);
  3113. changed = 1;
  3114. break;
  3115. }
  3116. }
  3117. if (!changed && serial_len) {
  3118. length = usb_string(udev, udev->descriptor.iSerialNumber,
  3119. buf, serial_len);
  3120. if (length + 1 != serial_len) {
  3121. dev_dbg(&udev->dev, "serial string error %d\n",
  3122. length);
  3123. changed = 1;
  3124. } else if (memcmp(buf, udev->serial, length) != 0) {
  3125. dev_dbg(&udev->dev, "serial string changed\n");
  3126. changed = 1;
  3127. }
  3128. }
  3129. kfree(buf);
  3130. return changed;
  3131. }
  3132. /**
  3133. * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
  3134. * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
  3135. *
  3136. * WARNING - don't use this routine to reset a composite device
  3137. * (one with multiple interfaces owned by separate drivers)!
  3138. * Use usb_reset_device() instead.
  3139. *
  3140. * Do a port reset, reassign the device's address, and establish its
  3141. * former operating configuration. If the reset fails, or the device's
  3142. * descriptors change from their values before the reset, or the original
  3143. * configuration and altsettings cannot be restored, a flag will be set
  3144. * telling khubd to pretend the device has been disconnected and then
  3145. * re-connected. All drivers will be unbound, and the device will be
  3146. * re-enumerated and probed all over again.
  3147. *
  3148. * Returns 0 if the reset succeeded, -ENODEV if the device has been
  3149. * flagged for logical disconnection, or some other negative error code
  3150. * if the reset wasn't even attempted.
  3151. *
  3152. * The caller must own the device lock. For example, it's safe to use
  3153. * this from a driver probe() routine after downloading new firmware.
  3154. * For calls that might not occur during probe(), drivers should lock
  3155. * the device using usb_lock_device_for_reset().
  3156. *
  3157. * Locking exception: This routine may also be called from within an
  3158. * autoresume handler. Such usage won't conflict with other tasks
  3159. * holding the device lock because these tasks should always call
  3160. * usb_autopm_resume_device(), thereby preventing any unwanted autoresume.
  3161. */
  3162. static int usb_reset_and_verify_device(struct usb_device *udev)
  3163. {
  3164. struct usb_device *parent_hdev = udev->parent;
  3165. struct usb_hub *parent_hub;
  3166. struct usb_hcd *hcd = bus_to_hcd(udev->bus);
  3167. struct usb_device_descriptor descriptor = udev->descriptor;
  3168. int i, ret = 0;
  3169. int port1 = udev->portnum;
  3170. if (udev->state == USB_STATE_NOTATTACHED ||
  3171. udev->state == USB_STATE_SUSPENDED) {
  3172. dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
  3173. udev->state);
  3174. return -EINVAL;
  3175. }
  3176. if (!parent_hdev) {
  3177. /* this requires hcd-specific logic; see OHCI hc_restart() */
  3178. dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
  3179. return -EISDIR;
  3180. }
  3181. parent_hub = hdev_to_hub(parent_hdev);
  3182. set_bit(port1, parent_hub->busy_bits);
  3183. for (i = 0; i < SET_CONFIG_TRIES; ++i) {
  3184. /* ep0 maxpacket size may change; let the HCD know about it.
  3185. * Other endpoints will be handled by re-enumeration. */
  3186. usb_ep0_reinit(udev);
  3187. ret = hub_port_init(parent_hub, udev, port1, i);
  3188. if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
  3189. break;
  3190. }
  3191. clear_bit(port1, parent_hub->busy_bits);
  3192. if (ret < 0)
  3193. goto re_enumerate;
  3194. /* Device might have changed firmware (DFU or similar) */
  3195. if (descriptors_changed(udev, &descriptor)) {
  3196. dev_info(&udev->dev, "device firmware changed\n");
  3197. udev->descriptor = descriptor; /* for disconnect() calls */
  3198. goto re_enumerate;
  3199. }
  3200. /* Restore the device's previous configuration */
  3201. if (!udev->actconfig)
  3202. goto done;
  3203. mutex_lock(&hcd->bandwidth_mutex);
  3204. ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
  3205. if (ret < 0) {
  3206. dev_warn(&udev->dev,
  3207. "Busted HC? Not enough HCD resources for "
  3208. "old configuration.\n");
  3209. mutex_unlock(&hcd->bandwidth_mutex);
  3210. goto re_enumerate;
  3211. }
  3212. ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  3213. USB_REQ_SET_CONFIGURATION, 0,
  3214. udev->actconfig->desc.bConfigurationValue, 0,
  3215. NULL, 0, USB_CTRL_SET_TIMEOUT);
  3216. if (ret < 0) {
  3217. dev_err(&udev->dev,
  3218. "can't restore configuration #%d (error=%d)\n",
  3219. udev->actconfig->desc.bConfigurationValue, ret);
  3220. mutex_unlock(&hcd->bandwidth_mutex);
  3221. goto re_enumerate;
  3222. }
  3223. mutex_unlock(&hcd->bandwidth_mutex);
  3224. usb_set_device_state(udev, USB_STATE_CONFIGURED);
  3225. /* Put interfaces back into the same altsettings as before.
  3226. * Don't bother to send the Set-Interface request for interfaces
  3227. * that were already in altsetting 0; besides being unnecessary,
  3228. * many devices can't handle it. Instead just reset the host-side
  3229. * endpoint state.
  3230. */
  3231. for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
  3232. struct usb_host_config *config = udev->actconfig;
  3233. struct usb_interface *intf = config->interface[i];
  3234. struct usb_interface_descriptor *desc;
  3235. desc = &intf->cur_altsetting->desc;
  3236. if (desc->bAlternateSetting == 0) {
  3237. usb_disable_interface(udev, intf, true);
  3238. usb_enable_interface(udev, intf, true);
  3239. ret = 0;
  3240. } else {
  3241. /* We've just reset the device, so it will think alt
  3242. * setting 0 is installed. For usb_set_interface() to
  3243. * work properly, we need to set the current alternate
  3244. * interface setting to 0 (or the first alt setting, if
  3245. * the device doesn't have alt setting 0).
  3246. */
  3247. intf->cur_altsetting =
  3248. usb_find_alt_setting(config, i, 0);
  3249. if (!intf->cur_altsetting)
  3250. intf->cur_altsetting =
  3251. &config->intf_cache[i]->altsetting[0];
  3252. ret = usb_set_interface(udev, desc->bInterfaceNumber,
  3253. desc->bAlternateSetting);
  3254. }
  3255. if (ret < 0) {
  3256. dev_err(&udev->dev, "failed to restore interface %d "
  3257. "altsetting %d (error=%d)\n",
  3258. desc->bInterfaceNumber,
  3259. desc->bAlternateSetting,
  3260. ret);
  3261. goto re_enumerate;
  3262. }
  3263. }
  3264. done:
  3265. return 0;
  3266. re_enumerate:
  3267. hub_port_logical_disconnect(parent_hub, port1);
  3268. return -ENODEV;
  3269. }
  3270. /**
  3271. * usb_reset_device - warn interface drivers and perform a USB port reset
  3272. * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
  3273. *
  3274. * Warns all drivers bound to registered interfaces (using their pre_reset
  3275. * method), performs the port reset, and then lets the drivers know that
  3276. * the reset is over (using their post_reset method).
  3277. *
  3278. * Return value is the same as for usb_reset_and_verify_device().
  3279. *
  3280. * The caller must own the device lock. For example, it's safe to use
  3281. * this from a driver probe() routine after downloading new firmware.
  3282. * For calls that might not occur during probe(), drivers should lock
  3283. * the device using usb_lock_device_for_reset().
  3284. *
  3285. * If an interface is currently being probed or disconnected, we assume
  3286. * its driver knows how to handle resets. For all other interfaces,
  3287. * if the driver doesn't have pre_reset and post_reset methods then
  3288. * we attempt to unbind it and rebind afterward.
  3289. */
  3290. int usb_reset_device(struct usb_device *udev)
  3291. {
  3292. int ret;
  3293. int i;
  3294. struct usb_host_config *config = udev->actconfig;
  3295. if (udev->state == USB_STATE_NOTATTACHED ||
  3296. udev->state == USB_STATE_SUSPENDED) {
  3297. dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
  3298. udev->state);
  3299. return -EINVAL;
  3300. }
  3301. /* Prevent autosuspend during the reset */
  3302. usb_autoresume_device(udev);
  3303. if (config) {
  3304. for (i = 0; i < config->desc.bNumInterfaces; ++i) {
  3305. struct usb_interface *cintf = config->interface[i];
  3306. struct usb_driver *drv;
  3307. int unbind = 0;
  3308. if (cintf->dev.driver) {
  3309. drv = to_usb_driver(cintf->dev.driver);
  3310. if (drv->pre_reset && drv->post_reset)
  3311. unbind = (drv->pre_reset)(cintf);
  3312. else if (cintf->condition ==
  3313. USB_INTERFACE_BOUND)
  3314. unbind = 1;
  3315. if (unbind)
  3316. usb_forced_unbind_intf(cintf);
  3317. }
  3318. }
  3319. }
  3320. ret = usb_reset_and_verify_device(udev);
  3321. if (config) {
  3322. for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
  3323. struct usb_interface *cintf = config->interface[i];
  3324. struct usb_driver *drv;
  3325. int rebind = cintf->needs_binding;
  3326. if (!rebind && cintf->dev.driver) {
  3327. drv = to_usb_driver(cintf->dev.driver);
  3328. if (drv->post_reset)
  3329. rebind = (drv->post_reset)(cintf);
  3330. else if (cintf->condition ==
  3331. USB_INTERFACE_BOUND)
  3332. rebind = 1;
  3333. }
  3334. if (ret == 0 && rebind)
  3335. usb_rebind_intf(cintf);
  3336. }
  3337. }
  3338. usb_autosuspend_device(udev);
  3339. return ret;
  3340. }
  3341. EXPORT_SYMBOL_GPL(usb_reset_device);
  3342. /**
  3343. * usb_queue_reset_device - Reset a USB device from an atomic context
  3344. * @iface: USB interface belonging to the device to reset
  3345. *
  3346. * This function can be used to reset a USB device from an atomic
  3347. * context, where usb_reset_device() won't work (as it blocks).
  3348. *
  3349. * Doing a reset via this method is functionally equivalent to calling
  3350. * usb_reset_device(), except for the fact that it is delayed to a
  3351. * workqueue. This means that any drivers bound to other interfaces
  3352. * might be unbound, as well as users from usbfs in user space.
  3353. *
  3354. * Corner cases:
  3355. *
  3356. * - Scheduling two resets at the same time from two different drivers
  3357. * attached to two different interfaces of the same device is
  3358. * possible; depending on how the driver attached to each interface
  3359. * handles ->pre_reset(), the second reset might happen or not.
  3360. *
  3361. * - If a driver is unbound and it had a pending reset, the reset will
  3362. * be cancelled.
  3363. *
  3364. * - This function can be called during .probe() or .disconnect()
  3365. * times. On return from .disconnect(), any pending resets will be
  3366. * cancelled.
  3367. *
  3368. * There is no no need to lock/unlock the @reset_ws as schedule_work()
  3369. * does its own.
  3370. *
  3371. * NOTE: We don't do any reference count tracking because it is not
  3372. * needed. The lifecycle of the work_struct is tied to the
  3373. * usb_interface. Before destroying the interface we cancel the
  3374. * work_struct, so the fact that work_struct is queued and or
  3375. * running means the interface (and thus, the device) exist and
  3376. * are referenced.
  3377. */
  3378. void usb_queue_reset_device(struct usb_interface *iface)
  3379. {
  3380. schedule_work(&iface->reset_ws);
  3381. }
  3382. EXPORT_SYMBOL_GPL(usb_queue_reset_device);