driver.c 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881
  1. /*
  2. * drivers/usb/driver.c - most of the driver model stuff for usb
  3. *
  4. * (C) Copyright 2005 Greg Kroah-Hartman <gregkh@suse.de>
  5. *
  6. * based on drivers/usb/usb.c which had the following copyrights:
  7. * (C) Copyright Linus Torvalds 1999
  8. * (C) Copyright Johannes Erdfelt 1999-2001
  9. * (C) Copyright Andreas Gal 1999
  10. * (C) Copyright Gregory P. Smith 1999
  11. * (C) Copyright Deti Fliegl 1999 (new USB architecture)
  12. * (C) Copyright Randy Dunlap 2000
  13. * (C) Copyright David Brownell 2000-2004
  14. * (C) Copyright Yggdrasil Computing, Inc. 2000
  15. * (usb_device_id matching changes by Adam J. Richter)
  16. * (C) Copyright Greg Kroah-Hartman 2002-2003
  17. *
  18. * NOTE! This is not actually a driver at all, rather this is
  19. * just a collection of helper routines that implement the
  20. * matching, probing, releasing, suspending and resuming for
  21. * real drivers.
  22. *
  23. */
  24. #include <linux/device.h>
  25. #include <linux/slab.h>
  26. #include <linux/export.h>
  27. #include <linux/usb.h>
  28. #include <linux/usb/quirks.h>
  29. #include <linux/usb/hcd.h>
  30. #include "usb.h"
  31. /*
  32. * Adds a new dynamic USBdevice ID to this driver,
  33. * and cause the driver to probe for all devices again.
  34. */
  35. ssize_t usb_store_new_id(struct usb_dynids *dynids,
  36. const struct usb_device_id *id_table,
  37. struct device_driver *driver,
  38. const char *buf, size_t count)
  39. {
  40. struct usb_dynid *dynid;
  41. u32 idVendor = 0;
  42. u32 idProduct = 0;
  43. unsigned int bInterfaceClass = 0;
  44. u32 refVendor, refProduct;
  45. int fields = 0;
  46. int retval = 0;
  47. fields = sscanf(buf, "%x %x %x %x %x", &idVendor, &idProduct,
  48. &bInterfaceClass, &refVendor, &refProduct);
  49. if (fields < 2)
  50. return -EINVAL;
  51. dynid = kzalloc(sizeof(*dynid), GFP_KERNEL);
  52. if (!dynid)
  53. return -ENOMEM;
  54. INIT_LIST_HEAD(&dynid->node);
  55. dynid->id.idVendor = idVendor;
  56. dynid->id.idProduct = idProduct;
  57. dynid->id.match_flags = USB_DEVICE_ID_MATCH_DEVICE;
  58. if (fields > 2 && bInterfaceClass) {
  59. if (bInterfaceClass > 255) {
  60. retval = -EINVAL;
  61. goto fail;
  62. }
  63. dynid->id.bInterfaceClass = (u8)bInterfaceClass;
  64. dynid->id.match_flags |= USB_DEVICE_ID_MATCH_INT_CLASS;
  65. }
  66. if (fields > 4) {
  67. const struct usb_device_id *id = id_table;
  68. if (!id) {
  69. retval = -ENODEV;
  70. goto fail;
  71. }
  72. for (; id->match_flags; id++)
  73. if (id->idVendor == refVendor && id->idProduct == refProduct)
  74. break;
  75. if (id->match_flags) {
  76. dynid->id.driver_info = id->driver_info;
  77. } else {
  78. retval = -ENODEV;
  79. goto fail;
  80. }
  81. }
  82. spin_lock(&dynids->lock);
  83. list_add_tail(&dynid->node, &dynids->list);
  84. spin_unlock(&dynids->lock);
  85. retval = driver_attach(driver);
  86. if (retval)
  87. return retval;
  88. return count;
  89. fail:
  90. kfree(dynid);
  91. return retval;
  92. }
  93. EXPORT_SYMBOL_GPL(usb_store_new_id);
  94. ssize_t usb_show_dynids(struct usb_dynids *dynids, char *buf)
  95. {
  96. struct usb_dynid *dynid;
  97. size_t count = 0;
  98. list_for_each_entry(dynid, &dynids->list, node)
  99. if (dynid->id.bInterfaceClass != 0)
  100. count += scnprintf(&buf[count], PAGE_SIZE - count, "%04x %04x %02x\n",
  101. dynid->id.idVendor, dynid->id.idProduct,
  102. dynid->id.bInterfaceClass);
  103. else
  104. count += scnprintf(&buf[count], PAGE_SIZE - count, "%04x %04x\n",
  105. dynid->id.idVendor, dynid->id.idProduct);
  106. return count;
  107. }
  108. EXPORT_SYMBOL_GPL(usb_show_dynids);
  109. static ssize_t new_id_show(struct device_driver *driver, char *buf)
  110. {
  111. struct usb_driver *usb_drv = to_usb_driver(driver);
  112. return usb_show_dynids(&usb_drv->dynids, buf);
  113. }
  114. static ssize_t new_id_store(struct device_driver *driver,
  115. const char *buf, size_t count)
  116. {
  117. struct usb_driver *usb_drv = to_usb_driver(driver);
  118. return usb_store_new_id(&usb_drv->dynids, usb_drv->id_table, driver, buf, count);
  119. }
  120. static DRIVER_ATTR_RW(new_id);
  121. /*
  122. * Remove a USB device ID from this driver
  123. */
  124. static ssize_t remove_id_store(struct device_driver *driver, const char *buf,
  125. size_t count)
  126. {
  127. struct usb_dynid *dynid, *n;
  128. struct usb_driver *usb_driver = to_usb_driver(driver);
  129. u32 idVendor;
  130. u32 idProduct;
  131. int fields;
  132. fields = sscanf(buf, "%x %x", &idVendor, &idProduct);
  133. if (fields < 2)
  134. return -EINVAL;
  135. spin_lock(&usb_driver->dynids.lock);
  136. list_for_each_entry_safe(dynid, n, &usb_driver->dynids.list, node) {
  137. struct usb_device_id *id = &dynid->id;
  138. if ((id->idVendor == idVendor) &&
  139. (id->idProduct == idProduct)) {
  140. list_del(&dynid->node);
  141. kfree(dynid);
  142. break;
  143. }
  144. }
  145. spin_unlock(&usb_driver->dynids.lock);
  146. return count;
  147. }
  148. static ssize_t remove_id_show(struct device_driver *driver, char *buf)
  149. {
  150. return new_id_show(driver, buf);
  151. }
  152. static DRIVER_ATTR_RW(remove_id);
  153. static int usb_create_newid_files(struct usb_driver *usb_drv)
  154. {
  155. int error = 0;
  156. if (usb_drv->no_dynamic_id)
  157. goto exit;
  158. if (usb_drv->probe != NULL) {
  159. error = driver_create_file(&usb_drv->drvwrap.driver,
  160. &driver_attr_new_id);
  161. if (error == 0) {
  162. error = driver_create_file(&usb_drv->drvwrap.driver,
  163. &driver_attr_remove_id);
  164. if (error)
  165. driver_remove_file(&usb_drv->drvwrap.driver,
  166. &driver_attr_new_id);
  167. }
  168. }
  169. exit:
  170. return error;
  171. }
  172. static void usb_remove_newid_files(struct usb_driver *usb_drv)
  173. {
  174. if (usb_drv->no_dynamic_id)
  175. return;
  176. if (usb_drv->probe != NULL) {
  177. driver_remove_file(&usb_drv->drvwrap.driver,
  178. &driver_attr_remove_id);
  179. driver_remove_file(&usb_drv->drvwrap.driver,
  180. &driver_attr_new_id);
  181. }
  182. }
  183. static void usb_free_dynids(struct usb_driver *usb_drv)
  184. {
  185. struct usb_dynid *dynid, *n;
  186. spin_lock(&usb_drv->dynids.lock);
  187. list_for_each_entry_safe(dynid, n, &usb_drv->dynids.list, node) {
  188. list_del(&dynid->node);
  189. kfree(dynid);
  190. }
  191. spin_unlock(&usb_drv->dynids.lock);
  192. }
  193. static const struct usb_device_id *usb_match_dynamic_id(struct usb_interface *intf,
  194. struct usb_driver *drv)
  195. {
  196. struct usb_dynid *dynid;
  197. spin_lock(&drv->dynids.lock);
  198. list_for_each_entry(dynid, &drv->dynids.list, node) {
  199. if (usb_match_one_id(intf, &dynid->id)) {
  200. spin_unlock(&drv->dynids.lock);
  201. return &dynid->id;
  202. }
  203. }
  204. spin_unlock(&drv->dynids.lock);
  205. return NULL;
  206. }
  207. /* called from driver core with dev locked */
  208. static int usb_probe_device(struct device *dev)
  209. {
  210. struct usb_device_driver *udriver = to_usb_device_driver(dev->driver);
  211. struct usb_device *udev = to_usb_device(dev);
  212. int error = 0;
  213. dev_dbg(dev, "%s\n", __func__);
  214. /* TODO: Add real matching code */
  215. /* The device should always appear to be in use
  216. * unless the driver supports autosuspend.
  217. */
  218. if (!udriver->supports_autosuspend)
  219. error = usb_autoresume_device(udev);
  220. if (!error)
  221. error = udriver->probe(udev);
  222. return error;
  223. }
  224. /* called from driver core with dev locked */
  225. static int usb_unbind_device(struct device *dev)
  226. {
  227. struct usb_device *udev = to_usb_device(dev);
  228. struct usb_device_driver *udriver = to_usb_device_driver(dev->driver);
  229. udriver->disconnect(udev);
  230. if (!udriver->supports_autosuspend)
  231. usb_autosuspend_device(udev);
  232. return 0;
  233. }
  234. /*
  235. * Cancel any pending scheduled resets
  236. *
  237. * [see usb_queue_reset_device()]
  238. *
  239. * Called after unconfiguring / when releasing interfaces. See
  240. * comments in __usb_queue_reset_device() regarding
  241. * udev->reset_running.
  242. */
  243. static void usb_cancel_queued_reset(struct usb_interface *iface)
  244. {
  245. if (iface->reset_running == 0)
  246. cancel_work_sync(&iface->reset_ws);
  247. }
  248. /* called from driver core with dev locked */
  249. static int usb_probe_interface(struct device *dev)
  250. {
  251. struct usb_driver *driver = to_usb_driver(dev->driver);
  252. struct usb_interface *intf = to_usb_interface(dev);
  253. struct usb_device *udev = interface_to_usbdev(intf);
  254. const struct usb_device_id *id;
  255. int error = -ENODEV;
  256. int lpm_disable_error;
  257. dev_dbg(dev, "%s\n", __func__);
  258. intf->needs_binding = 0;
  259. if (usb_device_is_owned(udev))
  260. return error;
  261. if (udev->authorized == 0) {
  262. dev_err(&intf->dev, "Device is not authorized for usage\n");
  263. return error;
  264. }
  265. id = usb_match_dynamic_id(intf, driver);
  266. if (!id)
  267. id = usb_match_id(intf, driver->id_table);
  268. if (!id)
  269. return error;
  270. dev_dbg(dev, "%s - got id\n", __func__);
  271. error = usb_autoresume_device(udev);
  272. if (error)
  273. return error;
  274. intf->condition = USB_INTERFACE_BINDING;
  275. /* Probed interfaces are initially active. They are
  276. * runtime-PM-enabled only if the driver has autosuspend support.
  277. * They are sensitive to their children's power states.
  278. */
  279. pm_runtime_set_active(dev);
  280. pm_suspend_ignore_children(dev, false);
  281. if (driver->supports_autosuspend)
  282. pm_runtime_enable(dev);
  283. /* If the new driver doesn't allow hub-initiated LPM, and we can't
  284. * disable hub-initiated LPM, then fail the probe.
  285. *
  286. * Otherwise, leaving LPM enabled should be harmless, because the
  287. * endpoint intervals should remain the same, and the U1/U2 timeouts
  288. * should remain the same.
  289. *
  290. * If we need to install alt setting 0 before probe, or another alt
  291. * setting during probe, that should also be fine. usb_set_interface()
  292. * will attempt to disable LPM, and fail if it can't disable it.
  293. */
  294. lpm_disable_error = usb_unlocked_disable_lpm(udev);
  295. if (lpm_disable_error && driver->disable_hub_initiated_lpm) {
  296. dev_err(&intf->dev, "%s Failed to disable LPM for driver %s\n.",
  297. __func__, driver->name);
  298. error = lpm_disable_error;
  299. goto err;
  300. }
  301. /* Carry out a deferred switch to altsetting 0 */
  302. if (intf->needs_altsetting0) {
  303. error = usb_set_interface(udev, intf->altsetting[0].
  304. desc.bInterfaceNumber, 0);
  305. if (error < 0)
  306. goto err;
  307. intf->needs_altsetting0 = 0;
  308. }
  309. error = driver->probe(intf, id);
  310. if (error)
  311. goto err;
  312. intf->condition = USB_INTERFACE_BOUND;
  313. /* If the LPM disable succeeded, balance the ref counts. */
  314. if (!lpm_disable_error)
  315. usb_unlocked_enable_lpm(udev);
  316. usb_autosuspend_device(udev);
  317. return error;
  318. err:
  319. usb_set_intfdata(intf, NULL);
  320. intf->needs_remote_wakeup = 0;
  321. intf->condition = USB_INTERFACE_UNBOUND;
  322. usb_cancel_queued_reset(intf);
  323. /* If the LPM disable succeeded, balance the ref counts. */
  324. if (!lpm_disable_error)
  325. usb_unlocked_enable_lpm(udev);
  326. /* Unbound interfaces are always runtime-PM-disabled and -suspended */
  327. if (driver->supports_autosuspend)
  328. pm_runtime_disable(dev);
  329. pm_runtime_set_suspended(dev);
  330. usb_autosuspend_device(udev);
  331. return error;
  332. }
  333. /* called from driver core with dev locked */
  334. static int usb_unbind_interface(struct device *dev)
  335. {
  336. struct usb_driver *driver = to_usb_driver(dev->driver);
  337. struct usb_interface *intf = to_usb_interface(dev);
  338. struct usb_host_endpoint *ep, **eps = NULL;
  339. struct usb_device *udev;
  340. int i, j, error, r, lpm_disable_error;
  341. intf->condition = USB_INTERFACE_UNBINDING;
  342. /* Autoresume for set_interface call below */
  343. udev = interface_to_usbdev(intf);
  344. error = usb_autoresume_device(udev);
  345. /* Hub-initiated LPM policy may change, so attempt to disable LPM until
  346. * the driver is unbound. If LPM isn't disabled, that's fine because it
  347. * wouldn't be enabled unless all the bound interfaces supported
  348. * hub-initiated LPM.
  349. */
  350. lpm_disable_error = usb_unlocked_disable_lpm(udev);
  351. /*
  352. * Terminate all URBs for this interface unless the driver
  353. * supports "soft" unbinding and the device is still present.
  354. */
  355. if (!driver->soft_unbind || udev->state == USB_STATE_NOTATTACHED)
  356. usb_disable_interface(udev, intf, false);
  357. driver->disconnect(intf);
  358. usb_cancel_queued_reset(intf);
  359. /* Free streams */
  360. for (i = 0, j = 0; i < intf->cur_altsetting->desc.bNumEndpoints; i++) {
  361. ep = &intf->cur_altsetting->endpoint[i];
  362. if (ep->streams == 0)
  363. continue;
  364. if (j == 0) {
  365. eps = kmalloc(USB_MAXENDPOINTS * sizeof(void *),
  366. GFP_KERNEL);
  367. if (!eps) {
  368. dev_warn(dev, "oom, leaking streams\n");
  369. break;
  370. }
  371. }
  372. eps[j++] = ep;
  373. }
  374. if (j) {
  375. usb_free_streams(intf, eps, j, GFP_KERNEL);
  376. kfree(eps);
  377. }
  378. /* Reset other interface state.
  379. * We cannot do a Set-Interface if the device is suspended or
  380. * if it is prepared for a system sleep (since installing a new
  381. * altsetting means creating new endpoint device entries).
  382. * When either of these happens, defer the Set-Interface.
  383. */
  384. if (intf->cur_altsetting->desc.bAlternateSetting == 0) {
  385. /* Already in altsetting 0 so skip Set-Interface.
  386. * Just re-enable it without affecting the endpoint toggles.
  387. */
  388. usb_enable_interface(udev, intf, false);
  389. } else if (!error && !intf->dev.power.is_prepared) {
  390. r = usb_set_interface(udev, intf->altsetting[0].
  391. desc.bInterfaceNumber, 0);
  392. if (r < 0)
  393. intf->needs_altsetting0 = 1;
  394. } else {
  395. intf->needs_altsetting0 = 1;
  396. }
  397. usb_set_intfdata(intf, NULL);
  398. intf->condition = USB_INTERFACE_UNBOUND;
  399. intf->needs_remote_wakeup = 0;
  400. /* Attempt to re-enable USB3 LPM, if the disable succeeded. */
  401. if (!lpm_disable_error)
  402. usb_unlocked_enable_lpm(udev);
  403. /* Unbound interfaces are always runtime-PM-disabled and -suspended */
  404. if (driver->supports_autosuspend)
  405. pm_runtime_disable(dev);
  406. pm_runtime_set_suspended(dev);
  407. /* Undo any residual pm_autopm_get_interface_* calls */
  408. for (r = atomic_read(&intf->pm_usage_cnt); r > 0; --r)
  409. usb_autopm_put_interface_no_suspend(intf);
  410. atomic_set(&intf->pm_usage_cnt, 0);
  411. if (!error)
  412. usb_autosuspend_device(udev);
  413. return 0;
  414. }
  415. /**
  416. * usb_driver_claim_interface - bind a driver to an interface
  417. * @driver: the driver to be bound
  418. * @iface: the interface to which it will be bound; must be in the
  419. * usb device's active configuration
  420. * @priv: driver data associated with that interface
  421. *
  422. * This is used by usb device drivers that need to claim more than one
  423. * interface on a device when probing (audio and acm are current examples).
  424. * No device driver should directly modify internal usb_interface or
  425. * usb_device structure members.
  426. *
  427. * Few drivers should need to use this routine, since the most natural
  428. * way to bind to an interface is to return the private data from
  429. * the driver's probe() method.
  430. *
  431. * Callers must own the device lock, so driver probe() entries don't need
  432. * extra locking, but other call contexts may need to explicitly claim that
  433. * lock.
  434. *
  435. * Return: 0 on success.
  436. */
  437. int usb_driver_claim_interface(struct usb_driver *driver,
  438. struct usb_interface *iface, void *priv)
  439. {
  440. struct device *dev = &iface->dev;
  441. struct usb_device *udev;
  442. int retval = 0;
  443. int lpm_disable_error;
  444. if (dev->driver)
  445. return -EBUSY;
  446. udev = interface_to_usbdev(iface);
  447. dev->driver = &driver->drvwrap.driver;
  448. usb_set_intfdata(iface, priv);
  449. iface->needs_binding = 0;
  450. iface->condition = USB_INTERFACE_BOUND;
  451. /* Disable LPM until this driver is bound. */
  452. lpm_disable_error = usb_unlocked_disable_lpm(udev);
  453. if (lpm_disable_error && driver->disable_hub_initiated_lpm) {
  454. dev_err(&iface->dev, "%s Failed to disable LPM for driver %s\n.",
  455. __func__, driver->name);
  456. return -ENOMEM;
  457. }
  458. /* Claimed interfaces are initially inactive (suspended) and
  459. * runtime-PM-enabled, but only if the driver has autosuspend
  460. * support. Otherwise they are marked active, to prevent the
  461. * device from being autosuspended, but left disabled. In either
  462. * case they are sensitive to their children's power states.
  463. */
  464. pm_suspend_ignore_children(dev, false);
  465. if (driver->supports_autosuspend)
  466. pm_runtime_enable(dev);
  467. else
  468. pm_runtime_set_active(dev);
  469. /* if interface was already added, bind now; else let
  470. * the future device_add() bind it, bypassing probe()
  471. */
  472. if (device_is_registered(dev))
  473. retval = device_bind_driver(dev);
  474. /* Attempt to re-enable USB3 LPM, if the disable was successful. */
  475. if (!lpm_disable_error)
  476. usb_unlocked_enable_lpm(udev);
  477. return retval;
  478. }
  479. EXPORT_SYMBOL_GPL(usb_driver_claim_interface);
  480. /**
  481. * usb_driver_release_interface - unbind a driver from an interface
  482. * @driver: the driver to be unbound
  483. * @iface: the interface from which it will be unbound
  484. *
  485. * This can be used by drivers to release an interface without waiting
  486. * for their disconnect() methods to be called. In typical cases this
  487. * also causes the driver disconnect() method to be called.
  488. *
  489. * This call is synchronous, and may not be used in an interrupt context.
  490. * Callers must own the device lock, so driver disconnect() entries don't
  491. * need extra locking, but other call contexts may need to explicitly claim
  492. * that lock.
  493. */
  494. void usb_driver_release_interface(struct usb_driver *driver,
  495. struct usb_interface *iface)
  496. {
  497. struct device *dev = &iface->dev;
  498. /* this should never happen, don't release something that's not ours */
  499. if (!dev->driver || dev->driver != &driver->drvwrap.driver)
  500. return;
  501. /* don't release from within disconnect() */
  502. if (iface->condition != USB_INTERFACE_BOUND)
  503. return;
  504. iface->condition = USB_INTERFACE_UNBINDING;
  505. /* Release via the driver core only if the interface
  506. * has already been registered
  507. */
  508. if (device_is_registered(dev)) {
  509. device_release_driver(dev);
  510. } else {
  511. device_lock(dev);
  512. usb_unbind_interface(dev);
  513. dev->driver = NULL;
  514. device_unlock(dev);
  515. }
  516. }
  517. EXPORT_SYMBOL_GPL(usb_driver_release_interface);
  518. /* returns 0 if no match, 1 if match */
  519. int usb_match_device(struct usb_device *dev, const struct usb_device_id *id)
  520. {
  521. if ((id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
  522. id->idVendor != le16_to_cpu(dev->descriptor.idVendor))
  523. return 0;
  524. if ((id->match_flags & USB_DEVICE_ID_MATCH_PRODUCT) &&
  525. id->idProduct != le16_to_cpu(dev->descriptor.idProduct))
  526. return 0;
  527. /* No need to test id->bcdDevice_lo != 0, since 0 is never
  528. greater than any unsigned number. */
  529. if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_LO) &&
  530. (id->bcdDevice_lo > le16_to_cpu(dev->descriptor.bcdDevice)))
  531. return 0;
  532. if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_HI) &&
  533. (id->bcdDevice_hi < le16_to_cpu(dev->descriptor.bcdDevice)))
  534. return 0;
  535. if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_CLASS) &&
  536. (id->bDeviceClass != dev->descriptor.bDeviceClass))
  537. return 0;
  538. if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_SUBCLASS) &&
  539. (id->bDeviceSubClass != dev->descriptor.bDeviceSubClass))
  540. return 0;
  541. if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_PROTOCOL) &&
  542. (id->bDeviceProtocol != dev->descriptor.bDeviceProtocol))
  543. return 0;
  544. return 1;
  545. }
  546. /* returns 0 if no match, 1 if match */
  547. int usb_match_one_id_intf(struct usb_device *dev,
  548. struct usb_host_interface *intf,
  549. const struct usb_device_id *id)
  550. {
  551. /* The interface class, subclass, protocol and number should never be
  552. * checked for a match if the device class is Vendor Specific,
  553. * unless the match record specifies the Vendor ID. */
  554. if (dev->descriptor.bDeviceClass == USB_CLASS_VENDOR_SPEC &&
  555. !(id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
  556. (id->match_flags & (USB_DEVICE_ID_MATCH_INT_CLASS |
  557. USB_DEVICE_ID_MATCH_INT_SUBCLASS |
  558. USB_DEVICE_ID_MATCH_INT_PROTOCOL |
  559. USB_DEVICE_ID_MATCH_INT_NUMBER)))
  560. return 0;
  561. if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_CLASS) &&
  562. (id->bInterfaceClass != intf->desc.bInterfaceClass))
  563. return 0;
  564. if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_SUBCLASS) &&
  565. (id->bInterfaceSubClass != intf->desc.bInterfaceSubClass))
  566. return 0;
  567. if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_PROTOCOL) &&
  568. (id->bInterfaceProtocol != intf->desc.bInterfaceProtocol))
  569. return 0;
  570. if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_NUMBER) &&
  571. (id->bInterfaceNumber != intf->desc.bInterfaceNumber))
  572. return 0;
  573. return 1;
  574. }
  575. /* returns 0 if no match, 1 if match */
  576. int usb_match_one_id(struct usb_interface *interface,
  577. const struct usb_device_id *id)
  578. {
  579. struct usb_host_interface *intf;
  580. struct usb_device *dev;
  581. /* proc_connectinfo in devio.c may call us with id == NULL. */
  582. if (id == NULL)
  583. return 0;
  584. intf = interface->cur_altsetting;
  585. dev = interface_to_usbdev(interface);
  586. if (!usb_match_device(dev, id))
  587. return 0;
  588. return usb_match_one_id_intf(dev, intf, id);
  589. }
  590. EXPORT_SYMBOL_GPL(usb_match_one_id);
  591. /**
  592. * usb_match_id - find first usb_device_id matching device or interface
  593. * @interface: the interface of interest
  594. * @id: array of usb_device_id structures, terminated by zero entry
  595. *
  596. * usb_match_id searches an array of usb_device_id's and returns
  597. * the first one matching the device or interface, or null.
  598. * This is used when binding (or rebinding) a driver to an interface.
  599. * Most USB device drivers will use this indirectly, through the usb core,
  600. * but some layered driver frameworks use it directly.
  601. * These device tables are exported with MODULE_DEVICE_TABLE, through
  602. * modutils, to support the driver loading functionality of USB hotplugging.
  603. *
  604. * Return: The first matching usb_device_id, or %NULL.
  605. *
  606. * What Matches:
  607. *
  608. * The "match_flags" element in a usb_device_id controls which
  609. * members are used. If the corresponding bit is set, the
  610. * value in the device_id must match its corresponding member
  611. * in the device or interface descriptor, or else the device_id
  612. * does not match.
  613. *
  614. * "driver_info" is normally used only by device drivers,
  615. * but you can create a wildcard "matches anything" usb_device_id
  616. * as a driver's "modules.usbmap" entry if you provide an id with
  617. * only a nonzero "driver_info" field. If you do this, the USB device
  618. * driver's probe() routine should use additional intelligence to
  619. * decide whether to bind to the specified interface.
  620. *
  621. * What Makes Good usb_device_id Tables:
  622. *
  623. * The match algorithm is very simple, so that intelligence in
  624. * driver selection must come from smart driver id records.
  625. * Unless you have good reasons to use another selection policy,
  626. * provide match elements only in related groups, and order match
  627. * specifiers from specific to general. Use the macros provided
  628. * for that purpose if you can.
  629. *
  630. * The most specific match specifiers use device descriptor
  631. * data. These are commonly used with product-specific matches;
  632. * the USB_DEVICE macro lets you provide vendor and product IDs,
  633. * and you can also match against ranges of product revisions.
  634. * These are widely used for devices with application or vendor
  635. * specific bDeviceClass values.
  636. *
  637. * Matches based on device class/subclass/protocol specifications
  638. * are slightly more general; use the USB_DEVICE_INFO macro, or
  639. * its siblings. These are used with single-function devices
  640. * where bDeviceClass doesn't specify that each interface has
  641. * its own class.
  642. *
  643. * Matches based on interface class/subclass/protocol are the
  644. * most general; they let drivers bind to any interface on a
  645. * multiple-function device. Use the USB_INTERFACE_INFO
  646. * macro, or its siblings, to match class-per-interface style
  647. * devices (as recorded in bInterfaceClass).
  648. *
  649. * Note that an entry created by USB_INTERFACE_INFO won't match
  650. * any interface if the device class is set to Vendor-Specific.
  651. * This is deliberate; according to the USB spec the meanings of
  652. * the interface class/subclass/protocol for these devices are also
  653. * vendor-specific, and hence matching against a standard product
  654. * class wouldn't work anyway. If you really want to use an
  655. * interface-based match for such a device, create a match record
  656. * that also specifies the vendor ID. (Unforunately there isn't a
  657. * standard macro for creating records like this.)
  658. *
  659. * Within those groups, remember that not all combinations are
  660. * meaningful. For example, don't give a product version range
  661. * without vendor and product IDs; or specify a protocol without
  662. * its associated class and subclass.
  663. */
  664. const struct usb_device_id *usb_match_id(struct usb_interface *interface,
  665. const struct usb_device_id *id)
  666. {
  667. /* proc_connectinfo in devio.c may call us with id == NULL. */
  668. if (id == NULL)
  669. return NULL;
  670. /* It is important to check that id->driver_info is nonzero,
  671. since an entry that is all zeroes except for a nonzero
  672. id->driver_info is the way to create an entry that
  673. indicates that the driver want to examine every
  674. device and interface. */
  675. for (; id->idVendor || id->idProduct || id->bDeviceClass ||
  676. id->bInterfaceClass || id->driver_info; id++) {
  677. if (usb_match_one_id(interface, id))
  678. return id;
  679. }
  680. return NULL;
  681. }
  682. EXPORT_SYMBOL_GPL(usb_match_id);
  683. static int usb_device_match(struct device *dev, struct device_driver *drv)
  684. {
  685. /* devices and interfaces are handled separately */
  686. if (is_usb_device(dev)) {
  687. /* interface drivers never match devices */
  688. if (!is_usb_device_driver(drv))
  689. return 0;
  690. /* TODO: Add real matching code */
  691. return 1;
  692. } else if (is_usb_interface(dev)) {
  693. struct usb_interface *intf;
  694. struct usb_driver *usb_drv;
  695. const struct usb_device_id *id;
  696. /* device drivers never match interfaces */
  697. if (is_usb_device_driver(drv))
  698. return 0;
  699. intf = to_usb_interface(dev);
  700. usb_drv = to_usb_driver(drv);
  701. id = usb_match_id(intf, usb_drv->id_table);
  702. if (id)
  703. return 1;
  704. id = usb_match_dynamic_id(intf, usb_drv);
  705. if (id)
  706. return 1;
  707. }
  708. return 0;
  709. }
  710. static int usb_uevent(struct device *dev, struct kobj_uevent_env *env)
  711. {
  712. struct usb_device *usb_dev;
  713. if (is_usb_device(dev)) {
  714. usb_dev = to_usb_device(dev);
  715. } else if (is_usb_interface(dev)) {
  716. struct usb_interface *intf = to_usb_interface(dev);
  717. usb_dev = interface_to_usbdev(intf);
  718. } else {
  719. return 0;
  720. }
  721. if (usb_dev->devnum < 0) {
  722. /* driver is often null here; dev_dbg() would oops */
  723. pr_debug("usb %s: already deleted?\n", dev_name(dev));
  724. return -ENODEV;
  725. }
  726. if (!usb_dev->bus) {
  727. pr_debug("usb %s: bus removed?\n", dev_name(dev));
  728. return -ENODEV;
  729. }
  730. /* per-device configurations are common */
  731. if (add_uevent_var(env, "PRODUCT=%x/%x/%x",
  732. le16_to_cpu(usb_dev->descriptor.idVendor),
  733. le16_to_cpu(usb_dev->descriptor.idProduct),
  734. le16_to_cpu(usb_dev->descriptor.bcdDevice)))
  735. return -ENOMEM;
  736. /* class-based driver binding models */
  737. if (add_uevent_var(env, "TYPE=%d/%d/%d",
  738. usb_dev->descriptor.bDeviceClass,
  739. usb_dev->descriptor.bDeviceSubClass,
  740. usb_dev->descriptor.bDeviceProtocol))
  741. return -ENOMEM;
  742. return 0;
  743. }
  744. /**
  745. * usb_register_device_driver - register a USB device (not interface) driver
  746. * @new_udriver: USB operations for the device driver
  747. * @owner: module owner of this driver.
  748. *
  749. * Registers a USB device driver with the USB core. The list of
  750. * unattached devices will be rescanned whenever a new driver is
  751. * added, allowing the new driver to attach to any recognized devices.
  752. *
  753. * Return: A negative error code on failure and 0 on success.
  754. */
  755. int usb_register_device_driver(struct usb_device_driver *new_udriver,
  756. struct module *owner)
  757. {
  758. int retval = 0;
  759. if (usb_disabled())
  760. return -ENODEV;
  761. new_udriver->drvwrap.for_devices = 1;
  762. new_udriver->drvwrap.driver.name = new_udriver->name;
  763. new_udriver->drvwrap.driver.bus = &usb_bus_type;
  764. new_udriver->drvwrap.driver.probe = usb_probe_device;
  765. new_udriver->drvwrap.driver.remove = usb_unbind_device;
  766. new_udriver->drvwrap.driver.owner = owner;
  767. retval = driver_register(&new_udriver->drvwrap.driver);
  768. if (!retval)
  769. pr_info("%s: registered new device driver %s\n",
  770. usbcore_name, new_udriver->name);
  771. else
  772. printk(KERN_ERR "%s: error %d registering device "
  773. " driver %s\n",
  774. usbcore_name, retval, new_udriver->name);
  775. return retval;
  776. }
  777. EXPORT_SYMBOL_GPL(usb_register_device_driver);
  778. /**
  779. * usb_deregister_device_driver - unregister a USB device (not interface) driver
  780. * @udriver: USB operations of the device driver to unregister
  781. * Context: must be able to sleep
  782. *
  783. * Unlinks the specified driver from the internal USB driver list.
  784. */
  785. void usb_deregister_device_driver(struct usb_device_driver *udriver)
  786. {
  787. pr_info("%s: deregistering device driver %s\n",
  788. usbcore_name, udriver->name);
  789. driver_unregister(&udriver->drvwrap.driver);
  790. }
  791. EXPORT_SYMBOL_GPL(usb_deregister_device_driver);
  792. /**
  793. * usb_register_driver - register a USB interface driver
  794. * @new_driver: USB operations for the interface driver
  795. * @owner: module owner of this driver.
  796. * @mod_name: module name string
  797. *
  798. * Registers a USB interface driver with the USB core. The list of
  799. * unattached interfaces will be rescanned whenever a new driver is
  800. * added, allowing the new driver to attach to any recognized interfaces.
  801. *
  802. * Return: A negative error code on failure and 0 on success.
  803. *
  804. * NOTE: if you want your driver to use the USB major number, you must call
  805. * usb_register_dev() to enable that functionality. This function no longer
  806. * takes care of that.
  807. */
  808. int usb_register_driver(struct usb_driver *new_driver, struct module *owner,
  809. const char *mod_name)
  810. {
  811. int retval = 0;
  812. if (usb_disabled())
  813. return -ENODEV;
  814. new_driver->drvwrap.for_devices = 0;
  815. new_driver->drvwrap.driver.name = new_driver->name;
  816. new_driver->drvwrap.driver.bus = &usb_bus_type;
  817. new_driver->drvwrap.driver.probe = usb_probe_interface;
  818. new_driver->drvwrap.driver.remove = usb_unbind_interface;
  819. new_driver->drvwrap.driver.owner = owner;
  820. new_driver->drvwrap.driver.mod_name = mod_name;
  821. spin_lock_init(&new_driver->dynids.lock);
  822. INIT_LIST_HEAD(&new_driver->dynids.list);
  823. retval = driver_register(&new_driver->drvwrap.driver);
  824. if (retval)
  825. goto out;
  826. retval = usb_create_newid_files(new_driver);
  827. if (retval)
  828. goto out_newid;
  829. pr_info("%s: registered new interface driver %s\n",
  830. usbcore_name, new_driver->name);
  831. out:
  832. return retval;
  833. out_newid:
  834. driver_unregister(&new_driver->drvwrap.driver);
  835. printk(KERN_ERR "%s: error %d registering interface "
  836. " driver %s\n",
  837. usbcore_name, retval, new_driver->name);
  838. goto out;
  839. }
  840. EXPORT_SYMBOL_GPL(usb_register_driver);
  841. /**
  842. * usb_deregister - unregister a USB interface driver
  843. * @driver: USB operations of the interface driver to unregister
  844. * Context: must be able to sleep
  845. *
  846. * Unlinks the specified driver from the internal USB driver list.
  847. *
  848. * NOTE: If you called usb_register_dev(), you still need to call
  849. * usb_deregister_dev() to clean up your driver's allocated minor numbers,
  850. * this * call will no longer do it for you.
  851. */
  852. void usb_deregister(struct usb_driver *driver)
  853. {
  854. pr_info("%s: deregistering interface driver %s\n",
  855. usbcore_name, driver->name);
  856. usb_remove_newid_files(driver);
  857. driver_unregister(&driver->drvwrap.driver);
  858. usb_free_dynids(driver);
  859. }
  860. EXPORT_SYMBOL_GPL(usb_deregister);
  861. /* Forced unbinding of a USB interface driver, either because
  862. * it doesn't support pre_reset/post_reset/reset_resume or
  863. * because it doesn't support suspend/resume.
  864. *
  865. * The caller must hold @intf's device's lock, but not @intf's lock.
  866. */
  867. void usb_forced_unbind_intf(struct usb_interface *intf)
  868. {
  869. struct usb_driver *driver = to_usb_driver(intf->dev.driver);
  870. dev_dbg(&intf->dev, "forced unbind\n");
  871. usb_driver_release_interface(driver, intf);
  872. /* Mark the interface for later rebinding */
  873. intf->needs_binding = 1;
  874. }
  875. /*
  876. * Unbind drivers for @udev's marked interfaces. These interfaces have
  877. * the needs_binding flag set, for example by usb_resume_interface().
  878. *
  879. * The caller must hold @udev's device lock.
  880. */
  881. static void unbind_marked_interfaces(struct usb_device *udev)
  882. {
  883. struct usb_host_config *config;
  884. int i;
  885. struct usb_interface *intf;
  886. config = udev->actconfig;
  887. if (config) {
  888. for (i = 0; i < config->desc.bNumInterfaces; ++i) {
  889. intf = config->interface[i];
  890. if (intf->dev.driver && intf->needs_binding)
  891. usb_forced_unbind_intf(intf);
  892. }
  893. }
  894. }
  895. /* Delayed forced unbinding of a USB interface driver and scan
  896. * for rebinding.
  897. *
  898. * The caller must hold @intf's device's lock, but not @intf's lock.
  899. *
  900. * Note: Rebinds will be skipped if a system sleep transition is in
  901. * progress and the PM "complete" callback hasn't occurred yet.
  902. */
  903. static void usb_rebind_intf(struct usb_interface *intf)
  904. {
  905. int rc;
  906. /* Delayed unbind of an existing driver */
  907. if (intf->dev.driver)
  908. usb_forced_unbind_intf(intf);
  909. /* Try to rebind the interface */
  910. if (!intf->dev.power.is_prepared) {
  911. intf->needs_binding = 0;
  912. rc = device_attach(&intf->dev);
  913. if (rc < 0)
  914. dev_warn(&intf->dev, "rebind failed: %d\n", rc);
  915. }
  916. }
  917. /*
  918. * Rebind drivers to @udev's marked interfaces. These interfaces have
  919. * the needs_binding flag set.
  920. *
  921. * The caller must hold @udev's device lock.
  922. */
  923. static void rebind_marked_interfaces(struct usb_device *udev)
  924. {
  925. struct usb_host_config *config;
  926. int i;
  927. struct usb_interface *intf;
  928. config = udev->actconfig;
  929. if (config) {
  930. for (i = 0; i < config->desc.bNumInterfaces; ++i) {
  931. intf = config->interface[i];
  932. if (intf->needs_binding)
  933. usb_rebind_intf(intf);
  934. }
  935. }
  936. }
  937. /*
  938. * Unbind all of @udev's marked interfaces and then rebind all of them.
  939. * This ordering is necessary because some drivers claim several interfaces
  940. * when they are first probed.
  941. *
  942. * The caller must hold @udev's device lock.
  943. */
  944. void usb_unbind_and_rebind_marked_interfaces(struct usb_device *udev)
  945. {
  946. unbind_marked_interfaces(udev);
  947. rebind_marked_interfaces(udev);
  948. }
  949. #ifdef CONFIG_PM
  950. /* Unbind drivers for @udev's interfaces that don't support suspend/resume
  951. * There is no check for reset_resume here because it can be determined
  952. * only during resume whether reset_resume is needed.
  953. *
  954. * The caller must hold @udev's device lock.
  955. */
  956. static void unbind_no_pm_drivers_interfaces(struct usb_device *udev)
  957. {
  958. struct usb_host_config *config;
  959. int i;
  960. struct usb_interface *intf;
  961. struct usb_driver *drv;
  962. config = udev->actconfig;
  963. if (config) {
  964. for (i = 0; i < config->desc.bNumInterfaces; ++i) {
  965. intf = config->interface[i];
  966. if (intf->dev.driver) {
  967. drv = to_usb_driver(intf->dev.driver);
  968. if (!drv->suspend || !drv->resume)
  969. usb_forced_unbind_intf(intf);
  970. }
  971. }
  972. }
  973. }
  974. static int usb_suspend_device(struct usb_device *udev, pm_message_t msg)
  975. {
  976. struct usb_device_driver *udriver;
  977. int status = 0;
  978. if (udev->state == USB_STATE_NOTATTACHED ||
  979. udev->state == USB_STATE_SUSPENDED)
  980. goto done;
  981. /* For devices that don't have a driver, we do a generic suspend. */
  982. if (udev->dev.driver)
  983. udriver = to_usb_device_driver(udev->dev.driver);
  984. else {
  985. udev->do_remote_wakeup = 0;
  986. udriver = &usb_generic_driver;
  987. }
  988. status = udriver->suspend(udev, msg);
  989. done:
  990. dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
  991. return status;
  992. }
  993. static int usb_resume_device(struct usb_device *udev, pm_message_t msg)
  994. {
  995. struct usb_device_driver *udriver;
  996. int status = 0;
  997. if (udev->state == USB_STATE_NOTATTACHED)
  998. goto done;
  999. /* Can't resume it if it doesn't have a driver. */
  1000. if (udev->dev.driver == NULL) {
  1001. status = -ENOTCONN;
  1002. goto done;
  1003. }
  1004. /* Non-root devices on a full/low-speed bus must wait for their
  1005. * companion high-speed root hub, in case a handoff is needed.
  1006. */
  1007. if (!PMSG_IS_AUTO(msg) && udev->parent && udev->bus->hs_companion)
  1008. device_pm_wait_for_dev(&udev->dev,
  1009. &udev->bus->hs_companion->root_hub->dev);
  1010. if (udev->quirks & USB_QUIRK_RESET_RESUME)
  1011. udev->reset_resume = 1;
  1012. udriver = to_usb_device_driver(udev->dev.driver);
  1013. status = udriver->resume(udev, msg);
  1014. done:
  1015. dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
  1016. return status;
  1017. }
  1018. static int usb_suspend_interface(struct usb_device *udev,
  1019. struct usb_interface *intf, pm_message_t msg)
  1020. {
  1021. struct usb_driver *driver;
  1022. int status = 0;
  1023. if (udev->state == USB_STATE_NOTATTACHED ||
  1024. intf->condition == USB_INTERFACE_UNBOUND)
  1025. goto done;
  1026. driver = to_usb_driver(intf->dev.driver);
  1027. /* at this time we know the driver supports suspend */
  1028. status = driver->suspend(intf, msg);
  1029. if (status && !PMSG_IS_AUTO(msg))
  1030. dev_err(&intf->dev, "suspend error %d\n", status);
  1031. done:
  1032. dev_vdbg(&intf->dev, "%s: status %d\n", __func__, status);
  1033. return status;
  1034. }
  1035. static int usb_resume_interface(struct usb_device *udev,
  1036. struct usb_interface *intf, pm_message_t msg, int reset_resume)
  1037. {
  1038. struct usb_driver *driver;
  1039. int status = 0;
  1040. if (udev->state == USB_STATE_NOTATTACHED)
  1041. goto done;
  1042. /* Don't let autoresume interfere with unbinding */
  1043. if (intf->condition == USB_INTERFACE_UNBINDING)
  1044. goto done;
  1045. /* Can't resume it if it doesn't have a driver. */
  1046. if (intf->condition == USB_INTERFACE_UNBOUND) {
  1047. /* Carry out a deferred switch to altsetting 0 */
  1048. if (intf->needs_altsetting0 && !intf->dev.power.is_prepared) {
  1049. usb_set_interface(udev, intf->altsetting[0].
  1050. desc.bInterfaceNumber, 0);
  1051. intf->needs_altsetting0 = 0;
  1052. }
  1053. goto done;
  1054. }
  1055. /* Don't resume if the interface is marked for rebinding */
  1056. if (intf->needs_binding)
  1057. goto done;
  1058. driver = to_usb_driver(intf->dev.driver);
  1059. if (reset_resume) {
  1060. if (driver->reset_resume) {
  1061. status = driver->reset_resume(intf);
  1062. if (status)
  1063. dev_err(&intf->dev, "%s error %d\n",
  1064. "reset_resume", status);
  1065. } else {
  1066. intf->needs_binding = 1;
  1067. dev_dbg(&intf->dev, "no reset_resume for driver %s?\n",
  1068. driver->name);
  1069. }
  1070. } else {
  1071. status = driver->resume(intf);
  1072. if (status)
  1073. dev_err(&intf->dev, "resume error %d\n", status);
  1074. }
  1075. done:
  1076. dev_vdbg(&intf->dev, "%s: status %d\n", __func__, status);
  1077. /* Later we will unbind the driver and/or reprobe, if necessary */
  1078. return status;
  1079. }
  1080. /**
  1081. * usb_suspend_both - suspend a USB device and its interfaces
  1082. * @udev: the usb_device to suspend
  1083. * @msg: Power Management message describing this state transition
  1084. *
  1085. * This is the central routine for suspending USB devices. It calls the
  1086. * suspend methods for all the interface drivers in @udev and then calls
  1087. * the suspend method for @udev itself. When the routine is called in
  1088. * autosuspend, if an error occurs at any stage, all the interfaces
  1089. * which were suspended are resumed so that they remain in the same
  1090. * state as the device, but when called from system sleep, all error
  1091. * from suspend methods of interfaces and the non-root-hub device itself
  1092. * are simply ignored, so all suspended interfaces are only resumed
  1093. * to the device's state when @udev is root-hub and its suspend method
  1094. * returns failure.
  1095. *
  1096. * Autosuspend requests originating from a child device or an interface
  1097. * driver may be made without the protection of @udev's device lock, but
  1098. * all other suspend calls will hold the lock. Usbcore will insure that
  1099. * method calls do not arrive during bind, unbind, or reset operations.
  1100. * However drivers must be prepared to handle suspend calls arriving at
  1101. * unpredictable times.
  1102. *
  1103. * This routine can run only in process context.
  1104. *
  1105. * Return: 0 if the suspend succeeded.
  1106. */
  1107. static int usb_suspend_both(struct usb_device *udev, pm_message_t msg)
  1108. {
  1109. int status = 0;
  1110. int i = 0, n = 0;
  1111. struct usb_interface *intf;
  1112. if (udev->state == USB_STATE_NOTATTACHED ||
  1113. udev->state == USB_STATE_SUSPENDED)
  1114. goto done;
  1115. /* Suspend all the interfaces and then udev itself */
  1116. if (udev->actconfig) {
  1117. n = udev->actconfig->desc.bNumInterfaces;
  1118. for (i = n - 1; i >= 0; --i) {
  1119. intf = udev->actconfig->interface[i];
  1120. status = usb_suspend_interface(udev, intf, msg);
  1121. /* Ignore errors during system sleep transitions */
  1122. if (!PMSG_IS_AUTO(msg))
  1123. status = 0;
  1124. if (status != 0)
  1125. break;
  1126. }
  1127. }
  1128. if (status == 0) {
  1129. status = usb_suspend_device(udev, msg);
  1130. /*
  1131. * Ignore errors from non-root-hub devices during
  1132. * system sleep transitions. For the most part,
  1133. * these devices should go to low power anyway when
  1134. * the entire bus is suspended.
  1135. */
  1136. if (udev->parent && !PMSG_IS_AUTO(msg))
  1137. status = 0;
  1138. }
  1139. /* If the suspend failed, resume interfaces that did get suspended */
  1140. if (status != 0) {
  1141. if (udev->actconfig) {
  1142. msg.event ^= (PM_EVENT_SUSPEND | PM_EVENT_RESUME);
  1143. while (++i < n) {
  1144. intf = udev->actconfig->interface[i];
  1145. usb_resume_interface(udev, intf, msg, 0);
  1146. }
  1147. }
  1148. /* If the suspend succeeded then prevent any more URB submissions
  1149. * and flush any outstanding URBs.
  1150. */
  1151. } else {
  1152. udev->can_submit = 0;
  1153. for (i = 0; i < 16; ++i) {
  1154. usb_hcd_flush_endpoint(udev, udev->ep_out[i]);
  1155. usb_hcd_flush_endpoint(udev, udev->ep_in[i]);
  1156. }
  1157. }
  1158. done:
  1159. dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
  1160. return status;
  1161. }
  1162. /**
  1163. * usb_resume_both - resume a USB device and its interfaces
  1164. * @udev: the usb_device to resume
  1165. * @msg: Power Management message describing this state transition
  1166. *
  1167. * This is the central routine for resuming USB devices. It calls the
  1168. * the resume method for @udev and then calls the resume methods for all
  1169. * the interface drivers in @udev.
  1170. *
  1171. * Autoresume requests originating from a child device or an interface
  1172. * driver may be made without the protection of @udev's device lock, but
  1173. * all other resume calls will hold the lock. Usbcore will insure that
  1174. * method calls do not arrive during bind, unbind, or reset operations.
  1175. * However drivers must be prepared to handle resume calls arriving at
  1176. * unpredictable times.
  1177. *
  1178. * This routine can run only in process context.
  1179. *
  1180. * Return: 0 on success.
  1181. */
  1182. static int usb_resume_both(struct usb_device *udev, pm_message_t msg)
  1183. {
  1184. int status = 0;
  1185. int i;
  1186. struct usb_interface *intf;
  1187. if (udev->state == USB_STATE_NOTATTACHED) {
  1188. status = -ENODEV;
  1189. goto done;
  1190. }
  1191. udev->can_submit = 1;
  1192. /* Resume the device */
  1193. if (udev->state == USB_STATE_SUSPENDED || udev->reset_resume)
  1194. status = usb_resume_device(udev, msg);
  1195. /* Resume the interfaces */
  1196. if (status == 0 && udev->actconfig) {
  1197. for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
  1198. intf = udev->actconfig->interface[i];
  1199. usb_resume_interface(udev, intf, msg,
  1200. udev->reset_resume);
  1201. }
  1202. }
  1203. usb_mark_last_busy(udev);
  1204. done:
  1205. dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
  1206. if (!status)
  1207. udev->reset_resume = 0;
  1208. return status;
  1209. }
  1210. static void choose_wakeup(struct usb_device *udev, pm_message_t msg)
  1211. {
  1212. int w;
  1213. /* Remote wakeup is needed only when we actually go to sleep.
  1214. * For things like FREEZE and QUIESCE, if the device is already
  1215. * autosuspended then its current wakeup setting is okay.
  1216. */
  1217. if (msg.event == PM_EVENT_FREEZE || msg.event == PM_EVENT_QUIESCE) {
  1218. if (udev->state != USB_STATE_SUSPENDED)
  1219. udev->do_remote_wakeup = 0;
  1220. return;
  1221. }
  1222. /* Enable remote wakeup if it is allowed, even if no interface drivers
  1223. * actually want it.
  1224. */
  1225. w = device_may_wakeup(&udev->dev);
  1226. /* If the device is autosuspended with the wrong wakeup setting,
  1227. * autoresume now so the setting can be changed.
  1228. */
  1229. if (udev->state == USB_STATE_SUSPENDED && w != udev->do_remote_wakeup)
  1230. pm_runtime_resume(&udev->dev);
  1231. udev->do_remote_wakeup = w;
  1232. }
  1233. /* The device lock is held by the PM core */
  1234. int usb_suspend(struct device *dev, pm_message_t msg)
  1235. {
  1236. struct usb_device *udev = to_usb_device(dev);
  1237. unbind_no_pm_drivers_interfaces(udev);
  1238. /* From now on we are sure all drivers support suspend/resume
  1239. * but not necessarily reset_resume()
  1240. * so we may still need to unbind and rebind upon resume
  1241. */
  1242. choose_wakeup(udev, msg);
  1243. return usb_suspend_both(udev, msg);
  1244. }
  1245. /* The device lock is held by the PM core */
  1246. int usb_resume_complete(struct device *dev)
  1247. {
  1248. struct usb_device *udev = to_usb_device(dev);
  1249. /* For PM complete calls, all we do is rebind interfaces
  1250. * whose needs_binding flag is set
  1251. */
  1252. if (udev->state != USB_STATE_NOTATTACHED)
  1253. rebind_marked_interfaces(udev);
  1254. return 0;
  1255. }
  1256. /* The device lock is held by the PM core */
  1257. int usb_resume(struct device *dev, pm_message_t msg)
  1258. {
  1259. struct usb_device *udev = to_usb_device(dev);
  1260. int status;
  1261. /* For all calls, take the device back to full power and
  1262. * tell the PM core in case it was autosuspended previously.
  1263. * Unbind the interfaces that will need rebinding later,
  1264. * because they fail to support reset_resume.
  1265. * (This can't be done in usb_resume_interface()
  1266. * above because it doesn't own the right set of locks.)
  1267. */
  1268. status = usb_resume_both(udev, msg);
  1269. if (status == 0) {
  1270. pm_runtime_disable(dev);
  1271. pm_runtime_set_active(dev);
  1272. pm_runtime_enable(dev);
  1273. unbind_marked_interfaces(udev);
  1274. }
  1275. /* Avoid PM error messages for devices disconnected while suspended
  1276. * as we'll display regular disconnect messages just a bit later.
  1277. */
  1278. if (status == -ENODEV || status == -ESHUTDOWN)
  1279. status = 0;
  1280. return status;
  1281. }
  1282. /**
  1283. * usb_enable_autosuspend - allow a USB device to be autosuspended
  1284. * @udev: the USB device which may be autosuspended
  1285. *
  1286. * This routine allows @udev to be autosuspended. An autosuspend won't
  1287. * take place until the autosuspend_delay has elapsed and all the other
  1288. * necessary conditions are satisfied.
  1289. *
  1290. * The caller must hold @udev's device lock.
  1291. */
  1292. void usb_enable_autosuspend(struct usb_device *udev)
  1293. {
  1294. pm_runtime_allow(&udev->dev);
  1295. }
  1296. EXPORT_SYMBOL_GPL(usb_enable_autosuspend);
  1297. /**
  1298. * usb_disable_autosuspend - prevent a USB device from being autosuspended
  1299. * @udev: the USB device which may not be autosuspended
  1300. *
  1301. * This routine prevents @udev from being autosuspended and wakes it up
  1302. * if it is already autosuspended.
  1303. *
  1304. * The caller must hold @udev's device lock.
  1305. */
  1306. void usb_disable_autosuspend(struct usb_device *udev)
  1307. {
  1308. pm_runtime_forbid(&udev->dev);
  1309. }
  1310. EXPORT_SYMBOL_GPL(usb_disable_autosuspend);
  1311. /**
  1312. * usb_autosuspend_device - delayed autosuspend of a USB device and its interfaces
  1313. * @udev: the usb_device to autosuspend
  1314. *
  1315. * This routine should be called when a core subsystem is finished using
  1316. * @udev and wants to allow it to autosuspend. Examples would be when
  1317. * @udev's device file in usbfs is closed or after a configuration change.
  1318. *
  1319. * @udev's usage counter is decremented; if it drops to 0 and all the
  1320. * interfaces are inactive then a delayed autosuspend will be attempted.
  1321. * The attempt may fail (see autosuspend_check()).
  1322. *
  1323. * The caller must hold @udev's device lock.
  1324. *
  1325. * This routine can run only in process context.
  1326. */
  1327. void usb_autosuspend_device(struct usb_device *udev)
  1328. {
  1329. int status;
  1330. usb_mark_last_busy(udev);
  1331. status = pm_runtime_put_sync_autosuspend(&udev->dev);
  1332. dev_vdbg(&udev->dev, "%s: cnt %d -> %d\n",
  1333. __func__, atomic_read(&udev->dev.power.usage_count),
  1334. status);
  1335. }
  1336. /**
  1337. * usb_autoresume_device - immediately autoresume a USB device and its interfaces
  1338. * @udev: the usb_device to autoresume
  1339. *
  1340. * This routine should be called when a core subsystem wants to use @udev
  1341. * and needs to guarantee that it is not suspended. No autosuspend will
  1342. * occur until usb_autosuspend_device() is called. (Note that this will
  1343. * not prevent suspend events originating in the PM core.) Examples would
  1344. * be when @udev's device file in usbfs is opened or when a remote-wakeup
  1345. * request is received.
  1346. *
  1347. * @udev's usage counter is incremented to prevent subsequent autosuspends.
  1348. * However if the autoresume fails then the usage counter is re-decremented.
  1349. *
  1350. * The caller must hold @udev's device lock.
  1351. *
  1352. * This routine can run only in process context.
  1353. *
  1354. * Return: 0 on success. A negative error code otherwise.
  1355. */
  1356. int usb_autoresume_device(struct usb_device *udev)
  1357. {
  1358. int status;
  1359. status = pm_runtime_get_sync(&udev->dev);
  1360. if (status < 0)
  1361. pm_runtime_put_sync(&udev->dev);
  1362. dev_vdbg(&udev->dev, "%s: cnt %d -> %d\n",
  1363. __func__, atomic_read(&udev->dev.power.usage_count),
  1364. status);
  1365. if (status > 0)
  1366. status = 0;
  1367. return status;
  1368. }
  1369. /**
  1370. * usb_autopm_put_interface - decrement a USB interface's PM-usage counter
  1371. * @intf: the usb_interface whose counter should be decremented
  1372. *
  1373. * This routine should be called by an interface driver when it is
  1374. * finished using @intf and wants to allow it to autosuspend. A typical
  1375. * example would be a character-device driver when its device file is
  1376. * closed.
  1377. *
  1378. * The routine decrements @intf's usage counter. When the counter reaches
  1379. * 0, a delayed autosuspend request for @intf's device is attempted. The
  1380. * attempt may fail (see autosuspend_check()).
  1381. *
  1382. * This routine can run only in process context.
  1383. */
  1384. void usb_autopm_put_interface(struct usb_interface *intf)
  1385. {
  1386. struct usb_device *udev = interface_to_usbdev(intf);
  1387. int status;
  1388. usb_mark_last_busy(udev);
  1389. atomic_dec(&intf->pm_usage_cnt);
  1390. status = pm_runtime_put_sync(&intf->dev);
  1391. dev_vdbg(&intf->dev, "%s: cnt %d -> %d\n",
  1392. __func__, atomic_read(&intf->dev.power.usage_count),
  1393. status);
  1394. }
  1395. EXPORT_SYMBOL_GPL(usb_autopm_put_interface);
  1396. /**
  1397. * usb_autopm_put_interface_async - decrement a USB interface's PM-usage counter
  1398. * @intf: the usb_interface whose counter should be decremented
  1399. *
  1400. * This routine does much the same thing as usb_autopm_put_interface():
  1401. * It decrements @intf's usage counter and schedules a delayed
  1402. * autosuspend request if the counter is <= 0. The difference is that it
  1403. * does not perform any synchronization; callers should hold a private
  1404. * lock and handle all synchronization issues themselves.
  1405. *
  1406. * Typically a driver would call this routine during an URB's completion
  1407. * handler, if no more URBs were pending.
  1408. *
  1409. * This routine can run in atomic context.
  1410. */
  1411. void usb_autopm_put_interface_async(struct usb_interface *intf)
  1412. {
  1413. struct usb_device *udev = interface_to_usbdev(intf);
  1414. int status;
  1415. usb_mark_last_busy(udev);
  1416. atomic_dec(&intf->pm_usage_cnt);
  1417. status = pm_runtime_put(&intf->dev);
  1418. dev_vdbg(&intf->dev, "%s: cnt %d -> %d\n",
  1419. __func__, atomic_read(&intf->dev.power.usage_count),
  1420. status);
  1421. }
  1422. EXPORT_SYMBOL_GPL(usb_autopm_put_interface_async);
  1423. /**
  1424. * usb_autopm_put_interface_no_suspend - decrement a USB interface's PM-usage counter
  1425. * @intf: the usb_interface whose counter should be decremented
  1426. *
  1427. * This routine decrements @intf's usage counter but does not carry out an
  1428. * autosuspend.
  1429. *
  1430. * This routine can run in atomic context.
  1431. */
  1432. void usb_autopm_put_interface_no_suspend(struct usb_interface *intf)
  1433. {
  1434. struct usb_device *udev = interface_to_usbdev(intf);
  1435. usb_mark_last_busy(udev);
  1436. atomic_dec(&intf->pm_usage_cnt);
  1437. pm_runtime_put_noidle(&intf->dev);
  1438. }
  1439. EXPORT_SYMBOL_GPL(usb_autopm_put_interface_no_suspend);
  1440. /**
  1441. * usb_autopm_get_interface - increment a USB interface's PM-usage counter
  1442. * @intf: the usb_interface whose counter should be incremented
  1443. *
  1444. * This routine should be called by an interface driver when it wants to
  1445. * use @intf and needs to guarantee that it is not suspended. In addition,
  1446. * the routine prevents @intf from being autosuspended subsequently. (Note
  1447. * that this will not prevent suspend events originating in the PM core.)
  1448. * This prevention will persist until usb_autopm_put_interface() is called
  1449. * or @intf is unbound. A typical example would be a character-device
  1450. * driver when its device file is opened.
  1451. *
  1452. * @intf's usage counter is incremented to prevent subsequent autosuspends.
  1453. * However if the autoresume fails then the counter is re-decremented.
  1454. *
  1455. * This routine can run only in process context.
  1456. *
  1457. * Return: 0 on success.
  1458. */
  1459. int usb_autopm_get_interface(struct usb_interface *intf)
  1460. {
  1461. int status;
  1462. status = pm_runtime_get_sync(&intf->dev);
  1463. if (status < 0)
  1464. pm_runtime_put_sync(&intf->dev);
  1465. else
  1466. atomic_inc(&intf->pm_usage_cnt);
  1467. dev_vdbg(&intf->dev, "%s: cnt %d -> %d\n",
  1468. __func__, atomic_read(&intf->dev.power.usage_count),
  1469. status);
  1470. if (status > 0)
  1471. status = 0;
  1472. return status;
  1473. }
  1474. EXPORT_SYMBOL_GPL(usb_autopm_get_interface);
  1475. /**
  1476. * usb_autopm_get_interface_async - increment a USB interface's PM-usage counter
  1477. * @intf: the usb_interface whose counter should be incremented
  1478. *
  1479. * This routine does much the same thing as
  1480. * usb_autopm_get_interface(): It increments @intf's usage counter and
  1481. * queues an autoresume request if the device is suspended. The
  1482. * differences are that it does not perform any synchronization (callers
  1483. * should hold a private lock and handle all synchronization issues
  1484. * themselves), and it does not autoresume the device directly (it only
  1485. * queues a request). After a successful call, the device may not yet be
  1486. * resumed.
  1487. *
  1488. * This routine can run in atomic context.
  1489. *
  1490. * Return: 0 on success. A negative error code otherwise.
  1491. */
  1492. int usb_autopm_get_interface_async(struct usb_interface *intf)
  1493. {
  1494. int status;
  1495. status = pm_runtime_get(&intf->dev);
  1496. if (status < 0 && status != -EINPROGRESS)
  1497. pm_runtime_put_noidle(&intf->dev);
  1498. else
  1499. atomic_inc(&intf->pm_usage_cnt);
  1500. dev_vdbg(&intf->dev, "%s: cnt %d -> %d\n",
  1501. __func__, atomic_read(&intf->dev.power.usage_count),
  1502. status);
  1503. if (status > 0 || status == -EINPROGRESS)
  1504. status = 0;
  1505. return status;
  1506. }
  1507. EXPORT_SYMBOL_GPL(usb_autopm_get_interface_async);
  1508. /**
  1509. * usb_autopm_get_interface_no_resume - increment a USB interface's PM-usage counter
  1510. * @intf: the usb_interface whose counter should be incremented
  1511. *
  1512. * This routine increments @intf's usage counter but does not carry out an
  1513. * autoresume.
  1514. *
  1515. * This routine can run in atomic context.
  1516. */
  1517. void usb_autopm_get_interface_no_resume(struct usb_interface *intf)
  1518. {
  1519. struct usb_device *udev = interface_to_usbdev(intf);
  1520. usb_mark_last_busy(udev);
  1521. atomic_inc(&intf->pm_usage_cnt);
  1522. pm_runtime_get_noresume(&intf->dev);
  1523. }
  1524. EXPORT_SYMBOL_GPL(usb_autopm_get_interface_no_resume);
  1525. /* Internal routine to check whether we may autosuspend a device. */
  1526. static int autosuspend_check(struct usb_device *udev)
  1527. {
  1528. int w, i;
  1529. struct usb_interface *intf;
  1530. /* Fail if autosuspend is disabled, or any interfaces are in use, or
  1531. * any interface drivers require remote wakeup but it isn't available.
  1532. */
  1533. w = 0;
  1534. if (udev->actconfig) {
  1535. for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
  1536. intf = udev->actconfig->interface[i];
  1537. /* We don't need to check interfaces that are
  1538. * disabled for runtime PM. Either they are unbound
  1539. * or else their drivers don't support autosuspend
  1540. * and so they are permanently active.
  1541. */
  1542. if (intf->dev.power.disable_depth)
  1543. continue;
  1544. if (atomic_read(&intf->dev.power.usage_count) > 0)
  1545. return -EBUSY;
  1546. w |= intf->needs_remote_wakeup;
  1547. /* Don't allow autosuspend if the device will need
  1548. * a reset-resume and any of its interface drivers
  1549. * doesn't include support or needs remote wakeup.
  1550. */
  1551. if (udev->quirks & USB_QUIRK_RESET_RESUME) {
  1552. struct usb_driver *driver;
  1553. driver = to_usb_driver(intf->dev.driver);
  1554. if (!driver->reset_resume ||
  1555. intf->needs_remote_wakeup)
  1556. return -EOPNOTSUPP;
  1557. }
  1558. }
  1559. }
  1560. if (w && !device_can_wakeup(&udev->dev)) {
  1561. dev_dbg(&udev->dev, "remote wakeup needed for autosuspend\n");
  1562. return -EOPNOTSUPP;
  1563. }
  1564. udev->do_remote_wakeup = w;
  1565. return 0;
  1566. }
  1567. int usb_runtime_suspend(struct device *dev)
  1568. {
  1569. struct usb_device *udev = to_usb_device(dev);
  1570. int status;
  1571. /* A USB device can be suspended if it passes the various autosuspend
  1572. * checks. Runtime suspend for a USB device means suspending all the
  1573. * interfaces and then the device itself.
  1574. */
  1575. if (autosuspend_check(udev) != 0)
  1576. return -EAGAIN;
  1577. status = usb_suspend_both(udev, PMSG_AUTO_SUSPEND);
  1578. /* Allow a retry if autosuspend failed temporarily */
  1579. if (status == -EAGAIN || status == -EBUSY)
  1580. usb_mark_last_busy(udev);
  1581. /*
  1582. * The PM core reacts badly unless the return code is 0,
  1583. * -EAGAIN, or -EBUSY, so always return -EBUSY on an error
  1584. * (except for root hubs, because they don't suspend through
  1585. * an upstream port like other USB devices).
  1586. */
  1587. if (status != 0 && udev->parent)
  1588. return -EBUSY;
  1589. return status;
  1590. }
  1591. int usb_runtime_resume(struct device *dev)
  1592. {
  1593. struct usb_device *udev = to_usb_device(dev);
  1594. int status;
  1595. /* Runtime resume for a USB device means resuming both the device
  1596. * and all its interfaces.
  1597. */
  1598. status = usb_resume_both(udev, PMSG_AUTO_RESUME);
  1599. return status;
  1600. }
  1601. int usb_runtime_idle(struct device *dev)
  1602. {
  1603. struct usb_device *udev = to_usb_device(dev);
  1604. /* An idle USB device can be suspended if it passes the various
  1605. * autosuspend checks.
  1606. */
  1607. if (autosuspend_check(udev) == 0)
  1608. pm_runtime_autosuspend(dev);
  1609. /* Tell the core not to suspend it, though. */
  1610. return -EBUSY;
  1611. }
  1612. int usb_set_usb2_hardware_lpm(struct usb_device *udev, int enable)
  1613. {
  1614. struct usb_hcd *hcd = bus_to_hcd(udev->bus);
  1615. int ret = -EPERM;
  1616. if (enable && !udev->usb2_hw_lpm_allowed)
  1617. return 0;
  1618. if (hcd->driver->set_usb2_hw_lpm) {
  1619. ret = hcd->driver->set_usb2_hw_lpm(hcd, udev, enable);
  1620. if (!ret)
  1621. udev->usb2_hw_lpm_enabled = enable;
  1622. }
  1623. return ret;
  1624. }
  1625. #endif /* CONFIG_PM */
  1626. struct bus_type usb_bus_type = {
  1627. .name = "usb",
  1628. .match = usb_device_match,
  1629. .uevent = usb_uevent,
  1630. };