hub.c 84 KB

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