hub.c 83 KB

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