blob: 9a34ccb0a1c027f68abf478eec8f588d566a3bb9 [file] [log] [blame]
Alan Stern36e56a32006-07-01 22:08:06 -04001/*
2 * drivers/usb/generic.c - generic driver for USB devices (not interfaces)
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 */
19
Alan Stern36e56a32006-07-01 22:08:06 -040020#include <linux/usb.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020021#include <linux/usb/hcd.h>
Alan Stern36e56a32006-07-01 22:08:06 -040022#include "usb.h"
23
Alan Stern782da722006-07-01 22:09:35 -040024static inline const char *plural(int n)
25{
26 return (n == 1 ? "" : "s");
27}
28
Ole Andre Vadla Ravnasad55d712006-12-14 16:01:28 -080029static int is_rndis(struct usb_interface_descriptor *desc)
30{
31 return desc->bInterfaceClass == USB_CLASS_COMM
32 && desc->bInterfaceSubClass == 2
33 && desc->bInterfaceProtocol == 0xff;
34}
35
36static int is_activesync(struct usb_interface_descriptor *desc)
37{
38 return desc->bInterfaceClass == USB_CLASS_MISC
39 && desc->bInterfaceSubClass == 1
40 && desc->bInterfaceProtocol == 1;
41}
42
Greg Kroah-Hartmanb5ea0602007-08-02 22:44:27 -060043int usb_choose_configuration(struct usb_device *udev)
Alan Stern782da722006-07-01 22:09:35 -040044{
45 int i;
46 int num_configs;
47 int insufficient_power = 0;
48 struct usb_host_config *c, *best;
49
50 best = NULL;
51 c = udev->config;
52 num_configs = udev->descriptor.bNumConfigurations;
53 for (i = 0; i < num_configs; (i++, c++)) {
54 struct usb_interface_descriptor *desc = NULL;
55
56 /* It's possible that a config has no interfaces! */
57 if (c->desc.bNumInterfaces > 0)
58 desc = &c->intf_cache[0]->altsetting->desc;
59
60 /*
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.
69 *
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.
75 *
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.
79 */
80#if 0
81 /* Rule out self-powered configs for a bus-powered device */
82 if (bus_powered && (c->desc.bmAttributes &
83 USB_CONFIG_ATT_SELFPOWER))
84 continue;
85#endif
86
87 /*
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.
93 *
94 * This is a fairly benign sort of failure. It won't
95 * cause us to reject configurations that we should have
96 * accepted.
97 */
98
99 /* Rule out configs that draw too much bus current */
100 if (c->desc.bMaxPower * 2 > udev->bus_mA) {
101 insufficient_power++;
102 continue;
103 }
104
Ole Andre Vadla Ravnasad55d712006-12-14 16:01:28 -0800105 /* 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.
108 */
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)
Alan Stern782da722006-07-01 22:09:35 -0400111 continue;
112#else
113 best = c;
114#endif
115 }
116
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 &&
Alan Stern62f9cfa2010-04-20 10:40:59 -0400123 (desc && desc->bInterfaceClass !=
Alan Stern782da722006-07-01 22:09:35 -0400124 USB_CLASS_VENDOR_SPEC)) {
125 best = c;
126 break;
127 }
128
129 /* If all the remaining configs are vendor-specific,
130 * choose the first one. */
131 else if (!best)
132 best = c;
133 }
134
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));
139
140 if (best) {
141 i = best->desc.bConfigurationValue;
Matthew Wilcoxb1f0a342009-09-24 16:18:27 -0600142 dev_dbg(&udev->dev,
Alan Stern782da722006-07-01 22:09:35 -0400143 "configuration #%d chosen from %d choice%s\n",
144 i, num_configs, plural(num_configs));
145 } else {
146 i = -1;
147 dev_warn(&udev->dev,
148 "no configuration chosen from %d choice%s\n",
149 num_configs, plural(num_configs));
150 }
151 return i;
152}
153
Alan Stern8bb54ab2006-07-01 22:08:49 -0400154static int generic_probe(struct usb_device *udev)
Alan Stern36e56a32006-07-01 22:08:06 -0400155{
Alan Stern782da722006-07-01 22:09:35 -0400156 int err, c;
157
Alan Stern782da722006-07-01 22:09:35 -0400158 /* Choose and set the configuration. This registers the interfaces
159 * with the driver core and lets interface drivers bind to them.
160 */
Alan Stern7cbe5dc2009-06-29 10:56:54 -0400161 if (usb_device_is_owned(udev))
162 ; /* Don't configure if the device is owned */
163 else if (udev->authorized == 0)
Inaky Perez-Gonzalezf8a37462007-07-31 20:34:04 -0700164 dev_err(&udev->dev, "Device is not authorized for usage\n");
165 else {
Greg Kroah-Hartmanb5ea0602007-08-02 22:44:27 -0600166 c = usb_choose_configuration(udev);
Inaky Perez-Gonzalezf8a37462007-07-31 20:34:04 -0700167 if (c >= 0) {
168 err = usb_set_configuration(udev, c);
169 if (err) {
170 dev_err(&udev->dev, "can't set config #%d, error %d\n",
Alan Stern782da722006-07-01 22:09:35 -0400171 c, err);
Inaky Perez-Gonzalezf8a37462007-07-31 20:34:04 -0700172 /* This need not be fatal. The user can try to
173 * set other configurations. */
174 }
Alan Stern782da722006-07-01 22:09:35 -0400175 }
176 }
Alan Stern782da722006-07-01 22:09:35 -0400177 /* USB device state == configured ... usable */
178 usb_notify_add_device(udev);
179
Alan Stern36e56a32006-07-01 22:08:06 -0400180 return 0;
181}
Alan Stern782da722006-07-01 22:09:35 -0400182
Alan Stern8bb54ab2006-07-01 22:08:49 -0400183static void generic_disconnect(struct usb_device *udev)
Alan Stern36e56a32006-07-01 22:08:06 -0400184{
Alan Stern782da722006-07-01 22:09:35 -0400185 usb_notify_remove_device(udev);
186
Alan Stern36e56a32006-07-01 22:08:06 -0400187 /* if this is only an unbind, not a physical disconnect, then
188 * unconfigure the device */
Alan Stern01d883d2006-08-30 15:47:18 -0400189 if (udev->actconfig)
Alan Stern3f141e22007-02-08 16:40:43 -0500190 usb_set_configuration(udev, -1);
Alan Stern36e56a32006-07-01 22:08:06 -0400191}
192
Alan Stern782da722006-07-01 22:09:35 -0400193#ifdef CONFIG_PM
194
Alan Stern782da722006-07-01 22:09:35 -0400195static int generic_suspend(struct usb_device *udev, pm_message_t msg)
196{
Alan Sternb6f64362007-05-04 11:51:54 -0400197 int rc;
198
Alan Stern686314c2007-05-30 15:34:36 -0400199 /* Normal USB devices suspend through their upstream port.
200 * Root hubs don't have upstream ports to suspend,
201 * so we have to shut down their downstream HC-to-USB
202 * interfaces manually by doing a bus (or "global") suspend.
Alan Sternb6f64362007-05-04 11:51:54 -0400203 */
Alan Stern686314c2007-05-30 15:34:36 -0400204 if (!udev->parent)
Alan Stern65bfd292008-11-25 16:39:18 -0500205 rc = hcd_bus_suspend(udev, msg);
Alan Stern5ad4f712007-09-10 11:31:43 -0400206
207 /* Non-root devices don't need to do anything for FREEZE or PRETHAW */
208 else if (msg.event == PM_EVENT_FREEZE || msg.event == PM_EVENT_PRETHAW)
209 rc = 0;
Alan Stern686314c2007-05-30 15:34:36 -0400210 else
Alan Stern65bfd292008-11-25 16:39:18 -0500211 rc = usb_port_suspend(udev, msg);
Alan Stern5ad4f712007-09-10 11:31:43 -0400212
Alan Sternb6f64362007-05-04 11:51:54 -0400213 return rc;
Alan Stern782da722006-07-01 22:09:35 -0400214}
215
Alan Stern65bfd292008-11-25 16:39:18 -0500216static int generic_resume(struct usb_device *udev, pm_message_t msg)
Alan Stern782da722006-07-01 22:09:35 -0400217{
Alan Sternb6f64362007-05-04 11:51:54 -0400218 int rc;
219
Alan Stern686314c2007-05-30 15:34:36 -0400220 /* Normal USB devices resume/reset through their upstream port.
221 * Root hubs don't have upstream ports to resume or reset,
222 * so we have to start up their downstream HC-to-USB
223 * interfaces manually by doing a bus (or "global") resume.
224 */
225 if (!udev->parent)
Alan Stern65bfd292008-11-25 16:39:18 -0500226 rc = hcd_bus_resume(udev, msg);
Alan Stern0458d5b2007-05-04 11:52:20 -0400227 else
Alan Stern65bfd292008-11-25 16:39:18 -0500228 rc = usb_port_resume(udev, msg);
Alan Sternb6f64362007-05-04 11:51:54 -0400229 return rc;
Alan Stern782da722006-07-01 22:09:35 -0400230}
231
232#endif /* CONFIG_PM */
233
Alan Stern8bb54ab2006-07-01 22:08:49 -0400234struct usb_device_driver usb_generic_driver = {
Alan Stern36e56a32006-07-01 22:08:06 -0400235 .name = "usb",
Alan Stern36e56a32006-07-01 22:08:06 -0400236 .probe = generic_probe,
Alan Stern8bb54ab2006-07-01 22:08:49 -0400237 .disconnect = generic_disconnect,
Alan Stern782da722006-07-01 22:09:35 -0400238#ifdef CONFIG_PM
239 .suspend = generic_suspend,
240 .resume = generic_resume,
241#endif
Alan Stern01d883d2006-08-30 15:47:18 -0400242 .supports_autosuspend = 1,
Alan Stern36e56a32006-07-01 22:08:06 -0400243};