hub.c 85 KB

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