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