1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22#include <linux/usb.h>
23#include <linux/usb/hcd.h>
24#include <uapi/linux/usb/audio.h>
25#include "usb.h"
26
27static inline const char *plural(int n)
28{
29 return (n == 1 ? "" : "s");
30}
31
32static int is_rndis(struct usb_interface_descriptor *desc)
33{
34 return desc->bInterfaceClass == USB_CLASS_COMM
35 && desc->bInterfaceSubClass == 2
36 && desc->bInterfaceProtocol == 0xff;
37}
38
39static int is_activesync(struct usb_interface_descriptor *desc)
40{
41 return desc->bInterfaceClass == USB_CLASS_MISC
42 && desc->bInterfaceSubClass == 1
43 && desc->bInterfaceProtocol == 1;
44}
45
46static bool is_audio(struct usb_interface_descriptor *desc)
47{
48 return desc->bInterfaceClass == USB_CLASS_AUDIO;
49}
50
51static bool is_uac3_config(struct usb_interface_descriptor *desc)
52{
53 return desc->bInterfaceProtocol == UAC_VERSION_3;
54}
55
56int usb_choose_configuration(struct usb_device *udev)
57{
58 int i;
59 int num_configs;
60 int insufficient_power = 0;
61 struct usb_host_config *c, *best;
62
63 if (usb_device_is_owned(udev))
64 return 0;
65
66 best = NULL;
67 c = udev->config;
68 num_configs = udev->descriptor.bNumConfigurations;
69 for (i = 0; i < num_configs; (i++, c++)) {
70 struct usb_interface_descriptor *desc = NULL;
71
72
73 if (c->desc.bNumInterfaces > 0)
74 desc = &c->intf_cache[0]->altsetting->desc;
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96#if 0
97
98 if (bus_powered && (c->desc.bmAttributes &
99 USB_CONFIG_ATT_SELFPOWER))
100 continue;
101#endif
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116 if (usb_get_max_power(udev, c) > udev->bus_mA) {
117 insufficient_power++;
118 continue;
119 }
120
121
122
123
124
125
126
127 if (desc && is_audio(desc)) {
128
129 if (is_uac3_config(desc)) {
130 best = c;
131 break;
132 }
133
134
135 else if (i == 0)
136 best = c;
137
138
139
140
141
142
143 continue;
144 }
145
146
147
148
149
150
151 if (i == 0 && num_configs > 1 && desc &&
152 (is_rndis(desc) || is_activesync(desc))) {
153#if !defined(CONFIG_USB_NET_RNDIS_HOST) && !defined(CONFIG_USB_NET_RNDIS_HOST_MODULE)
154 continue;
155#else
156 best = c;
157#endif
158 }
159
160
161
162
163
164 else if (udev->descriptor.bDeviceClass !=
165 USB_CLASS_VENDOR_SPEC &&
166 (desc && desc->bInterfaceClass !=
167 USB_CLASS_VENDOR_SPEC)) {
168 best = c;
169 break;
170 }
171
172
173
174 else if (!best)
175 best = c;
176 }
177
178 if (insufficient_power > 0)
179 dev_info(&udev->dev, "rejected %d configuration%s "
180 "due to insufficient available bus power\n",
181 insufficient_power, plural(insufficient_power));
182
183 if (best) {
184 i = best->desc.bConfigurationValue;
185 dev_dbg(&udev->dev,
186 "configuration #%d chosen from %d choice%s\n",
187 i, num_configs, plural(num_configs));
188 } else {
189 i = -1;
190 dev_warn(&udev->dev,
191 "no configuration chosen from %d choice%s\n",
192 num_configs, plural(num_configs));
193 }
194 return i;
195}
196EXPORT_SYMBOL_GPL(usb_choose_configuration);
197
198static int generic_probe(struct usb_device *udev)
199{
200 int err, c;
201
202
203
204
205 if (udev->authorized == 0)
206 dev_err(&udev->dev, "Device is not authorized for usage\n");
207 else {
208 c = usb_choose_configuration(udev);
209 if (c >= 0) {
210 err = usb_set_configuration(udev, c);
211 if (err && err != -ENODEV) {
212 dev_err(&udev->dev, "can't set config #%d, error %d\n",
213 c, err);
214
215
216 }
217 }
218 }
219
220 usb_notify_add_device(udev);
221
222 return 0;
223}
224
225static void generic_disconnect(struct usb_device *udev)
226{
227 usb_notify_remove_device(udev);
228
229
230
231 if (udev->actconfig)
232 usb_set_configuration(udev, -1);
233}
234
235#ifdef CONFIG_PM
236
237static int generic_suspend(struct usb_device *udev, pm_message_t msg)
238{
239 int rc;
240
241
242
243
244
245
246 if (!udev->parent)
247 rc = hcd_bus_suspend(udev, msg);
248
249
250
251
252
253
254 else if ((msg.event == PM_EVENT_FREEZE || msg.event == PM_EVENT_PRETHAW)
255 && (udev->speed < USB_SPEED_SUPER))
256 rc = 0;
257 else
258 rc = usb_port_suspend(udev, msg);
259
260 return rc;
261}
262
263static int generic_resume(struct usb_device *udev, pm_message_t msg)
264{
265 int rc;
266
267
268
269
270
271
272 if (!udev->parent)
273 rc = hcd_bus_resume(udev, msg);
274 else
275 rc = usb_port_resume(udev, msg);
276 return rc;
277}
278
279#endif
280
281struct usb_device_driver usb_generic_driver = {
282 .name = "usb",
283 .probe = generic_probe,
284 .disconnect = generic_disconnect,
285#ifdef CONFIG_PM
286 .suspend = generic_suspend,
287 .resume = generic_resume,
288#endif
289 .supports_autosuspend = 1,
290};
291