driver.c 51 KB

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