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