2 * drivers/usb/generic.c - generic driver for USB devices (not interfaces)
4 * (C) Copyright 2005 Greg Kroah-Hartman <gregkh@suse.de>
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
20 #include <linux/usb.h>
24 static inline const char *plural(int n)
26 return (n == 1 ? "" : "s");
29 static int is_rndis(struct usb_interface_descriptor *desc)
31 return desc->bInterfaceClass == USB_CLASS_COMM
32 && desc->bInterfaceSubClass == 2
33 && desc->bInterfaceProtocol == 0xff;
36 static int is_activesync(struct usb_interface_descriptor *desc)
38 return desc->bInterfaceClass == USB_CLASS_MISC
39 && desc->bInterfaceSubClass == 1
40 && desc->bInterfaceProtocol == 1;
43 int usb_choose_configuration(struct usb_device *udev)
47 int insufficient_power = 0;
48 struct usb_host_config *c, *best;
52 num_configs = udev->descriptor.bNumConfigurations;
53 for (i = 0; i < num_configs; (i++, c++)) {
54 struct usb_interface_descriptor *desc = NULL;
56 /* It's possible that a config has no interfaces! */
57 if (c->desc.bNumInterfaces > 0)
58 desc = &c->intf_cache[0]->altsetting->desc;
61 * HP's USB bus-powered keyboard has only one configuration
62 * and it claims to be self-powered; other devices may have
63 * similar errors in their descriptors. If the next test
64 * were allowed to execute, such configurations would always
65 * be rejected and the devices would not work as expected.
66 * In the meantime, we run the risk of selecting a config
67 * that requires external power at a time when that power
68 * isn't available. It seems to be the lesser of two evils.
70 * Bugzilla #6448 reports a device that appears to crash
71 * when it receives a GET_DEVICE_STATUS request! We don't
72 * have any other way to tell whether a device is self-powered,
73 * but since we don't use that information anywhere but here,
74 * the call has been removed.
76 * Maybe the GET_DEVICE_STATUS call and the test below can
77 * be reinstated when device firmwares become more reliable.
78 * Don't hold your breath.
81 /* Rule out self-powered configs for a bus-powered device */
82 if (bus_powered && (c->desc.bmAttributes &
83 USB_CONFIG_ATT_SELFPOWER))
88 * The next test may not be as effective as it should be.
89 * Some hubs have errors in their descriptor, claiming
90 * to be self-powered when they are really bus-powered.
91 * We will overestimate the amount of current such hubs
92 * make available for each port.
94 * This is a fairly benign sort of failure. It won't
95 * cause us to reject configurations that we should have
99 /* Rule out configs that draw too much bus current */
100 if (c->desc.bMaxPower * 2 > udev->bus_mA) {
101 insufficient_power++;
105 /* When the first config's first interface is one of Microsoft's
106 * pet nonstandard Ethernet-over-USB protocols, ignore it unless
107 * this kernel has enabled the necessary host side driver.
109 if (i == 0 && desc && (is_rndis(desc) || is_activesync(desc))) {
110 #if !defined(CONFIG_USB_NET_RNDIS_HOST) && !defined(CONFIG_USB_NET_RNDIS_HOST_MODULE)
117 /* From the remaining configs, choose the first one whose
118 * first interface is for a non-vendor-specific class.
119 * Reason: Linux is more likely to have a class driver
120 * than a vendor-specific driver. */
121 else if (udev->descriptor.bDeviceClass !=
122 USB_CLASS_VENDOR_SPEC &&
123 (!desc || desc->bInterfaceClass !=
124 USB_CLASS_VENDOR_SPEC)) {
129 /* If all the remaining configs are vendor-specific,
130 * choose the first one. */
135 if (insufficient_power > 0)
136 dev_info(&udev->dev, "rejected %d configuration%s "
137 "due to insufficient available bus power\n",
138 insufficient_power, plural(insufficient_power));
141 i = best->desc.bConfigurationValue;
143 "configuration #%d chosen from %d choice%s\n",
144 i, num_configs, plural(num_configs));
148 "no configuration chosen from %d choice%s\n",
149 num_configs, plural(num_configs));
154 static int generic_probe(struct usb_device *udev)
158 /* put device-specific files into sysfs */
159 usb_create_sysfs_dev_files(udev);
161 /* Choose and set the configuration. This registers the interfaces
162 * with the driver core and lets interface drivers bind to them.
164 if (udev->authorized == 0)
165 dev_err(&udev->dev, "Device is not authorized for usage\n");
167 c = usb_choose_configuration(udev);
169 err = usb_set_configuration(udev, c);
171 dev_err(&udev->dev, "can't set config #%d, error %d\n",
173 /* This need not be fatal. The user can try to
174 * set other configurations. */
178 /* USB device state == configured ... usable */
179 usb_notify_add_device(udev);
184 static void generic_disconnect(struct usb_device *udev)
186 usb_notify_remove_device(udev);
188 /* if this is only an unbind, not a physical disconnect, then
189 * unconfigure the device */
191 usb_set_configuration(udev, -1);
193 usb_remove_sysfs_dev_files(udev);
198 static int generic_suspend(struct usb_device *udev, pm_message_t msg)
202 /* Normal USB devices suspend through their upstream port.
203 * Root hubs don't have upstream ports to suspend,
204 * so we have to shut down their downstream HC-to-USB
205 * interfaces manually by doing a bus (or "global") suspend.
208 rc = hcd_bus_suspend(udev);
210 /* Non-root devices don't need to do anything for FREEZE or PRETHAW */
211 else if (msg.event == PM_EVENT_FREEZE || msg.event == PM_EVENT_PRETHAW)
214 rc = usb_port_suspend(udev);
219 static int generic_resume(struct usb_device *udev)
223 /* Normal USB devices resume/reset through their upstream port.
224 * Root hubs don't have upstream ports to resume or reset,
225 * so we have to start up their downstream HC-to-USB
226 * interfaces manually by doing a bus (or "global") resume.
229 rc = hcd_bus_resume(udev);
231 rc = usb_port_resume(udev);
235 #endif /* CONFIG_PM */
237 struct usb_device_driver usb_generic_driver = {
239 .probe = generic_probe,
240 .disconnect = generic_disconnect,
242 .suspend = generic_suspend,
243 .resume = generic_resume,
245 .supports_autosuspend = 1,