hub.c 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036
  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/config.h>
  11. #include <linux/kernel.h>
  12. #include <linux/errno.h>
  13. #include <linux/module.h>
  14. #include <linux/moduleparam.h>
  15. #include <linux/completion.h>
  16. #include <linux/sched.h>
  17. #include <linux/list.h>
  18. #include <linux/slab.h>
  19. #include <linux/smp_lock.h>
  20. #include <linux/ioctl.h>
  21. #include <linux/usb.h>
  22. #include <linux/usbdevice_fs.h>
  23. #include <linux/kthread.h>
  24. #include <asm/semaphore.h>
  25. #include <asm/uaccess.h>
  26. #include <asm/byteorder.h>
  27. #include "usb.h"
  28. #include "hcd.h"
  29. #include "hub.h"
  30. /* Protect struct usb_device->state and ->children members
  31. * Note: Both are also protected by ->dev.sem, except that ->state can
  32. * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
  33. static DEFINE_SPINLOCK(device_state_lock);
  34. /* khubd's worklist and its lock */
  35. static DEFINE_SPINLOCK(hub_event_lock);
  36. static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */
  37. /* Wakes up khubd */
  38. static DECLARE_WAIT_QUEUE_HEAD(khubd_wait);
  39. static struct task_struct *khubd_task;
  40. /* cycle leds on hubs that aren't blinking for attention */
  41. static int blinkenlights = 0;
  42. module_param (blinkenlights, bool, S_IRUGO);
  43. MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs");
  44. /*
  45. * As of 2.6.10 we introduce a new USB device initialization scheme which
  46. * closely resembles the way Windows works. Hopefully it will be compatible
  47. * with a wider range of devices than the old scheme. However some previously
  48. * working devices may start giving rise to "device not accepting address"
  49. * errors; if that happens the user can try the old scheme by adjusting the
  50. * following module parameters.
  51. *
  52. * For maximum flexibility there are two boolean parameters to control the
  53. * hub driver's behavior. On the first initialization attempt, if the
  54. * "old_scheme_first" parameter is set then the old scheme will be used,
  55. * otherwise the new scheme is used. If that fails and "use_both_schemes"
  56. * is set, then the driver will make another attempt, using the other scheme.
  57. */
  58. static int old_scheme_first = 0;
  59. module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
  60. MODULE_PARM_DESC(old_scheme_first,
  61. "start with the old device initialization scheme");
  62. static int use_both_schemes = 1;
  63. module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
  64. MODULE_PARM_DESC(use_both_schemes,
  65. "try the other device initialization scheme if the "
  66. "first one fails");
  67. #ifdef DEBUG
  68. static inline char *portspeed (int portstatus)
  69. {
  70. if (portstatus & (1 << USB_PORT_FEAT_HIGHSPEED))
  71. return "480 Mb/s";
  72. else if (portstatus & (1 << USB_PORT_FEAT_LOWSPEED))
  73. return "1.5 Mb/s";
  74. else
  75. return "12 Mb/s";
  76. }
  77. #endif
  78. /* Note that hdev or one of its children must be locked! */
  79. static inline struct usb_hub *hdev_to_hub(struct usb_device *hdev)
  80. {
  81. return usb_get_intfdata(hdev->actconfig->interface[0]);
  82. }
  83. /* USB 2.0 spec Section 11.24.4.5 */
  84. static int get_hub_descriptor(struct usb_device *hdev, void *data, int size)
  85. {
  86. int i, ret;
  87. for (i = 0; i < 3; i++) {
  88. ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
  89. USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
  90. USB_DT_HUB << 8, 0, data, size,
  91. USB_CTRL_GET_TIMEOUT);
  92. if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2))
  93. return ret;
  94. }
  95. return -EINVAL;
  96. }
  97. /*
  98. * USB 2.0 spec Section 11.24.2.1
  99. */
  100. static int clear_hub_feature(struct usb_device *hdev, int feature)
  101. {
  102. return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
  103. USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
  104. }
  105. /*
  106. * USB 2.0 spec Section 11.24.2.2
  107. */
  108. static int clear_port_feature(struct usb_device *hdev, int port1, int feature)
  109. {
  110. return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
  111. USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
  112. NULL, 0, 1000);
  113. }
  114. /*
  115. * USB 2.0 spec Section 11.24.2.13
  116. */
  117. static int set_port_feature(struct usb_device *hdev, int port1, int feature)
  118. {
  119. return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
  120. USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
  121. NULL, 0, 1000);
  122. }
  123. /*
  124. * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
  125. * for info about using port indicators
  126. */
  127. static void set_port_led(
  128. struct usb_hub *hub,
  129. int port1,
  130. int selector
  131. )
  132. {
  133. int status = set_port_feature(hub->hdev, (selector << 8) | port1,
  134. USB_PORT_FEAT_INDICATOR);
  135. if (status < 0)
  136. dev_dbg (hub->intfdev,
  137. "port %d indicator %s status %d\n",
  138. port1,
  139. ({ char *s; switch (selector) {
  140. case HUB_LED_AMBER: s = "amber"; break;
  141. case HUB_LED_GREEN: s = "green"; break;
  142. case HUB_LED_OFF: s = "off"; break;
  143. case HUB_LED_AUTO: s = "auto"; break;
  144. default: s = "??"; break;
  145. }; s; }),
  146. status);
  147. }
  148. #define LED_CYCLE_PERIOD ((2*HZ)/3)
  149. static void led_work (void *__hub)
  150. {
  151. struct usb_hub *hub = __hub;
  152. struct usb_device *hdev = hub->hdev;
  153. unsigned i;
  154. unsigned changed = 0;
  155. int cursor = -1;
  156. if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
  157. return;
  158. for (i = 0; i < hub->descriptor->bNbrPorts; i++) {
  159. unsigned selector, mode;
  160. /* 30%-50% duty cycle */
  161. switch (hub->indicator[i]) {
  162. /* cycle marker */
  163. case INDICATOR_CYCLE:
  164. cursor = i;
  165. selector = HUB_LED_AUTO;
  166. mode = INDICATOR_AUTO;
  167. break;
  168. /* blinking green = sw attention */
  169. case INDICATOR_GREEN_BLINK:
  170. selector = HUB_LED_GREEN;
  171. mode = INDICATOR_GREEN_BLINK_OFF;
  172. break;
  173. case INDICATOR_GREEN_BLINK_OFF:
  174. selector = HUB_LED_OFF;
  175. mode = INDICATOR_GREEN_BLINK;
  176. break;
  177. /* blinking amber = hw attention */
  178. case INDICATOR_AMBER_BLINK:
  179. selector = HUB_LED_AMBER;
  180. mode = INDICATOR_AMBER_BLINK_OFF;
  181. break;
  182. case INDICATOR_AMBER_BLINK_OFF:
  183. selector = HUB_LED_OFF;
  184. mode = INDICATOR_AMBER_BLINK;
  185. break;
  186. /* blink green/amber = reserved */
  187. case INDICATOR_ALT_BLINK:
  188. selector = HUB_LED_GREEN;
  189. mode = INDICATOR_ALT_BLINK_OFF;
  190. break;
  191. case INDICATOR_ALT_BLINK_OFF:
  192. selector = HUB_LED_AMBER;
  193. mode = INDICATOR_ALT_BLINK;
  194. break;
  195. default:
  196. continue;
  197. }
  198. if (selector != HUB_LED_AUTO)
  199. changed = 1;
  200. set_port_led(hub, i + 1, selector);
  201. hub->indicator[i] = mode;
  202. }
  203. if (!changed && blinkenlights) {
  204. cursor++;
  205. cursor %= hub->descriptor->bNbrPorts;
  206. set_port_led(hub, cursor + 1, HUB_LED_GREEN);
  207. hub->indicator[cursor] = INDICATOR_CYCLE;
  208. changed++;
  209. }
  210. if (changed)
  211. schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
  212. }
  213. /* use a short timeout for hub/port status fetches */
  214. #define USB_STS_TIMEOUT 1000
  215. #define USB_STS_RETRIES 5
  216. /*
  217. * USB 2.0 spec Section 11.24.2.6
  218. */
  219. static int get_hub_status(struct usb_device *hdev,
  220. struct usb_hub_status *data)
  221. {
  222. int i, status = -ETIMEDOUT;
  223. for (i = 0; i < USB_STS_RETRIES && status == -ETIMEDOUT; i++) {
  224. status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
  225. USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
  226. data, sizeof(*data), USB_STS_TIMEOUT);
  227. }
  228. return status;
  229. }
  230. /*
  231. * USB 2.0 spec Section 11.24.2.7
  232. */
  233. static int get_port_status(struct usb_device *hdev, int port1,
  234. struct usb_port_status *data)
  235. {
  236. int i, status = -ETIMEDOUT;
  237. for (i = 0; i < USB_STS_RETRIES && status == -ETIMEDOUT; i++) {
  238. status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
  239. USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1,
  240. data, sizeof(*data), USB_STS_TIMEOUT);
  241. }
  242. return status;
  243. }
  244. static void kick_khubd(struct usb_hub *hub)
  245. {
  246. unsigned long flags;
  247. spin_lock_irqsave(&hub_event_lock, flags);
  248. if (list_empty(&hub->event_list)) {
  249. list_add_tail(&hub->event_list, &hub_event_list);
  250. wake_up(&khubd_wait);
  251. }
  252. spin_unlock_irqrestore(&hub_event_lock, flags);
  253. }
  254. void usb_kick_khubd(struct usb_device *hdev)
  255. {
  256. kick_khubd(hdev_to_hub(hdev));
  257. }
  258. /* completion function, fires on port status changes and various faults */
  259. static void hub_irq(struct urb *urb, struct pt_regs *regs)
  260. {
  261. struct usb_hub *hub = (struct usb_hub *)urb->context;
  262. int status;
  263. int i;
  264. unsigned long bits;
  265. switch (urb->status) {
  266. case -ENOENT: /* synchronous unlink */
  267. case -ECONNRESET: /* async unlink */
  268. case -ESHUTDOWN: /* hardware going away */
  269. return;
  270. default: /* presumably an error */
  271. /* Cause a hub reset after 10 consecutive errors */
  272. dev_dbg (hub->intfdev, "transfer --> %d\n", urb->status);
  273. if ((++hub->nerrors < 10) || hub->error)
  274. goto resubmit;
  275. hub->error = urb->status;
  276. /* FALL THROUGH */
  277. /* let khubd handle things */
  278. case 0: /* we got data: port status changed */
  279. bits = 0;
  280. for (i = 0; i < urb->actual_length; ++i)
  281. bits |= ((unsigned long) ((*hub->buffer)[i]))
  282. << (i*8);
  283. hub->event_bits[0] = bits;
  284. break;
  285. }
  286. hub->nerrors = 0;
  287. /* Something happened, let khubd figure it out */
  288. kick_khubd(hub);
  289. resubmit:
  290. if (hub->quiescing)
  291. return;
  292. if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0
  293. && status != -ENODEV && status != -EPERM)
  294. dev_err (hub->intfdev, "resubmit --> %d\n", status);
  295. }
  296. /* USB 2.0 spec Section 11.24.2.3 */
  297. static inline int
  298. hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt)
  299. {
  300. return usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
  301. HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
  302. tt, NULL, 0, 1000);
  303. }
  304. /*
  305. * enumeration blocks khubd for a long time. we use keventd instead, since
  306. * long blocking there is the exception, not the rule. accordingly, HCDs
  307. * talking to TTs must queue control transfers (not just bulk and iso), so
  308. * both can talk to the same hub concurrently.
  309. */
  310. static void hub_tt_kevent (void *arg)
  311. {
  312. struct usb_hub *hub = arg;
  313. unsigned long flags;
  314. spin_lock_irqsave (&hub->tt.lock, flags);
  315. while (!list_empty (&hub->tt.clear_list)) {
  316. struct list_head *temp;
  317. struct usb_tt_clear *clear;
  318. struct usb_device *hdev = hub->hdev;
  319. int status;
  320. temp = hub->tt.clear_list.next;
  321. clear = list_entry (temp, struct usb_tt_clear, clear_list);
  322. list_del (&clear->clear_list);
  323. /* drop lock so HCD can concurrently report other TT errors */
  324. spin_unlock_irqrestore (&hub->tt.lock, flags);
  325. status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt);
  326. spin_lock_irqsave (&hub->tt.lock, flags);
  327. if (status)
  328. dev_err (&hdev->dev,
  329. "clear tt %d (%04x) error %d\n",
  330. clear->tt, clear->devinfo, status);
  331. kfree(clear);
  332. }
  333. spin_unlock_irqrestore (&hub->tt.lock, flags);
  334. }
  335. /**
  336. * usb_hub_tt_clear_buffer - clear control/bulk TT state in high speed hub
  337. * @udev: the device whose split transaction failed
  338. * @pipe: identifies the endpoint of the failed transaction
  339. *
  340. * High speed HCDs use this to tell the hub driver that some split control or
  341. * bulk transaction failed in a way that requires clearing internal state of
  342. * a transaction translator. This is normally detected (and reported) from
  343. * interrupt context.
  344. *
  345. * It may not be possible for that hub to handle additional full (or low)
  346. * speed transactions until that state is fully cleared out.
  347. */
  348. void usb_hub_tt_clear_buffer (struct usb_device *udev, int pipe)
  349. {
  350. struct usb_tt *tt = udev->tt;
  351. unsigned long flags;
  352. struct usb_tt_clear *clear;
  353. /* we've got to cope with an arbitrary number of pending TT clears,
  354. * since each TT has "at least two" buffers that can need it (and
  355. * there can be many TTs per hub). even if they're uncommon.
  356. */
  357. if ((clear = kmalloc (sizeof *clear, SLAB_ATOMIC)) == NULL) {
  358. dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
  359. /* FIXME recover somehow ... RESET_TT? */
  360. return;
  361. }
  362. /* info that CLEAR_TT_BUFFER needs */
  363. clear->tt = tt->multi ? udev->ttport : 1;
  364. clear->devinfo = usb_pipeendpoint (pipe);
  365. clear->devinfo |= udev->devnum << 4;
  366. clear->devinfo |= usb_pipecontrol (pipe)
  367. ? (USB_ENDPOINT_XFER_CONTROL << 11)
  368. : (USB_ENDPOINT_XFER_BULK << 11);
  369. if (usb_pipein (pipe))
  370. clear->devinfo |= 1 << 15;
  371. /* tell keventd to clear state for this TT */
  372. spin_lock_irqsave (&tt->lock, flags);
  373. list_add_tail (&clear->clear_list, &tt->clear_list);
  374. schedule_work (&tt->kevent);
  375. spin_unlock_irqrestore (&tt->lock, flags);
  376. }
  377. static void hub_power_on(struct usb_hub *hub)
  378. {
  379. int port1;
  380. unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2;
  381. u16 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
  382. /* if hub supports power switching, enable power on each port */
  383. if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2) {
  384. dev_dbg(hub->intfdev, "enabling power on all ports\n");
  385. for (port1 = 1; port1 <= hub->descriptor->bNbrPorts; port1++)
  386. set_port_feature(hub->hdev, port1,
  387. USB_PORT_FEAT_POWER);
  388. }
  389. /* Wait at least 100 msec for power to become stable */
  390. msleep(max(pgood_delay, (unsigned) 100));
  391. }
  392. static inline void __hub_quiesce(struct usb_hub *hub)
  393. {
  394. /* (nonblocking) khubd and related activity won't re-trigger */
  395. hub->quiescing = 1;
  396. hub->activating = 0;
  397. hub->resume_root_hub = 0;
  398. }
  399. static void hub_quiesce(struct usb_hub *hub)
  400. {
  401. /* (blocking) stop khubd and related activity */
  402. __hub_quiesce(hub);
  403. usb_kill_urb(hub->urb);
  404. if (hub->has_indicators)
  405. cancel_delayed_work(&hub->leds);
  406. if (hub->has_indicators || hub->tt.hub)
  407. flush_scheduled_work();
  408. }
  409. static void hub_activate(struct usb_hub *hub)
  410. {
  411. int status;
  412. hub->quiescing = 0;
  413. hub->activating = 1;
  414. hub->resume_root_hub = 0;
  415. status = usb_submit_urb(hub->urb, GFP_NOIO);
  416. if (status < 0)
  417. dev_err(hub->intfdev, "activate --> %d\n", status);
  418. if (hub->has_indicators && blinkenlights)
  419. schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD);
  420. /* scan all ports ASAP */
  421. kick_khubd(hub);
  422. }
  423. static int hub_hub_status(struct usb_hub *hub,
  424. u16 *status, u16 *change)
  425. {
  426. int ret;
  427. ret = get_hub_status(hub->hdev, &hub->status->hub);
  428. if (ret < 0)
  429. dev_err (hub->intfdev,
  430. "%s failed (err = %d)\n", __FUNCTION__, ret);
  431. else {
  432. *status = le16_to_cpu(hub->status->hub.wHubStatus);
  433. *change = le16_to_cpu(hub->status->hub.wHubChange);
  434. ret = 0;
  435. }
  436. return ret;
  437. }
  438. static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
  439. {
  440. struct usb_device *hdev = hub->hdev;
  441. int ret;
  442. if (hdev->children[port1-1] && set_state) {
  443. usb_set_device_state(hdev->children[port1-1],
  444. USB_STATE_NOTATTACHED);
  445. }
  446. ret = clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE);
  447. if (ret)
  448. dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n",
  449. port1, ret);
  450. return ret;
  451. }
  452. /* caller has locked the hub device */
  453. static void hub_pre_reset(struct usb_hub *hub, int disable_ports)
  454. {
  455. struct usb_device *hdev = hub->hdev;
  456. int port1;
  457. for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
  458. if (hdev->children[port1 - 1]) {
  459. usb_disconnect(&hdev->children[port1 - 1]);
  460. if (disable_ports)
  461. hub_port_disable(hub, port1, 0);
  462. }
  463. }
  464. hub_quiesce(hub);
  465. }
  466. /* caller has locked the hub device */
  467. static void hub_post_reset(struct usb_hub *hub)
  468. {
  469. hub_activate(hub);
  470. hub_power_on(hub);
  471. }
  472. static int hub_configure(struct usb_hub *hub,
  473. struct usb_endpoint_descriptor *endpoint)
  474. {
  475. struct usb_device *hdev = hub->hdev;
  476. struct device *hub_dev = hub->intfdev;
  477. u16 hubstatus, hubchange;
  478. u16 wHubCharacteristics;
  479. unsigned int pipe;
  480. int maxp, ret;
  481. char *message;
  482. hub->buffer = usb_buffer_alloc(hdev, sizeof(*hub->buffer), GFP_KERNEL,
  483. &hub->buffer_dma);
  484. if (!hub->buffer) {
  485. message = "can't allocate hub irq buffer";
  486. ret = -ENOMEM;
  487. goto fail;
  488. }
  489. hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
  490. if (!hub->status) {
  491. message = "can't kmalloc hub status buffer";
  492. ret = -ENOMEM;
  493. goto fail;
  494. }
  495. hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL);
  496. if (!hub->descriptor) {
  497. message = "can't kmalloc hub descriptor";
  498. ret = -ENOMEM;
  499. goto fail;
  500. }
  501. /* Request the entire hub descriptor.
  502. * hub->descriptor can handle USB_MAXCHILDREN ports,
  503. * but the hub can/will return fewer bytes here.
  504. */
  505. ret = get_hub_descriptor(hdev, hub->descriptor,
  506. sizeof(*hub->descriptor));
  507. if (ret < 0) {
  508. message = "can't read hub descriptor";
  509. goto fail;
  510. } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) {
  511. message = "hub has too many ports!";
  512. ret = -ENODEV;
  513. goto fail;
  514. }
  515. hdev->maxchild = hub->descriptor->bNbrPorts;
  516. dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild,
  517. (hdev->maxchild == 1) ? "" : "s");
  518. wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
  519. if (wHubCharacteristics & HUB_CHAR_COMPOUND) {
  520. int i;
  521. char portstr [USB_MAXCHILDREN + 1];
  522. for (i = 0; i < hdev->maxchild; i++)
  523. portstr[i] = hub->descriptor->DeviceRemovable
  524. [((i + 1) / 8)] & (1 << ((i + 1) % 8))
  525. ? 'F' : 'R';
  526. portstr[hdev->maxchild] = 0;
  527. dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
  528. } else
  529. dev_dbg(hub_dev, "standalone hub\n");
  530. switch (wHubCharacteristics & HUB_CHAR_LPSM) {
  531. case 0x00:
  532. dev_dbg(hub_dev, "ganged power switching\n");
  533. break;
  534. case 0x01:
  535. dev_dbg(hub_dev, "individual port power switching\n");
  536. break;
  537. case 0x02:
  538. case 0x03:
  539. dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
  540. break;
  541. }
  542. switch (wHubCharacteristics & HUB_CHAR_OCPM) {
  543. case 0x00:
  544. dev_dbg(hub_dev, "global over-current protection\n");
  545. break;
  546. case 0x08:
  547. dev_dbg(hub_dev, "individual port over-current protection\n");
  548. break;
  549. case 0x10:
  550. case 0x18:
  551. dev_dbg(hub_dev, "no over-current protection\n");
  552. break;
  553. }
  554. spin_lock_init (&hub->tt.lock);
  555. INIT_LIST_HEAD (&hub->tt.clear_list);
  556. INIT_WORK (&hub->tt.kevent, hub_tt_kevent, hub);
  557. switch (hdev->descriptor.bDeviceProtocol) {
  558. case 0:
  559. break;
  560. case 1:
  561. dev_dbg(hub_dev, "Single TT\n");
  562. hub->tt.hub = hdev;
  563. break;
  564. case 2:
  565. ret = usb_set_interface(hdev, 0, 1);
  566. if (ret == 0) {
  567. dev_dbg(hub_dev, "TT per port\n");
  568. hub->tt.multi = 1;
  569. } else
  570. dev_err(hub_dev, "Using single TT (err %d)\n",
  571. ret);
  572. hub->tt.hub = hdev;
  573. break;
  574. default:
  575. dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
  576. hdev->descriptor.bDeviceProtocol);
  577. break;
  578. }
  579. /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
  580. switch (wHubCharacteristics & HUB_CHAR_TTTT) {
  581. case HUB_TTTT_8_BITS:
  582. if (hdev->descriptor.bDeviceProtocol != 0) {
  583. hub->tt.think_time = 666;
  584. dev_dbg(hub_dev, "TT requires at most %d "
  585. "FS bit times (%d ns)\n",
  586. 8, hub->tt.think_time);
  587. }
  588. break;
  589. case HUB_TTTT_16_BITS:
  590. hub->tt.think_time = 666 * 2;
  591. dev_dbg(hub_dev, "TT requires at most %d "
  592. "FS bit times (%d ns)\n",
  593. 16, hub->tt.think_time);
  594. break;
  595. case HUB_TTTT_24_BITS:
  596. hub->tt.think_time = 666 * 3;
  597. dev_dbg(hub_dev, "TT requires at most %d "
  598. "FS bit times (%d ns)\n",
  599. 24, hub->tt.think_time);
  600. break;
  601. case HUB_TTTT_32_BITS:
  602. hub->tt.think_time = 666 * 4;
  603. dev_dbg(hub_dev, "TT requires at most %d "
  604. "FS bit times (%d ns)\n",
  605. 32, hub->tt.think_time);
  606. break;
  607. }
  608. /* probe() zeroes hub->indicator[] */
  609. if (wHubCharacteristics & HUB_CHAR_PORTIND) {
  610. hub->has_indicators = 1;
  611. dev_dbg(hub_dev, "Port indicators are supported\n");
  612. }
  613. dev_dbg(hub_dev, "power on to power good time: %dms\n",
  614. hub->descriptor->bPwrOn2PwrGood * 2);
  615. /* power budgeting mostly matters with bus-powered hubs,
  616. * and battery-powered root hubs (may provide just 8 mA).
  617. */
  618. ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
  619. if (ret < 0) {
  620. message = "can't get hub status";
  621. goto fail;
  622. }
  623. le16_to_cpus(&hubstatus);
  624. if (hdev == hdev->bus->root_hub) {
  625. struct usb_hcd *hcd =
  626. container_of(hdev->bus, struct usb_hcd, self);
  627. hub->power_budget = min(500u, hcd->power_budget) / 2;
  628. } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
  629. dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
  630. hub->descriptor->bHubContrCurrent);
  631. hub->power_budget = (501 - hub->descriptor->bHubContrCurrent)
  632. / 2;
  633. }
  634. if (hub->power_budget)
  635. dev_dbg(hub_dev, "%dmA bus power budget for children\n",
  636. hub->power_budget * 2);
  637. ret = hub_hub_status(hub, &hubstatus, &hubchange);
  638. if (ret < 0) {
  639. message = "can't get hub status";
  640. goto fail;
  641. }
  642. /* local power status reports aren't always correct */
  643. if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
  644. dev_dbg(hub_dev, "local power source is %s\n",
  645. (hubstatus & HUB_STATUS_LOCAL_POWER)
  646. ? "lost (inactive)" : "good");
  647. if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
  648. dev_dbg(hub_dev, "%sover-current condition exists\n",
  649. (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
  650. /* set up the interrupt endpoint */
  651. pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
  652. maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
  653. if (maxp > sizeof(*hub->buffer))
  654. maxp = sizeof(*hub->buffer);
  655. hub->urb = usb_alloc_urb(0, GFP_KERNEL);
  656. if (!hub->urb) {
  657. message = "couldn't allocate interrupt urb";
  658. ret = -ENOMEM;
  659. goto fail;
  660. }
  661. usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
  662. hub, endpoint->bInterval);
  663. hub->urb->transfer_dma = hub->buffer_dma;
  664. hub->urb->transfer_flags |= URB_NO_TRANSFER_DMA_MAP;
  665. /* maybe cycle the hub leds */
  666. if (hub->has_indicators && blinkenlights)
  667. hub->indicator [0] = INDICATOR_CYCLE;
  668. hub_power_on(hub);
  669. hub_activate(hub);
  670. return 0;
  671. fail:
  672. dev_err (hub_dev, "config failed, %s (err %d)\n",
  673. message, ret);
  674. /* hub_disconnect() frees urb and descriptor */
  675. return ret;
  676. }
  677. static unsigned highspeed_hubs;
  678. static void hub_disconnect(struct usb_interface *intf)
  679. {
  680. struct usb_hub *hub = usb_get_intfdata (intf);
  681. struct usb_device *hdev;
  682. usb_set_intfdata (intf, NULL);
  683. hdev = hub->hdev;
  684. if (hdev->speed == USB_SPEED_HIGH)
  685. highspeed_hubs--;
  686. /* Disconnect all children and quiesce the hub */
  687. hub_pre_reset(hub, 1);
  688. usb_free_urb(hub->urb);
  689. hub->urb = NULL;
  690. spin_lock_irq(&hub_event_lock);
  691. list_del_init(&hub->event_list);
  692. spin_unlock_irq(&hub_event_lock);
  693. kfree(hub->descriptor);
  694. hub->descriptor = NULL;
  695. kfree(hub->status);
  696. hub->status = NULL;
  697. if (hub->buffer) {
  698. usb_buffer_free(hdev, sizeof(*hub->buffer), hub->buffer,
  699. hub->buffer_dma);
  700. hub->buffer = NULL;
  701. }
  702. kfree(hub);
  703. }
  704. static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
  705. {
  706. struct usb_host_interface *desc;
  707. struct usb_endpoint_descriptor *endpoint;
  708. struct usb_device *hdev;
  709. struct usb_hub *hub;
  710. desc = intf->cur_altsetting;
  711. hdev = interface_to_usbdev(intf);
  712. /* Some hubs have a subclass of 1, which AFAICT according to the */
  713. /* specs is not defined, but it works */
  714. if ((desc->desc.bInterfaceSubClass != 0) &&
  715. (desc->desc.bInterfaceSubClass != 1)) {
  716. descriptor_error:
  717. dev_err (&intf->dev, "bad descriptor, ignoring hub\n");
  718. return -EIO;
  719. }
  720. /* Multiple endpoints? What kind of mutant ninja-hub is this? */
  721. if (desc->desc.bNumEndpoints != 1)
  722. goto descriptor_error;
  723. endpoint = &desc->endpoint[0].desc;
  724. /* Output endpoint? Curiouser and curiouser.. */
  725. if (!(endpoint->bEndpointAddress & USB_DIR_IN))
  726. goto descriptor_error;
  727. /* If it's not an interrupt endpoint, we'd better punt! */
  728. if ((endpoint->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK)
  729. != USB_ENDPOINT_XFER_INT)
  730. goto descriptor_error;
  731. /* We found a hub */
  732. dev_info (&intf->dev, "USB hub found\n");
  733. hub = kzalloc(sizeof(*hub), GFP_KERNEL);
  734. if (!hub) {
  735. dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n");
  736. return -ENOMEM;
  737. }
  738. INIT_LIST_HEAD(&hub->event_list);
  739. hub->intfdev = &intf->dev;
  740. hub->hdev = hdev;
  741. INIT_WORK(&hub->leds, led_work, hub);
  742. usb_set_intfdata (intf, hub);
  743. if (hdev->speed == USB_SPEED_HIGH)
  744. highspeed_hubs++;
  745. if (hub_configure(hub, endpoint) >= 0)
  746. return 0;
  747. hub_disconnect (intf);
  748. return -ENODEV;
  749. }
  750. static int
  751. hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
  752. {
  753. struct usb_device *hdev = interface_to_usbdev (intf);
  754. /* assert ifno == 0 (part of hub spec) */
  755. switch (code) {
  756. case USBDEVFS_HUB_PORTINFO: {
  757. struct usbdevfs_hub_portinfo *info = user_data;
  758. int i;
  759. spin_lock_irq(&device_state_lock);
  760. if (hdev->devnum <= 0)
  761. info->nports = 0;
  762. else {
  763. info->nports = hdev->maxchild;
  764. for (i = 0; i < info->nports; i++) {
  765. if (hdev->children[i] == NULL)
  766. info->port[i] = 0;
  767. else
  768. info->port[i] =
  769. hdev->children[i]->devnum;
  770. }
  771. }
  772. spin_unlock_irq(&device_state_lock);
  773. return info->nports + 1;
  774. }
  775. default:
  776. return -ENOSYS;
  777. }
  778. }
  779. /* grab device/port lock, returning index of that port (zero based).
  780. * protects the upstream link used by this device from concurrent
  781. * tree operations like suspend, resume, reset, and disconnect, which
  782. * apply to everything downstream of a given port.
  783. */
  784. static int locktree(struct usb_device *udev)
  785. {
  786. int t;
  787. struct usb_device *hdev;
  788. if (!udev)
  789. return -ENODEV;
  790. /* root hub is always the first lock in the series */
  791. hdev = udev->parent;
  792. if (!hdev) {
  793. usb_lock_device(udev);
  794. return 0;
  795. }
  796. /* on the path from root to us, lock everything from
  797. * top down, dropping parent locks when not needed
  798. */
  799. t = locktree(hdev);
  800. if (t < 0)
  801. return t;
  802. for (t = 0; t < hdev->maxchild; t++) {
  803. if (hdev->children[t] == udev) {
  804. /* everything is fail-fast once disconnect
  805. * processing starts
  806. */
  807. if (udev->state == USB_STATE_NOTATTACHED)
  808. break;
  809. /* when everyone grabs locks top->bottom,
  810. * non-overlapping work may be concurrent
  811. */
  812. usb_lock_device(udev);
  813. usb_unlock_device(hdev);
  814. return t + 1;
  815. }
  816. }
  817. usb_unlock_device(hdev);
  818. return -ENODEV;
  819. }
  820. static void recursively_mark_NOTATTACHED(struct usb_device *udev)
  821. {
  822. int i;
  823. for (i = 0; i < udev->maxchild; ++i) {
  824. if (udev->children[i])
  825. recursively_mark_NOTATTACHED(udev->children[i]);
  826. }
  827. udev->state = USB_STATE_NOTATTACHED;
  828. }
  829. /**
  830. * usb_set_device_state - change a device's current state (usbcore, hcds)
  831. * @udev: pointer to device whose state should be changed
  832. * @new_state: new state value to be stored
  833. *
  834. * udev->state is _not_ fully protected by the device lock. Although
  835. * most transitions are made only while holding the lock, the state can
  836. * can change to USB_STATE_NOTATTACHED at almost any time. This
  837. * is so that devices can be marked as disconnected as soon as possible,
  838. * without having to wait for any semaphores to be released. As a result,
  839. * all changes to any device's state must be protected by the
  840. * device_state_lock spinlock.
  841. *
  842. * Once a device has been added to the device tree, all changes to its state
  843. * should be made using this routine. The state should _not_ be set directly.
  844. *
  845. * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
  846. * Otherwise udev->state is set to new_state, and if new_state is
  847. * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
  848. * to USB_STATE_NOTATTACHED.
  849. */
  850. void usb_set_device_state(struct usb_device *udev,
  851. enum usb_device_state new_state)
  852. {
  853. unsigned long flags;
  854. spin_lock_irqsave(&device_state_lock, flags);
  855. if (udev->state == USB_STATE_NOTATTACHED)
  856. ; /* do nothing */
  857. else if (new_state != USB_STATE_NOTATTACHED) {
  858. udev->state = new_state;
  859. if (new_state == USB_STATE_CONFIGURED)
  860. device_init_wakeup(&udev->dev,
  861. (udev->actconfig->desc.bmAttributes
  862. & USB_CONFIG_ATT_WAKEUP));
  863. else if (new_state != USB_STATE_SUSPENDED)
  864. device_init_wakeup(&udev->dev, 0);
  865. } else
  866. recursively_mark_NOTATTACHED(udev);
  867. spin_unlock_irqrestore(&device_state_lock, flags);
  868. }
  869. EXPORT_SYMBOL(usb_set_device_state);
  870. #ifdef CONFIG_PM
  871. /**
  872. * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
  873. * @rhdev: struct usb_device for the root hub
  874. *
  875. * The USB host controller driver calls this function when its root hub
  876. * is resumed and Vbus power has been interrupted or the controller
  877. * has been reset. The routine marks all the children of the root hub
  878. * as NOTATTACHED and marks logical connect-change events on their ports.
  879. */
  880. void usb_root_hub_lost_power(struct usb_device *rhdev)
  881. {
  882. struct usb_hub *hub;
  883. int port1;
  884. unsigned long flags;
  885. dev_warn(&rhdev->dev, "root hub lost power or was reset\n");
  886. spin_lock_irqsave(&device_state_lock, flags);
  887. hub = hdev_to_hub(rhdev);
  888. for (port1 = 1; port1 <= rhdev->maxchild; ++port1) {
  889. if (rhdev->children[port1 - 1]) {
  890. recursively_mark_NOTATTACHED(
  891. rhdev->children[port1 - 1]);
  892. set_bit(port1, hub->change_bits);
  893. }
  894. }
  895. spin_unlock_irqrestore(&device_state_lock, flags);
  896. }
  897. EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
  898. #endif
  899. static void choose_address(struct usb_device *udev)
  900. {
  901. int devnum;
  902. struct usb_bus *bus = udev->bus;
  903. /* If khubd ever becomes multithreaded, this will need a lock */
  904. /* Try to allocate the next devnum beginning at bus->devnum_next. */
  905. devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
  906. bus->devnum_next);
  907. if (devnum >= 128)
  908. devnum = find_next_zero_bit(bus->devmap.devicemap, 128, 1);
  909. bus->devnum_next = ( devnum >= 127 ? 1 : devnum + 1);
  910. if (devnum < 128) {
  911. set_bit(devnum, bus->devmap.devicemap);
  912. udev->devnum = devnum;
  913. }
  914. }
  915. static void release_address(struct usb_device *udev)
  916. {
  917. if (udev->devnum > 0) {
  918. clear_bit(udev->devnum, udev->bus->devmap.devicemap);
  919. udev->devnum = -1;
  920. }
  921. }
  922. /**
  923. * usb_disconnect - disconnect a device (usbcore-internal)
  924. * @pdev: pointer to device being disconnected
  925. * Context: !in_interrupt ()
  926. *
  927. * Something got disconnected. Get rid of it and all of its children.
  928. *
  929. * If *pdev is a normal device then the parent hub must already be locked.
  930. * If *pdev is a root hub then this routine will acquire the
  931. * usb_bus_list_lock on behalf of the caller.
  932. *
  933. * Only hub drivers (including virtual root hub drivers for host
  934. * controllers) should ever call this.
  935. *
  936. * This call is synchronous, and may not be used in an interrupt context.
  937. */
  938. void usb_disconnect(struct usb_device **pdev)
  939. {
  940. struct usb_device *udev = *pdev;
  941. int i;
  942. if (!udev) {
  943. pr_debug ("%s nodev\n", __FUNCTION__);
  944. return;
  945. }
  946. /* mark the device as inactive, so any further urb submissions for
  947. * this device (and any of its children) will fail immediately.
  948. * this quiesces everyting except pending urbs.
  949. */
  950. usb_set_device_state(udev, USB_STATE_NOTATTACHED);
  951. dev_info (&udev->dev, "USB disconnect, address %d\n", udev->devnum);
  952. usb_lock_device(udev);
  953. /* Free up all the children before we remove this device */
  954. for (i = 0; i < USB_MAXCHILDREN; i++) {
  955. if (udev->children[i])
  956. usb_disconnect(&udev->children[i]);
  957. }
  958. /* deallocate hcd/hardware state ... nuking all pending urbs and
  959. * cleaning up all state associated with the current configuration
  960. * so that the hardware is now fully quiesced.
  961. */
  962. usb_disable_device(udev, 0);
  963. usb_notify_remove_device(udev);
  964. /* Free the device number, remove the /proc/bus/usb entry and
  965. * the sysfs attributes, and delete the parent's children[]
  966. * (or root_hub) pointer.
  967. */
  968. dev_dbg (&udev->dev, "unregistering device\n");
  969. release_address(udev);
  970. usb_remove_sysfs_dev_files(udev);
  971. /* Avoid races with recursively_mark_NOTATTACHED() */
  972. spin_lock_irq(&device_state_lock);
  973. *pdev = NULL;
  974. spin_unlock_irq(&device_state_lock);
  975. usb_unlock_device(udev);
  976. device_unregister(&udev->dev);
  977. }
  978. static int choose_configuration(struct usb_device *udev)
  979. {
  980. int c, i;
  981. /* NOTE: this should interact with hub power budgeting */
  982. c = udev->config[0].desc.bConfigurationValue;
  983. if (udev->descriptor.bNumConfigurations != 1) {
  984. for (i = 0; i < udev->descriptor.bNumConfigurations; i++) {
  985. struct usb_interface_descriptor *desc;
  986. /* heuristic: Linux is more likely to have class
  987. * drivers, so avoid vendor-specific interfaces.
  988. */
  989. desc = &udev->config[i].intf_cache[0]
  990. ->altsetting->desc;
  991. if (desc->bInterfaceClass == USB_CLASS_VENDOR_SPEC)
  992. continue;
  993. /* COMM/2/all is CDC ACM, except 0xff is MSFT RNDIS.
  994. * MSFT needs this to be the first config; never use
  995. * it as the default unless Linux has host-side RNDIS.
  996. * A second config would ideally be CDC-Ethernet, but
  997. * may instead be the "vendor specific" CDC subset
  998. * long used by ARM Linux for sa1100 or pxa255.
  999. */
  1000. if (desc->bInterfaceClass == USB_CLASS_COMM
  1001. && desc->bInterfaceSubClass == 2
  1002. && desc->bInterfaceProtocol == 0xff) {
  1003. c = udev->config[1].desc.bConfigurationValue;
  1004. continue;
  1005. }
  1006. c = udev->config[i].desc.bConfigurationValue;
  1007. break;
  1008. }
  1009. dev_info(&udev->dev,
  1010. "configuration #%d chosen from %d choices\n",
  1011. c, udev->descriptor.bNumConfigurations);
  1012. }
  1013. return c;
  1014. }
  1015. #ifdef DEBUG
  1016. static void show_string(struct usb_device *udev, char *id, char *string)
  1017. {
  1018. if (!string)
  1019. return;
  1020. dev_printk(KERN_INFO, &udev->dev, "%s: %s\n", id, string);
  1021. }
  1022. #else
  1023. static inline void show_string(struct usb_device *udev, char *id, char *string)
  1024. {}
  1025. #endif
  1026. #ifdef CONFIG_USB_OTG
  1027. #include "otg_whitelist.h"
  1028. #endif
  1029. /**
  1030. * usb_new_device - perform initial device setup (usbcore-internal)
  1031. * @udev: newly addressed device (in ADDRESS state)
  1032. *
  1033. * This is called with devices which have been enumerated, but not yet
  1034. * configured. The device descriptor is available, but not descriptors
  1035. * for any device configuration. The caller must have locked either
  1036. * the parent hub (if udev is a normal device) or else the
  1037. * usb_bus_list_lock (if udev is a root hub). The parent's pointer to
  1038. * udev has already been installed, but udev is not yet visible through
  1039. * sysfs or other filesystem code.
  1040. *
  1041. * Returns 0 for success (device is configured and listed, with its
  1042. * interfaces, in sysfs); else a negative errno value.
  1043. *
  1044. * This call is synchronous, and may not be used in an interrupt context.
  1045. *
  1046. * Only the hub driver or root-hub registrar should ever call this.
  1047. */
  1048. int usb_new_device(struct usb_device *udev)
  1049. {
  1050. int err;
  1051. int c;
  1052. err = usb_get_configuration(udev);
  1053. if (err < 0) {
  1054. dev_err(&udev->dev, "can't read configurations, error %d\n",
  1055. err);
  1056. goto fail;
  1057. }
  1058. /* read the standard strings and cache them if present */
  1059. udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
  1060. udev->manufacturer = usb_cache_string(udev,
  1061. udev->descriptor.iManufacturer);
  1062. udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
  1063. /* Tell the world! */
  1064. dev_dbg(&udev->dev, "new device strings: Mfr=%d, Product=%d, "
  1065. "SerialNumber=%d\n",
  1066. udev->descriptor.iManufacturer,
  1067. udev->descriptor.iProduct,
  1068. udev->descriptor.iSerialNumber);
  1069. show_string(udev, "Product", udev->product);
  1070. show_string(udev, "Manufacturer", udev->manufacturer);
  1071. show_string(udev, "SerialNumber", udev->serial);
  1072. #ifdef CONFIG_USB_OTG
  1073. /*
  1074. * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
  1075. * to wake us after we've powered off VBUS; and HNP, switching roles
  1076. * "host" to "peripheral". The OTG descriptor helps figure this out.
  1077. */
  1078. if (!udev->bus->is_b_host
  1079. && udev->config
  1080. && udev->parent == udev->bus->root_hub) {
  1081. struct usb_otg_descriptor *desc = 0;
  1082. struct usb_bus *bus = udev->bus;
  1083. /* descriptor may appear anywhere in config */
  1084. if (__usb_get_extra_descriptor (udev->rawdescriptors[0],
  1085. le16_to_cpu(udev->config[0].desc.wTotalLength),
  1086. USB_DT_OTG, (void **) &desc) == 0) {
  1087. if (desc->bmAttributes & USB_OTG_HNP) {
  1088. unsigned port1;
  1089. struct usb_device *root = udev->parent;
  1090. for (port1 = 1; port1 <= root->maxchild;
  1091. port1++) {
  1092. if (root->children[port1-1] == udev)
  1093. break;
  1094. }
  1095. dev_info(&udev->dev,
  1096. "Dual-Role OTG device on %sHNP port\n",
  1097. (port1 == bus->otg_port)
  1098. ? "" : "non-");
  1099. /* enable HNP before suspend, it's simpler */
  1100. if (port1 == bus->otg_port)
  1101. bus->b_hnp_enable = 1;
  1102. err = usb_control_msg(udev,
  1103. usb_sndctrlpipe(udev, 0),
  1104. USB_REQ_SET_FEATURE, 0,
  1105. bus->b_hnp_enable
  1106. ? USB_DEVICE_B_HNP_ENABLE
  1107. : USB_DEVICE_A_ALT_HNP_SUPPORT,
  1108. 0, NULL, 0, USB_CTRL_SET_TIMEOUT);
  1109. if (err < 0) {
  1110. /* OTG MESSAGE: report errors here,
  1111. * customize to match your product.
  1112. */
  1113. dev_info(&udev->dev,
  1114. "can't set HNP mode; %d\n",
  1115. err);
  1116. bus->b_hnp_enable = 0;
  1117. }
  1118. }
  1119. }
  1120. }
  1121. if (!is_targeted(udev)) {
  1122. /* Maybe it can talk to us, though we can't talk to it.
  1123. * (Includes HNP test device.)
  1124. */
  1125. if (udev->bus->b_hnp_enable || udev->bus->is_b_host) {
  1126. static int __usb_suspend_device(struct usb_device *,
  1127. int port1);
  1128. err = __usb_suspend_device(udev, udev->bus->otg_port);
  1129. if (err < 0)
  1130. dev_dbg(&udev->dev, "HNP fail, %d\n", err);
  1131. }
  1132. err = -ENODEV;
  1133. goto fail;
  1134. }
  1135. #endif
  1136. /* put device-specific files into sysfs */
  1137. err = device_add (&udev->dev);
  1138. if (err) {
  1139. dev_err(&udev->dev, "can't device_add, error %d\n", err);
  1140. goto fail;
  1141. }
  1142. usb_create_sysfs_dev_files (udev);
  1143. usb_lock_device(udev);
  1144. /* choose and set the configuration. that registers the interfaces
  1145. * with the driver core, and lets usb device drivers bind to them.
  1146. */
  1147. c = choose_configuration(udev);
  1148. if (c < 0)
  1149. dev_warn(&udev->dev,
  1150. "can't choose an initial configuration\n");
  1151. else {
  1152. err = usb_set_configuration(udev, c);
  1153. if (err) {
  1154. dev_err(&udev->dev, "can't set config #%d, error %d\n",
  1155. c, err);
  1156. usb_remove_sysfs_dev_files(udev);
  1157. device_del(&udev->dev);
  1158. goto fail;
  1159. }
  1160. }
  1161. /* USB device state == configured ... usable */
  1162. usb_notify_add_device(udev);
  1163. usb_unlock_device(udev);
  1164. return 0;
  1165. fail:
  1166. usb_set_device_state(udev, USB_STATE_NOTATTACHED);
  1167. return err;
  1168. }
  1169. static int hub_port_status(struct usb_hub *hub, int port1,
  1170. u16 *status, u16 *change)
  1171. {
  1172. int ret;
  1173. ret = get_port_status(hub->hdev, port1, &hub->status->port);
  1174. if (ret < 0)
  1175. dev_err (hub->intfdev,
  1176. "%s failed (err = %d)\n", __FUNCTION__, ret);
  1177. else {
  1178. *status = le16_to_cpu(hub->status->port.wPortStatus);
  1179. *change = le16_to_cpu(hub->status->port.wPortChange);
  1180. ret = 0;
  1181. }
  1182. return ret;
  1183. }
  1184. #define PORT_RESET_TRIES 5
  1185. #define SET_ADDRESS_TRIES 2
  1186. #define GET_DESCRIPTOR_TRIES 2
  1187. #define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
  1188. #define USE_NEW_SCHEME(i) ((i) / 2 == old_scheme_first)
  1189. #define HUB_ROOT_RESET_TIME 50 /* times are in msec */
  1190. #define HUB_SHORT_RESET_TIME 10
  1191. #define HUB_LONG_RESET_TIME 200
  1192. #define HUB_RESET_TIMEOUT 500
  1193. static int hub_port_wait_reset(struct usb_hub *hub, int port1,
  1194. struct usb_device *udev, unsigned int delay)
  1195. {
  1196. int delay_time, ret;
  1197. u16 portstatus;
  1198. u16 portchange;
  1199. for (delay_time = 0;
  1200. delay_time < HUB_RESET_TIMEOUT;
  1201. delay_time += delay) {
  1202. /* wait to give the device a chance to reset */
  1203. msleep(delay);
  1204. /* read and decode port status */
  1205. ret = hub_port_status(hub, port1, &portstatus, &portchange);
  1206. if (ret < 0)
  1207. return ret;
  1208. /* Device went away? */
  1209. if (!(portstatus & USB_PORT_STAT_CONNECTION))
  1210. return -ENOTCONN;
  1211. /* bomb out completely if something weird happened */
  1212. if ((portchange & USB_PORT_STAT_C_CONNECTION))
  1213. return -EINVAL;
  1214. /* if we`ve finished resetting, then break out of the loop */
  1215. if (!(portstatus & USB_PORT_STAT_RESET) &&
  1216. (portstatus & USB_PORT_STAT_ENABLE)) {
  1217. if (portstatus & USB_PORT_STAT_HIGH_SPEED)
  1218. udev->speed = USB_SPEED_HIGH;
  1219. else if (portstatus & USB_PORT_STAT_LOW_SPEED)
  1220. udev->speed = USB_SPEED_LOW;
  1221. else
  1222. udev->speed = USB_SPEED_FULL;
  1223. return 0;
  1224. }
  1225. /* switch to the long delay after two short delay failures */
  1226. if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
  1227. delay = HUB_LONG_RESET_TIME;
  1228. dev_dbg (hub->intfdev,
  1229. "port %d not reset yet, waiting %dms\n",
  1230. port1, delay);
  1231. }
  1232. return -EBUSY;
  1233. }
  1234. static int hub_port_reset(struct usb_hub *hub, int port1,
  1235. struct usb_device *udev, unsigned int delay)
  1236. {
  1237. int i, status;
  1238. /* Reset the port */
  1239. for (i = 0; i < PORT_RESET_TRIES; i++) {
  1240. status = set_port_feature(hub->hdev,
  1241. port1, USB_PORT_FEAT_RESET);
  1242. if (status)
  1243. dev_err(hub->intfdev,
  1244. "cannot reset port %d (err = %d)\n",
  1245. port1, status);
  1246. else {
  1247. status = hub_port_wait_reset(hub, port1, udev, delay);
  1248. if (status && status != -ENOTCONN)
  1249. dev_dbg(hub->intfdev,
  1250. "port_wait_reset: err = %d\n",
  1251. status);
  1252. }
  1253. /* return on disconnect or reset */
  1254. switch (status) {
  1255. case 0:
  1256. /* TRSTRCY = 10 ms; plus some extra */
  1257. msleep(10 + 40);
  1258. /* FALL THROUGH */
  1259. case -ENOTCONN:
  1260. case -ENODEV:
  1261. clear_port_feature(hub->hdev,
  1262. port1, USB_PORT_FEAT_C_RESET);
  1263. /* FIXME need disconnect() for NOTATTACHED device */
  1264. usb_set_device_state(udev, status
  1265. ? USB_STATE_NOTATTACHED
  1266. : USB_STATE_DEFAULT);
  1267. return status;
  1268. }
  1269. dev_dbg (hub->intfdev,
  1270. "port %d not enabled, trying reset again...\n",
  1271. port1);
  1272. delay = HUB_LONG_RESET_TIME;
  1273. }
  1274. dev_err (hub->intfdev,
  1275. "Cannot enable port %i. Maybe the USB cable is bad?\n",
  1276. port1);
  1277. return status;
  1278. }
  1279. /*
  1280. * Disable a port and mark a logical connnect-change event, so that some
  1281. * time later khubd will disconnect() any existing usb_device on the port
  1282. * and will re-enumerate if there actually is a device attached.
  1283. */
  1284. static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
  1285. {
  1286. dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1);
  1287. hub_port_disable(hub, port1, 1);
  1288. /* FIXME let caller ask to power down the port:
  1289. * - some devices won't enumerate without a VBUS power cycle
  1290. * - SRP saves power that way
  1291. * - ... new call, TBD ...
  1292. * That's easy if this hub can switch power per-port, and
  1293. * khubd reactivates the port later (timer, SRP, etc).
  1294. * Powerdown must be optional, because of reset/DFU.
  1295. */
  1296. set_bit(port1, hub->change_bits);
  1297. kick_khubd(hub);
  1298. }
  1299. #ifdef CONFIG_USB_SUSPEND
  1300. /*
  1301. * Selective port suspend reduces power; most suspended devices draw
  1302. * less than 500 uA. It's also used in OTG, along with remote wakeup.
  1303. * All devices below the suspended port are also suspended.
  1304. *
  1305. * Devices leave suspend state when the host wakes them up. Some devices
  1306. * also support "remote wakeup", where the device can activate the USB
  1307. * tree above them to deliver data, such as a keypress or packet. In
  1308. * some cases, this wakes the USB host.
  1309. */
  1310. static int hub_port_suspend(struct usb_hub *hub, int port1,
  1311. struct usb_device *udev)
  1312. {
  1313. int status;
  1314. // dev_dbg(hub->intfdev, "suspend port %d\n", port1);
  1315. /* enable remote wakeup when appropriate; this lets the device
  1316. * wake up the upstream hub (including maybe the root hub).
  1317. *
  1318. * NOTE: OTG devices may issue remote wakeup (or SRP) even when
  1319. * we don't explicitly enable it here.
  1320. */
  1321. if (device_may_wakeup(&udev->dev)) {
  1322. status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  1323. USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
  1324. USB_DEVICE_REMOTE_WAKEUP, 0,
  1325. NULL, 0,
  1326. USB_CTRL_SET_TIMEOUT);
  1327. if (status)
  1328. dev_dbg(&udev->dev,
  1329. "won't remote wakeup, status %d\n",
  1330. status);
  1331. }
  1332. /* see 7.1.7.6 */
  1333. status = set_port_feature(hub->hdev, port1, USB_PORT_FEAT_SUSPEND);
  1334. if (status) {
  1335. dev_dbg(hub->intfdev,
  1336. "can't suspend port %d, status %d\n",
  1337. port1, status);
  1338. /* paranoia: "should not happen" */
  1339. (void) usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  1340. USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
  1341. USB_DEVICE_REMOTE_WAKEUP, 0,
  1342. NULL, 0,
  1343. USB_CTRL_SET_TIMEOUT);
  1344. } else {
  1345. /* device has up to 10 msec to fully suspend */
  1346. dev_dbg(&udev->dev, "usb suspend\n");
  1347. usb_set_device_state(udev, USB_STATE_SUSPENDED);
  1348. msleep(10);
  1349. }
  1350. return status;
  1351. }
  1352. /*
  1353. * Devices on USB hub ports have only one "suspend" state, corresponding
  1354. * to ACPI D2, "may cause the device to lose some context".
  1355. * State transitions include:
  1356. *
  1357. * - suspend, resume ... when the VBUS power link stays live
  1358. * - suspend, disconnect ... VBUS lost
  1359. *
  1360. * Once VBUS drop breaks the circuit, the port it's using has to go through
  1361. * normal re-enumeration procedures, starting with enabling VBUS power.
  1362. * Other than re-initializing the hub (plug/unplug, except for root hubs),
  1363. * Linux (2.6) currently has NO mechanisms to initiate that: no khubd
  1364. * timer, no SRP, no requests through sysfs.
  1365. *
  1366. * If CONFIG_USB_SUSPEND isn't enabled, devices only really suspend when
  1367. * the root hub for their bus goes into global suspend ... so we don't
  1368. * (falsely) update the device power state to say it suspended.
  1369. */
  1370. static int __usb_suspend_device (struct usb_device *udev, int port1)
  1371. {
  1372. int status = 0;
  1373. /* caller owns the udev device lock */
  1374. if (port1 < 0)
  1375. return port1;
  1376. if (udev->state == USB_STATE_SUSPENDED
  1377. || udev->state == USB_STATE_NOTATTACHED) {
  1378. return 0;
  1379. }
  1380. /* all interfaces must already be suspended */
  1381. if (udev->actconfig) {
  1382. int i;
  1383. for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
  1384. struct usb_interface *intf;
  1385. intf = udev->actconfig->interface[i];
  1386. if (is_active(intf)) {
  1387. dev_dbg(&intf->dev, "nyet suspended\n");
  1388. return -EBUSY;
  1389. }
  1390. }
  1391. }
  1392. /* we only change a device's upstream USB link.
  1393. * root hubs have no upstream USB link.
  1394. */
  1395. if (udev->parent)
  1396. status = hub_port_suspend(hdev_to_hub(udev->parent), port1,
  1397. udev);
  1398. if (status == 0)
  1399. udev->dev.power.power_state = PMSG_SUSPEND;
  1400. return status;
  1401. }
  1402. #endif
  1403. /*
  1404. * usb_suspend_device - suspend a usb device
  1405. * @udev: device that's no longer in active use
  1406. * Context: must be able to sleep; device not locked; pm locks held
  1407. *
  1408. * Suspends a USB device that isn't in active use, conserving power.
  1409. * Devices may wake out of a suspend, if anything important happens,
  1410. * using the remote wakeup mechanism. They may also be taken out of
  1411. * suspend by the host, using usb_resume_device(). It's also routine
  1412. * to disconnect devices while they are suspended.
  1413. *
  1414. * This only affects the USB hardware for a device; its interfaces
  1415. * (and, for hubs, child devices) must already have been suspended.
  1416. *
  1417. * Suspending OTG devices may trigger HNP, if that's been enabled
  1418. * between a pair of dual-role devices. That will change roles, such
  1419. * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
  1420. *
  1421. * Returns 0 on success, else negative errno.
  1422. */
  1423. int usb_suspend_device(struct usb_device *udev)
  1424. {
  1425. #ifdef CONFIG_USB_SUSPEND
  1426. int port1, status;
  1427. port1 = locktree(udev);
  1428. if (port1 < 0)
  1429. return port1;
  1430. status = __usb_suspend_device(udev, port1);
  1431. usb_unlock_device(udev);
  1432. return status;
  1433. #else
  1434. /* NOTE: udev->state unchanged, it's not lying ... */
  1435. udev->dev.power.power_state = PMSG_SUSPEND;
  1436. return 0;
  1437. #endif
  1438. }
  1439. /*
  1440. * If the USB "suspend" state is in use (rather than "global suspend"),
  1441. * many devices will be individually taken out of suspend state using
  1442. * special" resume" signaling. These routines kick in shortly after
  1443. * hardware resume signaling is finished, either because of selective
  1444. * resume (by host) or remote wakeup (by device) ... now see what changed
  1445. * in the tree that's rooted at this device.
  1446. */
  1447. static int finish_device_resume(struct usb_device *udev)
  1448. {
  1449. int status;
  1450. u16 devstatus;
  1451. /* caller owns the udev device lock */
  1452. dev_dbg(&udev->dev, "finish resume\n");
  1453. /* usb ch9 identifies four variants of SUSPENDED, based on what
  1454. * state the device resumes to. Linux currently won't see the
  1455. * first two on the host side; they'd be inside hub_port_init()
  1456. * during many timeouts, but khubd can't suspend until later.
  1457. */
  1458. usb_set_device_state(udev, udev->actconfig
  1459. ? USB_STATE_CONFIGURED
  1460. : USB_STATE_ADDRESS);
  1461. /* 10.5.4.5 says be sure devices in the tree are still there.
  1462. * For now let's assume the device didn't go crazy on resume,
  1463. * and device drivers will know about any resume quirks.
  1464. */
  1465. status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
  1466. if (status < 0)
  1467. dev_dbg(&udev->dev,
  1468. "gone after usb resume? status %d\n",
  1469. status);
  1470. else if (udev->actconfig) {
  1471. unsigned i;
  1472. int (*resume)(struct device *);
  1473. le16_to_cpus(&devstatus);
  1474. if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP)
  1475. && udev->parent) {
  1476. status = usb_control_msg(udev,
  1477. usb_sndctrlpipe(udev, 0),
  1478. USB_REQ_CLEAR_FEATURE,
  1479. USB_RECIP_DEVICE,
  1480. USB_DEVICE_REMOTE_WAKEUP, 0,
  1481. NULL, 0,
  1482. USB_CTRL_SET_TIMEOUT);
  1483. if (status) {
  1484. dev_dbg(&udev->dev, "disable remote "
  1485. "wakeup, status %d\n", status);
  1486. status = 0;
  1487. }
  1488. }
  1489. /* resume interface drivers; if this is a hub, it
  1490. * may have a child resume event to deal with soon
  1491. */
  1492. resume = udev->dev.bus->resume;
  1493. for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++)
  1494. (void) resume(&udev->actconfig->interface[i]->dev);
  1495. status = 0;
  1496. } else if (udev->devnum <= 0) {
  1497. dev_dbg(&udev->dev, "bogus resume!\n");
  1498. status = -EINVAL;
  1499. }
  1500. return status;
  1501. }
  1502. #ifdef CONFIG_USB_SUSPEND
  1503. static int
  1504. hub_port_resume(struct usb_hub *hub, int port1, struct usb_device *udev)
  1505. {
  1506. int status;
  1507. // dev_dbg(hub->intfdev, "resume port %d\n", port1);
  1508. /* see 7.1.7.7; affects power usage, but not budgeting */
  1509. status = clear_port_feature(hub->hdev,
  1510. port1, USB_PORT_FEAT_SUSPEND);
  1511. if (status) {
  1512. dev_dbg(hub->intfdev,
  1513. "can't resume port %d, status %d\n",
  1514. port1, status);
  1515. } else {
  1516. u16 devstatus;
  1517. u16 portchange;
  1518. /* drive resume for at least 20 msec */
  1519. if (udev)
  1520. dev_dbg(&udev->dev, "RESUME\n");
  1521. msleep(25);
  1522. #define LIVE_FLAGS ( USB_PORT_STAT_POWER \
  1523. | USB_PORT_STAT_ENABLE \
  1524. | USB_PORT_STAT_CONNECTION)
  1525. /* Virtual root hubs can trigger on GET_PORT_STATUS to
  1526. * stop resume signaling. Then finish the resume
  1527. * sequence.
  1528. */
  1529. devstatus = portchange = 0;
  1530. status = hub_port_status(hub, port1,
  1531. &devstatus, &portchange);
  1532. if (status < 0
  1533. || (devstatus & LIVE_FLAGS) != LIVE_FLAGS
  1534. || (devstatus & USB_PORT_STAT_SUSPEND) != 0
  1535. ) {
  1536. dev_dbg(hub->intfdev,
  1537. "port %d status %04x.%04x after resume, %d\n",
  1538. port1, portchange, devstatus, status);
  1539. } else {
  1540. /* TRSMRCY = 10 msec */
  1541. msleep(10);
  1542. if (udev)
  1543. status = finish_device_resume(udev);
  1544. }
  1545. }
  1546. if (status < 0)
  1547. hub_port_logical_disconnect(hub, port1);
  1548. return status;
  1549. }
  1550. #endif
  1551. /*
  1552. * usb_resume_device - re-activate a suspended usb device
  1553. * @udev: device to re-activate
  1554. * Context: must be able to sleep; device not locked; pm locks held
  1555. *
  1556. * This will re-activate the suspended device, increasing power usage
  1557. * while letting drivers communicate again with its endpoints.
  1558. * USB resume explicitly guarantees that the power session between
  1559. * the host and the device is the same as it was when the device
  1560. * suspended.
  1561. *
  1562. * Returns 0 on success, else negative errno.
  1563. */
  1564. int usb_resume_device(struct usb_device *udev)
  1565. {
  1566. int port1, status;
  1567. port1 = locktree(udev);
  1568. if (port1 < 0)
  1569. return port1;
  1570. #ifdef CONFIG_USB_SUSPEND
  1571. /* selective resume of one downstream hub-to-device port */
  1572. if (udev->parent) {
  1573. if (udev->state == USB_STATE_SUSPENDED) {
  1574. // NOTE swsusp may bork us, device state being wrong...
  1575. // NOTE this fails if parent is also suspended...
  1576. status = hub_port_resume(hdev_to_hub(udev->parent),
  1577. port1, udev);
  1578. } else
  1579. status = 0;
  1580. } else
  1581. #endif
  1582. status = finish_device_resume(udev);
  1583. if (status < 0)
  1584. dev_dbg(&udev->dev, "can't resume, status %d\n",
  1585. status);
  1586. usb_unlock_device(udev);
  1587. /* rebind drivers that had no suspend() */
  1588. if (status == 0)
  1589. bus_rescan_devices(&usb_bus_type);
  1590. return status;
  1591. }
  1592. static int remote_wakeup(struct usb_device *udev)
  1593. {
  1594. int status = 0;
  1595. #ifdef CONFIG_USB_SUSPEND
  1596. /* don't repeat RESUME sequence if this device
  1597. * was already woken up by some other task
  1598. */
  1599. usb_lock_device(udev);
  1600. if (udev->state == USB_STATE_SUSPENDED) {
  1601. dev_dbg(&udev->dev, "RESUME (wakeup)\n");
  1602. /* TRSMRCY = 10 msec */
  1603. msleep(10);
  1604. status = finish_device_resume(udev);
  1605. }
  1606. usb_unlock_device(udev);
  1607. #endif
  1608. return status;
  1609. }
  1610. static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
  1611. {
  1612. struct usb_hub *hub = usb_get_intfdata (intf);
  1613. struct usb_device *hdev = hub->hdev;
  1614. unsigned port1;
  1615. /* fail if children aren't already suspended */
  1616. for (port1 = 1; port1 <= hdev->maxchild; port1++) {
  1617. struct usb_device *udev;
  1618. udev = hdev->children [port1-1];
  1619. if (udev && (udev->dev.power.power_state.event
  1620. == PM_EVENT_ON
  1621. #ifdef CONFIG_USB_SUSPEND
  1622. || udev->state != USB_STATE_SUSPENDED
  1623. #endif
  1624. )) {
  1625. dev_dbg(&intf->dev, "port %d nyet suspended\n", port1);
  1626. return -EBUSY;
  1627. }
  1628. }
  1629. /* "global suspend" of the downstream HC-to-USB interface */
  1630. if (!hdev->parent) {
  1631. struct usb_bus *bus = hdev->bus;
  1632. if (bus) {
  1633. int status = hcd_bus_suspend (bus);
  1634. if (status != 0) {
  1635. dev_dbg(&hdev->dev, "'global' suspend %d\n",
  1636. status);
  1637. return status;
  1638. }
  1639. } else
  1640. return -EOPNOTSUPP;
  1641. }
  1642. /* stop khubd and related activity */
  1643. hub_quiesce(hub);
  1644. return 0;
  1645. }
  1646. static int hub_resume(struct usb_interface *intf)
  1647. {
  1648. struct usb_device *hdev = interface_to_usbdev(intf);
  1649. struct usb_hub *hub = usb_get_intfdata (intf);
  1650. int status;
  1651. /* "global resume" of the downstream HC-to-USB interface */
  1652. if (!hdev->parent) {
  1653. struct usb_bus *bus = hdev->bus;
  1654. if (bus) {
  1655. status = hcd_bus_resume (bus);
  1656. if (status) {
  1657. dev_dbg(&intf->dev, "'global' resume %d\n",
  1658. status);
  1659. return status;
  1660. }
  1661. } else
  1662. return -EOPNOTSUPP;
  1663. if (status == 0) {
  1664. /* TRSMRCY = 10 msec */
  1665. msleep(10);
  1666. }
  1667. }
  1668. hub_activate(hub);
  1669. /* REVISIT: this recursion probably shouldn't exist. Remove
  1670. * this code sometime, after retesting with different root and
  1671. * external hubs.
  1672. */
  1673. #ifdef CONFIG_USB_SUSPEND
  1674. {
  1675. unsigned port1;
  1676. for (port1 = 1; port1 <= hdev->maxchild; port1++) {
  1677. struct usb_device *udev;
  1678. u16 portstat, portchange;
  1679. udev = hdev->children [port1-1];
  1680. status = hub_port_status(hub, port1, &portstat, &portchange);
  1681. if (status == 0) {
  1682. if (portchange & USB_PORT_STAT_C_SUSPEND) {
  1683. clear_port_feature(hdev, port1,
  1684. USB_PORT_FEAT_C_SUSPEND);
  1685. portchange &= ~USB_PORT_STAT_C_SUSPEND;
  1686. }
  1687. /* let khubd handle disconnects etc */
  1688. if (portchange)
  1689. continue;
  1690. }
  1691. if (!udev || status < 0)
  1692. continue;
  1693. usb_lock_device(udev);
  1694. if (portstat & USB_PORT_STAT_SUSPEND)
  1695. status = hub_port_resume(hub, port1, udev);
  1696. else {
  1697. status = finish_device_resume(udev);
  1698. if (status < 0) {
  1699. dev_dbg(&intf->dev, "resume port %d --> %d\n",
  1700. port1, status);
  1701. hub_port_logical_disconnect(hub, port1);
  1702. }
  1703. }
  1704. usb_unlock_device(udev);
  1705. }
  1706. }
  1707. #endif
  1708. return 0;
  1709. }
  1710. void usb_suspend_root_hub(struct usb_device *hdev)
  1711. {
  1712. struct usb_hub *hub = hdev_to_hub(hdev);
  1713. /* This also makes any led blinker stop retriggering. We're called
  1714. * from irq, so the blinker might still be scheduled. Caller promises
  1715. * that the root hub status URB will be canceled.
  1716. */
  1717. __hub_quiesce(hub);
  1718. mark_quiesced(to_usb_interface(hub->intfdev));
  1719. }
  1720. void usb_resume_root_hub(struct usb_device *hdev)
  1721. {
  1722. struct usb_hub *hub = hdev_to_hub(hdev);
  1723. hub->resume_root_hub = 1;
  1724. kick_khubd(hub);
  1725. }
  1726. /* USB 2.0 spec, 7.1.7.3 / fig 7-29:
  1727. *
  1728. * Between connect detection and reset signaling there must be a delay
  1729. * of 100ms at least for debounce and power-settling. The corresponding
  1730. * timer shall restart whenever the downstream port detects a disconnect.
  1731. *
  1732. * Apparently there are some bluetooth and irda-dongles and a number of
  1733. * low-speed devices for which this debounce period may last over a second.
  1734. * Not covered by the spec - but easy to deal with.
  1735. *
  1736. * This implementation uses a 1500ms total debounce timeout; if the
  1737. * connection isn't stable by then it returns -ETIMEDOUT. It checks
  1738. * every 25ms for transient disconnects. When the port status has been
  1739. * unchanged for 100ms it returns the port status.
  1740. */
  1741. #define HUB_DEBOUNCE_TIMEOUT 1500
  1742. #define HUB_DEBOUNCE_STEP 25
  1743. #define HUB_DEBOUNCE_STABLE 100
  1744. static int hub_port_debounce(struct usb_hub *hub, int port1)
  1745. {
  1746. int ret;
  1747. int total_time, stable_time = 0;
  1748. u16 portchange, portstatus;
  1749. unsigned connection = 0xffff;
  1750. for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
  1751. ret = hub_port_status(hub, port1, &portstatus, &portchange);
  1752. if (ret < 0)
  1753. return ret;
  1754. if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
  1755. (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
  1756. stable_time += HUB_DEBOUNCE_STEP;
  1757. if (stable_time >= HUB_DEBOUNCE_STABLE)
  1758. break;
  1759. } else {
  1760. stable_time = 0;
  1761. connection = portstatus & USB_PORT_STAT_CONNECTION;
  1762. }
  1763. if (portchange & USB_PORT_STAT_C_CONNECTION) {
  1764. clear_port_feature(hub->hdev, port1,
  1765. USB_PORT_FEAT_C_CONNECTION);
  1766. }
  1767. if (total_time >= HUB_DEBOUNCE_TIMEOUT)
  1768. break;
  1769. msleep(HUB_DEBOUNCE_STEP);
  1770. }
  1771. dev_dbg (hub->intfdev,
  1772. "debounce: port %d: total %dms stable %dms status 0x%x\n",
  1773. port1, total_time, stable_time, portstatus);
  1774. if (stable_time < HUB_DEBOUNCE_STABLE)
  1775. return -ETIMEDOUT;
  1776. return portstatus;
  1777. }
  1778. static void ep0_reinit(struct usb_device *udev)
  1779. {
  1780. usb_disable_endpoint(udev, 0 + USB_DIR_IN);
  1781. usb_disable_endpoint(udev, 0 + USB_DIR_OUT);
  1782. udev->ep_in[0] = udev->ep_out[0] = &udev->ep0;
  1783. }
  1784. #define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
  1785. #define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
  1786. static int hub_set_address(struct usb_device *udev)
  1787. {
  1788. int retval;
  1789. if (udev->devnum == 0)
  1790. return -EINVAL;
  1791. if (udev->state == USB_STATE_ADDRESS)
  1792. return 0;
  1793. if (udev->state != USB_STATE_DEFAULT)
  1794. return -EINVAL;
  1795. retval = usb_control_msg(udev, usb_sndaddr0pipe(),
  1796. USB_REQ_SET_ADDRESS, 0, udev->devnum, 0,
  1797. NULL, 0, USB_CTRL_SET_TIMEOUT);
  1798. if (retval == 0) {
  1799. usb_set_device_state(udev, USB_STATE_ADDRESS);
  1800. ep0_reinit(udev);
  1801. }
  1802. return retval;
  1803. }
  1804. /* Reset device, (re)assign address, get device descriptor.
  1805. * Device connection must be stable, no more debouncing needed.
  1806. * Returns device in USB_STATE_ADDRESS, except on error.
  1807. *
  1808. * If this is called for an already-existing device (as part of
  1809. * usb_reset_device), the caller must own the device lock. For a
  1810. * newly detected device that is not accessible through any global
  1811. * pointers, it's not necessary to lock the device.
  1812. */
  1813. static int
  1814. hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1,
  1815. int retry_counter)
  1816. {
  1817. static DECLARE_MUTEX(usb_address0_sem);
  1818. struct usb_device *hdev = hub->hdev;
  1819. int i, j, retval;
  1820. unsigned delay = HUB_SHORT_RESET_TIME;
  1821. enum usb_device_speed oldspeed = udev->speed;
  1822. /* root hub ports have a slightly longer reset period
  1823. * (from USB 2.0 spec, section 7.1.7.5)
  1824. */
  1825. if (!hdev->parent) {
  1826. delay = HUB_ROOT_RESET_TIME;
  1827. if (port1 == hdev->bus->otg_port)
  1828. hdev->bus->b_hnp_enable = 0;
  1829. }
  1830. /* Some low speed devices have problems with the quick delay, so */
  1831. /* be a bit pessimistic with those devices. RHbug #23670 */
  1832. if (oldspeed == USB_SPEED_LOW)
  1833. delay = HUB_LONG_RESET_TIME;
  1834. down(&usb_address0_sem);
  1835. /* Reset the device; full speed may morph to high speed */
  1836. retval = hub_port_reset(hub, port1, udev, delay);
  1837. if (retval < 0) /* error or disconnect */
  1838. goto fail;
  1839. /* success, speed is known */
  1840. retval = -ENODEV;
  1841. if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) {
  1842. dev_dbg(&udev->dev, "device reset changed speed!\n");
  1843. goto fail;
  1844. }
  1845. oldspeed = udev->speed;
  1846. /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
  1847. * it's fixed size except for full speed devices.
  1848. */
  1849. switch (udev->speed) {
  1850. case USB_SPEED_HIGH: /* fixed at 64 */
  1851. udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
  1852. break;
  1853. case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
  1854. /* to determine the ep0 maxpacket size, try to read
  1855. * the device descriptor to get bMaxPacketSize0 and
  1856. * then correct our initial guess.
  1857. */
  1858. udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
  1859. break;
  1860. case USB_SPEED_LOW: /* fixed at 8 */
  1861. udev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(8);
  1862. break;
  1863. default:
  1864. goto fail;
  1865. }
  1866. dev_info (&udev->dev,
  1867. "%s %s speed USB device using %s and address %d\n",
  1868. (udev->config) ? "reset" : "new",
  1869. ({ char *speed; switch (udev->speed) {
  1870. case USB_SPEED_LOW: speed = "low"; break;
  1871. case USB_SPEED_FULL: speed = "full"; break;
  1872. case USB_SPEED_HIGH: speed = "high"; break;
  1873. default: speed = "?"; break;
  1874. }; speed;}),
  1875. udev->bus->controller->driver->name,
  1876. udev->devnum);
  1877. /* Set up TT records, if needed */
  1878. if (hdev->tt) {
  1879. udev->tt = hdev->tt;
  1880. udev->ttport = hdev->ttport;
  1881. } else if (udev->speed != USB_SPEED_HIGH
  1882. && hdev->speed == USB_SPEED_HIGH) {
  1883. udev->tt = &hub->tt;
  1884. udev->ttport = port1;
  1885. }
  1886. /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
  1887. * Because device hardware and firmware is sometimes buggy in
  1888. * this area, and this is how Linux has done it for ages.
  1889. * Change it cautiously.
  1890. *
  1891. * NOTE: If USE_NEW_SCHEME() is true we will start by issuing
  1892. * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
  1893. * so it may help with some non-standards-compliant devices.
  1894. * Otherwise we start with SET_ADDRESS and then try to read the
  1895. * first 8 bytes of the device descriptor to get the ep0 maxpacket
  1896. * value.
  1897. */
  1898. for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) {
  1899. if (USE_NEW_SCHEME(retry_counter)) {
  1900. struct usb_device_descriptor *buf;
  1901. int r = 0;
  1902. #define GET_DESCRIPTOR_BUFSIZE 64
  1903. buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
  1904. if (!buf) {
  1905. retval = -ENOMEM;
  1906. continue;
  1907. }
  1908. /* Use a short timeout the first time through,
  1909. * so that recalcitrant full-speed devices with
  1910. * 8- or 16-byte ep0-maxpackets won't slow things
  1911. * down tremendously by NAKing the unexpectedly
  1912. * early status stage. Also, retry on all errors;
  1913. * some devices are flakey.
  1914. */
  1915. for (j = 0; j < 3; ++j) {
  1916. buf->bMaxPacketSize0 = 0;
  1917. r = usb_control_msg(udev, usb_rcvaddr0pipe(),
  1918. USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
  1919. USB_DT_DEVICE << 8, 0,
  1920. buf, GET_DESCRIPTOR_BUFSIZE,
  1921. (i ? USB_CTRL_GET_TIMEOUT : 1000));
  1922. switch (buf->bMaxPacketSize0) {
  1923. case 8: case 16: case 32: case 64:
  1924. if (buf->bDescriptorType ==
  1925. USB_DT_DEVICE) {
  1926. r = 0;
  1927. break;
  1928. }
  1929. /* FALL THROUGH */
  1930. default:
  1931. if (r == 0)
  1932. r = -EPROTO;
  1933. break;
  1934. }
  1935. if (r == 0)
  1936. break;
  1937. }
  1938. udev->descriptor.bMaxPacketSize0 =
  1939. buf->bMaxPacketSize0;
  1940. kfree(buf);
  1941. retval = hub_port_reset(hub, port1, udev, delay);
  1942. if (retval < 0) /* error or disconnect */
  1943. goto fail;
  1944. if (oldspeed != udev->speed) {
  1945. dev_dbg(&udev->dev,
  1946. "device reset changed speed!\n");
  1947. retval = -ENODEV;
  1948. goto fail;
  1949. }
  1950. if (r) {
  1951. dev_err(&udev->dev, "device descriptor "
  1952. "read/%s, error %d\n",
  1953. "64", r);
  1954. retval = -EMSGSIZE;
  1955. continue;
  1956. }
  1957. #undef GET_DESCRIPTOR_BUFSIZE
  1958. }
  1959. for (j = 0; j < SET_ADDRESS_TRIES; ++j) {
  1960. retval = hub_set_address(udev);
  1961. if (retval >= 0)
  1962. break;
  1963. msleep(200);
  1964. }
  1965. if (retval < 0) {
  1966. dev_err(&udev->dev,
  1967. "device not accepting address %d, error %d\n",
  1968. udev->devnum, retval);
  1969. goto fail;
  1970. }
  1971. /* cope with hardware quirkiness:
  1972. * - let SET_ADDRESS settle, some device hardware wants it
  1973. * - read ep0 maxpacket even for high and low speed,
  1974. */
  1975. msleep(10);
  1976. if (USE_NEW_SCHEME(retry_counter))
  1977. break;
  1978. retval = usb_get_device_descriptor(udev, 8);
  1979. if (retval < 8) {
  1980. dev_err(&udev->dev, "device descriptor "
  1981. "read/%s, error %d\n",
  1982. "8", retval);
  1983. if (retval >= 0)
  1984. retval = -EMSGSIZE;
  1985. } else {
  1986. retval = 0;
  1987. break;
  1988. }
  1989. }
  1990. if (retval)
  1991. goto fail;
  1992. i = udev->descriptor.bMaxPacketSize0;
  1993. if (le16_to_cpu(udev->ep0.desc.wMaxPacketSize) != i) {
  1994. if (udev->speed != USB_SPEED_FULL ||
  1995. !(i == 8 || i == 16 || i == 32 || i == 64)) {
  1996. dev_err(&udev->dev, "ep0 maxpacket = %d\n", i);
  1997. retval = -EMSGSIZE;
  1998. goto fail;
  1999. }
  2000. dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
  2001. udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
  2002. ep0_reinit(udev);
  2003. }
  2004. retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
  2005. if (retval < (signed)sizeof(udev->descriptor)) {
  2006. dev_err(&udev->dev, "device descriptor read/%s, error %d\n",
  2007. "all", retval);
  2008. if (retval >= 0)
  2009. retval = -ENOMSG;
  2010. goto fail;
  2011. }
  2012. retval = 0;
  2013. fail:
  2014. if (retval)
  2015. hub_port_disable(hub, port1, 0);
  2016. up(&usb_address0_sem);
  2017. return retval;
  2018. }
  2019. static void
  2020. check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1)
  2021. {
  2022. struct usb_qualifier_descriptor *qual;
  2023. int status;
  2024. qual = kmalloc (sizeof *qual, SLAB_KERNEL);
  2025. if (qual == NULL)
  2026. return;
  2027. status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0,
  2028. qual, sizeof *qual);
  2029. if (status == sizeof *qual) {
  2030. dev_info(&udev->dev, "not running at top speed; "
  2031. "connect to a high speed hub\n");
  2032. /* hub LEDs are probably harder to miss than syslog */
  2033. if (hub->has_indicators) {
  2034. hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
  2035. schedule_work (&hub->leds);
  2036. }
  2037. }
  2038. kfree(qual);
  2039. }
  2040. static unsigned
  2041. hub_power_remaining (struct usb_hub *hub)
  2042. {
  2043. struct usb_device *hdev = hub->hdev;
  2044. int remaining;
  2045. unsigned i;
  2046. remaining = hub->power_budget;
  2047. if (!remaining) /* self-powered */
  2048. return 0;
  2049. for (i = 0; i < hdev->maxchild; i++) {
  2050. struct usb_device *udev = hdev->children[i];
  2051. int delta, ceiling;
  2052. if (!udev)
  2053. continue;
  2054. /* 100mA per-port ceiling, or 8mA for OTG ports */
  2055. if (i != (udev->bus->otg_port - 1) || hdev->parent)
  2056. ceiling = 50;
  2057. else
  2058. ceiling = 4;
  2059. if (udev->actconfig)
  2060. delta = udev->actconfig->desc.bMaxPower;
  2061. else
  2062. delta = ceiling;
  2063. // dev_dbg(&udev->dev, "budgeted %dmA\n", 2 * delta);
  2064. if (delta > ceiling)
  2065. dev_warn(&udev->dev, "%dmA over %dmA budget!\n",
  2066. 2 * (delta - ceiling), 2 * ceiling);
  2067. remaining -= delta;
  2068. }
  2069. if (remaining < 0) {
  2070. dev_warn(hub->intfdev,
  2071. "%dmA over power budget!\n",
  2072. -2 * remaining);
  2073. remaining = 0;
  2074. }
  2075. return remaining;
  2076. }
  2077. /* Handle physical or logical connection change events.
  2078. * This routine is called when:
  2079. * a port connection-change occurs;
  2080. * a port enable-change occurs (often caused by EMI);
  2081. * usb_reset_device() encounters changed descriptors (as from
  2082. * a firmware download)
  2083. * caller already locked the hub
  2084. */
  2085. static void hub_port_connect_change(struct usb_hub *hub, int port1,
  2086. u16 portstatus, u16 portchange)
  2087. {
  2088. struct usb_device *hdev = hub->hdev;
  2089. struct device *hub_dev = hub->intfdev;
  2090. u16 wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
  2091. int status, i;
  2092. dev_dbg (hub_dev,
  2093. "port %d, status %04x, change %04x, %s\n",
  2094. port1, portstatus, portchange, portspeed (portstatus));
  2095. if (hub->has_indicators) {
  2096. set_port_led(hub, port1, HUB_LED_AUTO);
  2097. hub->indicator[port1-1] = INDICATOR_AUTO;
  2098. }
  2099. /* Disconnect any existing devices under this port */
  2100. if (hdev->children[port1-1])
  2101. usb_disconnect(&hdev->children[port1-1]);
  2102. clear_bit(port1, hub->change_bits);
  2103. #ifdef CONFIG_USB_OTG
  2104. /* during HNP, don't repeat the debounce */
  2105. if (hdev->bus->is_b_host)
  2106. portchange &= ~USB_PORT_STAT_C_CONNECTION;
  2107. #endif
  2108. if (portchange & USB_PORT_STAT_C_CONNECTION) {
  2109. status = hub_port_debounce(hub, port1);
  2110. if (status < 0) {
  2111. dev_err (hub_dev,
  2112. "connect-debounce failed, port %d disabled\n",
  2113. port1);
  2114. goto done;
  2115. }
  2116. portstatus = status;
  2117. }
  2118. /* Return now if nothing is connected */
  2119. if (!(portstatus & USB_PORT_STAT_CONNECTION)) {
  2120. /* maybe switch power back on (e.g. root hub was reset) */
  2121. if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2
  2122. && !(portstatus & (1 << USB_PORT_FEAT_POWER)))
  2123. set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
  2124. if (portstatus & USB_PORT_STAT_ENABLE)
  2125. goto done;
  2126. return;
  2127. }
  2128. #ifdef CONFIG_USB_SUSPEND
  2129. /* If something is connected, but the port is suspended, wake it up. */
  2130. if (portstatus & USB_PORT_STAT_SUSPEND) {
  2131. status = hub_port_resume(hub, port1, NULL);
  2132. if (status < 0) {
  2133. dev_dbg(hub_dev,
  2134. "can't clear suspend on port %d; %d\n",
  2135. port1, status);
  2136. goto done;
  2137. }
  2138. }
  2139. #endif
  2140. for (i = 0; i < SET_CONFIG_TRIES; i++) {
  2141. struct usb_device *udev;
  2142. /* reallocate for each attempt, since references
  2143. * to the previous one can escape in various ways
  2144. */
  2145. udev = usb_alloc_dev(hdev, hdev->bus, port1);
  2146. if (!udev) {
  2147. dev_err (hub_dev,
  2148. "couldn't allocate port %d usb_device\n",
  2149. port1);
  2150. goto done;
  2151. }
  2152. usb_set_device_state(udev, USB_STATE_POWERED);
  2153. udev->speed = USB_SPEED_UNKNOWN;
  2154. /* set the address */
  2155. choose_address(udev);
  2156. if (udev->devnum <= 0) {
  2157. status = -ENOTCONN; /* Don't retry */
  2158. goto loop;
  2159. }
  2160. /* reset and get descriptor */
  2161. status = hub_port_init(hub, udev, port1, i);
  2162. if (status < 0)
  2163. goto loop;
  2164. /* consecutive bus-powered hubs aren't reliable; they can
  2165. * violate the voltage drop budget. if the new child has
  2166. * a "powered" LED, users should notice we didn't enable it
  2167. * (without reading syslog), even without per-port LEDs
  2168. * on the parent.
  2169. */
  2170. if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
  2171. && hub->power_budget) {
  2172. u16 devstat;
  2173. status = usb_get_status(udev, USB_RECIP_DEVICE, 0,
  2174. &devstat);
  2175. if (status < 0) {
  2176. dev_dbg(&udev->dev, "get status %d ?\n", status);
  2177. goto loop_disable;
  2178. }
  2179. cpu_to_le16s(&devstat);
  2180. if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
  2181. dev_err(&udev->dev,
  2182. "can't connect bus-powered hub "
  2183. "to this port\n");
  2184. if (hub->has_indicators) {
  2185. hub->indicator[port1-1] =
  2186. INDICATOR_AMBER_BLINK;
  2187. schedule_work (&hub->leds);
  2188. }
  2189. status = -ENOTCONN; /* Don't retry */
  2190. goto loop_disable;
  2191. }
  2192. }
  2193. /* check for devices running slower than they could */
  2194. if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
  2195. && udev->speed == USB_SPEED_FULL
  2196. && highspeed_hubs != 0)
  2197. check_highspeed (hub, udev, port1);
  2198. /* Store the parent's children[] pointer. At this point
  2199. * udev becomes globally accessible, although presumably
  2200. * no one will look at it until hdev is unlocked.
  2201. */
  2202. status = 0;
  2203. /* We mustn't add new devices if the parent hub has
  2204. * been disconnected; we would race with the
  2205. * recursively_mark_NOTATTACHED() routine.
  2206. */
  2207. spin_lock_irq(&device_state_lock);
  2208. if (hdev->state == USB_STATE_NOTATTACHED)
  2209. status = -ENOTCONN;
  2210. else
  2211. hdev->children[port1-1] = udev;
  2212. spin_unlock_irq(&device_state_lock);
  2213. /* Run it through the hoops (find a driver, etc) */
  2214. if (!status) {
  2215. status = usb_new_device(udev);
  2216. if (status) {
  2217. spin_lock_irq(&device_state_lock);
  2218. hdev->children[port1-1] = NULL;
  2219. spin_unlock_irq(&device_state_lock);
  2220. }
  2221. }
  2222. if (status)
  2223. goto loop_disable;
  2224. status = hub_power_remaining(hub);
  2225. if (status)
  2226. dev_dbg(hub_dev,
  2227. "%dmA power budget left\n",
  2228. 2 * status);
  2229. return;
  2230. loop_disable:
  2231. hub_port_disable(hub, port1, 1);
  2232. loop:
  2233. ep0_reinit(udev);
  2234. release_address(udev);
  2235. usb_put_dev(udev);
  2236. if (status == -ENOTCONN)
  2237. break;
  2238. }
  2239. done:
  2240. hub_port_disable(hub, port1, 1);
  2241. }
  2242. static void hub_events(void)
  2243. {
  2244. struct list_head *tmp;
  2245. struct usb_device *hdev;
  2246. struct usb_interface *intf;
  2247. struct usb_hub *hub;
  2248. struct device *hub_dev;
  2249. u16 hubstatus;
  2250. u16 hubchange;
  2251. u16 portstatus;
  2252. u16 portchange;
  2253. int i, ret;
  2254. int connect_change;
  2255. /*
  2256. * We restart the list every time to avoid a deadlock with
  2257. * deleting hubs downstream from this one. This should be
  2258. * safe since we delete the hub from the event list.
  2259. * Not the most efficient, but avoids deadlocks.
  2260. */
  2261. while (1) {
  2262. /* Grab the first entry at the beginning of the list */
  2263. spin_lock_irq(&hub_event_lock);
  2264. if (list_empty(&hub_event_list)) {
  2265. spin_unlock_irq(&hub_event_lock);
  2266. break;
  2267. }
  2268. tmp = hub_event_list.next;
  2269. list_del_init(tmp);
  2270. hub = list_entry(tmp, struct usb_hub, event_list);
  2271. hdev = hub->hdev;
  2272. intf = to_usb_interface(hub->intfdev);
  2273. hub_dev = &intf->dev;
  2274. i = hub->resume_root_hub;
  2275. dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x%s\n",
  2276. hdev->state, hub->descriptor
  2277. ? hub->descriptor->bNbrPorts
  2278. : 0,
  2279. /* NOTE: expects max 15 ports... */
  2280. (u16) hub->change_bits[0],
  2281. (u16) hub->event_bits[0],
  2282. i ? ", resume root" : "");
  2283. usb_get_intf(intf);
  2284. spin_unlock_irq(&hub_event_lock);
  2285. /* Is this is a root hub wanting to reactivate the downstream
  2286. * ports? If so, be sure the interface resumes even if its
  2287. * stub "device" node was never suspended.
  2288. */
  2289. if (i) {
  2290. dpm_runtime_resume(&hdev->dev);
  2291. dpm_runtime_resume(&intf->dev);
  2292. }
  2293. /* Lock the device, then check to see if we were
  2294. * disconnected while waiting for the lock to succeed. */
  2295. if (locktree(hdev) < 0) {
  2296. usb_put_intf(intf);
  2297. continue;
  2298. }
  2299. if (hub != usb_get_intfdata(intf))
  2300. goto loop;
  2301. /* If the hub has died, clean up after it */
  2302. if (hdev->state == USB_STATE_NOTATTACHED) {
  2303. hub_pre_reset(hub, 0);
  2304. goto loop;
  2305. }
  2306. /* If this is an inactive or suspended hub, do nothing */
  2307. if (hub->quiescing)
  2308. goto loop;
  2309. if (hub->error) {
  2310. dev_dbg (hub_dev, "resetting for error %d\n",
  2311. hub->error);
  2312. ret = usb_reset_device(hdev);
  2313. if (ret) {
  2314. dev_dbg (hub_dev,
  2315. "error resetting hub: %d\n", ret);
  2316. goto loop;
  2317. }
  2318. hub->nerrors = 0;
  2319. hub->error = 0;
  2320. }
  2321. /* deal with port status changes */
  2322. for (i = 1; i <= hub->descriptor->bNbrPorts; i++) {
  2323. if (test_bit(i, hub->busy_bits))
  2324. continue;
  2325. connect_change = test_bit(i, hub->change_bits);
  2326. if (!test_and_clear_bit(i, hub->event_bits) &&
  2327. !connect_change && !hub->activating)
  2328. continue;
  2329. ret = hub_port_status(hub, i,
  2330. &portstatus, &portchange);
  2331. if (ret < 0)
  2332. continue;
  2333. if (hub->activating && !hdev->children[i-1] &&
  2334. (portstatus &
  2335. USB_PORT_STAT_CONNECTION))
  2336. connect_change = 1;
  2337. if (portchange & USB_PORT_STAT_C_CONNECTION) {
  2338. clear_port_feature(hdev, i,
  2339. USB_PORT_FEAT_C_CONNECTION);
  2340. connect_change = 1;
  2341. }
  2342. if (portchange & USB_PORT_STAT_C_ENABLE) {
  2343. if (!connect_change)
  2344. dev_dbg (hub_dev,
  2345. "port %d enable change, "
  2346. "status %08x\n",
  2347. i, portstatus);
  2348. clear_port_feature(hdev, i,
  2349. USB_PORT_FEAT_C_ENABLE);
  2350. /*
  2351. * EM interference sometimes causes badly
  2352. * shielded USB devices to be shutdown by
  2353. * the hub, this hack enables them again.
  2354. * Works at least with mouse driver.
  2355. */
  2356. if (!(portstatus & USB_PORT_STAT_ENABLE)
  2357. && !connect_change
  2358. && hdev->children[i-1]) {
  2359. dev_err (hub_dev,
  2360. "port %i "
  2361. "disabled by hub (EMI?), "
  2362. "re-enabling...\n",
  2363. i);
  2364. connect_change = 1;
  2365. }
  2366. }
  2367. if (portchange & USB_PORT_STAT_C_SUSPEND) {
  2368. clear_port_feature(hdev, i,
  2369. USB_PORT_FEAT_C_SUSPEND);
  2370. if (hdev->children[i-1]) {
  2371. ret = remote_wakeup(hdev->
  2372. children[i-1]);
  2373. if (ret < 0)
  2374. connect_change = 1;
  2375. } else {
  2376. ret = -ENODEV;
  2377. hub_port_disable(hub, i, 1);
  2378. }
  2379. dev_dbg (hub_dev,
  2380. "resume on port %d, status %d\n",
  2381. i, ret);
  2382. }
  2383. if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
  2384. dev_err (hub_dev,
  2385. "over-current change on port %d\n",
  2386. i);
  2387. clear_port_feature(hdev, i,
  2388. USB_PORT_FEAT_C_OVER_CURRENT);
  2389. hub_power_on(hub);
  2390. }
  2391. if (portchange & USB_PORT_STAT_C_RESET) {
  2392. dev_dbg (hub_dev,
  2393. "reset change on port %d\n",
  2394. i);
  2395. clear_port_feature(hdev, i,
  2396. USB_PORT_FEAT_C_RESET);
  2397. }
  2398. if (connect_change)
  2399. hub_port_connect_change(hub, i,
  2400. portstatus, portchange);
  2401. } /* end for i */
  2402. /* deal with hub status changes */
  2403. if (test_and_clear_bit(0, hub->event_bits) == 0)
  2404. ; /* do nothing */
  2405. else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
  2406. dev_err (hub_dev, "get_hub_status failed\n");
  2407. else {
  2408. if (hubchange & HUB_CHANGE_LOCAL_POWER) {
  2409. dev_dbg (hub_dev, "power change\n");
  2410. clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
  2411. }
  2412. if (hubchange & HUB_CHANGE_OVERCURRENT) {
  2413. dev_dbg (hub_dev, "overcurrent change\n");
  2414. msleep(500); /* Cool down */
  2415. clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
  2416. hub_power_on(hub);
  2417. }
  2418. }
  2419. hub->activating = 0;
  2420. /* If this is a root hub, tell the HCD it's okay to
  2421. * re-enable port-change interrupts now. */
  2422. if (!hdev->parent)
  2423. usb_enable_root_hub_irq(hdev->bus);
  2424. loop:
  2425. usb_unlock_device(hdev);
  2426. usb_put_intf(intf);
  2427. } /* end while (1) */
  2428. }
  2429. static int hub_thread(void *__unused)
  2430. {
  2431. do {
  2432. hub_events();
  2433. wait_event_interruptible(khubd_wait,
  2434. !list_empty(&hub_event_list) ||
  2435. kthread_should_stop());
  2436. try_to_freeze();
  2437. } while (!kthread_should_stop() || !list_empty(&hub_event_list));
  2438. pr_debug("%s: khubd exiting\n", usbcore_name);
  2439. return 0;
  2440. }
  2441. static struct usb_device_id hub_id_table [] = {
  2442. { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
  2443. .bDeviceClass = USB_CLASS_HUB},
  2444. { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
  2445. .bInterfaceClass = USB_CLASS_HUB},
  2446. { } /* Terminating entry */
  2447. };
  2448. MODULE_DEVICE_TABLE (usb, hub_id_table);
  2449. static struct usb_driver hub_driver = {
  2450. .name = "hub",
  2451. .probe = hub_probe,
  2452. .disconnect = hub_disconnect,
  2453. .suspend = hub_suspend,
  2454. .resume = hub_resume,
  2455. .ioctl = hub_ioctl,
  2456. .id_table = hub_id_table,
  2457. };
  2458. int usb_hub_init(void)
  2459. {
  2460. if (usb_register(&hub_driver) < 0) {
  2461. printk(KERN_ERR "%s: can't register hub driver\n",
  2462. usbcore_name);
  2463. return -1;
  2464. }
  2465. khubd_task = kthread_run(hub_thread, NULL, "khubd");
  2466. if (!IS_ERR(khubd_task))
  2467. return 0;
  2468. /* Fall through if kernel_thread failed */
  2469. usb_deregister(&hub_driver);
  2470. printk(KERN_ERR "%s: can't start khubd\n", usbcore_name);
  2471. return -1;
  2472. }
  2473. void usb_hub_cleanup(void)
  2474. {
  2475. kthread_stop(khubd_task);
  2476. /*
  2477. * Hub resources are freed for us by usb_deregister. It calls
  2478. * usb_driver_purge on every device which in turn calls that
  2479. * devices disconnect function if it is using this driver.
  2480. * The hub_disconnect function takes care of releasing the
  2481. * individual hub resources. -greg
  2482. */
  2483. usb_deregister(&hub_driver);
  2484. } /* usb_hub_cleanup() */
  2485. static int config_descriptors_changed(struct usb_device *udev)
  2486. {
  2487. unsigned index;
  2488. unsigned len = 0;
  2489. struct usb_config_descriptor *buf;
  2490. for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
  2491. if (len < le16_to_cpu(udev->config[index].desc.wTotalLength))
  2492. len = le16_to_cpu(udev->config[index].desc.wTotalLength);
  2493. }
  2494. buf = kmalloc (len, SLAB_KERNEL);
  2495. if (buf == NULL) {
  2496. dev_err(&udev->dev, "no mem to re-read configs after reset\n");
  2497. /* assume the worst */
  2498. return 1;
  2499. }
  2500. for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
  2501. int length;
  2502. int old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
  2503. length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
  2504. old_length);
  2505. if (length < old_length) {
  2506. dev_dbg(&udev->dev, "config index %d, error %d\n",
  2507. index, length);
  2508. break;
  2509. }
  2510. if (memcmp (buf, udev->rawdescriptors[index], old_length)
  2511. != 0) {
  2512. dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
  2513. index, buf->bConfigurationValue);
  2514. break;
  2515. }
  2516. }
  2517. kfree(buf);
  2518. return index != udev->descriptor.bNumConfigurations;
  2519. }
  2520. /**
  2521. * usb_reset_device - perform a USB port reset to reinitialize a device
  2522. * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
  2523. *
  2524. * WARNING - don't reset any device unless drivers for all of its
  2525. * interfaces are expecting that reset! Maybe some driver->reset()
  2526. * method should eventually help ensure sufficient cooperation.
  2527. *
  2528. * Do a port reset, reassign the device's address, and establish its
  2529. * former operating configuration. If the reset fails, or the device's
  2530. * descriptors change from their values before the reset, or the original
  2531. * configuration and altsettings cannot be restored, a flag will be set
  2532. * telling khubd to pretend the device has been disconnected and then
  2533. * re-connected. All drivers will be unbound, and the device will be
  2534. * re-enumerated and probed all over again.
  2535. *
  2536. * Returns 0 if the reset succeeded, -ENODEV if the device has been
  2537. * flagged for logical disconnection, or some other negative error code
  2538. * if the reset wasn't even attempted.
  2539. *
  2540. * The caller must own the device lock. For example, it's safe to use
  2541. * this from a driver probe() routine after downloading new firmware.
  2542. * For calls that might not occur during probe(), drivers should lock
  2543. * the device using usb_lock_device_for_reset().
  2544. */
  2545. int usb_reset_device(struct usb_device *udev)
  2546. {
  2547. struct usb_device *parent_hdev = udev->parent;
  2548. struct usb_hub *parent_hub;
  2549. struct usb_device_descriptor descriptor = udev->descriptor;
  2550. struct usb_hub *hub = NULL;
  2551. int i, ret = 0, port1 = -1;
  2552. if (udev->state == USB_STATE_NOTATTACHED ||
  2553. udev->state == USB_STATE_SUSPENDED) {
  2554. dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
  2555. udev->state);
  2556. return -EINVAL;
  2557. }
  2558. if (!parent_hdev) {
  2559. /* this requires hcd-specific logic; see OHCI hc_restart() */
  2560. dev_dbg(&udev->dev, "%s for root hub!\n", __FUNCTION__);
  2561. return -EISDIR;
  2562. }
  2563. for (i = 0; i < parent_hdev->maxchild; i++)
  2564. if (parent_hdev->children[i] == udev) {
  2565. port1 = i + 1;
  2566. break;
  2567. }
  2568. if (port1 < 0) {
  2569. /* If this ever happens, it's very bad */
  2570. dev_err(&udev->dev, "Can't locate device's port!\n");
  2571. return -ENOENT;
  2572. }
  2573. parent_hub = hdev_to_hub(parent_hdev);
  2574. /* If we're resetting an active hub, take some special actions */
  2575. if (udev->actconfig &&
  2576. udev->actconfig->interface[0]->dev.driver ==
  2577. &hub_driver.driver &&
  2578. (hub = hdev_to_hub(udev)) != NULL) {
  2579. hub_pre_reset(hub, 0);
  2580. }
  2581. set_bit(port1, parent_hub->busy_bits);
  2582. for (i = 0; i < SET_CONFIG_TRIES; ++i) {
  2583. /* ep0 maxpacket size may change; let the HCD know about it.
  2584. * Other endpoints will be handled by re-enumeration. */
  2585. ep0_reinit(udev);
  2586. ret = hub_port_init(parent_hub, udev, port1, i);
  2587. if (ret >= 0)
  2588. break;
  2589. }
  2590. clear_bit(port1, parent_hub->busy_bits);
  2591. if (ret < 0)
  2592. goto re_enumerate;
  2593. /* Device might have changed firmware (DFU or similar) */
  2594. if (memcmp(&udev->descriptor, &descriptor, sizeof descriptor)
  2595. || config_descriptors_changed (udev)) {
  2596. dev_info(&udev->dev, "device firmware changed\n");
  2597. udev->descriptor = descriptor; /* for disconnect() calls */
  2598. goto re_enumerate;
  2599. }
  2600. if (!udev->actconfig)
  2601. goto done;
  2602. ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
  2603. USB_REQ_SET_CONFIGURATION, 0,
  2604. udev->actconfig->desc.bConfigurationValue, 0,
  2605. NULL, 0, USB_CTRL_SET_TIMEOUT);
  2606. if (ret < 0) {
  2607. dev_err(&udev->dev,
  2608. "can't restore configuration #%d (error=%d)\n",
  2609. udev->actconfig->desc.bConfigurationValue, ret);
  2610. goto re_enumerate;
  2611. }
  2612. usb_set_device_state(udev, USB_STATE_CONFIGURED);
  2613. for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
  2614. struct usb_interface *intf = udev->actconfig->interface[i];
  2615. struct usb_interface_descriptor *desc;
  2616. /* set_interface resets host side toggle even
  2617. * for altsetting zero. the interface may have no driver.
  2618. */
  2619. desc = &intf->cur_altsetting->desc;
  2620. ret = usb_set_interface(udev, desc->bInterfaceNumber,
  2621. desc->bAlternateSetting);
  2622. if (ret < 0) {
  2623. dev_err(&udev->dev, "failed to restore interface %d "
  2624. "altsetting %d (error=%d)\n",
  2625. desc->bInterfaceNumber,
  2626. desc->bAlternateSetting,
  2627. ret);
  2628. goto re_enumerate;
  2629. }
  2630. }
  2631. done:
  2632. if (hub)
  2633. hub_post_reset(hub);
  2634. return 0;
  2635. re_enumerate:
  2636. hub_port_logical_disconnect(parent_hub, port1);
  2637. return -ENODEV;
  2638. }