driver.c 49 KB

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