1 // SPDX-License-Identifier: GPL-2.0
3 * drivers/usb/generic.c - generic driver for USB devices (not interfaces)
5 * (C) Copyright 2005 Greg Kroah-Hartman <gregkh@suse.de>
7 * based on drivers/usb/usb.c which had the following copyrights:
8 * (C) Copyright Linus Torvalds 1999
9 * (C) Copyright Johannes Erdfelt 1999-2001
10 * (C) Copyright Andreas Gal 1999
11 * (C) Copyright Gregory P. Smith 1999
12 * (C) Copyright Deti Fliegl 1999 (new USB architecture)
13 * (C) Copyright Randy Dunlap 2000
14 * (C) Copyright David Brownell 2000-2004
15 * (C) Copyright Yggdrasil Computing, Inc. 2000
16 * (usb_device_id matching changes by Adam J. Richter)
17 * (C) Copyright Greg Kroah-Hartman 2002-2003
19 * Released under the GPLv2 only.
22 #include <linux/usb.h>
23 #include <linux/usb/hcd.h>
26 static inline const char *plural(int n
)
28 return (n
== 1 ? "" : "s");
31 static int is_rndis(struct usb_interface_descriptor
*desc
)
33 return desc
->bInterfaceClass
== USB_CLASS_COMM
34 && desc
->bInterfaceSubClass
== 2
35 && desc
->bInterfaceProtocol
== 0xff;
38 static int is_activesync(struct usb_interface_descriptor
*desc
)
40 return desc
->bInterfaceClass
== USB_CLASS_MISC
41 && desc
->bInterfaceSubClass
== 1
42 && desc
->bInterfaceProtocol
== 1;
45 int usb_choose_configuration(struct usb_device
*udev
)
49 int insufficient_power
= 0;
50 struct usb_host_config
*c
, *best
;
52 if (usb_device_is_owned(udev
))
57 num_configs
= udev
->descriptor
.bNumConfigurations
;
58 for (i
= 0; i
< num_configs
; (i
++, c
++)) {
59 struct usb_interface_descriptor
*desc
= NULL
;
61 /* It's possible that a config has no interfaces! */
62 if (c
->desc
.bNumInterfaces
> 0)
63 desc
= &c
->intf_cache
[0]->altsetting
->desc
;
66 * HP's USB bus-powered keyboard has only one configuration
67 * and it claims to be self-powered; other devices may have
68 * similar errors in their descriptors. If the next test
69 * were allowed to execute, such configurations would always
70 * be rejected and the devices would not work as expected.
71 * In the meantime, we run the risk of selecting a config
72 * that requires external power at a time when that power
73 * isn't available. It seems to be the lesser of two evils.
75 * Bugzilla #6448 reports a device that appears to crash
76 * when it receives a GET_DEVICE_STATUS request! We don't
77 * have any other way to tell whether a device is self-powered,
78 * but since we don't use that information anywhere but here,
79 * the call has been removed.
81 * Maybe the GET_DEVICE_STATUS call and the test below can
82 * be reinstated when device firmwares become more reliable.
83 * Don't hold your breath.
86 /* Rule out self-powered configs for a bus-powered device */
87 if (bus_powered
&& (c
->desc
.bmAttributes
&
88 USB_CONFIG_ATT_SELFPOWER
))
93 * The next test may not be as effective as it should be.
94 * Some hubs have errors in their descriptor, claiming
95 * to be self-powered when they are really bus-powered.
96 * We will overestimate the amount of current such hubs
97 * make available for each port.
99 * This is a fairly benign sort of failure. It won't
100 * cause us to reject configurations that we should have
104 /* Rule out configs that draw too much bus current */
105 if (usb_get_max_power(udev
, c
) > udev
->bus_mA
) {
106 insufficient_power
++;
110 /* When the first config's first interface is one of Microsoft's
111 * pet nonstandard Ethernet-over-USB protocols, ignore it unless
112 * this kernel has enabled the necessary host side driver.
113 * But: Don't ignore it if it's the only config.
115 if (i
== 0 && num_configs
> 1 && desc
&&
116 (is_rndis(desc
) || is_activesync(desc
))) {
117 #if !defined(CONFIG_USB_NET_RNDIS_HOST) && !defined(CONFIG_USB_NET_RNDIS_HOST_MODULE)
124 /* From the remaining configs, choose the first one whose
125 * first interface is for a non-vendor-specific class.
126 * Reason: Linux is more likely to have a class driver
127 * than a vendor-specific driver. */
128 else if (udev
->descriptor
.bDeviceClass
!=
129 USB_CLASS_VENDOR_SPEC
&&
130 (desc
&& desc
->bInterfaceClass
!=
131 USB_CLASS_VENDOR_SPEC
)) {
136 /* If all the remaining configs are vendor-specific,
137 * choose the first one. */
142 if (insufficient_power
> 0)
143 dev_info(&udev
->dev
, "rejected %d configuration%s "
144 "due to insufficient available bus power\n",
145 insufficient_power
, plural(insufficient_power
));
148 i
= best
->desc
.bConfigurationValue
;
150 "configuration #%d chosen from %d choice%s\n",
151 i
, num_configs
, plural(num_configs
));
155 "no configuration chosen from %d choice%s\n",
156 num_configs
, plural(num_configs
));
160 EXPORT_SYMBOL_GPL(usb_choose_configuration
);
162 static int generic_probe(struct usb_device
*udev
)
166 /* Choose and set the configuration. This registers the interfaces
167 * with the driver core and lets interface drivers bind to them.
169 if (udev
->authorized
== 0)
170 dev_err(&udev
->dev
, "Device is not authorized for usage\n");
172 c
= usb_choose_configuration(udev
);
174 err
= usb_set_configuration(udev
, c
);
175 if (err
&& err
!= -ENODEV
) {
176 dev_err(&udev
->dev
, "can't set config #%d, error %d\n",
178 /* This need not be fatal. The user can try to
179 * set other configurations. */
183 /* USB device state == configured ... usable */
184 usb_notify_add_device(udev
);
189 static void generic_disconnect(struct usb_device
*udev
)
191 usb_notify_remove_device(udev
);
193 /* if this is only an unbind, not a physical disconnect, then
194 * unconfigure the device */
196 usb_set_configuration(udev
, -1);
201 static int generic_suspend(struct usb_device
*udev
, pm_message_t msg
)
205 /* Normal USB devices suspend through their upstream port.
206 * Root hubs don't have upstream ports to suspend,
207 * so we have to shut down their downstream HC-to-USB
208 * interfaces manually by doing a bus (or "global") suspend.
211 rc
= hcd_bus_suspend(udev
, msg
);
214 * Non-root USB2 devices don't need to do anything for FREEZE
215 * or PRETHAW. USB3 devices don't support global suspend and
216 * needs to be selectively suspended.
218 else if ((msg
.event
== PM_EVENT_FREEZE
|| msg
.event
== PM_EVENT_PRETHAW
)
219 && (udev
->speed
< USB_SPEED_SUPER
))
222 rc
= usb_port_suspend(udev
, msg
);
227 static int generic_resume(struct usb_device
*udev
, pm_message_t msg
)
231 /* Normal USB devices resume/reset through their upstream port.
232 * Root hubs don't have upstream ports to resume or reset,
233 * so we have to start up their downstream HC-to-USB
234 * interfaces manually by doing a bus (or "global") resume.
237 rc
= hcd_bus_resume(udev
, msg
);
239 rc
= usb_port_resume(udev
, msg
);
243 #endif /* CONFIG_PM */
245 struct usb_device_driver usb_generic_driver
= {
247 .probe
= generic_probe
,
248 .disconnect
= generic_disconnect
,
250 .suspend
= generic_suspend
,
251 .resume
= generic_resume
,
253 .supports_autosuspend
= 1,