hub.c 82 KB

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