hub.c 84 KB

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