hub.c 84 KB

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