hub.c 82 KB

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