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. if (driver->supports_autosuspend)
  282. pm_runtime_disable(dev);
  283. pm_runtime_set_suspended(dev);
  284. usb_autosuspend_device(udev);
  285. return error;
  286. }
  287. /* called from driver core with dev locked */
  288. static int usb_unbind_interface(struct device *dev)
  289. {
  290. struct usb_driver *driver = to_usb_driver(dev->driver);
  291. struct usb_interface *intf = to_usb_interface(dev);
  292. struct usb_device *udev;
  293. int error, r;
  294. intf->condition = USB_INTERFACE_UNBINDING;
  295. /* Autoresume for set_interface call below */
  296. udev = interface_to_usbdev(intf);
  297. error = usb_autoresume_device(udev);
  298. /* Terminate all URBs for this interface unless the driver
  299. * supports "soft" unbinding.
  300. */
  301. if (!driver->soft_unbind)
  302. usb_disable_interface(udev, intf, false);
  303. driver->disconnect(intf);
  304. usb_cancel_queued_reset(intf);
  305. /* Reset other interface state.
  306. * We cannot do a Set-Interface if the device is suspended or
  307. * if it is prepared for a system sleep (since installing a new
  308. * altsetting means creating new endpoint device entries).
  309. * When either of these happens, defer the Set-Interface.
  310. */
  311. if (intf->cur_altsetting->desc.bAlternateSetting == 0) {
  312. /* Already in altsetting 0 so skip Set-Interface.
  313. * Just re-enable it without affecting the endpoint toggles.
  314. */
  315. usb_enable_interface(udev, intf, false);
  316. } else if (!error && intf->dev.power.status == DPM_ON) {
  317. r = usb_set_interface(udev, intf->altsetting[0].
  318. desc.bInterfaceNumber, 0);
  319. if (r < 0)
  320. intf->needs_altsetting0 = 1;
  321. } else {
  322. intf->needs_altsetting0 = 1;
  323. }
  324. usb_set_intfdata(intf, NULL);
  325. intf->condition = USB_INTERFACE_UNBOUND;
  326. intf->needs_remote_wakeup = 0;
  327. /* Unbound interfaces are always runtime-PM-disabled and -suspended */
  328. if (driver->supports_autosuspend)
  329. pm_runtime_disable(dev);
  330. pm_runtime_set_suspended(dev);
  331. /* Undo any residual pm_autopm_get_interface_* calls */
  332. for (r = atomic_read(&intf->pm_usage_cnt); r > 0; --r)
  333. usb_autopm_put_interface_no_suspend(intf);
  334. atomic_set(&intf->pm_usage_cnt, 0);
  335. if (!error)
  336. usb_autosuspend_device(udev);
  337. return 0;
  338. }
  339. /**
  340. * usb_driver_claim_interface - bind a driver to an interface
  341. * @driver: the driver to be bound
  342. * @iface: the interface to which it will be bound; must be in the
  343. * usb device's active configuration
  344. * @priv: driver data associated with that interface
  345. *
  346. * This is used by usb device drivers that need to claim more than one
  347. * interface on a device when probing (audio and acm are current examples).
  348. * No device driver should directly modify internal usb_interface or
  349. * usb_device structure members.
  350. *
  351. * Few drivers should need to use this routine, since the most natural
  352. * way to bind to an interface is to return the private data from
  353. * the driver's probe() method.
  354. *
  355. * Callers must own the device lock, so driver probe() entries don't need
  356. * extra locking, but other call contexts may need to explicitly claim that
  357. * lock.
  358. */
  359. int usb_driver_claim_interface(struct usb_driver *driver,
  360. struct usb_interface *iface, void *priv)
  361. {
  362. struct device *dev = &iface->dev;
  363. int retval = 0;
  364. if (dev->driver)
  365. return -EBUSY;
  366. dev->driver = &driver->drvwrap.driver;
  367. usb_set_intfdata(iface, priv);
  368. iface->needs_binding = 0;
  369. iface->condition = USB_INTERFACE_BOUND;
  370. /* Claimed interfaces are initially inactive (suspended) and
  371. * runtime-PM-enabled, but only if the driver has autosuspend
  372. * support. Otherwise they are marked active, to prevent the
  373. * device from being autosuspended, but left disabled. In either
  374. * case they are sensitive to their children's power states.
  375. */
  376. pm_suspend_ignore_children(dev, false);
  377. if (driver->supports_autosuspend)
  378. pm_runtime_enable(dev);
  379. else
  380. pm_runtime_set_active(dev);
  381. /* if interface was already added, bind now; else let
  382. * the future device_add() bind it, bypassing probe()
  383. */
  384. if (device_is_registered(dev))
  385. retval = device_bind_driver(dev);
  386. return retval;
  387. }
  388. EXPORT_SYMBOL_GPL(usb_driver_claim_interface);
  389. /**
  390. * usb_driver_release_interface - unbind a driver from an interface
  391. * @driver: the driver to be unbound
  392. * @iface: the interface from which it will be unbound
  393. *
  394. * This can be used by drivers to release an interface without waiting
  395. * for their disconnect() methods to be called. In typical cases this
  396. * also causes the driver disconnect() method to be called.
  397. *
  398. * This call is synchronous, and may not be used in an interrupt context.
  399. * Callers must own the device lock, so driver disconnect() entries don't
  400. * need extra locking, but other call contexts may need to explicitly claim
  401. * that lock.
  402. */
  403. void usb_driver_release_interface(struct usb_driver *driver,
  404. struct usb_interface *iface)
  405. {
  406. struct device *dev = &iface->dev;
  407. /* this should never happen, don't release something that's not ours */
  408. if (!dev->driver || dev->driver != &driver->drvwrap.driver)
  409. return;
  410. /* don't release from within disconnect() */
  411. if (iface->condition != USB_INTERFACE_BOUND)
  412. return;
  413. iface->condition = USB_INTERFACE_UNBINDING;
  414. /* Release via the driver core only if the interface
  415. * has already been registered
  416. */
  417. if (device_is_registered(dev)) {
  418. device_release_driver(dev);
  419. } else {
  420. device_lock(dev);
  421. usb_unbind_interface(dev);
  422. dev->driver = NULL;
  423. device_unlock(dev);
  424. }
  425. }
  426. EXPORT_SYMBOL_GPL(usb_driver_release_interface);
  427. /* returns 0 if no match, 1 if match */
  428. int usb_match_device(struct usb_device *dev, const struct usb_device_id *id)
  429. {
  430. if ((id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
  431. id->idVendor != le16_to_cpu(dev->descriptor.idVendor))
  432. return 0;
  433. if ((id->match_flags & USB_DEVICE_ID_MATCH_PRODUCT) &&
  434. id->idProduct != le16_to_cpu(dev->descriptor.idProduct))
  435. return 0;
  436. /* No need to test id->bcdDevice_lo != 0, since 0 is never
  437. greater than any unsigned number. */
  438. if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_LO) &&
  439. (id->bcdDevice_lo > le16_to_cpu(dev->descriptor.bcdDevice)))
  440. return 0;
  441. if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_HI) &&
  442. (id->bcdDevice_hi < le16_to_cpu(dev->descriptor.bcdDevice)))
  443. return 0;
  444. if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_CLASS) &&
  445. (id->bDeviceClass != dev->descriptor.bDeviceClass))
  446. return 0;
  447. if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_SUBCLASS) &&
  448. (id->bDeviceSubClass != dev->descriptor.bDeviceSubClass))
  449. return 0;
  450. if ((id->match_flags & USB_DEVICE_ID_MATCH_DEV_PROTOCOL) &&
  451. (id->bDeviceProtocol != dev->descriptor.bDeviceProtocol))
  452. return 0;
  453. return 1;
  454. }
  455. /* returns 0 if no match, 1 if match */
  456. int usb_match_one_id(struct usb_interface *interface,
  457. const struct usb_device_id *id)
  458. {
  459. struct usb_host_interface *intf;
  460. struct usb_device *dev;
  461. /* proc_connectinfo in devio.c may call us with id == NULL. */
  462. if (id == NULL)
  463. return 0;
  464. intf = interface->cur_altsetting;
  465. dev = interface_to_usbdev(interface);
  466. if (!usb_match_device(dev, id))
  467. return 0;
  468. /* The interface class, subclass, and protocol should never be
  469. * checked for a match if the device class is Vendor Specific,
  470. * unless the match record specifies the Vendor ID. */
  471. if (dev->descriptor.bDeviceClass == USB_CLASS_VENDOR_SPEC &&
  472. !(id->match_flags & USB_DEVICE_ID_MATCH_VENDOR) &&
  473. (id->match_flags & (USB_DEVICE_ID_MATCH_INT_CLASS |
  474. USB_DEVICE_ID_MATCH_INT_SUBCLASS |
  475. USB_DEVICE_ID_MATCH_INT_PROTOCOL)))
  476. return 0;
  477. if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_CLASS) &&
  478. (id->bInterfaceClass != intf->desc.bInterfaceClass))
  479. return 0;
  480. if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_SUBCLASS) &&
  481. (id->bInterfaceSubClass != intf->desc.bInterfaceSubClass))
  482. return 0;
  483. if ((id->match_flags & USB_DEVICE_ID_MATCH_INT_PROTOCOL) &&
  484. (id->bInterfaceProtocol != intf->desc.bInterfaceProtocol))
  485. return 0;
  486. return 1;
  487. }
  488. EXPORT_SYMBOL_GPL(usb_match_one_id);
  489. /**
  490. * usb_match_id - find first usb_device_id matching device or interface
  491. * @interface: the interface of interest
  492. * @id: array of usb_device_id structures, terminated by zero entry
  493. *
  494. * usb_match_id searches an array of usb_device_id's and returns
  495. * the first one matching the device or interface, or null.
  496. * This is used when binding (or rebinding) a driver to an interface.
  497. * Most USB device drivers will use this indirectly, through the usb core,
  498. * but some layered driver frameworks use it directly.
  499. * These device tables are exported with MODULE_DEVICE_TABLE, through
  500. * modutils, to support the driver loading functionality of USB hotplugging.
  501. *
  502. * What Matches:
  503. *
  504. * The "match_flags" element in a usb_device_id controls which
  505. * members are used. If the corresponding bit is set, the
  506. * value in the device_id must match its corresponding member
  507. * in the device or interface descriptor, or else the device_id
  508. * does not match.
  509. *
  510. * "driver_info" is normally used only by device drivers,
  511. * but you can create a wildcard "matches anything" usb_device_id
  512. * as a driver's "modules.usbmap" entry if you provide an id with
  513. * only a nonzero "driver_info" field. If you do this, the USB device
  514. * driver's probe() routine should use additional intelligence to
  515. * decide whether to bind to the specified interface.
  516. *
  517. * What Makes Good usb_device_id Tables:
  518. *
  519. * The match algorithm is very simple, so that intelligence in
  520. * driver selection must come from smart driver id records.
  521. * Unless you have good reasons to use another selection policy,
  522. * provide match elements only in related groups, and order match
  523. * specifiers from specific to general. Use the macros provided
  524. * for that purpose if you can.
  525. *
  526. * The most specific match specifiers use device descriptor
  527. * data. These are commonly used with product-specific matches;
  528. * the USB_DEVICE macro lets you provide vendor and product IDs,
  529. * and you can also match against ranges of product revisions.
  530. * These are widely used for devices with application or vendor
  531. * specific bDeviceClass values.
  532. *
  533. * Matches based on device class/subclass/protocol specifications
  534. * are slightly more general; use the USB_DEVICE_INFO macro, or
  535. * its siblings. These are used with single-function devices
  536. * where bDeviceClass doesn't specify that each interface has
  537. * its own class.
  538. *
  539. * Matches based on interface class/subclass/protocol are the
  540. * most general; they let drivers bind to any interface on a
  541. * multiple-function device. Use the USB_INTERFACE_INFO
  542. * macro, or its siblings, to match class-per-interface style
  543. * devices (as recorded in bInterfaceClass).
  544. *
  545. * Note that an entry created by USB_INTERFACE_INFO won't match
  546. * any interface if the device class is set to Vendor-Specific.
  547. * This is deliberate; according to the USB spec the meanings of
  548. * the interface class/subclass/protocol for these devices are also
  549. * vendor-specific, and hence matching against a standard product
  550. * class wouldn't work anyway. If you really want to use an
  551. * interface-based match for such a device, create a match record
  552. * that also specifies the vendor ID. (Unforunately there isn't a
  553. * standard macro for creating records like this.)
  554. *
  555. * Within those groups, remember that not all combinations are
  556. * meaningful. For example, don't give a product version range
  557. * without vendor and product IDs; or specify a protocol without
  558. * its associated class and subclass.
  559. */
  560. const struct usb_device_id *usb_match_id(struct usb_interface *interface,
  561. const struct usb_device_id *id)
  562. {
  563. /* proc_connectinfo in devio.c may call us with id == NULL. */
  564. if (id == NULL)
  565. return NULL;
  566. /* It is important to check that id->driver_info is nonzero,
  567. since an entry that is all zeroes except for a nonzero
  568. id->driver_info is the way to create an entry that
  569. indicates that the driver want to examine every
  570. device and interface. */
  571. for (; id->idVendor || id->idProduct || id->bDeviceClass ||
  572. id->bInterfaceClass || id->driver_info; id++) {
  573. if (usb_match_one_id(interface, id))
  574. return id;
  575. }
  576. return NULL;
  577. }
  578. EXPORT_SYMBOL_GPL(usb_match_id);
  579. static int usb_device_match(struct device *dev, struct device_driver *drv)
  580. {
  581. /* devices and interfaces are handled separately */
  582. if (is_usb_device(dev)) {
  583. /* interface drivers never match devices */
  584. if (!is_usb_device_driver(drv))
  585. return 0;
  586. /* TODO: Add real matching code */
  587. return 1;
  588. } else if (is_usb_interface(dev)) {
  589. struct usb_interface *intf;
  590. struct usb_driver *usb_drv;
  591. const struct usb_device_id *id;
  592. /* device drivers never match interfaces */
  593. if (is_usb_device_driver(drv))
  594. return 0;
  595. intf = to_usb_interface(dev);
  596. usb_drv = to_usb_driver(drv);
  597. id = usb_match_id(intf, usb_drv->id_table);
  598. if (id)
  599. return 1;
  600. id = usb_match_dynamic_id(intf, usb_drv);
  601. if (id)
  602. return 1;
  603. }
  604. return 0;
  605. }
  606. #ifdef CONFIG_HOTPLUG
  607. static int usb_uevent(struct device *dev, struct kobj_uevent_env *env)
  608. {
  609. struct usb_device *usb_dev;
  610. if (is_usb_device(dev)) {
  611. usb_dev = to_usb_device(dev);
  612. } else if (is_usb_interface(dev)) {
  613. struct usb_interface *intf = to_usb_interface(dev);
  614. usb_dev = interface_to_usbdev(intf);
  615. } else {
  616. return 0;
  617. }
  618. if (usb_dev->devnum < 0) {
  619. /* driver is often null here; dev_dbg() would oops */
  620. pr_debug("usb %s: already deleted?\n", dev_name(dev));
  621. return -ENODEV;
  622. }
  623. if (!usb_dev->bus) {
  624. pr_debug("usb %s: bus removed?\n", dev_name(dev));
  625. return -ENODEV;
  626. }
  627. #ifdef CONFIG_USB_DEVICEFS
  628. /* If this is available, userspace programs can directly read
  629. * all the device descriptors we don't tell them about. Or
  630. * act as usermode drivers.
  631. */
  632. if (add_uevent_var(env, "DEVICE=/proc/bus/usb/%03d/%03d",
  633. usb_dev->bus->busnum, usb_dev->devnum))
  634. return -ENOMEM;
  635. #endif
  636. /* per-device configurations are common */
  637. if (add_uevent_var(env, "PRODUCT=%x/%x/%x",
  638. le16_to_cpu(usb_dev->descriptor.idVendor),
  639. le16_to_cpu(usb_dev->descriptor.idProduct),
  640. le16_to_cpu(usb_dev->descriptor.bcdDevice)))
  641. return -ENOMEM;
  642. /* class-based driver binding models */
  643. if (add_uevent_var(env, "TYPE=%d/%d/%d",
  644. usb_dev->descriptor.bDeviceClass,
  645. usb_dev->descriptor.bDeviceSubClass,
  646. usb_dev->descriptor.bDeviceProtocol))
  647. return -ENOMEM;
  648. return 0;
  649. }
  650. #else
  651. static int usb_uevent(struct device *dev, struct kobj_uevent_env *env)
  652. {
  653. return -ENODEV;
  654. }
  655. #endif /* CONFIG_HOTPLUG */
  656. /**
  657. * usb_register_device_driver - register a USB device (not interface) driver
  658. * @new_udriver: USB operations for the device driver
  659. * @owner: module owner of this driver.
  660. *
  661. * Registers a USB device driver with the USB core. The list of
  662. * unattached devices will be rescanned whenever a new driver is
  663. * added, allowing the new driver to attach to any recognized devices.
  664. * Returns a negative error code on failure and 0 on success.
  665. */
  666. int usb_register_device_driver(struct usb_device_driver *new_udriver,
  667. struct module *owner)
  668. {
  669. int retval = 0;
  670. if (usb_disabled())
  671. return -ENODEV;
  672. new_udriver->drvwrap.for_devices = 1;
  673. new_udriver->drvwrap.driver.name = (char *) new_udriver->name;
  674. new_udriver->drvwrap.driver.bus = &usb_bus_type;
  675. new_udriver->drvwrap.driver.probe = usb_probe_device;
  676. new_udriver->drvwrap.driver.remove = usb_unbind_device;
  677. new_udriver->drvwrap.driver.owner = owner;
  678. retval = driver_register(&new_udriver->drvwrap.driver);
  679. if (!retval) {
  680. pr_info("%s: registered new device driver %s\n",
  681. usbcore_name, new_udriver->name);
  682. usbfs_update_special();
  683. } else {
  684. printk(KERN_ERR "%s: error %d registering device "
  685. " driver %s\n",
  686. usbcore_name, retval, new_udriver->name);
  687. }
  688. return retval;
  689. }
  690. EXPORT_SYMBOL_GPL(usb_register_device_driver);
  691. /**
  692. * usb_deregister_device_driver - unregister a USB device (not interface) driver
  693. * @udriver: USB operations of the device driver to unregister
  694. * Context: must be able to sleep
  695. *
  696. * Unlinks the specified driver from the internal USB driver list.
  697. */
  698. void usb_deregister_device_driver(struct usb_device_driver *udriver)
  699. {
  700. pr_info("%s: deregistering device driver %s\n",
  701. usbcore_name, udriver->name);
  702. driver_unregister(&udriver->drvwrap.driver);
  703. usbfs_update_special();
  704. }
  705. EXPORT_SYMBOL_GPL(usb_deregister_device_driver);
  706. /**
  707. * usb_register_driver - register a USB interface driver
  708. * @new_driver: USB operations for the interface driver
  709. * @owner: module owner of this driver.
  710. * @mod_name: module name string
  711. *
  712. * Registers a USB interface driver with the USB core. The list of
  713. * unattached interfaces will be rescanned whenever a new driver is
  714. * added, allowing the new driver to attach to any recognized interfaces.
  715. * Returns a negative error code on failure and 0 on success.
  716. *
  717. * NOTE: if you want your driver to use the USB major number, you must call
  718. * usb_register_dev() to enable that functionality. This function no longer
  719. * takes care of that.
  720. */
  721. int usb_register_driver(struct usb_driver *new_driver, struct module *owner,
  722. const char *mod_name)
  723. {
  724. int retval = 0;
  725. if (usb_disabled())
  726. return -ENODEV;
  727. new_driver->drvwrap.for_devices = 0;
  728. new_driver->drvwrap.driver.name = (char *) new_driver->name;
  729. new_driver->drvwrap.driver.bus = &usb_bus_type;
  730. new_driver->drvwrap.driver.probe = usb_probe_interface;
  731. new_driver->drvwrap.driver.remove = usb_unbind_interface;
  732. new_driver->drvwrap.driver.owner = owner;
  733. new_driver->drvwrap.driver.mod_name = mod_name;
  734. spin_lock_init(&new_driver->dynids.lock);
  735. INIT_LIST_HEAD(&new_driver->dynids.list);
  736. retval = driver_register(&new_driver->drvwrap.driver);
  737. if (retval)
  738. goto out;
  739. usbfs_update_special();
  740. retval = usb_create_newid_file(new_driver);
  741. if (retval)
  742. goto out_newid;
  743. retval = usb_create_removeid_file(new_driver);
  744. if (retval)
  745. goto out_removeid;
  746. pr_info("%s: registered new interface driver %s\n",
  747. usbcore_name, new_driver->name);
  748. out:
  749. return retval;
  750. out_removeid:
  751. usb_remove_newid_file(new_driver);
  752. out_newid:
  753. driver_unregister(&new_driver->drvwrap.driver);
  754. printk(KERN_ERR "%s: error %d registering interface "
  755. " driver %s\n",
  756. usbcore_name, retval, new_driver->name);
  757. goto out;
  758. }
  759. EXPORT_SYMBOL_GPL(usb_register_driver);
  760. /**
  761. * usb_deregister - unregister a USB interface driver
  762. * @driver: USB operations of the interface driver to unregister
  763. * Context: must be able to sleep
  764. *
  765. * Unlinks the specified driver from the internal USB driver list.
  766. *
  767. * NOTE: If you called usb_register_dev(), you still need to call
  768. * usb_deregister_dev() to clean up your driver's allocated minor numbers,
  769. * this * call will no longer do it for you.
  770. */
  771. void usb_deregister(struct usb_driver *driver)
  772. {
  773. pr_info("%s: deregistering interface driver %s\n",
  774. usbcore_name, driver->name);
  775. usb_remove_removeid_file(driver);
  776. usb_remove_newid_file(driver);
  777. usb_free_dynids(driver);
  778. driver_unregister(&driver->drvwrap.driver);
  779. usbfs_update_special();
  780. }
  781. EXPORT_SYMBOL_GPL(usb_deregister);
  782. /* Forced unbinding of a USB interface driver, either because
  783. * it doesn't support pre_reset/post_reset/reset_resume or
  784. * because it doesn't support suspend/resume.
  785. *
  786. * The caller must hold @intf's device's lock, but not its pm_mutex
  787. * and not @intf->dev.sem.
  788. */
  789. void usb_forced_unbind_intf(struct usb_interface *intf)
  790. {
  791. struct usb_driver *driver = to_usb_driver(intf->dev.driver);
  792. dev_dbg(&intf->dev, "forced unbind\n");
  793. usb_driver_release_interface(driver, intf);
  794. /* Mark the interface for later rebinding */
  795. intf->needs_binding = 1;
  796. }
  797. /* Delayed forced unbinding of a USB interface driver and scan
  798. * for rebinding.
  799. *
  800. * The caller must hold @intf's device's lock, but not its pm_mutex
  801. * and not @intf->dev.sem.
  802. *
  803. * Note: Rebinds will be skipped if a system sleep transition is in
  804. * progress and the PM "complete" callback hasn't occurred yet.
  805. */
  806. void usb_rebind_intf(struct usb_interface *intf)
  807. {
  808. int rc;
  809. /* Delayed unbind of an existing driver */
  810. if (intf->dev.driver) {
  811. struct usb_driver *driver =
  812. to_usb_driver(intf->dev.driver);
  813. dev_dbg(&intf->dev, "forced unbind\n");
  814. usb_driver_release_interface(driver, intf);
  815. }
  816. /* Try to rebind the interface */
  817. if (intf->dev.power.status == DPM_ON) {
  818. intf->needs_binding = 0;
  819. rc = device_attach(&intf->dev);
  820. if (rc < 0)
  821. dev_warn(&intf->dev, "rebind failed: %d\n", rc);
  822. }
  823. }
  824. #ifdef CONFIG_PM
  825. #define DO_UNBIND 0
  826. #define DO_REBIND 1
  827. /* Unbind drivers for @udev's interfaces that don't support suspend/resume,
  828. * or rebind interfaces that have been unbound, according to @action.
  829. *
  830. * The caller must hold @udev's device lock.
  831. */
  832. static void do_unbind_rebind(struct usb_device *udev, int action)
  833. {
  834. struct usb_host_config *config;
  835. int i;
  836. struct usb_interface *intf;
  837. struct usb_driver *drv;
  838. config = udev->actconfig;
  839. if (config) {
  840. for (i = 0; i < config->desc.bNumInterfaces; ++i) {
  841. intf = config->interface[i];
  842. switch (action) {
  843. case DO_UNBIND:
  844. if (intf->dev.driver) {
  845. drv = to_usb_driver(intf->dev.driver);
  846. if (!drv->suspend || !drv->resume)
  847. usb_forced_unbind_intf(intf);
  848. }
  849. break;
  850. case DO_REBIND:
  851. if (intf->needs_binding)
  852. usb_rebind_intf(intf);
  853. break;
  854. }
  855. }
  856. }
  857. }
  858. static int usb_suspend_device(struct usb_device *udev, pm_message_t msg)
  859. {
  860. struct usb_device_driver *udriver;
  861. int status = 0;
  862. if (udev->state == USB_STATE_NOTATTACHED ||
  863. udev->state == USB_STATE_SUSPENDED)
  864. goto done;
  865. /* For devices that don't have a driver, we do a generic suspend. */
  866. if (udev->dev.driver)
  867. udriver = to_usb_device_driver(udev->dev.driver);
  868. else {
  869. udev->do_remote_wakeup = 0;
  870. udriver = &usb_generic_driver;
  871. }
  872. status = udriver->suspend(udev, msg);
  873. done:
  874. dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
  875. return status;
  876. }
  877. static int usb_resume_device(struct usb_device *udev, pm_message_t msg)
  878. {
  879. struct usb_device_driver *udriver;
  880. int status = 0;
  881. if (udev->state == USB_STATE_NOTATTACHED)
  882. goto done;
  883. /* Can't resume it if it doesn't have a driver. */
  884. if (udev->dev.driver == NULL) {
  885. status = -ENOTCONN;
  886. goto done;
  887. }
  888. /* Non-root devices on a full/low-speed bus must wait for their
  889. * companion high-speed root hub, in case a handoff is needed.
  890. */
  891. if (!(msg.event & PM_EVENT_AUTO) && udev->parent &&
  892. udev->bus->hs_companion)
  893. device_pm_wait_for_dev(&udev->dev,
  894. &udev->bus->hs_companion->root_hub->dev);
  895. if (udev->quirks & USB_QUIRK_RESET_RESUME)
  896. udev->reset_resume = 1;
  897. udriver = to_usb_device_driver(udev->dev.driver);
  898. status = udriver->resume(udev, msg);
  899. done:
  900. dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
  901. return status;
  902. }
  903. static int usb_suspend_interface(struct usb_device *udev,
  904. struct usb_interface *intf, pm_message_t msg)
  905. {
  906. struct usb_driver *driver;
  907. int status = 0;
  908. if (udev->state == USB_STATE_NOTATTACHED ||
  909. intf->condition == USB_INTERFACE_UNBOUND)
  910. goto done;
  911. driver = to_usb_driver(intf->dev.driver);
  912. if (driver->suspend) {
  913. status = driver->suspend(intf, msg);
  914. if (status && !(msg.event & PM_EVENT_AUTO))
  915. dev_err(&intf->dev, "%s error %d\n",
  916. "suspend", status);
  917. } else {
  918. /* Later we will unbind the driver and reprobe */
  919. intf->needs_binding = 1;
  920. dev_warn(&intf->dev, "no %s for driver %s?\n",
  921. "suspend", driver->name);
  922. }
  923. done:
  924. dev_vdbg(&intf->dev, "%s: status %d\n", __func__, status);
  925. return status;
  926. }
  927. static int usb_resume_interface(struct usb_device *udev,
  928. struct usb_interface *intf, pm_message_t msg, int reset_resume)
  929. {
  930. struct usb_driver *driver;
  931. int status = 0;
  932. if (udev->state == USB_STATE_NOTATTACHED)
  933. goto done;
  934. /* Don't let autoresume interfere with unbinding */
  935. if (intf->condition == USB_INTERFACE_UNBINDING)
  936. goto done;
  937. /* Can't resume it if it doesn't have a driver. */
  938. if (intf->condition == USB_INTERFACE_UNBOUND) {
  939. /* Carry out a deferred switch to altsetting 0 */
  940. if (intf->needs_altsetting0 &&
  941. intf->dev.power.status == DPM_ON) {
  942. usb_set_interface(udev, intf->altsetting[0].
  943. desc.bInterfaceNumber, 0);
  944. intf->needs_altsetting0 = 0;
  945. }
  946. goto done;
  947. }
  948. /* Don't resume if the interface is marked for rebinding */
  949. if (intf->needs_binding)
  950. goto done;
  951. driver = to_usb_driver(intf->dev.driver);
  952. if (reset_resume) {
  953. if (driver->reset_resume) {
  954. status = driver->reset_resume(intf);
  955. if (status)
  956. dev_err(&intf->dev, "%s error %d\n",
  957. "reset_resume", status);
  958. } else {
  959. intf->needs_binding = 1;
  960. dev_warn(&intf->dev, "no %s for driver %s?\n",
  961. "reset_resume", driver->name);
  962. }
  963. } else {
  964. if (driver->resume) {
  965. status = driver->resume(intf);
  966. if (status)
  967. dev_err(&intf->dev, "%s error %d\n",
  968. "resume", status);
  969. } else {
  970. intf->needs_binding = 1;
  971. dev_warn(&intf->dev, "no %s for driver %s?\n",
  972. "resume", driver->name);
  973. }
  974. }
  975. done:
  976. dev_vdbg(&intf->dev, "%s: status %d\n", __func__, status);
  977. /* Later we will unbind the driver and/or reprobe, if necessary */
  978. return status;
  979. }
  980. /**
  981. * usb_suspend_both - suspend a USB device and its interfaces
  982. * @udev: the usb_device to suspend
  983. * @msg: Power Management message describing this state transition
  984. *
  985. * This is the central routine for suspending USB devices. It calls the
  986. * suspend methods for all the interface drivers in @udev and then calls
  987. * the suspend method for @udev itself. If an error occurs at any stage,
  988. * all the interfaces which were suspended are resumed so that they remain
  989. * in the same state as the device.
  990. *
  991. * Autosuspend requests originating from a child device or an interface
  992. * driver may be made without the protection of @udev's device lock, but
  993. * all other suspend calls will hold the lock. Usbcore will insure that
  994. * method calls do not arrive during bind, unbind, or reset operations.
  995. * However drivers must be prepared to handle suspend calls arriving at
  996. * unpredictable times.
  997. *
  998. * This routine can run only in process context.
  999. */
  1000. static int usb_suspend_both(struct usb_device *udev, pm_message_t msg)
  1001. {
  1002. int status = 0;
  1003. int i = 0, n = 0;
  1004. struct usb_interface *intf;
  1005. if (udev->state == USB_STATE_NOTATTACHED ||
  1006. udev->state == USB_STATE_SUSPENDED)
  1007. goto done;
  1008. /* Suspend all the interfaces and then udev itself */
  1009. if (udev->actconfig) {
  1010. n = udev->actconfig->desc.bNumInterfaces;
  1011. for (i = n - 1; i >= 0; --i) {
  1012. intf = udev->actconfig->interface[i];
  1013. status = usb_suspend_interface(udev, intf, msg);
  1014. if (status != 0)
  1015. break;
  1016. }
  1017. }
  1018. if (status == 0)
  1019. status = usb_suspend_device(udev, msg);
  1020. /* If the suspend failed, resume interfaces that did get suspended */
  1021. if (status != 0) {
  1022. msg.event ^= (PM_EVENT_SUSPEND | PM_EVENT_RESUME);
  1023. while (++i < n) {
  1024. intf = udev->actconfig->interface[i];
  1025. usb_resume_interface(udev, intf, msg, 0);
  1026. }
  1027. /* If the suspend succeeded then prevent any more URB submissions
  1028. * and flush any outstanding URBs.
  1029. */
  1030. } else {
  1031. udev->can_submit = 0;
  1032. for (i = 0; i < 16; ++i) {
  1033. usb_hcd_flush_endpoint(udev, udev->ep_out[i]);
  1034. usb_hcd_flush_endpoint(udev, udev->ep_in[i]);
  1035. }
  1036. }
  1037. done:
  1038. dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
  1039. return status;
  1040. }
  1041. /**
  1042. * usb_resume_both - resume a USB device and its interfaces
  1043. * @udev: the usb_device to resume
  1044. * @msg: Power Management message describing this state transition
  1045. *
  1046. * This is the central routine for resuming USB devices. It calls the
  1047. * the resume method for @udev and then calls the resume methods for all
  1048. * the interface drivers in @udev.
  1049. *
  1050. * Autoresume requests originating from a child device or an interface
  1051. * driver may be made without the protection of @udev's device lock, but
  1052. * all other resume calls will hold the lock. Usbcore will insure that
  1053. * method calls do not arrive during bind, unbind, or reset operations.
  1054. * However drivers must be prepared to handle resume calls arriving at
  1055. * unpredictable times.
  1056. *
  1057. * This routine can run only in process context.
  1058. */
  1059. static int usb_resume_both(struct usb_device *udev, pm_message_t msg)
  1060. {
  1061. int status = 0;
  1062. int i;
  1063. struct usb_interface *intf;
  1064. if (udev->state == USB_STATE_NOTATTACHED) {
  1065. status = -ENODEV;
  1066. goto done;
  1067. }
  1068. udev->can_submit = 1;
  1069. /* Resume the device */
  1070. if (udev->state == USB_STATE_SUSPENDED || udev->reset_resume)
  1071. status = usb_resume_device(udev, msg);
  1072. /* Resume the interfaces */
  1073. if (status == 0 && udev->actconfig) {
  1074. for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
  1075. intf = udev->actconfig->interface[i];
  1076. usb_resume_interface(udev, intf, msg,
  1077. udev->reset_resume);
  1078. }
  1079. }
  1080. done:
  1081. dev_vdbg(&udev->dev, "%s: status %d\n", __func__, status);
  1082. if (!status)
  1083. udev->reset_resume = 0;
  1084. return status;
  1085. }
  1086. static void choose_wakeup(struct usb_device *udev, pm_message_t msg)
  1087. {
  1088. int w;
  1089. /* Remote wakeup is needed only when we actually go to sleep.
  1090. * For things like FREEZE and QUIESCE, if the device is already
  1091. * autosuspended then its current wakeup setting is okay.
  1092. */
  1093. if (msg.event == PM_EVENT_FREEZE || msg.event == PM_EVENT_QUIESCE) {
  1094. if (udev->state != USB_STATE_SUSPENDED)
  1095. udev->do_remote_wakeup = 0;
  1096. return;
  1097. }
  1098. /* Enable remote wakeup if it is allowed, even if no interface drivers
  1099. * actually want it.
  1100. */
  1101. w = device_may_wakeup(&udev->dev);
  1102. /* If the device is autosuspended with the wrong wakeup setting,
  1103. * autoresume now so the setting can be changed.
  1104. */
  1105. if (udev->state == USB_STATE_SUSPENDED && w != udev->do_remote_wakeup)
  1106. pm_runtime_resume(&udev->dev);
  1107. udev->do_remote_wakeup = w;
  1108. }
  1109. /* The device lock is held by the PM core */
  1110. int usb_suspend(struct device *dev, pm_message_t msg)
  1111. {
  1112. struct usb_device *udev = to_usb_device(dev);
  1113. do_unbind_rebind(udev, DO_UNBIND);
  1114. choose_wakeup(udev, msg);
  1115. return usb_suspend_both(udev, msg);
  1116. }
  1117. /* The device lock is held by the PM core */
  1118. int usb_resume(struct device *dev, pm_message_t msg)
  1119. {
  1120. struct usb_device *udev = to_usb_device(dev);
  1121. int status;
  1122. /* For PM complete calls, all we do is rebind interfaces */
  1123. if (msg.event == PM_EVENT_ON) {
  1124. if (udev->state != USB_STATE_NOTATTACHED)
  1125. do_unbind_rebind(udev, DO_REBIND);
  1126. status = 0;
  1127. /* For all other calls, take the device back to full power and
  1128. * tell the PM core in case it was autosuspended previously.
  1129. * Unbind the interfaces that will need rebinding later.
  1130. */
  1131. } else {
  1132. status = usb_resume_both(udev, msg);
  1133. if (status == 0) {
  1134. pm_runtime_disable(dev);
  1135. pm_runtime_set_active(dev);
  1136. pm_runtime_enable(dev);
  1137. udev->last_busy = jiffies;
  1138. do_unbind_rebind(udev, DO_REBIND);
  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. };