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