driver.c 55 KB

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