Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-2.0
2 : : /*
3 : : * USB hub driver.
4 : : *
5 : : * (C) Copyright 1999 Linus Torvalds
6 : : * (C) Copyright 1999 Johannes Erdfelt
7 : : * (C) Copyright 1999 Gregory P. Smith
8 : : * (C) Copyright 2001 Brad Hards (bhards@bigpond.net.au)
9 : : *
10 : : * Released under the GPLv2 only.
11 : : */
12 : :
13 : : #include <linux/kernel.h>
14 : : #include <linux/errno.h>
15 : : #include <linux/module.h>
16 : : #include <linux/moduleparam.h>
17 : : #include <linux/completion.h>
18 : : #include <linux/sched/mm.h>
19 : : #include <linux/list.h>
20 : : #include <linux/slab.h>
21 : : #include <linux/kcov.h>
22 : : #include <linux/ioctl.h>
23 : : #include <linux/usb.h>
24 : : #include <linux/usbdevice_fs.h>
25 : : #include <linux/usb/hcd.h>
26 : : #include <linux/usb/otg.h>
27 : : #include <linux/usb/quirks.h>
28 : : #include <linux/workqueue.h>
29 : : #include <linux/mutex.h>
30 : : #include <linux/random.h>
31 : : #include <linux/pm_qos.h>
32 : : #include <linux/kobject.h>
33 : :
34 : : #include <linux/uaccess.h>
35 : : #include <asm/byteorder.h>
36 : :
37 : : #include "hub.h"
38 : : #include "otg_whitelist.h"
39 : :
40 : : #define USB_VENDOR_GENESYS_LOGIC 0x05e3
41 : : #define USB_VENDOR_SMSC 0x0424
42 : : #define HUB_QUIRK_CHECK_PORT_AUTOSUSPEND 0x01
43 : : #define HUB_QUIRK_DISABLE_AUTOSUSPEND 0x02
44 : :
45 : : #define USB_TP_TRANSMISSION_DELAY 40 /* ns */
46 : : #define USB_TP_TRANSMISSION_DELAY_MAX 65535 /* ns */
47 : :
48 : : /* Protect struct usb_device->state and ->children members
49 : : * Note: Both are also protected by ->dev.sem, except that ->state can
50 : : * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */
51 : : static DEFINE_SPINLOCK(device_state_lock);
52 : :
53 : : /* workqueue to process hub events */
54 : : static struct workqueue_struct *hub_wq;
55 : : static void hub_event(struct work_struct *work);
56 : :
57 : : /* synchronize hub-port add/remove and peering operations */
58 : : DEFINE_MUTEX(usb_port_peer_mutex);
59 : :
60 : : /* cycle leds on hubs that aren't blinking for attention */
61 : : static bool blinkenlights;
62 : : module_param(blinkenlights, bool, S_IRUGO);
63 : : MODULE_PARM_DESC(blinkenlights, "true to cycle leds on hubs");
64 : :
65 : : /*
66 : : * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about
67 : : * 10 seconds to send reply for the initial 64-byte descriptor request.
68 : : */
69 : : /* define initial 64-byte descriptor request timeout in milliseconds */
70 : : static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT;
71 : : module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR);
72 : : MODULE_PARM_DESC(initial_descriptor_timeout,
73 : : "initial 64-byte descriptor request timeout in milliseconds "
74 : : "(default 5000 - 5.0 seconds)");
75 : :
76 : : /*
77 : : * As of 2.6.10 we introduce a new USB device initialization scheme which
78 : : * closely resembles the way Windows works. Hopefully it will be compatible
79 : : * with a wider range of devices than the old scheme. However some previously
80 : : * working devices may start giving rise to "device not accepting address"
81 : : * errors; if that happens the user can try the old scheme by adjusting the
82 : : * following module parameters.
83 : : *
84 : : * For maximum flexibility there are two boolean parameters to control the
85 : : * hub driver's behavior. On the first initialization attempt, if the
86 : : * "old_scheme_first" parameter is set then the old scheme will be used,
87 : : * otherwise the new scheme is used. If that fails and "use_both_schemes"
88 : : * is set, then the driver will make another attempt, using the other scheme.
89 : : */
90 : : static bool old_scheme_first;
91 : : module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR);
92 : : MODULE_PARM_DESC(old_scheme_first,
93 : : "start with the old device initialization scheme");
94 : :
95 : : static bool use_both_schemes = 1;
96 : : module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR);
97 : : MODULE_PARM_DESC(use_both_schemes,
98 : : "try the other device initialization scheme if the "
99 : : "first one fails");
100 : :
101 : : /* Mutual exclusion for EHCI CF initialization. This interferes with
102 : : * port reset on some companion controllers.
103 : : */
104 : : DECLARE_RWSEM(ehci_cf_port_reset_rwsem);
105 : : EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem);
106 : :
107 : : #define HUB_DEBOUNCE_TIMEOUT 2000
108 : : #define HUB_DEBOUNCE_STEP 25
109 : : #define HUB_DEBOUNCE_STABLE 100
110 : :
111 : : static void hub_release(struct kref *kref);
112 : : static int usb_reset_and_verify_device(struct usb_device *udev);
113 : : static int hub_port_disable(struct usb_hub *hub, int port1, int set_state);
114 : : static bool hub_port_warm_reset_required(struct usb_hub *hub, int port1,
115 : : u16 portstatus);
116 : :
117 : : static inline char *portspeed(struct usb_hub *hub, int portstatus)
118 : : {
119 : : if (hub_is_superspeedplus(hub->hdev))
120 : : return "10.0 Gb/s";
121 : : if (hub_is_superspeed(hub->hdev))
122 : : return "5.0 Gb/s";
123 : : if (portstatus & USB_PORT_STAT_HIGH_SPEED)
124 : : return "480 Mb/s";
125 : : else if (portstatus & USB_PORT_STAT_LOW_SPEED)
126 : : return "1.5 Mb/s";
127 : : else
128 : : return "12 Mb/s";
129 : : }
130 : :
131 : : /* Note that hdev or one of its children must be locked! */
132 : 0 : struct usb_hub *usb_hub_to_struct_hub(struct usb_device *hdev)
133 : : {
134 [ # # # # : 0 : if (!hdev || !hdev->actconfig || !hdev->maxchild)
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # ]
135 : : return NULL;
136 [ # # # # : 0 : return usb_get_intfdata(hdev->actconfig->interface[0]);
# # # # #
# # # # #
# # # # ]
137 : : }
138 : :
139 : 0 : int usb_device_supports_lpm(struct usb_device *udev)
140 : : {
141 : : /* Some devices have trouble with LPM */
142 [ # # ]: 0 : if (udev->quirks & USB_QUIRK_NO_LPM)
143 : : return 0;
144 : :
145 : : /* USB 2.1 (and greater) devices indicate LPM support through
146 : : * their USB 2.0 Extended Capabilities BOS descriptor.
147 : : */
148 [ # # ]: 0 : if (udev->speed == USB_SPEED_HIGH || udev->speed == USB_SPEED_FULL) {
149 [ # # ]: 0 : if (udev->bos->ext_cap &&
150 : 0 : (USB_LPM_SUPPORT &
151 [ # # ]: 0 : le32_to_cpu(udev->bos->ext_cap->bmAttributes)))
152 : : return 1;
153 : 0 : return 0;
154 : : }
155 : :
156 : : /*
157 : : * According to the USB 3.0 spec, all USB 3.0 devices must support LPM.
158 : : * However, there are some that don't, and they set the U1/U2 exit
159 : : * latencies to zero.
160 : : */
161 [ # # ]: 0 : if (!udev->bos->ss_cap) {
162 : 0 : dev_info(&udev->dev, "No LPM exit latency info found, disabling LPM.\n");
163 : 0 : return 0;
164 : : }
165 : :
166 [ # # ]: 0 : if (udev->bos->ss_cap->bU1devExitLat == 0 &&
167 [ # # ]: 0 : udev->bos->ss_cap->bU2DevExitLat == 0) {
168 [ # # ]: 0 : if (udev->parent)
169 : 0 : dev_info(&udev->dev, "LPM exit latency is zeroed, disabling LPM.\n");
170 : : else
171 : 0 : dev_info(&udev->dev, "We don't know the algorithms for LPM for this host, disabling LPM.\n");
172 : 0 : return 0;
173 : : }
174 : :
175 [ # # # # ]: 0 : if (!udev->parent || udev->parent->lpm_capable)
176 : 0 : return 1;
177 : : return 0;
178 : : }
179 : :
180 : : /*
181 : : * Set the Maximum Exit Latency (MEL) for the host to initiate a transition from
182 : : * either U1 or U2.
183 : : */
184 : 0 : static void usb_set_lpm_mel(struct usb_device *udev,
185 : : struct usb3_lpm_parameters *udev_lpm_params,
186 : : unsigned int udev_exit_latency,
187 : : struct usb_hub *hub,
188 : : struct usb3_lpm_parameters *hub_lpm_params,
189 : : unsigned int hub_exit_latency)
190 : : {
191 : 0 : unsigned int total_mel;
192 : 0 : unsigned int device_mel;
193 : 0 : unsigned int hub_mel;
194 : :
195 : : /*
196 : : * Calculate the time it takes to transition all links from the roothub
197 : : * to the parent hub into U0. The parent hub must then decode the
198 : : * packet (hub header decode latency) to figure out which port it was
199 : : * bound for.
200 : : *
201 : : * The Hub Header decode latency is expressed in 0.1us intervals (0x1
202 : : * means 0.1us). Multiply that by 100 to get nanoseconds.
203 : : */
204 : 0 : total_mel = hub_lpm_params->mel +
205 : 0 : (hub->descriptor->u.ss.bHubHdrDecLat * 100);
206 : :
207 : : /*
208 : : * How long will it take to transition the downstream hub's port into
209 : : * U0? The greater of either the hub exit latency or the device exit
210 : : * latency.
211 : : *
212 : : * The BOS U1/U2 exit latencies are expressed in 1us intervals.
213 : : * Multiply that by 1000 to get nanoseconds.
214 : : */
215 : 0 : device_mel = udev_exit_latency * 1000;
216 : 0 : hub_mel = hub_exit_latency * 1000;
217 : 0 : if (device_mel > hub_mel)
218 : 0 : total_mel += device_mel;
219 : : else
220 : 0 : total_mel += hub_mel;
221 : :
222 : 0 : udev_lpm_params->mel = total_mel;
223 : : }
224 : :
225 : : /*
226 : : * Set the maximum Device to Host Exit Latency (PEL) for the device to initiate
227 : : * a transition from either U1 or U2.
228 : : */
229 : 0 : static void usb_set_lpm_pel(struct usb_device *udev,
230 : : struct usb3_lpm_parameters *udev_lpm_params,
231 : : unsigned int udev_exit_latency,
232 : : struct usb_hub *hub,
233 : : struct usb3_lpm_parameters *hub_lpm_params,
234 : : unsigned int hub_exit_latency,
235 : : unsigned int port_to_port_exit_latency)
236 : : {
237 : 0 : unsigned int first_link_pel;
238 : 0 : unsigned int hub_pel;
239 : :
240 : : /*
241 : : * First, the device sends an LFPS to transition the link between the
242 : : * device and the parent hub into U0. The exit latency is the bigger of
243 : : * the device exit latency or the hub exit latency.
244 : : */
245 : 0 : if (udev_exit_latency > hub_exit_latency)
246 : : first_link_pel = udev_exit_latency * 1000;
247 : : else
248 : 0 : first_link_pel = hub_exit_latency * 1000;
249 : :
250 : : /*
251 : : * When the hub starts to receive the LFPS, there is a slight delay for
252 : : * it to figure out that one of the ports is sending an LFPS. Then it
253 : : * will forward the LFPS to its upstream link. The exit latency is the
254 : : * delay, plus the PEL that we calculated for this hub.
255 : : */
256 : 0 : hub_pel = port_to_port_exit_latency * 1000 + hub_lpm_params->pel;
257 : :
258 : : /*
259 : : * According to figure C-7 in the USB 3.0 spec, the PEL for this device
260 : : * is the greater of the two exit latencies.
261 : : */
262 [ # # # # ]: 0 : if (first_link_pel > hub_pel)
263 : 0 : udev_lpm_params->pel = first_link_pel;
264 : : else
265 : 0 : udev_lpm_params->pel = hub_pel;
266 : : }
267 : :
268 : : /*
269 : : * Set the System Exit Latency (SEL) to indicate the total worst-case time from
270 : : * when a device initiates a transition to U0, until when it will receive the
271 : : * first packet from the host controller.
272 : : *
273 : : * Section C.1.5.1 describes the four components to this:
274 : : * - t1: device PEL
275 : : * - t2: time for the ERDY to make it from the device to the host.
276 : : * - t3: a host-specific delay to process the ERDY.
277 : : * - t4: time for the packet to make it from the host to the device.
278 : : *
279 : : * t3 is specific to both the xHCI host and the platform the host is integrated
280 : : * into. The Intel HW folks have said it's negligible, FIXME if a different
281 : : * vendor says otherwise.
282 : : */
283 : 0 : static void usb_set_lpm_sel(struct usb_device *udev,
284 : : struct usb3_lpm_parameters *udev_lpm_params)
285 : : {
286 : 0 : struct usb_device *parent;
287 : 0 : unsigned int num_hubs;
288 : 0 : unsigned int total_sel;
289 : :
290 : : /* t1 = device PEL */
291 : 0 : total_sel = udev_lpm_params->pel;
292 : : /* How many external hubs are in between the device & the root port. */
293 [ # # # # ]: 0 : for (parent = udev->parent, num_hubs = 0; parent->parent;
294 : 0 : parent = parent->parent)
295 : 0 : num_hubs++;
296 : : /* t2 = 2.1us + 250ns * (num_hubs - 1) */
297 [ # # # # ]: 0 : if (num_hubs > 0)
298 : 0 : total_sel += 2100 + 250 * (num_hubs - 1);
299 : :
300 : : /* t4 = 250ns * num_hubs */
301 : 0 : total_sel += 250 * num_hubs;
302 : :
303 : 0 : udev_lpm_params->sel = total_sel;
304 : 0 : }
305 : :
306 : 0 : static void usb_set_lpm_parameters(struct usb_device *udev)
307 : : {
308 : 0 : struct usb_hub *hub;
309 : 0 : unsigned int port_to_port_delay;
310 : 0 : unsigned int udev_u1_del;
311 : 0 : unsigned int udev_u2_del;
312 : 0 : unsigned int hub_u1_del;
313 : 0 : unsigned int hub_u2_del;
314 : :
315 [ # # # # ]: 0 : if (!udev->lpm_capable || udev->speed < USB_SPEED_SUPER)
316 : : return;
317 : :
318 [ # # ]: 0 : hub = usb_hub_to_struct_hub(udev->parent);
319 : : /* It doesn't take time to transition the roothub into U0, since it
320 : : * doesn't have an upstream link.
321 : : */
322 [ # # ]: 0 : if (!hub)
323 : : return;
324 : :
325 : 0 : udev_u1_del = udev->bos->ss_cap->bU1devExitLat;
326 : 0 : udev_u2_del = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat);
327 : 0 : hub_u1_del = udev->parent->bos->ss_cap->bU1devExitLat;
328 : 0 : hub_u2_del = le16_to_cpu(udev->parent->bos->ss_cap->bU2DevExitLat);
329 : :
330 [ # # ]: 0 : usb_set_lpm_mel(udev, &udev->u1_params, udev_u1_del,
331 : : hub, &udev->parent->u1_params, hub_u1_del);
332 : :
333 [ # # ]: 0 : usb_set_lpm_mel(udev, &udev->u2_params, udev_u2_del,
334 : : hub, &udev->parent->u2_params, hub_u2_del);
335 : :
336 : : /*
337 : : * Appendix C, section C.2.2.2, says that there is a slight delay from
338 : : * when the parent hub notices the downstream port is trying to
339 : : * transition to U0 to when the hub initiates a U0 transition on its
340 : : * upstream port. The section says the delays are tPort2PortU1EL and
341 : : * tPort2PortU2EL, but it doesn't define what they are.
342 : : *
343 : : * The hub chapter, sections 10.4.2.4 and 10.4.2.5 seem to be talking
344 : : * about the same delays. Use the maximum delay calculations from those
345 : : * sections. For U1, it's tHubPort2PortExitLat, which is 1us max. For
346 : : * U2, it's tHubPort2PortExitLat + U2DevExitLat - U1DevExitLat. I
347 : : * assume the device exit latencies they are talking about are the hub
348 : : * exit latencies.
349 : : *
350 : : * What do we do if the U2 exit latency is less than the U1 exit
351 : : * latency? It's possible, although not likely...
352 : : */
353 : 0 : port_to_port_delay = 1;
354 : :
355 [ # # ]: 0 : usb_set_lpm_pel(udev, &udev->u1_params, udev_u1_del,
356 : : hub, &udev->parent->u1_params, hub_u1_del,
357 : : port_to_port_delay);
358 : :
359 [ # # ]: 0 : if (hub_u2_del > hub_u1_del)
360 : 0 : port_to_port_delay = 1 + hub_u2_del - hub_u1_del;
361 : : else
362 : 0 : port_to_port_delay = 1 + hub_u1_del;
363 : :
364 [ # # ]: 0 : usb_set_lpm_pel(udev, &udev->u2_params, udev_u2_del,
365 : : hub, &udev->parent->u2_params, hub_u2_del,
366 : : port_to_port_delay);
367 : :
368 : : /* Now that we've got PEL, calculate SEL. */
369 : 0 : usb_set_lpm_sel(udev, &udev->u1_params);
370 : 0 : usb_set_lpm_sel(udev, &udev->u2_params);
371 : : }
372 : :
373 : : /* USB 2.0 spec Section 11.24.4.5 */
374 : 0 : static int get_hub_descriptor(struct usb_device *hdev,
375 : : struct usb_hub_descriptor *desc)
376 : : {
377 : 0 : int i, ret, size;
378 : 0 : unsigned dtype;
379 : :
380 [ # # ]: 0 : if (hub_is_superspeed(hdev)) {
381 : : dtype = USB_DT_SS_HUB;
382 : : size = USB_DT_SS_HUB_SIZE;
383 : : } else {
384 : 0 : dtype = USB_DT_HUB;
385 : 0 : size = sizeof(struct usb_hub_descriptor);
386 : : }
387 : :
388 [ # # ]: 0 : for (i = 0; i < 3; i++) {
389 : 0 : ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
390 : : USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB,
391 : 0 : dtype << 8, 0, desc, size,
392 : : USB_CTRL_GET_TIMEOUT);
393 [ # # ]: 0 : if (hub_is_superspeed(hdev)) {
394 [ # # ]: 0 : if (ret == size)
395 : 0 : return ret;
396 [ # # ]: 0 : } else if (ret >= USB_DT_HUB_NONVAR_SIZE + 2) {
397 : : /* Make sure we have the DeviceRemovable field. */
398 : 0 : size = USB_DT_HUB_NONVAR_SIZE + desc->bNbrPorts / 8 + 1;
399 [ # # ]: 0 : if (ret < size)
400 : : return -EMSGSIZE;
401 : 0 : return ret;
402 : : }
403 : : }
404 : : return -EINVAL;
405 : : }
406 : :
407 : : /*
408 : : * USB 2.0 spec Section 11.24.2.1
409 : : */
410 : 0 : static int clear_hub_feature(struct usb_device *hdev, int feature)
411 : : {
412 : 0 : return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
413 : : USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000);
414 : : }
415 : :
416 : : /*
417 : : * USB 2.0 spec Section 11.24.2.2
418 : : */
419 : 0 : int usb_clear_port_feature(struct usb_device *hdev, int port1, int feature)
420 : : {
421 : 0 : return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
422 : : USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1,
423 : : NULL, 0, 1000);
424 : : }
425 : :
426 : : /*
427 : : * USB 2.0 spec Section 11.24.2.13
428 : : */
429 : 0 : static int set_port_feature(struct usb_device *hdev, int port1, int feature)
430 : : {
431 : 0 : return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
432 : : USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1,
433 : : NULL, 0, 1000);
434 : : }
435 : :
436 : : static char *to_led_name(int selector)
437 : : {
438 : : switch (selector) {
439 : : case HUB_LED_AMBER:
440 : : return "amber";
441 : : case HUB_LED_GREEN:
442 : : return "green";
443 : : case HUB_LED_OFF:
444 : : return "off";
445 : : case HUB_LED_AUTO:
446 : : return "auto";
447 : : default:
448 : : return "??";
449 : : }
450 : : }
451 : :
452 : : /*
453 : : * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7
454 : : * for info about using port indicators
455 : : */
456 : 0 : static void set_port_led(struct usb_hub *hub, int port1, int selector)
457 : : {
458 : 0 : struct usb_port *port_dev = hub->ports[port1 - 1];
459 : 0 : int status;
460 : :
461 : 0 : status = set_port_feature(hub->hdev, (selector << 8) | port1,
462 : : USB_PORT_FEAT_INDICATOR);
463 : 0 : dev_dbg(&port_dev->dev, "indicator %s status %d\n",
464 : : to_led_name(selector), status);
465 : : }
466 : :
467 : : #define LED_CYCLE_PERIOD ((2*HZ)/3)
468 : :
469 : 0 : static void led_work(struct work_struct *work)
470 : : {
471 : 0 : struct usb_hub *hub =
472 : 0 : container_of(work, struct usb_hub, leds.work);
473 : 0 : struct usb_device *hdev = hub->hdev;
474 : 0 : unsigned i;
475 : 0 : unsigned changed = 0;
476 : 0 : int cursor = -1;
477 : :
478 [ # # # # ]: 0 : if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing)
479 : : return;
480 : :
481 [ # # ]: 0 : for (i = 0; i < hdev->maxchild; i++) {
482 : 0 : unsigned selector, mode;
483 : :
484 : : /* 30%-50% duty cycle */
485 : :
486 [ # # # # : 0 : switch (hub->indicator[i]) {
# # # # ]
487 : : /* cycle marker */
488 : 0 : case INDICATOR_CYCLE:
489 : 0 : cursor = i;
490 : 0 : selector = HUB_LED_AUTO;
491 : 0 : mode = INDICATOR_AUTO;
492 : 0 : break;
493 : : /* blinking green = sw attention */
494 : : case INDICATOR_GREEN_BLINK:
495 : : selector = HUB_LED_GREEN;
496 : : mode = INDICATOR_GREEN_BLINK_OFF;
497 : : break;
498 : 0 : case INDICATOR_GREEN_BLINK_OFF:
499 : 0 : selector = HUB_LED_OFF;
500 : 0 : mode = INDICATOR_GREEN_BLINK;
501 : 0 : break;
502 : : /* blinking amber = hw attention */
503 : 0 : case INDICATOR_AMBER_BLINK:
504 : 0 : selector = HUB_LED_AMBER;
505 : 0 : mode = INDICATOR_AMBER_BLINK_OFF;
506 : 0 : break;
507 : 0 : case INDICATOR_AMBER_BLINK_OFF:
508 : 0 : selector = HUB_LED_OFF;
509 : 0 : mode = INDICATOR_AMBER_BLINK;
510 : 0 : break;
511 : : /* blink green/amber = reserved */
512 : 0 : case INDICATOR_ALT_BLINK:
513 : 0 : selector = HUB_LED_GREEN;
514 : 0 : mode = INDICATOR_ALT_BLINK_OFF;
515 : 0 : break;
516 : 0 : case INDICATOR_ALT_BLINK_OFF:
517 : 0 : selector = HUB_LED_AMBER;
518 : 0 : mode = INDICATOR_ALT_BLINK;
519 : 0 : break;
520 : 0 : default:
521 : 0 : continue;
522 : : }
523 [ # # ]: 0 : if (selector != HUB_LED_AUTO)
524 : 0 : changed = 1;
525 : 0 : set_port_led(hub, i + 1, selector);
526 : 0 : hub->indicator[i] = mode;
527 : : }
528 [ # # # # ]: 0 : if (!changed && blinkenlights) {
529 : 0 : cursor++;
530 : 0 : cursor %= hdev->maxchild;
531 : 0 : set_port_led(hub, cursor + 1, HUB_LED_GREEN);
532 : 0 : hub->indicator[cursor] = INDICATOR_CYCLE;
533 : 0 : changed++;
534 : : }
535 [ # # ]: 0 : if (changed)
536 : 0 : queue_delayed_work(system_power_efficient_wq,
537 : : &hub->leds, LED_CYCLE_PERIOD);
538 : : }
539 : :
540 : : /* use a short timeout for hub/port status fetches */
541 : : #define USB_STS_TIMEOUT 1000
542 : : #define USB_STS_RETRIES 5
543 : :
544 : : /*
545 : : * USB 2.0 spec Section 11.24.2.6
546 : : */
547 : 0 : static int get_hub_status(struct usb_device *hdev,
548 : : struct usb_hub_status *data)
549 : : {
550 : 0 : int i, status = -ETIMEDOUT;
551 : :
552 [ # # ]: 0 : for (i = 0; i < USB_STS_RETRIES &&
553 [ # # ]: 0 : (status == -ETIMEDOUT || status == -EPIPE); i++) {
554 : 0 : status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
555 : : USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0,
556 : : data, sizeof(*data), USB_STS_TIMEOUT);
557 : : }
558 : 0 : return status;
559 : : }
560 : :
561 : : /*
562 : : * USB 2.0 spec Section 11.24.2.7
563 : : * USB 3.1 takes into use the wValue and wLength fields, spec Section 10.16.2.6
564 : : */
565 : 0 : static int get_port_status(struct usb_device *hdev, int port1,
566 : : void *data, u16 value, u16 length)
567 : : {
568 : 0 : int i, status = -ETIMEDOUT;
569 : :
570 [ # # ]: 0 : for (i = 0; i < USB_STS_RETRIES &&
571 [ # # ]: 0 : (status == -ETIMEDOUT || status == -EPIPE); i++) {
572 : 0 : status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0),
573 : : USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, value,
574 : : port1, data, length, USB_STS_TIMEOUT);
575 : : }
576 : 0 : return status;
577 : : }
578 : :
579 : 0 : static int hub_ext_port_status(struct usb_hub *hub, int port1, int type,
580 : : u16 *status, u16 *change, u32 *ext_status)
581 : : {
582 : 0 : int ret;
583 : 0 : int len = 4;
584 : :
585 [ # # ]: 0 : if (type != HUB_PORT_STATUS)
586 : 0 : len = 8;
587 : :
588 : 0 : mutex_lock(&hub->status_mutex);
589 : 0 : ret = get_port_status(hub->hdev, port1, &hub->status->port, type, len);
590 [ # # ]: 0 : if (ret < len) {
591 [ # # ]: 0 : if (ret != -ENODEV)
592 : 0 : dev_err(hub->intfdev,
593 : : "%s failed (err = %d)\n", __func__, ret);
594 [ # # ]: 0 : if (ret >= 0)
595 : 0 : ret = -EIO;
596 : : } else {
597 : 0 : *status = le16_to_cpu(hub->status->port.wPortStatus);
598 : 0 : *change = le16_to_cpu(hub->status->port.wPortChange);
599 [ # # ]: 0 : if (type != HUB_PORT_STATUS && ext_status)
600 : 0 : *ext_status = le32_to_cpu(
601 : : hub->status->port.dwExtPortStatus);
602 : : ret = 0;
603 : : }
604 : 0 : mutex_unlock(&hub->status_mutex);
605 : 0 : return ret;
606 : : }
607 : :
608 : 0 : static int hub_port_status(struct usb_hub *hub, int port1,
609 : : u16 *status, u16 *change)
610 : : {
611 : 0 : return hub_ext_port_status(hub, port1, HUB_PORT_STATUS,
612 : : status, change, NULL);
613 : : }
614 : :
615 : 0 : static void hub_resubmit_irq_urb(struct usb_hub *hub)
616 : : {
617 : 0 : unsigned long flags;
618 : 0 : int status;
619 : :
620 : 0 : spin_lock_irqsave(&hub->irq_urb_lock, flags);
621 : :
622 [ # # ]: 0 : if (hub->quiescing) {
623 : 0 : spin_unlock_irqrestore(&hub->irq_urb_lock, flags);
624 : 0 : return;
625 : : }
626 : :
627 : 0 : status = usb_submit_urb(hub->urb, GFP_ATOMIC);
628 [ # # ]: 0 : if (status && status != -ENODEV && status != -EPERM &&
629 [ # # ]: 0 : status != -ESHUTDOWN) {
630 : 0 : dev_err(hub->intfdev, "resubmit --> %d\n", status);
631 : 0 : mod_timer(&hub->irq_urb_retry, jiffies + HZ);
632 : : }
633 : :
634 : 0 : spin_unlock_irqrestore(&hub->irq_urb_lock, flags);
635 : : }
636 : :
637 : 0 : static void hub_retry_irq_urb(struct timer_list *t)
638 : : {
639 : 0 : struct usb_hub *hub = from_timer(hub, t, irq_urb_retry);
640 : :
641 : 0 : hub_resubmit_irq_urb(hub);
642 : 0 : }
643 : :
644 : :
645 : 0 : static void kick_hub_wq(struct usb_hub *hub)
646 : : {
647 : 0 : struct usb_interface *intf;
648 : :
649 [ # # # # ]: 0 : if (hub->disconnected || work_pending(&hub->events))
650 : 0 : return;
651 : :
652 : : /*
653 : : * Suppress autosuspend until the event is proceed.
654 : : *
655 : : * Be careful and make sure that the symmetric operation is
656 : : * always called. We are here only when there is no pending
657 : : * work for this hub. Therefore put the interface either when
658 : : * the new work is called or when it is canceled.
659 : : */
660 : 0 : intf = to_usb_interface(hub->intfdev);
661 : 0 : usb_autopm_get_interface_no_resume(intf);
662 : 0 : kref_get(&hub->kref);
663 : :
664 [ # # ]: 0 : if (queue_work(hub_wq, &hub->events))
665 : : return;
666 : :
667 : : /* the work has already been scheduled */
668 : 0 : usb_autopm_put_interface_async(intf);
669 : 0 : kref_put(&hub->kref, hub_release);
670 : : }
671 : :
672 : 0 : void usb_kick_hub_wq(struct usb_device *hdev)
673 : : {
674 [ # # ]: 0 : struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
675 : :
676 [ # # ]: 0 : if (hub)
677 : 0 : kick_hub_wq(hub);
678 : 0 : }
679 : :
680 : : /*
681 : : * Let the USB core know that a USB 3.0 device has sent a Function Wake Device
682 : : * Notification, which indicates it had initiated remote wakeup.
683 : : *
684 : : * USB 3.0 hubs do not report the port link state change from U3 to U0 when the
685 : : * device initiates resume, so the USB core will not receive notice of the
686 : : * resume through the normal hub interrupt URB.
687 : : */
688 : 0 : void usb_wakeup_notification(struct usb_device *hdev,
689 : : unsigned int portnum)
690 : : {
691 : 0 : struct usb_hub *hub;
692 : 0 : struct usb_port *port_dev;
693 : :
694 [ # # ]: 0 : if (!hdev)
695 : : return;
696 : :
697 [ # # ]: 0 : hub = usb_hub_to_struct_hub(hdev);
698 [ # # ]: 0 : if (hub) {
699 : 0 : port_dev = hub->ports[portnum - 1];
700 [ # # # # ]: 0 : if (port_dev && port_dev->child)
701 : 0 : pm_wakeup_event(&port_dev->child->dev, 0);
702 : :
703 : 0 : set_bit(portnum, hub->wakeup_bits);
704 : 0 : kick_hub_wq(hub);
705 : : }
706 : : }
707 : : EXPORT_SYMBOL_GPL(usb_wakeup_notification);
708 : :
709 : : /* completion function, fires on port status changes and various faults */
710 : 0 : static void hub_irq(struct urb *urb)
711 : : {
712 : 0 : struct usb_hub *hub = urb->context;
713 : 0 : int status = urb->status;
714 : 0 : unsigned i;
715 : 0 : unsigned long bits;
716 : :
717 [ # # # ]: 0 : switch (status) {
718 : : case -ENOENT: /* synchronous unlink */
719 : : case -ECONNRESET: /* async unlink */
720 : : case -ESHUTDOWN: /* hardware going away */
721 : : return;
722 : :
723 : : default: /* presumably an error */
724 : : /* Cause a hub reset after 10 consecutive errors */
725 : 0 : dev_dbg(hub->intfdev, "transfer --> %d\n", status);
726 [ # # # # ]: 0 : if ((++hub->nerrors < 10) || hub->error)
727 : 0 : goto resubmit;
728 : 0 : hub->error = status;
729 : : /* FALL THROUGH */
730 : :
731 : : /* let hub_wq handle things */
732 : 0 : case 0: /* we got data: port status changed */
733 : 0 : bits = 0;
734 [ # # ]: 0 : for (i = 0; i < urb->actual_length; ++i)
735 : 0 : bits |= ((unsigned long) ((*hub->buffer)[i]))
736 : 0 : << (i*8);
737 : 0 : hub->event_bits[0] = bits;
738 : 0 : break;
739 : : }
740 : :
741 : 0 : hub->nerrors = 0;
742 : :
743 : : /* Something happened, let hub_wq figure it out */
744 : 0 : kick_hub_wq(hub);
745 : :
746 : 0 : resubmit:
747 : 0 : hub_resubmit_irq_urb(hub);
748 : : }
749 : :
750 : : /* USB 2.0 spec Section 11.24.2.3 */
751 : : static inline int
752 : 0 : hub_clear_tt_buffer(struct usb_device *hdev, u16 devinfo, u16 tt)
753 : : {
754 : : /* Need to clear both directions for control ep */
755 [ # # ]: 0 : if (((devinfo >> 11) & USB_ENDPOINT_XFERTYPE_MASK) ==
756 : : USB_ENDPOINT_XFER_CONTROL) {
757 : 0 : int status = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
758 : : HUB_CLEAR_TT_BUFFER, USB_RT_PORT,
759 : : devinfo ^ 0x8000, tt, NULL, 0, 1000);
760 [ # # ]: 0 : if (status)
761 : : return status;
762 : : }
763 : 0 : return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
764 : : HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo,
765 : : tt, NULL, 0, 1000);
766 : : }
767 : :
768 : : /*
769 : : * enumeration blocks hub_wq for a long time. we use keventd instead, since
770 : : * long blocking there is the exception, not the rule. accordingly, HCDs
771 : : * talking to TTs must queue control transfers (not just bulk and iso), so
772 : : * both can talk to the same hub concurrently.
773 : : */
774 : 0 : static void hub_tt_work(struct work_struct *work)
775 : : {
776 : 0 : struct usb_hub *hub =
777 : 0 : container_of(work, struct usb_hub, tt.clear_work);
778 : 0 : unsigned long flags;
779 : :
780 : 0 : spin_lock_irqsave(&hub->tt.lock, flags);
781 : 0 : while (!list_empty(&hub->tt.clear_list)) {
782 : 0 : struct list_head *next;
783 : 0 : struct usb_tt_clear *clear;
784 : 0 : struct usb_device *hdev = hub->hdev;
785 : 0 : const struct hc_driver *drv;
786 : 0 : int status;
787 : :
788 : 0 : next = hub->tt.clear_list.next;
789 : 0 : clear = list_entry(next, struct usb_tt_clear, clear_list);
790 : 0 : list_del(&clear->clear_list);
791 : :
792 : : /* drop lock so HCD can concurrently report other TT errors */
793 : 0 : spin_unlock_irqrestore(&hub->tt.lock, flags);
794 : 0 : status = hub_clear_tt_buffer(hdev, clear->devinfo, clear->tt);
795 [ # # ]: 0 : if (status && status != -ENODEV)
796 : 0 : dev_err(&hdev->dev,
797 : : "clear tt %d (%04x) error %d\n",
798 : : clear->tt, clear->devinfo, status);
799 : :
800 : : /* Tell the HCD, even if the operation failed */
801 : 0 : drv = clear->hcd->driver;
802 [ # # ]: 0 : if (drv->clear_tt_buffer_complete)
803 : 0 : (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep);
804 : :
805 : 0 : kfree(clear);
806 [ # # ]: 0 : spin_lock_irqsave(&hub->tt.lock, flags);
807 : : }
808 : 0 : spin_unlock_irqrestore(&hub->tt.lock, flags);
809 : 0 : }
810 : :
811 : : /**
812 : : * usb_hub_set_port_power - control hub port's power state
813 : : * @hdev: USB device belonging to the usb hub
814 : : * @hub: target hub
815 : : * @port1: port index
816 : : * @set: expected status
817 : : *
818 : : * call this function to control port's power via setting or
819 : : * clearing the port's PORT_POWER feature.
820 : : *
821 : : * Return: 0 if successful. A negative error code otherwise.
822 : : */
823 : 0 : int usb_hub_set_port_power(struct usb_device *hdev, struct usb_hub *hub,
824 : : int port1, bool set)
825 : : {
826 : 0 : int ret;
827 : :
828 [ # # ]: 0 : if (set)
829 : 0 : ret = set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
830 : : else
831 : 0 : ret = usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
832 : :
833 [ # # ]: 0 : if (ret)
834 : : return ret;
835 : :
836 [ # # ]: 0 : if (set)
837 : 0 : set_bit(port1, hub->power_bits);
838 : : else
839 : 0 : clear_bit(port1, hub->power_bits);
840 : : return 0;
841 : : }
842 : :
843 : : /**
844 : : * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub
845 : : * @urb: an URB associated with the failed or incomplete split transaction
846 : : *
847 : : * High speed HCDs use this to tell the hub driver that some split control or
848 : : * bulk transaction failed in a way that requires clearing internal state of
849 : : * a transaction translator. This is normally detected (and reported) from
850 : : * interrupt context.
851 : : *
852 : : * It may not be possible for that hub to handle additional full (or low)
853 : : * speed transactions until that state is fully cleared out.
854 : : *
855 : : * Return: 0 if successful. A negative error code otherwise.
856 : : */
857 : 0 : int usb_hub_clear_tt_buffer(struct urb *urb)
858 : : {
859 : 0 : struct usb_device *udev = urb->dev;
860 : 0 : int pipe = urb->pipe;
861 : 0 : struct usb_tt *tt = udev->tt;
862 : 0 : unsigned long flags;
863 : 0 : struct usb_tt_clear *clear;
864 : :
865 : : /* we've got to cope with an arbitrary number of pending TT clears,
866 : : * since each TT has "at least two" buffers that can need it (and
867 : : * there can be many TTs per hub). even if they're uncommon.
868 : : */
869 : 0 : clear = kmalloc(sizeof *clear, GFP_ATOMIC);
870 [ # # ]: 0 : if (clear == NULL) {
871 : 0 : dev_err(&udev->dev, "can't save CLEAR_TT_BUFFER state\n");
872 : : /* FIXME recover somehow ... RESET_TT? */
873 : 0 : return -ENOMEM;
874 : : }
875 : :
876 : : /* info that CLEAR_TT_BUFFER needs */
877 [ # # ]: 0 : clear->tt = tt->multi ? udev->ttport : 1;
878 : 0 : clear->devinfo = usb_pipeendpoint (pipe);
879 : 0 : clear->devinfo |= ((u16)udev->devaddr) << 4;
880 [ # # ]: 0 : clear->devinfo |= usb_pipecontrol(pipe)
881 : : ? (USB_ENDPOINT_XFER_CONTROL << 11)
882 : : : (USB_ENDPOINT_XFER_BULK << 11);
883 [ # # ]: 0 : if (usb_pipein(pipe))
884 : 0 : clear->devinfo |= 1 << 15;
885 : :
886 : : /* info for completion callback */
887 : 0 : clear->hcd = bus_to_hcd(udev->bus);
888 : 0 : clear->ep = urb->ep;
889 : :
890 : : /* tell keventd to clear state for this TT */
891 : 0 : spin_lock_irqsave(&tt->lock, flags);
892 : 0 : list_add_tail(&clear->clear_list, &tt->clear_list);
893 : 0 : schedule_work(&tt->clear_work);
894 : 0 : spin_unlock_irqrestore(&tt->lock, flags);
895 : 0 : return 0;
896 : : }
897 : : EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer);
898 : :
899 : 0 : static void hub_power_on(struct usb_hub *hub, bool do_delay)
900 : : {
901 : 0 : int port1;
902 : :
903 : : /* Enable power on each port. Some hubs have reserved values
904 : : * of LPSM (> 2) in their descriptors, even though they are
905 : : * USB 2.0 hubs. Some hubs do not implement port-power switching
906 : : * but only emulate it. In all cases, the ports won't work
907 : : * unless we send these messages to the hub.
908 : : */
909 : 0 : if (hub_is_port_power_switchable(hub))
910 : : dev_dbg(hub->intfdev, "enabling power on all ports\n");
911 : : else
912 : : dev_dbg(hub->intfdev, "trying to enable port power on "
913 : : "non-switchable hub\n");
914 [ # # ]: 0 : for (port1 = 1; port1 <= hub->hdev->maxchild; port1++)
915 [ # # ]: 0 : if (test_bit(port1, hub->power_bits))
916 : 0 : set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER);
917 : : else
918 : 0 : usb_clear_port_feature(hub->hdev, port1,
919 : : USB_PORT_FEAT_POWER);
920 [ # # ]: 0 : if (do_delay)
921 : 0 : msleep(hub_power_on_good_delay(hub));
922 : 0 : }
923 : :
924 : 0 : static int hub_hub_status(struct usb_hub *hub,
925 : : u16 *status, u16 *change)
926 : : {
927 : 0 : int ret;
928 : :
929 : 0 : mutex_lock(&hub->status_mutex);
930 : 0 : ret = get_hub_status(hub->hdev, &hub->status->hub);
931 [ # # ]: 0 : if (ret < 0) {
932 [ # # ]: 0 : if (ret != -ENODEV)
933 : 0 : dev_err(hub->intfdev,
934 : : "%s failed (err = %d)\n", __func__, ret);
935 : : } else {
936 : 0 : *status = le16_to_cpu(hub->status->hub.wHubStatus);
937 : 0 : *change = le16_to_cpu(hub->status->hub.wHubChange);
938 : 0 : ret = 0;
939 : : }
940 : 0 : mutex_unlock(&hub->status_mutex);
941 : 0 : return ret;
942 : : }
943 : :
944 : 0 : static int hub_set_port_link_state(struct usb_hub *hub, int port1,
945 : : unsigned int link_status)
946 : : {
947 : 0 : return set_port_feature(hub->hdev,
948 : 0 : port1 | (link_status << 3),
949 : : USB_PORT_FEAT_LINK_STATE);
950 : : }
951 : :
952 : : /*
953 : : * Disable a port and mark a logical connect-change event, so that some
954 : : * time later hub_wq will disconnect() any existing usb_device on the port
955 : : * and will re-enumerate if there actually is a device attached.
956 : : */
957 : 0 : static void hub_port_logical_disconnect(struct usb_hub *hub, int port1)
958 : : {
959 : 0 : dev_dbg(&hub->ports[port1 - 1]->dev, "logical disconnect\n");
960 : 0 : hub_port_disable(hub, port1, 1);
961 : :
962 : : /* FIXME let caller ask to power down the port:
963 : : * - some devices won't enumerate without a VBUS power cycle
964 : : * - SRP saves power that way
965 : : * - ... new call, TBD ...
966 : : * That's easy if this hub can switch power per-port, and
967 : : * hub_wq reactivates the port later (timer, SRP, etc).
968 : : * Powerdown must be optional, because of reset/DFU.
969 : : */
970 : :
971 : 0 : set_bit(port1, hub->change_bits);
972 : 0 : kick_hub_wq(hub);
973 : 0 : }
974 : :
975 : : /**
976 : : * usb_remove_device - disable a device's port on its parent hub
977 : : * @udev: device to be disabled and removed
978 : : * Context: @udev locked, must be able to sleep.
979 : : *
980 : : * After @udev's port has been disabled, hub_wq is notified and it will
981 : : * see that the device has been disconnected. When the device is
982 : : * physically unplugged and something is plugged in, the events will
983 : : * be received and processed normally.
984 : : *
985 : : * Return: 0 if successful. A negative error code otherwise.
986 : : */
987 : 0 : int usb_remove_device(struct usb_device *udev)
988 : : {
989 : 0 : struct usb_hub *hub;
990 : 0 : struct usb_interface *intf;
991 : 0 : int ret;
992 : :
993 [ # # ]: 0 : if (!udev->parent) /* Can't remove a root hub */
994 : : return -EINVAL;
995 [ # # ]: 0 : hub = usb_hub_to_struct_hub(udev->parent);
996 : 0 : intf = to_usb_interface(hub->intfdev);
997 : :
998 : 0 : ret = usb_autopm_get_interface(intf);
999 [ # # ]: 0 : if (ret < 0)
1000 : : return ret;
1001 : :
1002 : 0 : set_bit(udev->portnum, hub->removed_bits);
1003 : 0 : hub_port_logical_disconnect(hub, udev->portnum);
1004 : 0 : usb_autopm_put_interface(intf);
1005 : 0 : return 0;
1006 : : }
1007 : :
1008 : : enum hub_activation_type {
1009 : : HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */
1010 : : HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME,
1011 : : };
1012 : :
1013 : : static void hub_init_func2(struct work_struct *ws);
1014 : : static void hub_init_func3(struct work_struct *ws);
1015 : :
1016 : 0 : static void hub_activate(struct usb_hub *hub, enum hub_activation_type type)
1017 : : {
1018 : 0 : struct usb_device *hdev = hub->hdev;
1019 : 0 : struct usb_hcd *hcd;
1020 : 0 : int ret;
1021 : 0 : int port1;
1022 : 0 : int status;
1023 : 0 : bool need_debounce_delay = false;
1024 : 0 : unsigned delay;
1025 : :
1026 : : /* Continue a partial initialization */
1027 [ # # ]: 0 : if (type == HUB_INIT2 || type == HUB_INIT3) {
1028 : 0 : device_lock(&hdev->dev);
1029 : :
1030 : : /* Was the hub disconnected while we were waiting? */
1031 [ # # ]: 0 : if (hub->disconnected)
1032 : 0 : goto disconnected;
1033 [ # # ]: 0 : if (type == HUB_INIT2)
1034 : 0 : goto init2;
1035 : 0 : goto init3;
1036 : : }
1037 : 0 : kref_get(&hub->kref);
1038 : :
1039 : : /* The superspeed hub except for root hub has to use Hub Depth
1040 : : * value as an offset into the route string to locate the bits
1041 : : * it uses to determine the downstream port number. So hub driver
1042 : : * should send a set hub depth request to superspeed hub after
1043 : : * the superspeed hub is set configuration in initialization or
1044 : : * reset procedure.
1045 : : *
1046 : : * After a resume, port power should still be on.
1047 : : * For any other type of activation, turn it on.
1048 : : */
1049 [ # # ]: 0 : if (type != HUB_RESUME) {
1050 [ # # # # ]: 0 : if (hdev->parent && hub_is_superspeed(hdev)) {
1051 : 0 : ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0),
1052 : : HUB_SET_DEPTH, USB_RT_HUB,
1053 : 0 : hdev->level - 1, 0, NULL, 0,
1054 : : USB_CTRL_SET_TIMEOUT);
1055 [ # # ]: 0 : if (ret < 0)
1056 : 0 : dev_err(hub->intfdev,
1057 : : "set hub depth failed\n");
1058 : : }
1059 : :
1060 : : /* Speed up system boot by using a delayed_work for the
1061 : : * hub's initial power-up delays. This is pretty awkward
1062 : : * and the implementation looks like a home-brewed sort of
1063 : : * setjmp/longjmp, but it saves at least 100 ms for each
1064 : : * root hub (assuming usbcore is compiled into the kernel
1065 : : * rather than as a module). It adds up.
1066 : : *
1067 : : * This can't be done for HUB_RESUME or HUB_RESET_RESUME
1068 : : * because for those activation types the ports have to be
1069 : : * operational when we return. In theory this could be done
1070 : : * for HUB_POST_RESET, but it's easier not to.
1071 : : */
1072 [ # # ]: 0 : if (type == HUB_INIT) {
1073 : 0 : delay = hub_power_on_good_delay(hub);
1074 : :
1075 : 0 : hub_power_on(hub, false);
1076 : 0 : INIT_DELAYED_WORK(&hub->init_work, hub_init_func2);
1077 [ # # ]: 0 : queue_delayed_work(system_power_efficient_wq,
1078 : : &hub->init_work,
1079 : : msecs_to_jiffies(delay));
1080 : :
1081 : : /* Suppress autosuspend until init is done */
1082 : 0 : usb_autopm_get_interface_no_resume(
1083 : 0 : to_usb_interface(hub->intfdev));
1084 : 0 : return; /* Continues at init2: below */
1085 [ # # ]: 0 : } else if (type == HUB_RESET_RESUME) {
1086 : : /* The internal host controller state for the hub device
1087 : : * may be gone after a host power loss on system resume.
1088 : : * Update the device's info so the HW knows it's a hub.
1089 : : */
1090 [ # # ]: 0 : hcd = bus_to_hcd(hdev->bus);
1091 [ # # ]: 0 : if (hcd->driver->update_hub_device) {
1092 : 0 : ret = hcd->driver->update_hub_device(hcd, hdev,
1093 : : &hub->tt, GFP_NOIO);
1094 [ # # ]: 0 : if (ret < 0) {
1095 : 0 : dev_err(hub->intfdev,
1096 : : "Host not accepting hub info update\n");
1097 : 0 : dev_err(hub->intfdev,
1098 : : "LS/FS devices and hubs may not work under this hub\n");
1099 : : }
1100 : : }
1101 : 0 : hub_power_on(hub, true);
1102 : : } else {
1103 : 0 : hub_power_on(hub, true);
1104 : : }
1105 : : }
1106 : 0 : init2:
1107 : :
1108 : : /*
1109 : : * Check each port and set hub->change_bits to let hub_wq know
1110 : : * which ports need attention.
1111 : : */
1112 [ # # ]: 0 : for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
1113 : 0 : struct usb_port *port_dev = hub->ports[port1 - 1];
1114 : 0 : struct usb_device *udev = port_dev->child;
1115 : 0 : u16 portstatus, portchange;
1116 : :
1117 : 0 : portstatus = portchange = 0;
1118 : 0 : status = hub_port_status(hub, port1, &portstatus, &portchange);
1119 [ # # ]: 0 : if (status)
1120 : 0 : goto abort;
1121 : :
1122 : 0 : if (udev || (portstatus & USB_PORT_STAT_CONNECTION))
1123 : : dev_dbg(&port_dev->dev, "status %04x change %04x\n",
1124 : : portstatus, portchange);
1125 : :
1126 : : /*
1127 : : * After anything other than HUB_RESUME (i.e., initialization
1128 : : * or any sort of reset), every port should be disabled.
1129 : : * Unconnected ports should likewise be disabled (paranoia),
1130 : : * and so should ports for which we have no usb_device.
1131 : : */
1132 [ # # # # ]: 0 : if ((portstatus & USB_PORT_STAT_ENABLE) && (
1133 [ # # ]: 0 : type != HUB_RESUME ||
1134 [ # # ]: 0 : !(portstatus & USB_PORT_STAT_CONNECTION) ||
1135 : 0 : !udev ||
1136 [ # # ]: 0 : udev->state == USB_STATE_NOTATTACHED)) {
1137 : : /*
1138 : : * USB3 protocol ports will automatically transition
1139 : : * to Enabled state when detect an USB3.0 device attach.
1140 : : * Do not disable USB3 protocol ports, just pretend
1141 : : * power was lost
1142 : : */
1143 : 0 : portstatus &= ~USB_PORT_STAT_ENABLE;
1144 [ # # ]: 0 : if (!hub_is_superspeed(hdev))
1145 : 0 : usb_clear_port_feature(hdev, port1,
1146 : : USB_PORT_FEAT_ENABLE);
1147 : : }
1148 : :
1149 : : /* Make sure a warm-reset request is handled by port_event */
1150 [ # # # # ]: 0 : if (type == HUB_RESUME &&
1151 : 0 : hub_port_warm_reset_required(hub, port1, portstatus))
1152 : 0 : set_bit(port1, hub->event_bits);
1153 : :
1154 : : /*
1155 : : * Add debounce if USB3 link is in polling/link training state.
1156 : : * Link will automatically transition to Enabled state after
1157 : : * link training completes.
1158 : : */
1159 [ # # ]: 0 : if (hub_is_superspeed(hdev) &&
1160 [ # # ]: 0 : ((portstatus & USB_PORT_STAT_LINK_STATE) ==
1161 : : USB_SS_PORT_LS_POLLING))
1162 : 0 : need_debounce_delay = true;
1163 : :
1164 : : /* Clear status-change flags; we'll debounce later */
1165 [ # # ]: 0 : if (portchange & USB_PORT_STAT_C_CONNECTION) {
1166 : 0 : need_debounce_delay = true;
1167 : 0 : usb_clear_port_feature(hub->hdev, port1,
1168 : : USB_PORT_FEAT_C_CONNECTION);
1169 : : }
1170 [ # # ]: 0 : if (portchange & USB_PORT_STAT_C_ENABLE) {
1171 : 0 : need_debounce_delay = true;
1172 : 0 : usb_clear_port_feature(hub->hdev, port1,
1173 : : USB_PORT_FEAT_C_ENABLE);
1174 : : }
1175 [ # # ]: 0 : if (portchange & USB_PORT_STAT_C_RESET) {
1176 : 0 : need_debounce_delay = true;
1177 : 0 : usb_clear_port_feature(hub->hdev, port1,
1178 : : USB_PORT_FEAT_C_RESET);
1179 : : }
1180 [ # # # # ]: 0 : if ((portchange & USB_PORT_STAT_C_BH_RESET) &&
1181 [ # # ]: 0 : hub_is_superspeed(hub->hdev)) {
1182 : 0 : need_debounce_delay = true;
1183 : 0 : usb_clear_port_feature(hub->hdev, port1,
1184 : : USB_PORT_FEAT_C_BH_PORT_RESET);
1185 : : }
1186 : : /* We can forget about a "removed" device when there's a
1187 : : * physical disconnect or the connect status changes.
1188 : : */
1189 [ # # ]: 0 : if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
1190 [ # # ]: 0 : (portchange & USB_PORT_STAT_C_CONNECTION))
1191 : 0 : clear_bit(port1, hub->removed_bits);
1192 : :
1193 [ # # # # ]: 0 : if (!udev || udev->state == USB_STATE_NOTATTACHED) {
1194 : : /* Tell hub_wq to disconnect the device or
1195 : : * check for a new connection or over current condition.
1196 : : * Based on USB2.0 Spec Section 11.12.5,
1197 : : * C_PORT_OVER_CURRENT could be set while
1198 : : * PORT_OVER_CURRENT is not. So check for any of them.
1199 : : */
1200 [ # # # # ]: 0 : if (udev || (portstatus & USB_PORT_STAT_CONNECTION) ||
1201 [ # # # # ]: 0 : (portchange & USB_PORT_STAT_C_CONNECTION) ||
1202 [ # # ]: 0 : (portstatus & USB_PORT_STAT_OVERCURRENT) ||
1203 : : (portchange & USB_PORT_STAT_C_OVERCURRENT))
1204 : 0 : set_bit(port1, hub->change_bits);
1205 : :
1206 [ # # ]: 0 : } else if (portstatus & USB_PORT_STAT_ENABLE) {
1207 : 0 : bool port_resumed = (portstatus &
1208 : : USB_PORT_STAT_LINK_STATE) ==
1209 : : USB_SS_PORT_LS_U0;
1210 : : /* The power session apparently survived the resume.
1211 : : * If there was an overcurrent or suspend change
1212 : : * (i.e., remote wakeup request), have hub_wq
1213 : : * take care of it. Look at the port link state
1214 : : * for USB 3.0 hubs, since they don't have a suspend
1215 : : * change bit, and they don't set the port link change
1216 : : * bit on device-initiated resume.
1217 : : */
1218 [ # # # # : 0 : if (portchange || (hub_is_superspeed(hub->hdev) &&
# # ]
1219 : : port_resumed))
1220 : 0 : set_bit(port1, hub->change_bits);
1221 : :
1222 [ # # ]: 0 : } else if (udev->persist_enabled) {
1223 : : #ifdef CONFIG_PM
1224 : 0 : udev->reset_resume = 1;
1225 : : #endif
1226 : :
1227 : : } else {
1228 : : /* The power session is gone; tell hub_wq */
1229 : 0 : usb_set_device_state(udev, USB_STATE_NOTATTACHED);
1230 : 0 : set_bit(port1, hub->change_bits);
1231 : : }
1232 : : }
1233 : :
1234 : : /* If no port-status-change flags were set, we don't need any
1235 : : * debouncing. If flags were set we can try to debounce the
1236 : : * ports all at once right now, instead of letting hub_wq do them
1237 : : * one at a time later on.
1238 : : *
1239 : : * If any port-status changes do occur during this delay, hub_wq
1240 : : * will see them later and handle them normally.
1241 : : */
1242 [ # # ]: 0 : if (need_debounce_delay) {
1243 : 0 : delay = HUB_DEBOUNCE_STABLE;
1244 : :
1245 : : /* Don't do a long sleep inside a workqueue routine */
1246 [ # # ]: 0 : if (type == HUB_INIT2) {
1247 : 0 : INIT_DELAYED_WORK(&hub->init_work, hub_init_func3);
1248 : 0 : queue_delayed_work(system_power_efficient_wq,
1249 : : &hub->init_work,
1250 : : msecs_to_jiffies(delay));
1251 : 0 : device_unlock(&hdev->dev);
1252 : 0 : return; /* Continues at init3: below */
1253 : : } else {
1254 : 0 : msleep(delay);
1255 : : }
1256 : : }
1257 : 0 : init3:
1258 : 0 : hub->quiescing = 0;
1259 : :
1260 : 0 : status = usb_submit_urb(hub->urb, GFP_NOIO);
1261 [ # # ]: 0 : if (status < 0)
1262 : 0 : dev_err(hub->intfdev, "activate --> %d\n", status);
1263 [ # # # # ]: 0 : if (hub->has_indicators && blinkenlights)
1264 : 0 : queue_delayed_work(system_power_efficient_wq,
1265 : : &hub->leds, LED_CYCLE_PERIOD);
1266 : :
1267 : : /* Scan all ports that need attention */
1268 : 0 : kick_hub_wq(hub);
1269 : 0 : abort:
1270 [ # # ]: 0 : if (type == HUB_INIT2 || type == HUB_INIT3) {
1271 : : /* Allow autosuspend if it was suppressed */
1272 : 0 : disconnected:
1273 : 0 : usb_autopm_put_interface_async(to_usb_interface(hub->intfdev));
1274 : 0 : device_unlock(&hdev->dev);
1275 : : }
1276 : :
1277 : 0 : kref_put(&hub->kref, hub_release);
1278 : : }
1279 : :
1280 : : /* Implement the continuations for the delays above */
1281 : 0 : static void hub_init_func2(struct work_struct *ws)
1282 : : {
1283 : 0 : struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1284 : :
1285 : 0 : hub_activate(hub, HUB_INIT2);
1286 : 0 : }
1287 : :
1288 : 0 : static void hub_init_func3(struct work_struct *ws)
1289 : : {
1290 : 0 : struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work);
1291 : :
1292 : 0 : hub_activate(hub, HUB_INIT3);
1293 : 0 : }
1294 : :
1295 : : enum hub_quiescing_type {
1296 : : HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND
1297 : : };
1298 : :
1299 : 0 : static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type)
1300 : : {
1301 : 0 : struct usb_device *hdev = hub->hdev;
1302 : 0 : unsigned long flags;
1303 : 0 : int i;
1304 : :
1305 : : /* hub_wq and related activity won't re-trigger */
1306 : 0 : spin_lock_irqsave(&hub->irq_urb_lock, flags);
1307 : 0 : hub->quiescing = 1;
1308 : 0 : spin_unlock_irqrestore(&hub->irq_urb_lock, flags);
1309 : :
1310 [ # # ]: 0 : if (type != HUB_SUSPEND) {
1311 : : /* Disconnect all the children */
1312 [ # # ]: 0 : for (i = 0; i < hdev->maxchild; ++i) {
1313 [ # # ]: 0 : if (hub->ports[i]->child)
1314 : 0 : usb_disconnect(&hub->ports[i]->child);
1315 : : }
1316 : : }
1317 : :
1318 : : /* Stop hub_wq and related activity */
1319 : 0 : del_timer_sync(&hub->irq_urb_retry);
1320 : 0 : usb_kill_urb(hub->urb);
1321 [ # # ]: 0 : if (hub->has_indicators)
1322 : 0 : cancel_delayed_work_sync(&hub->leds);
1323 [ # # ]: 0 : if (hub->tt.hub)
1324 : 0 : flush_work(&hub->tt.clear_work);
1325 : 0 : }
1326 : :
1327 : 0 : static void hub_pm_barrier_for_all_ports(struct usb_hub *hub)
1328 : : {
1329 : : int i;
1330 : :
1331 [ # # # # ]: 0 : for (i = 0; i < hub->hdev->maxchild; ++i)
1332 : 0 : pm_runtime_barrier(&hub->ports[i]->dev);
1333 : : }
1334 : :
1335 : : /* caller has locked the hub device */
1336 : 0 : static int hub_pre_reset(struct usb_interface *intf)
1337 : : {
1338 : 0 : struct usb_hub *hub = usb_get_intfdata(intf);
1339 : :
1340 : 0 : hub_quiesce(hub, HUB_PRE_RESET);
1341 : 0 : hub->in_reset = 1;
1342 : 0 : hub_pm_barrier_for_all_ports(hub);
1343 : 0 : return 0;
1344 : : }
1345 : :
1346 : : /* caller has locked the hub device */
1347 : 0 : static int hub_post_reset(struct usb_interface *intf)
1348 : : {
1349 : 0 : struct usb_hub *hub = usb_get_intfdata(intf);
1350 : :
1351 : 0 : hub->in_reset = 0;
1352 : 0 : hub_pm_barrier_for_all_ports(hub);
1353 : 0 : hub_activate(hub, HUB_POST_RESET);
1354 : 0 : return 0;
1355 : : }
1356 : :
1357 : : static int hub_configure(struct usb_hub *hub,
1358 : : struct usb_endpoint_descriptor *endpoint)
1359 : : {
1360 : : struct usb_hcd *hcd;
1361 : : struct usb_device *hdev = hub->hdev;
1362 : : struct device *hub_dev = hub->intfdev;
1363 : : u16 hubstatus, hubchange;
1364 : : u16 wHubCharacteristics;
1365 : : unsigned int pipe;
1366 : : int maxp, ret, i;
1367 : : char *message = "out of memory";
1368 : : unsigned unit_load;
1369 : : unsigned full_load;
1370 : : unsigned maxchild;
1371 : :
1372 : : hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL);
1373 : : if (!hub->buffer) {
1374 : : ret = -ENOMEM;
1375 : : goto fail;
1376 : : }
1377 : :
1378 : : hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL);
1379 : : if (!hub->status) {
1380 : : ret = -ENOMEM;
1381 : : goto fail;
1382 : : }
1383 : : mutex_init(&hub->status_mutex);
1384 : :
1385 : : hub->descriptor = kzalloc(sizeof(*hub->descriptor), GFP_KERNEL);
1386 : : if (!hub->descriptor) {
1387 : : ret = -ENOMEM;
1388 : : goto fail;
1389 : : }
1390 : :
1391 : : /* Request the entire hub descriptor.
1392 : : * hub->descriptor can handle USB_MAXCHILDREN ports,
1393 : : * but a (non-SS) hub can/will return fewer bytes here.
1394 : : */
1395 : : ret = get_hub_descriptor(hdev, hub->descriptor);
1396 : : if (ret < 0) {
1397 : : message = "can't read hub descriptor";
1398 : : goto fail;
1399 : : }
1400 : :
1401 : : maxchild = USB_MAXCHILDREN;
1402 : : if (hub_is_superspeed(hdev))
1403 : : maxchild = min_t(unsigned, maxchild, USB_SS_MAXPORTS);
1404 : :
1405 : : if (hub->descriptor->bNbrPorts > maxchild) {
1406 : : message = "hub has too many ports!";
1407 : : ret = -ENODEV;
1408 : : goto fail;
1409 : : } else if (hub->descriptor->bNbrPorts == 0) {
1410 : : message = "hub doesn't have any ports!";
1411 : : ret = -ENODEV;
1412 : : goto fail;
1413 : : }
1414 : :
1415 : : /*
1416 : : * Accumulate wHubDelay + 40ns for every hub in the tree of devices.
1417 : : * The resulting value will be used for SetIsochDelay() request.
1418 : : */
1419 : : if (hub_is_superspeed(hdev) || hub_is_superspeedplus(hdev)) {
1420 : : u32 delay = __le16_to_cpu(hub->descriptor->u.ss.wHubDelay);
1421 : :
1422 : : if (hdev->parent)
1423 : : delay += hdev->parent->hub_delay;
1424 : :
1425 : : delay += USB_TP_TRANSMISSION_DELAY;
1426 : : hdev->hub_delay = min_t(u32, delay, USB_TP_TRANSMISSION_DELAY_MAX);
1427 : : }
1428 : :
1429 : : maxchild = hub->descriptor->bNbrPorts;
1430 : : dev_info(hub_dev, "%d port%s detected\n", maxchild,
1431 : : (maxchild == 1) ? "" : "s");
1432 : :
1433 : : hub->ports = kcalloc(maxchild, sizeof(struct usb_port *), GFP_KERNEL);
1434 : : if (!hub->ports) {
1435 : : ret = -ENOMEM;
1436 : : goto fail;
1437 : : }
1438 : :
1439 : : wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
1440 : : if (hub_is_superspeed(hdev)) {
1441 : : unit_load = 150;
1442 : : full_load = 900;
1443 : : } else {
1444 : : unit_load = 100;
1445 : : full_load = 500;
1446 : : }
1447 : :
1448 : : /* FIXME for USB 3.0, skip for now */
1449 : : if ((wHubCharacteristics & HUB_CHAR_COMPOUND) &&
1450 : : !(hub_is_superspeed(hdev))) {
1451 : : char portstr[USB_MAXCHILDREN + 1];
1452 : :
1453 : : for (i = 0; i < maxchild; i++)
1454 : : portstr[i] = hub->descriptor->u.hs.DeviceRemovable
1455 : : [((i + 1) / 8)] & (1 << ((i + 1) % 8))
1456 : : ? 'F' : 'R';
1457 : : portstr[maxchild] = 0;
1458 : : dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr);
1459 : : } else
1460 : : dev_dbg(hub_dev, "standalone hub\n");
1461 : :
1462 : : switch (wHubCharacteristics & HUB_CHAR_LPSM) {
1463 : : case HUB_CHAR_COMMON_LPSM:
1464 : : dev_dbg(hub_dev, "ganged power switching\n");
1465 : : break;
1466 : : case HUB_CHAR_INDV_PORT_LPSM:
1467 : : dev_dbg(hub_dev, "individual port power switching\n");
1468 : : break;
1469 : : case HUB_CHAR_NO_LPSM:
1470 : : case HUB_CHAR_LPSM:
1471 : : dev_dbg(hub_dev, "no power switching (usb 1.0)\n");
1472 : : break;
1473 : : }
1474 : :
1475 : : switch (wHubCharacteristics & HUB_CHAR_OCPM) {
1476 : : case HUB_CHAR_COMMON_OCPM:
1477 : : dev_dbg(hub_dev, "global over-current protection\n");
1478 : : break;
1479 : : case HUB_CHAR_INDV_PORT_OCPM:
1480 : : dev_dbg(hub_dev, "individual port over-current protection\n");
1481 : : break;
1482 : : case HUB_CHAR_NO_OCPM:
1483 : : case HUB_CHAR_OCPM:
1484 : : dev_dbg(hub_dev, "no over-current protection\n");
1485 : : break;
1486 : : }
1487 : :
1488 : : spin_lock_init(&hub->tt.lock);
1489 : : INIT_LIST_HEAD(&hub->tt.clear_list);
1490 : : INIT_WORK(&hub->tt.clear_work, hub_tt_work);
1491 : : switch (hdev->descriptor.bDeviceProtocol) {
1492 : : case USB_HUB_PR_FS:
1493 : : break;
1494 : : case USB_HUB_PR_HS_SINGLE_TT:
1495 : : dev_dbg(hub_dev, "Single TT\n");
1496 : : hub->tt.hub = hdev;
1497 : : break;
1498 : : case USB_HUB_PR_HS_MULTI_TT:
1499 : : ret = usb_set_interface(hdev, 0, 1);
1500 : : if (ret == 0) {
1501 : : dev_dbg(hub_dev, "TT per port\n");
1502 : : hub->tt.multi = 1;
1503 : : } else
1504 : : dev_err(hub_dev, "Using single TT (err %d)\n",
1505 : : ret);
1506 : : hub->tt.hub = hdev;
1507 : : break;
1508 : : case USB_HUB_PR_SS:
1509 : : /* USB 3.0 hubs don't have a TT */
1510 : : break;
1511 : : default:
1512 : : dev_dbg(hub_dev, "Unrecognized hub protocol %d\n",
1513 : : hdev->descriptor.bDeviceProtocol);
1514 : : break;
1515 : : }
1516 : :
1517 : : /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */
1518 : : switch (wHubCharacteristics & HUB_CHAR_TTTT) {
1519 : : case HUB_TTTT_8_BITS:
1520 : : if (hdev->descriptor.bDeviceProtocol != 0) {
1521 : : hub->tt.think_time = 666;
1522 : : dev_dbg(hub_dev, "TT requires at most %d "
1523 : : "FS bit times (%d ns)\n",
1524 : : 8, hub->tt.think_time);
1525 : : }
1526 : : break;
1527 : : case HUB_TTTT_16_BITS:
1528 : : hub->tt.think_time = 666 * 2;
1529 : : dev_dbg(hub_dev, "TT requires at most %d "
1530 : : "FS bit times (%d ns)\n",
1531 : : 16, hub->tt.think_time);
1532 : : break;
1533 : : case HUB_TTTT_24_BITS:
1534 : : hub->tt.think_time = 666 * 3;
1535 : : dev_dbg(hub_dev, "TT requires at most %d "
1536 : : "FS bit times (%d ns)\n",
1537 : : 24, hub->tt.think_time);
1538 : : break;
1539 : : case HUB_TTTT_32_BITS:
1540 : : hub->tt.think_time = 666 * 4;
1541 : : dev_dbg(hub_dev, "TT requires at most %d "
1542 : : "FS bit times (%d ns)\n",
1543 : : 32, hub->tt.think_time);
1544 : : break;
1545 : : }
1546 : :
1547 : : /* probe() zeroes hub->indicator[] */
1548 : : if (wHubCharacteristics & HUB_CHAR_PORTIND) {
1549 : : hub->has_indicators = 1;
1550 : : dev_dbg(hub_dev, "Port indicators are supported\n");
1551 : : }
1552 : :
1553 : : dev_dbg(hub_dev, "power on to power good time: %dms\n",
1554 : : hub->descriptor->bPwrOn2PwrGood * 2);
1555 : :
1556 : : /* power budgeting mostly matters with bus-powered hubs,
1557 : : * and battery-powered root hubs (may provide just 8 mA).
1558 : : */
1559 : : ret = usb_get_std_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus);
1560 : : if (ret) {
1561 : : message = "can't get hub status";
1562 : : goto fail;
1563 : : }
1564 : : hcd = bus_to_hcd(hdev->bus);
1565 : : if (hdev == hdev->bus->root_hub) {
1566 : : if (hcd->power_budget > 0)
1567 : : hdev->bus_mA = hcd->power_budget;
1568 : : else
1569 : : hdev->bus_mA = full_load * maxchild;
1570 : : if (hdev->bus_mA >= full_load)
1571 : : hub->mA_per_port = full_load;
1572 : : else {
1573 : : hub->mA_per_port = hdev->bus_mA;
1574 : : hub->limited_power = 1;
1575 : : }
1576 : : } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
1577 : : int remaining = hdev->bus_mA -
1578 : : hub->descriptor->bHubContrCurrent;
1579 : :
1580 : : dev_dbg(hub_dev, "hub controller current requirement: %dmA\n",
1581 : : hub->descriptor->bHubContrCurrent);
1582 : : hub->limited_power = 1;
1583 : :
1584 : : if (remaining < maxchild * unit_load)
1585 : : dev_warn(hub_dev,
1586 : : "insufficient power available "
1587 : : "to use all downstream ports\n");
1588 : : hub->mA_per_port = unit_load; /* 7.2.1 */
1589 : :
1590 : : } else { /* Self-powered external hub */
1591 : : /* FIXME: What about battery-powered external hubs that
1592 : : * provide less current per port? */
1593 : : hub->mA_per_port = full_load;
1594 : : }
1595 : : if (hub->mA_per_port < full_load)
1596 : : dev_dbg(hub_dev, "%umA bus power budget for each child\n",
1597 : : hub->mA_per_port);
1598 : :
1599 : : ret = hub_hub_status(hub, &hubstatus, &hubchange);
1600 : : if (ret < 0) {
1601 : : message = "can't get hub status";
1602 : : goto fail;
1603 : : }
1604 : :
1605 : : /* local power status reports aren't always correct */
1606 : : if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER)
1607 : : dev_dbg(hub_dev, "local power source is %s\n",
1608 : : (hubstatus & HUB_STATUS_LOCAL_POWER)
1609 : : ? "lost (inactive)" : "good");
1610 : :
1611 : : if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0)
1612 : : dev_dbg(hub_dev, "%sover-current condition exists\n",
1613 : : (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no ");
1614 : :
1615 : : /* set up the interrupt endpoint
1616 : : * We use the EP's maxpacket size instead of (PORTS+1+7)/8
1617 : : * bytes as USB2.0[11.12.3] says because some hubs are known
1618 : : * to send more data (and thus cause overflow). For root hubs,
1619 : : * maxpktsize is defined in hcd.c's fake endpoint descriptors
1620 : : * to be big enough for at least USB_MAXCHILDREN ports. */
1621 : : pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress);
1622 : : maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe));
1623 : :
1624 : : if (maxp > sizeof(*hub->buffer))
1625 : : maxp = sizeof(*hub->buffer);
1626 : :
1627 : : hub->urb = usb_alloc_urb(0, GFP_KERNEL);
1628 : : if (!hub->urb) {
1629 : : ret = -ENOMEM;
1630 : : goto fail;
1631 : : }
1632 : :
1633 : : usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq,
1634 : : hub, endpoint->bInterval);
1635 : :
1636 : : /* maybe cycle the hub leds */
1637 : : if (hub->has_indicators && blinkenlights)
1638 : : hub->indicator[0] = INDICATOR_CYCLE;
1639 : :
1640 : : mutex_lock(&usb_port_peer_mutex);
1641 : : for (i = 0; i < maxchild; i++) {
1642 : : ret = usb_hub_create_port_device(hub, i + 1);
1643 : : if (ret < 0) {
1644 : : dev_err(hub->intfdev,
1645 : : "couldn't create port%d device.\n", i + 1);
1646 : : break;
1647 : : }
1648 : : }
1649 : : hdev->maxchild = i;
1650 : : for (i = 0; i < hdev->maxchild; i++) {
1651 : : struct usb_port *port_dev = hub->ports[i];
1652 : :
1653 : : pm_runtime_put(&port_dev->dev);
1654 : : }
1655 : :
1656 : : mutex_unlock(&usb_port_peer_mutex);
1657 : : if (ret < 0)
1658 : : goto fail;
1659 : :
1660 : : /* Update the HCD's internal representation of this hub before hub_wq
1661 : : * starts getting port status changes for devices under the hub.
1662 : : */
1663 : : if (hcd->driver->update_hub_device) {
1664 : : ret = hcd->driver->update_hub_device(hcd, hdev,
1665 : : &hub->tt, GFP_KERNEL);
1666 : : if (ret < 0) {
1667 : : message = "can't update HCD hub info";
1668 : : goto fail;
1669 : : }
1670 : : }
1671 : :
1672 : : usb_hub_adjust_deviceremovable(hdev, hub->descriptor);
1673 : :
1674 : : hub_activate(hub, HUB_INIT);
1675 : : return 0;
1676 : :
1677 : : fail:
1678 : : dev_err(hub_dev, "config failed, %s (err %d)\n",
1679 : : message, ret);
1680 : : /* hub_disconnect() frees urb and descriptor */
1681 : : return ret;
1682 : : }
1683 : :
1684 : 0 : static void hub_release(struct kref *kref)
1685 : : {
1686 : 0 : struct usb_hub *hub = container_of(kref, struct usb_hub, kref);
1687 : :
1688 : 0 : usb_put_dev(hub->hdev);
1689 : 0 : usb_put_intf(to_usb_interface(hub->intfdev));
1690 : 0 : kfree(hub);
1691 : 0 : }
1692 : :
1693 : : static unsigned highspeed_hubs;
1694 : :
1695 : 0 : static void hub_disconnect(struct usb_interface *intf)
1696 : : {
1697 : 0 : struct usb_hub *hub = usb_get_intfdata(intf);
1698 : 0 : struct usb_device *hdev = interface_to_usbdev(intf);
1699 : 0 : int port1;
1700 : :
1701 : : /*
1702 : : * Stop adding new hub events. We do not want to block here and thus
1703 : : * will not try to remove any pending work item.
1704 : : */
1705 : 0 : hub->disconnected = 1;
1706 : :
1707 : : /* Disconnect all children and quiesce the hub */
1708 : 0 : hub->error = 0;
1709 : 0 : hub_quiesce(hub, HUB_DISCONNECT);
1710 : :
1711 : 0 : mutex_lock(&usb_port_peer_mutex);
1712 : :
1713 : : /* Avoid races with recursively_mark_NOTATTACHED() */
1714 : 0 : spin_lock_irq(&device_state_lock);
1715 : 0 : port1 = hdev->maxchild;
1716 : 0 : hdev->maxchild = 0;
1717 : 0 : usb_set_intfdata(intf, NULL);
1718 : 0 : spin_unlock_irq(&device_state_lock);
1719 : :
1720 [ # # ]: 0 : for (; port1 > 0; --port1)
1721 : 0 : usb_hub_remove_port_device(hub, port1);
1722 : :
1723 : 0 : mutex_unlock(&usb_port_peer_mutex);
1724 : :
1725 [ # # ]: 0 : if (hub->hdev->speed == USB_SPEED_HIGH)
1726 : 0 : highspeed_hubs--;
1727 : :
1728 : 0 : usb_free_urb(hub->urb);
1729 : 0 : kfree(hub->ports);
1730 : 0 : kfree(hub->descriptor);
1731 : 0 : kfree(hub->status);
1732 : 0 : kfree(hub->buffer);
1733 : :
1734 [ # # ]: 0 : pm_suspend_ignore_children(&intf->dev, false);
1735 : :
1736 [ # # ]: 0 : if (hub->quirk_disable_autosuspend)
1737 : 0 : usb_autopm_put_interface(intf);
1738 : :
1739 : 0 : kref_put(&hub->kref, hub_release);
1740 : 0 : }
1741 : :
1742 : 0 : static bool hub_descriptor_is_sane(struct usb_host_interface *desc)
1743 : : {
1744 : : /* Some hubs have a subclass of 1, which AFAICT according to the */
1745 : : /* specs is not defined, but it works */
1746 : 0 : if (desc->desc.bInterfaceSubClass != 0 &&
1747 : : desc->desc.bInterfaceSubClass != 1)
1748 : : return false;
1749 : :
1750 : : /* Multiple endpoints? What kind of mutant ninja-hub is this? */
1751 [ # # ]: 0 : if (desc->desc.bNumEndpoints != 1)
1752 : : return false;
1753 : :
1754 : : /* If the first endpoint is not interrupt IN, we'd better punt! */
1755 [ # # ]: 0 : if (!usb_endpoint_is_int_in(&desc->endpoint[0].desc))
1756 : : return false;
1757 : :
1758 : : return true;
1759 : : }
1760 : :
1761 : 0 : static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id)
1762 : : {
1763 : 0 : struct usb_host_interface *desc;
1764 : 0 : struct usb_device *hdev;
1765 : 0 : struct usb_hub *hub;
1766 : :
1767 : 0 : desc = intf->cur_altsetting;
1768 [ # # ]: 0 : hdev = interface_to_usbdev(intf);
1769 : :
1770 : : /*
1771 : : * Set default autosuspend delay as 0 to speedup bus suspend,
1772 : : * based on the below considerations:
1773 : : *
1774 : : * - Unlike other drivers, the hub driver does not rely on the
1775 : : * autosuspend delay to provide enough time to handle a wakeup
1776 : : * event, and the submitted status URB is just to check future
1777 : : * change on hub downstream ports, so it is safe to do it.
1778 : : *
1779 : : * - The patch might cause one or more auto supend/resume for
1780 : : * below very rare devices when they are plugged into hub
1781 : : * first time:
1782 : : *
1783 : : * devices having trouble initializing, and disconnect
1784 : : * themselves from the bus and then reconnect a second
1785 : : * or so later
1786 : : *
1787 : : * devices just for downloading firmware, and disconnects
1788 : : * themselves after completing it
1789 : : *
1790 : : * For these quite rare devices, their drivers may change the
1791 : : * autosuspend delay of their parent hub in the probe() to one
1792 : : * appropriate value to avoid the subtle problem if someone
1793 : : * does care it.
1794 : : *
1795 : : * - The patch may cause one or more auto suspend/resume on
1796 : : * hub during running 'lsusb', but it is probably too
1797 : : * infrequent to worry about.
1798 : : *
1799 : : * - Change autosuspend delay of hub can avoid unnecessary auto
1800 : : * suspend timer for hub, also may decrease power consumption
1801 : : * of USB bus.
1802 : : *
1803 : : * - If user has indicated to prevent autosuspend by passing
1804 : : * usbcore.autosuspend = -1 then keep autosuspend disabled.
1805 : : */
1806 : : #ifdef CONFIG_PM
1807 [ # # ]: 0 : if (hdev->dev.power.autosuspend_delay >= 0)
1808 : 0 : pm_runtime_set_autosuspend_delay(&hdev->dev, 0);
1809 : : #endif
1810 : :
1811 : : /*
1812 : : * Hubs have proper suspend/resume support, except for root hubs
1813 : : * where the controller driver doesn't have bus_suspend and
1814 : : * bus_resume methods.
1815 : : */
1816 [ # # ]: 0 : if (hdev->parent) { /* normal device */
1817 : 0 : usb_enable_autosuspend(hdev);
1818 : : } else { /* root hub */
1819 [ # # ]: 0 : const struct hc_driver *drv = bus_to_hcd(hdev->bus)->driver;
1820 : :
1821 [ # # # # ]: 0 : if (drv->bus_suspend && drv->bus_resume)
1822 : 0 : usb_enable_autosuspend(hdev);
1823 : : }
1824 : :
1825 [ # # ]: 0 : if (hdev->level == MAX_TOPO_LEVEL) {
1826 : 0 : dev_err(&intf->dev,
1827 : : "Unsupported bus topology: hub nested too deep\n");
1828 : 0 : return -E2BIG;
1829 : : }
1830 : :
1831 : : #ifdef CONFIG_USB_OTG_BLACKLIST_HUB
1832 : : if (hdev->parent) {
1833 : : dev_warn(&intf->dev, "ignoring external hub\n");
1834 : : return -ENODEV;
1835 : : }
1836 : : #endif
1837 : :
1838 [ # # ]: 0 : if (!hub_descriptor_is_sane(desc)) {
1839 : 0 : dev_err(&intf->dev, "bad descriptor, ignoring hub\n");
1840 : 0 : return -EIO;
1841 : : }
1842 : :
1843 : : /* We found a hub */
1844 : 0 : dev_info(&intf->dev, "USB hub found\n");
1845 : :
1846 : 0 : hub = kzalloc(sizeof(*hub), GFP_KERNEL);
1847 [ # # ]: 0 : if (!hub)
1848 : : return -ENOMEM;
1849 : :
1850 : 0 : kref_init(&hub->kref);
1851 : 0 : hub->intfdev = &intf->dev;
1852 : 0 : hub->hdev = hdev;
1853 : 0 : INIT_DELAYED_WORK(&hub->leds, led_work);
1854 : 0 : INIT_DELAYED_WORK(&hub->init_work, NULL);
1855 : 0 : INIT_WORK(&hub->events, hub_event);
1856 : 0 : spin_lock_init(&hub->irq_urb_lock);
1857 : 0 : timer_setup(&hub->irq_urb_retry, hub_retry_irq_urb, 0);
1858 : 0 : usb_get_intf(intf);
1859 : 0 : usb_get_dev(hdev);
1860 : :
1861 [ # # ]: 0 : usb_set_intfdata(intf, hub);
1862 : 0 : intf->needs_remote_wakeup = 1;
1863 [ # # ]: 0 : pm_suspend_ignore_children(&intf->dev, true);
1864 : :
1865 [ # # ]: 0 : if (hdev->speed == USB_SPEED_HIGH)
1866 : 0 : highspeed_hubs++;
1867 : :
1868 [ # # ]: 0 : if (id->driver_info & HUB_QUIRK_CHECK_PORT_AUTOSUSPEND)
1869 : 0 : hub->quirk_check_port_auto_suspend = 1;
1870 : :
1871 [ # # ]: 0 : if (id->driver_info & HUB_QUIRK_DISABLE_AUTOSUSPEND) {
1872 : 0 : hub->quirk_disable_autosuspend = 1;
1873 : 0 : usb_autopm_get_interface_no_resume(intf);
1874 : : }
1875 : :
1876 [ # # ]: 0 : if (hub_configure(hub, &desc->endpoint[0].desc) >= 0)
1877 : : return 0;
1878 : :
1879 : 0 : hub_disconnect(intf);
1880 : 0 : return -ENODEV;
1881 : : }
1882 : :
1883 : : static int
1884 : 0 : hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data)
1885 : : {
1886 [ # # ]: 0 : struct usb_device *hdev = interface_to_usbdev(intf);
1887 [ # # ]: 0 : struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1888 : :
1889 : : /* assert ifno == 0 (part of hub spec) */
1890 [ # # ]: 0 : switch (code) {
1891 : 0 : case USBDEVFS_HUB_PORTINFO: {
1892 : 0 : struct usbdevfs_hub_portinfo *info = user_data;
1893 : 0 : int i;
1894 : :
1895 : 0 : spin_lock_irq(&device_state_lock);
1896 [ # # ]: 0 : if (hdev->devnum <= 0)
1897 : 0 : info->nports = 0;
1898 : : else {
1899 : 0 : info->nports = hdev->maxchild;
1900 [ # # ]: 0 : for (i = 0; i < info->nports; i++) {
1901 [ # # ]: 0 : if (hub->ports[i]->child == NULL)
1902 : 0 : info->port[i] = 0;
1903 : : else
1904 : 0 : info->port[i] =
1905 : 0 : hub->ports[i]->child->devnum;
1906 : : }
1907 : : }
1908 : 0 : spin_unlock_irq(&device_state_lock);
1909 : :
1910 : 0 : return info->nports + 1;
1911 : : }
1912 : :
1913 : : default:
1914 : : return -ENOSYS;
1915 : : }
1916 : : }
1917 : :
1918 : : /*
1919 : : * Allow user programs to claim ports on a hub. When a device is attached
1920 : : * to one of these "claimed" ports, the program will "own" the device.
1921 : : */
1922 : 0 : static int find_port_owner(struct usb_device *hdev, unsigned port1,
1923 : : struct usb_dev_state ***ppowner)
1924 : : {
1925 [ # # ]: 0 : struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1926 : :
1927 [ # # ]: 0 : if (hdev->state == USB_STATE_NOTATTACHED)
1928 : : return -ENODEV;
1929 [ # # # # ]: 0 : if (port1 == 0 || port1 > hdev->maxchild)
1930 : : return -EINVAL;
1931 : :
1932 : : /* Devices not managed by the hub driver
1933 : : * will always have maxchild equal to 0.
1934 : : */
1935 : 0 : *ppowner = &(hub->ports[port1 - 1]->port_owner);
1936 : 0 : return 0;
1937 : : }
1938 : :
1939 : : /* In the following three functions, the caller must hold hdev's lock */
1940 : 0 : int usb_hub_claim_port(struct usb_device *hdev, unsigned port1,
1941 : : struct usb_dev_state *owner)
1942 : : {
1943 : 0 : int rc;
1944 : 0 : struct usb_dev_state **powner;
1945 : :
1946 : 0 : rc = find_port_owner(hdev, port1, &powner);
1947 [ # # ]: 0 : if (rc)
1948 : : return rc;
1949 [ # # ]: 0 : if (*powner)
1950 : : return -EBUSY;
1951 : 0 : *powner = owner;
1952 : 0 : return rc;
1953 : : }
1954 : : EXPORT_SYMBOL_GPL(usb_hub_claim_port);
1955 : :
1956 : 0 : int usb_hub_release_port(struct usb_device *hdev, unsigned port1,
1957 : : struct usb_dev_state *owner)
1958 : : {
1959 : 0 : int rc;
1960 : 0 : struct usb_dev_state **powner;
1961 : :
1962 : 0 : rc = find_port_owner(hdev, port1, &powner);
1963 [ # # ]: 0 : if (rc)
1964 : : return rc;
1965 [ # # ]: 0 : if (*powner != owner)
1966 : : return -ENOENT;
1967 : 0 : *powner = NULL;
1968 : 0 : return rc;
1969 : : }
1970 : : EXPORT_SYMBOL_GPL(usb_hub_release_port);
1971 : :
1972 : 0 : void usb_hub_release_all_ports(struct usb_device *hdev, struct usb_dev_state *owner)
1973 : : {
1974 [ # # ]: 0 : struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
1975 : 0 : int n;
1976 : :
1977 [ # # ]: 0 : for (n = 0; n < hdev->maxchild; n++) {
1978 [ # # ]: 0 : if (hub->ports[n]->port_owner == owner)
1979 : 0 : hub->ports[n]->port_owner = NULL;
1980 : : }
1981 : :
1982 : 0 : }
1983 : :
1984 : : /* The caller must hold udev's lock */
1985 : 0 : bool usb_device_is_owned(struct usb_device *udev)
1986 : : {
1987 : 0 : struct usb_hub *hub;
1988 : :
1989 [ # # # # ]: 0 : if (udev->state == USB_STATE_NOTATTACHED || !udev->parent)
1990 : : return false;
1991 [ # # ]: 0 : hub = usb_hub_to_struct_hub(udev->parent);
1992 : 0 : return !!hub->ports[udev->portnum - 1]->port_owner;
1993 : : }
1994 : :
1995 : 0 : static void recursively_mark_NOTATTACHED(struct usb_device *udev)
1996 : : {
1997 [ # # ]: 0 : struct usb_hub *hub = usb_hub_to_struct_hub(udev);
1998 : 0 : int i;
1999 : :
2000 [ # # ]: 0 : for (i = 0; i < udev->maxchild; ++i) {
2001 [ # # ]: 0 : if (hub->ports[i]->child)
2002 : 0 : recursively_mark_NOTATTACHED(hub->ports[i]->child);
2003 : : }
2004 [ # # ]: 0 : if (udev->state == USB_STATE_SUSPENDED)
2005 : 0 : udev->active_duration -= jiffies;
2006 : 0 : udev->state = USB_STATE_NOTATTACHED;
2007 : 0 : }
2008 : :
2009 : : /**
2010 : : * usb_set_device_state - change a device's current state (usbcore, hcds)
2011 : : * @udev: pointer to device whose state should be changed
2012 : : * @new_state: new state value to be stored
2013 : : *
2014 : : * udev->state is _not_ fully protected by the device lock. Although
2015 : : * most transitions are made only while holding the lock, the state can
2016 : : * can change to USB_STATE_NOTATTACHED at almost any time. This
2017 : : * is so that devices can be marked as disconnected as soon as possible,
2018 : : * without having to wait for any semaphores to be released. As a result,
2019 : : * all changes to any device's state must be protected by the
2020 : : * device_state_lock spinlock.
2021 : : *
2022 : : * Once a device has been added to the device tree, all changes to its state
2023 : : * should be made using this routine. The state should _not_ be set directly.
2024 : : *
2025 : : * If udev->state is already USB_STATE_NOTATTACHED then no change is made.
2026 : : * Otherwise udev->state is set to new_state, and if new_state is
2027 : : * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set
2028 : : * to USB_STATE_NOTATTACHED.
2029 : : */
2030 : 0 : void usb_set_device_state(struct usb_device *udev,
2031 : : enum usb_device_state new_state)
2032 : : {
2033 : 0 : unsigned long flags;
2034 : 0 : int wakeup = -1;
2035 : :
2036 : 0 : spin_lock_irqsave(&device_state_lock, flags);
2037 [ # # ]: 0 : if (udev->state == USB_STATE_NOTATTACHED)
2038 : : ; /* do nothing */
2039 [ # # ]: 0 : else if (new_state != USB_STATE_NOTATTACHED) {
2040 : :
2041 : : /* root hub wakeup capabilities are managed out-of-band
2042 : : * and may involve silicon errata ... ignore them here.
2043 : : */
2044 [ # # ]: 0 : if (udev->parent) {
2045 [ # # ]: 0 : if (udev->state == USB_STATE_SUSPENDED
2046 [ # # ]: 0 : || new_state == USB_STATE_SUSPENDED)
2047 : : ; /* No change to wakeup settings */
2048 [ # # ]: 0 : else if (new_state == USB_STATE_CONFIGURED)
2049 : 0 : wakeup = (udev->quirks &
2050 [ # # ]: 0 : USB_QUIRK_IGNORE_REMOTE_WAKEUP) ? 0 :
2051 : 0 : udev->actconfig->desc.bmAttributes &
2052 : : USB_CONFIG_ATT_WAKEUP;
2053 : : else
2054 : : wakeup = 0;
2055 : : }
2056 [ # # # # ]: 0 : if (udev->state == USB_STATE_SUSPENDED &&
2057 : : new_state != USB_STATE_SUSPENDED)
2058 : 0 : udev->active_duration -= jiffies;
2059 [ # # # # ]: 0 : else if (new_state == USB_STATE_SUSPENDED &&
2060 : : udev->state != USB_STATE_SUSPENDED)
2061 : 0 : udev->active_duration += jiffies;
2062 : 0 : udev->state = new_state;
2063 : : } else
2064 : 0 : recursively_mark_NOTATTACHED(udev);
2065 : 0 : spin_unlock_irqrestore(&device_state_lock, flags);
2066 [ # # ]: 0 : if (wakeup >= 0)
2067 : 0 : device_set_wakeup_capable(&udev->dev, wakeup);
2068 : 0 : }
2069 : : EXPORT_SYMBOL_GPL(usb_set_device_state);
2070 : :
2071 : : /*
2072 : : * Choose a device number.
2073 : : *
2074 : : * Device numbers are used as filenames in usbfs. On USB-1.1 and
2075 : : * USB-2.0 buses they are also used as device addresses, however on
2076 : : * USB-3.0 buses the address is assigned by the controller hardware
2077 : : * and it usually is not the same as the device number.
2078 : : *
2079 : : * WUSB devices are simple: they have no hubs behind, so the mapping
2080 : : * device <-> virtual port number becomes 1:1. Why? to simplify the
2081 : : * life of the device connection logic in
2082 : : * drivers/usb/wusbcore/devconnect.c. When we do the initial secret
2083 : : * handshake we need to assign a temporary address in the unauthorized
2084 : : * space. For simplicity we use the first virtual port number found to
2085 : : * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()]
2086 : : * and that becomes it's address [X < 128] or its unauthorized address
2087 : : * [X | 0x80].
2088 : : *
2089 : : * We add 1 as an offset to the one-based USB-stack port number
2090 : : * (zero-based wusb virtual port index) for two reasons: (a) dev addr
2091 : : * 0 is reserved by USB for default address; (b) Linux's USB stack
2092 : : * uses always #1 for the root hub of the controller. So USB stack's
2093 : : * port #1, which is wusb virtual-port #0 has address #2.
2094 : : *
2095 : : * Devices connected under xHCI are not as simple. The host controller
2096 : : * supports virtualization, so the hardware assigns device addresses and
2097 : : * the HCD must setup data structures before issuing a set address
2098 : : * command to the hardware.
2099 : : */
2100 : 0 : static void choose_devnum(struct usb_device *udev)
2101 : : {
2102 : 0 : int devnum;
2103 : 0 : struct usb_bus *bus = udev->bus;
2104 : :
2105 : : /* be safe when more hub events are proceed in parallel */
2106 : 0 : mutex_lock(&bus->devnum_next_mutex);
2107 [ # # ]: 0 : if (udev->wusb) {
2108 : 0 : devnum = udev->portnum + 1;
2109 [ # # ]: 0 : BUG_ON(test_bit(devnum, bus->devmap.devicemap));
2110 : : } else {
2111 : : /* Try to allocate the next devnum beginning at
2112 : : * bus->devnum_next. */
2113 : 0 : devnum = find_next_zero_bit(bus->devmap.devicemap, 128,
2114 : 0 : bus->devnum_next);
2115 [ # # ]: 0 : if (devnum >= 128)
2116 : 0 : devnum = find_next_zero_bit(bus->devmap.devicemap,
2117 : : 128, 1);
2118 [ # # ]: 0 : bus->devnum_next = (devnum >= 127 ? 1 : devnum + 1);
2119 : : }
2120 [ # # ]: 0 : if (devnum < 128) {
2121 : 0 : set_bit(devnum, bus->devmap.devicemap);
2122 : 0 : udev->devnum = devnum;
2123 : : }
2124 : 0 : mutex_unlock(&bus->devnum_next_mutex);
2125 : 0 : }
2126 : :
2127 : 0 : static void release_devnum(struct usb_device *udev)
2128 : : {
2129 : 0 : if (udev->devnum > 0) {
2130 : 0 : clear_bit(udev->devnum, udev->bus->devmap.devicemap);
2131 : 0 : udev->devnum = -1;
2132 : : }
2133 : : }
2134 : :
2135 : 0 : static void update_devnum(struct usb_device *udev, int devnum)
2136 : : {
2137 : : /* The address for a WUSB device is managed by wusbcore. */
2138 : 0 : if (!udev->wusb)
2139 : 0 : udev->devnum = devnum;
2140 [ # # # # : 0 : if (!udev->devaddr)
# # ]
2141 : 0 : udev->devaddr = (u8)devnum;
2142 : : }
2143 : :
2144 : 0 : static void hub_free_dev(struct usb_device *udev)
2145 : : {
2146 : 0 : struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2147 : :
2148 : : /* Root hubs aren't real devices, so don't free HCD resources */
2149 [ # # # # : 0 : if (hcd->driver->free_dev && udev->parent)
# # # # ]
2150 : 0 : hcd->driver->free_dev(hcd, udev);
2151 : : }
2152 : :
2153 : 0 : static void hub_disconnect_children(struct usb_device *udev)
2154 : : {
2155 [ # # ]: 0 : struct usb_hub *hub = usb_hub_to_struct_hub(udev);
2156 : 0 : int i;
2157 : :
2158 : : /* Free up all the children before we remove this device */
2159 [ # # ]: 0 : for (i = 0; i < udev->maxchild; i++) {
2160 [ # # ]: 0 : if (hub->ports[i]->child)
2161 : 0 : usb_disconnect(&hub->ports[i]->child);
2162 : : }
2163 : 0 : }
2164 : :
2165 : : /**
2166 : : * usb_disconnect - disconnect a device (usbcore-internal)
2167 : : * @pdev: pointer to device being disconnected
2168 : : * Context: !in_interrupt ()
2169 : : *
2170 : : * Something got disconnected. Get rid of it and all of its children.
2171 : : *
2172 : : * If *pdev is a normal device then the parent hub must already be locked.
2173 : : * If *pdev is a root hub then the caller must hold the usb_bus_idr_lock,
2174 : : * which protects the set of root hubs as well as the list of buses.
2175 : : *
2176 : : * Only hub drivers (including virtual root hub drivers for host
2177 : : * controllers) should ever call this.
2178 : : *
2179 : : * This call is synchronous, and may not be used in an interrupt context.
2180 : : */
2181 : 0 : void usb_disconnect(struct usb_device **pdev)
2182 : : {
2183 : 0 : struct usb_port *port_dev = NULL;
2184 : 0 : struct usb_device *udev = *pdev;
2185 : 0 : struct usb_hub *hub = NULL;
2186 : 0 : int port1 = 1;
2187 : :
2188 : : /* mark the device as inactive, so any further urb submissions for
2189 : : * this device (and any of its children) will fail immediately.
2190 : : * this quiesces everything except pending urbs.
2191 : : */
2192 : 0 : usb_set_device_state(udev, USB_STATE_NOTATTACHED);
2193 : 0 : dev_info(&udev->dev, "USB disconnect, device number %d\n",
2194 : : udev->devnum);
2195 : :
2196 : : /*
2197 : : * Ensure that the pm runtime code knows that the USB device
2198 : : * is in the process of being disconnected.
2199 : : */
2200 : 0 : pm_runtime_barrier(&udev->dev);
2201 : :
2202 : 0 : usb_lock_device(udev);
2203 : :
2204 : 0 : hub_disconnect_children(udev);
2205 : :
2206 : : /* deallocate hcd/hardware state ... nuking all pending urbs and
2207 : : * cleaning up all state associated with the current configuration
2208 : : * so that the hardware is now fully quiesced.
2209 : : */
2210 : 0 : dev_dbg(&udev->dev, "unregistering device\n");
2211 : 0 : usb_disable_device(udev, 0);
2212 : 0 : usb_hcd_synchronize_unlinks(udev);
2213 : :
2214 [ # # ]: 0 : if (udev->parent) {
2215 : 0 : port1 = udev->portnum;
2216 [ # # ]: 0 : hub = usb_hub_to_struct_hub(udev->parent);
2217 : 0 : port_dev = hub->ports[port1 - 1];
2218 : :
2219 : 0 : sysfs_remove_link(&udev->dev.kobj, "port");
2220 : 0 : sysfs_remove_link(&port_dev->dev.kobj, "device");
2221 : :
2222 : : /*
2223 : : * As usb_port_runtime_resume() de-references udev, make
2224 : : * sure no resumes occur during removal
2225 : : */
2226 [ # # ]: 0 : if (!test_and_set_bit(port1, hub->child_usage_bits))
2227 : 0 : pm_runtime_get_sync(&port_dev->dev);
2228 : : }
2229 : :
2230 : 0 : usb_remove_ep_devs(&udev->ep0);
2231 : 0 : usb_unlock_device(udev);
2232 : :
2233 : : /* Unregister the device. The device driver is responsible
2234 : : * for de-configuring the device and invoking the remove-device
2235 : : * notifier chain (used by usbfs and possibly others).
2236 : : */
2237 : 0 : device_del(&udev->dev);
2238 : :
2239 : : /* Free the device number and delete the parent's children[]
2240 : : * (or root_hub) pointer.
2241 : : */
2242 [ # # ]: 0 : release_devnum(udev);
2243 : :
2244 : : /* Avoid races with recursively_mark_NOTATTACHED() */
2245 : 0 : spin_lock_irq(&device_state_lock);
2246 : 0 : *pdev = NULL;
2247 : 0 : spin_unlock_irq(&device_state_lock);
2248 : :
2249 [ # # # # ]: 0 : if (port_dev && test_and_clear_bit(port1, hub->child_usage_bits))
2250 : 0 : pm_runtime_put(&port_dev->dev);
2251 : :
2252 [ # # ]: 0 : hub_free_dev(udev);
2253 : :
2254 : 0 : put_device(&udev->dev);
2255 : 0 : }
2256 : :
2257 : : #ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES
2258 : 0 : static void show_string(struct usb_device *udev, char *id, char *string)
2259 : : {
2260 : 0 : if (!string)
2261 : : return;
2262 : 0 : dev_info(&udev->dev, "%s: %s\n", id, string);
2263 : : }
2264 : :
2265 : 0 : static void announce_device(struct usb_device *udev)
2266 : : {
2267 : 0 : u16 bcdDevice = le16_to_cpu(udev->descriptor.bcdDevice);
2268 : :
2269 : 0 : dev_info(&udev->dev,
2270 : : "New USB device found, idVendor=%04x, idProduct=%04x, bcdDevice=%2x.%02x\n",
2271 : : le16_to_cpu(udev->descriptor.idVendor),
2272 : : le16_to_cpu(udev->descriptor.idProduct),
2273 : : bcdDevice >> 8, bcdDevice & 0xff);
2274 : 0 : dev_info(&udev->dev,
2275 : : "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n",
2276 : : udev->descriptor.iManufacturer,
2277 : : udev->descriptor.iProduct,
2278 : : udev->descriptor.iSerialNumber);
2279 [ # # ]: 0 : show_string(udev, "Product", udev->product);
2280 [ # # ]: 0 : show_string(udev, "Manufacturer", udev->manufacturer);
2281 [ # # ]: 0 : show_string(udev, "SerialNumber", udev->serial);
2282 : 0 : }
2283 : : #else
2284 : : static inline void announce_device(struct usb_device *udev) { }
2285 : : #endif
2286 : :
2287 : :
2288 : : /**
2289 : : * usb_enumerate_device_otg - FIXME (usbcore-internal)
2290 : : * @udev: newly addressed device (in ADDRESS state)
2291 : : *
2292 : : * Finish enumeration for On-The-Go devices
2293 : : *
2294 : : * Return: 0 if successful. A negative error code otherwise.
2295 : : */
2296 : 0 : static int usb_enumerate_device_otg(struct usb_device *udev)
2297 : : {
2298 : 0 : int err = 0;
2299 : :
2300 : : #ifdef CONFIG_USB_OTG
2301 : : /*
2302 : : * OTG-aware devices on OTG-capable root hubs may be able to use SRP,
2303 : : * to wake us after we've powered off VBUS; and HNP, switching roles
2304 : : * "host" to "peripheral". The OTG descriptor helps figure this out.
2305 : : */
2306 : : if (!udev->bus->is_b_host
2307 : : && udev->config
2308 : : && udev->parent == udev->bus->root_hub) {
2309 : : struct usb_otg_descriptor *desc = NULL;
2310 : : struct usb_bus *bus = udev->bus;
2311 : : unsigned port1 = udev->portnum;
2312 : :
2313 : : /* descriptor may appear anywhere in config */
2314 : : err = __usb_get_extra_descriptor(udev->rawdescriptors[0],
2315 : : le16_to_cpu(udev->config[0].desc.wTotalLength),
2316 : : USB_DT_OTG, (void **) &desc, sizeof(*desc));
2317 : : if (err || !(desc->bmAttributes & USB_OTG_HNP))
2318 : : return 0;
2319 : :
2320 : : dev_info(&udev->dev, "Dual-Role OTG device on %sHNP port\n",
2321 : : (port1 == bus->otg_port) ? "" : "non-");
2322 : :
2323 : : /* enable HNP before suspend, it's simpler */
2324 : : if (port1 == bus->otg_port) {
2325 : : bus->b_hnp_enable = 1;
2326 : : err = usb_control_msg(udev,
2327 : : usb_sndctrlpipe(udev, 0),
2328 : : USB_REQ_SET_FEATURE, 0,
2329 : : USB_DEVICE_B_HNP_ENABLE,
2330 : : 0, NULL, 0,
2331 : : USB_CTRL_SET_TIMEOUT);
2332 : : if (err < 0) {
2333 : : /*
2334 : : * OTG MESSAGE: report errors here,
2335 : : * customize to match your product.
2336 : : */
2337 : : dev_err(&udev->dev, "can't set HNP mode: %d\n",
2338 : : err);
2339 : : bus->b_hnp_enable = 0;
2340 : : }
2341 : : } else if (desc->bLength == sizeof
2342 : : (struct usb_otg_descriptor)) {
2343 : : /* Set a_alt_hnp_support for legacy otg device */
2344 : : err = usb_control_msg(udev,
2345 : : usb_sndctrlpipe(udev, 0),
2346 : : USB_REQ_SET_FEATURE, 0,
2347 : : USB_DEVICE_A_ALT_HNP_SUPPORT,
2348 : : 0, NULL, 0,
2349 : : USB_CTRL_SET_TIMEOUT);
2350 : : if (err < 0)
2351 : : dev_err(&udev->dev,
2352 : : "set a_alt_hnp_support failed: %d\n",
2353 : : err);
2354 : : }
2355 : : }
2356 : : #endif
2357 : 0 : return err;
2358 : : }
2359 : :
2360 : :
2361 : : /**
2362 : : * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal)
2363 : : * @udev: newly addressed device (in ADDRESS state)
2364 : : *
2365 : : * This is only called by usb_new_device() and usb_authorize_device()
2366 : : * and FIXME -- all comments that apply to them apply here wrt to
2367 : : * environment.
2368 : : *
2369 : : * If the device is WUSB and not authorized, we don't attempt to read
2370 : : * the string descriptors, as they will be errored out by the device
2371 : : * until it has been authorized.
2372 : : *
2373 : : * Return: 0 if successful. A negative error code otherwise.
2374 : : */
2375 : 0 : static int usb_enumerate_device(struct usb_device *udev)
2376 : : {
2377 : 0 : int err;
2378 [ # # ]: 0 : struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2379 : :
2380 [ # # ]: 0 : if (udev->config == NULL) {
2381 : 0 : err = usb_get_configuration(udev);
2382 [ # # ]: 0 : if (err < 0) {
2383 [ # # ]: 0 : if (err != -ENODEV)
2384 : 0 : dev_err(&udev->dev, "can't read configurations, error %d\n",
2385 : : err);
2386 : 0 : return err;
2387 : : }
2388 : : }
2389 : :
2390 : : /* read the standard strings and cache them if present */
2391 : 0 : udev->product = usb_cache_string(udev, udev->descriptor.iProduct);
2392 : 0 : udev->manufacturer = usb_cache_string(udev,
2393 : 0 : udev->descriptor.iManufacturer);
2394 : 0 : udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber);
2395 : :
2396 : 0 : err = usb_enumerate_device_otg(udev);
2397 : 0 : if (err < 0)
2398 : : return err;
2399 : :
2400 : 0 : if (IS_ENABLED(CONFIG_USB_OTG_WHITELIST) && hcd->tpl_support &&
2401 : : !is_targeted(udev)) {
2402 : : /* Maybe it can talk to us, though we can't talk to it.
2403 : : * (Includes HNP test device.)
2404 : : */
2405 : : if (IS_ENABLED(CONFIG_USB_OTG) && (udev->bus->b_hnp_enable
2406 : : || udev->bus->is_b_host)) {
2407 : : err = usb_port_suspend(udev, PMSG_AUTO_SUSPEND);
2408 : : if (err < 0)
2409 : : dev_dbg(&udev->dev, "HNP fail, %d\n", err);
2410 : : }
2411 : : return -ENOTSUPP;
2412 : : }
2413 : :
2414 : 0 : usb_detect_interface_quirks(udev);
2415 : :
2416 : 0 : return 0;
2417 : : }
2418 : :
2419 : 0 : static void set_usb_port_removable(struct usb_device *udev)
2420 : : {
2421 : 0 : struct usb_device *hdev = udev->parent;
2422 : 0 : struct usb_hub *hub;
2423 : 0 : u8 port = udev->portnum;
2424 : 0 : u16 wHubCharacteristics;
2425 : 0 : bool removable = true;
2426 : :
2427 [ # # ]: 0 : if (!hdev)
2428 : : return;
2429 : :
2430 [ # # ]: 0 : hub = usb_hub_to_struct_hub(udev->parent);
2431 : :
2432 : : /*
2433 : : * If the platform firmware has provided information about a port,
2434 : : * use that to determine whether it's removable.
2435 : : */
2436 [ # # # ]: 0 : switch (hub->ports[udev->portnum - 1]->connect_type) {
2437 : 0 : case USB_PORT_CONNECT_TYPE_HOT_PLUG:
2438 : 0 : udev->removable = USB_DEVICE_REMOVABLE;
2439 : 0 : return;
2440 : 0 : case USB_PORT_CONNECT_TYPE_HARD_WIRED:
2441 : : case USB_PORT_NOT_USED:
2442 : 0 : udev->removable = USB_DEVICE_FIXED;
2443 : 0 : return;
2444 : : default:
2445 : 0 : break;
2446 : : }
2447 : :
2448 : : /*
2449 : : * Otherwise, check whether the hub knows whether a port is removable
2450 : : * or not
2451 : : */
2452 : 0 : wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics);
2453 : :
2454 [ # # ]: 0 : if (!(wHubCharacteristics & HUB_CHAR_COMPOUND))
2455 : : return;
2456 : :
2457 [ # # ]: 0 : if (hub_is_superspeed(hdev)) {
2458 [ # # ]: 0 : if (le16_to_cpu(hub->descriptor->u.ss.DeviceRemovable)
2459 : : & (1 << port))
2460 : : removable = false;
2461 : : } else {
2462 [ # # ]: 0 : if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8)))
2463 : : removable = false;
2464 : : }
2465 : :
2466 : : if (removable)
2467 : 0 : udev->removable = USB_DEVICE_REMOVABLE;
2468 : : else
2469 : 0 : udev->removable = USB_DEVICE_FIXED;
2470 : :
2471 : : }
2472 : :
2473 : : /**
2474 : : * usb_new_device - perform initial device setup (usbcore-internal)
2475 : : * @udev: newly addressed device (in ADDRESS state)
2476 : : *
2477 : : * This is called with devices which have been detected but not fully
2478 : : * enumerated. The device descriptor is available, but not descriptors
2479 : : * for any device configuration. The caller must have locked either
2480 : : * the parent hub (if udev is a normal device) or else the
2481 : : * usb_bus_idr_lock (if udev is a root hub). The parent's pointer to
2482 : : * udev has already been installed, but udev is not yet visible through
2483 : : * sysfs or other filesystem code.
2484 : : *
2485 : : * This call is synchronous, and may not be used in an interrupt context.
2486 : : *
2487 : : * Only the hub driver or root-hub registrar should ever call this.
2488 : : *
2489 : : * Return: Whether the device is configured properly or not. Zero if the
2490 : : * interface was registered with the driver core; else a negative errno
2491 : : * value.
2492 : : *
2493 : : */
2494 : 0 : int usb_new_device(struct usb_device *udev)
2495 : : {
2496 : 0 : int err;
2497 : :
2498 [ # # ]: 0 : if (udev->parent) {
2499 : : /* Initialize non-root-hub device wakeup to disabled;
2500 : : * device (un)configuration controls wakeup capable
2501 : : * sysfs power/wakeup controls wakeup enabled/disabled
2502 : : */
2503 : 0 : device_init_wakeup(&udev->dev, 0);
2504 : : }
2505 : :
2506 : : /* Tell the runtime-PM framework the device is active */
2507 : 0 : pm_runtime_set_active(&udev->dev);
2508 : 0 : pm_runtime_get_noresume(&udev->dev);
2509 : 0 : pm_runtime_use_autosuspend(&udev->dev);
2510 : 0 : pm_runtime_enable(&udev->dev);
2511 : :
2512 : : /* By default, forbid autosuspend for all devices. It will be
2513 : : * allowed for hubs during binding.
2514 : : */
2515 : 0 : usb_disable_autosuspend(udev);
2516 : :
2517 : 0 : err = usb_enumerate_device(udev); /* Read descriptors */
2518 [ # # ]: 0 : if (err < 0)
2519 : 0 : goto fail;
2520 : 0 : dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n",
2521 : : udev->devnum, udev->bus->busnum,
2522 : : (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2523 : : /* export the usbdev device-node for libusb */
2524 : 0 : udev->dev.devt = MKDEV(USB_DEVICE_MAJOR,
2525 : : (((udev->bus->busnum-1) * 128) + (udev->devnum-1)));
2526 : :
2527 : : /* Tell the world! */
2528 : 0 : announce_device(udev);
2529 : :
2530 [ # # ]: 0 : if (udev->serial)
2531 : 0 : add_device_randomness(udev->serial, strlen(udev->serial));
2532 [ # # ]: 0 : if (udev->product)
2533 : 0 : add_device_randomness(udev->product, strlen(udev->product));
2534 [ # # ]: 0 : if (udev->manufacturer)
2535 : 0 : add_device_randomness(udev->manufacturer,
2536 : 0 : strlen(udev->manufacturer));
2537 : :
2538 [ # # ]: 0 : device_enable_async_suspend(&udev->dev);
2539 : :
2540 : : /* check whether the hub or firmware marks this port as non-removable */
2541 [ # # ]: 0 : if (udev->parent)
2542 : 0 : set_usb_port_removable(udev);
2543 : :
2544 : : /* Register the device. The device driver is responsible
2545 : : * for configuring the device and invoking the add-device
2546 : : * notifier chain (used by usbfs and possibly others).
2547 : : */
2548 : 0 : err = device_add(&udev->dev);
2549 [ # # ]: 0 : if (err) {
2550 : 0 : dev_err(&udev->dev, "can't device_add, error %d\n", err);
2551 : 0 : goto fail;
2552 : : }
2553 : :
2554 : : /* Create link files between child device and usb port device. */
2555 [ # # ]: 0 : if (udev->parent) {
2556 [ # # ]: 0 : struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
2557 : 0 : int port1 = udev->portnum;
2558 : 0 : struct usb_port *port_dev = hub->ports[port1 - 1];
2559 : :
2560 : 0 : err = sysfs_create_link(&udev->dev.kobj,
2561 : : &port_dev->dev.kobj, "port");
2562 [ # # ]: 0 : if (err)
2563 : 0 : goto fail;
2564 : :
2565 : 0 : err = sysfs_create_link(&port_dev->dev.kobj,
2566 : : &udev->dev.kobj, "device");
2567 [ # # ]: 0 : if (err) {
2568 : 0 : sysfs_remove_link(&udev->dev.kobj, "port");
2569 : 0 : goto fail;
2570 : : }
2571 : :
2572 [ # # ]: 0 : if (!test_and_set_bit(port1, hub->child_usage_bits))
2573 : 0 : pm_runtime_get_sync(&port_dev->dev);
2574 : : }
2575 : :
2576 : 0 : (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev);
2577 : 0 : usb_mark_last_busy(udev);
2578 : 0 : pm_runtime_put_sync_autosuspend(&udev->dev);
2579 : 0 : return err;
2580 : :
2581 : 0 : fail:
2582 : 0 : usb_set_device_state(udev, USB_STATE_NOTATTACHED);
2583 : 0 : pm_runtime_disable(&udev->dev);
2584 : 0 : pm_runtime_set_suspended(&udev->dev);
2585 : 0 : return err;
2586 : : }
2587 : :
2588 : :
2589 : : /**
2590 : : * usb_deauthorize_device - deauthorize a device (usbcore-internal)
2591 : : * @usb_dev: USB device
2592 : : *
2593 : : * Move the USB device to a very basic state where interfaces are disabled
2594 : : * and the device is in fact unconfigured and unusable.
2595 : : *
2596 : : * We share a lock (that we have) with device_del(), so we need to
2597 : : * defer its call.
2598 : : *
2599 : : * Return: 0.
2600 : : */
2601 : 0 : int usb_deauthorize_device(struct usb_device *usb_dev)
2602 : : {
2603 : 0 : usb_lock_device(usb_dev);
2604 [ # # ]: 0 : if (usb_dev->authorized == 0)
2605 : 0 : goto out_unauthorized;
2606 : :
2607 : 0 : usb_dev->authorized = 0;
2608 : 0 : usb_set_configuration(usb_dev, -1);
2609 : :
2610 : 0 : out_unauthorized:
2611 : 0 : usb_unlock_device(usb_dev);
2612 : 0 : return 0;
2613 : : }
2614 : :
2615 : :
2616 : 0 : int usb_authorize_device(struct usb_device *usb_dev)
2617 : : {
2618 : 0 : int result = 0, c;
2619 : :
2620 : 0 : usb_lock_device(usb_dev);
2621 [ # # ]: 0 : if (usb_dev->authorized == 1)
2622 : 0 : goto out_authorized;
2623 : :
2624 : 0 : result = usb_autoresume_device(usb_dev);
2625 [ # # ]: 0 : if (result < 0) {
2626 : 0 : dev_err(&usb_dev->dev,
2627 : : "can't autoresume for authorization: %d\n", result);
2628 : 0 : goto error_autoresume;
2629 : : }
2630 : :
2631 [ # # ]: 0 : if (usb_dev->wusb) {
2632 : 0 : result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor));
2633 [ # # ]: 0 : if (result < 0) {
2634 : 0 : dev_err(&usb_dev->dev, "can't re-read device descriptor for "
2635 : : "authorization: %d\n", result);
2636 : 0 : goto error_device_descriptor;
2637 : : }
2638 : : }
2639 : :
2640 : 0 : usb_dev->authorized = 1;
2641 : : /* Choose and set the configuration. This registers the interfaces
2642 : : * with the driver core and lets interface drivers bind to them.
2643 : : */
2644 : 0 : c = usb_choose_configuration(usb_dev);
2645 [ # # ]: 0 : if (c >= 0) {
2646 : 0 : result = usb_set_configuration(usb_dev, c);
2647 [ # # ]: 0 : if (result) {
2648 : 0 : dev_err(&usb_dev->dev,
2649 : : "can't set config #%d, error %d\n", c, result);
2650 : : /* This need not be fatal. The user can try to
2651 : : * set other configurations. */
2652 : : }
2653 : : }
2654 : 0 : dev_info(&usb_dev->dev, "authorized to connect\n");
2655 : :
2656 : 0 : error_device_descriptor:
2657 : 0 : usb_autosuspend_device(usb_dev);
2658 : 0 : error_autoresume:
2659 : 0 : out_authorized:
2660 : 0 : usb_unlock_device(usb_dev); /* complements locktree */
2661 : 0 : return result;
2662 : : }
2663 : :
2664 : : /*
2665 : : * Return 1 if port speed is SuperSpeedPlus, 0 otherwise
2666 : : * check it from the link protocol field of the current speed ID attribute.
2667 : : * current speed ID is got from ext port status request. Sublink speed attribute
2668 : : * table is returned with the hub BOS SSP device capability descriptor
2669 : : */
2670 : 0 : static int port_speed_is_ssp(struct usb_device *hdev, int speed_id)
2671 : : {
2672 : 0 : int ssa_count;
2673 : 0 : u32 ss_attr;
2674 : 0 : int i;
2675 : 0 : struct usb_ssp_cap_descriptor *ssp_cap = hdev->bos->ssp_cap;
2676 : :
2677 : 0 : if (!ssp_cap)
2678 : : return 0;
2679 : :
2680 : 0 : ssa_count = le32_to_cpu(ssp_cap->bmAttributes) &
2681 : : USB_SSP_SUBLINK_SPEED_ATTRIBS;
2682 : :
2683 [ # # ]: 0 : for (i = 0; i <= ssa_count; i++) {
2684 : 0 : ss_attr = le32_to_cpu(ssp_cap->bmSublinkSpeedAttr[i]);
2685 [ # # ]: 0 : if (speed_id == (ss_attr & USB_SSP_SUBLINK_SPEED_SSID))
2686 : 0 : return !!(ss_attr & USB_SSP_SUBLINK_SPEED_LP);
2687 : : }
2688 : : return 0;
2689 : : }
2690 : :
2691 : : /* Returns 1 if @hub is a WUSB root hub, 0 otherwise */
2692 : 0 : static unsigned hub_is_wusb(struct usb_hub *hub)
2693 : : {
2694 : 0 : struct usb_hcd *hcd;
2695 : 0 : if (hub->hdev->parent != NULL) /* not a root hub? */
2696 : : return 0;
2697 [ # # ]: 0 : hcd = bus_to_hcd(hub->hdev->bus);
2698 : 0 : return hcd->wireless;
2699 : : }
2700 : :
2701 : :
2702 : : #define PORT_RESET_TRIES 5
2703 : : #define SET_ADDRESS_TRIES 2
2704 : : #define GET_DESCRIPTOR_TRIES 2
2705 : : #define SET_CONFIG_TRIES (2 * (use_both_schemes + 1))
2706 : : #define USE_NEW_SCHEME(i, scheme) ((i) / 2 == (int)(scheme))
2707 : :
2708 : : #define HUB_ROOT_RESET_TIME 60 /* times are in msec */
2709 : : #define HUB_SHORT_RESET_TIME 10
2710 : : #define HUB_BH_RESET_TIME 50
2711 : : #define HUB_LONG_RESET_TIME 200
2712 : : #define HUB_RESET_TIMEOUT 800
2713 : :
2714 : : /*
2715 : : * "New scheme" enumeration causes an extra state transition to be
2716 : : * exposed to an xhci host and causes USB3 devices to receive control
2717 : : * commands in the default state. This has been seen to cause
2718 : : * enumeration failures, so disable this enumeration scheme for USB3
2719 : : * devices.
2720 : : */
2721 : 0 : static bool use_new_scheme(struct usb_device *udev, int retry,
2722 : : struct usb_port *port_dev)
2723 : : {
2724 : 0 : int old_scheme_first_port =
2725 : 0 : port_dev->quirks & USB_PORT_QUIRK_OLD_SCHEME;
2726 : 0 : int quick_enumeration = (udev->speed == USB_SPEED_HIGH);
2727 : :
2728 : 0 : if (udev->speed >= USB_SPEED_SUPER)
2729 : : return false;
2730 : :
2731 [ # # # # : 0 : return USE_NEW_SCHEME(retry, old_scheme_first_port || old_scheme_first
# # ]
2732 : : || quick_enumeration);
2733 : : }
2734 : :
2735 : : /* Is a USB 3.0 port in the Inactive or Compliance Mode state?
2736 : : * Port warm reset is required to recover
2737 : : */
2738 : 0 : static bool hub_port_warm_reset_required(struct usb_hub *hub, int port1,
2739 : : u16 portstatus)
2740 : : {
2741 : 0 : u16 link_state;
2742 : :
2743 [ # # ]: 0 : if (!hub_is_superspeed(hub->hdev))
2744 : : return false;
2745 : :
2746 [ # # ]: 0 : if (test_bit(port1, hub->warm_reset_bits))
2747 : : return true;
2748 : :
2749 : 0 : link_state = portstatus & USB_PORT_STAT_LINK_STATE;
2750 : 0 : return link_state == USB_SS_PORT_LS_SS_INACTIVE
2751 : 0 : || link_state == USB_SS_PORT_LS_COMP_MOD;
2752 : : }
2753 : :
2754 : 0 : static int hub_port_wait_reset(struct usb_hub *hub, int port1,
2755 : : struct usb_device *udev, unsigned int delay, bool warm)
2756 : : {
2757 : 0 : int delay_time, ret;
2758 : 0 : u16 portstatus;
2759 : 0 : u16 portchange;
2760 : 0 : u32 ext_portstatus = 0;
2761 : :
2762 : 0 : for (delay_time = 0;
2763 [ # # ]: 0 : delay_time < HUB_RESET_TIMEOUT;
2764 : 0 : delay_time += delay) {
2765 : : /* wait to give the device a chance to reset */
2766 : 0 : msleep(delay);
2767 : :
2768 : : /* read and decode port status */
2769 [ # # ]: 0 : if (hub_is_superspeedplus(hub->hdev))
2770 : 0 : ret = hub_ext_port_status(hub, port1,
2771 : : HUB_EXT_PORT_STATUS,
2772 : : &portstatus, &portchange,
2773 : : &ext_portstatus);
2774 : : else
2775 : 0 : ret = hub_port_status(hub, port1, &portstatus,
2776 : : &portchange);
2777 [ # # ]: 0 : if (ret < 0)
2778 : 0 : return ret;
2779 : :
2780 : : /*
2781 : : * The port state is unknown until the reset completes.
2782 : : *
2783 : : * On top of that, some chips may require additional time
2784 : : * to re-establish a connection after the reset is complete,
2785 : : * so also wait for the connection to be re-established.
2786 : : */
2787 [ # # ]: 0 : if (!(portstatus & USB_PORT_STAT_RESET) &&
2788 : : (portstatus & USB_PORT_STAT_CONNECTION))
2789 : : break;
2790 : :
2791 : : /* switch to the long delay after two short delay failures */
2792 [ # # ]: 0 : if (delay_time >= 2 * HUB_SHORT_RESET_TIME)
2793 : 0 : delay = HUB_LONG_RESET_TIME;
2794 : :
2795 : 0 : dev_dbg(&hub->ports[port1 - 1]->dev,
2796 : : "not %sreset yet, waiting %dms\n",
2797 : : warm ? "warm " : "", delay);
2798 : : }
2799 : :
2800 [ # # ]: 0 : if ((portstatus & USB_PORT_STAT_RESET))
2801 : : return -EBUSY;
2802 : :
2803 [ # # ]: 0 : if (hub_port_warm_reset_required(hub, port1, portstatus))
2804 : : return -ENOTCONN;
2805 : :
2806 : : /* Device went away? */
2807 [ # # ]: 0 : if (!(portstatus & USB_PORT_STAT_CONNECTION))
2808 : : return -ENOTCONN;
2809 : :
2810 : : /* Retry if connect change is set but status is still connected.
2811 : : * A USB 3.0 connection may bounce if multiple warm resets were issued,
2812 : : * but the device may have successfully re-connected. Ignore it.
2813 : : */
2814 [ # # ]: 0 : if (!hub_is_superspeed(hub->hdev) &&
2815 [ # # ]: 0 : (portchange & USB_PORT_STAT_C_CONNECTION)) {
2816 : 0 : usb_clear_port_feature(hub->hdev, port1,
2817 : : USB_PORT_FEAT_C_CONNECTION);
2818 : 0 : return -EAGAIN;
2819 : : }
2820 : :
2821 [ # # ]: 0 : if (!(portstatus & USB_PORT_STAT_ENABLE))
2822 : : return -EBUSY;
2823 : :
2824 [ # # ]: 0 : if (!udev)
2825 : : return 0;
2826 : :
2827 [ # # ]: 0 : if (hub_is_superspeedplus(hub->hdev)) {
2828 : : /* extended portstatus Rx and Tx lane count are zero based */
2829 : 0 : udev->rx_lanes = USB_EXT_PORT_RX_LANES(ext_portstatus) + 1;
2830 : 0 : udev->tx_lanes = USB_EXT_PORT_TX_LANES(ext_portstatus) + 1;
2831 : : } else {
2832 : 0 : udev->rx_lanes = 1;
2833 : 0 : udev->tx_lanes = 1;
2834 : : }
2835 [ # # # # ]: 0 : if (hub_is_wusb(hub))
2836 : 0 : udev->speed = USB_SPEED_WIRELESS;
2837 [ # # # # ]: 0 : else if (hub_is_superspeedplus(hub->hdev) &&
2838 : 0 : port_speed_is_ssp(hub->hdev, ext_portstatus &
2839 : : USB_EXT_PORT_STAT_RX_SPEED_ID))
2840 : 0 : udev->speed = USB_SPEED_SUPER_PLUS;
2841 [ # # ]: 0 : else if (hub_is_superspeed(hub->hdev))
2842 : 0 : udev->speed = USB_SPEED_SUPER;
2843 [ # # ]: 0 : else if (portstatus & USB_PORT_STAT_HIGH_SPEED)
2844 : 0 : udev->speed = USB_SPEED_HIGH;
2845 [ # # ]: 0 : else if (portstatus & USB_PORT_STAT_LOW_SPEED)
2846 : 0 : udev->speed = USB_SPEED_LOW;
2847 : : else
2848 : 0 : udev->speed = USB_SPEED_FULL;
2849 : : return 0;
2850 : : }
2851 : :
2852 : : /* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */
2853 : 0 : static int hub_port_reset(struct usb_hub *hub, int port1,
2854 : : struct usb_device *udev, unsigned int delay, bool warm)
2855 : : {
2856 : 0 : int i, status;
2857 : 0 : u16 portchange, portstatus;
2858 : 0 : struct usb_port *port_dev = hub->ports[port1 - 1];
2859 : 0 : int reset_recovery_time;
2860 : :
2861 [ # # ]: 0 : if (!hub_is_superspeed(hub->hdev)) {
2862 [ # # ]: 0 : if (warm) {
2863 : 0 : dev_err(hub->intfdev, "only USB3 hub support "
2864 : : "warm reset\n");
2865 : 0 : return -EINVAL;
2866 : : }
2867 : : /* Block EHCI CF initialization during the port reset.
2868 : : * Some companion controllers don't like it when they mix.
2869 : : */
2870 : 0 : down_read(&ehci_cf_port_reset_rwsem);
2871 [ # # ]: 0 : } else if (!warm) {
2872 : : /*
2873 : : * If the caller hasn't explicitly requested a warm reset,
2874 : : * double check and see if one is needed.
2875 : : */
2876 [ # # ]: 0 : if (hub_port_status(hub, port1, &portstatus, &portchange) == 0)
2877 [ # # ]: 0 : if (hub_port_warm_reset_required(hub, port1,
2878 : : portstatus))
2879 : 0 : warm = true;
2880 : : }
2881 : 0 : clear_bit(port1, hub->warm_reset_bits);
2882 : :
2883 : : /* Reset the port */
2884 [ # # ]: 0 : for (i = 0; i < PORT_RESET_TRIES; i++) {
2885 [ # # ]: 0 : status = set_port_feature(hub->hdev, port1, (warm ?
2886 : : USB_PORT_FEAT_BH_PORT_RESET :
2887 : : USB_PORT_FEAT_RESET));
2888 [ # # ]: 0 : if (status == -ENODEV) {
2889 : : ; /* The hub is gone */
2890 [ # # ]: 0 : } else if (status) {
2891 [ # # ]: 0 : dev_err(&port_dev->dev,
2892 : : "cannot %sreset (err = %d)\n",
2893 : : warm ? "warm " : "", status);
2894 : : } else {
2895 : 0 : status = hub_port_wait_reset(hub, port1, udev, delay,
2896 : : warm);
2897 : 0 : if (status && status != -ENOTCONN && status != -ENODEV)
2898 : : dev_dbg(hub->intfdev,
2899 : : "port_wait_reset: err = %d\n",
2900 : : status);
2901 : : }
2902 : :
2903 : : /* Check for disconnect or reset */
2904 [ # # # # ]: 0 : if (status == 0 || status == -ENOTCONN || status == -ENODEV) {
2905 : 0 : usb_clear_port_feature(hub->hdev, port1,
2906 : : USB_PORT_FEAT_C_RESET);
2907 : :
2908 [ # # ]: 0 : if (!hub_is_superspeed(hub->hdev))
2909 : 0 : goto done;
2910 : :
2911 : 0 : usb_clear_port_feature(hub->hdev, port1,
2912 : : USB_PORT_FEAT_C_BH_PORT_RESET);
2913 : 0 : usb_clear_port_feature(hub->hdev, port1,
2914 : : USB_PORT_FEAT_C_PORT_LINK_STATE);
2915 : :
2916 [ # # ]: 0 : if (udev)
2917 : 0 : usb_clear_port_feature(hub->hdev, port1,
2918 : : USB_PORT_FEAT_C_CONNECTION);
2919 : :
2920 : : /*
2921 : : * If a USB 3.0 device migrates from reset to an error
2922 : : * state, re-issue the warm reset.
2923 : : */
2924 [ # # ]: 0 : if (hub_port_status(hub, port1,
2925 : : &portstatus, &portchange) < 0)
2926 : 0 : goto done;
2927 : :
2928 [ # # ]: 0 : if (!hub_port_warm_reset_required(hub, port1,
2929 : : portstatus))
2930 : 0 : goto done;
2931 : :
2932 : : /*
2933 : : * If the port is in SS.Inactive or Compliance Mode, the
2934 : : * hot or warm reset failed. Try another warm reset.
2935 : : */
2936 : 0 : if (!warm) {
2937 : : dev_dbg(&port_dev->dev,
2938 : : "hot reset failed, warm reset\n");
2939 : : warm = true;
2940 : : }
2941 : : }
2942 : :
2943 : 0 : dev_dbg(&port_dev->dev,
2944 : : "not enabled, trying %sreset again...\n",
2945 : : warm ? "warm " : "");
2946 : 0 : delay = HUB_LONG_RESET_TIME;
2947 : : }
2948 : :
2949 : 0 : dev_err(&port_dev->dev, "Cannot enable. Maybe the USB cable is bad?\n");
2950 : :
2951 : 0 : done:
2952 [ # # ]: 0 : if (status == 0) {
2953 [ # # ]: 0 : if (port_dev->quirks & USB_PORT_QUIRK_FAST_ENUM)
2954 : 0 : usleep_range(10000, 12000);
2955 : : else {
2956 : : /* TRSTRCY = 10 ms; plus some extra */
2957 : 0 : reset_recovery_time = 10 + 40;
2958 : :
2959 : : /* Hub needs extra delay after resetting its port. */
2960 [ # # ]: 0 : if (hub->hdev->quirks & USB_QUIRK_HUB_SLOW_RESET)
2961 : 0 : reset_recovery_time += 100;
2962 : :
2963 : 0 : msleep(reset_recovery_time);
2964 : : }
2965 : :
2966 [ # # ]: 0 : if (udev) {
2967 [ # # ]: 0 : struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2968 : :
2969 [ # # ]: 0 : update_devnum(udev, 0);
2970 : : /* The xHC may think the device is already reset,
2971 : : * so ignore the status.
2972 : : */
2973 [ # # ]: 0 : if (hcd->driver->reset_device)
2974 : 0 : hcd->driver->reset_device(hcd, udev);
2975 : :
2976 : 0 : usb_set_device_state(udev, USB_STATE_DEFAULT);
2977 : : }
2978 : : } else {
2979 [ # # ]: 0 : if (udev)
2980 : 0 : usb_set_device_state(udev, USB_STATE_NOTATTACHED);
2981 : : }
2982 : :
2983 [ # # ]: 0 : if (!hub_is_superspeed(hub->hdev))
2984 : 0 : up_read(&ehci_cf_port_reset_rwsem);
2985 : :
2986 : : return status;
2987 : : }
2988 : :
2989 : : /* Check if a port is power on */
2990 : 0 : static int port_is_power_on(struct usb_hub *hub, unsigned portstatus)
2991 : : {
2992 : 0 : int ret = 0;
2993 : :
2994 [ # # ]: 0 : if (hub_is_superspeed(hub->hdev)) {
2995 [ # # # # ]: 0 : if (portstatus & USB_SS_PORT_STAT_POWER)
2996 : : ret = 1;
2997 : : } else {
2998 [ # # # # ]: 0 : if (portstatus & USB_PORT_STAT_POWER)
2999 : : ret = 1;
3000 : : }
3001 : :
3002 : : return ret;
3003 : : }
3004 : :
3005 : 0 : static void usb_lock_port(struct usb_port *port_dev)
3006 : : __acquires(&port_dev->status_lock)
3007 : : {
3008 : 0 : mutex_lock(&port_dev->status_lock);
3009 : 0 : __acquire(&port_dev->status_lock);
3010 : 0 : }
3011 : :
3012 : 0 : static void usb_unlock_port(struct usb_port *port_dev)
3013 : : __releases(&port_dev->status_lock)
3014 : : {
3015 : 0 : mutex_unlock(&port_dev->status_lock);
3016 : 0 : __release(&port_dev->status_lock);
3017 : : }
3018 : :
3019 : : #ifdef CONFIG_PM
3020 : :
3021 : : /* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */
3022 : 0 : static int port_is_suspended(struct usb_hub *hub, unsigned portstatus)
3023 : : {
3024 : 0 : int ret = 0;
3025 : :
3026 : 0 : if (hub_is_superspeed(hub->hdev)) {
3027 [ # # # # ]: 0 : if ((portstatus & USB_PORT_STAT_LINK_STATE)
3028 : : == USB_SS_PORT_LS_U3)
3029 : : ret = 1;
3030 : : } else {
3031 [ # # # # ]: 0 : if (portstatus & USB_PORT_STAT_SUSPEND)
3032 : : ret = 1;
3033 : : }
3034 : :
3035 : : return ret;
3036 : : }
3037 : :
3038 : : /* Determine whether the device on a port is ready for a normal resume,
3039 : : * is ready for a reset-resume, or should be disconnected.
3040 : : */
3041 : 0 : static int check_port_resume_type(struct usb_device *udev,
3042 : : struct usb_hub *hub, int port1,
3043 : : int status, u16 portchange, u16 portstatus)
3044 : : {
3045 : 0 : struct usb_port *port_dev = hub->ports[port1 - 1];
3046 : 0 : int retries = 3;
3047 : :
3048 : 0 : retry:
3049 : : /* Is a warm reset needed to recover the connection? */
3050 [ # # # # ]: 0 : if (status == 0 && udev->reset_resume
3051 [ # # ]: 0 : && hub_port_warm_reset_required(hub, port1, portstatus)) {
3052 : : /* pass */;
3053 : : }
3054 : : /* Is the device still present? */
3055 [ # # # # ]: 0 : else if (status || port_is_suspended(hub, portstatus) ||
3056 : : !port_is_power_on(hub, portstatus)) {
3057 [ # # ]: 0 : if (status >= 0)
3058 : : status = -ENODEV;
3059 [ # # ]: 0 : } else if (!(portstatus & USB_PORT_STAT_CONNECTION)) {
3060 [ # # ]: 0 : if (retries--) {
3061 : 0 : usleep_range(200, 300);
3062 : 0 : status = hub_port_status(hub, port1, &portstatus,
3063 : : &portchange);
3064 : 0 : goto retry;
3065 : : }
3066 : : status = -ENODEV;
3067 : : }
3068 : :
3069 : : /* Can't do a normal resume if the port isn't enabled,
3070 : : * so try a reset-resume instead.
3071 : : */
3072 [ # # # # ]: 0 : else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) {
3073 [ # # ]: 0 : if (udev->persist_enabled)
3074 : 0 : udev->reset_resume = 1;
3075 : : else
3076 : : status = -ENODEV;
3077 : : }
3078 : :
3079 [ # # ]: 0 : if (status) {
3080 : : dev_dbg(&port_dev->dev, "status %04x.%04x after resume, %d\n",
3081 : : portchange, portstatus, status);
3082 [ # # ]: 0 : } else if (udev->reset_resume) {
3083 : :
3084 : : /* Late port handoff can set status-change bits */
3085 [ # # ]: 0 : if (portchange & USB_PORT_STAT_C_CONNECTION)
3086 : 0 : usb_clear_port_feature(hub->hdev, port1,
3087 : : USB_PORT_FEAT_C_CONNECTION);
3088 [ # # ]: 0 : if (portchange & USB_PORT_STAT_C_ENABLE)
3089 : 0 : usb_clear_port_feature(hub->hdev, port1,
3090 : : USB_PORT_FEAT_C_ENABLE);
3091 : : }
3092 : :
3093 : 0 : return status;
3094 : : }
3095 : :
3096 : 0 : int usb_disable_ltm(struct usb_device *udev)
3097 : : {
3098 [ # # ]: 0 : struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3099 : :
3100 : : /* Check if the roothub and device supports LTM. */
3101 [ # # # # : 0 : if (!usb_device_supports_ltm(hcd->self.root_hub) ||
# # ]
3102 [ # # ]: 0 : !usb_device_supports_ltm(udev))
3103 : : return 0;
3104 : :
3105 : : /* Clear Feature LTM Enable can only be sent if the device is
3106 : : * configured.
3107 : : */
3108 [ # # ]: 0 : if (!udev->actconfig)
3109 : : return 0;
3110 : :
3111 : 0 : return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3112 : : USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
3113 : : USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
3114 : : USB_CTRL_SET_TIMEOUT);
3115 : : }
3116 : : EXPORT_SYMBOL_GPL(usb_disable_ltm);
3117 : :
3118 : 0 : void usb_enable_ltm(struct usb_device *udev)
3119 : : {
3120 [ # # ]: 0 : struct usb_hcd *hcd = bus_to_hcd(udev->bus);
3121 : :
3122 : : /* Check if the roothub and device supports LTM. */
3123 [ # # # # : 0 : if (!usb_device_supports_ltm(hcd->self.root_hub) ||
# # ]
3124 [ # # ]: 0 : !usb_device_supports_ltm(udev))
3125 : : return;
3126 : :
3127 : : /* Set Feature LTM Enable can only be sent if the device is
3128 : : * configured.
3129 : : */
3130 [ # # ]: 0 : if (!udev->actconfig)
3131 : : return;
3132 : :
3133 : 0 : usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3134 : : USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
3135 : : USB_DEVICE_LTM_ENABLE, 0, NULL, 0,
3136 : : USB_CTRL_SET_TIMEOUT);
3137 : : }
3138 : : EXPORT_SYMBOL_GPL(usb_enable_ltm);
3139 : :
3140 : : /*
3141 : : * usb_enable_remote_wakeup - enable remote wakeup for a device
3142 : : * @udev: target device
3143 : : *
3144 : : * For USB-2 devices: Set the device's remote wakeup feature.
3145 : : *
3146 : : * For USB-3 devices: Assume there's only one function on the device and
3147 : : * enable remote wake for the first interface. FIXME if the interface
3148 : : * association descriptor shows there's more than one function.
3149 : : */
3150 : 0 : static int usb_enable_remote_wakeup(struct usb_device *udev)
3151 : : {
3152 [ # # ]: 0 : if (udev->speed < USB_SPEED_SUPER)
3153 : 0 : return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3154 : : USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
3155 : : USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
3156 : : USB_CTRL_SET_TIMEOUT);
3157 : : else
3158 : 0 : return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3159 : : USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE,
3160 : : USB_INTRF_FUNC_SUSPEND,
3161 : : USB_INTRF_FUNC_SUSPEND_RW |
3162 : : USB_INTRF_FUNC_SUSPEND_LP,
3163 : : NULL, 0, USB_CTRL_SET_TIMEOUT);
3164 : : }
3165 : :
3166 : : /*
3167 : : * usb_disable_remote_wakeup - disable remote wakeup for a device
3168 : : * @udev: target device
3169 : : *
3170 : : * For USB-2 devices: Clear the device's remote wakeup feature.
3171 : : *
3172 : : * For USB-3 devices: Assume there's only one function on the device and
3173 : : * disable remote wake for the first interface. FIXME if the interface
3174 : : * association descriptor shows there's more than one function.
3175 : : */
3176 : 0 : static int usb_disable_remote_wakeup(struct usb_device *udev)
3177 : : {
3178 [ # # ]: 0 : if (udev->speed < USB_SPEED_SUPER)
3179 : 0 : return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3180 : : USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE,
3181 : : USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0,
3182 : : USB_CTRL_SET_TIMEOUT);
3183 : : else
3184 : 0 : return usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3185 : : USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE,
3186 : : USB_INTRF_FUNC_SUSPEND, 0, NULL, 0,
3187 : : USB_CTRL_SET_TIMEOUT);
3188 : : }
3189 : :
3190 : : /* Count of wakeup-enabled devices at or below udev */
3191 : 0 : unsigned usb_wakeup_enabled_descendants(struct usb_device *udev)
3192 : : {
3193 [ # # # # ]: 0 : struct usb_hub *hub = usb_hub_to_struct_hub(udev);
3194 : :
3195 : 0 : return udev->do_remote_wakeup +
3196 [ # # # # : 0 : (hub ? hub->wakeup_enabled_descendants : 0);
# # ]
3197 : : }
3198 : : EXPORT_SYMBOL_GPL(usb_wakeup_enabled_descendants);
3199 : :
3200 : : /*
3201 : : * usb_port_suspend - suspend a usb device's upstream port
3202 : : * @udev: device that's no longer in active use, not a root hub
3203 : : * Context: must be able to sleep; device not locked; pm locks held
3204 : : *
3205 : : * Suspends a USB device that isn't in active use, conserving power.
3206 : : * Devices may wake out of a suspend, if anything important happens,
3207 : : * using the remote wakeup mechanism. They may also be taken out of
3208 : : * suspend by the host, using usb_port_resume(). It's also routine
3209 : : * to disconnect devices while they are suspended.
3210 : : *
3211 : : * This only affects the USB hardware for a device; its interfaces
3212 : : * (and, for hubs, child devices) must already have been suspended.
3213 : : *
3214 : : * Selective port suspend reduces power; most suspended devices draw
3215 : : * less than 500 uA. It's also used in OTG, along with remote wakeup.
3216 : : * All devices below the suspended port are also suspended.
3217 : : *
3218 : : * Devices leave suspend state when the host wakes them up. Some devices
3219 : : * also support "remote wakeup", where the device can activate the USB
3220 : : * tree above them to deliver data, such as a keypress or packet. In
3221 : : * some cases, this wakes the USB host.
3222 : : *
3223 : : * Suspending OTG devices may trigger HNP, if that's been enabled
3224 : : * between a pair of dual-role devices. That will change roles, such
3225 : : * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral.
3226 : : *
3227 : : * Devices on USB hub ports have only one "suspend" state, corresponding
3228 : : * to ACPI D2, "may cause the device to lose some context".
3229 : : * State transitions include:
3230 : : *
3231 : : * - suspend, resume ... when the VBUS power link stays live
3232 : : * - suspend, disconnect ... VBUS lost
3233 : : *
3234 : : * Once VBUS drop breaks the circuit, the port it's using has to go through
3235 : : * normal re-enumeration procedures, starting with enabling VBUS power.
3236 : : * Other than re-initializing the hub (plug/unplug, except for root hubs),
3237 : : * Linux (2.6) currently has NO mechanisms to initiate that: no hub_wq
3238 : : * timer, no SRP, no requests through sysfs.
3239 : : *
3240 : : * If Runtime PM isn't enabled or used, non-SuperSpeed devices may not get
3241 : : * suspended until their bus goes into global suspend (i.e., the root
3242 : : * hub is suspended). Nevertheless, we change @udev->state to
3243 : : * USB_STATE_SUSPENDED as this is the device's "logical" state. The actual
3244 : : * upstream port setting is stored in @udev->port_is_suspended.
3245 : : *
3246 : : * Returns 0 on success, else negative errno.
3247 : : */
3248 : 0 : int usb_port_suspend(struct usb_device *udev, pm_message_t msg)
3249 : : {
3250 [ # # ]: 0 : struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3251 : 0 : struct usb_port *port_dev = hub->ports[udev->portnum - 1];
3252 : 0 : int port1 = udev->portnum;
3253 : 0 : int status;
3254 : 0 : bool really_suspend = true;
3255 : :
3256 : 0 : usb_lock_port(port_dev);
3257 : :
3258 : : /* enable remote wakeup when appropriate; this lets the device
3259 : : * wake up the upstream hub (including maybe the root hub).
3260 : : *
3261 : : * NOTE: OTG devices may issue remote wakeup (or SRP) even when
3262 : : * we don't explicitly enable it here.
3263 : : */
3264 [ # # ]: 0 : if (udev->do_remote_wakeup) {
3265 : 0 : status = usb_enable_remote_wakeup(udev);
3266 [ # # ]: 0 : if (status) {
3267 : 0 : dev_dbg(&udev->dev, "won't remote wakeup, status %d\n",
3268 : : status);
3269 : : /* bail if autosuspend is requested */
3270 [ # # ]: 0 : if (PMSG_IS_AUTO(msg))
3271 : 0 : goto err_wakeup;
3272 : : }
3273 : : }
3274 : :
3275 : : /* disable USB2 hardware LPM */
3276 : 0 : usb_disable_usb2_hardware_lpm(udev);
3277 : :
3278 [ # # ]: 0 : if (usb_disable_ltm(udev)) {
3279 : 0 : dev_err(&udev->dev, "Failed to disable LTM before suspend\n");
3280 : 0 : status = -ENOMEM;
3281 [ # # ]: 0 : if (PMSG_IS_AUTO(msg))
3282 : 0 : goto err_ltm;
3283 : : }
3284 : :
3285 : : /* see 7.1.7.6 */
3286 [ # # ]: 0 : if (hub_is_superspeed(hub->hdev))
3287 : 0 : status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U3);
3288 : :
3289 : : /*
3290 : : * For system suspend, we do not need to enable the suspend feature
3291 : : * on individual USB-2 ports. The devices will automatically go
3292 : : * into suspend a few ms after the root hub stops sending packets.
3293 : : * The USB 2.0 spec calls this "global suspend".
3294 : : *
3295 : : * However, many USB hubs have a bug: They don't relay wakeup requests
3296 : : * from a downstream port if the port's suspend feature isn't on.
3297 : : * Therefore we will turn on the suspend feature if udev or any of its
3298 : : * descendants is enabled for remote wakeup.
3299 : : */
3300 [ # # # # ]: 0 : else if (PMSG_IS_AUTO(msg) || usb_wakeup_enabled_descendants(udev) > 0)
3301 : 0 : status = set_port_feature(hub->hdev, port1,
3302 : : USB_PORT_FEAT_SUSPEND);
3303 : : else {
3304 : : really_suspend = false;
3305 : : status = 0;
3306 : : }
3307 [ # # ]: 0 : if (status) {
3308 : 0 : dev_dbg(&port_dev->dev, "can't suspend, status %d\n", status);
3309 : :
3310 : : /* Try to enable USB3 LTM again */
3311 : 0 : usb_enable_ltm(udev);
3312 : 0 : err_ltm:
3313 : : /* Try to enable USB2 hardware LPM again */
3314 : 0 : usb_enable_usb2_hardware_lpm(udev);
3315 : :
3316 [ # # ]: 0 : if (udev->do_remote_wakeup)
3317 : 0 : (void) usb_disable_remote_wakeup(udev);
3318 : 0 : err_wakeup:
3319 : :
3320 : : /* System sleep transitions should never fail */
3321 [ # # ]: 0 : if (!PMSG_IS_AUTO(msg))
3322 : : status = 0;
3323 : : } else {
3324 : 0 : dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n",
3325 : : (PMSG_IS_AUTO(msg) ? "auto-" : ""),
3326 : : udev->do_remote_wakeup);
3327 [ # # ]: 0 : if (really_suspend) {
3328 : 0 : udev->port_is_suspended = 1;
3329 : :
3330 : : /* device has up to 10 msec to fully suspend */
3331 : 0 : msleep(10);
3332 : : }
3333 : 0 : usb_set_device_state(udev, USB_STATE_SUSPENDED);
3334 : : }
3335 : :
3336 [ # # # # : 0 : if (status == 0 && !udev->do_remote_wakeup && udev->persist_enabled
# # ]
3337 [ # # ]: 0 : && test_and_clear_bit(port1, hub->child_usage_bits))
3338 : 0 : pm_runtime_put_sync(&port_dev->dev);
3339 : :
3340 : 0 : usb_mark_last_busy(hub->hdev);
3341 : :
3342 : 0 : usb_unlock_port(port_dev);
3343 : 0 : return status;
3344 : : }
3345 : :
3346 : : /*
3347 : : * If the USB "suspend" state is in use (rather than "global suspend"),
3348 : : * many devices will be individually taken out of suspend state using
3349 : : * special "resume" signaling. This routine kicks in shortly after
3350 : : * hardware resume signaling is finished, either because of selective
3351 : : * resume (by host) or remote wakeup (by device) ... now see what changed
3352 : : * in the tree that's rooted at this device.
3353 : : *
3354 : : * If @udev->reset_resume is set then the device is reset before the
3355 : : * status check is done.
3356 : : */
3357 : 0 : static int finish_port_resume(struct usb_device *udev)
3358 : : {
3359 : 0 : int status = 0;
3360 : 0 : u16 devstatus = 0;
3361 : :
3362 : : /* caller owns the udev device lock */
3363 : 0 : dev_dbg(&udev->dev, "%s\n",
3364 : : udev->reset_resume ? "finish reset-resume" : "finish resume");
3365 : :
3366 : : /* usb ch9 identifies four variants of SUSPENDED, based on what
3367 : : * state the device resumes to. Linux currently won't see the
3368 : : * first two on the host side; they'd be inside hub_port_init()
3369 : : * during many timeouts, but hub_wq can't suspend until later.
3370 : : */
3371 [ # # ]: 0 : usb_set_device_state(udev, udev->actconfig
3372 : : ? USB_STATE_CONFIGURED
3373 : : : USB_STATE_ADDRESS);
3374 : :
3375 : : /* 10.5.4.5 says not to reset a suspended port if the attached
3376 : : * device is enabled for remote wakeup. Hence the reset
3377 : : * operation is carried out here, after the port has been
3378 : : * resumed.
3379 : : */
3380 [ # # ]: 0 : if (udev->reset_resume) {
3381 : : /*
3382 : : * If the device morphs or switches modes when it is reset,
3383 : : * we don't want to perform a reset-resume. We'll fail the
3384 : : * resume, which will cause a logical disconnect, and then
3385 : : * the device will be rediscovered.
3386 : : */
3387 : 0 : retry_reset_resume:
3388 [ # # ]: 0 : if (udev->quirks & USB_QUIRK_RESET)
3389 : : status = -ENODEV;
3390 : : else
3391 : 0 : status = usb_reset_and_verify_device(udev);
3392 : : }
3393 : :
3394 : : /* 10.5.4.5 says be sure devices in the tree are still there.
3395 : : * For now let's assume the device didn't go crazy on resume,
3396 : : * and device drivers will know about any resume quirks.
3397 : : */
3398 [ # # ]: 0 : if (status == 0) {
3399 : 0 : devstatus = 0;
3400 : 0 : status = usb_get_std_status(udev, USB_RECIP_DEVICE, 0, &devstatus);
3401 : :
3402 : : /* If a normal resume failed, try doing a reset-resume */
3403 [ # # # # : 0 : if (status && !udev->reset_resume && udev->persist_enabled) {
# # ]
3404 : 0 : dev_dbg(&udev->dev, "retry with reset-resume\n");
3405 : 0 : udev->reset_resume = 1;
3406 : 0 : goto retry_reset_resume;
3407 : : }
3408 : : }
3409 : :
3410 [ # # ]: 0 : if (status) {
3411 : : dev_dbg(&udev->dev, "gone after usb resume? status %d\n",
3412 : : status);
3413 : : /*
3414 : : * There are a few quirky devices which violate the standard
3415 : : * by claiming to have remote wakeup enabled after a reset,
3416 : : * which crash if the feature is cleared, hence check for
3417 : : * udev->reset_resume
3418 : : */
3419 [ # # # # ]: 0 : } else if (udev->actconfig && !udev->reset_resume) {
3420 [ # # ]: 0 : if (udev->speed < USB_SPEED_SUPER) {
3421 [ # # ]: 0 : if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP))
3422 : 0 : status = usb_disable_remote_wakeup(udev);
3423 : : } else {
3424 : 0 : status = usb_get_std_status(udev, USB_RECIP_INTERFACE, 0,
3425 : : &devstatus);
3426 [ # # # # ]: 0 : if (!status && devstatus & (USB_INTRF_STAT_FUNC_RW_CAP
3427 : : | USB_INTRF_STAT_FUNC_RW))
3428 : 0 : status = usb_disable_remote_wakeup(udev);
3429 : : }
3430 : :
3431 : : if (status)
3432 : : dev_dbg(&udev->dev,
3433 : : "disable remote wakeup, status %d\n",
3434 : : status);
3435 : : status = 0;
3436 : : }
3437 : 0 : return status;
3438 : : }
3439 : :
3440 : : /*
3441 : : * There are some SS USB devices which take longer time for link training.
3442 : : * XHCI specs 4.19.4 says that when Link training is successful, port
3443 : : * sets CCS bit to 1. So if SW reads port status before successful link
3444 : : * training, then it will not find device to be present.
3445 : : * USB Analyzer log with such buggy devices show that in some cases
3446 : : * device switch on the RX termination after long delay of host enabling
3447 : : * the VBUS. In few other cases it has been seen that device fails to
3448 : : * negotiate link training in first attempt. It has been
3449 : : * reported till now that few devices take as long as 2000 ms to train
3450 : : * the link after host enabling its VBUS and termination. Following
3451 : : * routine implements a 2000 ms timeout for link training. If in a case
3452 : : * link trains before timeout, loop will exit earlier.
3453 : : *
3454 : : * There are also some 2.0 hard drive based devices and 3.0 thumb
3455 : : * drives that, when plugged into a 2.0 only port, take a long
3456 : : * time to set CCS after VBUS enable.
3457 : : *
3458 : : * FIXME: If a device was connected before suspend, but was removed
3459 : : * while system was asleep, then the loop in the following routine will
3460 : : * only exit at timeout.
3461 : : *
3462 : : * This routine should only be called when persist is enabled.
3463 : : */
3464 : : static int wait_for_connected(struct usb_device *udev,
3465 : : struct usb_hub *hub, int *port1,
3466 : : u16 *portchange, u16 *portstatus)
3467 : : {
3468 : : int status = 0, delay_ms = 0;
3469 : :
3470 : : while (delay_ms < 2000) {
3471 : : if (status || *portstatus & USB_PORT_STAT_CONNECTION)
3472 : : break;
3473 : : if (!port_is_power_on(hub, *portstatus)) {
3474 : : status = -ENODEV;
3475 : : break;
3476 : : }
3477 : : msleep(20);
3478 : : delay_ms += 20;
3479 : : status = hub_port_status(hub, *port1, portstatus, portchange);
3480 : : }
3481 : : dev_dbg(&udev->dev, "Waited %dms for CONNECT\n", delay_ms);
3482 : : return status;
3483 : : }
3484 : :
3485 : : /*
3486 : : * usb_port_resume - re-activate a suspended usb device's upstream port
3487 : : * @udev: device to re-activate, not a root hub
3488 : : * Context: must be able to sleep; device not locked; pm locks held
3489 : : *
3490 : : * This will re-activate the suspended device, increasing power usage
3491 : : * while letting drivers communicate again with its endpoints.
3492 : : * USB resume explicitly guarantees that the power session between
3493 : : * the host and the device is the same as it was when the device
3494 : : * suspended.
3495 : : *
3496 : : * If @udev->reset_resume is set then this routine won't check that the
3497 : : * port is still enabled. Furthermore, finish_port_resume() above will
3498 : : * reset @udev. The end result is that a broken power session can be
3499 : : * recovered and @udev will appear to persist across a loss of VBUS power.
3500 : : *
3501 : : * For example, if a host controller doesn't maintain VBUS suspend current
3502 : : * during a system sleep or is reset when the system wakes up, all the USB
3503 : : * power sessions below it will be broken. This is especially troublesome
3504 : : * for mass-storage devices containing mounted filesystems, since the
3505 : : * device will appear to have disconnected and all the memory mappings
3506 : : * to it will be lost. Using the USB_PERSIST facility, the device can be
3507 : : * made to appear as if it had not disconnected.
3508 : : *
3509 : : * This facility can be dangerous. Although usb_reset_and_verify_device() makes
3510 : : * every effort to insure that the same device is present after the
3511 : : * reset as before, it cannot provide a 100% guarantee. Furthermore it's
3512 : : * quite possible for a device to remain unaltered but its media to be
3513 : : * changed. If the user replaces a flash memory card while the system is
3514 : : * asleep, he will have only himself to blame when the filesystem on the
3515 : : * new card is corrupted and the system crashes.
3516 : : *
3517 : : * Returns 0 on success, else negative errno.
3518 : : */
3519 : 0 : int usb_port_resume(struct usb_device *udev, pm_message_t msg)
3520 : : {
3521 [ # # ]: 0 : struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
3522 : 0 : struct usb_port *port_dev = hub->ports[udev->portnum - 1];
3523 : 0 : int port1 = udev->portnum;
3524 : 0 : int status;
3525 : 0 : u16 portchange, portstatus;
3526 : :
3527 [ # # ]: 0 : if (!test_and_set_bit(port1, hub->child_usage_bits)) {
3528 : 0 : status = pm_runtime_get_sync(&port_dev->dev);
3529 [ # # ]: 0 : if (status < 0) {
3530 : : dev_dbg(&udev->dev, "can't resume usb port, status %d\n",
3531 : : status);
3532 : : return status;
3533 : : }
3534 : : }
3535 : :
3536 : 0 : usb_lock_port(port_dev);
3537 : :
3538 : : /* Skip the initial Clear-Suspend step for a remote wakeup */
3539 : 0 : status = hub_port_status(hub, port1, &portstatus, &portchange);
3540 [ # # # # ]: 0 : if (status == 0 && !port_is_suspended(hub, portstatus)) {
3541 [ # # ]: 0 : if (portchange & USB_PORT_STAT_C_SUSPEND)
3542 : 0 : pm_wakeup_event(&udev->dev, 0);
3543 : 0 : goto SuspendCleared;
3544 : : }
3545 : :
3546 : : /* see 7.1.7.7; affects power usage, but not budgeting */
3547 [ # # ]: 0 : if (hub_is_superspeed(hub->hdev))
3548 : 0 : status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U0);
3549 : : else
3550 : 0 : status = usb_clear_port_feature(hub->hdev,
3551 : : port1, USB_PORT_FEAT_SUSPEND);
3552 [ # # ]: 0 : if (status) {
3553 : : dev_dbg(&port_dev->dev, "can't resume, status %d\n", status);
3554 : : } else {
3555 : : /* drive resume for USB_RESUME_TIMEOUT msec */
3556 : 0 : dev_dbg(&udev->dev, "usb %sresume\n",
3557 : : (PMSG_IS_AUTO(msg) ? "auto-" : ""));
3558 : 0 : msleep(USB_RESUME_TIMEOUT);
3559 : :
3560 : : /* Virtual root hubs can trigger on GET_PORT_STATUS to
3561 : : * stop resume signaling. Then finish the resume
3562 : : * sequence.
3563 : : */
3564 : 0 : status = hub_port_status(hub, port1, &portstatus, &portchange);
3565 : :
3566 : : /* TRSMRCY = 10 msec */
3567 : 0 : msleep(10);
3568 : : }
3569 : :
3570 : 0 : SuspendCleared:
3571 [ # # ]: 0 : if (status == 0) {
3572 : 0 : udev->port_is_suspended = 0;
3573 [ # # ]: 0 : if (hub_is_superspeed(hub->hdev)) {
3574 [ # # ]: 0 : if (portchange & USB_PORT_STAT_C_LINK_STATE)
3575 : 0 : usb_clear_port_feature(hub->hdev, port1,
3576 : : USB_PORT_FEAT_C_PORT_LINK_STATE);
3577 : : } else {
3578 [ # # ]: 0 : if (portchange & USB_PORT_STAT_C_SUSPEND)
3579 : 0 : usb_clear_port_feature(hub->hdev, port1,
3580 : : USB_PORT_FEAT_C_SUSPEND);
3581 : : }
3582 : : }
3583 : :
3584 [ # # ]: 0 : if (udev->persist_enabled)
3585 : 0 : status = wait_for_connected(udev, hub, &port1, &portchange,
3586 : : &portstatus);
3587 : :
3588 : 0 : status = check_port_resume_type(udev,
3589 : : hub, port1, status, portchange, portstatus);
3590 [ # # ]: 0 : if (status == 0)
3591 : 0 : status = finish_port_resume(udev);
3592 [ # # ]: 0 : if (status < 0) {
3593 : 0 : dev_dbg(&udev->dev, "can't resume, status %d\n", status);
3594 : 0 : hub_port_logical_disconnect(hub, port1);
3595 : : } else {
3596 : : /* Try to enable USB2 hardware LPM */
3597 : 0 : usb_enable_usb2_hardware_lpm(udev);
3598 : :
3599 : : /* Try to enable USB3 LTM */
3600 : 0 : usb_enable_ltm(udev);
3601 : : }
3602 : :
3603 : 0 : usb_unlock_port(port_dev);
3604 : :
3605 : 0 : return status;
3606 : : }
3607 : :
3608 : 0 : int usb_remote_wakeup(struct usb_device *udev)
3609 : : {
3610 : 0 : int status = 0;
3611 : :
3612 : 0 : usb_lock_device(udev);
3613 [ # # ]: 0 : if (udev->state == USB_STATE_SUSPENDED) {
3614 : 0 : dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-");
3615 : 0 : status = usb_autoresume_device(udev);
3616 [ # # ]: 0 : if (status == 0) {
3617 : : /* Let the drivers do their thing, then... */
3618 : 0 : usb_autosuspend_device(udev);
3619 : : }
3620 : : }
3621 : 0 : usb_unlock_device(udev);
3622 : 0 : return status;
3623 : : }
3624 : :
3625 : : /* Returns 1 if there was a remote wakeup and a connect status change. */
3626 : 0 : static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
3627 : : u16 portstatus, u16 portchange)
3628 : : __must_hold(&port_dev->status_lock)
3629 : : {
3630 : 0 : struct usb_port *port_dev = hub->ports[port - 1];
3631 : 0 : struct usb_device *hdev;
3632 : 0 : struct usb_device *udev;
3633 : 0 : int connect_change = 0;
3634 : 0 : u16 link_state;
3635 : 0 : int ret;
3636 : :
3637 : 0 : hdev = hub->hdev;
3638 : 0 : udev = port_dev->child;
3639 [ # # ]: 0 : if (!hub_is_superspeed(hdev)) {
3640 [ # # ]: 0 : if (!(portchange & USB_PORT_STAT_C_SUSPEND))
3641 : : return 0;
3642 : 0 : usb_clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND);
3643 : : } else {
3644 : 0 : link_state = portstatus & USB_PORT_STAT_LINK_STATE;
3645 [ # # # # ]: 0 : if (!udev || udev->state != USB_STATE_SUSPENDED ||
3646 : 0 : (link_state != USB_SS_PORT_LS_U0 &&
3647 [ # # # # ]: 0 : link_state != USB_SS_PORT_LS_U1 &&
3648 : : link_state != USB_SS_PORT_LS_U2))
3649 : : return 0;
3650 : : }
3651 : :
3652 [ # # ]: 0 : if (udev) {
3653 : : /* TRSMRCY = 10 msec */
3654 : 0 : msleep(10);
3655 : :
3656 : 0 : usb_unlock_port(port_dev);
3657 : 0 : ret = usb_remote_wakeup(udev);
3658 : 0 : usb_lock_port(port_dev);
3659 [ # # ]: 0 : if (ret < 0)
3660 : 0 : connect_change = 1;
3661 : : } else {
3662 : 0 : ret = -ENODEV;
3663 : 0 : hub_port_disable(hub, port, 1);
3664 : : }
3665 : : dev_dbg(&port_dev->dev, "resume, status %d\n", ret);
3666 : : return connect_change;
3667 : : }
3668 : :
3669 : 0 : static int check_ports_changed(struct usb_hub *hub)
3670 : : {
3671 : 0 : int port1;
3672 : :
3673 [ # # ]: 0 : for (port1 = 1; port1 <= hub->hdev->maxchild; ++port1) {
3674 : 0 : u16 portstatus, portchange;
3675 : 0 : int status;
3676 : :
3677 : 0 : status = hub_port_status(hub, port1, &portstatus, &portchange);
3678 [ # # # # ]: 0 : if (!status && portchange)
3679 : 0 : return 1;
3680 : : }
3681 : : return 0;
3682 : : }
3683 : :
3684 : 0 : static int hub_suspend(struct usb_interface *intf, pm_message_t msg)
3685 : : {
3686 : 0 : struct usb_hub *hub = usb_get_intfdata(intf);
3687 : 0 : struct usb_device *hdev = hub->hdev;
3688 : 0 : unsigned port1;
3689 : :
3690 : : /*
3691 : : * Warn if children aren't already suspended.
3692 : : * Also, add up the number of wakeup-enabled descendants.
3693 : : */
3694 : 0 : hub->wakeup_enabled_descendants = 0;
3695 [ # # ]: 0 : for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3696 : 0 : struct usb_port *port_dev = hub->ports[port1 - 1];
3697 : 0 : struct usb_device *udev = port_dev->child;
3698 : :
3699 [ # # # # ]: 0 : if (udev && udev->can_submit) {
3700 [ # # ]: 0 : dev_warn(&port_dev->dev, "device %s not suspended yet\n",
3701 : : dev_name(&udev->dev));
3702 [ # # ]: 0 : if (PMSG_IS_AUTO(msg))
3703 : : return -EBUSY;
3704 : : }
3705 [ # # ]: 0 : if (udev)
3706 [ # # ]: 0 : hub->wakeup_enabled_descendants +=
3707 : : usb_wakeup_enabled_descendants(udev);
3708 : : }
3709 : :
3710 [ # # # # ]: 0 : if (hdev->do_remote_wakeup && hub->quirk_check_port_auto_suspend) {
3711 : : /* check if there are changes pending on hub ports */
3712 [ # # ]: 0 : if (check_ports_changed(hub)) {
3713 [ # # ]: 0 : if (PMSG_IS_AUTO(msg))
3714 : : return -EBUSY;
3715 : 0 : pm_wakeup_event(&hdev->dev, 2000);
3716 : : }
3717 : : }
3718 : :
3719 [ # # # # ]: 0 : if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) {
3720 : : /* Enable hub to send remote wakeup for all ports. */
3721 [ # # ]: 0 : for (port1 = 1; port1 <= hdev->maxchild; port1++) {
3722 : 0 : set_port_feature(hdev,
3723 : : port1 |
3724 : : USB_PORT_FEAT_REMOTE_WAKE_CONNECT |
3725 : 0 : USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT |
3726 : : USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT,
3727 : : USB_PORT_FEAT_REMOTE_WAKE_MASK);
3728 : : }
3729 : : }
3730 : :
3731 : 0 : dev_dbg(&intf->dev, "%s\n", __func__);
3732 : :
3733 : : /* stop hub_wq and related activity */
3734 : 0 : hub_quiesce(hub, HUB_SUSPEND);
3735 : 0 : return 0;
3736 : : }
3737 : :
3738 : : /* Report wakeup requests from the ports of a resuming root hub */
3739 : : static void report_wakeup_requests(struct usb_hub *hub)
3740 : : {
3741 : : struct usb_device *hdev = hub->hdev;
3742 : : struct usb_device *udev;
3743 : : struct usb_hcd *hcd;
3744 : : unsigned long resuming_ports;
3745 : : int i;
3746 : :
3747 : : if (hdev->parent)
3748 : : return; /* Not a root hub */
3749 : :
3750 : : hcd = bus_to_hcd(hdev->bus);
3751 : : if (hcd->driver->get_resuming_ports) {
3752 : :
3753 : : /*
3754 : : * The get_resuming_ports() method returns a bitmap (origin 0)
3755 : : * of ports which have started wakeup signaling but have not
3756 : : * yet finished resuming. During system resume we will
3757 : : * resume all the enabled ports, regardless of any wakeup
3758 : : * signals, which means the wakeup requests would be lost.
3759 : : * To prevent this, report them to the PM core here.
3760 : : */
3761 : : resuming_ports = hcd->driver->get_resuming_ports(hcd);
3762 : : for (i = 0; i < hdev->maxchild; ++i) {
3763 : : if (test_bit(i, &resuming_ports)) {
3764 : : udev = hub->ports[i]->child;
3765 : : if (udev)
3766 : : pm_wakeup_event(&udev->dev, 0);
3767 : : }
3768 : : }
3769 : : }
3770 : : }
3771 : :
3772 : 0 : static int hub_resume(struct usb_interface *intf)
3773 : : {
3774 : 0 : struct usb_hub *hub = usb_get_intfdata(intf);
3775 : :
3776 : 0 : dev_dbg(&intf->dev, "%s\n", __func__);
3777 : 0 : hub_activate(hub, HUB_RESUME);
3778 : :
3779 : : /*
3780 : : * This should be called only for system resume, not runtime resume.
3781 : : * We can't tell the difference here, so some wakeup requests will be
3782 : : * reported at the wrong time or more than once. This shouldn't
3783 : : * matter much, so long as they do get reported.
3784 : : */
3785 : 0 : report_wakeup_requests(hub);
3786 : 0 : return 0;
3787 : : }
3788 : :
3789 : 0 : static int hub_reset_resume(struct usb_interface *intf)
3790 : : {
3791 : 0 : struct usb_hub *hub = usb_get_intfdata(intf);
3792 : :
3793 : 0 : dev_dbg(&intf->dev, "%s\n", __func__);
3794 : 0 : hub_activate(hub, HUB_RESET_RESUME);
3795 : 0 : return 0;
3796 : : }
3797 : :
3798 : : /**
3799 : : * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power
3800 : : * @rhdev: struct usb_device for the root hub
3801 : : *
3802 : : * The USB host controller driver calls this function when its root hub
3803 : : * is resumed and Vbus power has been interrupted or the controller
3804 : : * has been reset. The routine marks @rhdev as having lost power.
3805 : : * When the hub driver is resumed it will take notice and carry out
3806 : : * power-session recovery for all the "USB-PERSIST"-enabled child devices;
3807 : : * the others will be disconnected.
3808 : : */
3809 : 0 : void usb_root_hub_lost_power(struct usb_device *rhdev)
3810 : : {
3811 : 0 : dev_notice(&rhdev->dev, "root hub lost power or was reset\n");
3812 : 0 : rhdev->reset_resume = 1;
3813 : 0 : }
3814 : : EXPORT_SYMBOL_GPL(usb_root_hub_lost_power);
3815 : :
3816 : : static const char * const usb3_lpm_names[] = {
3817 : : "U0",
3818 : : "U1",
3819 : : "U2",
3820 : : "U3",
3821 : : };
3822 : :
3823 : : /*
3824 : : * Send a Set SEL control transfer to the device, prior to enabling
3825 : : * device-initiated U1 or U2. This lets the device know the exit latencies from
3826 : : * the time the device initiates a U1 or U2 exit, to the time it will receive a
3827 : : * packet from the host.
3828 : : *
3829 : : * This function will fail if the SEL or PEL values for udev are greater than
3830 : : * the maximum allowed values for the link state to be enabled.
3831 : : */
3832 : 0 : static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state)
3833 : : {
3834 : 0 : struct usb_set_sel_req *sel_values;
3835 : 0 : unsigned long long u1_sel;
3836 : 0 : unsigned long long u1_pel;
3837 : 0 : unsigned long long u2_sel;
3838 : 0 : unsigned long long u2_pel;
3839 : 0 : int ret;
3840 : :
3841 [ # # ]: 0 : if (udev->state != USB_STATE_CONFIGURED)
3842 : : return 0;
3843 : :
3844 : : /* Convert SEL and PEL stored in ns to us */
3845 : 0 : u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
3846 : 0 : u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
3847 : 0 : u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
3848 : 0 : u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
3849 : :
3850 : : /*
3851 : : * Make sure that the calculated SEL and PEL values for the link
3852 : : * state we're enabling aren't bigger than the max SEL/PEL
3853 : : * value that will fit in the SET SEL control transfer.
3854 : : * Otherwise the device would get an incorrect idea of the exit
3855 : : * latency for the link state, and could start a device-initiated
3856 : : * U1/U2 when the exit latencies are too high.
3857 : : */
3858 [ # # ]: 0 : if ((state == USB3_LPM_U1 &&
3859 : 0 : (u1_sel > USB3_LPM_MAX_U1_SEL_PEL ||
3860 [ # # # # ]: 0 : u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) ||
3861 : 0 : (state == USB3_LPM_U2 &&
3862 : 0 : (u2_sel > USB3_LPM_MAX_U2_SEL_PEL ||
3863 [ # # ]: 0 : u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) {
3864 : : dev_dbg(&udev->dev, "Device-initiated %s disabled due to long SEL %llu us or PEL %llu us\n",
3865 : : usb3_lpm_names[state], u1_sel, u1_pel);
3866 : : return -EINVAL;
3867 : : }
3868 : :
3869 : : /*
3870 : : * If we're enabling device-initiated LPM for one link state,
3871 : : * but the other link state has a too high SEL or PEL value,
3872 : : * just set those values to the max in the Set SEL request.
3873 : : */
3874 : 0 : if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL)
3875 : : u1_sel = USB3_LPM_MAX_U1_SEL_PEL;
3876 : :
3877 : 0 : if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL)
3878 : : u1_pel = USB3_LPM_MAX_U1_SEL_PEL;
3879 : :
3880 : 0 : if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL)
3881 : : u2_sel = USB3_LPM_MAX_U2_SEL_PEL;
3882 : :
3883 : 0 : if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL)
3884 : : u2_pel = USB3_LPM_MAX_U2_SEL_PEL;
3885 : :
3886 : : /*
3887 : : * usb_enable_lpm() can be called as part of a failed device reset,
3888 : : * which may be initiated by an error path of a mass storage driver.
3889 : : * Therefore, use GFP_NOIO.
3890 : : */
3891 : 0 : sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO);
3892 [ # # ]: 0 : if (!sel_values)
3893 : : return -ENOMEM;
3894 : :
3895 : 0 : sel_values->u1_sel = u1_sel;
3896 : 0 : sel_values->u1_pel = u1_pel;
3897 : 0 : sel_values->u2_sel = cpu_to_le16(u2_sel);
3898 : 0 : sel_values->u2_pel = cpu_to_le16(u2_pel);
3899 : :
3900 : 0 : ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3901 : : USB_REQ_SET_SEL,
3902 : : USB_RECIP_DEVICE,
3903 : : 0, 0,
3904 : : sel_values, sizeof *(sel_values),
3905 : : USB_CTRL_SET_TIMEOUT);
3906 : 0 : kfree(sel_values);
3907 : 0 : return ret;
3908 : : }
3909 : :
3910 : : /*
3911 : : * Enable or disable device-initiated U1 or U2 transitions.
3912 : : */
3913 : 0 : static int usb_set_device_initiated_lpm(struct usb_device *udev,
3914 : : enum usb3_link_state state, bool enable)
3915 : : {
3916 : 0 : int ret;
3917 : 0 : int feature;
3918 : :
3919 [ # # # ]: 0 : switch (state) {
3920 : : case USB3_LPM_U1:
3921 : : feature = USB_DEVICE_U1_ENABLE;
3922 : : break;
3923 : 0 : case USB3_LPM_U2:
3924 : 0 : feature = USB_DEVICE_U2_ENABLE;
3925 : 0 : break;
3926 : 0 : default:
3927 [ # # ]: 0 : dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n",
3928 : : __func__, enable ? "enable" : "disable");
3929 : 0 : return -EINVAL;
3930 : : }
3931 : :
3932 [ # # ]: 0 : if (udev->state != USB_STATE_CONFIGURED) {
3933 : : dev_dbg(&udev->dev, "%s: Can't %s %s state "
3934 : : "for unconfigured device.\n",
3935 : : __func__, enable ? "enable" : "disable",
3936 : : usb3_lpm_names[state]);
3937 : : return 0;
3938 : : }
3939 : :
3940 [ # # ]: 0 : if (enable) {
3941 : : /*
3942 : : * Now send the control transfer to enable device-initiated LPM
3943 : : * for either U1 or U2.
3944 : : */
3945 : 0 : ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3946 : : USB_REQ_SET_FEATURE,
3947 : : USB_RECIP_DEVICE,
3948 : : feature,
3949 : : 0, NULL, 0,
3950 : : USB_CTRL_SET_TIMEOUT);
3951 : : } else {
3952 : 0 : ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
3953 : : USB_REQ_CLEAR_FEATURE,
3954 : : USB_RECIP_DEVICE,
3955 : : feature,
3956 : : 0, NULL, 0,
3957 : : USB_CTRL_SET_TIMEOUT);
3958 : : }
3959 [ # # ]: 0 : if (ret < 0) {
3960 [ # # ]: 0 : dev_warn(&udev->dev, "%s of device-initiated %s failed.\n",
3961 : : enable ? "Enable" : "Disable",
3962 : : usb3_lpm_names[state]);
3963 : 0 : return -EBUSY;
3964 : : }
3965 : : return 0;
3966 : : }
3967 : :
3968 : 0 : static int usb_set_lpm_timeout(struct usb_device *udev,
3969 : : enum usb3_link_state state, int timeout)
3970 : : {
3971 : 0 : int ret;
3972 : 0 : int feature;
3973 : :
3974 [ # # # ]: 0 : switch (state) {
3975 : : case USB3_LPM_U1:
3976 : : feature = USB_PORT_FEAT_U1_TIMEOUT;
3977 : : break;
3978 : 0 : case USB3_LPM_U2:
3979 : 0 : feature = USB_PORT_FEAT_U2_TIMEOUT;
3980 : 0 : break;
3981 : 0 : default:
3982 : 0 : dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n",
3983 : : __func__);
3984 : 0 : return -EINVAL;
3985 : : }
3986 : :
3987 [ # # # # ]: 0 : if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT &&
3988 : : timeout != USB3_LPM_DEVICE_INITIATED) {
3989 : 0 : dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, "
3990 : : "which is a reserved value.\n",
3991 : : usb3_lpm_names[state], timeout);
3992 : 0 : return -EINVAL;
3993 : : }
3994 : :
3995 : 0 : ret = set_port_feature(udev->parent,
3996 : 0 : USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum,
3997 : : feature);
3998 [ # # ]: 0 : if (ret < 0) {
3999 : 0 : dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x,"
4000 : : "error code %i\n", usb3_lpm_names[state],
4001 : : timeout, ret);
4002 : 0 : return -EBUSY;
4003 : : }
4004 [ # # ]: 0 : if (state == USB3_LPM_U1)
4005 : 0 : udev->u1_params.timeout = timeout;
4006 : : else
4007 : 0 : udev->u2_params.timeout = timeout;
4008 : : return 0;
4009 : : }
4010 : :
4011 : : /*
4012 : : * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated
4013 : : * U1/U2 entry.
4014 : : *
4015 : : * We will attempt to enable U1 or U2, but there are no guarantees that the
4016 : : * control transfers to set the hub timeout or enable device-initiated U1/U2
4017 : : * will be successful.
4018 : : *
4019 : : * If the control transfer to enable device-initiated U1/U2 entry fails, then
4020 : : * hub-initiated U1/U2 will be disabled.
4021 : : *
4022 : : * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI
4023 : : * driver know about it. If that call fails, it should be harmless, and just
4024 : : * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency.
4025 : : */
4026 : 0 : static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
4027 : : enum usb3_link_state state)
4028 : : {
4029 : 0 : int timeout, ret;
4030 : 0 : __u8 u1_mel = udev->bos->ss_cap->bU1devExitLat;
4031 : 0 : __le16 u2_mel = udev->bos->ss_cap->bU2DevExitLat;
4032 : :
4033 : : /* If the device says it doesn't have *any* exit latency to come out of
4034 : : * U1 or U2, it's probably lying. Assume it doesn't implement that link
4035 : : * state.
4036 : : */
4037 [ # # ]: 0 : if ((state == USB3_LPM_U1 && u1_mel == 0) ||
4038 [ # # ]: 0 : (state == USB3_LPM_U2 && u2_mel == 0))
4039 : : return;
4040 : :
4041 : : /*
4042 : : * First, let the device know about the exit latencies
4043 : : * associated with the link state we're about to enable.
4044 : : */
4045 : 0 : ret = usb_req_set_sel(udev, state);
4046 [ # # ]: 0 : if (ret < 0) {
4047 : 0 : dev_warn(&udev->dev, "Set SEL for device-initiated %s failed.\n",
4048 : : usb3_lpm_names[state]);
4049 : 0 : return;
4050 : : }
4051 : :
4052 : : /* We allow the host controller to set the U1/U2 timeout internally
4053 : : * first, so that it can change its schedule to account for the
4054 : : * additional latency to send data to a device in a lower power
4055 : : * link state.
4056 : : */
4057 : 0 : timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state);
4058 : :
4059 : : /* xHCI host controller doesn't want to enable this LPM state. */
4060 [ # # ]: 0 : if (timeout == 0)
4061 : : return;
4062 : :
4063 [ # # ]: 0 : if (timeout < 0) {
4064 : 0 : dev_warn(&udev->dev, "Could not enable %s link state, "
4065 : : "xHCI error %i.\n", usb3_lpm_names[state],
4066 : : timeout);
4067 : 0 : return;
4068 : : }
4069 : :
4070 [ # # ]: 0 : if (usb_set_lpm_timeout(udev, state, timeout)) {
4071 : : /* If we can't set the parent hub U1/U2 timeout,
4072 : : * device-initiated LPM won't be allowed either, so let the xHCI
4073 : : * host know that this link state won't be enabled.
4074 : : */
4075 : 0 : hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
4076 : 0 : return;
4077 : : }
4078 : :
4079 : : /* Only a configured device will accept the Set Feature
4080 : : * U1/U2_ENABLE
4081 : : */
4082 [ # # # # ]: 0 : if (udev->actconfig &&
4083 : 0 : usb_set_device_initiated_lpm(udev, state, true) == 0) {
4084 [ # # ]: 0 : if (state == USB3_LPM_U1)
4085 : 0 : udev->usb3_lpm_u1_enabled = 1;
4086 [ # # ]: 0 : else if (state == USB3_LPM_U2)
4087 : 0 : udev->usb3_lpm_u2_enabled = 1;
4088 : : } else {
4089 : : /* Don't request U1/U2 entry if the device
4090 : : * cannot transition to U1/U2.
4091 : : */
4092 : 0 : usb_set_lpm_timeout(udev, state, 0);
4093 : 0 : hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state);
4094 : : }
4095 : : }
4096 : :
4097 : : /*
4098 : : * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated
4099 : : * U1/U2 entry.
4100 : : *
4101 : : * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry.
4102 : : * If zero is returned, the parent will not allow the link to go into U1/U2.
4103 : : *
4104 : : * If zero is returned, device-initiated U1/U2 entry may still be enabled, but
4105 : : * it won't have an effect on the bus link state because the parent hub will
4106 : : * still disallow device-initiated U1/U2 entry.
4107 : : *
4108 : : * If zero is returned, the xHCI host controller may still think U1/U2 entry is
4109 : : * possible. The result will be slightly more bus bandwidth will be taken up
4110 : : * (to account for U1/U2 exit latency), but it should be harmless.
4111 : : */
4112 : 0 : static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev,
4113 : : enum usb3_link_state state)
4114 : : {
4115 [ # # ]: 0 : switch (state) {
4116 : : case USB3_LPM_U1:
4117 : : case USB3_LPM_U2:
4118 : 0 : break;
4119 : 0 : default:
4120 : 0 : dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n",
4121 : : __func__);
4122 : 0 : return -EINVAL;
4123 : : }
4124 : :
4125 [ # # ]: 0 : if (usb_set_lpm_timeout(udev, state, 0))
4126 : : return -EBUSY;
4127 : :
4128 : 0 : usb_set_device_initiated_lpm(udev, state, false);
4129 : :
4130 [ # # ]: 0 : if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state))
4131 : 0 : dev_warn(&udev->dev, "Could not disable xHCI %s timeout, "
4132 : : "bus schedule bandwidth may be impacted.\n",
4133 : : usb3_lpm_names[state]);
4134 : :
4135 : : /* As soon as usb_set_lpm_timeout(0) return 0, hub initiated LPM
4136 : : * is disabled. Hub will disallows link to enter U1/U2 as well,
4137 : : * even device is initiating LPM. Hence LPM is disabled if hub LPM
4138 : : * timeout set to 0, no matter device-initiated LPM is disabled or
4139 : : * not.
4140 : : */
4141 [ # # ]: 0 : if (state == USB3_LPM_U1)
4142 : 0 : udev->usb3_lpm_u1_enabled = 0;
4143 : 0 : else if (state == USB3_LPM_U2)
4144 : 0 : udev->usb3_lpm_u2_enabled = 0;
4145 : :
4146 : : return 0;
4147 : : }
4148 : :
4149 : : /*
4150 : : * Disable hub-initiated and device-initiated U1 and U2 entry.
4151 : : * Caller must own the bandwidth_mutex.
4152 : : *
4153 : : * This will call usb_enable_lpm() on failure, which will decrement
4154 : : * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero.
4155 : : */
4156 : 0 : int usb_disable_lpm(struct usb_device *udev)
4157 : : {
4158 : 0 : struct usb_hcd *hcd;
4159 : :
4160 [ # # # # ]: 0 : if (!udev || !udev->parent ||
4161 [ # # ]: 0 : udev->speed < USB_SPEED_SUPER ||
4162 [ # # ]: 0 : !udev->lpm_capable ||
4163 [ # # ]: 0 : udev->state < USB_STATE_CONFIGURED)
4164 : : return 0;
4165 : :
4166 [ # # ]: 0 : hcd = bus_to_hcd(udev->bus);
4167 [ # # # # ]: 0 : if (!hcd || !hcd->driver->disable_usb3_lpm_timeout)
4168 : : return 0;
4169 : :
4170 : 0 : udev->lpm_disable_count++;
4171 [ # # # # ]: 0 : if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0))
4172 : : return 0;
4173 : :
4174 : : /* If LPM is enabled, attempt to disable it. */
4175 [ # # ]: 0 : if (usb_disable_link_state(hcd, udev, USB3_LPM_U1))
4176 : 0 : goto enable_lpm;
4177 [ # # ]: 0 : if (usb_disable_link_state(hcd, udev, USB3_LPM_U2))
4178 : 0 : goto enable_lpm;
4179 : :
4180 : : return 0;
4181 : :
4182 : 0 : enable_lpm:
4183 : 0 : usb_enable_lpm(udev);
4184 : 0 : return -EBUSY;
4185 : : }
4186 : : EXPORT_SYMBOL_GPL(usb_disable_lpm);
4187 : :
4188 : : /* Grab the bandwidth_mutex before calling usb_disable_lpm() */
4189 : 0 : int usb_unlocked_disable_lpm(struct usb_device *udev)
4190 : : {
4191 [ # # ]: 0 : struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4192 : 0 : int ret;
4193 : :
4194 [ # # ]: 0 : if (!hcd)
4195 : : return -EINVAL;
4196 : :
4197 : 0 : mutex_lock(hcd->bandwidth_mutex);
4198 : 0 : ret = usb_disable_lpm(udev);
4199 : 0 : mutex_unlock(hcd->bandwidth_mutex);
4200 : :
4201 : 0 : return ret;
4202 : : }
4203 : : EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
4204 : :
4205 : : /*
4206 : : * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The
4207 : : * xHCI host policy may prevent U1 or U2 from being enabled.
4208 : : *
4209 : : * Other callers may have disabled link PM, so U1 and U2 entry will be disabled
4210 : : * until the lpm_disable_count drops to zero. Caller must own the
4211 : : * bandwidth_mutex.
4212 : : */
4213 : 0 : void usb_enable_lpm(struct usb_device *udev)
4214 : : {
4215 : 0 : struct usb_hcd *hcd;
4216 : 0 : struct usb_hub *hub;
4217 : 0 : struct usb_port *port_dev;
4218 : :
4219 [ # # # # ]: 0 : if (!udev || !udev->parent ||
4220 [ # # ]: 0 : udev->speed < USB_SPEED_SUPER ||
4221 [ # # ]: 0 : !udev->lpm_capable ||
4222 [ # # ]: 0 : udev->state < USB_STATE_CONFIGURED)
4223 : : return;
4224 : :
4225 : 0 : udev->lpm_disable_count--;
4226 [ # # ]: 0 : hcd = bus_to_hcd(udev->bus);
4227 : : /* Double check that we can both enable and disable LPM.
4228 : : * Device must be configured to accept set feature U1/U2 timeout.
4229 : : */
4230 [ # # # # ]: 0 : if (!hcd || !hcd->driver->enable_usb3_lpm_timeout ||
4231 [ # # ]: 0 : !hcd->driver->disable_usb3_lpm_timeout)
4232 : : return;
4233 : :
4234 [ # # ]: 0 : if (udev->lpm_disable_count > 0)
4235 : : return;
4236 : :
4237 [ # # ]: 0 : hub = usb_hub_to_struct_hub(udev->parent);
4238 [ # # ]: 0 : if (!hub)
4239 : : return;
4240 : :
4241 : 0 : port_dev = hub->ports[udev->portnum - 1];
4242 : :
4243 [ # # ]: 0 : if (port_dev->usb3_lpm_u1_permit)
4244 : 0 : usb_enable_link_state(hcd, udev, USB3_LPM_U1);
4245 : :
4246 [ # # ]: 0 : if (port_dev->usb3_lpm_u2_permit)
4247 : 0 : usb_enable_link_state(hcd, udev, USB3_LPM_U2);
4248 : : }
4249 : : EXPORT_SYMBOL_GPL(usb_enable_lpm);
4250 : :
4251 : : /* Grab the bandwidth_mutex before calling usb_enable_lpm() */
4252 : 0 : void usb_unlocked_enable_lpm(struct usb_device *udev)
4253 : : {
4254 [ # # ]: 0 : struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4255 : :
4256 [ # # ]: 0 : if (!hcd)
4257 : : return;
4258 : :
4259 : 0 : mutex_lock(hcd->bandwidth_mutex);
4260 : 0 : usb_enable_lpm(udev);
4261 : 0 : mutex_unlock(hcd->bandwidth_mutex);
4262 : : }
4263 : : EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
4264 : :
4265 : : /* usb3 devices use U3 for disabled, make sure remote wakeup is disabled */
4266 : : static void hub_usb3_port_prepare_disable(struct usb_hub *hub,
4267 : : struct usb_port *port_dev)
4268 : : {
4269 : : struct usb_device *udev = port_dev->child;
4270 : : int ret;
4271 : :
4272 : : if (udev && udev->port_is_suspended && udev->do_remote_wakeup) {
4273 : : ret = hub_set_port_link_state(hub, port_dev->portnum,
4274 : : USB_SS_PORT_LS_U0);
4275 : : if (!ret) {
4276 : : msleep(USB_RESUME_TIMEOUT);
4277 : : ret = usb_disable_remote_wakeup(udev);
4278 : : }
4279 : : if (ret)
4280 : : dev_warn(&udev->dev,
4281 : : "Port disable: can't disable remote wake\n");
4282 : : udev->do_remote_wakeup = 0;
4283 : : }
4284 : : }
4285 : :
4286 : : #else /* CONFIG_PM */
4287 : :
4288 : : #define hub_suspend NULL
4289 : : #define hub_resume NULL
4290 : : #define hub_reset_resume NULL
4291 : :
4292 : : static inline void hub_usb3_port_prepare_disable(struct usb_hub *hub,
4293 : : struct usb_port *port_dev) { }
4294 : :
4295 : : int usb_disable_lpm(struct usb_device *udev)
4296 : : {
4297 : : return 0;
4298 : : }
4299 : : EXPORT_SYMBOL_GPL(usb_disable_lpm);
4300 : :
4301 : : void usb_enable_lpm(struct usb_device *udev) { }
4302 : : EXPORT_SYMBOL_GPL(usb_enable_lpm);
4303 : :
4304 : : int usb_unlocked_disable_lpm(struct usb_device *udev)
4305 : : {
4306 : : return 0;
4307 : : }
4308 : : EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm);
4309 : :
4310 : : void usb_unlocked_enable_lpm(struct usb_device *udev) { }
4311 : : EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm);
4312 : :
4313 : : int usb_disable_ltm(struct usb_device *udev)
4314 : : {
4315 : : return 0;
4316 : : }
4317 : : EXPORT_SYMBOL_GPL(usb_disable_ltm);
4318 : :
4319 : : void usb_enable_ltm(struct usb_device *udev) { }
4320 : : EXPORT_SYMBOL_GPL(usb_enable_ltm);
4321 : :
4322 : : static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port,
4323 : : u16 portstatus, u16 portchange)
4324 : : {
4325 : : return 0;
4326 : : }
4327 : :
4328 : : #endif /* CONFIG_PM */
4329 : :
4330 : : /*
4331 : : * USB-3 does not have a similar link state as USB-2 that will avoid negotiating
4332 : : * a connection with a plugged-in cable but will signal the host when the cable
4333 : : * is unplugged. Disable remote wake and set link state to U3 for USB-3 devices
4334 : : */
4335 : 0 : static int hub_port_disable(struct usb_hub *hub, int port1, int set_state)
4336 : : {
4337 : 0 : struct usb_port *port_dev = hub->ports[port1 - 1];
4338 : 0 : struct usb_device *hdev = hub->hdev;
4339 : 0 : int ret = 0;
4340 : :
4341 [ # # ]: 0 : if (!hub->error) {
4342 [ # # ]: 0 : if (hub_is_superspeed(hub->hdev)) {
4343 : 0 : hub_usb3_port_prepare_disable(hub, port_dev);
4344 : 0 : ret = hub_set_port_link_state(hub, port_dev->portnum,
4345 : : USB_SS_PORT_LS_U3);
4346 : : } else {
4347 : 0 : ret = usb_clear_port_feature(hdev, port1,
4348 : : USB_PORT_FEAT_ENABLE);
4349 : : }
4350 : : }
4351 [ # # # # ]: 0 : if (port_dev->child && set_state)
4352 : 0 : usb_set_device_state(port_dev->child, USB_STATE_NOTATTACHED);
4353 [ # # ]: 0 : if (ret && ret != -ENODEV)
4354 : 0 : dev_err(&port_dev->dev, "cannot disable (err = %d)\n", ret);
4355 : 0 : return ret;
4356 : : }
4357 : :
4358 : : /*
4359 : : * usb_port_disable - disable a usb device's upstream port
4360 : : * @udev: device to disable
4361 : : * Context: @udev locked, must be able to sleep.
4362 : : *
4363 : : * Disables a USB device that isn't in active use.
4364 : : */
4365 : 0 : int usb_port_disable(struct usb_device *udev)
4366 : : {
4367 [ # # ]: 0 : struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
4368 : :
4369 : 0 : return hub_port_disable(hub, udev->portnum, 0);
4370 : : }
4371 : :
4372 : : /* USB 2.0 spec, 7.1.7.3 / fig 7-29:
4373 : : *
4374 : : * Between connect detection and reset signaling there must be a delay
4375 : : * of 100ms at least for debounce and power-settling. The corresponding
4376 : : * timer shall restart whenever the downstream port detects a disconnect.
4377 : : *
4378 : : * Apparently there are some bluetooth and irda-dongles and a number of
4379 : : * low-speed devices for which this debounce period may last over a second.
4380 : : * Not covered by the spec - but easy to deal with.
4381 : : *
4382 : : * This implementation uses a 1500ms total debounce timeout; if the
4383 : : * connection isn't stable by then it returns -ETIMEDOUT. It checks
4384 : : * every 25ms for transient disconnects. When the port status has been
4385 : : * unchanged for 100ms it returns the port status.
4386 : : */
4387 : 0 : int hub_port_debounce(struct usb_hub *hub, int port1, bool must_be_connected)
4388 : : {
4389 : 0 : int ret;
4390 : 0 : u16 portchange, portstatus;
4391 : 0 : unsigned connection = 0xffff;
4392 : 0 : int total_time, stable_time = 0;
4393 : 0 : struct usb_port *port_dev = hub->ports[port1 - 1];
4394 : :
4395 : 0 : for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) {
4396 : 0 : ret = hub_port_status(hub, port1, &portstatus, &portchange);
4397 [ # # ]: 0 : if (ret < 0)
4398 : 0 : return ret;
4399 : :
4400 [ # # ]: 0 : if (!(portchange & USB_PORT_STAT_C_CONNECTION) &&
4401 [ # # ]: 0 : (portstatus & USB_PORT_STAT_CONNECTION) == connection) {
4402 : 0 : if (!must_be_connected ||
4403 [ # # ]: 0 : (connection == USB_PORT_STAT_CONNECTION))
4404 : 0 : stable_time += HUB_DEBOUNCE_STEP;
4405 [ # # ]: 0 : if (stable_time >= HUB_DEBOUNCE_STABLE)
4406 : : break;
4407 : : } else {
4408 : 0 : stable_time = 0;
4409 : 0 : connection = portstatus & USB_PORT_STAT_CONNECTION;
4410 : : }
4411 : :
4412 [ # # ]: 0 : if (portchange & USB_PORT_STAT_C_CONNECTION) {
4413 : 0 : usb_clear_port_feature(hub->hdev, port1,
4414 : : USB_PORT_FEAT_C_CONNECTION);
4415 : : }
4416 : :
4417 [ # # ]: 0 : if (total_time >= HUB_DEBOUNCE_TIMEOUT)
4418 : : break;
4419 : 0 : msleep(HUB_DEBOUNCE_STEP);
4420 : : }
4421 : :
4422 : 0 : dev_dbg(&port_dev->dev, "debounce total %dms stable %dms status 0x%x\n",
4423 : : total_time, stable_time, portstatus);
4424 : :
4425 [ # # ]: 0 : if (stable_time < HUB_DEBOUNCE_STABLE)
4426 : : return -ETIMEDOUT;
4427 : 0 : return portstatus;
4428 : : }
4429 : :
4430 : 0 : void usb_ep0_reinit(struct usb_device *udev)
4431 : : {
4432 : 0 : usb_disable_endpoint(udev, 0 + USB_DIR_IN, true);
4433 : 0 : usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true);
4434 : 0 : usb_enable_endpoint(udev, &udev->ep0, true);
4435 : 0 : }
4436 : : EXPORT_SYMBOL_GPL(usb_ep0_reinit);
4437 : :
4438 : : #define usb_sndaddr0pipe() (PIPE_CONTROL << 30)
4439 : : #define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN)
4440 : :
4441 : 0 : static int hub_set_address(struct usb_device *udev, int devnum)
4442 : : {
4443 : 0 : int retval;
4444 [ # # ]: 0 : struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4445 : :
4446 : : /*
4447 : : * The host controller will choose the device address,
4448 : : * instead of the core having chosen it earlier
4449 : : */
4450 [ # # # # ]: 0 : if (!hcd->driver->address_device && devnum <= 1)
4451 : : return -EINVAL;
4452 [ # # ]: 0 : if (udev->state == USB_STATE_ADDRESS)
4453 : : return 0;
4454 [ # # ]: 0 : if (udev->state != USB_STATE_DEFAULT)
4455 : : return -EINVAL;
4456 [ # # ]: 0 : if (hcd->driver->address_device)
4457 : 0 : retval = hcd->driver->address_device(hcd, udev);
4458 : : else
4459 : 0 : retval = usb_control_msg(udev, usb_sndaddr0pipe(),
4460 : : USB_REQ_SET_ADDRESS, 0, devnum, 0,
4461 : : NULL, 0, USB_CTRL_SET_TIMEOUT);
4462 [ # # ]: 0 : if (retval == 0) {
4463 [ # # ]: 0 : update_devnum(udev, devnum);
4464 : : /* Device now using proper address. */
4465 : 0 : usb_set_device_state(udev, USB_STATE_ADDRESS);
4466 : 0 : usb_ep0_reinit(udev);
4467 : : }
4468 : : return retval;
4469 : : }
4470 : :
4471 : : /*
4472 : : * There are reports of USB 3.0 devices that say they support USB 2.0 Link PM
4473 : : * when they're plugged into a USB 2.0 port, but they don't work when LPM is
4474 : : * enabled.
4475 : : *
4476 : : * Only enable USB 2.0 Link PM if the port is internal (hardwired), or the
4477 : : * device says it supports the new USB 2.0 Link PM errata by setting the BESL
4478 : : * support bit in the BOS descriptor.
4479 : : */
4480 : 0 : static void hub_set_initial_usb2_lpm_policy(struct usb_device *udev)
4481 : : {
4482 [ # # ]: 0 : struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
4483 : 0 : int connect_type = USB_PORT_CONNECT_TYPE_UNKNOWN;
4484 : :
4485 [ # # # # ]: 0 : if (!udev->usb2_hw_lpm_capable || !udev->bos)
4486 : : return;
4487 : :
4488 [ # # ]: 0 : if (hub)
4489 : 0 : connect_type = hub->ports[udev->portnum - 1]->connect_type;
4490 : :
4491 [ # # # # ]: 0 : if ((udev->bos->ext_cap->bmAttributes & cpu_to_le32(USB_BESL_SUPPORT)) ||
4492 : : connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
4493 : 0 : udev->usb2_hw_lpm_allowed = 1;
4494 : 0 : usb_enable_usb2_hardware_lpm(udev);
4495 : : }
4496 : : }
4497 : :
4498 : 0 : static int hub_enable_device(struct usb_device *udev)
4499 : : {
4500 : 0 : struct usb_hcd *hcd = bus_to_hcd(udev->bus);
4501 : :
4502 [ # # ]: 0 : if (!hcd->driver->enable_device)
4503 : : return 0;
4504 [ # # ]: 0 : if (udev->state == USB_STATE_ADDRESS)
4505 : : return 0;
4506 [ # # ]: 0 : if (udev->state != USB_STATE_DEFAULT)
4507 : : return -EINVAL;
4508 : :
4509 : 0 : return hcd->driver->enable_device(hcd, udev);
4510 : : }
4511 : :
4512 : : /* Reset device, (re)assign address, get device descriptor.
4513 : : * Device connection must be stable, no more debouncing needed.
4514 : : * Returns device in USB_STATE_ADDRESS, except on error.
4515 : : *
4516 : : * If this is called for an already-existing device (as part of
4517 : : * usb_reset_and_verify_device), the caller must own the device lock and
4518 : : * the port lock. For a newly detected device that is not accessible
4519 : : * through any global pointers, it's not necessary to lock the device,
4520 : : * but it is still necessary to lock the port.
4521 : : */
4522 : : static int
4523 : 0 : hub_port_init(struct usb_hub *hub, struct usb_device *udev, int port1,
4524 : : int retry_counter)
4525 : : {
4526 : 0 : struct usb_device *hdev = hub->hdev;
4527 [ # # ]: 0 : struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
4528 : 0 : struct usb_port *port_dev = hub->ports[port1 - 1];
4529 : 0 : int retries, operations, retval, i;
4530 : 0 : unsigned delay = HUB_SHORT_RESET_TIME;
4531 : 0 : enum usb_device_speed oldspeed = udev->speed;
4532 : 0 : const char *speed;
4533 : 0 : int devnum = udev->devnum;
4534 : 0 : const char *driver_name;
4535 : :
4536 : : /* root hub ports have a slightly longer reset period
4537 : : * (from USB 2.0 spec, section 7.1.7.5)
4538 : : */
4539 [ # # ]: 0 : if (!hdev->parent) {
4540 : 0 : delay = HUB_ROOT_RESET_TIME;
4541 [ # # ]: 0 : if (port1 == hdev->bus->otg_port)
4542 : 0 : hdev->bus->b_hnp_enable = 0;
4543 : : }
4544 : :
4545 : : /* Some low speed devices have problems with the quick delay, so */
4546 : : /* be a bit pessimistic with those devices. RHbug #23670 */
4547 [ # # ]: 0 : if (oldspeed == USB_SPEED_LOW)
4548 : 0 : delay = HUB_LONG_RESET_TIME;
4549 : :
4550 : 0 : mutex_lock(hcd->address0_mutex);
4551 : :
4552 : : /* Reset the device; full speed may morph to high speed */
4553 : : /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */
4554 : 0 : retval = hub_port_reset(hub, port1, udev, delay, false);
4555 [ # # ]: 0 : if (retval < 0) /* error or disconnect */
4556 : 0 : goto fail;
4557 : : /* success, speed is known */
4558 : :
4559 : 0 : retval = -ENODEV;
4560 : :
4561 : : /* Don't allow speed changes at reset, except usb 3.0 to faster */
4562 [ # # # # : 0 : if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed &&
# # ]
4563 [ # # ]: 0 : !(oldspeed == USB_SPEED_SUPER && udev->speed > oldspeed)) {
4564 : 0 : dev_dbg(&udev->dev, "device reset changed speed!\n");
4565 : 0 : goto fail;
4566 : : }
4567 : 0 : oldspeed = udev->speed;
4568 : :
4569 : : /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ...
4570 : : * it's fixed size except for full speed devices.
4571 : : * For Wireless USB devices, ep0 max packet is always 512 (tho
4572 : : * reported as 0xff in the device descriptor). WUSB1.0[4.8.1].
4573 : : */
4574 [ # # # # : 0 : switch (udev->speed) {
# ]
4575 : 0 : case USB_SPEED_SUPER_PLUS:
4576 : : case USB_SPEED_SUPER:
4577 : : case USB_SPEED_WIRELESS: /* fixed at 512 */
4578 : 0 : udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512);
4579 : 0 : break;
4580 : 0 : case USB_SPEED_HIGH: /* fixed at 64 */
4581 : 0 : udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
4582 : 0 : break;
4583 : 0 : case USB_SPEED_FULL: /* 8, 16, 32, or 64 */
4584 : : /* to determine the ep0 maxpacket size, try to read
4585 : : * the device descriptor to get bMaxPacketSize0 and
4586 : : * then correct our initial guess.
4587 : : */
4588 : 0 : udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
4589 : 0 : break;
4590 : 0 : case USB_SPEED_LOW: /* fixed at 8 */
4591 : 0 : udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8);
4592 : 0 : break;
4593 : 0 : default:
4594 : 0 : goto fail;
4595 : : }
4596 : :
4597 [ # # ]: 0 : if (udev->speed == USB_SPEED_WIRELESS)
4598 : : speed = "variable speed Wireless";
4599 : : else
4600 : 0 : speed = usb_speed_string(udev->speed);
4601 : :
4602 : : /*
4603 : : * The controller driver may be NULL if the controller device
4604 : : * is the middle device between platform device and roothub.
4605 : : * This middle device may not need a device driver due to
4606 : : * all hardware control can be at platform device driver, this
4607 : : * platform device is usually a dual-role USB controller device.
4608 : : */
4609 [ # # ]: 0 : if (udev->bus->controller->driver)
4610 : 0 : driver_name = udev->bus->controller->driver->name;
4611 : : else
4612 : 0 : driver_name = udev->bus->sysdev->driver->name;
4613 : :
4614 [ # # ]: 0 : if (udev->speed < USB_SPEED_SUPER)
4615 [ # # ]: 0 : dev_info(&udev->dev,
4616 : : "%s %s USB device number %d using %s\n",
4617 : : (udev->config) ? "reset" : "new", speed,
4618 : : devnum, driver_name);
4619 : :
4620 : : /* Set up TT records, if needed */
4621 [ # # ]: 0 : if (hdev->tt) {
4622 : 0 : udev->tt = hdev->tt;
4623 : 0 : udev->ttport = hdev->ttport;
4624 [ # # ]: 0 : } else if (udev->speed != USB_SPEED_HIGH
4625 [ # # ]: 0 : && hdev->speed == USB_SPEED_HIGH) {
4626 [ # # ]: 0 : if (!hub->tt.hub) {
4627 : 0 : dev_err(&udev->dev, "parent hub has no TT\n");
4628 : 0 : retval = -EINVAL;
4629 : 0 : goto fail;
4630 : : }
4631 : 0 : udev->tt = &hub->tt;
4632 : 0 : udev->ttport = port1;
4633 : : }
4634 : :
4635 : : /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way?
4636 : : * Because device hardware and firmware is sometimes buggy in
4637 : : * this area, and this is how Linux has done it for ages.
4638 : : * Change it cautiously.
4639 : : *
4640 : : * NOTE: If use_new_scheme() is true we will start by issuing
4641 : : * a 64-byte GET_DESCRIPTOR request. This is what Windows does,
4642 : : * so it may help with some non-standards-compliant devices.
4643 : : * Otherwise we start with SET_ADDRESS and then try to read the
4644 : : * first 8 bytes of the device descriptor to get the ep0 maxpacket
4645 : : * value.
4646 : : */
4647 [ # # ]: 0 : for (retries = 0; retries < GET_DESCRIPTOR_TRIES; (++retries, msleep(100))) {
4648 : 0 : bool did_new_scheme = false;
4649 : :
4650 [ # # # # ]: 0 : if (use_new_scheme(udev, retry_counter, port_dev)) {
4651 : 0 : struct usb_device_descriptor *buf;
4652 : 0 : int r = 0;
4653 : :
4654 : 0 : did_new_scheme = true;
4655 [ # # ]: 0 : retval = hub_enable_device(udev);
4656 [ # # ]: 0 : if (retval < 0) {
4657 : 0 : dev_err(&udev->dev,
4658 : : "hub failed to enable device, error %d\n",
4659 : : retval);
4660 : 0 : goto fail;
4661 : : }
4662 : :
4663 : : #define GET_DESCRIPTOR_BUFSIZE 64
4664 : 0 : buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO);
4665 [ # # ]: 0 : if (!buf) {
4666 : 0 : retval = -ENOMEM;
4667 : 0 : continue;
4668 : : }
4669 : :
4670 : : /* Retry on all errors; some devices are flakey.
4671 : : * 255 is for WUSB devices, we actually need to use
4672 : : * 512 (WUSB1.0[4.8.1]).
4673 : : */
4674 [ # # ]: 0 : for (operations = 0; operations < 3; ++operations) {
4675 : 0 : buf->bMaxPacketSize0 = 0;
4676 : 0 : r = usb_control_msg(udev, usb_rcvaddr0pipe(),
4677 : : USB_REQ_GET_DESCRIPTOR, USB_DIR_IN,
4678 : : USB_DT_DEVICE << 8, 0,
4679 : : buf, GET_DESCRIPTOR_BUFSIZE,
4680 : : initial_descriptor_timeout);
4681 [ # # ]: 0 : switch (buf->bMaxPacketSize0) {
4682 : 0 : case 8: case 16: case 32: case 64: case 255:
4683 [ # # ]: 0 : if (buf->bDescriptorType ==
4684 : : USB_DT_DEVICE) {
4685 : : r = 0;
4686 : : break;
4687 : : }
4688 : : /* FALL THROUGH */
4689 : : default:
4690 [ # # ]: 0 : if (r == 0)
4691 : : r = -EPROTO;
4692 : : break;
4693 : : }
4694 : : /*
4695 : : * Some devices time out if they are powered on
4696 : : * when already connected. They need a second
4697 : : * reset. But only on the first attempt,
4698 : : * lest we get into a time out/reset loop
4699 : : */
4700 : 0 : if (r == 0 || (r == -ETIMEDOUT &&
4701 [ # # ]: 0 : retries == 0 &&
4702 [ # # ]: 0 : udev->speed > USB_SPEED_FULL))
4703 : : break;
4704 : : }
4705 : 0 : udev->descriptor.bMaxPacketSize0 =
4706 : 0 : buf->bMaxPacketSize0;
4707 : 0 : kfree(buf);
4708 : :
4709 : 0 : retval = hub_port_reset(hub, port1, udev, delay, false);
4710 [ # # ]: 0 : if (retval < 0) /* error or disconnect */
4711 : 0 : goto fail;
4712 [ # # ]: 0 : if (oldspeed != udev->speed) {
4713 : 0 : dev_dbg(&udev->dev,
4714 : : "device reset changed speed!\n");
4715 : 0 : retval = -ENODEV;
4716 : 0 : goto fail;
4717 : : }
4718 [ # # ]: 0 : if (r) {
4719 [ # # ]: 0 : if (r != -ENODEV)
4720 : 0 : dev_err(&udev->dev, "device descriptor read/64, error %d\n",
4721 : : r);
4722 : 0 : retval = -EMSGSIZE;
4723 : 0 : continue;
4724 : : }
4725 : : #undef GET_DESCRIPTOR_BUFSIZE
4726 : : }
4727 : :
4728 : : /*
4729 : : * If device is WUSB, we already assigned an
4730 : : * unauthorized address in the Connect Ack sequence;
4731 : : * authorization will assign the final address.
4732 : : */
4733 [ # # ]: 0 : if (udev->wusb == 0) {
4734 [ # # ]: 0 : for (operations = 0; operations < SET_ADDRESS_TRIES; ++operations) {
4735 : 0 : retval = hub_set_address(udev, devnum);
4736 [ # # ]: 0 : if (retval >= 0)
4737 : : break;
4738 : 0 : msleep(200);
4739 : : }
4740 [ # # ]: 0 : if (retval < 0) {
4741 [ # # ]: 0 : if (retval != -ENODEV)
4742 : 0 : dev_err(&udev->dev, "device not accepting address %d, error %d\n",
4743 : : devnum, retval);
4744 : 0 : goto fail;
4745 : : }
4746 [ # # ]: 0 : if (udev->speed >= USB_SPEED_SUPER) {
4747 : 0 : devnum = udev->devnum;
4748 [ # # # # : 0 : dev_info(&udev->dev,
# # ]
4749 : : "%s SuperSpeed%s%s USB device number %d using %s\n",
4750 : : (udev->config) ? "reset" : "new",
4751 : : (udev->speed == USB_SPEED_SUPER_PLUS) ?
4752 : : "Plus Gen 2" : " Gen 1",
4753 : : (udev->rx_lanes == 2 && udev->tx_lanes == 2) ?
4754 : : "x2" : "",
4755 : : devnum, driver_name);
4756 : : }
4757 : :
4758 : : /* cope with hardware quirkiness:
4759 : : * - let SET_ADDRESS settle, some device hardware wants it
4760 : : * - read ep0 maxpacket even for high and low speed,
4761 : : */
4762 : 0 : msleep(10);
4763 : : /* use_new_scheme() checks the speed which may have
4764 : : * changed since the initial look so we cache the result
4765 : : * in did_new_scheme
4766 : : */
4767 [ # # ]: 0 : if (did_new_scheme)
4768 : : break;
4769 : : }
4770 : :
4771 : 0 : retval = usb_get_device_descriptor(udev, 8);
4772 [ # # ]: 0 : if (retval < 8) {
4773 [ # # ]: 0 : if (retval != -ENODEV)
4774 : 0 : dev_err(&udev->dev,
4775 : : "device descriptor read/8, error %d\n",
4776 : : retval);
4777 [ # # ]: 0 : if (retval >= 0)
4778 : 0 : retval = -EMSGSIZE;
4779 : : } else {
4780 : 0 : u32 delay;
4781 : :
4782 : 0 : retval = 0;
4783 : :
4784 : 0 : delay = udev->parent->hub_delay;
4785 : 0 : udev->hub_delay = min_t(u32, delay,
4786 : : USB_TP_TRANSMISSION_DELAY_MAX);
4787 : 0 : retval = usb_set_isoch_delay(udev);
4788 [ # # ]: 0 : if (retval) {
4789 : : dev_dbg(&udev->dev,
4790 : : "Failed set isoch delay, error %d\n",
4791 : : retval);
4792 : : retval = 0;
4793 : : }
4794 : : break;
4795 : : }
4796 : : }
4797 [ # # ]: 0 : if (retval)
4798 : 0 : goto fail;
4799 : :
4800 : : /*
4801 : : * Some superspeed devices have finished the link training process
4802 : : * and attached to a superspeed hub port, but the device descriptor
4803 : : * got from those devices show they aren't superspeed devices. Warm
4804 : : * reset the port attached by the devices can fix them.
4805 : : */
4806 [ # # ]: 0 : if ((udev->speed >= USB_SPEED_SUPER) &&
4807 [ # # ]: 0 : (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) {
4808 : 0 : dev_err(&udev->dev, "got a wrong device descriptor, "
4809 : : "warm reset device\n");
4810 : 0 : hub_port_reset(hub, port1, udev,
4811 : : HUB_BH_RESET_TIME, true);
4812 : 0 : retval = -EINVAL;
4813 : 0 : goto fail;
4814 : : }
4815 : :
4816 [ # # # # ]: 0 : if (udev->descriptor.bMaxPacketSize0 == 0xff ||
4817 : : udev->speed >= USB_SPEED_SUPER)
4818 : : i = 512;
4819 : : else
4820 : 0 : i = udev->descriptor.bMaxPacketSize0;
4821 [ # # ]: 0 : if (usb_endpoint_maxp(&udev->ep0.desc) != i) {
4822 [ # # ]: 0 : if (udev->speed == USB_SPEED_LOW ||
4823 [ # # # # ]: 0 : !(i == 8 || i == 16 || i == 32 || i == 64)) {
4824 : 0 : dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i);
4825 : 0 : retval = -EMSGSIZE;
4826 : 0 : goto fail;
4827 : : }
4828 [ # # ]: 0 : if (udev->speed == USB_SPEED_FULL)
4829 : : dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i);
4830 : : else
4831 : 0 : dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i);
4832 : 0 : udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i);
4833 : 0 : usb_ep0_reinit(udev);
4834 : : }
4835 : :
4836 : 0 : retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE);
4837 [ # # ]: 0 : if (retval < (signed)sizeof(udev->descriptor)) {
4838 [ # # ]: 0 : if (retval != -ENODEV)
4839 : 0 : dev_err(&udev->dev, "device descriptor read/all, error %d\n",
4840 : : retval);
4841 [ # # ]: 0 : if (retval >= 0)
4842 : 0 : retval = -ENOMSG;
4843 : 0 : goto fail;
4844 : : }
4845 : :
4846 : 0 : usb_detect_quirks(udev);
4847 : :
4848 [ # # # # ]: 0 : if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) {
4849 : 0 : retval = usb_get_bos_descriptor(udev);
4850 [ # # ]: 0 : if (!retval) {
4851 : 0 : udev->lpm_capable = usb_device_supports_lpm(udev);
4852 : 0 : usb_set_lpm_parameters(udev);
4853 : : }
4854 : : }
4855 : :
4856 : 0 : retval = 0;
4857 : : /* notify HCD that we have a device connected and addressed */
4858 [ # # ]: 0 : if (hcd->driver->update_device)
4859 : 0 : hcd->driver->update_device(hcd, udev);
4860 : 0 : hub_set_initial_usb2_lpm_policy(udev);
4861 : 0 : fail:
4862 [ # # ]: 0 : if (retval) {
4863 : 0 : hub_port_disable(hub, port1, 0);
4864 [ # # ]: 0 : update_devnum(udev, devnum); /* for disconnect processing */
4865 : : }
4866 : 0 : mutex_unlock(hcd->address0_mutex);
4867 : 0 : return retval;
4868 : : }
4869 : :
4870 : : static void
4871 : 0 : check_highspeed(struct usb_hub *hub, struct usb_device *udev, int port1)
4872 : : {
4873 : 0 : struct usb_qualifier_descriptor *qual;
4874 : 0 : int status;
4875 : :
4876 [ # # ]: 0 : if (udev->quirks & USB_QUIRK_DEVICE_QUALIFIER)
4877 : : return;
4878 : :
4879 : 0 : qual = kmalloc(sizeof *qual, GFP_KERNEL);
4880 [ # # ]: 0 : if (qual == NULL)
4881 : : return;
4882 : :
4883 : 0 : status = usb_get_descriptor(udev, USB_DT_DEVICE_QUALIFIER, 0,
4884 : : qual, sizeof *qual);
4885 [ # # ]: 0 : if (status == sizeof *qual) {
4886 : 0 : dev_info(&udev->dev, "not running at top speed; "
4887 : : "connect to a high speed hub\n");
4888 : : /* hub LEDs are probably harder to miss than syslog */
4889 [ # # ]: 0 : if (hub->has_indicators) {
4890 : 0 : hub->indicator[port1-1] = INDICATOR_GREEN_BLINK;
4891 : 0 : queue_delayed_work(system_power_efficient_wq,
4892 : : &hub->leds, 0);
4893 : : }
4894 : : }
4895 : 0 : kfree(qual);
4896 : : }
4897 : :
4898 : : static unsigned
4899 : 0 : hub_power_remaining(struct usb_hub *hub)
4900 : : {
4901 : 0 : struct usb_device *hdev = hub->hdev;
4902 : 0 : int remaining;
4903 : 0 : int port1;
4904 : :
4905 [ # # ]: 0 : if (!hub->limited_power)
4906 : : return 0;
4907 : :
4908 : 0 : remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent;
4909 [ # # ]: 0 : for (port1 = 1; port1 <= hdev->maxchild; ++port1) {
4910 : 0 : struct usb_port *port_dev = hub->ports[port1 - 1];
4911 : 0 : struct usb_device *udev = port_dev->child;
4912 : 0 : unsigned unit_load;
4913 : 0 : int delta;
4914 : :
4915 [ # # ]: 0 : if (!udev)
4916 : 0 : continue;
4917 [ # # ]: 0 : if (hub_is_superspeed(udev))
4918 : : unit_load = 150;
4919 : : else
4920 : 0 : unit_load = 100;
4921 : :
4922 : : /*
4923 : : * Unconfigured devices may not use more than one unit load,
4924 : : * or 8mA for OTG ports
4925 : : */
4926 [ # # ]: 0 : if (udev->actconfig)
4927 [ # # ]: 0 : delta = usb_get_max_power(udev, udev->actconfig);
4928 [ # # # # ]: 0 : else if (port1 != udev->bus->otg_port || hdev->parent)
4929 : 0 : delta = unit_load;
4930 : : else
4931 : : delta = 8;
4932 [ # # ]: 0 : if (delta > hub->mA_per_port)
4933 : 0 : dev_warn(&port_dev->dev, "%dmA is over %umA budget!\n",
4934 : : delta, hub->mA_per_port);
4935 : 0 : remaining -= delta;
4936 : : }
4937 [ # # ]: 0 : if (remaining < 0) {
4938 : 0 : dev_warn(hub->intfdev, "%dmA over power budget!\n",
4939 : : -remaining);
4940 : 0 : remaining = 0;
4941 : : }
4942 : 0 : return remaining;
4943 : : }
4944 : :
4945 : :
4946 : 0 : static int descriptors_changed(struct usb_device *udev,
4947 : : struct usb_device_descriptor *old_device_descriptor,
4948 : : struct usb_host_bos *old_bos)
4949 : : {
4950 : 0 : int changed = 0;
4951 : 0 : unsigned index;
4952 : 0 : unsigned serial_len = 0;
4953 : 0 : unsigned len;
4954 : 0 : unsigned old_length;
4955 : 0 : int length;
4956 : 0 : char *buf;
4957 : :
4958 [ # # ]: 0 : if (memcmp(&udev->descriptor, old_device_descriptor,
4959 : : sizeof(*old_device_descriptor)) != 0)
4960 : : return 1;
4961 : :
4962 [ # # # # : 0 : if ((old_bos && !udev->bos) || (!old_bos && udev->bos))
# # # # ]
4963 : : return 1;
4964 [ # # ]: 0 : if (udev->bos) {
4965 : 0 : len = le16_to_cpu(udev->bos->desc->wTotalLength);
4966 [ # # ]: 0 : if (len != le16_to_cpu(old_bos->desc->wTotalLength))
4967 : : return 1;
4968 [ # # ]: 0 : if (memcmp(udev->bos->desc, old_bos->desc, len))
4969 : : return 1;
4970 : : }
4971 : :
4972 : : /* Since the idVendor, idProduct, and bcdDevice values in the
4973 : : * device descriptor haven't changed, we will assume the
4974 : : * Manufacturer and Product strings haven't changed either.
4975 : : * But the SerialNumber string could be different (e.g., a
4976 : : * different flash card of the same brand).
4977 : : */
4978 [ # # ]: 0 : if (udev->serial)
4979 : 0 : serial_len = strlen(udev->serial) + 1;
4980 : :
4981 : 0 : len = serial_len;
4982 [ # # ]: 0 : for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
4983 : 0 : old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
4984 : 0 : len = max(len, old_length);
4985 : : }
4986 : :
4987 [ # # ]: 0 : buf = kmalloc(len, GFP_NOIO);
4988 [ # # ]: 0 : if (!buf)
4989 : : /* assume the worst */
4990 : : return 1;
4991 : :
4992 [ # # ]: 0 : for (index = 0; index < udev->descriptor.bNumConfigurations; index++) {
4993 : 0 : old_length = le16_to_cpu(udev->config[index].desc.wTotalLength);
4994 : 0 : length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf,
4995 : : old_length);
4996 [ # # ]: 0 : if (length != old_length) {
4997 : : dev_dbg(&udev->dev, "config index %d, error %d\n",
4998 : : index, length);
4999 : : changed = 1;
5000 : : break;
5001 : : }
5002 [ # # ]: 0 : if (memcmp(buf, udev->rawdescriptors[index], old_length)
5003 : : != 0) {
5004 : : dev_dbg(&udev->dev, "config index %d changed (#%d)\n",
5005 : : index,
5006 : : ((struct usb_config_descriptor *) buf)->
5007 : : bConfigurationValue);
5008 : : changed = 1;
5009 : : break;
5010 : : }
5011 : : }
5012 : :
5013 [ # # ]: 0 : if (!changed && serial_len) {
5014 : 0 : length = usb_string(udev, udev->descriptor.iSerialNumber,
5015 : : buf, serial_len);
5016 [ # # ]: 0 : if (length + 1 != serial_len) {
5017 : : dev_dbg(&udev->dev, "serial string error %d\n",
5018 : : length);
5019 : : changed = 1;
5020 [ # # ]: 0 : } else if (memcmp(buf, udev->serial, length) != 0) {
5021 : 0 : dev_dbg(&udev->dev, "serial string changed\n");
5022 : 0 : changed = 1;
5023 : : }
5024 : : }
5025 : :
5026 : 0 : kfree(buf);
5027 : 0 : return changed;
5028 : : }
5029 : :
5030 : 0 : static void hub_port_connect(struct usb_hub *hub, int port1, u16 portstatus,
5031 : : u16 portchange)
5032 : : {
5033 : 0 : int status = -ENODEV;
5034 : 0 : int i;
5035 : 0 : unsigned unit_load;
5036 : 0 : struct usb_device *hdev = hub->hdev;
5037 [ # # ]: 0 : struct usb_hcd *hcd = bus_to_hcd(hdev->bus);
5038 : 0 : struct usb_port *port_dev = hub->ports[port1 - 1];
5039 : 0 : struct usb_device *udev = port_dev->child;
5040 : 0 : static int unreliable_port = -1;
5041 : :
5042 : : /* Disconnect any existing devices under this port */
5043 [ # # ]: 0 : if (udev) {
5044 [ # # # # ]: 0 : if (hcd->usb_phy && !hdev->parent)
5045 [ # # ]: 0 : usb_phy_notify_disconnect(hcd->usb_phy, udev->speed);
5046 : 0 : usb_disconnect(&port_dev->child);
5047 : : }
5048 : :
5049 : : /* We can forget about a "removed" device when there's a physical
5050 : : * disconnect or the connect status changes.
5051 : : */
5052 [ # # # # ]: 0 : if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
5053 : : (portchange & USB_PORT_STAT_C_CONNECTION))
5054 : 0 : clear_bit(port1, hub->removed_bits);
5055 : :
5056 [ # # ]: 0 : if (portchange & (USB_PORT_STAT_C_CONNECTION |
5057 : : USB_PORT_STAT_C_ENABLE)) {
5058 : 0 : status = hub_port_debounce_be_stable(hub, port1);
5059 [ # # ]: 0 : if (status < 0) {
5060 [ # # ]: 0 : if (status != -ENODEV &&
5061 [ # # # # ]: 0 : port1 != unreliable_port &&
5062 : 0 : printk_ratelimit())
5063 : 0 : dev_err(&port_dev->dev, "connect-debounce failed\n");
5064 : 0 : portstatus &= ~USB_PORT_STAT_CONNECTION;
5065 : 0 : unreliable_port = port1;
5066 : : } else {
5067 : 0 : portstatus = status;
5068 : : }
5069 : : }
5070 : :
5071 : : /* Return now if debouncing failed or nothing is connected or
5072 : : * the device was "removed".
5073 : : */
5074 [ # # # # ]: 0 : if (!(portstatus & USB_PORT_STAT_CONNECTION) ||
5075 : 0 : test_bit(port1, hub->removed_bits)) {
5076 : :
5077 : : /*
5078 : : * maybe switch power back on (e.g. root hub was reset)
5079 : : * but only if the port isn't owned by someone else.
5080 : : */
5081 [ # # # # ]: 0 : if (hub_is_port_power_switchable(hub)
5082 [ # # ]: 0 : && !port_is_power_on(hub, portstatus)
5083 [ # # ]: 0 : && !port_dev->port_owner)
5084 : 0 : set_port_feature(hdev, port1, USB_PORT_FEAT_POWER);
5085 : :
5086 [ # # ]: 0 : if (portstatus & USB_PORT_STAT_ENABLE)
5087 : 0 : goto done;
5088 : : return;
5089 : : }
5090 [ # # ]: 0 : if (hub_is_superspeed(hub->hdev))
5091 : : unit_load = 150;
5092 : : else
5093 : 0 : unit_load = 100;
5094 : :
5095 : 0 : status = 0;
5096 [ # # ]: 0 : for (i = 0; i < SET_CONFIG_TRIES; i++) {
5097 : :
5098 : : /* reallocate for each attempt, since references
5099 : : * to the previous one can escape in various ways
5100 : : */
5101 : 0 : udev = usb_alloc_dev(hdev, hdev->bus, port1);
5102 [ # # ]: 0 : if (!udev) {
5103 : 0 : dev_err(&port_dev->dev,
5104 : : "couldn't allocate usb_device\n");
5105 : 0 : goto done;
5106 : : }
5107 : :
5108 : 0 : usb_set_device_state(udev, USB_STATE_POWERED);
5109 : 0 : udev->bus_mA = hub->mA_per_port;
5110 : 0 : udev->level = hdev->level + 1;
5111 [ # # ]: 0 : udev->wusb = hub_is_wusb(hub);
5112 : :
5113 : : /* Devices connected to SuperSpeed hubs are USB 3.0 or later */
5114 [ # # ]: 0 : if (hub_is_superspeed(hub->hdev))
5115 : 0 : udev->speed = USB_SPEED_SUPER;
5116 : : else
5117 : 0 : udev->speed = USB_SPEED_UNKNOWN;
5118 : :
5119 : 0 : choose_devnum(udev);
5120 [ # # ]: 0 : if (udev->devnum <= 0) {
5121 : 0 : status = -ENOTCONN; /* Don't retry */
5122 : 0 : goto loop;
5123 : : }
5124 : :
5125 : : /* reset (non-USB 3.0 devices) and get descriptor */
5126 : 0 : usb_lock_port(port_dev);
5127 : 0 : status = hub_port_init(hub, udev, port1, i);
5128 : 0 : usb_unlock_port(port_dev);
5129 [ # # ]: 0 : if (status < 0)
5130 : 0 : goto loop;
5131 : :
5132 [ # # ]: 0 : if (udev->quirks & USB_QUIRK_DELAY_INIT)
5133 : 0 : msleep(2000);
5134 : :
5135 : : /* consecutive bus-powered hubs aren't reliable; they can
5136 : : * violate the voltage drop budget. if the new child has
5137 : : * a "powered" LED, users should notice we didn't enable it
5138 : : * (without reading syslog), even without per-port LEDs
5139 : : * on the parent.
5140 : : */
5141 [ # # ]: 0 : if (udev->descriptor.bDeviceClass == USB_CLASS_HUB
5142 [ # # ]: 0 : && udev->bus_mA <= unit_load) {
5143 : 0 : u16 devstat;
5144 : :
5145 : 0 : status = usb_get_std_status(udev, USB_RECIP_DEVICE, 0,
5146 : : &devstat);
5147 [ # # ]: 0 : if (status) {
5148 : 0 : dev_dbg(&udev->dev, "get status %d ?\n", status);
5149 : 0 : goto loop_disable;
5150 : : }
5151 [ # # ]: 0 : if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) {
5152 : 0 : dev_err(&udev->dev,
5153 : : "can't connect bus-powered hub "
5154 : : "to this port\n");
5155 [ # # ]: 0 : if (hub->has_indicators) {
5156 : 0 : hub->indicator[port1-1] =
5157 : : INDICATOR_AMBER_BLINK;
5158 : 0 : queue_delayed_work(
5159 : : system_power_efficient_wq,
5160 : : &hub->leds, 0);
5161 : : }
5162 : 0 : status = -ENOTCONN; /* Don't retry */
5163 : 0 : goto loop_disable;
5164 : : }
5165 : : }
5166 : :
5167 : : /* check for devices running slower than they could */
5168 [ # # ]: 0 : if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200
5169 [ # # ]: 0 : && udev->speed == USB_SPEED_FULL
5170 [ # # ]: 0 : && highspeed_hubs != 0)
5171 : 0 : check_highspeed(hub, udev, port1);
5172 : :
5173 : : /* Store the parent's children[] pointer. At this point
5174 : : * udev becomes globally accessible, although presumably
5175 : : * no one will look at it until hdev is unlocked.
5176 : : */
5177 : 0 : status = 0;
5178 : :
5179 : 0 : mutex_lock(&usb_port_peer_mutex);
5180 : :
5181 : : /* We mustn't add new devices if the parent hub has
5182 : : * been disconnected; we would race with the
5183 : : * recursively_mark_NOTATTACHED() routine.
5184 : : */
5185 : 0 : spin_lock_irq(&device_state_lock);
5186 [ # # ]: 0 : if (hdev->state == USB_STATE_NOTATTACHED)
5187 : : status = -ENOTCONN;
5188 : : else
5189 : 0 : port_dev->child = udev;
5190 : 0 : spin_unlock_irq(&device_state_lock);
5191 : 0 : mutex_unlock(&usb_port_peer_mutex);
5192 : :
5193 : : /* Run it through the hoops (find a driver, etc) */
5194 [ # # ]: 0 : if (!status) {
5195 : 0 : status = usb_new_device(udev);
5196 [ # # ]: 0 : if (status) {
5197 : 0 : mutex_lock(&usb_port_peer_mutex);
5198 : 0 : spin_lock_irq(&device_state_lock);
5199 : 0 : port_dev->child = NULL;
5200 : 0 : spin_unlock_irq(&device_state_lock);
5201 : 0 : mutex_unlock(&usb_port_peer_mutex);
5202 : : } else {
5203 [ # # # # ]: 0 : if (hcd->usb_phy && !hdev->parent)
5204 [ # # ]: 0 : usb_phy_notify_connect(hcd->usb_phy,
5205 : : udev->speed);
5206 : : }
5207 : : }
5208 : :
5209 [ # # ]: 0 : if (status)
5210 : 0 : goto loop_disable;
5211 : :
5212 : 0 : status = hub_power_remaining(hub);
5213 : 0 : if (status)
5214 : : dev_dbg(hub->intfdev, "%dmA power budget left\n", status);
5215 : :
5216 : : return;
5217 : :
5218 : 0 : loop_disable:
5219 : 0 : hub_port_disable(hub, port1, 1);
5220 : 0 : loop:
5221 : 0 : usb_ep0_reinit(udev);
5222 [ # # ]: 0 : release_devnum(udev);
5223 [ # # ]: 0 : hub_free_dev(udev);
5224 : 0 : usb_put_dev(udev);
5225 [ # # ]: 0 : if ((status == -ENOTCONN) || (status == -ENOTSUPP))
5226 : : break;
5227 : :
5228 : : /* When halfway through our retry count, power-cycle the port */
5229 [ # # ]: 0 : if (i == (SET_CONFIG_TRIES / 2) - 1) {
5230 : 0 : dev_info(&port_dev->dev, "attempt power cycle\n");
5231 : 0 : usb_hub_set_port_power(hdev, hub, port1, false);
5232 : 0 : msleep(2 * hub_power_on_good_delay(hub));
5233 : 0 : usb_hub_set_port_power(hdev, hub, port1, true);
5234 : 0 : msleep(hub_power_on_good_delay(hub));
5235 : : }
5236 : : }
5237 [ # # ]: 0 : if (hub->hdev->parent ||
5238 [ # # # # ]: 0 : !hcd->driver->port_handed_over ||
5239 : 0 : !(hcd->driver->port_handed_over)(hcd, port1)) {
5240 [ # # ]: 0 : if (status != -ENOTCONN && status != -ENODEV)
5241 : 0 : dev_err(&port_dev->dev,
5242 : : "unable to enumerate USB device\n");
5243 : : }
5244 : :
5245 : 0 : done:
5246 : 0 : hub_port_disable(hub, port1, 1);
5247 [ # # # # ]: 0 : if (hcd->driver->relinquish_port && !hub->hdev->parent) {
5248 [ # # ]: 0 : if (status != -ENOTCONN && status != -ENODEV)
5249 : 0 : hcd->driver->relinquish_port(hcd, port1);
5250 : : }
5251 : : }
5252 : :
5253 : : /* Handle physical or logical connection change events.
5254 : : * This routine is called when:
5255 : : * a port connection-change occurs;
5256 : : * a port enable-change occurs (often caused by EMI);
5257 : : * usb_reset_and_verify_device() encounters changed descriptors (as from
5258 : : * a firmware download)
5259 : : * caller already locked the hub
5260 : : */
5261 : 0 : static void hub_port_connect_change(struct usb_hub *hub, int port1,
5262 : : u16 portstatus, u16 portchange)
5263 : : __must_hold(&port_dev->status_lock)
5264 : : {
5265 : 0 : struct usb_port *port_dev = hub->ports[port1 - 1];
5266 : 0 : struct usb_device *udev = port_dev->child;
5267 : 0 : struct usb_device_descriptor descriptor;
5268 : 0 : int status = -ENODEV;
5269 : 0 : int retval;
5270 : :
5271 : 0 : dev_dbg(&port_dev->dev, "status %04x, change %04x, %s\n", portstatus,
5272 : : portchange, portspeed(hub, portstatus));
5273 : :
5274 [ # # ]: 0 : if (hub->has_indicators) {
5275 : 0 : set_port_led(hub, port1, HUB_LED_AUTO);
5276 : 0 : hub->indicator[port1-1] = INDICATOR_AUTO;
5277 : : }
5278 : :
5279 : : #ifdef CONFIG_USB_OTG
5280 : : /* during HNP, don't repeat the debounce */
5281 : : if (hub->hdev->bus->is_b_host)
5282 : : portchange &= ~(USB_PORT_STAT_C_CONNECTION |
5283 : : USB_PORT_STAT_C_ENABLE);
5284 : : #endif
5285 : :
5286 : : /* Try to resuscitate an existing device */
5287 [ # # # # ]: 0 : if ((portstatus & USB_PORT_STAT_CONNECTION) && udev &&
5288 [ # # ]: 0 : udev->state != USB_STATE_NOTATTACHED) {
5289 [ # # ]: 0 : if (portstatus & USB_PORT_STAT_ENABLE) {
5290 : : /*
5291 : : * USB-3 connections are initialized automatically by
5292 : : * the hostcontroller hardware. Therefore check for
5293 : : * changed device descriptors before resuscitating the
5294 : : * device.
5295 : : */
5296 : 0 : descriptor = udev->descriptor;
5297 : 0 : retval = usb_get_device_descriptor(udev,
5298 : : sizeof(udev->descriptor));
5299 [ # # ]: 0 : if (retval < 0) {
5300 : : dev_dbg(&udev->dev,
5301 : : "can't read device descriptor %d\n",
5302 : : retval);
5303 : : } else {
5304 [ # # ]: 0 : if (descriptors_changed(udev, &descriptor,
5305 : : udev->bos)) {
5306 : 0 : dev_dbg(&udev->dev,
5307 : : "device descriptor has changed\n");
5308 : : /* for disconnect() calls */
5309 : 0 : udev->descriptor = descriptor;
5310 : : } else {
5311 : : status = 0; /* Nothing to do */
5312 : : }
5313 : : }
5314 : : #ifdef CONFIG_PM
5315 [ # # # # ]: 0 : } else if (udev->state == USB_STATE_SUSPENDED &&
5316 : : udev->persist_enabled) {
5317 : : /* For a suspended device, treat this as a
5318 : : * remote wakeup event.
5319 : : */
5320 : 0 : usb_unlock_port(port_dev);
5321 : 0 : status = usb_remote_wakeup(udev);
5322 : 0 : usb_lock_port(port_dev);
5323 : : #endif
5324 : : } else {
5325 : 0 : /* Don't resuscitate */;
5326 : : }
5327 : : }
5328 : 0 : clear_bit(port1, hub->change_bits);
5329 : :
5330 : : /* successfully revalidated the connection */
5331 [ # # ]: 0 : if (status == 0)
5332 : 0 : return;
5333 : :
5334 : 0 : usb_unlock_port(port_dev);
5335 : 0 : hub_port_connect(hub, port1, portstatus, portchange);
5336 : 0 : usb_lock_port(port_dev);
5337 : : }
5338 : :
5339 : : /* Handle notifying userspace about hub over-current events */
5340 : 0 : static void port_over_current_notify(struct usb_port *port_dev)
5341 : : {
5342 : 0 : char *envp[3];
5343 : 0 : struct device *hub_dev;
5344 : 0 : char *port_dev_path;
5345 : :
5346 : 0 : sysfs_notify(&port_dev->dev.kobj, NULL, "over_current_count");
5347 : :
5348 : 0 : hub_dev = port_dev->dev.parent;
5349 : :
5350 [ # # ]: 0 : if (!hub_dev)
5351 : 0 : return;
5352 : :
5353 : 0 : port_dev_path = kobject_get_path(&port_dev->dev.kobj, GFP_KERNEL);
5354 [ # # ]: 0 : if (!port_dev_path)
5355 : : return;
5356 : :
5357 : 0 : envp[0] = kasprintf(GFP_KERNEL, "OVER_CURRENT_PORT=%s", port_dev_path);
5358 [ # # ]: 0 : if (!envp[0])
5359 : 0 : goto exit_path;
5360 : :
5361 : 0 : envp[1] = kasprintf(GFP_KERNEL, "OVER_CURRENT_COUNT=%u",
5362 : : port_dev->over_current_count);
5363 [ # # ]: 0 : if (!envp[1])
5364 : 0 : goto exit;
5365 : :
5366 : 0 : envp[2] = NULL;
5367 : 0 : kobject_uevent_env(&hub_dev->kobj, KOBJ_CHANGE, envp);
5368 : :
5369 : 0 : kfree(envp[1]);
5370 : 0 : exit:
5371 : 0 : kfree(envp[0]);
5372 : 0 : exit_path:
5373 : 0 : kfree(port_dev_path);
5374 : : }
5375 : :
5376 : 0 : static void port_event(struct usb_hub *hub, int port1)
5377 : : __must_hold(&port_dev->status_lock)
5378 : : {
5379 : 0 : int connect_change;
5380 : 0 : struct usb_port *port_dev = hub->ports[port1 - 1];
5381 : 0 : struct usb_device *udev = port_dev->child;
5382 : 0 : struct usb_device *hdev = hub->hdev;
5383 : 0 : u16 portstatus, portchange;
5384 : :
5385 : 0 : connect_change = test_bit(port1, hub->change_bits);
5386 : 0 : clear_bit(port1, hub->event_bits);
5387 : 0 : clear_bit(port1, hub->wakeup_bits);
5388 : :
5389 [ # # ]: 0 : if (hub_port_status(hub, port1, &portstatus, &portchange) < 0)
5390 : 0 : return;
5391 : :
5392 [ # # ]: 0 : if (portchange & USB_PORT_STAT_C_CONNECTION) {
5393 : 0 : usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_CONNECTION);
5394 : 0 : connect_change = 1;
5395 : : }
5396 : :
5397 [ # # ]: 0 : if (portchange & USB_PORT_STAT_C_ENABLE) {
5398 : 0 : if (!connect_change)
5399 : : dev_dbg(&port_dev->dev, "enable change, status %08x\n",
5400 : : portstatus);
5401 : 0 : usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_ENABLE);
5402 : :
5403 : : /*
5404 : : * EM interference sometimes causes badly shielded USB devices
5405 : : * to be shutdown by the hub, this hack enables them again.
5406 : : * Works at least with mouse driver.
5407 : : */
5408 : 0 : if (!(portstatus & USB_PORT_STAT_ENABLE)
5409 [ # # # # ]: 0 : && !connect_change && udev) {
5410 : 0 : dev_err(&port_dev->dev, "disabled by hub (EMI?), re-enabling...\n");
5411 : 0 : connect_change = 1;
5412 : : }
5413 : : }
5414 : :
5415 [ # # ]: 0 : if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
5416 : 0 : u16 status = 0, unused;
5417 : 0 : port_dev->over_current_count++;
5418 : 0 : port_over_current_notify(port_dev);
5419 : :
5420 : 0 : dev_dbg(&port_dev->dev, "over-current change #%u\n",
5421 : : port_dev->over_current_count);
5422 : 0 : usb_clear_port_feature(hdev, port1,
5423 : : USB_PORT_FEAT_C_OVER_CURRENT);
5424 : 0 : msleep(100); /* Cool down */
5425 : 0 : hub_power_on(hub, true);
5426 : 0 : hub_port_status(hub, port1, &status, &unused);
5427 [ # # ]: 0 : if (status & USB_PORT_STAT_OVERCURRENT)
5428 : 0 : dev_err(&port_dev->dev, "over-current condition\n");
5429 : : }
5430 : :
5431 [ # # ]: 0 : if (portchange & USB_PORT_STAT_C_RESET) {
5432 : 0 : dev_dbg(&port_dev->dev, "reset change\n");
5433 : 0 : usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_C_RESET);
5434 : : }
5435 [ # # ]: 0 : if ((portchange & USB_PORT_STAT_C_BH_RESET)
5436 [ # # ]: 0 : && hub_is_superspeed(hdev)) {
5437 : 0 : dev_dbg(&port_dev->dev, "warm reset change\n");
5438 : 0 : usb_clear_port_feature(hdev, port1,
5439 : : USB_PORT_FEAT_C_BH_PORT_RESET);
5440 : : }
5441 [ # # ]: 0 : if (portchange & USB_PORT_STAT_C_LINK_STATE) {
5442 : 0 : dev_dbg(&port_dev->dev, "link state change\n");
5443 : 0 : usb_clear_port_feature(hdev, port1,
5444 : : USB_PORT_FEAT_C_PORT_LINK_STATE);
5445 : : }
5446 [ # # ]: 0 : if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) {
5447 : 0 : dev_warn(&port_dev->dev, "config error\n");
5448 : 0 : usb_clear_port_feature(hdev, port1,
5449 : : USB_PORT_FEAT_C_PORT_CONFIG_ERROR);
5450 : : }
5451 : :
5452 : : /* skip port actions that require the port to be powered on */
5453 [ # # # # ]: 0 : if (!pm_runtime_active(&port_dev->dev))
5454 : : return;
5455 : :
5456 [ # # ]: 0 : if (hub_handle_remote_wakeup(hub, port1, portstatus, portchange))
5457 : 0 : connect_change = 1;
5458 : :
5459 : : /*
5460 : : * Warm reset a USB3 protocol port if it's in
5461 : : * SS.Inactive state.
5462 : : */
5463 [ # # ]: 0 : if (hub_port_warm_reset_required(hub, port1, portstatus)) {
5464 : 0 : dev_dbg(&port_dev->dev, "do warm reset\n");
5465 [ # # # # ]: 0 : if (!udev || !(portstatus & USB_PORT_STAT_CONNECTION)
5466 [ # # ]: 0 : || udev->state == USB_STATE_NOTATTACHED) {
5467 [ # # ]: 0 : if (hub_port_reset(hub, port1, NULL,
5468 : : HUB_BH_RESET_TIME, true) < 0)
5469 : 0 : hub_port_disable(hub, port1, 1);
5470 : : } else {
5471 : 0 : usb_unlock_port(port_dev);
5472 : 0 : usb_lock_device(udev);
5473 : 0 : usb_reset_device(udev);
5474 : 0 : usb_unlock_device(udev);
5475 : 0 : usb_lock_port(port_dev);
5476 : 0 : connect_change = 0;
5477 : : }
5478 : : }
5479 : :
5480 [ # # ]: 0 : if (connect_change)
5481 : 0 : hub_port_connect_change(hub, port1, portstatus, portchange);
5482 : : }
5483 : :
5484 : 0 : static void hub_event(struct work_struct *work)
5485 : : {
5486 : 0 : struct usb_device *hdev;
5487 : 0 : struct usb_interface *intf;
5488 : 0 : struct usb_hub *hub;
5489 : 0 : struct device *hub_dev;
5490 : 0 : u16 hubstatus;
5491 : 0 : u16 hubchange;
5492 : 0 : int i, ret;
5493 : :
5494 : 0 : hub = container_of(work, struct usb_hub, events);
5495 : 0 : hdev = hub->hdev;
5496 : 0 : hub_dev = hub->intfdev;
5497 : 0 : intf = to_usb_interface(hub_dev);
5498 : :
5499 [ # # ]: 0 : kcov_remote_start_usb((u64)hdev->bus->busnum);
5500 : :
5501 : 0 : dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n",
5502 : : hdev->state, hdev->maxchild,
5503 : : /* NOTE: expects max 15 ports... */
5504 : : (u16) hub->change_bits[0],
5505 : : (u16) hub->event_bits[0]);
5506 : :
5507 : : /* Lock the device, then check to see if we were
5508 : : * disconnected while waiting for the lock to succeed. */
5509 : 0 : usb_lock_device(hdev);
5510 [ # # ]: 0 : if (unlikely(hub->disconnected))
5511 : 0 : goto out_hdev_lock;
5512 : :
5513 : : /* If the hub has died, clean up after it */
5514 [ # # ]: 0 : if (hdev->state == USB_STATE_NOTATTACHED) {
5515 : 0 : hub->error = -ENODEV;
5516 : 0 : hub_quiesce(hub, HUB_DISCONNECT);
5517 : 0 : goto out_hdev_lock;
5518 : : }
5519 : :
5520 : : /* Autoresume */
5521 : 0 : ret = usb_autopm_get_interface(intf);
5522 [ # # ]: 0 : if (ret) {
5523 : 0 : dev_dbg(hub_dev, "Can't autoresume: %d\n", ret);
5524 : 0 : goto out_hdev_lock;
5525 : : }
5526 : :
5527 : : /* If this is an inactive hub, do nothing */
5528 [ # # ]: 0 : if (hub->quiescing)
5529 : 0 : goto out_autopm;
5530 : :
5531 [ # # ]: 0 : if (hub->error) {
5532 : 0 : dev_dbg(hub_dev, "resetting for error %d\n", hub->error);
5533 : :
5534 : 0 : ret = usb_reset_device(hdev);
5535 [ # # ]: 0 : if (ret) {
5536 : 0 : dev_dbg(hub_dev, "error resetting hub: %d\n", ret);
5537 : 0 : goto out_autopm;
5538 : : }
5539 : :
5540 : 0 : hub->nerrors = 0;
5541 : 0 : hub->error = 0;
5542 : : }
5543 : :
5544 : : /* deal with port status changes */
5545 [ # # ]: 0 : for (i = 1; i <= hdev->maxchild; i++) {
5546 : 0 : struct usb_port *port_dev = hub->ports[i - 1];
5547 : :
5548 [ # # ]: 0 : if (test_bit(i, hub->event_bits)
5549 [ # # ]: 0 : || test_bit(i, hub->change_bits)
5550 [ # # ]: 0 : || test_bit(i, hub->wakeup_bits)) {
5551 : : /*
5552 : : * The get_noresume and barrier ensure that if
5553 : : * the port was in the process of resuming, we
5554 : : * flush that work and keep the port active for
5555 : : * the duration of the port_event(). However,
5556 : : * if the port is runtime pm suspended
5557 : : * (powered-off), we leave it in that state, run
5558 : : * an abbreviated port_event(), and move on.
5559 : : */
5560 : 0 : pm_runtime_get_noresume(&port_dev->dev);
5561 : 0 : pm_runtime_barrier(&port_dev->dev);
5562 : 0 : usb_lock_port(port_dev);
5563 : 0 : port_event(hub, i);
5564 : 0 : usb_unlock_port(port_dev);
5565 : 0 : pm_runtime_put_sync(&port_dev->dev);
5566 : : }
5567 : : }
5568 : :
5569 : : /* deal with hub status changes */
5570 [ # # ]: 0 : if (test_and_clear_bit(0, hub->event_bits) == 0)
5571 : : ; /* do nothing */
5572 [ # # ]: 0 : else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0)
5573 : 0 : dev_err(hub_dev, "get_hub_status failed\n");
5574 : : else {
5575 [ # # ]: 0 : if (hubchange & HUB_CHANGE_LOCAL_POWER) {
5576 : 0 : dev_dbg(hub_dev, "power change\n");
5577 : 0 : clear_hub_feature(hdev, C_HUB_LOCAL_POWER);
5578 [ # # ]: 0 : if (hubstatus & HUB_STATUS_LOCAL_POWER)
5579 : : /* FIXME: Is this always true? */
5580 : 0 : hub->limited_power = 1;
5581 : : else
5582 : 0 : hub->limited_power = 0;
5583 : : }
5584 [ # # ]: 0 : if (hubchange & HUB_CHANGE_OVERCURRENT) {
5585 : 0 : u16 status = 0;
5586 : 0 : u16 unused;
5587 : :
5588 : 0 : dev_dbg(hub_dev, "over-current change\n");
5589 : 0 : clear_hub_feature(hdev, C_HUB_OVER_CURRENT);
5590 : 0 : msleep(500); /* Cool down */
5591 : 0 : hub_power_on(hub, true);
5592 : 0 : hub_hub_status(hub, &status, &unused);
5593 [ # # ]: 0 : if (status & HUB_STATUS_OVERCURRENT)
5594 : 0 : dev_err(hub_dev, "over-current condition\n");
5595 : : }
5596 : : }
5597 : :
5598 : 0 : out_autopm:
5599 : : /* Balance the usb_autopm_get_interface() above */
5600 : 0 : usb_autopm_put_interface_no_suspend(intf);
5601 : 0 : out_hdev_lock:
5602 : 0 : usb_unlock_device(hdev);
5603 : :
5604 : : /* Balance the stuff in kick_hub_wq() and allow autosuspend */
5605 : 0 : usb_autopm_put_interface(intf);
5606 : 0 : kref_put(&hub->kref, hub_release);
5607 : :
5608 : 0 : kcov_remote_stop();
5609 : 0 : }
5610 : :
5611 : : static const struct usb_device_id hub_id_table[] = {
5612 : : { .match_flags = USB_DEVICE_ID_MATCH_VENDOR | USB_DEVICE_ID_MATCH_INT_CLASS,
5613 : : .idVendor = USB_VENDOR_SMSC,
5614 : : .bInterfaceClass = USB_CLASS_HUB,
5615 : : .driver_info = HUB_QUIRK_DISABLE_AUTOSUSPEND},
5616 : : { .match_flags = USB_DEVICE_ID_MATCH_VENDOR
5617 : : | USB_DEVICE_ID_MATCH_INT_CLASS,
5618 : : .idVendor = USB_VENDOR_GENESYS_LOGIC,
5619 : : .bInterfaceClass = USB_CLASS_HUB,
5620 : : .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND},
5621 : : { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS,
5622 : : .bDeviceClass = USB_CLASS_HUB},
5623 : : { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS,
5624 : : .bInterfaceClass = USB_CLASS_HUB},
5625 : : { } /* Terminating entry */
5626 : : };
5627 : :
5628 : : MODULE_DEVICE_TABLE(usb, hub_id_table);
5629 : :
5630 : : static struct usb_driver hub_driver = {
5631 : : .name = "hub",
5632 : : .probe = hub_probe,
5633 : : .disconnect = hub_disconnect,
5634 : : .suspend = hub_suspend,
5635 : : .resume = hub_resume,
5636 : : .reset_resume = hub_reset_resume,
5637 : : .pre_reset = hub_pre_reset,
5638 : : .post_reset = hub_post_reset,
5639 : : .unlocked_ioctl = hub_ioctl,
5640 : : .id_table = hub_id_table,
5641 : : .supports_autosuspend = 1,
5642 : : };
5643 : :
5644 : 3 : int usb_hub_init(void)
5645 : : {
5646 [ - + ]: 3 : if (usb_register(&hub_driver) < 0) {
5647 : 0 : printk(KERN_ERR "%s: can't register hub driver\n",
5648 : : usbcore_name);
5649 : 0 : return -1;
5650 : : }
5651 : :
5652 : : /*
5653 : : * The workqueue needs to be freezable to avoid interfering with
5654 : : * USB-PERSIST port handover. Otherwise it might see that a full-speed
5655 : : * device was gone before the EHCI controller had handed its port
5656 : : * over to the companion full-speed controller.
5657 : : */
5658 : 3 : hub_wq = alloc_workqueue("usb_hub_wq", WQ_FREEZABLE, 0);
5659 [ - + ]: 3 : if (hub_wq)
5660 : : return 0;
5661 : :
5662 : : /* Fall through if kernel_thread failed */
5663 : 0 : usb_deregister(&hub_driver);
5664 : 0 : pr_err("%s: can't allocate workqueue for usb hub\n", usbcore_name);
5665 : :
5666 : 0 : return -1;
5667 : : }
5668 : :
5669 : 0 : void usb_hub_cleanup(void)
5670 : : {
5671 : 0 : destroy_workqueue(hub_wq);
5672 : :
5673 : : /*
5674 : : * Hub resources are freed for us by usb_deregister. It calls
5675 : : * usb_driver_purge on every device which in turn calls that
5676 : : * devices disconnect function if it is using this driver.
5677 : : * The hub_disconnect function takes care of releasing the
5678 : : * individual hub resources. -greg
5679 : : */
5680 : 0 : usb_deregister(&hub_driver);
5681 : 0 : } /* usb_hub_cleanup() */
5682 : :
5683 : : /**
5684 : : * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device
5685 : : * @udev: device to reset (not in SUSPENDED or NOTATTACHED state)
5686 : : *
5687 : : * WARNING - don't use this routine to reset a composite device
5688 : : * (one with multiple interfaces owned by separate drivers)!
5689 : : * Use usb_reset_device() instead.
5690 : : *
5691 : : * Do a port reset, reassign the device's address, and establish its
5692 : : * former operating configuration. If the reset fails, or the device's
5693 : : * descriptors change from their values before the reset, or the original
5694 : : * configuration and altsettings cannot be restored, a flag will be set
5695 : : * telling hub_wq to pretend the device has been disconnected and then
5696 : : * re-connected. All drivers will be unbound, and the device will be
5697 : : * re-enumerated and probed all over again.
5698 : : *
5699 : : * Return: 0 if the reset succeeded, -ENODEV if the device has been
5700 : : * flagged for logical disconnection, or some other negative error code
5701 : : * if the reset wasn't even attempted.
5702 : : *
5703 : : * Note:
5704 : : * The caller must own the device lock and the port lock, the latter is
5705 : : * taken by usb_reset_device(). For example, it's safe to use
5706 : : * usb_reset_device() from a driver probe() routine after downloading
5707 : : * new firmware. For calls that might not occur during probe(), drivers
5708 : : * should lock the device using usb_lock_device_for_reset().
5709 : : *
5710 : : * Locking exception: This routine may also be called from within an
5711 : : * autoresume handler. Such usage won't conflict with other tasks
5712 : : * holding the device lock because these tasks should always call
5713 : : * usb_autopm_resume_device(), thereby preventing any unwanted
5714 : : * autoresume. The autoresume handler is expected to have already
5715 : : * acquired the port lock before calling this routine.
5716 : : */
5717 : 0 : static int usb_reset_and_verify_device(struct usb_device *udev)
5718 : : {
5719 : 0 : struct usb_device *parent_hdev = udev->parent;
5720 : 0 : struct usb_hub *parent_hub;
5721 [ # # ]: 0 : struct usb_hcd *hcd = bus_to_hcd(udev->bus);
5722 : 0 : struct usb_device_descriptor descriptor = udev->descriptor;
5723 : 0 : struct usb_host_bos *bos;
5724 : 0 : int i, j, ret = 0;
5725 : 0 : int port1 = udev->portnum;
5726 : :
5727 [ # # ]: 0 : if (udev->state == USB_STATE_NOTATTACHED ||
5728 : : udev->state == USB_STATE_SUSPENDED) {
5729 : : dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5730 : : udev->state);
5731 : : return -EINVAL;
5732 : : }
5733 : :
5734 [ # # ]: 0 : if (!parent_hdev)
5735 : : return -EISDIR;
5736 : :
5737 [ # # ]: 0 : parent_hub = usb_hub_to_struct_hub(parent_hdev);
5738 : :
5739 : : /* Disable USB2 hardware LPM.
5740 : : * It will be re-enabled by the enumeration process.
5741 : : */
5742 : 0 : usb_disable_usb2_hardware_lpm(udev);
5743 : :
5744 : : /* Disable LPM while we reset the device and reinstall the alt settings.
5745 : : * Device-initiated LPM, and system exit latency settings are cleared
5746 : : * when the device is reset, so we have to set them up again.
5747 : : */
5748 : 0 : ret = usb_unlocked_disable_lpm(udev);
5749 [ # # ]: 0 : if (ret) {
5750 : 0 : dev_err(&udev->dev, "%s Failed to disable LPM\n", __func__);
5751 : 0 : goto re_enumerate_no_bos;
5752 : : }
5753 : :
5754 : 0 : bos = udev->bos;
5755 : 0 : udev->bos = NULL;
5756 : :
5757 [ # # ]: 0 : for (i = 0; i < SET_CONFIG_TRIES; ++i) {
5758 : :
5759 : : /* ep0 maxpacket size may change; let the HCD know about it.
5760 : : * Other endpoints will be handled by re-enumeration. */
5761 : 0 : usb_ep0_reinit(udev);
5762 : 0 : ret = hub_port_init(parent_hub, udev, port1, i);
5763 [ # # # # ]: 0 : if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV)
5764 : : break;
5765 : : }
5766 : :
5767 [ # # ]: 0 : if (ret < 0)
5768 : 0 : goto re_enumerate;
5769 : :
5770 : : /* Device might have changed firmware (DFU or similar) */
5771 [ # # ]: 0 : if (descriptors_changed(udev, &descriptor, bos)) {
5772 : 0 : dev_info(&udev->dev, "device firmware changed\n");
5773 : 0 : udev->descriptor = descriptor; /* for disconnect() calls */
5774 : 0 : goto re_enumerate;
5775 : : }
5776 : :
5777 : : /* Restore the device's previous configuration */
5778 [ # # ]: 0 : if (!udev->actconfig)
5779 : 0 : goto done;
5780 : :
5781 : 0 : mutex_lock(hcd->bandwidth_mutex);
5782 : 0 : ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL);
5783 [ # # ]: 0 : if (ret < 0) {
5784 : 0 : dev_warn(&udev->dev,
5785 : : "Busted HC? Not enough HCD resources for "
5786 : : "old configuration.\n");
5787 : 0 : mutex_unlock(hcd->bandwidth_mutex);
5788 : 0 : goto re_enumerate;
5789 : : }
5790 : 0 : ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
5791 : : USB_REQ_SET_CONFIGURATION, 0,
5792 : 0 : udev->actconfig->desc.bConfigurationValue, 0,
5793 : : NULL, 0, USB_CTRL_SET_TIMEOUT);
5794 [ # # ]: 0 : if (ret < 0) {
5795 : 0 : dev_err(&udev->dev,
5796 : : "can't restore configuration #%d (error=%d)\n",
5797 : : udev->actconfig->desc.bConfigurationValue, ret);
5798 : 0 : mutex_unlock(hcd->bandwidth_mutex);
5799 : 0 : goto re_enumerate;
5800 : : }
5801 : 0 : mutex_unlock(hcd->bandwidth_mutex);
5802 : 0 : usb_set_device_state(udev, USB_STATE_CONFIGURED);
5803 : :
5804 : : /* Put interfaces back into the same altsettings as before.
5805 : : * Don't bother to send the Set-Interface request for interfaces
5806 : : * that were already in altsetting 0; besides being unnecessary,
5807 : : * many devices can't handle it. Instead just reset the host-side
5808 : : * endpoint state.
5809 : : */
5810 [ # # ]: 0 : for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) {
5811 : 0 : struct usb_host_config *config = udev->actconfig;
5812 : 0 : struct usb_interface *intf = config->interface[i];
5813 : 0 : struct usb_interface_descriptor *desc;
5814 : :
5815 : 0 : desc = &intf->cur_altsetting->desc;
5816 [ # # ]: 0 : if (desc->bAlternateSetting == 0) {
5817 : 0 : usb_disable_interface(udev, intf, true);
5818 : 0 : usb_enable_interface(udev, intf, true);
5819 : 0 : ret = 0;
5820 : : } else {
5821 : : /* Let the bandwidth allocation function know that this
5822 : : * device has been reset, and it will have to use
5823 : : * alternate setting 0 as the current alternate setting.
5824 : : */
5825 : 0 : intf->resetting_device = 1;
5826 : 0 : ret = usb_set_interface(udev, desc->bInterfaceNumber,
5827 : 0 : desc->bAlternateSetting);
5828 : 0 : intf->resetting_device = 0;
5829 : : }
5830 [ # # ]: 0 : if (ret < 0) {
5831 : 0 : dev_err(&udev->dev, "failed to restore interface %d "
5832 : : "altsetting %d (error=%d)\n",
5833 : : desc->bInterfaceNumber,
5834 : : desc->bAlternateSetting,
5835 : : ret);
5836 : 0 : goto re_enumerate;
5837 : : }
5838 : : /* Resetting also frees any allocated streams */
5839 [ # # ]: 0 : for (j = 0; j < intf->cur_altsetting->desc.bNumEndpoints; j++)
5840 : 0 : intf->cur_altsetting->endpoint[j].streams = 0;
5841 : : }
5842 : :
5843 : 0 : done:
5844 : : /* Now that the alt settings are re-installed, enable LTM and LPM. */
5845 : 0 : usb_enable_usb2_hardware_lpm(udev);
5846 : 0 : usb_unlocked_enable_lpm(udev);
5847 : 0 : usb_enable_ltm(udev);
5848 : 0 : usb_release_bos_descriptor(udev);
5849 : 0 : udev->bos = bos;
5850 : 0 : return 0;
5851 : :
5852 : 0 : re_enumerate:
5853 : 0 : usb_release_bos_descriptor(udev);
5854 : 0 : udev->bos = bos;
5855 : 0 : re_enumerate_no_bos:
5856 : : /* LPM state doesn't matter when we're about to destroy the device. */
5857 : 0 : hub_port_logical_disconnect(parent_hub, port1);
5858 : 0 : return -ENODEV;
5859 : : }
5860 : :
5861 : : /**
5862 : : * usb_reset_device - warn interface drivers and perform a USB port reset
5863 : : * @udev: device to reset (not in NOTATTACHED state)
5864 : : *
5865 : : * Warns all drivers bound to registered interfaces (using their pre_reset
5866 : : * method), performs the port reset, and then lets the drivers know that
5867 : : * the reset is over (using their post_reset method).
5868 : : *
5869 : : * Return: The same as for usb_reset_and_verify_device().
5870 : : *
5871 : : * Note:
5872 : : * The caller must own the device lock. For example, it's safe to use
5873 : : * this from a driver probe() routine after downloading new firmware.
5874 : : * For calls that might not occur during probe(), drivers should lock
5875 : : * the device using usb_lock_device_for_reset().
5876 : : *
5877 : : * If an interface is currently being probed or disconnected, we assume
5878 : : * its driver knows how to handle resets. For all other interfaces,
5879 : : * if the driver doesn't have pre_reset and post_reset methods then
5880 : : * we attempt to unbind it and rebind afterward.
5881 : : */
5882 : 0 : int usb_reset_device(struct usb_device *udev)
5883 : : {
5884 : 0 : int ret;
5885 : 0 : int i;
5886 : 0 : unsigned int noio_flag;
5887 : 0 : struct usb_port *port_dev;
5888 : 0 : struct usb_host_config *config = udev->actconfig;
5889 [ # # ]: 0 : struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent);
5890 : :
5891 [ # # ]: 0 : if (udev->state == USB_STATE_NOTATTACHED) {
5892 : : dev_dbg(&udev->dev, "device reset not allowed in state %d\n",
5893 : : udev->state);
5894 : : return -EINVAL;
5895 : : }
5896 : :
5897 [ # # ]: 0 : if (!udev->parent) {
5898 : : /* this requires hcd-specific logic; see ohci_restart() */
5899 : : dev_dbg(&udev->dev, "%s for root hub!\n", __func__);
5900 : : return -EISDIR;
5901 : : }
5902 : :
5903 : 0 : port_dev = hub->ports[udev->portnum - 1];
5904 : :
5905 : : /*
5906 : : * Don't allocate memory with GFP_KERNEL in current
5907 : : * context to avoid possible deadlock if usb mass
5908 : : * storage interface or usbnet interface(iSCSI case)
5909 : : * is included in current configuration. The easist
5910 : : * approach is to do it for every device reset,
5911 : : * because the device 'memalloc_noio' flag may have
5912 : : * not been set before reseting the usb device.
5913 : : */
5914 : 0 : noio_flag = memalloc_noio_save();
5915 : :
5916 : : /* Prevent autosuspend during the reset */
5917 : 0 : usb_autoresume_device(udev);
5918 : :
5919 [ # # ]: 0 : if (config) {
5920 [ # # ]: 0 : for (i = 0; i < config->desc.bNumInterfaces; ++i) {
5921 : 0 : struct usb_interface *cintf = config->interface[i];
5922 : 0 : struct usb_driver *drv;
5923 : 0 : int unbind = 0;
5924 : :
5925 [ # # ]: 0 : if (cintf->dev.driver) {
5926 : 0 : drv = to_usb_driver(cintf->dev.driver);
5927 [ # # # # ]: 0 : if (drv->pre_reset && drv->post_reset)
5928 : 0 : unbind = (drv->pre_reset)(cintf);
5929 [ # # ]: 0 : else if (cintf->condition ==
5930 : : USB_INTERFACE_BOUND)
5931 : : unbind = 1;
5932 [ # # ]: 0 : if (unbind)
5933 : 0 : usb_forced_unbind_intf(cintf);
5934 : : }
5935 : : }
5936 : : }
5937 : :
5938 : 0 : usb_lock_port(port_dev);
5939 : 0 : ret = usb_reset_and_verify_device(udev);
5940 : 0 : usb_unlock_port(port_dev);
5941 : :
5942 [ # # ]: 0 : if (config) {
5943 [ # # ]: 0 : for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) {
5944 : 0 : struct usb_interface *cintf = config->interface[i];
5945 : 0 : struct usb_driver *drv;
5946 : 0 : int rebind = cintf->needs_binding;
5947 : :
5948 [ # # # # ]: 0 : if (!rebind && cintf->dev.driver) {
5949 : 0 : drv = to_usb_driver(cintf->dev.driver);
5950 [ # # ]: 0 : if (drv->post_reset)
5951 : 0 : rebind = (drv->post_reset)(cintf);
5952 [ # # ]: 0 : else if (cintf->condition ==
5953 : : USB_INTERFACE_BOUND)
5954 : : rebind = 1;
5955 [ # # ]: 0 : if (rebind)
5956 : 0 : cintf->needs_binding = 1;
5957 : : }
5958 : : }
5959 : :
5960 : : /* If the reset failed, hub_wq will unbind drivers later */
5961 [ # # ]: 0 : if (ret == 0)
5962 : 0 : usb_unbind_and_rebind_marked_interfaces(udev);
5963 : : }
5964 : :
5965 : 0 : usb_autosuspend_device(udev);
5966 : 0 : memalloc_noio_restore(noio_flag);
5967 : 0 : return ret;
5968 : : }
5969 : : EXPORT_SYMBOL_GPL(usb_reset_device);
5970 : :
5971 : :
5972 : : /**
5973 : : * usb_queue_reset_device - Reset a USB device from an atomic context
5974 : : * @iface: USB interface belonging to the device to reset
5975 : : *
5976 : : * This function can be used to reset a USB device from an atomic
5977 : : * context, where usb_reset_device() won't work (as it blocks).
5978 : : *
5979 : : * Doing a reset via this method is functionally equivalent to calling
5980 : : * usb_reset_device(), except for the fact that it is delayed to a
5981 : : * workqueue. This means that any drivers bound to other interfaces
5982 : : * might be unbound, as well as users from usbfs in user space.
5983 : : *
5984 : : * Corner cases:
5985 : : *
5986 : : * - Scheduling two resets at the same time from two different drivers
5987 : : * attached to two different interfaces of the same device is
5988 : : * possible; depending on how the driver attached to each interface
5989 : : * handles ->pre_reset(), the second reset might happen or not.
5990 : : *
5991 : : * - If the reset is delayed so long that the interface is unbound from
5992 : : * its driver, the reset will be skipped.
5993 : : *
5994 : : * - This function can be called during .probe(). It can also be called
5995 : : * during .disconnect(), but doing so is pointless because the reset
5996 : : * will not occur. If you really want to reset the device during
5997 : : * .disconnect(), call usb_reset_device() directly -- but watch out
5998 : : * for nested unbinding issues!
5999 : : */
6000 : 0 : void usb_queue_reset_device(struct usb_interface *iface)
6001 : : {
6002 [ # # ]: 0 : if (schedule_work(&iface->reset_ws))
6003 : 0 : usb_get_intf(iface);
6004 : 0 : }
6005 : : EXPORT_SYMBOL_GPL(usb_queue_reset_device);
6006 : :
6007 : : /**
6008 : : * usb_hub_find_child - Get the pointer of child device
6009 : : * attached to the port which is specified by @port1.
6010 : : * @hdev: USB device belonging to the usb hub
6011 : : * @port1: port num to indicate which port the child device
6012 : : * is attached to.
6013 : : *
6014 : : * USB drivers call this function to get hub's child device
6015 : : * pointer.
6016 : : *
6017 : : * Return: %NULL if input param is invalid and
6018 : : * child's usb_device pointer if non-NULL.
6019 : : */
6020 : 0 : struct usb_device *usb_hub_find_child(struct usb_device *hdev,
6021 : : int port1)
6022 : : {
6023 [ # # ]: 0 : struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
6024 : :
6025 [ # # # # ]: 0 : if (port1 < 1 || port1 > hdev->maxchild)
6026 : : return NULL;
6027 : 0 : return hub->ports[port1 - 1]->child;
6028 : : }
6029 : : EXPORT_SYMBOL_GPL(usb_hub_find_child);
6030 : :
6031 : 0 : void usb_hub_adjust_deviceremovable(struct usb_device *hdev,
6032 : : struct usb_hub_descriptor *desc)
6033 : : {
6034 [ # # ]: 0 : struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
6035 : 0 : enum usb_port_connect_type connect_type;
6036 : 0 : int i;
6037 : :
6038 [ # # ]: 0 : if (!hub)
6039 : : return;
6040 : :
6041 [ # # ]: 0 : if (!hub_is_superspeed(hdev)) {
6042 [ # # ]: 0 : for (i = 1; i <= hdev->maxchild; i++) {
6043 : 0 : struct usb_port *port_dev = hub->ports[i - 1];
6044 : :
6045 : 0 : connect_type = port_dev->connect_type;
6046 [ # # ]: 0 : if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
6047 : 0 : u8 mask = 1 << (i%8);
6048 : :
6049 [ # # ]: 0 : if (!(desc->u.hs.DeviceRemovable[i/8] & mask)) {
6050 : 0 : dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n");
6051 : 0 : desc->u.hs.DeviceRemovable[i/8] |= mask;
6052 : : }
6053 : : }
6054 : : }
6055 : : } else {
6056 : 0 : u16 port_removable = le16_to_cpu(desc->u.ss.DeviceRemovable);
6057 : :
6058 [ # # ]: 0 : for (i = 1; i <= hdev->maxchild; i++) {
6059 : 0 : struct usb_port *port_dev = hub->ports[i - 1];
6060 : :
6061 : 0 : connect_type = port_dev->connect_type;
6062 [ # # ]: 0 : if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) {
6063 : 0 : u16 mask = 1 << i;
6064 : :
6065 [ # # ]: 0 : if (!(port_removable & mask)) {
6066 : 0 : dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n");
6067 : 0 : port_removable |= mask;
6068 : : }
6069 : : }
6070 : : }
6071 : :
6072 : 0 : desc->u.ss.DeviceRemovable = cpu_to_le16(port_removable);
6073 : : }
6074 : : }
6075 : :
6076 : : #ifdef CONFIG_ACPI
6077 : : /**
6078 : : * usb_get_hub_port_acpi_handle - Get the usb port's acpi handle
6079 : : * @hdev: USB device belonging to the usb hub
6080 : : * @port1: port num of the port
6081 : : *
6082 : : * Return: Port's acpi handle if successful, %NULL if params are
6083 : : * invalid.
6084 : : */
6085 : 0 : acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev,
6086 : : int port1)
6087 : : {
6088 [ # # ]: 0 : struct usb_hub *hub = usb_hub_to_struct_hub(hdev);
6089 : :
6090 [ # # ]: 0 : if (!hub)
6091 : : return NULL;
6092 : :
6093 [ # # # # ]: 0 : return ACPI_HANDLE(&hub->ports[port1 - 1]->dev);
6094 : : }
6095 : : #endif
|