Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * USB hub driver. |
| 3 | * |
| 4 | * (C) Copyright 1999 Linus Torvalds |
| 5 | * (C) Copyright 1999 Johannes Erdfelt |
| 6 | * (C) Copyright 1999 Gregory P. Smith |
| 7 | * (C) Copyright 2001 Brad Hards (bhards@bigpond.net.au) |
| 8 | * |
| 9 | */ |
| 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/kernel.h> |
| 12 | #include <linux/errno.h> |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/moduleparam.h> |
| 15 | #include <linux/completion.h> |
| 16 | #include <linux/sched.h> |
| 17 | #include <linux/list.h> |
| 18 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/ioctl.h> |
| 20 | #include <linux/usb.h> |
| 21 | #include <linux/usbdevice_fs.h> |
Eric Lescouet | 27729aa | 2010-04-24 23:21:52 +0200 | [diff] [blame] | 22 | #include <linux/usb/hcd.h> |
Richard Zhao | 925aa46 | 2012-07-11 11:09:28 +0800 | [diff] [blame] | 23 | #include <linux/usb/otg.h> |
Phil Dibowitz | 93362a8 | 2010-07-22 00:05:01 +0200 | [diff] [blame] | 24 | #include <linux/usb/quirks.h> |
akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 25 | #include <linux/kthread.h> |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 26 | #include <linux/mutex.h> |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 27 | #include <linux/freezer.h> |
Theodore Ts'o | b04b315 | 2012-07-04 11:22:20 -0400 | [diff] [blame] | 28 | #include <linux/random.h> |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 29 | #include <linux/pm_qos.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <asm/uaccess.h> |
| 32 | #include <asm/byteorder.h> |
| 33 | |
Lan Tianyu | 6e30d7c | 2013-01-11 20:10:38 +0800 | [diff] [blame] | 34 | #include "hub.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Ming Lei | e6f30de | 2012-10-24 11:59:24 +0800 | [diff] [blame] | 36 | #define USB_VENDOR_GENESYS_LOGIC 0x05e3 |
| 37 | #define HUB_QUIRK_CHECK_PORT_AUTOSUSPEND 0x01 |
| 38 | |
John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 39 | static inline int hub_is_superspeed(struct usb_device *hdev) |
| 40 | { |
Aman Deep | 7bf0118 | 2011-12-08 12:05:22 +0530 | [diff] [blame] | 41 | return (hdev->descriptor.bDeviceProtocol == USB_HUB_PR_SS); |
John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 42 | } |
Alan Stern | 1bb5f66 | 2006-11-06 11:56:13 -0500 | [diff] [blame] | 43 | |
Greg Kroah-Hartman | fa28618 | 2012-05-14 09:20:37 -0700 | [diff] [blame] | 44 | /* Protect struct usb_device->state and ->children members |
Alan Stern | 9ad3d6c | 2005-11-17 17:10:32 -0500 | [diff] [blame] | 45 | * Note: Both are also protected by ->dev.sem, except that ->state can |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */ |
| 47 | static DEFINE_SPINLOCK(device_state_lock); |
| 48 | |
| 49 | /* khubd's worklist and its lock */ |
| 50 | static DEFINE_SPINLOCK(hub_event_lock); |
| 51 | static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */ |
| 52 | |
| 53 | /* Wakes up khubd */ |
| 54 | static DECLARE_WAIT_QUEUE_HEAD(khubd_wait); |
| 55 | |
akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 56 | static struct task_struct *khubd_task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
| 58 | /* cycle leds on hubs that aren't blinking for attention */ |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 59 | static bool blinkenlights = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | module_param (blinkenlights, bool, S_IRUGO); |
| 61 | MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs"); |
| 62 | |
| 63 | /* |
Jaroslav Kysela | fd7c519 | 2008-10-10 16:24:45 +0200 | [diff] [blame] | 64 | * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about |
| 65 | * 10 seconds to send reply for the initial 64-byte descriptor request. |
| 66 | */ |
| 67 | /* define initial 64-byte descriptor request timeout in milliseconds */ |
| 68 | static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT; |
| 69 | module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR); |
Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 70 | MODULE_PARM_DESC(initial_descriptor_timeout, |
| 71 | "initial 64-byte descriptor request timeout in milliseconds " |
| 72 | "(default 5000 - 5.0 seconds)"); |
Jaroslav Kysela | fd7c519 | 2008-10-10 16:24:45 +0200 | [diff] [blame] | 73 | |
| 74 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | * As of 2.6.10 we introduce a new USB device initialization scheme which |
| 76 | * closely resembles the way Windows works. Hopefully it will be compatible |
| 77 | * with a wider range of devices than the old scheme. However some previously |
| 78 | * working devices may start giving rise to "device not accepting address" |
| 79 | * errors; if that happens the user can try the old scheme by adjusting the |
| 80 | * following module parameters. |
| 81 | * |
| 82 | * For maximum flexibility there are two boolean parameters to control the |
| 83 | * hub driver's behavior. On the first initialization attempt, if the |
| 84 | * "old_scheme_first" parameter is set then the old scheme will be used, |
| 85 | * otherwise the new scheme is used. If that fails and "use_both_schemes" |
| 86 | * is set, then the driver will make another attempt, using the other scheme. |
| 87 | */ |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 88 | static bool old_scheme_first = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR); |
| 90 | MODULE_PARM_DESC(old_scheme_first, |
| 91 | "start with the old device initialization scheme"); |
| 92 | |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 93 | static bool use_both_schemes = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR); |
| 95 | MODULE_PARM_DESC(use_both_schemes, |
| 96 | "try the other device initialization scheme if the " |
| 97 | "first one fails"); |
| 98 | |
Alan Stern | 32fe019 | 2007-10-10 16:27:07 -0400 | [diff] [blame] | 99 | /* Mutual exclusion for EHCI CF initialization. This interferes with |
| 100 | * port reset on some companion controllers. |
| 101 | */ |
| 102 | DECLARE_RWSEM(ehci_cf_port_reset_rwsem); |
| 103 | EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem); |
| 104 | |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 105 | #define HUB_DEBOUNCE_TIMEOUT 2000 |
Alan Stern | 948fea3 | 2008-04-28 11:07:07 -0400 | [diff] [blame] | 106 | #define HUB_DEBOUNCE_STEP 25 |
| 107 | #define HUB_DEBOUNCE_STABLE 100 |
| 108 | |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 109 | static int usb_reset_and_verify_device(struct usb_device *udev); |
| 110 | |
Sarah Sharp | 131dec3 | 2010-12-06 21:00:19 -0800 | [diff] [blame] | 111 | static inline char *portspeed(struct usb_hub *hub, int portstatus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | { |
Sarah Sharp | 131dec3 | 2010-12-06 21:00:19 -0800 | [diff] [blame] | 113 | if (hub_is_superspeed(hub->hdev)) |
| 114 | return "5.0 Gb/s"; |
Alan Stern | 288ead4 | 2010-03-04 11:32:30 -0500 | [diff] [blame] | 115 | if (portstatus & USB_PORT_STAT_HIGH_SPEED) |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 116 | return "480 Mb/s"; |
Alan Stern | 288ead4 | 2010-03-04 11:32:30 -0500 | [diff] [blame] | 117 | else if (portstatus & USB_PORT_STAT_LOW_SPEED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | return "1.5 Mb/s"; |
| 119 | else |
| 120 | return "12 Mb/s"; |
| 121 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
| 123 | /* Note that hdev or one of its children must be locked! */ |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 124 | struct usb_hub *usb_hub_to_struct_hub(struct usb_device *hdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | { |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 126 | if (!hdev || !hdev->actconfig || !hdev->maxchild) |
Alan Stern | 25118084 | 2009-07-22 14:41:18 -0400 | [diff] [blame] | 127 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | return usb_get_intfdata(hdev->actconfig->interface[0]); |
| 129 | } |
| 130 | |
Sarah Sharp | 140e302 | 2014-01-22 13:35:02 -0800 | [diff] [blame] | 131 | static int usb_device_supports_lpm(struct usb_device *udev) |
Sarah Sharp | d9b2099 | 2012-02-20 08:31:26 -0800 | [diff] [blame] | 132 | { |
| 133 | /* USB 2.1 (and greater) devices indicate LPM support through |
| 134 | * their USB 2.0 Extended Capabilities BOS descriptor. |
| 135 | */ |
| 136 | if (udev->speed == USB_SPEED_HIGH) { |
| 137 | if (udev->bos->ext_cap && |
| 138 | (USB_LPM_SUPPORT & |
| 139 | le32_to_cpu(udev->bos->ext_cap->bmAttributes))) |
| 140 | return 1; |
| 141 | return 0; |
| 142 | } |
Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 143 | |
Sarah Sharp | 25cd288 | 2014-01-17 14:15:44 -0800 | [diff] [blame] | 144 | /* |
| 145 | * According to the USB 3.0 spec, all USB 3.0 devices must support LPM. |
| 146 | * However, there are some that don't, and they set the U1/U2 exit |
| 147 | * latencies to zero. |
Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 148 | */ |
| 149 | if (!udev->bos->ss_cap) { |
Sarah Sharp | 25cd288 | 2014-01-17 14:15:44 -0800 | [diff] [blame] | 150 | dev_info(&udev->dev, "No LPM exit latency info found, disabling LPM.\n"); |
Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 151 | return 0; |
| 152 | } |
Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 153 | |
Sarah Sharp | 25cd288 | 2014-01-17 14:15:44 -0800 | [diff] [blame] | 154 | if (udev->bos->ss_cap->bU1devExitLat == 0 && |
| 155 | udev->bos->ss_cap->bU2DevExitLat == 0) { |
| 156 | if (udev->parent) |
| 157 | dev_info(&udev->dev, "LPM exit latency is zeroed, disabling LPM.\n"); |
| 158 | else |
| 159 | dev_info(&udev->dev, "We don't know the algorithms for LPM for this host, disabling LPM.\n"); |
| 160 | return 0; |
| 161 | } |
| 162 | |
| 163 | if (!udev->parent || udev->parent->lpm_capable) |
| 164 | return 1; |
Sarah Sharp | d9b2099 | 2012-02-20 08:31:26 -0800 | [diff] [blame] | 165 | return 0; |
| 166 | } |
| 167 | |
Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 168 | /* |
| 169 | * Set the Maximum Exit Latency (MEL) for the host to initiate a transition from |
| 170 | * either U1 or U2. |
| 171 | */ |
| 172 | static void usb_set_lpm_mel(struct usb_device *udev, |
| 173 | struct usb3_lpm_parameters *udev_lpm_params, |
| 174 | unsigned int udev_exit_latency, |
| 175 | struct usb_hub *hub, |
| 176 | struct usb3_lpm_parameters *hub_lpm_params, |
| 177 | unsigned int hub_exit_latency) |
| 178 | { |
| 179 | unsigned int total_mel; |
| 180 | unsigned int device_mel; |
| 181 | unsigned int hub_mel; |
| 182 | |
| 183 | /* |
| 184 | * Calculate the time it takes to transition all links from the roothub |
| 185 | * to the parent hub into U0. The parent hub must then decode the |
| 186 | * packet (hub header decode latency) to figure out which port it was |
| 187 | * bound for. |
| 188 | * |
| 189 | * The Hub Header decode latency is expressed in 0.1us intervals (0x1 |
| 190 | * means 0.1us). Multiply that by 100 to get nanoseconds. |
| 191 | */ |
| 192 | total_mel = hub_lpm_params->mel + |
| 193 | (hub->descriptor->u.ss.bHubHdrDecLat * 100); |
| 194 | |
| 195 | /* |
| 196 | * How long will it take to transition the downstream hub's port into |
| 197 | * U0? The greater of either the hub exit latency or the device exit |
| 198 | * latency. |
| 199 | * |
| 200 | * The BOS U1/U2 exit latencies are expressed in 1us intervals. |
| 201 | * Multiply that by 1000 to get nanoseconds. |
| 202 | */ |
| 203 | device_mel = udev_exit_latency * 1000; |
| 204 | hub_mel = hub_exit_latency * 1000; |
| 205 | if (device_mel > hub_mel) |
| 206 | total_mel += device_mel; |
| 207 | else |
| 208 | total_mel += hub_mel; |
| 209 | |
| 210 | udev_lpm_params->mel = total_mel; |
| 211 | } |
| 212 | |
| 213 | /* |
| 214 | * Set the maximum Device to Host Exit Latency (PEL) for the device to initiate |
| 215 | * a transition from either U1 or U2. |
| 216 | */ |
| 217 | static void usb_set_lpm_pel(struct usb_device *udev, |
| 218 | struct usb3_lpm_parameters *udev_lpm_params, |
| 219 | unsigned int udev_exit_latency, |
| 220 | struct usb_hub *hub, |
| 221 | struct usb3_lpm_parameters *hub_lpm_params, |
| 222 | unsigned int hub_exit_latency, |
| 223 | unsigned int port_to_port_exit_latency) |
| 224 | { |
| 225 | unsigned int first_link_pel; |
| 226 | unsigned int hub_pel; |
| 227 | |
| 228 | /* |
| 229 | * First, the device sends an LFPS to transition the link between the |
| 230 | * device and the parent hub into U0. The exit latency is the bigger of |
| 231 | * the device exit latency or the hub exit latency. |
| 232 | */ |
| 233 | if (udev_exit_latency > hub_exit_latency) |
| 234 | first_link_pel = udev_exit_latency * 1000; |
| 235 | else |
| 236 | first_link_pel = hub_exit_latency * 1000; |
| 237 | |
| 238 | /* |
| 239 | * When the hub starts to receive the LFPS, there is a slight delay for |
| 240 | * it to figure out that one of the ports is sending an LFPS. Then it |
| 241 | * will forward the LFPS to its upstream link. The exit latency is the |
| 242 | * delay, plus the PEL that we calculated for this hub. |
| 243 | */ |
| 244 | hub_pel = port_to_port_exit_latency * 1000 + hub_lpm_params->pel; |
| 245 | |
| 246 | /* |
| 247 | * According to figure C-7 in the USB 3.0 spec, the PEL for this device |
| 248 | * is the greater of the two exit latencies. |
| 249 | */ |
| 250 | if (first_link_pel > hub_pel) |
| 251 | udev_lpm_params->pel = first_link_pel; |
| 252 | else |
| 253 | udev_lpm_params->pel = hub_pel; |
| 254 | } |
| 255 | |
| 256 | /* |
| 257 | * Set the System Exit Latency (SEL) to indicate the total worst-case time from |
| 258 | * when a device initiates a transition to U0, until when it will receive the |
| 259 | * first packet from the host controller. |
| 260 | * |
| 261 | * Section C.1.5.1 describes the four components to this: |
| 262 | * - t1: device PEL |
| 263 | * - t2: time for the ERDY to make it from the device to the host. |
| 264 | * - t3: a host-specific delay to process the ERDY. |
| 265 | * - t4: time for the packet to make it from the host to the device. |
| 266 | * |
| 267 | * t3 is specific to both the xHCI host and the platform the host is integrated |
| 268 | * into. The Intel HW folks have said it's negligible, FIXME if a different |
| 269 | * vendor says otherwise. |
| 270 | */ |
| 271 | static void usb_set_lpm_sel(struct usb_device *udev, |
| 272 | struct usb3_lpm_parameters *udev_lpm_params) |
| 273 | { |
| 274 | struct usb_device *parent; |
| 275 | unsigned int num_hubs; |
| 276 | unsigned int total_sel; |
| 277 | |
| 278 | /* t1 = device PEL */ |
| 279 | total_sel = udev_lpm_params->pel; |
| 280 | /* How many external hubs are in between the device & the root port. */ |
| 281 | for (parent = udev->parent, num_hubs = 0; parent->parent; |
| 282 | parent = parent->parent) |
| 283 | num_hubs++; |
| 284 | /* t2 = 2.1us + 250ns * (num_hubs - 1) */ |
| 285 | if (num_hubs > 0) |
| 286 | total_sel += 2100 + 250 * (num_hubs - 1); |
| 287 | |
| 288 | /* t4 = 250ns * num_hubs */ |
| 289 | total_sel += 250 * num_hubs; |
| 290 | |
| 291 | udev_lpm_params->sel = total_sel; |
| 292 | } |
| 293 | |
| 294 | static void usb_set_lpm_parameters(struct usb_device *udev) |
| 295 | { |
| 296 | struct usb_hub *hub; |
| 297 | unsigned int port_to_port_delay; |
| 298 | unsigned int udev_u1_del; |
| 299 | unsigned int udev_u2_del; |
| 300 | unsigned int hub_u1_del; |
| 301 | unsigned int hub_u2_del; |
| 302 | |
| 303 | if (!udev->lpm_capable || udev->speed != USB_SPEED_SUPER) |
| 304 | return; |
| 305 | |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 306 | hub = usb_hub_to_struct_hub(udev->parent); |
Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 307 | /* It doesn't take time to transition the roothub into U0, since it |
| 308 | * doesn't have an upstream link. |
| 309 | */ |
| 310 | if (!hub) |
| 311 | return; |
| 312 | |
| 313 | udev_u1_del = udev->bos->ss_cap->bU1devExitLat; |
Xenia Ragiadakou | 4d96799 | 2013-08-31 18:09:13 +0300 | [diff] [blame] | 314 | udev_u2_del = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat); |
Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 315 | hub_u1_del = udev->parent->bos->ss_cap->bU1devExitLat; |
Xenia Ragiadakou | 4d96799 | 2013-08-31 18:09:13 +0300 | [diff] [blame] | 316 | hub_u2_del = le16_to_cpu(udev->parent->bos->ss_cap->bU2DevExitLat); |
Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 317 | |
| 318 | usb_set_lpm_mel(udev, &udev->u1_params, udev_u1_del, |
| 319 | hub, &udev->parent->u1_params, hub_u1_del); |
| 320 | |
| 321 | usb_set_lpm_mel(udev, &udev->u2_params, udev_u2_del, |
| 322 | hub, &udev->parent->u2_params, hub_u2_del); |
| 323 | |
| 324 | /* |
| 325 | * Appendix C, section C.2.2.2, says that there is a slight delay from |
| 326 | * when the parent hub notices the downstream port is trying to |
| 327 | * transition to U0 to when the hub initiates a U0 transition on its |
| 328 | * upstream port. The section says the delays are tPort2PortU1EL and |
| 329 | * tPort2PortU2EL, but it doesn't define what they are. |
| 330 | * |
| 331 | * The hub chapter, sections 10.4.2.4 and 10.4.2.5 seem to be talking |
| 332 | * about the same delays. Use the maximum delay calculations from those |
| 333 | * sections. For U1, it's tHubPort2PortExitLat, which is 1us max. For |
| 334 | * U2, it's tHubPort2PortExitLat + U2DevExitLat - U1DevExitLat. I |
| 335 | * assume the device exit latencies they are talking about are the hub |
| 336 | * exit latencies. |
| 337 | * |
| 338 | * What do we do if the U2 exit latency is less than the U1 exit |
| 339 | * latency? It's possible, although not likely... |
| 340 | */ |
| 341 | port_to_port_delay = 1; |
| 342 | |
| 343 | usb_set_lpm_pel(udev, &udev->u1_params, udev_u1_del, |
| 344 | hub, &udev->parent->u1_params, hub_u1_del, |
| 345 | port_to_port_delay); |
| 346 | |
| 347 | if (hub_u2_del > hub_u1_del) |
| 348 | port_to_port_delay = 1 + hub_u2_del - hub_u1_del; |
| 349 | else |
| 350 | port_to_port_delay = 1 + hub_u1_del; |
| 351 | |
| 352 | usb_set_lpm_pel(udev, &udev->u2_params, udev_u2_del, |
| 353 | hub, &udev->parent->u2_params, hub_u2_del, |
| 354 | port_to_port_delay); |
| 355 | |
| 356 | /* Now that we've got PEL, calculate SEL. */ |
| 357 | usb_set_lpm_sel(udev, &udev->u1_params); |
| 358 | usb_set_lpm_sel(udev, &udev->u2_params); |
| 359 | } |
| 360 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | /* USB 2.0 spec Section 11.24.4.5 */ |
John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 362 | static int get_hub_descriptor(struct usb_device *hdev, void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | { |
John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 364 | int i, ret, size; |
| 365 | unsigned dtype; |
| 366 | |
| 367 | if (hub_is_superspeed(hdev)) { |
| 368 | dtype = USB_DT_SS_HUB; |
| 369 | size = USB_DT_SS_HUB_SIZE; |
| 370 | } else { |
| 371 | dtype = USB_DT_HUB; |
| 372 | size = sizeof(struct usb_hub_descriptor); |
| 373 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
| 375 | for (i = 0; i < 3; i++) { |
| 376 | ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0), |
| 377 | USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB, |
John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 378 | dtype << 8, 0, data, size, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | USB_CTRL_GET_TIMEOUT); |
| 380 | if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2)) |
| 381 | return ret; |
| 382 | } |
| 383 | return -EINVAL; |
| 384 | } |
| 385 | |
| 386 | /* |
| 387 | * USB 2.0 spec Section 11.24.2.1 |
| 388 | */ |
| 389 | static int clear_hub_feature(struct usb_device *hdev, int feature) |
| 390 | { |
| 391 | return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), |
| 392 | USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000); |
| 393 | } |
| 394 | |
| 395 | /* |
| 396 | * USB 2.0 spec Section 11.24.2.2 |
| 397 | */ |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 398 | int usb_clear_port_feature(struct usb_device *hdev, int port1, int feature) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | { |
| 400 | return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), |
| 401 | USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1, |
| 402 | NULL, 0, 1000); |
| 403 | } |
| 404 | |
| 405 | /* |
| 406 | * USB 2.0 spec Section 11.24.2.13 |
| 407 | */ |
| 408 | static int set_port_feature(struct usb_device *hdev, int port1, int feature) |
| 409 | { |
| 410 | return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), |
| 411 | USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1, |
| 412 | NULL, 0, 1000); |
| 413 | } |
| 414 | |
| 415 | /* |
| 416 | * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7 |
| 417 | * for info about using port indicators |
| 418 | */ |
| 419 | static void set_port_led( |
| 420 | struct usb_hub *hub, |
| 421 | int port1, |
| 422 | int selector |
| 423 | ) |
| 424 | { |
| 425 | int status = set_port_feature(hub->hdev, (selector << 8) | port1, |
| 426 | USB_PORT_FEAT_INDICATOR); |
| 427 | if (status < 0) |
| 428 | dev_dbg (hub->intfdev, |
| 429 | "port %d indicator %s status %d\n", |
| 430 | port1, |
| 431 | ({ char *s; switch (selector) { |
| 432 | case HUB_LED_AMBER: s = "amber"; break; |
| 433 | case HUB_LED_GREEN: s = "green"; break; |
| 434 | case HUB_LED_OFF: s = "off"; break; |
| 435 | case HUB_LED_AUTO: s = "auto"; break; |
| 436 | default: s = "??"; break; |
Joe Perches | 2b84f92 | 2013-10-08 16:01:37 -0700 | [diff] [blame] | 437 | } s; }), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | status); |
| 439 | } |
| 440 | |
| 441 | #define LED_CYCLE_PERIOD ((2*HZ)/3) |
| 442 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 443 | static void led_work (struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | { |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 445 | struct usb_hub *hub = |
| 446 | container_of(work, struct usb_hub, leds.work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | struct usb_device *hdev = hub->hdev; |
| 448 | unsigned i; |
| 449 | unsigned changed = 0; |
| 450 | int cursor = -1; |
| 451 | |
| 452 | if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing) |
| 453 | return; |
| 454 | |
Krzysztof Mazur | 3bbc47d | 2013-08-22 14:49:40 +0200 | [diff] [blame] | 455 | for (i = 0; i < hdev->maxchild; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | unsigned selector, mode; |
| 457 | |
| 458 | /* 30%-50% duty cycle */ |
| 459 | |
| 460 | switch (hub->indicator[i]) { |
| 461 | /* cycle marker */ |
| 462 | case INDICATOR_CYCLE: |
| 463 | cursor = i; |
| 464 | selector = HUB_LED_AUTO; |
| 465 | mode = INDICATOR_AUTO; |
| 466 | break; |
| 467 | /* blinking green = sw attention */ |
| 468 | case INDICATOR_GREEN_BLINK: |
| 469 | selector = HUB_LED_GREEN; |
| 470 | mode = INDICATOR_GREEN_BLINK_OFF; |
| 471 | break; |
| 472 | case INDICATOR_GREEN_BLINK_OFF: |
| 473 | selector = HUB_LED_OFF; |
| 474 | mode = INDICATOR_GREEN_BLINK; |
| 475 | break; |
| 476 | /* blinking amber = hw attention */ |
| 477 | case INDICATOR_AMBER_BLINK: |
| 478 | selector = HUB_LED_AMBER; |
| 479 | mode = INDICATOR_AMBER_BLINK_OFF; |
| 480 | break; |
| 481 | case INDICATOR_AMBER_BLINK_OFF: |
| 482 | selector = HUB_LED_OFF; |
| 483 | mode = INDICATOR_AMBER_BLINK; |
| 484 | break; |
| 485 | /* blink green/amber = reserved */ |
| 486 | case INDICATOR_ALT_BLINK: |
| 487 | selector = HUB_LED_GREEN; |
| 488 | mode = INDICATOR_ALT_BLINK_OFF; |
| 489 | break; |
| 490 | case INDICATOR_ALT_BLINK_OFF: |
| 491 | selector = HUB_LED_AMBER; |
| 492 | mode = INDICATOR_ALT_BLINK; |
| 493 | break; |
| 494 | default: |
| 495 | continue; |
| 496 | } |
| 497 | if (selector != HUB_LED_AUTO) |
| 498 | changed = 1; |
| 499 | set_port_led(hub, i + 1, selector); |
| 500 | hub->indicator[i] = mode; |
| 501 | } |
| 502 | if (!changed && blinkenlights) { |
| 503 | cursor++; |
Krzysztof Mazur | 3bbc47d | 2013-08-22 14:49:40 +0200 | [diff] [blame] | 504 | cursor %= hdev->maxchild; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | set_port_led(hub, cursor + 1, HUB_LED_GREEN); |
| 506 | hub->indicator[cursor] = INDICATOR_CYCLE; |
| 507 | changed++; |
| 508 | } |
| 509 | if (changed) |
Shaibal Dutta | 22f6a0f | 2014-02-01 19:16:46 -0800 | [diff] [blame] | 510 | queue_delayed_work(system_power_efficient_wq, |
| 511 | &hub->leds, LED_CYCLE_PERIOD); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | } |
| 513 | |
| 514 | /* use a short timeout for hub/port status fetches */ |
| 515 | #define USB_STS_TIMEOUT 1000 |
| 516 | #define USB_STS_RETRIES 5 |
| 517 | |
| 518 | /* |
| 519 | * USB 2.0 spec Section 11.24.2.6 |
| 520 | */ |
| 521 | static int get_hub_status(struct usb_device *hdev, |
| 522 | struct usb_hub_status *data) |
| 523 | { |
| 524 | int i, status = -ETIMEDOUT; |
| 525 | |
Libor Pechacek | 3824c1d | 2011-05-20 14:53:25 +0200 | [diff] [blame] | 526 | for (i = 0; i < USB_STS_RETRIES && |
| 527 | (status == -ETIMEDOUT || status == -EPIPE); i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0), |
| 529 | USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0, |
| 530 | data, sizeof(*data), USB_STS_TIMEOUT); |
| 531 | } |
| 532 | return status; |
| 533 | } |
| 534 | |
| 535 | /* |
| 536 | * USB 2.0 spec Section 11.24.2.7 |
| 537 | */ |
| 538 | static int get_port_status(struct usb_device *hdev, int port1, |
| 539 | struct usb_port_status *data) |
| 540 | { |
| 541 | int i, status = -ETIMEDOUT; |
| 542 | |
Libor Pechacek | 3824c1d | 2011-05-20 14:53:25 +0200 | [diff] [blame] | 543 | for (i = 0; i < USB_STS_RETRIES && |
| 544 | (status == -ETIMEDOUT || status == -EPIPE); i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0), |
| 546 | USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1, |
| 547 | data, sizeof(*data), USB_STS_TIMEOUT); |
| 548 | } |
| 549 | return status; |
| 550 | } |
| 551 | |
Alan Stern | 3eb1491 | 2008-03-03 15:15:43 -0500 | [diff] [blame] | 552 | static int hub_port_status(struct usb_hub *hub, int port1, |
| 553 | u16 *status, u16 *change) |
| 554 | { |
| 555 | int ret; |
| 556 | |
| 557 | mutex_lock(&hub->status_mutex); |
| 558 | ret = get_port_status(hub->hdev, port1, &hub->status->port); |
| 559 | if (ret < 4) { |
Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 560 | if (ret != -ENODEV) |
| 561 | dev_err(hub->intfdev, |
| 562 | "%s failed (err = %d)\n", __func__, ret); |
Alan Stern | 3eb1491 | 2008-03-03 15:15:43 -0500 | [diff] [blame] | 563 | if (ret >= 0) |
| 564 | ret = -EIO; |
| 565 | } else { |
| 566 | *status = le16_to_cpu(hub->status->port.wPortStatus); |
| 567 | *change = le16_to_cpu(hub->status->port.wPortChange); |
John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 568 | |
Alan Stern | 3eb1491 | 2008-03-03 15:15:43 -0500 | [diff] [blame] | 569 | ret = 0; |
| 570 | } |
| 571 | mutex_unlock(&hub->status_mutex); |
| 572 | return ret; |
| 573 | } |
| 574 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | static void kick_khubd(struct usb_hub *hub) |
| 576 | { |
| 577 | unsigned long flags; |
| 578 | |
| 579 | spin_lock_irqsave(&hub_event_lock, flags); |
Roel Kluin | 2e2c5ee | 2007-10-26 23:54:35 +0200 | [diff] [blame] | 580 | if (!hub->disconnected && list_empty(&hub->event_list)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | list_add_tail(&hub->event_list, &hub_event_list); |
Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 582 | |
| 583 | /* Suppress autosuspend until khubd runs */ |
| 584 | usb_autopm_get_interface_no_resume( |
| 585 | to_usb_interface(hub->intfdev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | wake_up(&khubd_wait); |
| 587 | } |
| 588 | spin_unlock_irqrestore(&hub_event_lock, flags); |
| 589 | } |
| 590 | |
| 591 | void usb_kick_khubd(struct usb_device *hdev) |
| 592 | { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 593 | struct usb_hub *hub = usb_hub_to_struct_hub(hdev); |
Alan Stern | 25118084 | 2009-07-22 14:41:18 -0400 | [diff] [blame] | 594 | |
| 595 | if (hub) |
| 596 | kick_khubd(hub); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | } |
| 598 | |
Sarah Sharp | 4ee823b | 2011-11-14 18:00:01 -0800 | [diff] [blame] | 599 | /* |
| 600 | * Let the USB core know that a USB 3.0 device has sent a Function Wake Device |
| 601 | * Notification, which indicates it had initiated remote wakeup. |
| 602 | * |
| 603 | * USB 3.0 hubs do not report the port link state change from U3 to U0 when the |
| 604 | * device initiates resume, so the USB core will not receive notice of the |
| 605 | * resume through the normal hub interrupt URB. |
| 606 | */ |
| 607 | void usb_wakeup_notification(struct usb_device *hdev, |
| 608 | unsigned int portnum) |
| 609 | { |
| 610 | struct usb_hub *hub; |
| 611 | |
| 612 | if (!hdev) |
| 613 | return; |
| 614 | |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 615 | hub = usb_hub_to_struct_hub(hdev); |
Sarah Sharp | 4ee823b | 2011-11-14 18:00:01 -0800 | [diff] [blame] | 616 | if (hub) { |
| 617 | set_bit(portnum, hub->wakeup_bits); |
| 618 | kick_khubd(hub); |
| 619 | } |
| 620 | } |
| 621 | EXPORT_SYMBOL_GPL(usb_wakeup_notification); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | |
| 623 | /* completion function, fires on port status changes and various faults */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 624 | static void hub_irq(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 625 | { |
Tobias Klauser | ec17cf1 | 2006-09-13 21:38:41 +0200 | [diff] [blame] | 626 | struct usb_hub *hub = urb->context; |
Alan Stern | e015268 | 2007-08-24 15:42:52 -0400 | [diff] [blame] | 627 | int status = urb->status; |
Roel Kluin | 71d2718 | 2009-03-13 12:19:18 +0100 | [diff] [blame] | 628 | unsigned i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | unsigned long bits; |
| 630 | |
Alan Stern | e015268 | 2007-08-24 15:42:52 -0400 | [diff] [blame] | 631 | switch (status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | case -ENOENT: /* synchronous unlink */ |
| 633 | case -ECONNRESET: /* async unlink */ |
| 634 | case -ESHUTDOWN: /* hardware going away */ |
| 635 | return; |
| 636 | |
| 637 | default: /* presumably an error */ |
| 638 | /* Cause a hub reset after 10 consecutive errors */ |
Alan Stern | e015268 | 2007-08-24 15:42:52 -0400 | [diff] [blame] | 639 | dev_dbg (hub->intfdev, "transfer --> %d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | if ((++hub->nerrors < 10) || hub->error) |
| 641 | goto resubmit; |
Alan Stern | e015268 | 2007-08-24 15:42:52 -0400 | [diff] [blame] | 642 | hub->error = status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | /* FALL THROUGH */ |
Tobias Klauser | ec17cf1 | 2006-09-13 21:38:41 +0200 | [diff] [blame] | 644 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | /* let khubd handle things */ |
| 646 | case 0: /* we got data: port status changed */ |
| 647 | bits = 0; |
| 648 | for (i = 0; i < urb->actual_length; ++i) |
| 649 | bits |= ((unsigned long) ((*hub->buffer)[i])) |
| 650 | << (i*8); |
| 651 | hub->event_bits[0] = bits; |
| 652 | break; |
| 653 | } |
| 654 | |
| 655 | hub->nerrors = 0; |
| 656 | |
| 657 | /* Something happened, let khubd figure it out */ |
| 658 | kick_khubd(hub); |
| 659 | |
| 660 | resubmit: |
| 661 | if (hub->quiescing) |
| 662 | return; |
| 663 | |
| 664 | if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0 |
| 665 | && status != -ENODEV && status != -EPERM) |
| 666 | dev_err (hub->intfdev, "resubmit --> %d\n", status); |
| 667 | } |
| 668 | |
| 669 | /* USB 2.0 spec Section 11.24.2.3 */ |
| 670 | static inline int |
| 671 | hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt) |
| 672 | { |
William Gulland | 2c7b871 | 2013-06-27 16:10:20 -0700 | [diff] [blame] | 673 | /* Need to clear both directions for control ep */ |
| 674 | if (((devinfo >> 11) & USB_ENDPOINT_XFERTYPE_MASK) == |
| 675 | USB_ENDPOINT_XFER_CONTROL) { |
| 676 | int status = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), |
| 677 | HUB_CLEAR_TT_BUFFER, USB_RT_PORT, |
| 678 | devinfo ^ 0x8000, tt, NULL, 0, 1000); |
| 679 | if (status) |
| 680 | return status; |
| 681 | } |
Alan Stern | c2f6595 | 2009-11-18 11:37:15 -0500 | [diff] [blame] | 682 | return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo, |
| 684 | tt, NULL, 0, 1000); |
| 685 | } |
| 686 | |
| 687 | /* |
| 688 | * enumeration blocks khubd for a long time. we use keventd instead, since |
| 689 | * long blocking there is the exception, not the rule. accordingly, HCDs |
| 690 | * talking to TTs must queue control transfers (not just bulk and iso), so |
| 691 | * both can talk to the same hub concurrently. |
| 692 | */ |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 693 | static void hub_tt_work(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | { |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 695 | struct usb_hub *hub = |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 696 | container_of(work, struct usb_hub, tt.clear_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | unsigned long flags; |
| 698 | |
| 699 | spin_lock_irqsave (&hub->tt.lock, flags); |
Octavian Purdila | 3b6054d | 2012-10-01 22:21:12 +0300 | [diff] [blame] | 700 | while (!list_empty(&hub->tt.clear_list)) { |
H Hartley Sweeten | d0f830d | 2009-04-22 16:03:05 -0400 | [diff] [blame] | 701 | struct list_head *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | struct usb_tt_clear *clear; |
| 703 | struct usb_device *hdev = hub->hdev; |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 704 | const struct hc_driver *drv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | int status; |
| 706 | |
H Hartley Sweeten | d0f830d | 2009-04-22 16:03:05 -0400 | [diff] [blame] | 707 | next = hub->tt.clear_list.next; |
| 708 | clear = list_entry (next, struct usb_tt_clear, clear_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | list_del (&clear->clear_list); |
| 710 | |
| 711 | /* drop lock so HCD can concurrently report other TT errors */ |
| 712 | spin_unlock_irqrestore (&hub->tt.lock, flags); |
| 713 | status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt); |
Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 714 | if (status && status != -ENODEV) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 715 | dev_err (&hdev->dev, |
| 716 | "clear tt %d (%04x) error %d\n", |
| 717 | clear->tt, clear->devinfo, status); |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 718 | |
| 719 | /* Tell the HCD, even if the operation failed */ |
| 720 | drv = clear->hcd->driver; |
| 721 | if (drv->clear_tt_buffer_complete) |
| 722 | (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep); |
| 723 | |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 724 | kfree(clear); |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 725 | spin_lock_irqsave(&hub->tt.lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | } |
| 727 | spin_unlock_irqrestore (&hub->tt.lock, flags); |
| 728 | } |
| 729 | |
| 730 | /** |
Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 731 | * usb_hub_set_port_power - control hub port's power state |
Mathias Nyman | 4134126 | 2013-06-18 17:28:48 +0300 | [diff] [blame] | 732 | * @hdev: USB device belonging to the usb hub |
| 733 | * @hub: target hub |
Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 734 | * @port1: port index |
| 735 | * @set: expected status |
| 736 | * |
| 737 | * call this function to control port's power via setting or |
| 738 | * clearing the port's PORT_POWER feature. |
Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 739 | * |
| 740 | * Return: 0 if successful. A negative error code otherwise. |
Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 741 | */ |
Mathias Nyman | 4134126 | 2013-06-18 17:28:48 +0300 | [diff] [blame] | 742 | int usb_hub_set_port_power(struct usb_device *hdev, struct usb_hub *hub, |
| 743 | int port1, bool set) |
Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 744 | { |
| 745 | int ret; |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 746 | struct usb_port *port_dev = hub->ports[port1 - 1]; |
Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 747 | |
| 748 | if (set) |
| 749 | ret = set_port_feature(hdev, port1, USB_PORT_FEAT_POWER); |
| 750 | else |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 751 | ret = usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_POWER); |
| 752 | |
| 753 | if (!ret) |
| 754 | port_dev->power_is_on = set; |
Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 755 | return ret; |
| 756 | } |
| 757 | |
| 758 | /** |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 759 | * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub |
| 760 | * @urb: an URB associated with the failed or incomplete split transaction |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | * |
| 762 | * High speed HCDs use this to tell the hub driver that some split control or |
| 763 | * bulk transaction failed in a way that requires clearing internal state of |
| 764 | * a transaction translator. This is normally detected (and reported) from |
| 765 | * interrupt context. |
| 766 | * |
| 767 | * It may not be possible for that hub to handle additional full (or low) |
| 768 | * speed transactions until that state is fully cleared out. |
Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 769 | * |
| 770 | * Return: 0 if successful. A negative error code otherwise. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | */ |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 772 | int usb_hub_clear_tt_buffer(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | { |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 774 | struct usb_device *udev = urb->dev; |
| 775 | int pipe = urb->pipe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | struct usb_tt *tt = udev->tt; |
| 777 | unsigned long flags; |
| 778 | struct usb_tt_clear *clear; |
| 779 | |
| 780 | /* we've got to cope with an arbitrary number of pending TT clears, |
| 781 | * since each TT has "at least two" buffers that can need it (and |
| 782 | * there can be many TTs per hub). even if they're uncommon. |
| 783 | */ |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 784 | if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 785 | dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n"); |
| 786 | /* FIXME recover somehow ... RESET_TT? */ |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 787 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | } |
| 789 | |
| 790 | /* info that CLEAR_TT_BUFFER needs */ |
| 791 | clear->tt = tt->multi ? udev->ttport : 1; |
| 792 | clear->devinfo = usb_pipeendpoint (pipe); |
| 793 | clear->devinfo |= udev->devnum << 4; |
| 794 | clear->devinfo |= usb_pipecontrol (pipe) |
| 795 | ? (USB_ENDPOINT_XFER_CONTROL << 11) |
| 796 | : (USB_ENDPOINT_XFER_BULK << 11); |
| 797 | if (usb_pipein (pipe)) |
| 798 | clear->devinfo |= 1 << 15; |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 799 | |
| 800 | /* info for completion callback */ |
| 801 | clear->hcd = bus_to_hcd(udev->bus); |
| 802 | clear->ep = urb->ep; |
| 803 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | /* tell keventd to clear state for this TT */ |
| 805 | spin_lock_irqsave (&tt->lock, flags); |
| 806 | list_add_tail (&clear->clear_list, &tt->clear_list); |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 807 | schedule_work(&tt->clear_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | spin_unlock_irqrestore (&tt->lock, flags); |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 809 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | } |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 811 | EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 813 | /* If do_delay is false, return the number of milliseconds the caller |
| 814 | * needs to delay. |
| 815 | */ |
| 816 | static unsigned hub_power_on(struct usb_hub *hub, bool do_delay) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | { |
| 818 | int port1; |
David Brownell | b789696 | 2005-08-31 10:41:44 -0700 | [diff] [blame] | 819 | unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2; |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 820 | unsigned delay; |
Alan Stern | 4489a57 | 2006-04-27 15:54:22 -0400 | [diff] [blame] | 821 | u16 wHubCharacteristics = |
| 822 | le16_to_cpu(hub->descriptor->wHubCharacteristics); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | |
Alan Stern | 4489a57 | 2006-04-27 15:54:22 -0400 | [diff] [blame] | 824 | /* Enable power on each port. Some hubs have reserved values |
| 825 | * of LPSM (> 2) in their descriptors, even though they are |
| 826 | * USB 2.0 hubs. Some hubs do not implement port-power switching |
| 827 | * but only emulate it. In all cases, the ports won't work |
| 828 | * unless we send these messages to the hub. |
| 829 | */ |
| 830 | if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | dev_dbg(hub->intfdev, "enabling power on all ports\n"); |
Alan Stern | 4489a57 | 2006-04-27 15:54:22 -0400 | [diff] [blame] | 832 | else |
| 833 | dev_dbg(hub->intfdev, "trying to enable port power on " |
| 834 | "non-switchable hub\n"); |
Krzysztof Mazur | 3bbc47d | 2013-08-22 14:49:40 +0200 | [diff] [blame] | 835 | for (port1 = 1; port1 <= hub->hdev->maxchild; port1++) |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 836 | if (hub->ports[port1 - 1]->power_is_on) |
| 837 | set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER); |
| 838 | else |
| 839 | usb_clear_port_feature(hub->hdev, port1, |
| 840 | USB_PORT_FEAT_POWER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | |
David Brownell | b789696 | 2005-08-31 10:41:44 -0700 | [diff] [blame] | 842 | /* Wait at least 100 msec for power to become stable */ |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 843 | delay = max(pgood_delay, (unsigned) 100); |
| 844 | if (do_delay) |
| 845 | msleep(delay); |
| 846 | return delay; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | } |
| 848 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 849 | static int hub_hub_status(struct usb_hub *hub, |
| 850 | u16 *status, u16 *change) |
| 851 | { |
| 852 | int ret; |
| 853 | |
Alan Stern | db90e7a | 2007-02-05 09:56:15 -0500 | [diff] [blame] | 854 | mutex_lock(&hub->status_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | ret = get_hub_status(hub->hdev, &hub->status->hub); |
Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 856 | if (ret < 0) { |
| 857 | if (ret != -ENODEV) |
| 858 | dev_err(hub->intfdev, |
| 859 | "%s failed (err = %d)\n", __func__, ret); |
| 860 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | *status = le16_to_cpu(hub->status->hub.wHubStatus); |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 862 | *change = le16_to_cpu(hub->status->hub.wHubChange); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | ret = 0; |
| 864 | } |
Alan Stern | db90e7a | 2007-02-05 09:56:15 -0500 | [diff] [blame] | 865 | mutex_unlock(&hub->status_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | return ret; |
| 867 | } |
| 868 | |
Sarah Sharp | 41e7e05 | 2012-11-14 16:42:32 -0800 | [diff] [blame] | 869 | static int hub_set_port_link_state(struct usb_hub *hub, int port1, |
| 870 | unsigned int link_status) |
| 871 | { |
| 872 | return set_port_feature(hub->hdev, |
| 873 | port1 | (link_status << 3), |
| 874 | USB_PORT_FEAT_LINK_STATE); |
| 875 | } |
| 876 | |
| 877 | /* |
| 878 | * If USB 3.0 ports are placed into the Disabled state, they will no longer |
| 879 | * detect any device connects or disconnects. This is generally not what the |
| 880 | * USB core wants, since it expects a disabled port to produce a port status |
| 881 | * change event when a new device connects. |
| 882 | * |
| 883 | * Instead, set the link state to Disabled, wait for the link to settle into |
| 884 | * that state, clear any change bits, and then put the port into the RxDetect |
| 885 | * state. |
| 886 | */ |
| 887 | static int hub_usb3_port_disable(struct usb_hub *hub, int port1) |
| 888 | { |
| 889 | int ret; |
| 890 | int total_time; |
| 891 | u16 portchange, portstatus; |
| 892 | |
| 893 | if (!hub_is_superspeed(hub->hdev)) |
| 894 | return -EINVAL; |
| 895 | |
| 896 | ret = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_SS_DISABLED); |
Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 897 | if (ret) |
Sarah Sharp | 41e7e05 | 2012-11-14 16:42:32 -0800 | [diff] [blame] | 898 | return ret; |
Sarah Sharp | 41e7e05 | 2012-11-14 16:42:32 -0800 | [diff] [blame] | 899 | |
| 900 | /* Wait for the link to enter the disabled state. */ |
| 901 | for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) { |
| 902 | ret = hub_port_status(hub, port1, &portstatus, &portchange); |
| 903 | if (ret < 0) |
| 904 | return ret; |
| 905 | |
| 906 | if ((portstatus & USB_PORT_STAT_LINK_STATE) == |
| 907 | USB_SS_PORT_LS_SS_DISABLED) |
| 908 | break; |
| 909 | if (total_time >= HUB_DEBOUNCE_TIMEOUT) |
| 910 | break; |
| 911 | msleep(HUB_DEBOUNCE_STEP); |
| 912 | } |
| 913 | if (total_time >= HUB_DEBOUNCE_TIMEOUT) |
| 914 | dev_warn(hub->intfdev, "Could not disable port %d after %d ms\n", |
| 915 | port1, total_time); |
| 916 | |
| 917 | return hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_RX_DETECT); |
| 918 | } |
| 919 | |
Alan Stern | 8b28c75 | 2005-08-10 17:04:13 -0400 | [diff] [blame] | 920 | static int hub_port_disable(struct usb_hub *hub, int port1, int set_state) |
| 921 | { |
| 922 | struct usb_device *hdev = hub->hdev; |
Alan Stern | 0458d5b | 2007-05-04 11:52:20 -0400 | [diff] [blame] | 923 | int ret = 0; |
Alan Stern | 8b28c75 | 2005-08-10 17:04:13 -0400 | [diff] [blame] | 924 | |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 925 | if (hub->ports[port1 - 1]->child && set_state) |
| 926 | usb_set_device_state(hub->ports[port1 - 1]->child, |
Alan Stern | 8b28c75 | 2005-08-10 17:04:13 -0400 | [diff] [blame] | 927 | USB_STATE_NOTATTACHED); |
Sarah Sharp | 41e7e05 | 2012-11-14 16:42:32 -0800 | [diff] [blame] | 928 | if (!hub->error) { |
| 929 | if (hub_is_superspeed(hub->hdev)) |
| 930 | ret = hub_usb3_port_disable(hub, port1); |
| 931 | else |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 932 | ret = usb_clear_port_feature(hdev, port1, |
Sarah Sharp | 41e7e05 | 2012-11-14 16:42:32 -0800 | [diff] [blame] | 933 | USB_PORT_FEAT_ENABLE); |
| 934 | } |
Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 935 | if (ret && ret != -ENODEV) |
Alan Stern | 8b28c75 | 2005-08-10 17:04:13 -0400 | [diff] [blame] | 936 | dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n", |
Alan Stern | 0458d5b | 2007-05-04 11:52:20 -0400 | [diff] [blame] | 937 | port1, ret); |
Alan Stern | 8b28c75 | 2005-08-10 17:04:13 -0400 | [diff] [blame] | 938 | return ret; |
| 939 | } |
| 940 | |
Alan Stern | 0458d5b | 2007-05-04 11:52:20 -0400 | [diff] [blame] | 941 | /* |
Justin P. Mattock | 6d42fcd | 2011-02-26 20:33:56 -0800 | [diff] [blame] | 942 | * Disable a port and mark a logical connect-change event, so that some |
Alan Stern | 0458d5b | 2007-05-04 11:52:20 -0400 | [diff] [blame] | 943 | * time later khubd will disconnect() any existing usb_device on the port |
| 944 | * and will re-enumerate if there actually is a device attached. |
| 945 | */ |
| 946 | static void hub_port_logical_disconnect(struct usb_hub *hub, int port1) |
| 947 | { |
| 948 | dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1); |
| 949 | hub_port_disable(hub, port1, 1); |
| 950 | |
| 951 | /* FIXME let caller ask to power down the port: |
| 952 | * - some devices won't enumerate without a VBUS power cycle |
| 953 | * - SRP saves power that way |
| 954 | * - ... new call, TBD ... |
| 955 | * That's easy if this hub can switch power per-port, and |
| 956 | * khubd reactivates the port later (timer, SRP, etc). |
| 957 | * Powerdown must be optional, because of reset/DFU. |
| 958 | */ |
| 959 | |
| 960 | set_bit(port1, hub->change_bits); |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 961 | kick_khubd(hub); |
Alan Stern | 0458d5b | 2007-05-04 11:52:20 -0400 | [diff] [blame] | 962 | } |
| 963 | |
Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 964 | /** |
| 965 | * usb_remove_device - disable a device's port on its parent hub |
| 966 | * @udev: device to be disabled and removed |
| 967 | * Context: @udev locked, must be able to sleep. |
| 968 | * |
| 969 | * After @udev's port has been disabled, khubd is notified and it will |
| 970 | * see that the device has been disconnected. When the device is |
| 971 | * physically unplugged and something is plugged in, the events will |
| 972 | * be received and processed normally. |
Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 973 | * |
| 974 | * Return: 0 if successful. A negative error code otherwise. |
Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 975 | */ |
| 976 | int usb_remove_device(struct usb_device *udev) |
| 977 | { |
| 978 | struct usb_hub *hub; |
| 979 | struct usb_interface *intf; |
| 980 | |
| 981 | if (!udev->parent) /* Can't remove a root hub */ |
| 982 | return -EINVAL; |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 983 | hub = usb_hub_to_struct_hub(udev->parent); |
Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 984 | intf = to_usb_interface(hub->intfdev); |
| 985 | |
| 986 | usb_autopm_get_interface(intf); |
| 987 | set_bit(udev->portnum, hub->removed_bits); |
| 988 | hub_port_logical_disconnect(hub, udev->portnum); |
| 989 | usb_autopm_put_interface(intf); |
| 990 | return 0; |
| 991 | } |
| 992 | |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 993 | enum hub_activation_type { |
Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 994 | HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */ |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 995 | HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME, |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 996 | }; |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 997 | |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 998 | static void hub_init_func2(struct work_struct *ws); |
| 999 | static void hub_init_func3(struct work_struct *ws); |
| 1000 | |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1001 | static void hub_activate(struct usb_hub *hub, enum hub_activation_type type) |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1002 | { |
| 1003 | struct usb_device *hdev = hub->hdev; |
Sarah Sharp | 653a39d | 2010-12-23 11:12:42 -0800 | [diff] [blame] | 1004 | struct usb_hcd *hcd; |
| 1005 | int ret; |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1006 | int port1; |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1007 | int status; |
Alan Stern | 948fea3 | 2008-04-28 11:07:07 -0400 | [diff] [blame] | 1008 | bool need_debounce_delay = false; |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1009 | unsigned delay; |
| 1010 | |
| 1011 | /* Continue a partial initialization */ |
| 1012 | if (type == HUB_INIT2) |
| 1013 | goto init2; |
| 1014 | if (type == HUB_INIT3) |
| 1015 | goto init3; |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1016 | |
Elric Fu | a45aa3b | 2012-02-18 13:32:27 +0800 | [diff] [blame] | 1017 | /* The superspeed hub except for root hub has to use Hub Depth |
| 1018 | * value as an offset into the route string to locate the bits |
| 1019 | * it uses to determine the downstream port number. So hub driver |
| 1020 | * should send a set hub depth request to superspeed hub after |
| 1021 | * the superspeed hub is set configuration in initialization or |
| 1022 | * reset procedure. |
| 1023 | * |
| 1024 | * After a resume, port power should still be on. |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1025 | * For any other type of activation, turn it on. |
| 1026 | */ |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1027 | if (type != HUB_RESUME) { |
Elric Fu | a45aa3b | 2012-02-18 13:32:27 +0800 | [diff] [blame] | 1028 | if (hdev->parent && hub_is_superspeed(hdev)) { |
| 1029 | ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), |
| 1030 | HUB_SET_DEPTH, USB_RT_HUB, |
| 1031 | hdev->level - 1, 0, NULL, 0, |
| 1032 | USB_CTRL_SET_TIMEOUT); |
| 1033 | if (ret < 0) |
| 1034 | dev_err(hub->intfdev, |
| 1035 | "set hub depth failed\n"); |
| 1036 | } |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1037 | |
| 1038 | /* Speed up system boot by using a delayed_work for the |
| 1039 | * hub's initial power-up delays. This is pretty awkward |
| 1040 | * and the implementation looks like a home-brewed sort of |
| 1041 | * setjmp/longjmp, but it saves at least 100 ms for each |
| 1042 | * root hub (assuming usbcore is compiled into the kernel |
| 1043 | * rather than as a module). It adds up. |
| 1044 | * |
| 1045 | * This can't be done for HUB_RESUME or HUB_RESET_RESUME |
| 1046 | * because for those activation types the ports have to be |
| 1047 | * operational when we return. In theory this could be done |
| 1048 | * for HUB_POST_RESET, but it's easier not to. |
| 1049 | */ |
| 1050 | if (type == HUB_INIT) { |
| 1051 | delay = hub_power_on(hub, false); |
Tejun Heo | 77fa83c | 2014-03-07 10:24:48 -0500 | [diff] [blame] | 1052 | INIT_DELAYED_WORK(&hub->init_work, hub_init_func2); |
Shaibal Dutta | 22f6a0f | 2014-02-01 19:16:46 -0800 | [diff] [blame] | 1053 | queue_delayed_work(system_power_efficient_wq, |
| 1054 | &hub->init_work, |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1055 | msecs_to_jiffies(delay)); |
Alan Stern | 61fbeba | 2008-10-27 12:07:44 -0400 | [diff] [blame] | 1056 | |
| 1057 | /* Suppress autosuspend until init is done */ |
Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 1058 | usb_autopm_get_interface_no_resume( |
| 1059 | to_usb_interface(hub->intfdev)); |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1060 | return; /* Continues at init2: below */ |
Sarah Sharp | 653a39d | 2010-12-23 11:12:42 -0800 | [diff] [blame] | 1061 | } else if (type == HUB_RESET_RESUME) { |
| 1062 | /* The internal host controller state for the hub device |
| 1063 | * may be gone after a host power loss on system resume. |
| 1064 | * Update the device's info so the HW knows it's a hub. |
| 1065 | */ |
| 1066 | hcd = bus_to_hcd(hdev->bus); |
| 1067 | if (hcd->driver->update_hub_device) { |
| 1068 | ret = hcd->driver->update_hub_device(hcd, hdev, |
| 1069 | &hub->tt, GFP_NOIO); |
| 1070 | if (ret < 0) { |
| 1071 | dev_err(hub->intfdev, "Host not " |
| 1072 | "accepting hub info " |
| 1073 | "update.\n"); |
| 1074 | dev_err(hub->intfdev, "LS/FS devices " |
| 1075 | "and hubs may not work " |
| 1076 | "under this hub\n."); |
| 1077 | } |
| 1078 | } |
| 1079 | hub_power_on(hub, true); |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1080 | } else { |
| 1081 | hub_power_on(hub, true); |
| 1082 | } |
| 1083 | } |
| 1084 | init2: |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1085 | |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1086 | /* Check each port and set hub->change_bits to let khubd know |
| 1087 | * which ports need attention. |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1088 | */ |
| 1089 | for (port1 = 1; port1 <= hdev->maxchild; ++port1) { |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 1090 | struct usb_device *udev = hub->ports[port1 - 1]->child; |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1091 | u16 portstatus, portchange; |
| 1092 | |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1093 | portstatus = portchange = 0; |
| 1094 | status = hub_port_status(hub, port1, &portstatus, &portchange); |
| 1095 | if (udev || (portstatus & USB_PORT_STAT_CONNECTION)) |
| 1096 | dev_dbg(hub->intfdev, |
| 1097 | "port %d: status %04x change %04x\n", |
| 1098 | port1, portstatus, portchange); |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1099 | |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1100 | /* After anything other than HUB_RESUME (i.e., initialization |
| 1101 | * or any sort of reset), every port should be disabled. |
| 1102 | * Unconnected ports should likewise be disabled (paranoia), |
| 1103 | * and so should ports for which we have no usb_device. |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1104 | */ |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1105 | if ((portstatus & USB_PORT_STAT_ENABLE) && ( |
| 1106 | type != HUB_RESUME || |
| 1107 | !(portstatus & USB_PORT_STAT_CONNECTION) || |
| 1108 | !udev || |
| 1109 | udev->state == USB_STATE_NOTATTACHED)) { |
Andiry Xu | 9f0a6cd | 2010-05-07 18:09:27 +0800 | [diff] [blame] | 1110 | /* |
| 1111 | * USB3 protocol ports will automatically transition |
| 1112 | * to Enabled state when detect an USB3.0 device attach. |
Dan Williams | fd1ac4c | 2013-10-07 11:58:20 -0700 | [diff] [blame] | 1113 | * Do not disable USB3 protocol ports, just pretend |
| 1114 | * power was lost |
Andiry Xu | 9f0a6cd | 2010-05-07 18:09:27 +0800 | [diff] [blame] | 1115 | */ |
Dan Williams | fd1ac4c | 2013-10-07 11:58:20 -0700 | [diff] [blame] | 1116 | portstatus &= ~USB_PORT_STAT_ENABLE; |
| 1117 | if (!hub_is_superspeed(hdev)) |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1118 | usb_clear_port_feature(hdev, port1, |
Andiry Xu | 9f0a6cd | 2010-05-07 18:09:27 +0800 | [diff] [blame] | 1119 | USB_PORT_FEAT_ENABLE); |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1120 | } |
| 1121 | |
Alan Stern | 948fea3 | 2008-04-28 11:07:07 -0400 | [diff] [blame] | 1122 | /* Clear status-change flags; we'll debounce later */ |
| 1123 | if (portchange & USB_PORT_STAT_C_CONNECTION) { |
| 1124 | need_debounce_delay = true; |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1125 | usb_clear_port_feature(hub->hdev, port1, |
Alan Stern | 948fea3 | 2008-04-28 11:07:07 -0400 | [diff] [blame] | 1126 | USB_PORT_FEAT_C_CONNECTION); |
| 1127 | } |
| 1128 | if (portchange & USB_PORT_STAT_C_ENABLE) { |
| 1129 | need_debounce_delay = true; |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1130 | usb_clear_port_feature(hub->hdev, port1, |
Alan Stern | 948fea3 | 2008-04-28 11:07:07 -0400 | [diff] [blame] | 1131 | USB_PORT_FEAT_C_ENABLE); |
| 1132 | } |
Julius Werner | e92aee3 | 2013-10-15 17:45:00 -0700 | [diff] [blame] | 1133 | if (portchange & USB_PORT_STAT_C_RESET) { |
| 1134 | need_debounce_delay = true; |
| 1135 | usb_clear_port_feature(hub->hdev, port1, |
| 1136 | USB_PORT_FEAT_C_RESET); |
| 1137 | } |
Don Zickus | 79c3dd8 | 2011-11-03 09:07:18 -0400 | [diff] [blame] | 1138 | if ((portchange & USB_PORT_STAT_C_BH_RESET) && |
| 1139 | hub_is_superspeed(hub->hdev)) { |
| 1140 | need_debounce_delay = true; |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1141 | usb_clear_port_feature(hub->hdev, port1, |
Don Zickus | 79c3dd8 | 2011-11-03 09:07:18 -0400 | [diff] [blame] | 1142 | USB_PORT_FEAT_C_BH_PORT_RESET); |
| 1143 | } |
Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 1144 | /* We can forget about a "removed" device when there's a |
| 1145 | * physical disconnect or the connect status changes. |
| 1146 | */ |
| 1147 | if (!(portstatus & USB_PORT_STAT_CONNECTION) || |
| 1148 | (portchange & USB_PORT_STAT_C_CONNECTION)) |
| 1149 | clear_bit(port1, hub->removed_bits); |
| 1150 | |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1151 | if (!udev || udev->state == USB_STATE_NOTATTACHED) { |
| 1152 | /* Tell khubd to disconnect the device or |
| 1153 | * check for a new connection |
| 1154 | */ |
Shen Guang | 08d1dec | 2014-01-08 14:45:42 +0800 | [diff] [blame] | 1155 | if (udev || (portstatus & USB_PORT_STAT_CONNECTION) || |
| 1156 | (portstatus & USB_PORT_STAT_OVERCURRENT)) |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1157 | set_bit(port1, hub->change_bits); |
| 1158 | |
| 1159 | } else if (portstatus & USB_PORT_STAT_ENABLE) { |
Sarah Sharp | 72937e1 | 2012-01-24 11:46:50 -0800 | [diff] [blame] | 1160 | bool port_resumed = (portstatus & |
| 1161 | USB_PORT_STAT_LINK_STATE) == |
| 1162 | USB_SS_PORT_LS_U0; |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1163 | /* The power session apparently survived the resume. |
| 1164 | * If there was an overcurrent or suspend change |
| 1165 | * (i.e., remote wakeup request), have khubd |
Sarah Sharp | 72937e1 | 2012-01-24 11:46:50 -0800 | [diff] [blame] | 1166 | * take care of it. Look at the port link state |
| 1167 | * for USB 3.0 hubs, since they don't have a suspend |
| 1168 | * change bit, and they don't set the port link change |
| 1169 | * bit on device-initiated resume. |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1170 | */ |
Sarah Sharp | 72937e1 | 2012-01-24 11:46:50 -0800 | [diff] [blame] | 1171 | if (portchange || (hub_is_superspeed(hub->hdev) && |
| 1172 | port_resumed)) |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1173 | set_bit(port1, hub->change_bits); |
| 1174 | |
| 1175 | } else if (udev->persist_enabled) { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1176 | struct usb_port *port_dev = hub->ports[port1 - 1]; |
| 1177 | |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1178 | #ifdef CONFIG_PM |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1179 | udev->reset_resume = 1; |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1180 | #endif |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1181 | /* Don't set the change_bits when the device |
| 1182 | * was powered off. |
| 1183 | */ |
| 1184 | if (port_dev->power_is_on) |
| 1185 | set_bit(port1, hub->change_bits); |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 1186 | |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1187 | } else { |
| 1188 | /* The power session is gone; tell khubd */ |
| 1189 | usb_set_device_state(udev, USB_STATE_NOTATTACHED); |
| 1190 | set_bit(port1, hub->change_bits); |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1191 | } |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1192 | } |
| 1193 | |
Alan Stern | 948fea3 | 2008-04-28 11:07:07 -0400 | [diff] [blame] | 1194 | /* If no port-status-change flags were set, we don't need any |
| 1195 | * debouncing. If flags were set we can try to debounce the |
| 1196 | * ports all at once right now, instead of letting khubd do them |
| 1197 | * one at a time later on. |
| 1198 | * |
| 1199 | * If any port-status changes do occur during this delay, khubd |
| 1200 | * will see them later and handle them normally. |
| 1201 | */ |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1202 | if (need_debounce_delay) { |
| 1203 | delay = HUB_DEBOUNCE_STABLE; |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1204 | |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1205 | /* Don't do a long sleep inside a workqueue routine */ |
| 1206 | if (type == HUB_INIT2) { |
Tejun Heo | 77fa83c | 2014-03-07 10:24:48 -0500 | [diff] [blame] | 1207 | INIT_DELAYED_WORK(&hub->init_work, hub_init_func3); |
Shaibal Dutta | 22f6a0f | 2014-02-01 19:16:46 -0800 | [diff] [blame] | 1208 | queue_delayed_work(system_power_efficient_wq, |
| 1209 | &hub->init_work, |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1210 | msecs_to_jiffies(delay)); |
| 1211 | return; /* Continues at init3: below */ |
| 1212 | } else { |
| 1213 | msleep(delay); |
| 1214 | } |
| 1215 | } |
| 1216 | init3: |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1217 | hub->quiescing = 0; |
| 1218 | |
| 1219 | status = usb_submit_urb(hub->urb, GFP_NOIO); |
| 1220 | if (status < 0) |
| 1221 | dev_err(hub->intfdev, "activate --> %d\n", status); |
| 1222 | if (hub->has_indicators && blinkenlights) |
Shaibal Dutta | 22f6a0f | 2014-02-01 19:16:46 -0800 | [diff] [blame] | 1223 | queue_delayed_work(system_power_efficient_wq, |
| 1224 | &hub->leds, LED_CYCLE_PERIOD); |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1225 | |
| 1226 | /* Scan all ports that need attention */ |
| 1227 | kick_khubd(hub); |
Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 1228 | |
| 1229 | /* Allow autosuspend if it was suppressed */ |
| 1230 | if (type <= HUB_INIT3) |
| 1231 | usb_autopm_put_interface_async(to_usb_interface(hub->intfdev)); |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1232 | } |
| 1233 | |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1234 | /* Implement the continuations for the delays above */ |
| 1235 | static void hub_init_func2(struct work_struct *ws) |
| 1236 | { |
| 1237 | struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work); |
| 1238 | |
| 1239 | hub_activate(hub, HUB_INIT2); |
| 1240 | } |
| 1241 | |
| 1242 | static void hub_init_func3(struct work_struct *ws) |
| 1243 | { |
| 1244 | struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work); |
| 1245 | |
| 1246 | hub_activate(hub, HUB_INIT3); |
| 1247 | } |
| 1248 | |
Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 1249 | enum hub_quiescing_type { |
| 1250 | HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND |
| 1251 | }; |
| 1252 | |
| 1253 | static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type) |
| 1254 | { |
| 1255 | struct usb_device *hdev = hub->hdev; |
| 1256 | int i; |
| 1257 | |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1258 | cancel_delayed_work_sync(&hub->init_work); |
| 1259 | |
Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 1260 | /* khubd and related activity won't re-trigger */ |
| 1261 | hub->quiescing = 1; |
| 1262 | |
| 1263 | if (type != HUB_SUSPEND) { |
| 1264 | /* Disconnect all the children */ |
| 1265 | for (i = 0; i < hdev->maxchild; ++i) { |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 1266 | if (hub->ports[i]->child) |
| 1267 | usb_disconnect(&hub->ports[i]->child); |
Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 1268 | } |
| 1269 | } |
| 1270 | |
| 1271 | /* Stop khubd and related activity */ |
| 1272 | usb_kill_urb(hub->urb); |
| 1273 | if (hub->has_indicators) |
| 1274 | cancel_delayed_work_sync(&hub->leds); |
| 1275 | if (hub->tt.hub) |
Octavian Purdila | 036546b | 2012-10-23 11:33:12 +0300 | [diff] [blame] | 1276 | flush_work(&hub->tt.clear_work); |
Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 1277 | } |
| 1278 | |
Alan Stern | 3eb1491 | 2008-03-03 15:15:43 -0500 | [diff] [blame] | 1279 | /* caller has locked the hub device */ |
| 1280 | static int hub_pre_reset(struct usb_interface *intf) |
| 1281 | { |
| 1282 | struct usb_hub *hub = usb_get_intfdata(intf); |
| 1283 | |
Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 1284 | hub_quiesce(hub, HUB_PRE_RESET); |
Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 1285 | return 0; |
Alan Stern | 7d069b7 | 2005-11-18 12:06:34 -0500 | [diff] [blame] | 1286 | } |
| 1287 | |
| 1288 | /* caller has locked the hub device */ |
Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 1289 | static int hub_post_reset(struct usb_interface *intf) |
Alan Stern | 7d069b7 | 2005-11-18 12:06:34 -0500 | [diff] [blame] | 1290 | { |
Alan Stern | 7de18d8 | 2006-06-01 13:37:24 -0400 | [diff] [blame] | 1291 | struct usb_hub *hub = usb_get_intfdata(intf); |
| 1292 | |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1293 | hub_activate(hub, HUB_POST_RESET); |
Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 1294 | return 0; |
Alan Stern | 7d069b7 | 2005-11-18 12:06:34 -0500 | [diff] [blame] | 1295 | } |
| 1296 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1297 | static int hub_configure(struct usb_hub *hub, |
| 1298 | struct usb_endpoint_descriptor *endpoint) |
| 1299 | { |
Sarah Sharp | b356b7c | 2009-09-04 10:53:24 -0700 | [diff] [blame] | 1300 | struct usb_hcd *hcd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | struct usb_device *hdev = hub->hdev; |
| 1302 | struct device *hub_dev = hub->intfdev; |
| 1303 | u16 hubstatus, hubchange; |
Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1304 | u16 wHubCharacteristics; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1305 | unsigned int pipe; |
Lan Tianyu | fa2a956 | 2012-09-05 13:44:31 +0800 | [diff] [blame] | 1306 | int maxp, ret, i; |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1307 | char *message = "out of memory"; |
Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1308 | unsigned unit_load; |
| 1309 | unsigned full_load; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | |
Alan Stern | d697cdd | 2009-10-27 15:18:46 -0400 | [diff] [blame] | 1311 | hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1312 | if (!hub->buffer) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | ret = -ENOMEM; |
| 1314 | goto fail; |
| 1315 | } |
| 1316 | |
| 1317 | hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL); |
| 1318 | if (!hub->status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | ret = -ENOMEM; |
| 1320 | goto fail; |
| 1321 | } |
Alan Stern | db90e7a | 2007-02-05 09:56:15 -0500 | [diff] [blame] | 1322 | mutex_init(&hub->status_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | |
| 1324 | hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL); |
| 1325 | if (!hub->descriptor) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | ret = -ENOMEM; |
| 1327 | goto fail; |
| 1328 | } |
| 1329 | |
| 1330 | /* Request the entire hub descriptor. |
| 1331 | * hub->descriptor can handle USB_MAXCHILDREN ports, |
| 1332 | * but the hub can/will return fewer bytes here. |
| 1333 | */ |
John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 1334 | ret = get_hub_descriptor(hdev, hub->descriptor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | if (ret < 0) { |
| 1336 | message = "can't read hub descriptor"; |
| 1337 | goto fail; |
| 1338 | } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) { |
| 1339 | message = "hub has too many ports!"; |
| 1340 | ret = -ENODEV; |
| 1341 | goto fail; |
David Linares | 769d7368 | 2013-03-25 10:50:27 +0000 | [diff] [blame] | 1342 | } else if (hub->descriptor->bNbrPorts == 0) { |
| 1343 | message = "hub doesn't have any ports!"; |
| 1344 | ret = -ENODEV; |
| 1345 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | } |
| 1347 | |
| 1348 | hdev->maxchild = hub->descriptor->bNbrPorts; |
| 1349 | dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild, |
| 1350 | (hdev->maxchild == 1) ? "" : "s"); |
| 1351 | |
Lan Tianyu | fa2a956 | 2012-09-05 13:44:31 +0800 | [diff] [blame] | 1352 | hub->ports = kzalloc(hdev->maxchild * sizeof(struct usb_port *), |
| 1353 | GFP_KERNEL); |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 1354 | if (!hub->ports) { |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1355 | ret = -ENOMEM; |
| 1356 | goto fail; |
| 1357 | } |
| 1358 | |
Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1359 | wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics); |
Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1360 | if (hub_is_superspeed(hdev)) { |
| 1361 | unit_load = 150; |
| 1362 | full_load = 900; |
| 1363 | } else { |
| 1364 | unit_load = 100; |
| 1365 | full_load = 500; |
| 1366 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1367 | |
John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 1368 | /* FIXME for USB 3.0, skip for now */ |
| 1369 | if ((wHubCharacteristics & HUB_CHAR_COMPOUND) && |
| 1370 | !(hub_is_superspeed(hdev))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1371 | int i; |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 1372 | char portstr[USB_MAXCHILDREN + 1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | |
| 1374 | for (i = 0; i < hdev->maxchild; i++) |
John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 1375 | portstr[i] = hub->descriptor->u.hs.DeviceRemovable |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1376 | [((i + 1) / 8)] & (1 << ((i + 1) % 8)) |
| 1377 | ? 'F' : 'R'; |
| 1378 | portstr[hdev->maxchild] = 0; |
| 1379 | dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr); |
| 1380 | } else |
| 1381 | dev_dbg(hub_dev, "standalone hub\n"); |
| 1382 | |
Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1383 | switch (wHubCharacteristics & HUB_CHAR_LPSM) { |
Aman Deep | 7bf0118 | 2011-12-08 12:05:22 +0530 | [diff] [blame] | 1384 | case HUB_CHAR_COMMON_LPSM: |
| 1385 | dev_dbg(hub_dev, "ganged power switching\n"); |
| 1386 | break; |
| 1387 | case HUB_CHAR_INDV_PORT_LPSM: |
| 1388 | dev_dbg(hub_dev, "individual port power switching\n"); |
| 1389 | break; |
| 1390 | case HUB_CHAR_NO_LPSM: |
| 1391 | case HUB_CHAR_LPSM: |
| 1392 | dev_dbg(hub_dev, "no power switching (usb 1.0)\n"); |
| 1393 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1394 | } |
| 1395 | |
Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1396 | switch (wHubCharacteristics & HUB_CHAR_OCPM) { |
Aman Deep | 7bf0118 | 2011-12-08 12:05:22 +0530 | [diff] [blame] | 1397 | case HUB_CHAR_COMMON_OCPM: |
| 1398 | dev_dbg(hub_dev, "global over-current protection\n"); |
| 1399 | break; |
| 1400 | case HUB_CHAR_INDV_PORT_OCPM: |
| 1401 | dev_dbg(hub_dev, "individual port over-current protection\n"); |
| 1402 | break; |
| 1403 | case HUB_CHAR_NO_OCPM: |
| 1404 | case HUB_CHAR_OCPM: |
| 1405 | dev_dbg(hub_dev, "no over-current protection\n"); |
| 1406 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1407 | } |
| 1408 | |
| 1409 | spin_lock_init (&hub->tt.lock); |
| 1410 | INIT_LIST_HEAD (&hub->tt.clear_list); |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 1411 | INIT_WORK(&hub->tt.clear_work, hub_tt_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1412 | switch (hdev->descriptor.bDeviceProtocol) { |
Aman Deep | 7bf0118 | 2011-12-08 12:05:22 +0530 | [diff] [blame] | 1413 | case USB_HUB_PR_FS: |
| 1414 | break; |
| 1415 | case USB_HUB_PR_HS_SINGLE_TT: |
| 1416 | dev_dbg(hub_dev, "Single TT\n"); |
| 1417 | hub->tt.hub = hdev; |
| 1418 | break; |
| 1419 | case USB_HUB_PR_HS_MULTI_TT: |
| 1420 | ret = usb_set_interface(hdev, 0, 1); |
| 1421 | if (ret == 0) { |
| 1422 | dev_dbg(hub_dev, "TT per port\n"); |
| 1423 | hub->tt.multi = 1; |
| 1424 | } else |
| 1425 | dev_err(hub_dev, "Using single TT (err %d)\n", |
| 1426 | ret); |
| 1427 | hub->tt.hub = hdev; |
| 1428 | break; |
| 1429 | case USB_HUB_PR_SS: |
| 1430 | /* USB 3.0 hubs don't have a TT */ |
| 1431 | break; |
| 1432 | default: |
| 1433 | dev_dbg(hub_dev, "Unrecognized hub protocol %d\n", |
| 1434 | hdev->descriptor.bDeviceProtocol); |
| 1435 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1436 | } |
| 1437 | |
david-b@pacbell.net | e09711a | 2005-08-13 18:41:04 -0700 | [diff] [blame] | 1438 | /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */ |
Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1439 | switch (wHubCharacteristics & HUB_CHAR_TTTT) { |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 1440 | case HUB_TTTT_8_BITS: |
| 1441 | if (hdev->descriptor.bDeviceProtocol != 0) { |
| 1442 | hub->tt.think_time = 666; |
david-b@pacbell.net | e09711a | 2005-08-13 18:41:04 -0700 | [diff] [blame] | 1443 | dev_dbg(hub_dev, "TT requires at most %d " |
| 1444 | "FS bit times (%d ns)\n", |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 1445 | 8, hub->tt.think_time); |
| 1446 | } |
| 1447 | break; |
| 1448 | case HUB_TTTT_16_BITS: |
| 1449 | hub->tt.think_time = 666 * 2; |
| 1450 | dev_dbg(hub_dev, "TT requires at most %d " |
| 1451 | "FS bit times (%d ns)\n", |
| 1452 | 16, hub->tt.think_time); |
| 1453 | break; |
| 1454 | case HUB_TTTT_24_BITS: |
| 1455 | hub->tt.think_time = 666 * 3; |
| 1456 | dev_dbg(hub_dev, "TT requires at most %d " |
| 1457 | "FS bit times (%d ns)\n", |
| 1458 | 24, hub->tt.think_time); |
| 1459 | break; |
| 1460 | case HUB_TTTT_32_BITS: |
| 1461 | hub->tt.think_time = 666 * 4; |
| 1462 | dev_dbg(hub_dev, "TT requires at most %d " |
| 1463 | "FS bit times (%d ns)\n", |
| 1464 | 32, hub->tt.think_time); |
| 1465 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1466 | } |
| 1467 | |
| 1468 | /* probe() zeroes hub->indicator[] */ |
Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1469 | if (wHubCharacteristics & HUB_CHAR_PORTIND) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | hub->has_indicators = 1; |
| 1471 | dev_dbg(hub_dev, "Port indicators are supported\n"); |
| 1472 | } |
| 1473 | |
| 1474 | dev_dbg(hub_dev, "power on to power good time: %dms\n", |
| 1475 | hub->descriptor->bPwrOn2PwrGood * 2); |
| 1476 | |
| 1477 | /* power budgeting mostly matters with bus-powered hubs, |
| 1478 | * and battery-powered root hubs (may provide just 8 mA). |
| 1479 | */ |
| 1480 | ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus); |
Alan Stern | 15b7336 | 2013-07-30 15:35:40 -0400 | [diff] [blame] | 1481 | if (ret) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1482 | message = "can't get hub status"; |
| 1483 | goto fail; |
| 1484 | } |
Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1485 | hcd = bus_to_hcd(hdev->bus); |
Alan Stern | 7d35b92 | 2005-04-25 11:18:32 -0400 | [diff] [blame] | 1486 | if (hdev == hdev->bus->root_hub) { |
Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1487 | if (hcd->power_budget > 0) |
| 1488 | hdev->bus_mA = hcd->power_budget; |
| 1489 | else |
| 1490 | hdev->bus_mA = full_load * hdev->maxchild; |
| 1491 | if (hdev->bus_mA >= full_load) |
| 1492 | hub->mA_per_port = full_load; |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 1493 | else { |
| 1494 | hub->mA_per_port = hdev->bus_mA; |
| 1495 | hub->limited_power = 1; |
| 1496 | } |
Alan Stern | 7d35b92 | 2005-04-25 11:18:32 -0400 | [diff] [blame] | 1497 | } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) { |
Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1498 | int remaining = hdev->bus_mA - |
| 1499 | hub->descriptor->bHubContrCurrent; |
| 1500 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 | dev_dbg(hub_dev, "hub controller current requirement: %dmA\n", |
| 1502 | hub->descriptor->bHubContrCurrent); |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 1503 | hub->limited_power = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | |
Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1505 | if (remaining < hdev->maxchild * unit_load) |
| 1506 | dev_warn(hub_dev, |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 1507 | "insufficient power available " |
| 1508 | "to use all downstream ports\n"); |
Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1509 | hub->mA_per_port = unit_load; /* 7.2.1 */ |
| 1510 | |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 1511 | } else { /* Self-powered external hub */ |
| 1512 | /* FIXME: What about battery-powered external hubs that |
| 1513 | * provide less current per port? */ |
Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1514 | hub->mA_per_port = full_load; |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 1515 | } |
Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1516 | if (hub->mA_per_port < full_load) |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 1517 | dev_dbg(hub_dev, "%umA bus power budget for each child\n", |
| 1518 | hub->mA_per_port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | |
Sarah Sharp | b356b7c | 2009-09-04 10:53:24 -0700 | [diff] [blame] | 1520 | /* Update the HCD's internal representation of this hub before khubd |
| 1521 | * starts getting port status changes for devices under the hub. |
| 1522 | */ |
Sarah Sharp | b356b7c | 2009-09-04 10:53:24 -0700 | [diff] [blame] | 1523 | if (hcd->driver->update_hub_device) { |
| 1524 | ret = hcd->driver->update_hub_device(hcd, hdev, |
| 1525 | &hub->tt, GFP_KERNEL); |
| 1526 | if (ret < 0) { |
| 1527 | message = "can't update HCD hub info"; |
| 1528 | goto fail; |
| 1529 | } |
| 1530 | } |
| 1531 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1532 | ret = hub_hub_status(hub, &hubstatus, &hubchange); |
| 1533 | if (ret < 0) { |
| 1534 | message = "can't get hub status"; |
| 1535 | goto fail; |
| 1536 | } |
| 1537 | |
| 1538 | /* local power status reports aren't always correct */ |
| 1539 | if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER) |
| 1540 | dev_dbg(hub_dev, "local power source is %s\n", |
| 1541 | (hubstatus & HUB_STATUS_LOCAL_POWER) |
| 1542 | ? "lost (inactive)" : "good"); |
| 1543 | |
Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1544 | if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1545 | dev_dbg(hub_dev, "%sover-current condition exists\n", |
| 1546 | (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no "); |
| 1547 | |
inaky@linux.intel.com | 88fafff | 2006-10-11 20:05:59 -0700 | [diff] [blame] | 1548 | /* set up the interrupt endpoint |
| 1549 | * We use the EP's maxpacket size instead of (PORTS+1+7)/8 |
| 1550 | * bytes as USB2.0[11.12.3] says because some hubs are known |
| 1551 | * to send more data (and thus cause overflow). For root hubs, |
| 1552 | * maxpktsize is defined in hcd.c's fake endpoint descriptors |
| 1553 | * to be big enough for at least USB_MAXCHILDREN ports. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1554 | pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress); |
| 1555 | maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe)); |
| 1556 | |
| 1557 | if (maxp > sizeof(*hub->buffer)) |
| 1558 | maxp = sizeof(*hub->buffer); |
| 1559 | |
| 1560 | hub->urb = usb_alloc_urb(0, GFP_KERNEL); |
| 1561 | if (!hub->urb) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | ret = -ENOMEM; |
| 1563 | goto fail; |
| 1564 | } |
| 1565 | |
| 1566 | usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq, |
| 1567 | hub, endpoint->bInterval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1568 | |
| 1569 | /* maybe cycle the hub leds */ |
| 1570 | if (hub->has_indicators && blinkenlights) |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 1571 | hub->indicator[0] = INDICATOR_CYCLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | |
Krzysztof Mazur | e58547e | 2013-08-22 14:49:39 +0200 | [diff] [blame] | 1573 | for (i = 0; i < hdev->maxchild; i++) { |
| 1574 | ret = usb_hub_create_port_device(hub, i + 1); |
| 1575 | if (ret < 0) { |
Lan Tianyu | fa2a956 | 2012-09-05 13:44:31 +0800 | [diff] [blame] | 1576 | dev_err(hub->intfdev, |
| 1577 | "couldn't create port%d device.\n", i + 1); |
Krzysztof Mazur | e58547e | 2013-08-22 14:49:39 +0200 | [diff] [blame] | 1578 | hdev->maxchild = i; |
| 1579 | goto fail_keep_maxchild; |
| 1580 | } |
| 1581 | } |
Lan Tianyu | fa2a956 | 2012-09-05 13:44:31 +0800 | [diff] [blame] | 1582 | |
Lan Tianyu | d2123fd | 2013-01-21 22:18:00 +0800 | [diff] [blame] | 1583 | usb_hub_adjust_deviceremovable(hdev, hub->descriptor); |
| 1584 | |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1585 | hub_activate(hub, HUB_INIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | return 0; |
| 1587 | |
| 1588 | fail: |
Krzysztof Mazur | d0308d4 | 2013-08-22 14:49:38 +0200 | [diff] [blame] | 1589 | hdev->maxchild = 0; |
Krzysztof Mazur | e58547e | 2013-08-22 14:49:39 +0200 | [diff] [blame] | 1590 | fail_keep_maxchild: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | dev_err (hub_dev, "config failed, %s (err %d)\n", |
| 1592 | message, ret); |
| 1593 | /* hub_disconnect() frees urb and descriptor */ |
| 1594 | return ret; |
| 1595 | } |
| 1596 | |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1597 | static void hub_release(struct kref *kref) |
| 1598 | { |
| 1599 | struct usb_hub *hub = container_of(kref, struct usb_hub, kref); |
| 1600 | |
| 1601 | usb_put_intf(to_usb_interface(hub->intfdev)); |
| 1602 | kfree(hub); |
| 1603 | } |
| 1604 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | static unsigned highspeed_hubs; |
| 1606 | |
| 1607 | static void hub_disconnect(struct usb_interface *intf) |
| 1608 | { |
Huajun Li | 8816230 | 2012-03-12 21:00:19 +0800 | [diff] [blame] | 1609 | struct usb_hub *hub = usb_get_intfdata(intf); |
Greg Kroah-Hartman | fa28618 | 2012-05-14 09:20:37 -0700 | [diff] [blame] | 1610 | struct usb_device *hdev = interface_to_usbdev(intf); |
Alan Stern | 543d778 | 2014-01-07 10:43:02 -0500 | [diff] [blame] | 1611 | int port1; |
Lan Tianyu | fa2a956 | 2012-09-05 13:44:31 +0800 | [diff] [blame] | 1612 | |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1613 | /* Take the hub off the event list and don't let it be added again */ |
| 1614 | spin_lock_irq(&hub_event_lock); |
Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 1615 | if (!list_empty(&hub->event_list)) { |
| 1616 | list_del_init(&hub->event_list); |
| 1617 | usb_autopm_put_interface_no_suspend(intf); |
| 1618 | } |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1619 | hub->disconnected = 1; |
| 1620 | spin_unlock_irq(&hub_event_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1621 | |
Alan Stern | 7de18d8 | 2006-06-01 13:37:24 -0400 | [diff] [blame] | 1622 | /* Disconnect all children and quiesce the hub */ |
| 1623 | hub->error = 0; |
Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 1624 | hub_quiesce(hub, HUB_DISCONNECT); |
Alan Stern | 7de18d8 | 2006-06-01 13:37:24 -0400 | [diff] [blame] | 1625 | |
Alan Stern | 543d778 | 2014-01-07 10:43:02 -0500 | [diff] [blame] | 1626 | /* Avoid races with recursively_mark_NOTATTACHED() */ |
| 1627 | spin_lock_irq(&device_state_lock); |
| 1628 | port1 = hdev->maxchild; |
| 1629 | hdev->maxchild = 0; |
| 1630 | usb_set_intfdata(intf, NULL); |
| 1631 | spin_unlock_irq(&device_state_lock); |
Alexander Shishkin | 1f2235b | 2012-09-12 14:48:31 +0300 | [diff] [blame] | 1632 | |
Alan Stern | 543d778 | 2014-01-07 10:43:02 -0500 | [diff] [blame] | 1633 | for (; port1 > 0; --port1) |
| 1634 | usb_hub_remove_port_device(hub, port1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1635 | |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1636 | if (hub->hdev->speed == USB_SPEED_HIGH) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1637 | highspeed_hubs--; |
| 1638 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1639 | usb_free_urb(hub->urb); |
Lan Tianyu | fa2a956 | 2012-09-05 13:44:31 +0800 | [diff] [blame] | 1640 | kfree(hub->ports); |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1641 | kfree(hub->descriptor); |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1642 | kfree(hub->status); |
Alan Stern | d697cdd | 2009-10-27 15:18:46 -0400 | [diff] [blame] | 1643 | kfree(hub->buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | |
Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 1645 | pm_suspend_ignore_children(&intf->dev, false); |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1646 | kref_put(&hub->kref, hub_release); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1647 | } |
| 1648 | |
| 1649 | static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id) |
| 1650 | { |
| 1651 | struct usb_host_interface *desc; |
| 1652 | struct usb_endpoint_descriptor *endpoint; |
| 1653 | struct usb_device *hdev; |
| 1654 | struct usb_hub *hub; |
| 1655 | |
| 1656 | desc = intf->cur_altsetting; |
| 1657 | hdev = interface_to_usbdev(intf); |
| 1658 | |
Ming Lei | 596d789 | 2012-10-24 11:59:25 +0800 | [diff] [blame] | 1659 | /* |
| 1660 | * Set default autosuspend delay as 0 to speedup bus suspend, |
| 1661 | * based on the below considerations: |
| 1662 | * |
| 1663 | * - Unlike other drivers, the hub driver does not rely on the |
| 1664 | * autosuspend delay to provide enough time to handle a wakeup |
| 1665 | * event, and the submitted status URB is just to check future |
| 1666 | * change on hub downstream ports, so it is safe to do it. |
| 1667 | * |
| 1668 | * - The patch might cause one or more auto supend/resume for |
| 1669 | * below very rare devices when they are plugged into hub |
| 1670 | * first time: |
| 1671 | * |
| 1672 | * devices having trouble initializing, and disconnect |
| 1673 | * themselves from the bus and then reconnect a second |
| 1674 | * or so later |
| 1675 | * |
| 1676 | * devices just for downloading firmware, and disconnects |
| 1677 | * themselves after completing it |
| 1678 | * |
| 1679 | * For these quite rare devices, their drivers may change the |
| 1680 | * autosuspend delay of their parent hub in the probe() to one |
| 1681 | * appropriate value to avoid the subtle problem if someone |
| 1682 | * does care it. |
| 1683 | * |
| 1684 | * - The patch may cause one or more auto suspend/resume on |
| 1685 | * hub during running 'lsusb', but it is probably too |
| 1686 | * infrequent to worry about. |
| 1687 | * |
| 1688 | * - Change autosuspend delay of hub can avoid unnecessary auto |
| 1689 | * suspend timer for hub, also may decrease power consumption |
| 1690 | * of USB bus. |
| 1691 | */ |
| 1692 | pm_runtime_set_autosuspend_delay(&hdev->dev, 0); |
| 1693 | |
Sarah Sharp | 2839f5b | 2012-01-06 16:27:25 -0800 | [diff] [blame] | 1694 | /* Hubs have proper suspend/resume support. */ |
| 1695 | usb_enable_autosuspend(hdev); |
Alan Stern | 088f7fe | 2010-01-08 12:56:54 -0500 | [diff] [blame] | 1696 | |
Felipe Balbi | 38f3ad5 | 2008-06-12 10:49:47 +0300 | [diff] [blame] | 1697 | if (hdev->level == MAX_TOPO_LEVEL) { |
Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 1698 | dev_err(&intf->dev, |
| 1699 | "Unsupported bus topology: hub nested too deep\n"); |
Felipe Balbi | 38f3ad5 | 2008-06-12 10:49:47 +0300 | [diff] [blame] | 1700 | return -E2BIG; |
| 1701 | } |
| 1702 | |
David Brownell | 89ccbdc | 2006-04-02 10:18:09 -0800 | [diff] [blame] | 1703 | #ifdef CONFIG_USB_OTG_BLACKLIST_HUB |
| 1704 | if (hdev->parent) { |
| 1705 | dev_warn(&intf->dev, "ignoring external hub\n"); |
| 1706 | return -ENODEV; |
| 1707 | } |
| 1708 | #endif |
| 1709 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1710 | /* Some hubs have a subclass of 1, which AFAICT according to the */ |
| 1711 | /* specs is not defined, but it works */ |
| 1712 | if ((desc->desc.bInterfaceSubClass != 0) && |
| 1713 | (desc->desc.bInterfaceSubClass != 1)) { |
| 1714 | descriptor_error: |
| 1715 | dev_err (&intf->dev, "bad descriptor, ignoring hub\n"); |
| 1716 | return -EIO; |
| 1717 | } |
| 1718 | |
| 1719 | /* Multiple endpoints? What kind of mutant ninja-hub is this? */ |
| 1720 | if (desc->desc.bNumEndpoints != 1) |
| 1721 | goto descriptor_error; |
| 1722 | |
| 1723 | endpoint = &desc->endpoint[0].desc; |
| 1724 | |
Luiz Fernando N. Capitulino | fbf81c2 | 2006-09-27 11:58:53 -0700 | [diff] [blame] | 1725 | /* If it's not an interrupt in endpoint, we'd better punt! */ |
| 1726 | if (!usb_endpoint_is_int_in(endpoint)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | goto descriptor_error; |
| 1728 | |
| 1729 | /* We found a hub */ |
| 1730 | dev_info (&intf->dev, "USB hub found\n"); |
| 1731 | |
Alan Stern | 0a1ef3b | 2005-10-24 15:38:24 -0400 | [diff] [blame] | 1732 | hub = kzalloc(sizeof(*hub), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1733 | if (!hub) { |
| 1734 | dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n"); |
| 1735 | return -ENOMEM; |
| 1736 | } |
| 1737 | |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1738 | kref_init(&hub->kref); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1739 | INIT_LIST_HEAD(&hub->event_list); |
| 1740 | hub->intfdev = &intf->dev; |
| 1741 | hub->hdev = hdev; |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1742 | INIT_DELAYED_WORK(&hub->leds, led_work); |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1743 | INIT_DELAYED_WORK(&hub->init_work, NULL); |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1744 | usb_get_intf(intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1745 | |
| 1746 | usb_set_intfdata (intf, hub); |
Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 1747 | intf->needs_remote_wakeup = 1; |
Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 1748 | pm_suspend_ignore_children(&intf->dev, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | |
| 1750 | if (hdev->speed == USB_SPEED_HIGH) |
| 1751 | highspeed_hubs++; |
| 1752 | |
Ming Lei | e6f30de | 2012-10-24 11:59:24 +0800 | [diff] [blame] | 1753 | if (id->driver_info & HUB_QUIRK_CHECK_PORT_AUTOSUSPEND) |
| 1754 | hub->quirk_check_port_auto_suspend = 1; |
| 1755 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1756 | if (hub_configure(hub, endpoint) >= 0) |
| 1757 | return 0; |
| 1758 | |
| 1759 | hub_disconnect (intf); |
| 1760 | return -ENODEV; |
| 1761 | } |
| 1762 | |
| 1763 | static int |
| 1764 | hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data) |
| 1765 | { |
| 1766 | struct usb_device *hdev = interface_to_usbdev (intf); |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1767 | struct usb_hub *hub = usb_hub_to_struct_hub(hdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1768 | |
| 1769 | /* assert ifno == 0 (part of hub spec) */ |
| 1770 | switch (code) { |
| 1771 | case USBDEVFS_HUB_PORTINFO: { |
| 1772 | struct usbdevfs_hub_portinfo *info = user_data; |
| 1773 | int i; |
| 1774 | |
| 1775 | spin_lock_irq(&device_state_lock); |
| 1776 | if (hdev->devnum <= 0) |
| 1777 | info->nports = 0; |
| 1778 | else { |
| 1779 | info->nports = hdev->maxchild; |
| 1780 | for (i = 0; i < info->nports; i++) { |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 1781 | if (hub->ports[i]->child == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | info->port[i] = 0; |
| 1783 | else |
| 1784 | info->port[i] = |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 1785 | hub->ports[i]->child->devnum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1786 | } |
| 1787 | } |
| 1788 | spin_unlock_irq(&device_state_lock); |
| 1789 | |
| 1790 | return info->nports + 1; |
| 1791 | } |
| 1792 | |
| 1793 | default: |
| 1794 | return -ENOSYS; |
| 1795 | } |
| 1796 | } |
| 1797 | |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1798 | /* |
| 1799 | * Allow user programs to claim ports on a hub. When a device is attached |
| 1800 | * to one of these "claimed" ports, the program will "own" the device. |
| 1801 | */ |
| 1802 | static int find_port_owner(struct usb_device *hdev, unsigned port1, |
Valentina Manea | 9b6f0c4 | 2014-03-10 10:36:40 +0200 | [diff] [blame] | 1803 | struct usb_dev_state ***ppowner) |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1804 | { |
Mathias Nyman | 4134126 | 2013-06-18 17:28:48 +0300 | [diff] [blame] | 1805 | struct usb_hub *hub = usb_hub_to_struct_hub(hdev); |
| 1806 | |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1807 | if (hdev->state == USB_STATE_NOTATTACHED) |
| 1808 | return -ENODEV; |
| 1809 | if (port1 == 0 || port1 > hdev->maxchild) |
| 1810 | return -EINVAL; |
| 1811 | |
Mathias Nyman | 4134126 | 2013-06-18 17:28:48 +0300 | [diff] [blame] | 1812 | /* Devices not managed by the hub driver |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1813 | * will always have maxchild equal to 0. |
| 1814 | */ |
Mathias Nyman | 4134126 | 2013-06-18 17:28:48 +0300 | [diff] [blame] | 1815 | *ppowner = &(hub->ports[port1 - 1]->port_owner); |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1816 | return 0; |
| 1817 | } |
| 1818 | |
| 1819 | /* In the following three functions, the caller must hold hdev's lock */ |
Lan Tianyu | 336c5c3 | 2012-07-06 14:13:52 +0800 | [diff] [blame] | 1820 | int usb_hub_claim_port(struct usb_device *hdev, unsigned port1, |
Valentina Manea | 9b6f0c4 | 2014-03-10 10:36:40 +0200 | [diff] [blame] | 1821 | struct usb_dev_state *owner) |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1822 | { |
| 1823 | int rc; |
Valentina Manea | 9b6f0c4 | 2014-03-10 10:36:40 +0200 | [diff] [blame] | 1824 | struct usb_dev_state **powner; |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1825 | |
| 1826 | rc = find_port_owner(hdev, port1, &powner); |
| 1827 | if (rc) |
| 1828 | return rc; |
| 1829 | if (*powner) |
| 1830 | return -EBUSY; |
| 1831 | *powner = owner; |
| 1832 | return rc; |
| 1833 | } |
Valentina Manea | 6080cd0 | 2014-03-08 14:53:34 +0200 | [diff] [blame] | 1834 | EXPORT_SYMBOL_GPL(usb_hub_claim_port); |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1835 | |
Lan Tianyu | 336c5c3 | 2012-07-06 14:13:52 +0800 | [diff] [blame] | 1836 | int usb_hub_release_port(struct usb_device *hdev, unsigned port1, |
Valentina Manea | 9b6f0c4 | 2014-03-10 10:36:40 +0200 | [diff] [blame] | 1837 | struct usb_dev_state *owner) |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1838 | { |
| 1839 | int rc; |
Valentina Manea | 9b6f0c4 | 2014-03-10 10:36:40 +0200 | [diff] [blame] | 1840 | struct usb_dev_state **powner; |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1841 | |
| 1842 | rc = find_port_owner(hdev, port1, &powner); |
| 1843 | if (rc) |
| 1844 | return rc; |
| 1845 | if (*powner != owner) |
| 1846 | return -ENOENT; |
| 1847 | *powner = NULL; |
| 1848 | return rc; |
| 1849 | } |
Valentina Manea | 6080cd0 | 2014-03-08 14:53:34 +0200 | [diff] [blame] | 1850 | EXPORT_SYMBOL_GPL(usb_hub_release_port); |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1851 | |
Valentina Manea | 9b6f0c4 | 2014-03-10 10:36:40 +0200 | [diff] [blame] | 1852 | void usb_hub_release_all_ports(struct usb_device *hdev, struct usb_dev_state *owner) |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1853 | { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1854 | struct usb_hub *hub = usb_hub_to_struct_hub(hdev); |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1855 | int n; |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1856 | |
Lan Tianyu | fa2a956 | 2012-09-05 13:44:31 +0800 | [diff] [blame] | 1857 | for (n = 0; n < hdev->maxchild; n++) { |
| 1858 | if (hub->ports[n]->port_owner == owner) |
| 1859 | hub->ports[n]->port_owner = NULL; |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1860 | } |
Lan Tianyu | fa2a956 | 2012-09-05 13:44:31 +0800 | [diff] [blame] | 1861 | |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1862 | } |
| 1863 | |
| 1864 | /* The caller must hold udev's lock */ |
| 1865 | bool usb_device_is_owned(struct usb_device *udev) |
| 1866 | { |
| 1867 | struct usb_hub *hub; |
| 1868 | |
| 1869 | if (udev->state == USB_STATE_NOTATTACHED || !udev->parent) |
| 1870 | return false; |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1871 | hub = usb_hub_to_struct_hub(udev->parent); |
Lan Tianyu | fa2a956 | 2012-09-05 13:44:31 +0800 | [diff] [blame] | 1872 | return !!hub->ports[udev->portnum - 1]->port_owner; |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1873 | } |
| 1874 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1875 | static void recursively_mark_NOTATTACHED(struct usb_device *udev) |
| 1876 | { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1877 | struct usb_hub *hub = usb_hub_to_struct_hub(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1878 | int i; |
| 1879 | |
| 1880 | for (i = 0; i < udev->maxchild; ++i) { |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 1881 | if (hub->ports[i]->child) |
| 1882 | recursively_mark_NOTATTACHED(hub->ports[i]->child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1883 | } |
Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 1884 | if (udev->state == USB_STATE_SUSPENDED) |
Sarah Sharp | 1512300 | 2007-12-21 16:54:15 -0800 | [diff] [blame] | 1885 | udev->active_duration -= jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1886 | udev->state = USB_STATE_NOTATTACHED; |
| 1887 | } |
| 1888 | |
| 1889 | /** |
| 1890 | * usb_set_device_state - change a device's current state (usbcore, hcds) |
| 1891 | * @udev: pointer to device whose state should be changed |
| 1892 | * @new_state: new state value to be stored |
| 1893 | * |
| 1894 | * udev->state is _not_ fully protected by the device lock. Although |
| 1895 | * most transitions are made only while holding the lock, the state can |
| 1896 | * can change to USB_STATE_NOTATTACHED at almost any time. This |
| 1897 | * is so that devices can be marked as disconnected as soon as possible, |
| 1898 | * without having to wait for any semaphores to be released. As a result, |
| 1899 | * all changes to any device's state must be protected by the |
| 1900 | * device_state_lock spinlock. |
| 1901 | * |
| 1902 | * Once a device has been added to the device tree, all changes to its state |
| 1903 | * should be made using this routine. The state should _not_ be set directly. |
| 1904 | * |
| 1905 | * If udev->state is already USB_STATE_NOTATTACHED then no change is made. |
| 1906 | * Otherwise udev->state is set to new_state, and if new_state is |
| 1907 | * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set |
| 1908 | * to USB_STATE_NOTATTACHED. |
| 1909 | */ |
| 1910 | void usb_set_device_state(struct usb_device *udev, |
| 1911 | enum usb_device_state new_state) |
| 1912 | { |
| 1913 | unsigned long flags; |
Rafael J. Wysocki | 4681b17 | 2011-02-08 23:25:48 +0100 | [diff] [blame] | 1914 | int wakeup = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1915 | |
| 1916 | spin_lock_irqsave(&device_state_lock, flags); |
| 1917 | if (udev->state == USB_STATE_NOTATTACHED) |
| 1918 | ; /* do nothing */ |
David Brownell | b94dc6b | 2005-09-12 19:39:39 -0700 | [diff] [blame] | 1919 | else if (new_state != USB_STATE_NOTATTACHED) { |
David Brownell | fb669cc | 2006-01-24 08:40:27 -0800 | [diff] [blame] | 1920 | |
| 1921 | /* root hub wakeup capabilities are managed out-of-band |
| 1922 | * and may involve silicon errata ... ignore them here. |
| 1923 | */ |
| 1924 | if (udev->parent) { |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 1925 | if (udev->state == USB_STATE_SUSPENDED |
| 1926 | || new_state == USB_STATE_SUSPENDED) |
| 1927 | ; /* No change to wakeup settings */ |
| 1928 | else if (new_state == USB_STATE_CONFIGURED) |
Rafael J. Wysocki | 4681b17 | 2011-02-08 23:25:48 +0100 | [diff] [blame] | 1929 | wakeup = udev->actconfig->desc.bmAttributes |
| 1930 | & USB_CONFIG_ATT_WAKEUP; |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 1931 | else |
Rafael J. Wysocki | 4681b17 | 2011-02-08 23:25:48 +0100 | [diff] [blame] | 1932 | wakeup = 0; |
David Brownell | fb669cc | 2006-01-24 08:40:27 -0800 | [diff] [blame] | 1933 | } |
Sarah Sharp | 1512300 | 2007-12-21 16:54:15 -0800 | [diff] [blame] | 1934 | if (udev->state == USB_STATE_SUSPENDED && |
| 1935 | new_state != USB_STATE_SUSPENDED) |
| 1936 | udev->active_duration -= jiffies; |
| 1937 | else if (new_state == USB_STATE_SUSPENDED && |
| 1938 | udev->state != USB_STATE_SUSPENDED) |
| 1939 | udev->active_duration += jiffies; |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 1940 | udev->state = new_state; |
David Brownell | b94dc6b | 2005-09-12 19:39:39 -0700 | [diff] [blame] | 1941 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1942 | recursively_mark_NOTATTACHED(udev); |
| 1943 | spin_unlock_irqrestore(&device_state_lock, flags); |
Rafael J. Wysocki | 4681b17 | 2011-02-08 23:25:48 +0100 | [diff] [blame] | 1944 | if (wakeup >= 0) |
| 1945 | device_set_wakeup_capable(&udev->dev, wakeup); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | } |
David Vrabel | 6da9c99 | 2009-02-18 14:43:47 +0000 | [diff] [blame] | 1947 | EXPORT_SYMBOL_GPL(usb_set_device_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | |
Inaky Perez-Gonzalez | 8af548d | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 1949 | /* |
Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 1950 | * Choose a device number. |
| 1951 | * |
| 1952 | * Device numbers are used as filenames in usbfs. On USB-1.1 and |
| 1953 | * USB-2.0 buses they are also used as device addresses, however on |
| 1954 | * USB-3.0 buses the address is assigned by the controller hardware |
| 1955 | * and it usually is not the same as the device number. |
| 1956 | * |
Inaky Perez-Gonzalez | 8af548d | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 1957 | * WUSB devices are simple: they have no hubs behind, so the mapping |
| 1958 | * device <-> virtual port number becomes 1:1. Why? to simplify the |
| 1959 | * life of the device connection logic in |
| 1960 | * drivers/usb/wusbcore/devconnect.c. When we do the initial secret |
| 1961 | * handshake we need to assign a temporary address in the unauthorized |
| 1962 | * space. For simplicity we use the first virtual port number found to |
| 1963 | * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()] |
| 1964 | * and that becomes it's address [X < 128] or its unauthorized address |
| 1965 | * [X | 0x80]. |
| 1966 | * |
| 1967 | * We add 1 as an offset to the one-based USB-stack port number |
| 1968 | * (zero-based wusb virtual port index) for two reasons: (a) dev addr |
| 1969 | * 0 is reserved by USB for default address; (b) Linux's USB stack |
| 1970 | * uses always #1 for the root hub of the controller. So USB stack's |
| 1971 | * port #1, which is wusb virtual-port #0 has address #2. |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 1972 | * |
| 1973 | * Devices connected under xHCI are not as simple. The host controller |
| 1974 | * supports virtualization, so the hardware assigns device addresses and |
| 1975 | * the HCD must setup data structures before issuing a set address |
| 1976 | * command to the hardware. |
Inaky Perez-Gonzalez | 8af548d | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 1977 | */ |
Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 1978 | static void choose_devnum(struct usb_device *udev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | { |
| 1980 | int devnum; |
| 1981 | struct usb_bus *bus = udev->bus; |
| 1982 | |
| 1983 | /* If khubd ever becomes multithreaded, this will need a lock */ |
Inaky Perez-Gonzalez | 8af548d | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 1984 | if (udev->wusb) { |
| 1985 | devnum = udev->portnum + 1; |
| 1986 | BUG_ON(test_bit(devnum, bus->devmap.devicemap)); |
| 1987 | } else { |
| 1988 | /* Try to allocate the next devnum beginning at |
| 1989 | * bus->devnum_next. */ |
| 1990 | devnum = find_next_zero_bit(bus->devmap.devicemap, 128, |
| 1991 | bus->devnum_next); |
| 1992 | if (devnum >= 128) |
| 1993 | devnum = find_next_zero_bit(bus->devmap.devicemap, |
| 1994 | 128, 1); |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 1995 | bus->devnum_next = (devnum >= 127 ? 1 : devnum + 1); |
Inaky Perez-Gonzalez | 8af548d | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 1996 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | if (devnum < 128) { |
| 1998 | set_bit(devnum, bus->devmap.devicemap); |
| 1999 | udev->devnum = devnum; |
| 2000 | } |
| 2001 | } |
| 2002 | |
Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 2003 | static void release_devnum(struct usb_device *udev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2004 | { |
| 2005 | if (udev->devnum > 0) { |
| 2006 | clear_bit(udev->devnum, udev->bus->devmap.devicemap); |
| 2007 | udev->devnum = -1; |
| 2008 | } |
| 2009 | } |
| 2010 | |
Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 2011 | static void update_devnum(struct usb_device *udev, int devnum) |
David Vrabel | 4953d14 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 2012 | { |
| 2013 | /* The address for a WUSB device is managed by wusbcore. */ |
| 2014 | if (!udev->wusb) |
| 2015 | udev->devnum = devnum; |
| 2016 | } |
| 2017 | |
Herbert Xu | f7410ce | 2010-01-10 20:15:03 +1100 | [diff] [blame] | 2018 | static void hub_free_dev(struct usb_device *udev) |
| 2019 | { |
| 2020 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); |
| 2021 | |
| 2022 | /* Root hubs aren't real devices, so don't free HCD resources */ |
| 2023 | if (hcd->driver->free_dev && udev->parent) |
| 2024 | hcd->driver->free_dev(hcd, udev); |
| 2025 | } |
| 2026 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | /** |
| 2028 | * usb_disconnect - disconnect a device (usbcore-internal) |
| 2029 | * @pdev: pointer to device being disconnected |
| 2030 | * Context: !in_interrupt () |
| 2031 | * |
| 2032 | * Something got disconnected. Get rid of it and all of its children. |
| 2033 | * |
| 2034 | * If *pdev is a normal device then the parent hub must already be locked. |
Bjorn Helgaas | db8f2aa | 2013-09-13 13:57:34 -0600 | [diff] [blame] | 2035 | * If *pdev is a root hub then the caller must hold the usb_bus_list_lock, |
| 2036 | * which protects the set of root hubs as well as the list of buses. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2037 | * |
| 2038 | * Only hub drivers (including virtual root hub drivers for host |
| 2039 | * controllers) should ever call this. |
| 2040 | * |
| 2041 | * This call is synchronous, and may not be used in an interrupt context. |
| 2042 | */ |
| 2043 | void usb_disconnect(struct usb_device **pdev) |
| 2044 | { |
| 2045 | struct usb_device *udev = *pdev; |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2046 | struct usb_hub *hub = usb_hub_to_struct_hub(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2047 | int i; |
| 2048 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2049 | /* mark the device as inactive, so any further urb submissions for |
| 2050 | * this device (and any of its children) will fail immediately. |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2051 | * this quiesces everything except pending urbs. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2052 | */ |
| 2053 | usb_set_device_state(udev, USB_STATE_NOTATTACHED); |
Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 2054 | dev_info(&udev->dev, "USB disconnect, device number %d\n", |
| 2055 | udev->devnum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2056 | |
Alan Stern | 9ad3d6c | 2005-11-17 17:10:32 -0500 | [diff] [blame] | 2057 | usb_lock_device(udev); |
| 2058 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2059 | /* Free up all the children before we remove this device */ |
Huajun Li | 8816230 | 2012-03-12 21:00:19 +0800 | [diff] [blame] | 2060 | for (i = 0; i < udev->maxchild; i++) { |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 2061 | if (hub->ports[i]->child) |
| 2062 | usb_disconnect(&hub->ports[i]->child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2063 | } |
| 2064 | |
| 2065 | /* deallocate hcd/hardware state ... nuking all pending urbs and |
| 2066 | * cleaning up all state associated with the current configuration |
| 2067 | * so that the hardware is now fully quiesced. |
| 2068 | */ |
Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 2069 | dev_dbg (&udev->dev, "unregistering device\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2070 | usb_disable_device(udev, 0); |
Alan Stern | cde217a | 2008-10-21 15:28:46 -0400 | [diff] [blame] | 2071 | usb_hcd_synchronize_unlinks(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2072 | |
Lan Tianyu | fde2638 | 2013-01-20 01:53:33 +0800 | [diff] [blame] | 2073 | if (udev->parent) { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2074 | struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent); |
| 2075 | struct usb_port *port_dev = hub->ports[udev->portnum - 1]; |
Lan Tianyu | fde2638 | 2013-01-20 01:53:33 +0800 | [diff] [blame] | 2076 | |
| 2077 | sysfs_remove_link(&udev->dev.kobj, "port"); |
| 2078 | sysfs_remove_link(&port_dev->dev.kobj, "device"); |
Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 2079 | |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2080 | if (!port_dev->did_runtime_put) |
| 2081 | pm_runtime_put(&port_dev->dev); |
| 2082 | else |
| 2083 | port_dev->did_runtime_put = false; |
Lan Tianyu | fde2638 | 2013-01-20 01:53:33 +0800 | [diff] [blame] | 2084 | } |
| 2085 | |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 2086 | usb_remove_ep_devs(&udev->ep0); |
Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 2087 | usb_unlock_device(udev); |
Greg Kroah-Hartman | 3099e75 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 2088 | |
Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 2089 | /* Unregister the device. The device driver is responsible |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 2090 | * for de-configuring the device and invoking the remove-device |
| 2091 | * notifier chain (used by usbfs and possibly others). |
Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 2092 | */ |
| 2093 | device_del(&udev->dev); |
| 2094 | |
| 2095 | /* Free the device number and delete the parent's children[] |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2096 | * (or root_hub) pointer. |
| 2097 | */ |
Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 2098 | release_devnum(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2099 | |
| 2100 | /* Avoid races with recursively_mark_NOTATTACHED() */ |
| 2101 | spin_lock_irq(&device_state_lock); |
| 2102 | *pdev = NULL; |
| 2103 | spin_unlock_irq(&device_state_lock); |
| 2104 | |
Herbert Xu | f7410ce | 2010-01-10 20:15:03 +1100 | [diff] [blame] | 2105 | hub_free_dev(udev); |
| 2106 | |
Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 2107 | put_device(&udev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2108 | } |
| 2109 | |
Greg Kroah-Hartman | f2a383e | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 2110 | #ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2111 | static void show_string(struct usb_device *udev, char *id, char *string) |
| 2112 | { |
| 2113 | if (!string) |
| 2114 | return; |
Joe Perches | f2ec522 | 2012-10-28 01:05:51 -0700 | [diff] [blame] | 2115 | dev_info(&udev->dev, "%s: %s\n", id, string); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | } |
| 2117 | |
Greg Kroah-Hartman | f2a383e | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 2118 | static void announce_device(struct usb_device *udev) |
| 2119 | { |
| 2120 | dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n", |
| 2121 | le16_to_cpu(udev->descriptor.idVendor), |
| 2122 | le16_to_cpu(udev->descriptor.idProduct)); |
Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 2123 | dev_info(&udev->dev, |
| 2124 | "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n", |
Greg Kroah-Hartman | f2a383e | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 2125 | udev->descriptor.iManufacturer, |
| 2126 | udev->descriptor.iProduct, |
| 2127 | udev->descriptor.iSerialNumber); |
| 2128 | show_string(udev, "Product", udev->product); |
| 2129 | show_string(udev, "Manufacturer", udev->manufacturer); |
| 2130 | show_string(udev, "SerialNumber", udev->serial); |
| 2131 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2132 | #else |
Greg Kroah-Hartman | f2a383e | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 2133 | static inline void announce_device(struct usb_device *udev) { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2134 | #endif |
| 2135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2136 | #ifdef CONFIG_USB_OTG |
| 2137 | #include "otg_whitelist.h" |
| 2138 | #endif |
| 2139 | |
Oliver Neukum | 3ede760 | 2007-01-11 14:35:50 +0100 | [diff] [blame] | 2140 | /** |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 2141 | * usb_enumerate_device_otg - FIXME (usbcore-internal) |
Oliver Neukum | 3ede760 | 2007-01-11 14:35:50 +0100 | [diff] [blame] | 2142 | * @udev: newly addressed device (in ADDRESS state) |
| 2143 | * |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 2144 | * Finish enumeration for On-The-Go devices |
Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 2145 | * |
| 2146 | * Return: 0 if successful. A negative error code otherwise. |
Oliver Neukum | 3ede760 | 2007-01-11 14:35:50 +0100 | [diff] [blame] | 2147 | */ |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 2148 | static int usb_enumerate_device_otg(struct usb_device *udev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2149 | { |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2150 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2151 | |
| 2152 | #ifdef CONFIG_USB_OTG |
| 2153 | /* |
| 2154 | * OTG-aware devices on OTG-capable root hubs may be able to use SRP, |
| 2155 | * to wake us after we've powered off VBUS; and HNP, switching roles |
| 2156 | * "host" to "peripheral". The OTG descriptor helps figure this out. |
| 2157 | */ |
| 2158 | if (!udev->bus->is_b_host |
| 2159 | && udev->config |
| 2160 | && udev->parent == udev->bus->root_hub) { |
Felipe Balbi | 2eb5052 | 2009-12-04 15:47:43 +0200 | [diff] [blame] | 2161 | struct usb_otg_descriptor *desc = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2162 | struct usb_bus *bus = udev->bus; |
| 2163 | |
| 2164 | /* descriptor may appear anywhere in config */ |
| 2165 | if (__usb_get_extra_descriptor (udev->rawdescriptors[0], |
| 2166 | le16_to_cpu(udev->config[0].desc.wTotalLength), |
| 2167 | USB_DT_OTG, (void **) &desc) == 0) { |
| 2168 | if (desc->bmAttributes & USB_OTG_HNP) { |
Alan Stern | 12c3da3 | 2005-11-23 12:09:52 -0500 | [diff] [blame] | 2169 | unsigned port1 = udev->portnum; |
David Brownell | fc849b8 | 2006-09-18 16:53:26 -0700 | [diff] [blame] | 2170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2171 | dev_info(&udev->dev, |
| 2172 | "Dual-Role OTG device on %sHNP port\n", |
| 2173 | (port1 == bus->otg_port) |
| 2174 | ? "" : "non-"); |
| 2175 | |
| 2176 | /* enable HNP before suspend, it's simpler */ |
| 2177 | if (port1 == bus->otg_port) |
| 2178 | bus->b_hnp_enable = 1; |
| 2179 | err = usb_control_msg(udev, |
| 2180 | usb_sndctrlpipe(udev, 0), |
| 2181 | USB_REQ_SET_FEATURE, 0, |
| 2182 | bus->b_hnp_enable |
| 2183 | ? USB_DEVICE_B_HNP_ENABLE |
| 2184 | : USB_DEVICE_A_ALT_HNP_SUPPORT, |
| 2185 | 0, NULL, 0, USB_CTRL_SET_TIMEOUT); |
| 2186 | if (err < 0) { |
| 2187 | /* OTG MESSAGE: report errors here, |
| 2188 | * customize to match your product. |
| 2189 | */ |
| 2190 | dev_info(&udev->dev, |
Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 2191 | "can't set HNP mode: %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2192 | err); |
| 2193 | bus->b_hnp_enable = 0; |
| 2194 | } |
| 2195 | } |
| 2196 | } |
| 2197 | } |
| 2198 | |
| 2199 | if (!is_targeted(udev)) { |
| 2200 | |
| 2201 | /* Maybe it can talk to us, though we can't talk to it. |
| 2202 | * (Includes HNP test device.) |
| 2203 | */ |
| 2204 | if (udev->bus->b_hnp_enable || udev->bus->is_b_host) { |
David Brownell | 634a84f | 2009-01-15 13:51:28 -0800 | [diff] [blame] | 2205 | err = usb_port_suspend(udev, PMSG_SUSPEND); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2206 | if (err < 0) |
| 2207 | dev_dbg(&udev->dev, "HNP fail, %d\n", err); |
| 2208 | } |
Vikram Pandita | ffcdc18 | 2007-05-25 21:31:07 -0700 | [diff] [blame] | 2209 | err = -ENOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2210 | goto fail; |
| 2211 | } |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2212 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | #endif |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2214 | return err; |
| 2215 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2216 | |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2217 | |
| 2218 | /** |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 2219 | * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal) |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2220 | * @udev: newly addressed device (in ADDRESS state) |
| 2221 | * |
| 2222 | * This is only called by usb_new_device() and usb_authorize_device() |
| 2223 | * and FIXME -- all comments that apply to them apply here wrt to |
| 2224 | * environment. |
| 2225 | * |
| 2226 | * If the device is WUSB and not authorized, we don't attempt to read |
| 2227 | * the string descriptors, as they will be errored out by the device |
| 2228 | * until it has been authorized. |
Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 2229 | * |
| 2230 | * Return: 0 if successful. A negative error code otherwise. |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2231 | */ |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 2232 | static int usb_enumerate_device(struct usb_device *udev) |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2233 | { |
| 2234 | int err; |
| 2235 | |
| 2236 | if (udev->config == NULL) { |
| 2237 | err = usb_get_configuration(udev); |
| 2238 | if (err < 0) { |
Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 2239 | if (err != -ENODEV) |
| 2240 | dev_err(&udev->dev, "can't read configurations, error %d\n", |
| 2241 | err); |
Laurent Pinchart | 80da2e0 | 2012-07-19 12:39:13 +0200 | [diff] [blame] | 2242 | return err; |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2243 | } |
| 2244 | } |
Thomas Pugliese | 83e83ec | 2013-12-09 13:40:29 -0600 | [diff] [blame] | 2245 | |
| 2246 | /* read the standard strings and cache them if present */ |
| 2247 | udev->product = usb_cache_string(udev, udev->descriptor.iProduct); |
| 2248 | udev->manufacturer = usb_cache_string(udev, |
| 2249 | udev->descriptor.iManufacturer); |
| 2250 | udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber); |
| 2251 | |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 2252 | err = usb_enumerate_device_otg(udev); |
Laurent Pinchart | 80da2e0 | 2012-07-19 12:39:13 +0200 | [diff] [blame] | 2253 | if (err < 0) |
| 2254 | return err; |
| 2255 | |
| 2256 | usb_detect_interface_quirks(udev); |
| 2257 | |
| 2258 | return 0; |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2259 | } |
| 2260 | |
Matthew Garrett | d35e70d | 2012-02-03 17:11:55 -0500 | [diff] [blame] | 2261 | static void set_usb_port_removable(struct usb_device *udev) |
| 2262 | { |
| 2263 | struct usb_device *hdev = udev->parent; |
| 2264 | struct usb_hub *hub; |
| 2265 | u8 port = udev->portnum; |
| 2266 | u16 wHubCharacteristics; |
| 2267 | bool removable = true; |
| 2268 | |
| 2269 | if (!hdev) |
| 2270 | return; |
| 2271 | |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2272 | hub = usb_hub_to_struct_hub(udev->parent); |
Matthew Garrett | d35e70d | 2012-02-03 17:11:55 -0500 | [diff] [blame] | 2273 | |
| 2274 | wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics); |
| 2275 | |
| 2276 | if (!(wHubCharacteristics & HUB_CHAR_COMPOUND)) |
| 2277 | return; |
| 2278 | |
| 2279 | if (hub_is_superspeed(hdev)) { |
Lan Tianyu | ca3c153 | 2012-09-11 04:22:36 +0800 | [diff] [blame] | 2280 | if (le16_to_cpu(hub->descriptor->u.ss.DeviceRemovable) |
| 2281 | & (1 << port)) |
Matthew Garrett | d35e70d | 2012-02-03 17:11:55 -0500 | [diff] [blame] | 2282 | removable = false; |
| 2283 | } else { |
| 2284 | if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8))) |
| 2285 | removable = false; |
| 2286 | } |
| 2287 | |
| 2288 | if (removable) |
| 2289 | udev->removable = USB_DEVICE_REMOVABLE; |
| 2290 | else |
| 2291 | udev->removable = USB_DEVICE_FIXED; |
| 2292 | } |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2293 | |
| 2294 | /** |
| 2295 | * usb_new_device - perform initial device setup (usbcore-internal) |
| 2296 | * @udev: newly addressed device (in ADDRESS state) |
| 2297 | * |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 2298 | * This is called with devices which have been detected but not fully |
| 2299 | * enumerated. The device descriptor is available, but not descriptors |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2300 | * for any device configuration. The caller must have locked either |
| 2301 | * the parent hub (if udev is a normal device) or else the |
| 2302 | * usb_bus_list_lock (if udev is a root hub). The parent's pointer to |
| 2303 | * udev has already been installed, but udev is not yet visible through |
| 2304 | * sysfs or other filesystem code. |
| 2305 | * |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2306 | * This call is synchronous, and may not be used in an interrupt context. |
| 2307 | * |
| 2308 | * Only the hub driver or root-hub registrar should ever call this. |
Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 2309 | * |
| 2310 | * Return: Whether the device is configured properly or not. Zero if the |
| 2311 | * interface was registered with the driver core; else a negative errno |
| 2312 | * value. |
| 2313 | * |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2314 | */ |
| 2315 | int usb_new_device(struct usb_device *udev) |
| 2316 | { |
| 2317 | int err; |
| 2318 | |
Dan Streetman | 1698540 | 2010-01-06 09:56:53 -0500 | [diff] [blame] | 2319 | if (udev->parent) { |
Dan Streetman | 1698540 | 2010-01-06 09:56:53 -0500 | [diff] [blame] | 2320 | /* Initialize non-root-hub device wakeup to disabled; |
| 2321 | * device (un)configuration controls wakeup capable |
| 2322 | * sysfs power/wakeup controls wakeup enabled/disabled |
| 2323 | */ |
| 2324 | device_init_wakeup(&udev->dev, 0); |
Dan Streetman | 1698540 | 2010-01-06 09:56:53 -0500 | [diff] [blame] | 2325 | } |
| 2326 | |
Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 2327 | /* Tell the runtime-PM framework the device is active */ |
| 2328 | pm_runtime_set_active(&udev->dev); |
Alan Stern | c08512c | 2010-11-15 15:57:58 -0500 | [diff] [blame] | 2329 | pm_runtime_get_noresume(&udev->dev); |
Alan Stern | fcc4a01 | 2010-11-15 15:57:51 -0500 | [diff] [blame] | 2330 | pm_runtime_use_autosuspend(&udev->dev); |
Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 2331 | pm_runtime_enable(&udev->dev); |
| 2332 | |
Alan Stern | c08512c | 2010-11-15 15:57:58 -0500 | [diff] [blame] | 2333 | /* By default, forbid autosuspend for all devices. It will be |
| 2334 | * allowed for hubs during binding. |
| 2335 | */ |
| 2336 | usb_disable_autosuspend(udev); |
| 2337 | |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 2338 | err = usb_enumerate_device(udev); /* Read descriptors */ |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2339 | if (err < 0) |
| 2340 | goto fail; |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 2341 | dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n", |
| 2342 | udev->devnum, udev->bus->busnum, |
| 2343 | (((udev->bus->busnum-1) * 128) + (udev->devnum-1))); |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 2344 | /* export the usbdev device-node for libusb */ |
| 2345 | udev->dev.devt = MKDEV(USB_DEVICE_MAJOR, |
| 2346 | (((udev->bus->busnum-1) * 128) + (udev->devnum-1))); |
| 2347 | |
Alan Stern | 6cd1320 | 2008-11-13 15:08:30 -0500 | [diff] [blame] | 2348 | /* Tell the world! */ |
| 2349 | announce_device(udev); |
Alan Stern | 195af2c | 2007-07-16 15:28:19 -0400 | [diff] [blame] | 2350 | |
Theodore Ts'o | b04b315 | 2012-07-04 11:22:20 -0400 | [diff] [blame] | 2351 | if (udev->serial) |
| 2352 | add_device_randomness(udev->serial, strlen(udev->serial)); |
| 2353 | if (udev->product) |
| 2354 | add_device_randomness(udev->product, strlen(udev->product)); |
| 2355 | if (udev->manufacturer) |
| 2356 | add_device_randomness(udev->manufacturer, |
| 2357 | strlen(udev->manufacturer)); |
| 2358 | |
Rafael J. Wysocki | 927bc91 | 2010-02-08 19:18:16 +0100 | [diff] [blame] | 2359 | device_enable_async_suspend(&udev->dev); |
Matthew Garrett | d35e70d | 2012-02-03 17:11:55 -0500 | [diff] [blame] | 2360 | |
| 2361 | /* |
| 2362 | * check whether the hub marks this port as non-removable. Do it |
| 2363 | * now so that platform-specific data can override it in |
| 2364 | * device_add() |
| 2365 | */ |
| 2366 | if (udev->parent) |
| 2367 | set_usb_port_removable(udev); |
| 2368 | |
Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 2369 | /* Register the device. The device driver is responsible |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 2370 | * for configuring the device and invoking the add-device |
| 2371 | * notifier chain (used by usbfs and possibly others). |
Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 2372 | */ |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 2373 | err = device_add(&udev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2374 | if (err) { |
| 2375 | dev_err(&udev->dev, "can't device_add, error %d\n", err); |
| 2376 | goto fail; |
| 2377 | } |
Alan Stern | 9ad3d6c | 2005-11-17 17:10:32 -0500 | [diff] [blame] | 2378 | |
Lan Tianyu | fde2638 | 2013-01-20 01:53:33 +0800 | [diff] [blame] | 2379 | /* Create link files between child device and usb port device. */ |
| 2380 | if (udev->parent) { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2381 | struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent); |
| 2382 | struct usb_port *port_dev = hub->ports[udev->portnum - 1]; |
Lan Tianyu | fde2638 | 2013-01-20 01:53:33 +0800 | [diff] [blame] | 2383 | |
| 2384 | err = sysfs_create_link(&udev->dev.kobj, |
| 2385 | &port_dev->dev.kobj, "port"); |
| 2386 | if (err) |
| 2387 | goto fail; |
| 2388 | |
| 2389 | err = sysfs_create_link(&port_dev->dev.kobj, |
| 2390 | &udev->dev.kobj, "device"); |
| 2391 | if (err) { |
| 2392 | sysfs_remove_link(&udev->dev.kobj, "port"); |
| 2393 | goto fail; |
| 2394 | } |
Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 2395 | |
| 2396 | pm_runtime_get_sync(&port_dev->dev); |
Lan Tianyu | fde2638 | 2013-01-20 01:53:33 +0800 | [diff] [blame] | 2397 | } |
| 2398 | |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 2399 | (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev); |
Alan Stern | c08512c | 2010-11-15 15:57:58 -0500 | [diff] [blame] | 2400 | usb_mark_last_busy(udev); |
| 2401 | pm_runtime_put_sync_autosuspend(&udev->dev); |
Greg Kroah-Hartman | c066475 | 2006-08-11 01:55:12 -0700 | [diff] [blame] | 2402 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2403 | |
| 2404 | fail: |
| 2405 | usb_set_device_state(udev, USB_STATE_NOTATTACHED); |
Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 2406 | pm_runtime_disable(&udev->dev); |
| 2407 | pm_runtime_set_suspended(&udev->dev); |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2408 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2409 | } |
| 2410 | |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2411 | |
| 2412 | /** |
Randy Dunlap | fd39c86 | 2007-10-15 17:30:02 -0700 | [diff] [blame] | 2413 | * usb_deauthorize_device - deauthorize a device (usbcore-internal) |
| 2414 | * @usb_dev: USB device |
| 2415 | * |
| 2416 | * Move the USB device to a very basic state where interfaces are disabled |
| 2417 | * and the device is in fact unconfigured and unusable. |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2418 | * |
| 2419 | * We share a lock (that we have) with device_del(), so we need to |
| 2420 | * defer its call. |
Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 2421 | * |
| 2422 | * Return: 0. |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2423 | */ |
| 2424 | int usb_deauthorize_device(struct usb_device *usb_dev) |
| 2425 | { |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2426 | usb_lock_device(usb_dev); |
| 2427 | if (usb_dev->authorized == 0) |
| 2428 | goto out_unauthorized; |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 2429 | |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2430 | usb_dev->authorized = 0; |
| 2431 | usb_set_configuration(usb_dev, -1); |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 2432 | |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2433 | out_unauthorized: |
| 2434 | usb_unlock_device(usb_dev); |
| 2435 | return 0; |
| 2436 | } |
| 2437 | |
| 2438 | |
| 2439 | int usb_authorize_device(struct usb_device *usb_dev) |
| 2440 | { |
| 2441 | int result = 0, c; |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 2442 | |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2443 | usb_lock_device(usb_dev); |
| 2444 | if (usb_dev->authorized == 1) |
| 2445 | goto out_authorized; |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 2446 | |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2447 | result = usb_autoresume_device(usb_dev); |
| 2448 | if (result < 0) { |
| 2449 | dev_err(&usb_dev->dev, |
| 2450 | "can't autoresume for authorization: %d\n", result); |
| 2451 | goto error_autoresume; |
| 2452 | } |
| 2453 | result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor)); |
| 2454 | if (result < 0) { |
| 2455 | dev_err(&usb_dev->dev, "can't re-read device descriptor for " |
| 2456 | "authorization: %d\n", result); |
| 2457 | goto error_device_descriptor; |
| 2458 | } |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 2459 | |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2460 | usb_dev->authorized = 1; |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2461 | /* Choose and set the configuration. This registers the interfaces |
| 2462 | * with the driver core and lets interface drivers bind to them. |
| 2463 | */ |
Greg Kroah-Hartman | b5ea060 | 2007-08-02 22:44:27 -0600 | [diff] [blame] | 2464 | c = usb_choose_configuration(usb_dev); |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2465 | if (c >= 0) { |
| 2466 | result = usb_set_configuration(usb_dev, c); |
| 2467 | if (result) { |
| 2468 | dev_err(&usb_dev->dev, |
| 2469 | "can't set config #%d, error %d\n", c, result); |
| 2470 | /* This need not be fatal. The user can try to |
| 2471 | * set other configurations. */ |
| 2472 | } |
| 2473 | } |
| 2474 | dev_info(&usb_dev->dev, "authorized to connect\n"); |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 2475 | |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2476 | error_device_descriptor: |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 2477 | usb_autosuspend_device(usb_dev); |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2478 | error_autoresume: |
| 2479 | out_authorized: |
Matthias Beyer | 781b213 | 2013-10-10 23:41:29 +0200 | [diff] [blame] | 2480 | usb_unlock_device(usb_dev); /* complements locktree */ |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2481 | return result; |
| 2482 | } |
| 2483 | |
| 2484 | |
Inaky Perez-Gonzalez | 0165de0 | 2006-08-25 19:35:29 -0700 | [diff] [blame] | 2485 | /* Returns 1 if @hub is a WUSB root hub, 0 otherwise */ |
| 2486 | static unsigned hub_is_wusb(struct usb_hub *hub) |
| 2487 | { |
| 2488 | struct usb_hcd *hcd; |
| 2489 | if (hub->hdev->parent != NULL) /* not a root hub? */ |
| 2490 | return 0; |
| 2491 | hcd = container_of(hub->hdev->bus, struct usb_hcd, self); |
| 2492 | return hcd->wireless; |
| 2493 | } |
| 2494 | |
| 2495 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2496 | #define PORT_RESET_TRIES 5 |
| 2497 | #define SET_ADDRESS_TRIES 2 |
| 2498 | #define GET_DESCRIPTOR_TRIES 2 |
| 2499 | #define SET_CONFIG_TRIES (2 * (use_both_schemes + 1)) |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 2500 | #define USE_NEW_SCHEME(i) ((i) / 2 == (int)old_scheme_first) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2501 | |
| 2502 | #define HUB_ROOT_RESET_TIME 50 /* times are in msec */ |
| 2503 | #define HUB_SHORT_RESET_TIME 10 |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2504 | #define HUB_BH_RESET_TIME 50 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2505 | #define HUB_LONG_RESET_TIME 200 |
Sarah Sharp | 77c7f07 | 2012-11-14 17:16:52 -0800 | [diff] [blame] | 2506 | #define HUB_RESET_TIMEOUT 800 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2507 | |
Dan Williams | 48fc7db | 2013-12-05 17:07:27 -0800 | [diff] [blame] | 2508 | /* |
| 2509 | * "New scheme" enumeration causes an extra state transition to be |
| 2510 | * exposed to an xhci host and causes USB3 devices to receive control |
| 2511 | * commands in the default state. This has been seen to cause |
| 2512 | * enumeration failures, so disable this enumeration scheme for USB3 |
| 2513 | * devices. |
| 2514 | */ |
| 2515 | static bool use_new_scheme(struct usb_device *udev, int retry) |
| 2516 | { |
| 2517 | if (udev->speed == USB_SPEED_SUPER) |
| 2518 | return false; |
| 2519 | |
| 2520 | return USE_NEW_SCHEME(retry); |
| 2521 | } |
| 2522 | |
Sarah Sharp | 10d674a | 2011-09-14 14:24:52 -0700 | [diff] [blame] | 2523 | static int hub_port_reset(struct usb_hub *hub, int port1, |
| 2524 | struct usb_device *udev, unsigned int delay, bool warm); |
| 2525 | |
Rahul Bedarkar | 025d443 | 2014-01-04 11:24:41 +0530 | [diff] [blame] | 2526 | /* Is a USB 3.0 port in the Inactive or Compliance Mode state? |
Stanislaw Ledwon | 8bea2bd | 2012-06-18 15:20:00 +0200 | [diff] [blame] | 2527 | * Port worm reset is required to recover |
| 2528 | */ |
| 2529 | static bool hub_port_warm_reset_required(struct usb_hub *hub, u16 portstatus) |
Sarah Sharp | 10d674a | 2011-09-14 14:24:52 -0700 | [diff] [blame] | 2530 | { |
| 2531 | return hub_is_superspeed(hub->hdev) && |
Stanislaw Ledwon | 8bea2bd | 2012-06-18 15:20:00 +0200 | [diff] [blame] | 2532 | (((portstatus & USB_PORT_STAT_LINK_STATE) == |
| 2533 | USB_SS_PORT_LS_SS_INACTIVE) || |
| 2534 | ((portstatus & USB_PORT_STAT_LINK_STATE) == |
| 2535 | USB_SS_PORT_LS_COMP_MOD)) ; |
Sarah Sharp | 10d674a | 2011-09-14 14:24:52 -0700 | [diff] [blame] | 2536 | } |
| 2537 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2538 | static int hub_port_wait_reset(struct usb_hub *hub, int port1, |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2539 | struct usb_device *udev, unsigned int delay, bool warm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2540 | { |
| 2541 | int delay_time, ret; |
| 2542 | u16 portstatus; |
| 2543 | u16 portchange; |
| 2544 | |
| 2545 | for (delay_time = 0; |
| 2546 | delay_time < HUB_RESET_TIMEOUT; |
| 2547 | delay_time += delay) { |
| 2548 | /* wait to give the device a chance to reset */ |
| 2549 | msleep(delay); |
| 2550 | |
| 2551 | /* read and decode port status */ |
| 2552 | ret = hub_port_status(hub, port1, &portstatus, &portchange); |
| 2553 | if (ret < 0) |
| 2554 | return ret; |
| 2555 | |
Sarah Sharp | 4f43447 | 2012-11-15 14:58:04 -0800 | [diff] [blame] | 2556 | /* The port state is unknown until the reset completes. */ |
Sarah Sharp | 470f0be | 2012-12-11 10:14:03 -0800 | [diff] [blame] | 2557 | if (!(portstatus & USB_PORT_STAT_RESET)) |
| 2558 | break; |
Sarah Sharp | 4f43447 | 2012-11-15 14:58:04 -0800 | [diff] [blame] | 2559 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2560 | /* switch to the long delay after two short delay failures */ |
| 2561 | if (delay_time >= 2 * HUB_SHORT_RESET_TIME) |
| 2562 | delay = HUB_LONG_RESET_TIME; |
| 2563 | |
| 2564 | dev_dbg (hub->intfdev, |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2565 | "port %d not %sreset yet, waiting %dms\n", |
| 2566 | port1, warm ? "warm " : "", delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2567 | } |
| 2568 | |
Sarah Sharp | 470f0be | 2012-12-11 10:14:03 -0800 | [diff] [blame] | 2569 | if ((portstatus & USB_PORT_STAT_RESET)) |
| 2570 | return -EBUSY; |
| 2571 | |
| 2572 | if (hub_port_warm_reset_required(hub, portstatus)) |
| 2573 | return -ENOTCONN; |
| 2574 | |
| 2575 | /* Device went away? */ |
| 2576 | if (!(portstatus & USB_PORT_STAT_CONNECTION)) |
| 2577 | return -ENOTCONN; |
| 2578 | |
| 2579 | /* bomb out completely if the connection bounced. A USB 3.0 |
| 2580 | * connection may bounce if multiple warm resets were issued, |
| 2581 | * but the device may have successfully re-connected. Ignore it. |
| 2582 | */ |
| 2583 | if (!hub_is_superspeed(hub->hdev) && |
| 2584 | (portchange & USB_PORT_STAT_C_CONNECTION)) |
| 2585 | return -ENOTCONN; |
| 2586 | |
| 2587 | if (!(portstatus & USB_PORT_STAT_ENABLE)) |
| 2588 | return -EBUSY; |
| 2589 | |
| 2590 | if (!udev) |
| 2591 | return 0; |
| 2592 | |
| 2593 | if (hub_is_wusb(hub)) |
| 2594 | udev->speed = USB_SPEED_WIRELESS; |
| 2595 | else if (hub_is_superspeed(hub->hdev)) |
| 2596 | udev->speed = USB_SPEED_SUPER; |
| 2597 | else if (portstatus & USB_PORT_STAT_HIGH_SPEED) |
| 2598 | udev->speed = USB_SPEED_HIGH; |
| 2599 | else if (portstatus & USB_PORT_STAT_LOW_SPEED) |
| 2600 | udev->speed = USB_SPEED_LOW; |
| 2601 | else |
| 2602 | udev->speed = USB_SPEED_FULL; |
| 2603 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2604 | } |
| 2605 | |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2606 | static void hub_port_finish_reset(struct usb_hub *hub, int port1, |
Sarah Sharp | a24a607 | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2607 | struct usb_device *udev, int *status) |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2608 | { |
| 2609 | switch (*status) { |
| 2610 | case 0: |
Sarah Sharp | a24a607 | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2611 | /* TRSTRCY = 10 ms; plus some extra */ |
| 2612 | msleep(10 + 40); |
| 2613 | if (udev) { |
| 2614 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); |
| 2615 | |
| 2616 | update_devnum(udev, 0); |
| 2617 | /* The xHC may think the device is already reset, |
| 2618 | * so ignore the status. |
| 2619 | */ |
| 2620 | if (hcd->driver->reset_device) |
| 2621 | hcd->driver->reset_device(hcd, udev); |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2622 | } |
| 2623 | /* FALL THROUGH */ |
| 2624 | case -ENOTCONN: |
| 2625 | case -ENODEV: |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2626 | usb_clear_port_feature(hub->hdev, |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2627 | port1, USB_PORT_FEAT_C_RESET); |
Sarah Sharp | 1c7439c6 | 2012-11-14 15:58:52 -0800 | [diff] [blame] | 2628 | if (hub_is_superspeed(hub->hdev)) { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2629 | usb_clear_port_feature(hub->hdev, port1, |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2630 | USB_PORT_FEAT_C_BH_PORT_RESET); |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2631 | usb_clear_port_feature(hub->hdev, port1, |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2632 | USB_PORT_FEAT_C_PORT_LINK_STATE); |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2633 | usb_clear_port_feature(hub->hdev, port1, |
Sarah Sharp | a24a607 | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2634 | USB_PORT_FEAT_C_CONNECTION); |
Sarah Sharp | 1c7439c6 | 2012-11-14 15:58:52 -0800 | [diff] [blame] | 2635 | } |
Sarah Sharp | a24a607 | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2636 | if (udev) |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2637 | usb_set_device_state(udev, *status |
| 2638 | ? USB_STATE_NOTATTACHED |
| 2639 | : USB_STATE_DEFAULT); |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2640 | break; |
| 2641 | } |
| 2642 | } |
| 2643 | |
| 2644 | /* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2645 | static int hub_port_reset(struct usb_hub *hub, int port1, |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2646 | struct usb_device *udev, unsigned int delay, bool warm) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2647 | { |
| 2648 | int i, status; |
Sarah Sharp | a24a607 | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2649 | u16 portchange, portstatus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2650 | |
Sarah Sharp | 0fe51aa | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2651 | if (!hub_is_superspeed(hub->hdev)) { |
| 2652 | if (warm) { |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2653 | dev_err(hub->intfdev, "only USB3 hub support " |
| 2654 | "warm reset\n"); |
| 2655 | return -EINVAL; |
| 2656 | } |
Sarah Sharp | 0fe51aa | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2657 | /* Block EHCI CF initialization during the port reset. |
| 2658 | * Some companion controllers don't like it when they mix. |
| 2659 | */ |
| 2660 | down_read(&ehci_cf_port_reset_rwsem); |
Sarah Sharp | d3b9d7a | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2661 | } else if (!warm) { |
| 2662 | /* |
| 2663 | * If the caller hasn't explicitly requested a warm reset, |
| 2664 | * double check and see if one is needed. |
| 2665 | */ |
| 2666 | status = hub_port_status(hub, port1, |
| 2667 | &portstatus, &portchange); |
| 2668 | if (status < 0) |
| 2669 | goto done; |
| 2670 | |
| 2671 | if (hub_port_warm_reset_required(hub, portstatus)) |
| 2672 | warm = true; |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2673 | } |
Alan Stern | 32fe019 | 2007-10-10 16:27:07 -0400 | [diff] [blame] | 2674 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2675 | /* Reset the port */ |
| 2676 | for (i = 0; i < PORT_RESET_TRIES; i++) { |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2677 | status = set_port_feature(hub->hdev, port1, (warm ? |
| 2678 | USB_PORT_FEAT_BH_PORT_RESET : |
| 2679 | USB_PORT_FEAT_RESET)); |
Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 2680 | if (status == -ENODEV) { |
| 2681 | ; /* The hub is gone */ |
| 2682 | } else if (status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2683 | dev_err(hub->intfdev, |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2684 | "cannot %sreset port %d (err = %d)\n", |
| 2685 | warm ? "warm " : "", port1, status); |
| 2686 | } else { |
| 2687 | status = hub_port_wait_reset(hub, port1, udev, delay, |
| 2688 | warm); |
Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 2689 | if (status && status != -ENOTCONN && status != -ENODEV) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2690 | dev_dbg(hub->intfdev, |
| 2691 | "port_wait_reset: err = %d\n", |
| 2692 | status); |
| 2693 | } |
| 2694 | |
Sarah Sharp | a24a607 | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2695 | /* Check for disconnect or reset */ |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2696 | if (status == 0 || status == -ENOTCONN || status == -ENODEV) { |
Sarah Sharp | a24a607 | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2697 | hub_port_finish_reset(hub, port1, udev, &status); |
| 2698 | |
| 2699 | if (!hub_is_superspeed(hub->hdev)) |
| 2700 | goto done; |
| 2701 | |
| 2702 | /* |
| 2703 | * If a USB 3.0 device migrates from reset to an error |
| 2704 | * state, re-issue the warm reset. |
| 2705 | */ |
| 2706 | if (hub_port_status(hub, port1, |
| 2707 | &portstatus, &portchange) < 0) |
| 2708 | goto done; |
| 2709 | |
| 2710 | if (!hub_port_warm_reset_required(hub, portstatus)) |
| 2711 | goto done; |
| 2712 | |
| 2713 | /* |
| 2714 | * If the port is in SS.Inactive or Compliance Mode, the |
| 2715 | * hot or warm reset failed. Try another warm reset. |
| 2716 | */ |
| 2717 | if (!warm) { |
| 2718 | dev_dbg(hub->intfdev, "hot reset failed, warm reset port %d\n", |
| 2719 | port1); |
| 2720 | warm = true; |
| 2721 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2722 | } |
| 2723 | |
| 2724 | dev_dbg (hub->intfdev, |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2725 | "port %d not enabled, trying %sreset again...\n", |
| 2726 | port1, warm ? "warm " : ""); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2727 | delay = HUB_LONG_RESET_TIME; |
| 2728 | } |
| 2729 | |
| 2730 | dev_err (hub->intfdev, |
| 2731 | "Cannot enable port %i. Maybe the USB cable is bad?\n", |
| 2732 | port1); |
| 2733 | |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2734 | done: |
Sarah Sharp | 0fe51aa | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2735 | if (!hub_is_superspeed(hub->hdev)) |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2736 | up_read(&ehci_cf_port_reset_rwsem); |
| 2737 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2738 | return status; |
| 2739 | } |
| 2740 | |
Andiry Xu | 0ed9a57 | 2011-04-27 18:07:43 +0800 | [diff] [blame] | 2741 | /* Check if a port is power on */ |
| 2742 | static int port_is_power_on(struct usb_hub *hub, unsigned portstatus) |
| 2743 | { |
| 2744 | int ret = 0; |
| 2745 | |
| 2746 | if (hub_is_superspeed(hub->hdev)) { |
| 2747 | if (portstatus & USB_SS_PORT_STAT_POWER) |
| 2748 | ret = 1; |
| 2749 | } else { |
| 2750 | if (portstatus & USB_PORT_STAT_POWER) |
| 2751 | ret = 1; |
| 2752 | } |
| 2753 | |
| 2754 | return ret; |
| 2755 | } |
| 2756 | |
Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 2757 | #ifdef CONFIG_PM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2758 | |
Andiry Xu | 0ed9a57 | 2011-04-27 18:07:43 +0800 | [diff] [blame] | 2759 | /* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */ |
| 2760 | static int port_is_suspended(struct usb_hub *hub, unsigned portstatus) |
| 2761 | { |
| 2762 | int ret = 0; |
| 2763 | |
| 2764 | if (hub_is_superspeed(hub->hdev)) { |
| 2765 | if ((portstatus & USB_PORT_STAT_LINK_STATE) |
| 2766 | == USB_SS_PORT_LS_U3) |
| 2767 | ret = 1; |
| 2768 | } else { |
| 2769 | if (portstatus & USB_PORT_STAT_SUSPEND) |
| 2770 | ret = 1; |
| 2771 | } |
| 2772 | |
| 2773 | return ret; |
| 2774 | } |
Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2775 | |
| 2776 | /* Determine whether the device on a port is ready for a normal resume, |
| 2777 | * is ready for a reset-resume, or should be disconnected. |
| 2778 | */ |
| 2779 | static int check_port_resume_type(struct usb_device *udev, |
| 2780 | struct usb_hub *hub, int port1, |
| 2781 | int status, unsigned portchange, unsigned portstatus) |
| 2782 | { |
| 2783 | /* Is the device still present? */ |
Andiry Xu | 0ed9a57 | 2011-04-27 18:07:43 +0800 | [diff] [blame] | 2784 | if (status || port_is_suspended(hub, portstatus) || |
| 2785 | !port_is_power_on(hub, portstatus) || |
| 2786 | !(portstatus & USB_PORT_STAT_CONNECTION)) { |
Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2787 | if (status >= 0) |
| 2788 | status = -ENODEV; |
| 2789 | } |
| 2790 | |
Alan Stern | 86c57ed | 2008-06-30 11:14:43 -0400 | [diff] [blame] | 2791 | /* Can't do a normal resume if the port isn't enabled, |
| 2792 | * so try a reset-resume instead. |
| 2793 | */ |
| 2794 | else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) { |
| 2795 | if (udev->persist_enabled) |
| 2796 | udev->reset_resume = 1; |
| 2797 | else |
| 2798 | status = -ENODEV; |
| 2799 | } |
Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2800 | |
| 2801 | if (status) { |
| 2802 | dev_dbg(hub->intfdev, |
| 2803 | "port %d status %04x.%04x after resume, %d\n", |
| 2804 | port1, portchange, portstatus, status); |
| 2805 | } else if (udev->reset_resume) { |
| 2806 | |
| 2807 | /* Late port handoff can set status-change bits */ |
| 2808 | if (portchange & USB_PORT_STAT_C_CONNECTION) |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2809 | usb_clear_port_feature(hub->hdev, port1, |
Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2810 | USB_PORT_FEAT_C_CONNECTION); |
| 2811 | if (portchange & USB_PORT_STAT_C_ENABLE) |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2812 | usb_clear_port_feature(hub->hdev, port1, |
Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2813 | USB_PORT_FEAT_C_ENABLE); |
| 2814 | } |
| 2815 | |
| 2816 | return status; |
| 2817 | } |
| 2818 | |
Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 2819 | int usb_disable_ltm(struct usb_device *udev) |
| 2820 | { |
| 2821 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); |
| 2822 | |
| 2823 | /* Check if the roothub and device supports LTM. */ |
| 2824 | if (!usb_device_supports_ltm(hcd->self.root_hub) || |
| 2825 | !usb_device_supports_ltm(udev)) |
| 2826 | return 0; |
| 2827 | |
| 2828 | /* Clear Feature LTM Enable can only be sent if the device is |
| 2829 | * configured. |
| 2830 | */ |
| 2831 | if (!udev->actconfig) |
| 2832 | return 0; |
| 2833 | |
| 2834 | return usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
| 2835 | USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE, |
| 2836 | USB_DEVICE_LTM_ENABLE, 0, NULL, 0, |
| 2837 | USB_CTRL_SET_TIMEOUT); |
| 2838 | } |
| 2839 | EXPORT_SYMBOL_GPL(usb_disable_ltm); |
| 2840 | |
| 2841 | void usb_enable_ltm(struct usb_device *udev) |
| 2842 | { |
| 2843 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); |
| 2844 | |
| 2845 | /* Check if the roothub and device supports LTM. */ |
| 2846 | if (!usb_device_supports_ltm(hcd->self.root_hub) || |
| 2847 | !usb_device_supports_ltm(udev)) |
| 2848 | return; |
| 2849 | |
| 2850 | /* Set Feature LTM Enable can only be sent if the device is |
| 2851 | * configured. |
| 2852 | */ |
| 2853 | if (!udev->actconfig) |
| 2854 | return; |
| 2855 | |
| 2856 | usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
| 2857 | USB_REQ_SET_FEATURE, USB_RECIP_DEVICE, |
| 2858 | USB_DEVICE_LTM_ENABLE, 0, NULL, 0, |
| 2859 | USB_CTRL_SET_TIMEOUT); |
| 2860 | } |
| 2861 | EXPORT_SYMBOL_GPL(usb_enable_ltm); |
| 2862 | |
Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 2863 | /* |
Alan Stern | 28e8616 | 2013-07-30 15:37:33 -0400 | [diff] [blame] | 2864 | * usb_enable_remote_wakeup - enable remote wakeup for a device |
Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 2865 | * @udev: target device |
| 2866 | * |
Alan Stern | 28e8616 | 2013-07-30 15:37:33 -0400 | [diff] [blame] | 2867 | * For USB-2 devices: Set the device's remote wakeup feature. |
| 2868 | * |
| 2869 | * For USB-3 devices: Assume there's only one function on the device and |
| 2870 | * enable remote wake for the first interface. FIXME if the interface |
| 2871 | * association descriptor shows there's more than one function. |
Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 2872 | */ |
Alan Stern | 28e8616 | 2013-07-30 15:37:33 -0400 | [diff] [blame] | 2873 | static int usb_enable_remote_wakeup(struct usb_device *udev) |
Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 2874 | { |
Alan Stern | 28e8616 | 2013-07-30 15:37:33 -0400 | [diff] [blame] | 2875 | if (udev->speed < USB_SPEED_SUPER) |
| 2876 | return usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
| 2877 | USB_REQ_SET_FEATURE, USB_RECIP_DEVICE, |
| 2878 | USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0, |
| 2879 | USB_CTRL_SET_TIMEOUT); |
| 2880 | else |
| 2881 | return usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
| 2882 | USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE, |
| 2883 | USB_INTRF_FUNC_SUSPEND, |
| 2884 | USB_INTRF_FUNC_SUSPEND_RW | |
| 2885 | USB_INTRF_FUNC_SUSPEND_LP, |
| 2886 | NULL, 0, USB_CTRL_SET_TIMEOUT); |
| 2887 | } |
| 2888 | |
| 2889 | /* |
| 2890 | * usb_disable_remote_wakeup - disable remote wakeup for a device |
| 2891 | * @udev: target device |
| 2892 | * |
| 2893 | * For USB-2 devices: Clear the device's remote wakeup feature. |
| 2894 | * |
| 2895 | * For USB-3 devices: Assume there's only one function on the device and |
| 2896 | * disable remote wake for the first interface. FIXME if the interface |
| 2897 | * association descriptor shows there's more than one function. |
| 2898 | */ |
| 2899 | static int usb_disable_remote_wakeup(struct usb_device *udev) |
| 2900 | { |
| 2901 | if (udev->speed < USB_SPEED_SUPER) |
| 2902 | return usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
| 2903 | USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE, |
| 2904 | USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0, |
| 2905 | USB_CTRL_SET_TIMEOUT); |
| 2906 | else |
| 2907 | return usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 2908 | USB_REQ_CLEAR_FEATURE, USB_RECIP_INTERFACE, |
| 2909 | USB_INTRF_FUNC_SUSPEND, 0, NULL, 0, |
| 2910 | USB_CTRL_SET_TIMEOUT); |
| 2911 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2912 | |
Alan Stern | e583d9d | 2013-07-11 14:58:04 -0400 | [diff] [blame] | 2913 | /* Count of wakeup-enabled devices at or below udev */ |
| 2914 | static unsigned wakeup_enabled_descendants(struct usb_device *udev) |
| 2915 | { |
| 2916 | struct usb_hub *hub = usb_hub_to_struct_hub(udev); |
| 2917 | |
| 2918 | return udev->do_remote_wakeup + |
| 2919 | (hub ? hub->wakeup_enabled_descendants : 0); |
| 2920 | } |
| 2921 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2922 | /* |
Alan Stern | 140d8f6 | 2006-07-01 22:07:21 -0400 | [diff] [blame] | 2923 | * usb_port_suspend - suspend a usb device's upstream port |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2924 | * @udev: device that's no longer in active use, not a root hub |
David Brownell | 5edbfb7 | 2005-09-22 22:45:26 -0700 | [diff] [blame] | 2925 | * Context: must be able to sleep; device not locked; pm locks held |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2926 | * |
| 2927 | * Suspends a USB device that isn't in active use, conserving power. |
| 2928 | * Devices may wake out of a suspend, if anything important happens, |
| 2929 | * using the remote wakeup mechanism. They may also be taken out of |
Alan Stern | 140d8f6 | 2006-07-01 22:07:21 -0400 | [diff] [blame] | 2930 | * suspend by the host, using usb_port_resume(). It's also routine |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2931 | * to disconnect devices while they are suspended. |
| 2932 | * |
David Brownell | 390a8c3 | 2005-09-13 19:57:27 -0700 | [diff] [blame] | 2933 | * This only affects the USB hardware for a device; its interfaces |
| 2934 | * (and, for hubs, child devices) must already have been suspended. |
| 2935 | * |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2936 | * Selective port suspend reduces power; most suspended devices draw |
| 2937 | * less than 500 uA. It's also used in OTG, along with remote wakeup. |
| 2938 | * All devices below the suspended port are also suspended. |
| 2939 | * |
| 2940 | * Devices leave suspend state when the host wakes them up. Some devices |
| 2941 | * also support "remote wakeup", where the device can activate the USB |
| 2942 | * tree above them to deliver data, such as a keypress or packet. In |
| 2943 | * some cases, this wakes the USB host. |
| 2944 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2945 | * Suspending OTG devices may trigger HNP, if that's been enabled |
| 2946 | * between a pair of dual-role devices. That will change roles, such |
| 2947 | * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral. |
| 2948 | * |
Alan Stern | 4956ecc | 2007-05-30 16:51:28 -0400 | [diff] [blame] | 2949 | * Devices on USB hub ports have only one "suspend" state, corresponding |
| 2950 | * to ACPI D2, "may cause the device to lose some context". |
| 2951 | * State transitions include: |
| 2952 | * |
| 2953 | * - suspend, resume ... when the VBUS power link stays live |
| 2954 | * - suspend, disconnect ... VBUS lost |
| 2955 | * |
| 2956 | * Once VBUS drop breaks the circuit, the port it's using has to go through |
| 2957 | * normal re-enumeration procedures, starting with enabling VBUS power. |
| 2958 | * Other than re-initializing the hub (plug/unplug, except for root hubs), |
| 2959 | * Linux (2.6) currently has NO mechanisms to initiate that: no khubd |
| 2960 | * timer, no SRP, no requests through sysfs. |
| 2961 | * |
Alan Stern | e583d9d | 2013-07-11 14:58:04 -0400 | [diff] [blame] | 2962 | * If Runtime PM isn't enabled or used, non-SuperSpeed devices may not get |
| 2963 | * suspended until their bus goes into global suspend (i.e., the root |
Alan Stern | 0aa2832 | 2013-03-27 16:14:19 -0400 | [diff] [blame] | 2964 | * hub is suspended). Nevertheless, we change @udev->state to |
| 2965 | * USB_STATE_SUSPENDED as this is the device's "logical" state. The actual |
| 2966 | * upstream port setting is stored in @udev->port_is_suspended. |
Alan Stern | 4956ecc | 2007-05-30 16:51:28 -0400 | [diff] [blame] | 2967 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2968 | * Returns 0 on success, else negative errno. |
| 2969 | */ |
Alan Stern | 65bfd29 | 2008-11-25 16:39:18 -0500 | [diff] [blame] | 2970 | int usb_port_suspend(struct usb_device *udev, pm_message_t msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2971 | { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2972 | struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent); |
| 2973 | struct usb_port *port_dev = hub->ports[udev->portnum - 1]; |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2974 | int port1 = udev->portnum; |
| 2975 | int status; |
Alan Stern | 0aa2832 | 2013-03-27 16:14:19 -0400 | [diff] [blame] | 2976 | bool really_suspend = true; |
Alan Stern | 4956ecc | 2007-05-30 16:51:28 -0400 | [diff] [blame] | 2977 | |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2978 | /* enable remote wakeup when appropriate; this lets the device |
| 2979 | * wake up the upstream hub (including maybe the root hub). |
| 2980 | * |
| 2981 | * NOTE: OTG devices may issue remote wakeup (or SRP) even when |
| 2982 | * we don't explicitly enable it here. |
| 2983 | */ |
| 2984 | if (udev->do_remote_wakeup) { |
Alan Stern | 28e8616 | 2013-07-30 15:37:33 -0400 | [diff] [blame] | 2985 | status = usb_enable_remote_wakeup(udev); |
Oliver Neukum | 0c48720 | 2009-10-19 13:19:41 +0200 | [diff] [blame] | 2986 | if (status) { |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2987 | dev_dbg(&udev->dev, "won't remote wakeup, status %d\n", |
| 2988 | status); |
Oliver Neukum | 0c48720 | 2009-10-19 13:19:41 +0200 | [diff] [blame] | 2989 | /* bail if autosuspend is requested */ |
Alan Stern | 5b1b0b8 | 2011-08-19 23:49:48 +0200 | [diff] [blame] | 2990 | if (PMSG_IS_AUTO(msg)) |
Alan Stern | 4fae6f0 | 2013-07-30 15:39:02 -0400 | [diff] [blame] | 2991 | goto err_wakeup; |
Oliver Neukum | 0c48720 | 2009-10-19 13:19:41 +0200 | [diff] [blame] | 2992 | } |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2993 | } |
| 2994 | |
Andiry Xu | 65580b43 | 2011-09-23 14:19:52 -0700 | [diff] [blame] | 2995 | /* disable USB2 hardware LPM */ |
| 2996 | if (udev->usb2_hw_lpm_enabled == 1) |
| 2997 | usb_set_usb2_hardware_lpm(udev, 0); |
| 2998 | |
Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 2999 | if (usb_disable_ltm(udev)) { |
Alan Stern | 4fae6f0 | 2013-07-30 15:39:02 -0400 | [diff] [blame] | 3000 | dev_err(&udev->dev, "Failed to disable LTM before suspend\n."); |
| 3001 | status = -ENOMEM; |
| 3002 | if (PMSG_IS_AUTO(msg)) |
| 3003 | goto err_ltm; |
Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 3004 | } |
Sarah Sharp | 8306095 | 2012-05-02 14:25:52 -0700 | [diff] [blame] | 3005 | if (usb_unlocked_disable_lpm(udev)) { |
Alan Stern | 4fae6f0 | 2013-07-30 15:39:02 -0400 | [diff] [blame] | 3006 | dev_err(&udev->dev, "Failed to disable LPM before suspend\n."); |
| 3007 | status = -ENOMEM; |
| 3008 | if (PMSG_IS_AUTO(msg)) |
| 3009 | goto err_lpm3; |
Sarah Sharp | 8306095 | 2012-05-02 14:25:52 -0700 | [diff] [blame] | 3010 | } |
| 3011 | |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3012 | /* see 7.1.7.6 */ |
Andiry Xu | a711423 | 2011-04-27 18:07:50 +0800 | [diff] [blame] | 3013 | if (hub_is_superspeed(hub->hdev)) |
Sarah Sharp | c2f60db | 2012-12-10 15:43:08 -0800 | [diff] [blame] | 3014 | status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U3); |
Alan Stern | e583d9d | 2013-07-11 14:58:04 -0400 | [diff] [blame] | 3015 | |
Alan Stern | 0aa2832 | 2013-03-27 16:14:19 -0400 | [diff] [blame] | 3016 | /* |
| 3017 | * For system suspend, we do not need to enable the suspend feature |
| 3018 | * on individual USB-2 ports. The devices will automatically go |
| 3019 | * into suspend a few ms after the root hub stops sending packets. |
| 3020 | * The USB 2.0 spec calls this "global suspend". |
Alan Stern | e583d9d | 2013-07-11 14:58:04 -0400 | [diff] [blame] | 3021 | * |
| 3022 | * However, many USB hubs have a bug: They don't relay wakeup requests |
| 3023 | * from a downstream port if the port's suspend feature isn't on. |
| 3024 | * Therefore we will turn on the suspend feature if udev or any of its |
| 3025 | * descendants is enabled for remote wakeup. |
Alan Stern | 0aa2832 | 2013-03-27 16:14:19 -0400 | [diff] [blame] | 3026 | */ |
Alan Stern | e583d9d | 2013-07-11 14:58:04 -0400 | [diff] [blame] | 3027 | else if (PMSG_IS_AUTO(msg) || wakeup_enabled_descendants(udev) > 0) |
| 3028 | status = set_port_feature(hub->hdev, port1, |
| 3029 | USB_PORT_FEAT_SUSPEND); |
Alan Stern | 0aa2832 | 2013-03-27 16:14:19 -0400 | [diff] [blame] | 3030 | else { |
| 3031 | really_suspend = false; |
| 3032 | status = 0; |
| 3033 | } |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3034 | if (status) { |
| 3035 | dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n", |
| 3036 | port1, status); |
Alan Stern | cbb3300 | 2011-06-15 16:29:16 -0400 | [diff] [blame] | 3037 | |
Alan Stern | 4fae6f0 | 2013-07-30 15:39:02 -0400 | [diff] [blame] | 3038 | /* Try to enable USB3 LPM and LTM again */ |
| 3039 | usb_unlocked_enable_lpm(udev); |
| 3040 | err_lpm3: |
| 3041 | usb_enable_ltm(udev); |
| 3042 | err_ltm: |
Andiry Xu | c3e751e | 2012-05-05 00:50:10 +0800 | [diff] [blame] | 3043 | /* Try to enable USB2 hardware LPM again */ |
| 3044 | if (udev->usb2_hw_lpm_capable == 1) |
| 3045 | usb_set_usb2_hardware_lpm(udev, 1); |
| 3046 | |
Alan Stern | 4fae6f0 | 2013-07-30 15:39:02 -0400 | [diff] [blame] | 3047 | if (udev->do_remote_wakeup) |
| 3048 | (void) usb_disable_remote_wakeup(udev); |
| 3049 | err_wakeup: |
Sarah Sharp | 8306095 | 2012-05-02 14:25:52 -0700 | [diff] [blame] | 3050 | |
Alan Stern | cbb3300 | 2011-06-15 16:29:16 -0400 | [diff] [blame] | 3051 | /* System sleep transitions should never fail */ |
Alan Stern | 5b1b0b8 | 2011-08-19 23:49:48 +0200 | [diff] [blame] | 3052 | if (!PMSG_IS_AUTO(msg)) |
Alan Stern | cbb3300 | 2011-06-15 16:29:16 -0400 | [diff] [blame] | 3053 | status = 0; |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3054 | } else { |
Alan Stern | 30b1a7a | 2011-09-27 21:54:22 +0200 | [diff] [blame] | 3055 | dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n", |
| 3056 | (PMSG_IS_AUTO(msg) ? "auto-" : ""), |
| 3057 | udev->do_remote_wakeup); |
Alan Stern | 0aa2832 | 2013-03-27 16:14:19 -0400 | [diff] [blame] | 3058 | if (really_suspend) { |
| 3059 | udev->port_is_suspended = 1; |
Alan Stern | e583d9d | 2013-07-11 14:58:04 -0400 | [diff] [blame] | 3060 | |
| 3061 | /* device has up to 10 msec to fully suspend */ |
Alan Stern | 0aa2832 | 2013-03-27 16:14:19 -0400 | [diff] [blame] | 3062 | msleep(10); |
| 3063 | } |
Alan Stern | e583d9d | 2013-07-11 14:58:04 -0400 | [diff] [blame] | 3064 | usb_set_device_state(udev, USB_STATE_SUSPENDED); |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3065 | } |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3066 | |
Alan Stern | 4fae6f0 | 2013-07-30 15:39:02 -0400 | [diff] [blame] | 3067 | if (status == 0 && !udev->do_remote_wakeup && udev->persist_enabled) { |
Lan Tianyu | 98a4f1f | 2013-07-03 22:17:54 +0800 | [diff] [blame] | 3068 | pm_runtime_put_sync(&port_dev->dev); |
| 3069 | port_dev->did_runtime_put = true; |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3070 | } |
| 3071 | |
Alan Stern | c08512c | 2010-11-15 15:57:58 -0500 | [diff] [blame] | 3072 | usb_mark_last_busy(hub->hdev); |
Alan Stern | 4956ecc | 2007-05-30 16:51:28 -0400 | [diff] [blame] | 3073 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3074 | } |
David Brownell | f3f3253 | 2005-09-22 22:37:29 -0700 | [diff] [blame] | 3075 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3076 | /* |
David Brownell | 390a8c3 | 2005-09-13 19:57:27 -0700 | [diff] [blame] | 3077 | * If the USB "suspend" state is in use (rather than "global suspend"), |
| 3078 | * many devices will be individually taken out of suspend state using |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3079 | * special "resume" signaling. This routine kicks in shortly after |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3080 | * hardware resume signaling is finished, either because of selective |
| 3081 | * resume (by host) or remote wakeup (by device) ... now see what changed |
| 3082 | * in the tree that's rooted at this device. |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3083 | * |
| 3084 | * If @udev->reset_resume is set then the device is reset before the |
| 3085 | * status check is done. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3086 | */ |
Alan Stern | 140d8f6 | 2006-07-01 22:07:21 -0400 | [diff] [blame] | 3087 | static int finish_port_resume(struct usb_device *udev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3088 | { |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3089 | int status = 0; |
Oliver Neukum | 07e72b9 | 2012-11-29 15:05:57 +0100 | [diff] [blame] | 3090 | u16 devstatus = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3091 | |
| 3092 | /* caller owns the udev device lock */ |
Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 3093 | dev_dbg(&udev->dev, "%s\n", |
| 3094 | udev->reset_resume ? "finish reset-resume" : "finish resume"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3095 | |
| 3096 | /* usb ch9 identifies four variants of SUSPENDED, based on what |
| 3097 | * state the device resumes to. Linux currently won't see the |
| 3098 | * first two on the host side; they'd be inside hub_port_init() |
| 3099 | * during many timeouts, but khubd can't suspend until later. |
| 3100 | */ |
| 3101 | usb_set_device_state(udev, udev->actconfig |
| 3102 | ? USB_STATE_CONFIGURED |
| 3103 | : USB_STATE_ADDRESS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3104 | |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3105 | /* 10.5.4.5 says not to reset a suspended port if the attached |
| 3106 | * device is enabled for remote wakeup. Hence the reset |
| 3107 | * operation is carried out here, after the port has been |
| 3108 | * resumed. |
| 3109 | */ |
Alan Stern | 1d10255 | 2014-03-18 10:39:05 -0400 | [diff] [blame] | 3110 | if (udev->reset_resume) { |
| 3111 | /* |
| 3112 | * If the device morphs or switches modes when it is reset, |
| 3113 | * we don't want to perform a reset-resume. We'll fail the |
| 3114 | * resume, which will cause a logical disconnect, and then |
| 3115 | * the device will be rediscovered. |
| 3116 | */ |
Alan Stern | 86c57ed | 2008-06-30 11:14:43 -0400 | [diff] [blame] | 3117 | retry_reset_resume: |
Alan Stern | 1d10255 | 2014-03-18 10:39:05 -0400 | [diff] [blame] | 3118 | if (udev->quirks & USB_QUIRK_RESET) |
| 3119 | status = -ENODEV; |
| 3120 | else |
| 3121 | status = usb_reset_and_verify_device(udev); |
| 3122 | } |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3123 | |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 3124 | /* 10.5.4.5 says be sure devices in the tree are still there. |
| 3125 | * For now let's assume the device didn't go crazy on resume, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3126 | * and device drivers will know about any resume quirks. |
| 3127 | */ |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3128 | if (status == 0) { |
Alan Stern | 46dede4 | 2007-08-14 10:56:10 -0400 | [diff] [blame] | 3129 | devstatus = 0; |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3130 | status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus); |
Alan Stern | 86c57ed | 2008-06-30 11:14:43 -0400 | [diff] [blame] | 3131 | |
| 3132 | /* If a normal resume failed, try doing a reset-resume */ |
| 3133 | if (status && !udev->reset_resume && udev->persist_enabled) { |
| 3134 | dev_dbg(&udev->dev, "retry with reset-resume\n"); |
| 3135 | udev->reset_resume = 1; |
| 3136 | goto retry_reset_resume; |
| 3137 | } |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3138 | } |
Alan Stern | b40b7a9 | 2006-06-19 15:12:38 -0400 | [diff] [blame] | 3139 | |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3140 | if (status) { |
| 3141 | dev_dbg(&udev->dev, "gone after usb resume? status %d\n", |
| 3142 | status); |
Oliver Neukum | 07e72b9 | 2012-11-29 15:05:57 +0100 | [diff] [blame] | 3143 | /* |
| 3144 | * There are a few quirky devices which violate the standard |
| 3145 | * by claiming to have remote wakeup enabled after a reset, |
| 3146 | * which crash if the feature is cleared, hence check for |
| 3147 | * udev->reset_resume |
| 3148 | */ |
| 3149 | } else if (udev->actconfig && !udev->reset_resume) { |
Alan Stern | 28e8616 | 2013-07-30 15:37:33 -0400 | [diff] [blame] | 3150 | if (udev->speed < USB_SPEED_SUPER) { |
Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 3151 | if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP)) |
Alan Stern | 28e8616 | 2013-07-30 15:37:33 -0400 | [diff] [blame] | 3152 | status = usb_disable_remote_wakeup(udev); |
Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 3153 | } else { |
| 3154 | status = usb_get_status(udev, USB_RECIP_INTERFACE, 0, |
| 3155 | &devstatus); |
Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 3156 | if (!status && devstatus & (USB_INTRF_STAT_FUNC_RW_CAP |
| 3157 | | USB_INTRF_STAT_FUNC_RW)) |
Alan Stern | 28e8616 | 2013-07-30 15:37:33 -0400 | [diff] [blame] | 3158 | status = usb_disable_remote_wakeup(udev); |
Alan Stern | 4bf0ba8 | 2005-11-21 11:58:07 -0500 | [diff] [blame] | 3159 | } |
Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 3160 | |
| 3161 | if (status) |
| 3162 | dev_dbg(&udev->dev, |
| 3163 | "disable remote wakeup, status %d\n", |
| 3164 | status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3165 | status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3166 | } |
| 3167 | return status; |
| 3168 | } |
| 3169 | |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3170 | /* |
| 3171 | * usb_port_resume - re-activate a suspended usb device's upstream port |
| 3172 | * @udev: device to re-activate, not a root hub |
| 3173 | * Context: must be able to sleep; device not locked; pm locks held |
| 3174 | * |
| 3175 | * This will re-activate the suspended device, increasing power usage |
| 3176 | * while letting drivers communicate again with its endpoints. |
| 3177 | * USB resume explicitly guarantees that the power session between |
| 3178 | * the host and the device is the same as it was when the device |
| 3179 | * suspended. |
| 3180 | * |
Alan Stern | feccc30 | 2008-03-03 15:15:59 -0500 | [diff] [blame] | 3181 | * If @udev->reset_resume is set then this routine won't check that the |
| 3182 | * port is still enabled. Furthermore, finish_port_resume() above will |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3183 | * reset @udev. The end result is that a broken power session can be |
| 3184 | * recovered and @udev will appear to persist across a loss of VBUS power. |
| 3185 | * |
| 3186 | * For example, if a host controller doesn't maintain VBUS suspend current |
| 3187 | * during a system sleep or is reset when the system wakes up, all the USB |
| 3188 | * power sessions below it will be broken. This is especially troublesome |
| 3189 | * for mass-storage devices containing mounted filesystems, since the |
| 3190 | * device will appear to have disconnected and all the memory mappings |
| 3191 | * to it will be lost. Using the USB_PERSIST facility, the device can be |
| 3192 | * made to appear as if it had not disconnected. |
| 3193 | * |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 3194 | * This facility can be dangerous. Although usb_reset_and_verify_device() makes |
Alan Stern | feccc30 | 2008-03-03 15:15:59 -0500 | [diff] [blame] | 3195 | * every effort to insure that the same device is present after the |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3196 | * reset as before, it cannot provide a 100% guarantee. Furthermore it's |
| 3197 | * quite possible for a device to remain unaltered but its media to be |
| 3198 | * changed. If the user replaces a flash memory card while the system is |
| 3199 | * asleep, he will have only himself to blame when the filesystem on the |
| 3200 | * new card is corrupted and the system crashes. |
| 3201 | * |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3202 | * Returns 0 on success, else negative errno. |
| 3203 | */ |
Alan Stern | 65bfd29 | 2008-11-25 16:39:18 -0500 | [diff] [blame] | 3204 | int usb_port_resume(struct usb_device *udev, pm_message_t msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3205 | { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3206 | struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent); |
| 3207 | struct usb_port *port_dev = hub->ports[udev->portnum - 1]; |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3208 | int port1 = udev->portnum; |
| 3209 | int status; |
| 3210 | u16 portchange, portstatus; |
Alan Stern | d25450c | 2006-11-20 11:14:30 -0500 | [diff] [blame] | 3211 | |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3212 | if (port_dev->did_runtime_put) { |
| 3213 | status = pm_runtime_get_sync(&port_dev->dev); |
| 3214 | port_dev->did_runtime_put = false; |
| 3215 | if (status < 0) { |
| 3216 | dev_dbg(&udev->dev, "can't resume usb port, status %d\n", |
| 3217 | status); |
| 3218 | return status; |
| 3219 | } |
| 3220 | } |
| 3221 | |
Alan Stern | d25450c | 2006-11-20 11:14:30 -0500 | [diff] [blame] | 3222 | /* Skip the initial Clear-Suspend step for a remote wakeup */ |
| 3223 | status = hub_port_status(hub, port1, &portstatus, &portchange); |
Andiry Xu | 0ed9a57 | 2011-04-27 18:07:43 +0800 | [diff] [blame] | 3224 | if (status == 0 && !port_is_suspended(hub, portstatus)) |
Alan Stern | d25450c | 2006-11-20 11:14:30 -0500 | [diff] [blame] | 3225 | goto SuspendCleared; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3226 | |
Matthias Beyer | 781b213 | 2013-10-10 23:41:29 +0200 | [diff] [blame] | 3227 | /* dev_dbg(hub->intfdev, "resume port %d\n", port1); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3228 | |
Alan Stern | d5cbad4 | 2006-08-11 16:52:39 -0400 | [diff] [blame] | 3229 | set_bit(port1, hub->busy_bits); |
| 3230 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3231 | /* see 7.1.7.7; affects power usage, but not budgeting */ |
Andiry Xu | a711423 | 2011-04-27 18:07:50 +0800 | [diff] [blame] | 3232 | if (hub_is_superspeed(hub->hdev)) |
Sarah Sharp | c2f60db | 2012-12-10 15:43:08 -0800 | [diff] [blame] | 3233 | status = hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_U0); |
Andiry Xu | a711423 | 2011-04-27 18:07:50 +0800 | [diff] [blame] | 3234 | else |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3235 | status = usb_clear_port_feature(hub->hdev, |
Andiry Xu | a711423 | 2011-04-27 18:07:50 +0800 | [diff] [blame] | 3236 | port1, USB_PORT_FEAT_SUSPEND); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3237 | if (status) { |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3238 | dev_dbg(hub->intfdev, "can't resume port %d, status %d\n", |
| 3239 | port1, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3240 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3241 | /* drive resume for at least 20 msec */ |
Alan Stern | 686314c | 2007-05-30 15:34:36 -0400 | [diff] [blame] | 3242 | dev_dbg(&udev->dev, "usb %sresume\n", |
Alan Stern | 5b1b0b8 | 2011-08-19 23:49:48 +0200 | [diff] [blame] | 3243 | (PMSG_IS_AUTO(msg) ? "auto-" : "")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3244 | msleep(25); |
| 3245 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3246 | /* Virtual root hubs can trigger on GET_PORT_STATUS to |
| 3247 | * stop resume signaling. Then finish the resume |
| 3248 | * sequence. |
| 3249 | */ |
Alan Stern | d25450c | 2006-11-20 11:14:30 -0500 | [diff] [blame] | 3250 | status = hub_port_status(hub, port1, &portstatus, &portchange); |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3251 | |
Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 3252 | /* TRSMRCY = 10 msec */ |
| 3253 | msleep(10); |
| 3254 | } |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3255 | |
Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 3256 | SuspendCleared: |
| 3257 | if (status == 0) { |
Alan Stern | bfd1e91 | 2012-10-19 11:03:39 -0400 | [diff] [blame] | 3258 | udev->port_is_suspended = 0; |
Andiry Xu | a711423 | 2011-04-27 18:07:50 +0800 | [diff] [blame] | 3259 | if (hub_is_superspeed(hub->hdev)) { |
| 3260 | if (portchange & USB_PORT_STAT_C_LINK_STATE) |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3261 | usb_clear_port_feature(hub->hdev, port1, |
Andiry Xu | a711423 | 2011-04-27 18:07:50 +0800 | [diff] [blame] | 3262 | USB_PORT_FEAT_C_PORT_LINK_STATE); |
| 3263 | } else { |
| 3264 | if (portchange & USB_PORT_STAT_C_SUSPEND) |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3265 | usb_clear_port_feature(hub->hdev, port1, |
Andiry Xu | a711423 | 2011-04-27 18:07:50 +0800 | [diff] [blame] | 3266 | USB_PORT_FEAT_C_SUSPEND); |
| 3267 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3268 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3269 | |
Alan Stern | d5cbad4 | 2006-08-11 16:52:39 -0400 | [diff] [blame] | 3270 | clear_bit(port1, hub->busy_bits); |
Alan Stern | d5cbad4 | 2006-08-11 16:52:39 -0400 | [diff] [blame] | 3271 | |
Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 3272 | status = check_port_resume_type(udev, |
| 3273 | hub, port1, status, portchange, portstatus); |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3274 | if (status == 0) |
| 3275 | status = finish_port_resume(udev); |
| 3276 | if (status < 0) { |
| 3277 | dev_dbg(&udev->dev, "can't resume, status %d\n", status); |
| 3278 | hub_port_logical_disconnect(hub, port1); |
Andiry Xu | 65580b43 | 2011-09-23 14:19:52 -0700 | [diff] [blame] | 3279 | } else { |
| 3280 | /* Try to enable USB2 hardware LPM */ |
| 3281 | if (udev->usb2_hw_lpm_capable == 1) |
| 3282 | usb_set_usb2_hardware_lpm(udev, 1); |
Sarah Sharp | 8306095 | 2012-05-02 14:25:52 -0700 | [diff] [blame] | 3283 | |
Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 3284 | /* Try to enable USB3 LTM and LPM */ |
| 3285 | usb_enable_ltm(udev); |
Sarah Sharp | 8306095 | 2012-05-02 14:25:52 -0700 | [diff] [blame] | 3286 | usb_unlocked_enable_lpm(udev); |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3287 | } |
Andiry Xu | 65580b43 | 2011-09-23 14:19:52 -0700 | [diff] [blame] | 3288 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3289 | return status; |
| 3290 | } |
| 3291 | |
Alan Stern | 84ebc10 | 2013-03-27 16:14:46 -0400 | [diff] [blame] | 3292 | #ifdef CONFIG_PM_RUNTIME |
| 3293 | |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 3294 | /* caller has locked udev */ |
Alan Stern | 0534d46 | 2010-01-08 12:56:30 -0500 | [diff] [blame] | 3295 | int usb_remote_wakeup(struct usb_device *udev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3296 | { |
| 3297 | int status = 0; |
| 3298 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3299 | if (udev->state == USB_STATE_SUSPENDED) { |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 3300 | dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-"); |
Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 3301 | status = usb_autoresume_device(udev); |
| 3302 | if (status == 0) { |
| 3303 | /* Let the drivers do their thing, then... */ |
| 3304 | usb_autosuspend_device(udev); |
| 3305 | } |
Alan Stern | d25450c | 2006-11-20 11:14:30 -0500 | [diff] [blame] | 3306 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3307 | return status; |
| 3308 | } |
| 3309 | |
Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 3310 | #endif |
| 3311 | |
Ming Lei | e6f30de | 2012-10-24 11:59:24 +0800 | [diff] [blame] | 3312 | static int check_ports_changed(struct usb_hub *hub) |
| 3313 | { |
| 3314 | int port1; |
| 3315 | |
| 3316 | for (port1 = 1; port1 <= hub->hdev->maxchild; ++port1) { |
| 3317 | u16 portstatus, portchange; |
| 3318 | int status; |
| 3319 | |
| 3320 | status = hub_port_status(hub, port1, &portstatus, &portchange); |
| 3321 | if (!status && portchange) |
| 3322 | return 1; |
| 3323 | } |
| 3324 | return 0; |
| 3325 | } |
| 3326 | |
David Brownell | db69087 | 2005-09-13 19:56:33 -0700 | [diff] [blame] | 3327 | static int hub_suspend(struct usb_interface *intf, pm_message_t msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3328 | { |
| 3329 | struct usb_hub *hub = usb_get_intfdata (intf); |
| 3330 | struct usb_device *hdev = hub->hdev; |
| 3331 | unsigned port1; |
Sarah Sharp | 4296c70a | 2012-01-06 10:34:31 -0800 | [diff] [blame] | 3332 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3333 | |
Alan Stern | e583d9d | 2013-07-11 14:58:04 -0400 | [diff] [blame] | 3334 | /* |
| 3335 | * Warn if children aren't already suspended. |
| 3336 | * Also, add up the number of wakeup-enabled descendants. |
| 3337 | */ |
| 3338 | hub->wakeup_enabled_descendants = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3339 | for (port1 = 1; port1 <= hdev->maxchild; port1++) { |
| 3340 | struct usb_device *udev; |
| 3341 | |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 3342 | udev = hub->ports[port1 - 1]->child; |
Alan Stern | 6840d25 | 2007-09-10 11:34:26 -0400 | [diff] [blame] | 3343 | if (udev && udev->can_submit) { |
Rahul Bedarkar | 025d443 | 2014-01-04 11:24:41 +0530 | [diff] [blame] | 3344 | dev_warn(&intf->dev, "port %d not suspended yet\n", |
| 3345 | port1); |
Alan Stern | 5b1b0b8 | 2011-08-19 23:49:48 +0200 | [diff] [blame] | 3346 | if (PMSG_IS_AUTO(msg)) |
Alan Stern | cbb3300 | 2011-06-15 16:29:16 -0400 | [diff] [blame] | 3347 | return -EBUSY; |
David Brownell | c9f89fa | 2005-09-13 19:57:04 -0700 | [diff] [blame] | 3348 | } |
Alan Stern | e583d9d | 2013-07-11 14:58:04 -0400 | [diff] [blame] | 3349 | if (udev) |
| 3350 | hub->wakeup_enabled_descendants += |
| 3351 | wakeup_enabled_descendants(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3352 | } |
Ming Lei | e6f30de | 2012-10-24 11:59:24 +0800 | [diff] [blame] | 3353 | |
| 3354 | if (hdev->do_remote_wakeup && hub->quirk_check_port_auto_suspend) { |
| 3355 | /* check if there are changes pending on hub ports */ |
| 3356 | if (check_ports_changed(hub)) { |
| 3357 | if (PMSG_IS_AUTO(msg)) |
| 3358 | return -EBUSY; |
| 3359 | pm_wakeup_event(&hdev->dev, 2000); |
| 3360 | } |
| 3361 | } |
| 3362 | |
Sarah Sharp | 4296c70a | 2012-01-06 10:34:31 -0800 | [diff] [blame] | 3363 | if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) { |
| 3364 | /* Enable hub to send remote wakeup for all ports. */ |
| 3365 | for (port1 = 1; port1 <= hdev->maxchild; port1++) { |
| 3366 | status = set_port_feature(hdev, |
| 3367 | port1 | |
| 3368 | USB_PORT_FEAT_REMOTE_WAKE_CONNECT | |
| 3369 | USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT | |
| 3370 | USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT, |
| 3371 | USB_PORT_FEAT_REMOTE_WAKE_MASK); |
| 3372 | } |
| 3373 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3374 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 3375 | dev_dbg(&intf->dev, "%s\n", __func__); |
Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 3376 | |
David Brownell | c9f89fa | 2005-09-13 19:57:04 -0700 | [diff] [blame] | 3377 | /* stop khubd and related activity */ |
Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 3378 | hub_quiesce(hub, HUB_SUSPEND); |
Alan Stern | b6f6436 | 2007-05-04 11:51:54 -0400 | [diff] [blame] | 3379 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3380 | } |
| 3381 | |
| 3382 | static int hub_resume(struct usb_interface *intf) |
| 3383 | { |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 3384 | struct usb_hub *hub = usb_get_intfdata(intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3385 | |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 3386 | dev_dbg(&intf->dev, "%s\n", __func__); |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 3387 | hub_activate(hub, HUB_RESUME); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3388 | return 0; |
| 3389 | } |
| 3390 | |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 3391 | static int hub_reset_resume(struct usb_interface *intf) |
Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 3392 | { |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 3393 | struct usb_hub *hub = usb_get_intfdata(intf); |
Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 3394 | |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 3395 | dev_dbg(&intf->dev, "%s\n", __func__); |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 3396 | hub_activate(hub, HUB_RESET_RESUME); |
Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 3397 | return 0; |
| 3398 | } |
| 3399 | |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3400 | /** |
| 3401 | * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power |
| 3402 | * @rhdev: struct usb_device for the root hub |
| 3403 | * |
| 3404 | * The USB host controller driver calls this function when its root hub |
| 3405 | * is resumed and Vbus power has been interrupted or the controller |
Alan Stern | feccc30 | 2008-03-03 15:15:59 -0500 | [diff] [blame] | 3406 | * has been reset. The routine marks @rhdev as having lost power. |
| 3407 | * When the hub driver is resumed it will take notice and carry out |
| 3408 | * power-session recovery for all the "USB-PERSIST"-enabled child devices; |
| 3409 | * the others will be disconnected. |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3410 | */ |
| 3411 | void usb_root_hub_lost_power(struct usb_device *rhdev) |
| 3412 | { |
| 3413 | dev_warn(&rhdev->dev, "root hub lost power or was reset\n"); |
| 3414 | rhdev->reset_resume = 1; |
| 3415 | } |
| 3416 | EXPORT_SYMBOL_GPL(usb_root_hub_lost_power); |
| 3417 | |
Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3418 | static const char * const usb3_lpm_names[] = { |
| 3419 | "U0", |
| 3420 | "U1", |
| 3421 | "U2", |
| 3422 | "U3", |
| 3423 | }; |
| 3424 | |
| 3425 | /* |
| 3426 | * Send a Set SEL control transfer to the device, prior to enabling |
| 3427 | * device-initiated U1 or U2. This lets the device know the exit latencies from |
| 3428 | * the time the device initiates a U1 or U2 exit, to the time it will receive a |
| 3429 | * packet from the host. |
| 3430 | * |
| 3431 | * This function will fail if the SEL or PEL values for udev are greater than |
| 3432 | * the maximum allowed values for the link state to be enabled. |
| 3433 | */ |
| 3434 | static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state) |
| 3435 | { |
| 3436 | struct usb_set_sel_req *sel_values; |
| 3437 | unsigned long long u1_sel; |
| 3438 | unsigned long long u1_pel; |
| 3439 | unsigned long long u2_sel; |
| 3440 | unsigned long long u2_pel; |
| 3441 | int ret; |
| 3442 | |
Xenia Ragiadakou | 38d7f68 | 2013-09-04 17:24:45 +0300 | [diff] [blame] | 3443 | if (udev->state != USB_STATE_CONFIGURED) |
| 3444 | return 0; |
| 3445 | |
Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3446 | /* Convert SEL and PEL stored in ns to us */ |
| 3447 | u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000); |
| 3448 | u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000); |
| 3449 | u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000); |
| 3450 | u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000); |
| 3451 | |
| 3452 | /* |
| 3453 | * Make sure that the calculated SEL and PEL values for the link |
| 3454 | * state we're enabling aren't bigger than the max SEL/PEL |
| 3455 | * value that will fit in the SET SEL control transfer. |
| 3456 | * Otherwise the device would get an incorrect idea of the exit |
| 3457 | * latency for the link state, and could start a device-initiated |
| 3458 | * U1/U2 when the exit latencies are too high. |
| 3459 | */ |
| 3460 | if ((state == USB3_LPM_U1 && |
| 3461 | (u1_sel > USB3_LPM_MAX_U1_SEL_PEL || |
| 3462 | u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) || |
| 3463 | (state == USB3_LPM_U2 && |
| 3464 | (u2_sel > USB3_LPM_MAX_U2_SEL_PEL || |
| 3465 | u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) { |
Sarah Sharp | 1510a1a | 2012-10-05 10:30:35 -0700 | [diff] [blame] | 3466 | dev_dbg(&udev->dev, "Device-initiated %s disabled due to long SEL %llu us or PEL %llu us\n", |
Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3467 | usb3_lpm_names[state], u1_sel, u1_pel); |
| 3468 | return -EINVAL; |
| 3469 | } |
| 3470 | |
| 3471 | /* |
| 3472 | * If we're enabling device-initiated LPM for one link state, |
| 3473 | * but the other link state has a too high SEL or PEL value, |
| 3474 | * just set those values to the max in the Set SEL request. |
| 3475 | */ |
| 3476 | if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL) |
| 3477 | u1_sel = USB3_LPM_MAX_U1_SEL_PEL; |
| 3478 | |
| 3479 | if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL) |
| 3480 | u1_pel = USB3_LPM_MAX_U1_SEL_PEL; |
| 3481 | |
| 3482 | if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL) |
| 3483 | u2_sel = USB3_LPM_MAX_U2_SEL_PEL; |
| 3484 | |
| 3485 | if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL) |
| 3486 | u2_pel = USB3_LPM_MAX_U2_SEL_PEL; |
| 3487 | |
| 3488 | /* |
| 3489 | * usb_enable_lpm() can be called as part of a failed device reset, |
| 3490 | * which may be initiated by an error path of a mass storage driver. |
| 3491 | * Therefore, use GFP_NOIO. |
| 3492 | */ |
| 3493 | sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO); |
| 3494 | if (!sel_values) |
| 3495 | return -ENOMEM; |
| 3496 | |
| 3497 | sel_values->u1_sel = u1_sel; |
| 3498 | sel_values->u1_pel = u1_pel; |
| 3499 | sel_values->u2_sel = cpu_to_le16(u2_sel); |
| 3500 | sel_values->u2_pel = cpu_to_le16(u2_pel); |
| 3501 | |
| 3502 | ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
| 3503 | USB_REQ_SET_SEL, |
| 3504 | USB_RECIP_DEVICE, |
| 3505 | 0, 0, |
| 3506 | sel_values, sizeof *(sel_values), |
| 3507 | USB_CTRL_SET_TIMEOUT); |
| 3508 | kfree(sel_values); |
| 3509 | return ret; |
| 3510 | } |
| 3511 | |
| 3512 | /* |
| 3513 | * Enable or disable device-initiated U1 or U2 transitions. |
| 3514 | */ |
| 3515 | static int usb_set_device_initiated_lpm(struct usb_device *udev, |
| 3516 | enum usb3_link_state state, bool enable) |
| 3517 | { |
| 3518 | int ret; |
| 3519 | int feature; |
| 3520 | |
| 3521 | switch (state) { |
| 3522 | case USB3_LPM_U1: |
| 3523 | feature = USB_DEVICE_U1_ENABLE; |
| 3524 | break; |
| 3525 | case USB3_LPM_U2: |
| 3526 | feature = USB_DEVICE_U2_ENABLE; |
| 3527 | break; |
| 3528 | default: |
| 3529 | dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n", |
| 3530 | __func__, enable ? "enable" : "disable"); |
| 3531 | return -EINVAL; |
| 3532 | } |
| 3533 | |
| 3534 | if (udev->state != USB_STATE_CONFIGURED) { |
| 3535 | dev_dbg(&udev->dev, "%s: Can't %s %s state " |
| 3536 | "for unconfigured device.\n", |
| 3537 | __func__, enable ? "enable" : "disable", |
| 3538 | usb3_lpm_names[state]); |
| 3539 | return 0; |
| 3540 | } |
| 3541 | |
| 3542 | if (enable) { |
| 3543 | /* |
Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3544 | * Now send the control transfer to enable device-initiated LPM |
| 3545 | * for either U1 or U2. |
| 3546 | */ |
| 3547 | ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
| 3548 | USB_REQ_SET_FEATURE, |
| 3549 | USB_RECIP_DEVICE, |
| 3550 | feature, |
| 3551 | 0, NULL, 0, |
| 3552 | USB_CTRL_SET_TIMEOUT); |
| 3553 | } else { |
| 3554 | ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
| 3555 | USB_REQ_CLEAR_FEATURE, |
| 3556 | USB_RECIP_DEVICE, |
| 3557 | feature, |
| 3558 | 0, NULL, 0, |
| 3559 | USB_CTRL_SET_TIMEOUT); |
| 3560 | } |
| 3561 | if (ret < 0) { |
| 3562 | dev_warn(&udev->dev, "%s of device-initiated %s failed.\n", |
| 3563 | enable ? "Enable" : "Disable", |
| 3564 | usb3_lpm_names[state]); |
| 3565 | return -EBUSY; |
| 3566 | } |
| 3567 | return 0; |
| 3568 | } |
| 3569 | |
| 3570 | static int usb_set_lpm_timeout(struct usb_device *udev, |
| 3571 | enum usb3_link_state state, int timeout) |
| 3572 | { |
| 3573 | int ret; |
| 3574 | int feature; |
| 3575 | |
| 3576 | switch (state) { |
| 3577 | case USB3_LPM_U1: |
| 3578 | feature = USB_PORT_FEAT_U1_TIMEOUT; |
| 3579 | break; |
| 3580 | case USB3_LPM_U2: |
| 3581 | feature = USB_PORT_FEAT_U2_TIMEOUT; |
| 3582 | break; |
| 3583 | default: |
| 3584 | dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n", |
| 3585 | __func__); |
| 3586 | return -EINVAL; |
| 3587 | } |
| 3588 | |
| 3589 | if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT && |
| 3590 | timeout != USB3_LPM_DEVICE_INITIATED) { |
| 3591 | dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, " |
| 3592 | "which is a reserved value.\n", |
| 3593 | usb3_lpm_names[state], timeout); |
| 3594 | return -EINVAL; |
| 3595 | } |
| 3596 | |
| 3597 | ret = set_port_feature(udev->parent, |
| 3598 | USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum, |
| 3599 | feature); |
| 3600 | if (ret < 0) { |
| 3601 | dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x," |
| 3602 | "error code %i\n", usb3_lpm_names[state], |
| 3603 | timeout, ret); |
| 3604 | return -EBUSY; |
| 3605 | } |
| 3606 | if (state == USB3_LPM_U1) |
| 3607 | udev->u1_params.timeout = timeout; |
| 3608 | else |
| 3609 | udev->u2_params.timeout = timeout; |
| 3610 | return 0; |
| 3611 | } |
| 3612 | |
| 3613 | /* |
| 3614 | * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated |
| 3615 | * U1/U2 entry. |
| 3616 | * |
| 3617 | * We will attempt to enable U1 or U2, but there are no guarantees that the |
| 3618 | * control transfers to set the hub timeout or enable device-initiated U1/U2 |
| 3619 | * will be successful. |
| 3620 | * |
| 3621 | * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI |
| 3622 | * driver know about it. If that call fails, it should be harmless, and just |
| 3623 | * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency. |
| 3624 | */ |
| 3625 | static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev, |
| 3626 | enum usb3_link_state state) |
| 3627 | { |
Sarah Sharp | 65a95b7 | 2012-10-05 10:32:07 -0700 | [diff] [blame] | 3628 | int timeout, ret; |
Sarah Sharp | ae8963a | 2012-10-03 11:18:05 -0700 | [diff] [blame] | 3629 | __u8 u1_mel = udev->bos->ss_cap->bU1devExitLat; |
| 3630 | __le16 u2_mel = udev->bos->ss_cap->bU2DevExitLat; |
| 3631 | |
| 3632 | /* If the device says it doesn't have *any* exit latency to come out of |
| 3633 | * U1 or U2, it's probably lying. Assume it doesn't implement that link |
| 3634 | * state. |
| 3635 | */ |
| 3636 | if ((state == USB3_LPM_U1 && u1_mel == 0) || |
| 3637 | (state == USB3_LPM_U2 && u2_mel == 0)) |
| 3638 | return; |
Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3639 | |
Sarah Sharp | 65a95b7 | 2012-10-05 10:32:07 -0700 | [diff] [blame] | 3640 | /* |
| 3641 | * First, let the device know about the exit latencies |
| 3642 | * associated with the link state we're about to enable. |
| 3643 | */ |
| 3644 | ret = usb_req_set_sel(udev, state); |
| 3645 | if (ret < 0) { |
| 3646 | dev_warn(&udev->dev, "Set SEL for device-initiated %s failed.\n", |
| 3647 | usb3_lpm_names[state]); |
| 3648 | return; |
| 3649 | } |
| 3650 | |
Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3651 | /* We allow the host controller to set the U1/U2 timeout internally |
| 3652 | * first, so that it can change its schedule to account for the |
| 3653 | * additional latency to send data to a device in a lower power |
| 3654 | * link state. |
| 3655 | */ |
| 3656 | timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state); |
| 3657 | |
| 3658 | /* xHCI host controller doesn't want to enable this LPM state. */ |
| 3659 | if (timeout == 0) |
| 3660 | return; |
| 3661 | |
| 3662 | if (timeout < 0) { |
| 3663 | dev_warn(&udev->dev, "Could not enable %s link state, " |
| 3664 | "xHCI error %i.\n", usb3_lpm_names[state], |
| 3665 | timeout); |
| 3666 | return; |
| 3667 | } |
| 3668 | |
| 3669 | if (usb_set_lpm_timeout(udev, state, timeout)) |
| 3670 | /* If we can't set the parent hub U1/U2 timeout, |
| 3671 | * device-initiated LPM won't be allowed either, so let the xHCI |
| 3672 | * host know that this link state won't be enabled. |
| 3673 | */ |
| 3674 | hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state); |
| 3675 | |
| 3676 | /* Only a configured device will accept the Set Feature U1/U2_ENABLE */ |
| 3677 | else if (udev->actconfig) |
| 3678 | usb_set_device_initiated_lpm(udev, state, true); |
| 3679 | |
| 3680 | } |
| 3681 | |
| 3682 | /* |
| 3683 | * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated |
| 3684 | * U1/U2 entry. |
| 3685 | * |
| 3686 | * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry. |
| 3687 | * If zero is returned, the parent will not allow the link to go into U1/U2. |
| 3688 | * |
| 3689 | * If zero is returned, device-initiated U1/U2 entry may still be enabled, but |
| 3690 | * it won't have an effect on the bus link state because the parent hub will |
| 3691 | * still disallow device-initiated U1/U2 entry. |
| 3692 | * |
| 3693 | * If zero is returned, the xHCI host controller may still think U1/U2 entry is |
| 3694 | * possible. The result will be slightly more bus bandwidth will be taken up |
| 3695 | * (to account for U1/U2 exit latency), but it should be harmless. |
| 3696 | */ |
| 3697 | static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev, |
| 3698 | enum usb3_link_state state) |
| 3699 | { |
| 3700 | int feature; |
| 3701 | |
| 3702 | switch (state) { |
| 3703 | case USB3_LPM_U1: |
| 3704 | feature = USB_PORT_FEAT_U1_TIMEOUT; |
| 3705 | break; |
| 3706 | case USB3_LPM_U2: |
| 3707 | feature = USB_PORT_FEAT_U2_TIMEOUT; |
| 3708 | break; |
| 3709 | default: |
| 3710 | dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n", |
| 3711 | __func__); |
| 3712 | return -EINVAL; |
| 3713 | } |
| 3714 | |
| 3715 | if (usb_set_lpm_timeout(udev, state, 0)) |
| 3716 | return -EBUSY; |
| 3717 | |
| 3718 | usb_set_device_initiated_lpm(udev, state, false); |
| 3719 | |
| 3720 | if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state)) |
| 3721 | dev_warn(&udev->dev, "Could not disable xHCI %s timeout, " |
| 3722 | "bus schedule bandwidth may be impacted.\n", |
| 3723 | usb3_lpm_names[state]); |
| 3724 | return 0; |
| 3725 | } |
| 3726 | |
| 3727 | /* |
| 3728 | * Disable hub-initiated and device-initiated U1 and U2 entry. |
| 3729 | * Caller must own the bandwidth_mutex. |
| 3730 | * |
| 3731 | * This will call usb_enable_lpm() on failure, which will decrement |
| 3732 | * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero. |
| 3733 | */ |
| 3734 | int usb_disable_lpm(struct usb_device *udev) |
| 3735 | { |
| 3736 | struct usb_hcd *hcd; |
| 3737 | |
| 3738 | if (!udev || !udev->parent || |
| 3739 | udev->speed != USB_SPEED_SUPER || |
| 3740 | !udev->lpm_capable) |
| 3741 | return 0; |
| 3742 | |
| 3743 | hcd = bus_to_hcd(udev->bus); |
| 3744 | if (!hcd || !hcd->driver->disable_usb3_lpm_timeout) |
| 3745 | return 0; |
| 3746 | |
| 3747 | udev->lpm_disable_count++; |
Dan Carpenter | 55558c3 | 2012-05-22 20:54:34 +0300 | [diff] [blame] | 3748 | if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0)) |
Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3749 | return 0; |
| 3750 | |
| 3751 | /* If LPM is enabled, attempt to disable it. */ |
| 3752 | if (usb_disable_link_state(hcd, udev, USB3_LPM_U1)) |
| 3753 | goto enable_lpm; |
| 3754 | if (usb_disable_link_state(hcd, udev, USB3_LPM_U2)) |
| 3755 | goto enable_lpm; |
| 3756 | |
| 3757 | return 0; |
| 3758 | |
| 3759 | enable_lpm: |
| 3760 | usb_enable_lpm(udev); |
| 3761 | return -EBUSY; |
| 3762 | } |
| 3763 | EXPORT_SYMBOL_GPL(usb_disable_lpm); |
| 3764 | |
| 3765 | /* Grab the bandwidth_mutex before calling usb_disable_lpm() */ |
| 3766 | int usb_unlocked_disable_lpm(struct usb_device *udev) |
| 3767 | { |
| 3768 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); |
| 3769 | int ret; |
| 3770 | |
| 3771 | if (!hcd) |
| 3772 | return -EINVAL; |
| 3773 | |
| 3774 | mutex_lock(hcd->bandwidth_mutex); |
| 3775 | ret = usb_disable_lpm(udev); |
| 3776 | mutex_unlock(hcd->bandwidth_mutex); |
| 3777 | |
| 3778 | return ret; |
| 3779 | } |
| 3780 | EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm); |
| 3781 | |
| 3782 | /* |
| 3783 | * Attempt to enable device-initiated and hub-initiated U1 and U2 entry. The |
| 3784 | * xHCI host policy may prevent U1 or U2 from being enabled. |
| 3785 | * |
| 3786 | * Other callers may have disabled link PM, so U1 and U2 entry will be disabled |
| 3787 | * until the lpm_disable_count drops to zero. Caller must own the |
| 3788 | * bandwidth_mutex. |
| 3789 | */ |
| 3790 | void usb_enable_lpm(struct usb_device *udev) |
| 3791 | { |
| 3792 | struct usb_hcd *hcd; |
| 3793 | |
| 3794 | if (!udev || !udev->parent || |
| 3795 | udev->speed != USB_SPEED_SUPER || |
| 3796 | !udev->lpm_capable) |
| 3797 | return; |
| 3798 | |
| 3799 | udev->lpm_disable_count--; |
| 3800 | hcd = bus_to_hcd(udev->bus); |
| 3801 | /* Double check that we can both enable and disable LPM. |
| 3802 | * Device must be configured to accept set feature U1/U2 timeout. |
| 3803 | */ |
| 3804 | if (!hcd || !hcd->driver->enable_usb3_lpm_timeout || |
| 3805 | !hcd->driver->disable_usb3_lpm_timeout) |
| 3806 | return; |
| 3807 | |
| 3808 | if (udev->lpm_disable_count > 0) |
| 3809 | return; |
| 3810 | |
| 3811 | usb_enable_link_state(hcd, udev, USB3_LPM_U1); |
| 3812 | usb_enable_link_state(hcd, udev, USB3_LPM_U2); |
| 3813 | } |
| 3814 | EXPORT_SYMBOL_GPL(usb_enable_lpm); |
| 3815 | |
| 3816 | /* Grab the bandwidth_mutex before calling usb_enable_lpm() */ |
| 3817 | void usb_unlocked_enable_lpm(struct usb_device *udev) |
| 3818 | { |
| 3819 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); |
| 3820 | |
| 3821 | if (!hcd) |
| 3822 | return; |
| 3823 | |
| 3824 | mutex_lock(hcd->bandwidth_mutex); |
| 3825 | usb_enable_lpm(udev); |
| 3826 | mutex_unlock(hcd->bandwidth_mutex); |
| 3827 | } |
| 3828 | EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm); |
| 3829 | |
| 3830 | |
Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 3831 | #else /* CONFIG_PM */ |
| 3832 | |
Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 3833 | #define hub_suspend NULL |
| 3834 | #define hub_resume NULL |
| 3835 | #define hub_reset_resume NULL |
Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3836 | |
| 3837 | int usb_disable_lpm(struct usb_device *udev) |
| 3838 | { |
| 3839 | return 0; |
| 3840 | } |
Sarah Sharp | e9261fb | 2012-05-21 08:29:01 -0700 | [diff] [blame] | 3841 | EXPORT_SYMBOL_GPL(usb_disable_lpm); |
Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3842 | |
| 3843 | void usb_enable_lpm(struct usb_device *udev) { } |
Sarah Sharp | e9261fb | 2012-05-21 08:29:01 -0700 | [diff] [blame] | 3844 | EXPORT_SYMBOL_GPL(usb_enable_lpm); |
Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3845 | |
| 3846 | int usb_unlocked_disable_lpm(struct usb_device *udev) |
| 3847 | { |
| 3848 | return 0; |
| 3849 | } |
Sarah Sharp | e9261fb | 2012-05-21 08:29:01 -0700 | [diff] [blame] | 3850 | EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm); |
Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3851 | |
| 3852 | void usb_unlocked_enable_lpm(struct usb_device *udev) { } |
Sarah Sharp | e9261fb | 2012-05-21 08:29:01 -0700 | [diff] [blame] | 3853 | EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm); |
Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 3854 | |
| 3855 | int usb_disable_ltm(struct usb_device *udev) |
| 3856 | { |
| 3857 | return 0; |
| 3858 | } |
| 3859 | EXPORT_SYMBOL_GPL(usb_disable_ltm); |
| 3860 | |
| 3861 | void usb_enable_ltm(struct usb_device *udev) { } |
| 3862 | EXPORT_SYMBOL_GPL(usb_enable_ltm); |
Alan Stern | c4b51a4 | 2013-07-11 14:58:23 -0400 | [diff] [blame] | 3863 | |
| 3864 | #endif /* CONFIG_PM */ |
Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 3865 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3866 | |
| 3867 | /* USB 2.0 spec, 7.1.7.3 / fig 7-29: |
| 3868 | * |
| 3869 | * Between connect detection and reset signaling there must be a delay |
| 3870 | * of 100ms at least for debounce and power-settling. The corresponding |
| 3871 | * timer shall restart whenever the downstream port detects a disconnect. |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 3872 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3873 | * Apparently there are some bluetooth and irda-dongles and a number of |
| 3874 | * low-speed devices for which this debounce period may last over a second. |
| 3875 | * Not covered by the spec - but easy to deal with. |
| 3876 | * |
| 3877 | * This implementation uses a 1500ms total debounce timeout; if the |
| 3878 | * connection isn't stable by then it returns -ETIMEDOUT. It checks |
| 3879 | * every 25ms for transient disconnects. When the port status has been |
| 3880 | * unchanged for 100ms it returns the port status. |
| 3881 | */ |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3882 | int hub_port_debounce(struct usb_hub *hub, int port1, bool must_be_connected) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3883 | { |
| 3884 | int ret; |
| 3885 | int total_time, stable_time = 0; |
| 3886 | u16 portchange, portstatus; |
| 3887 | unsigned connection = 0xffff; |
| 3888 | |
| 3889 | for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) { |
| 3890 | ret = hub_port_status(hub, port1, &portstatus, &portchange); |
| 3891 | if (ret < 0) |
| 3892 | return ret; |
| 3893 | |
| 3894 | if (!(portchange & USB_PORT_STAT_C_CONNECTION) && |
| 3895 | (portstatus & USB_PORT_STAT_CONNECTION) == connection) { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3896 | if (!must_be_connected || |
| 3897 | (connection == USB_PORT_STAT_CONNECTION)) |
| 3898 | stable_time += HUB_DEBOUNCE_STEP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3899 | if (stable_time >= HUB_DEBOUNCE_STABLE) |
| 3900 | break; |
| 3901 | } else { |
| 3902 | stable_time = 0; |
| 3903 | connection = portstatus & USB_PORT_STAT_CONNECTION; |
| 3904 | } |
| 3905 | |
| 3906 | if (portchange & USB_PORT_STAT_C_CONNECTION) { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3907 | usb_clear_port_feature(hub->hdev, port1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3908 | USB_PORT_FEAT_C_CONNECTION); |
| 3909 | } |
| 3910 | |
| 3911 | if (total_time >= HUB_DEBOUNCE_TIMEOUT) |
| 3912 | break; |
| 3913 | msleep(HUB_DEBOUNCE_STEP); |
| 3914 | } |
| 3915 | |
| 3916 | dev_dbg (hub->intfdev, |
| 3917 | "debounce: port %d: total %dms stable %dms status 0x%x\n", |
| 3918 | port1, total_time, stable_time, portstatus); |
| 3919 | |
| 3920 | if (stable_time < HUB_DEBOUNCE_STABLE) |
| 3921 | return -ETIMEDOUT; |
| 3922 | return portstatus; |
| 3923 | } |
| 3924 | |
Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 3925 | void usb_ep0_reinit(struct usb_device *udev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3926 | { |
Alan Stern | ddeac4e | 2009-01-15 17:03:33 -0500 | [diff] [blame] | 3927 | usb_disable_endpoint(udev, 0 + USB_DIR_IN, true); |
| 3928 | usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true); |
Alan Stern | 2caf7fc | 2008-12-31 11:31:33 -0500 | [diff] [blame] | 3929 | usb_enable_endpoint(udev, &udev->ep0, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3930 | } |
Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 3931 | EXPORT_SYMBOL_GPL(usb_ep0_reinit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3932 | |
| 3933 | #define usb_sndaddr0pipe() (PIPE_CONTROL << 30) |
| 3934 | #define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN) |
| 3935 | |
Alan Stern | 4326ed0 | 2007-07-30 17:08:43 -0400 | [diff] [blame] | 3936 | static int hub_set_address(struct usb_device *udev, int devnum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3937 | { |
| 3938 | int retval; |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 3939 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3940 | |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 3941 | /* |
| 3942 | * The host controller will choose the device address, |
| 3943 | * instead of the core having chosen it earlier |
| 3944 | */ |
| 3945 | if (!hcd->driver->address_device && devnum <= 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3946 | return -EINVAL; |
| 3947 | if (udev->state == USB_STATE_ADDRESS) |
| 3948 | return 0; |
| 3949 | if (udev->state != USB_STATE_DEFAULT) |
| 3950 | return -EINVAL; |
Andiry Xu | c8d4af8 | 2010-10-14 07:22:51 -0700 | [diff] [blame] | 3951 | if (hcd->driver->address_device) |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 3952 | retval = hcd->driver->address_device(hcd, udev); |
Andiry Xu | c8d4af8 | 2010-10-14 07:22:51 -0700 | [diff] [blame] | 3953 | else |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 3954 | retval = usb_control_msg(udev, usb_sndaddr0pipe(), |
| 3955 | USB_REQ_SET_ADDRESS, 0, devnum, 0, |
| 3956 | NULL, 0, USB_CTRL_SET_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3957 | if (retval == 0) { |
Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 3958 | update_devnum(udev, devnum); |
David Vrabel | 4953d14 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 3959 | /* Device now using proper address. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3960 | usb_set_device_state(udev, USB_STATE_ADDRESS); |
Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 3961 | usb_ep0_reinit(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3962 | } |
| 3963 | return retval; |
| 3964 | } |
| 3965 | |
Mathias Nyman | 890dae8 | 2013-09-30 17:26:31 +0300 | [diff] [blame] | 3966 | /* |
| 3967 | * There are reports of USB 3.0 devices that say they support USB 2.0 Link PM |
| 3968 | * when they're plugged into a USB 2.0 port, but they don't work when LPM is |
| 3969 | * enabled. |
| 3970 | * |
| 3971 | * Only enable USB 2.0 Link PM if the port is internal (hardwired), or the |
| 3972 | * device says it supports the new USB 2.0 Link PM errata by setting the BESL |
| 3973 | * support bit in the BOS descriptor. |
| 3974 | */ |
| 3975 | static void hub_set_initial_usb2_lpm_policy(struct usb_device *udev) |
| 3976 | { |
| 3977 | int connect_type; |
| 3978 | |
| 3979 | if (!udev->usb2_hw_lpm_capable) |
| 3980 | return; |
| 3981 | |
| 3982 | connect_type = usb_get_hub_port_connect_type(udev->parent, |
| 3983 | udev->portnum); |
| 3984 | |
Bjørn Mork | 23c0582 | 2014-02-27 14:23:55 +0100 | [diff] [blame] | 3985 | if ((udev->bos->ext_cap->bmAttributes & cpu_to_le32(USB_BESL_SUPPORT)) || |
Mathias Nyman | 890dae8 | 2013-09-30 17:26:31 +0300 | [diff] [blame] | 3986 | connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) { |
| 3987 | udev->usb2_hw_lpm_allowed = 1; |
| 3988 | usb_set_usb2_hardware_lpm(udev, 1); |
| 3989 | } |
| 3990 | } |
| 3991 | |
Dan Williams | 48fc7db | 2013-12-05 17:07:27 -0800 | [diff] [blame] | 3992 | static int hub_enable_device(struct usb_device *udev) |
| 3993 | { |
| 3994 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); |
| 3995 | |
| 3996 | if (!hcd->driver->enable_device) |
| 3997 | return 0; |
| 3998 | if (udev->state == USB_STATE_ADDRESS) |
| 3999 | return 0; |
| 4000 | if (udev->state != USB_STATE_DEFAULT) |
| 4001 | return -EINVAL; |
| 4002 | |
| 4003 | return hcd->driver->enable_device(hcd, udev); |
| 4004 | } |
| 4005 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4006 | /* Reset device, (re)assign address, get device descriptor. |
| 4007 | * Device connection must be stable, no more debouncing needed. |
| 4008 | * Returns device in USB_STATE_ADDRESS, except on error. |
| 4009 | * |
| 4010 | * If this is called for an already-existing device (as part of |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 4011 | * usb_reset_and_verify_device), the caller must own the device lock. For a |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4012 | * newly detected device that is not accessible through any global |
| 4013 | * pointers, it's not necessary to lock the device. |
| 4014 | */ |
| 4015 | static int |
| 4016 | hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1, |
| 4017 | int retry_counter) |
| 4018 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4019 | struct usb_device *hdev = hub->hdev; |
Sarah Sharp | e7b7717 | 2009-04-27 19:54:26 -0700 | [diff] [blame] | 4020 | struct usb_hcd *hcd = bus_to_hcd(hdev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4021 | int i, j, retval; |
| 4022 | unsigned delay = HUB_SHORT_RESET_TIME; |
| 4023 | enum usb_device_speed oldspeed = udev->speed; |
Michal Nazarewicz | e538dfd | 2011-08-30 17:11:19 +0200 | [diff] [blame] | 4024 | const char *speed; |
Alan Stern | 4326ed0 | 2007-07-30 17:08:43 -0400 | [diff] [blame] | 4025 | int devnum = udev->devnum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4026 | |
| 4027 | /* root hub ports have a slightly longer reset period |
| 4028 | * (from USB 2.0 spec, section 7.1.7.5) |
| 4029 | */ |
| 4030 | if (!hdev->parent) { |
| 4031 | delay = HUB_ROOT_RESET_TIME; |
| 4032 | if (port1 == hdev->bus->otg_port) |
| 4033 | hdev->bus->b_hnp_enable = 0; |
| 4034 | } |
| 4035 | |
| 4036 | /* Some low speed devices have problems with the quick delay, so */ |
| 4037 | /* be a bit pessimistic with those devices. RHbug #23670 */ |
| 4038 | if (oldspeed == USB_SPEED_LOW) |
| 4039 | delay = HUB_LONG_RESET_TIME; |
| 4040 | |
Todd E Brandt | 6fecd4f | 2014-05-19 10:55:32 -0700 | [diff] [blame] | 4041 | mutex_lock(&hdev->bus->usb_address0_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4042 | |
Luben Tuikov | 07194ab | 2011-02-11 11:33:10 -0800 | [diff] [blame] | 4043 | /* Reset the device; full speed may morph to high speed */ |
| 4044 | /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */ |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 4045 | retval = hub_port_reset(hub, port1, udev, delay, false); |
Luben Tuikov | 07194ab | 2011-02-11 11:33:10 -0800 | [diff] [blame] | 4046 | if (retval < 0) /* error or disconnect */ |
| 4047 | goto fail; |
| 4048 | /* success, speed is known */ |
| 4049 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4050 | retval = -ENODEV; |
| 4051 | |
| 4052 | if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) { |
| 4053 | dev_dbg(&udev->dev, "device reset changed speed!\n"); |
| 4054 | goto fail; |
| 4055 | } |
| 4056 | oldspeed = udev->speed; |
Alan Stern | 4326ed0 | 2007-07-30 17:08:43 -0400 | [diff] [blame] | 4057 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4058 | /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ... |
| 4059 | * it's fixed size except for full speed devices. |
Inaky Perez-Gonzalez | 5bb6e0a | 2006-08-25 19:35:30 -0700 | [diff] [blame] | 4060 | * For Wireless USB devices, ep0 max packet is always 512 (tho |
| 4061 | * reported as 0xff in the device descriptor). WUSB1.0[4.8.1]. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4062 | */ |
| 4063 | switch (udev->speed) { |
Sarah Sharp | 6b403b0 | 2009-04-27 19:54:10 -0700 | [diff] [blame] | 4064 | case USB_SPEED_SUPER: |
Greg Kroah-Hartman | 551cdbb | 2010-01-14 11:08:04 -0800 | [diff] [blame] | 4065 | case USB_SPEED_WIRELESS: /* fixed at 512 */ |
Harvey Harrison | 551509d | 2009-02-11 14:11:36 -0800 | [diff] [blame] | 4066 | udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512); |
Inaky Perez-Gonzalez | 5bb6e0a | 2006-08-25 19:35:30 -0700 | [diff] [blame] | 4067 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4068 | case USB_SPEED_HIGH: /* fixed at 64 */ |
Harvey Harrison | 551509d | 2009-02-11 14:11:36 -0800 | [diff] [blame] | 4069 | udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4070 | break; |
| 4071 | case USB_SPEED_FULL: /* 8, 16, 32, or 64 */ |
| 4072 | /* to determine the ep0 maxpacket size, try to read |
| 4073 | * the device descriptor to get bMaxPacketSize0 and |
| 4074 | * then correct our initial guess. |
| 4075 | */ |
Harvey Harrison | 551509d | 2009-02-11 14:11:36 -0800 | [diff] [blame] | 4076 | udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4077 | break; |
| 4078 | case USB_SPEED_LOW: /* fixed at 8 */ |
Harvey Harrison | 551509d | 2009-02-11 14:11:36 -0800 | [diff] [blame] | 4079 | udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4080 | break; |
| 4081 | default: |
| 4082 | goto fail; |
| 4083 | } |
Michal Nazarewicz | e538dfd | 2011-08-30 17:11:19 +0200 | [diff] [blame] | 4084 | |
| 4085 | if (udev->speed == USB_SPEED_WIRELESS) |
| 4086 | speed = "variable speed Wireless"; |
| 4087 | else |
| 4088 | speed = usb_speed_string(udev->speed); |
| 4089 | |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 4090 | if (udev->speed != USB_SPEED_SUPER) |
| 4091 | dev_info(&udev->dev, |
Michal Nazarewicz | e538dfd | 2011-08-30 17:11:19 +0200 | [diff] [blame] | 4092 | "%s %s USB device number %d using %s\n", |
| 4093 | (udev->config) ? "reset" : "new", speed, |
Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 4094 | devnum, udev->bus->controller->driver->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4095 | |
| 4096 | /* Set up TT records, if needed */ |
| 4097 | if (hdev->tt) { |
| 4098 | udev->tt = hdev->tt; |
| 4099 | udev->ttport = hdev->ttport; |
| 4100 | } else if (udev->speed != USB_SPEED_HIGH |
| 4101 | && hdev->speed == USB_SPEED_HIGH) { |
Alan Stern | d199c96 | 2011-01-31 10:56:37 -0500 | [diff] [blame] | 4102 | if (!hub->tt.hub) { |
| 4103 | dev_err(&udev->dev, "parent hub has no TT\n"); |
| 4104 | retval = -EINVAL; |
| 4105 | goto fail; |
| 4106 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4107 | udev->tt = &hub->tt; |
| 4108 | udev->ttport = port1; |
| 4109 | } |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4111 | /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way? |
| 4112 | * Because device hardware and firmware is sometimes buggy in |
| 4113 | * this area, and this is how Linux has done it for ages. |
| 4114 | * Change it cautiously. |
| 4115 | * |
Dan Williams | 48fc7db | 2013-12-05 17:07:27 -0800 | [diff] [blame] | 4116 | * NOTE: If use_new_scheme() is true we will start by issuing |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4117 | * a 64-byte GET_DESCRIPTOR request. This is what Windows does, |
| 4118 | * so it may help with some non-standards-compliant devices. |
| 4119 | * Otherwise we start with SET_ADDRESS and then try to read the |
| 4120 | * first 8 bytes of the device descriptor to get the ep0 maxpacket |
| 4121 | * value. |
| 4122 | */ |
| 4123 | for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) { |
Dan Williams | 48fc7db | 2013-12-05 17:07:27 -0800 | [diff] [blame] | 4124 | bool did_new_scheme = false; |
| 4125 | |
| 4126 | if (use_new_scheme(udev, retry_counter)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4127 | struct usb_device_descriptor *buf; |
| 4128 | int r = 0; |
| 4129 | |
Dan Williams | 48fc7db | 2013-12-05 17:07:27 -0800 | [diff] [blame] | 4130 | did_new_scheme = true; |
| 4131 | retval = hub_enable_device(udev); |
Oliver Neukum | 938569e | 2014-02-27 10:57:10 +0100 | [diff] [blame] | 4132 | if (retval < 0) { |
| 4133 | dev_err(&udev->dev, |
| 4134 | "hub failed to enable device, error %d\n", |
| 4135 | retval); |
Dan Williams | 48fc7db | 2013-12-05 17:07:27 -0800 | [diff] [blame] | 4136 | goto fail; |
Oliver Neukum | 938569e | 2014-02-27 10:57:10 +0100 | [diff] [blame] | 4137 | } |
Dan Williams | 48fc7db | 2013-12-05 17:07:27 -0800 | [diff] [blame] | 4138 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4139 | #define GET_DESCRIPTOR_BUFSIZE 64 |
| 4140 | buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO); |
| 4141 | if (!buf) { |
| 4142 | retval = -ENOMEM; |
| 4143 | continue; |
| 4144 | } |
| 4145 | |
Alan Stern | b89ee19 | 2007-05-11 10:19:04 -0400 | [diff] [blame] | 4146 | /* Retry on all errors; some devices are flakey. |
| 4147 | * 255 is for WUSB devices, we actually need to use |
| 4148 | * 512 (WUSB1.0[4.8.1]). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4149 | */ |
| 4150 | for (j = 0; j < 3; ++j) { |
| 4151 | buf->bMaxPacketSize0 = 0; |
| 4152 | r = usb_control_msg(udev, usb_rcvaddr0pipe(), |
| 4153 | USB_REQ_GET_DESCRIPTOR, USB_DIR_IN, |
| 4154 | USB_DT_DEVICE << 8, 0, |
| 4155 | buf, GET_DESCRIPTOR_BUFSIZE, |
Jaroslav Kysela | fd7c519 | 2008-10-10 16:24:45 +0200 | [diff] [blame] | 4156 | initial_descriptor_timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4157 | switch (buf->bMaxPacketSize0) { |
Inaky Perez-Gonzalez | 5bb6e0a | 2006-08-25 19:35:30 -0700 | [diff] [blame] | 4158 | case 8: case 16: case 32: case 64: case 255: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4159 | if (buf->bDescriptorType == |
| 4160 | USB_DT_DEVICE) { |
| 4161 | r = 0; |
| 4162 | break; |
| 4163 | } |
| 4164 | /* FALL THROUGH */ |
| 4165 | default: |
| 4166 | if (r == 0) |
| 4167 | r = -EPROTO; |
| 4168 | break; |
| 4169 | } |
| 4170 | if (r == 0) |
| 4171 | break; |
| 4172 | } |
| 4173 | udev->descriptor.bMaxPacketSize0 = |
| 4174 | buf->bMaxPacketSize0; |
| 4175 | kfree(buf); |
| 4176 | |
Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 4177 | retval = hub_port_reset(hub, port1, udev, delay, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4178 | if (retval < 0) /* error or disconnect */ |
| 4179 | goto fail; |
| 4180 | if (oldspeed != udev->speed) { |
| 4181 | dev_dbg(&udev->dev, |
| 4182 | "device reset changed speed!\n"); |
| 4183 | retval = -ENODEV; |
| 4184 | goto fail; |
| 4185 | } |
| 4186 | if (r) { |
Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 4187 | if (r != -ENODEV) |
| 4188 | dev_err(&udev->dev, "device descriptor read/64, error %d\n", |
| 4189 | r); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4190 | retval = -EMSGSIZE; |
| 4191 | continue; |
| 4192 | } |
| 4193 | #undef GET_DESCRIPTOR_BUFSIZE |
| 4194 | } |
| 4195 | |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4196 | /* |
| 4197 | * If device is WUSB, we already assigned an |
| 4198 | * unauthorized address in the Connect Ack sequence; |
| 4199 | * authorization will assign the final address. |
| 4200 | */ |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 4201 | if (udev->wusb == 0) { |
Inaky Perez-Gonzalez | 6c529cd | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 4202 | for (j = 0; j < SET_ADDRESS_TRIES; ++j) { |
| 4203 | retval = hub_set_address(udev, devnum); |
| 4204 | if (retval >= 0) |
| 4205 | break; |
| 4206 | msleep(200); |
| 4207 | } |
| 4208 | if (retval < 0) { |
Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 4209 | if (retval != -ENODEV) |
| 4210 | dev_err(&udev->dev, "device not accepting address %d, error %d\n", |
| 4211 | devnum, retval); |
Inaky Perez-Gonzalez | 6c529cd | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 4212 | goto fail; |
| 4213 | } |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 4214 | if (udev->speed == USB_SPEED_SUPER) { |
| 4215 | devnum = udev->devnum; |
| 4216 | dev_info(&udev->dev, |
Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 4217 | "%s SuperSpeed USB device number %d using %s\n", |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 4218 | (udev->config) ? "reset" : "new", |
Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 4219 | devnum, udev->bus->controller->driver->name); |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 4220 | } |
Inaky Perez-Gonzalez | 6c529cd | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 4221 | |
| 4222 | /* cope with hardware quirkiness: |
| 4223 | * - let SET_ADDRESS settle, some device hardware wants it |
| 4224 | * - read ep0 maxpacket even for high and low speed, |
| 4225 | */ |
| 4226 | msleep(10); |
Dan Williams | 48fc7db | 2013-12-05 17:07:27 -0800 | [diff] [blame] | 4227 | /* use_new_scheme() checks the speed which may have |
| 4228 | * changed since the initial look so we cache the result |
| 4229 | * in did_new_scheme |
| 4230 | */ |
| 4231 | if (did_new_scheme) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4232 | break; |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4233 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4234 | |
| 4235 | retval = usb_get_device_descriptor(udev, 8); |
| 4236 | if (retval < 8) { |
Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 4237 | if (retval != -ENODEV) |
| 4238 | dev_err(&udev->dev, |
Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 4239 | "device descriptor read/8, error %d\n", |
| 4240 | retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4241 | if (retval >= 0) |
| 4242 | retval = -EMSGSIZE; |
| 4243 | } else { |
| 4244 | retval = 0; |
| 4245 | break; |
| 4246 | } |
| 4247 | } |
| 4248 | if (retval) |
| 4249 | goto fail; |
| 4250 | |
Peter Chen | b76baa8 | 2012-11-09 09:44:43 +0800 | [diff] [blame] | 4251 | if (hcd->phy && !hdev->parent) |
Peter Chen | ac96511 | 2012-11-09 09:44:44 +0800 | [diff] [blame] | 4252 | usb_phy_notify_connect(hcd->phy, udev->speed); |
Peter Chen | b76baa8 | 2012-11-09 09:44:43 +0800 | [diff] [blame] | 4253 | |
Elric Fu | d8aec3d | 2012-03-26 21:16:02 +0800 | [diff] [blame] | 4254 | /* |
| 4255 | * Some superspeed devices have finished the link training process |
| 4256 | * and attached to a superspeed hub port, but the device descriptor |
| 4257 | * got from those devices show they aren't superspeed devices. Warm |
| 4258 | * reset the port attached by the devices can fix them. |
| 4259 | */ |
| 4260 | if ((udev->speed == USB_SPEED_SUPER) && |
| 4261 | (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) { |
| 4262 | dev_err(&udev->dev, "got a wrong device descriptor, " |
| 4263 | "warm reset device\n"); |
| 4264 | hub_port_reset(hub, port1, udev, |
| 4265 | HUB_BH_RESET_TIME, true); |
| 4266 | retval = -EINVAL; |
| 4267 | goto fail; |
| 4268 | } |
| 4269 | |
Sarah Sharp | 6b403b0 | 2009-04-27 19:54:10 -0700 | [diff] [blame] | 4270 | if (udev->descriptor.bMaxPacketSize0 == 0xff || |
| 4271 | udev->speed == USB_SPEED_SUPER) |
| 4272 | i = 512; |
| 4273 | else |
| 4274 | i = udev->descriptor.bMaxPacketSize0; |
Kuninori Morimoto | 29cc889 | 2011-08-23 03:12:03 -0700 | [diff] [blame] | 4275 | if (usb_endpoint_maxp(&udev->ep0.desc) != i) { |
Alan Stern | 56626a7 | 2010-10-14 15:25:21 -0400 | [diff] [blame] | 4276 | if (udev->speed == USB_SPEED_LOW || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4277 | !(i == 8 || i == 16 || i == 32 || i == 64)) { |
Alan Stern | 56626a7 | 2010-10-14 15:25:21 -0400 | [diff] [blame] | 4278 | dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4279 | retval = -EMSGSIZE; |
| 4280 | goto fail; |
| 4281 | } |
Alan Stern | 56626a7 | 2010-10-14 15:25:21 -0400 | [diff] [blame] | 4282 | if (udev->speed == USB_SPEED_FULL) |
| 4283 | dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i); |
| 4284 | else |
| 4285 | dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4286 | udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i); |
Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 4287 | usb_ep0_reinit(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4288 | } |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4290 | retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE); |
| 4291 | if (retval < (signed)sizeof(udev->descriptor)) { |
Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 4292 | if (retval != -ENODEV) |
| 4293 | dev_err(&udev->dev, "device descriptor read/all, error %d\n", |
| 4294 | retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4295 | if (retval >= 0) |
| 4296 | retval = -ENOMSG; |
| 4297 | goto fail; |
| 4298 | } |
| 4299 | |
Andiry Xu | 1ff4df5 | 2011-09-23 14:19:48 -0700 | [diff] [blame] | 4300 | if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) { |
| 4301 | retval = usb_get_bos_descriptor(udev); |
Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 4302 | if (!retval) { |
Sarah Sharp | d9b2099 | 2012-02-20 08:31:26 -0800 | [diff] [blame] | 4303 | udev->lpm_capable = usb_device_supports_lpm(udev); |
Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 4304 | usb_set_lpm_parameters(udev); |
| 4305 | } |
Andiry Xu | 1ff4df5 | 2011-09-23 14:19:48 -0700 | [diff] [blame] | 4306 | } |
Andiry Xu | 3148bf0 | 2011-09-23 14:19:47 -0700 | [diff] [blame] | 4307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4308 | retval = 0; |
Alek Du | 48f2497 | 2010-06-04 15:47:55 +0800 | [diff] [blame] | 4309 | /* notify HCD that we have a device connected and addressed */ |
| 4310 | if (hcd->driver->update_device) |
| 4311 | hcd->driver->update_device(hcd, udev); |
Mathias Nyman | 890dae8 | 2013-09-30 17:26:31 +0300 | [diff] [blame] | 4312 | hub_set_initial_usb2_lpm_policy(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4313 | fail: |
Alan Stern | 4326ed0 | 2007-07-30 17:08:43 -0400 | [diff] [blame] | 4314 | if (retval) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4315 | hub_port_disable(hub, port1, 0); |
Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 4316 | update_devnum(udev, devnum); /* for disconnect processing */ |
Alan Stern | 4326ed0 | 2007-07-30 17:08:43 -0400 | [diff] [blame] | 4317 | } |
Todd E Brandt | 6fecd4f | 2014-05-19 10:55:32 -0700 | [diff] [blame] | 4318 | mutex_unlock(&hdev->bus->usb_address0_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4319 | return retval; |
| 4320 | } |
| 4321 | |
| 4322 | static void |
| 4323 | check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1) |
| 4324 | { |
| 4325 | struct usb_qualifier_descriptor *qual; |
| 4326 | int status; |
| 4327 | |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 4328 | qual = kmalloc (sizeof *qual, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4329 | if (qual == NULL) |
| 4330 | return; |
| 4331 | |
| 4332 | status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0, |
| 4333 | qual, sizeof *qual); |
| 4334 | if (status == sizeof *qual) { |
| 4335 | dev_info(&udev->dev, "not running at top speed; " |
| 4336 | "connect to a high speed hub\n"); |
| 4337 | /* hub LEDs are probably harder to miss than syslog */ |
| 4338 | if (hub->has_indicators) { |
| 4339 | hub->indicator[port1-1] = INDICATOR_GREEN_BLINK; |
Shaibal Dutta | 22f6a0f | 2014-02-01 19:16:46 -0800 | [diff] [blame] | 4340 | queue_delayed_work(system_power_efficient_wq, |
| 4341 | &hub->leds, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4342 | } |
| 4343 | } |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 4344 | kfree(qual); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4345 | } |
| 4346 | |
| 4347 | static unsigned |
| 4348 | hub_power_remaining (struct usb_hub *hub) |
| 4349 | { |
| 4350 | struct usb_device *hdev = hub->hdev; |
| 4351 | int remaining; |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4352 | int port1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4353 | |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4354 | if (!hub->limited_power) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4355 | return 0; |
| 4356 | |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4357 | remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent; |
| 4358 | for (port1 = 1; port1 <= hdev->maxchild; ++port1) { |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 4359 | struct usb_device *udev = hub->ports[port1 - 1]->child; |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4360 | int delta; |
Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 4361 | unsigned unit_load; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4362 | |
| 4363 | if (!udev) |
| 4364 | continue; |
Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 4365 | if (hub_is_superspeed(udev)) |
| 4366 | unit_load = 150; |
| 4367 | else |
| 4368 | unit_load = 100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4369 | |
Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 4370 | /* |
| 4371 | * Unconfigured devices may not use more than one unit load, |
| 4372 | * or 8mA for OTG ports |
| 4373 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4374 | if (udev->actconfig) |
Sebastian Andrzej Siewior | 8d8479d | 2012-12-18 15:25:46 +0100 | [diff] [blame] | 4375 | delta = usb_get_max_power(udev, udev->actconfig); |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4376 | else if (port1 != udev->bus->otg_port || hdev->parent) |
Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 4377 | delta = unit_load; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4378 | else |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4379 | delta = 8; |
| 4380 | if (delta > hub->mA_per_port) |
Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 4381 | dev_warn(&udev->dev, |
| 4382 | "%dmA is over %umA budget for port %d!\n", |
| 4383 | delta, hub->mA_per_port, port1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4384 | remaining -= delta; |
| 4385 | } |
| 4386 | if (remaining < 0) { |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4387 | dev_warn(hub->intfdev, "%dmA over power budget!\n", |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4388 | -remaining); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4389 | remaining = 0; |
| 4390 | } |
| 4391 | return remaining; |
| 4392 | } |
| 4393 | |
| 4394 | /* Handle physical or logical connection change events. |
| 4395 | * This routine is called when: |
| 4396 | * a port connection-change occurs; |
| 4397 | * a port enable-change occurs (often caused by EMI); |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 4398 | * usb_reset_and_verify_device() encounters changed descriptors (as from |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4399 | * a firmware download) |
| 4400 | * caller already locked the hub |
| 4401 | */ |
| 4402 | static void hub_port_connect_change(struct usb_hub *hub, int port1, |
| 4403 | u16 portstatus, u16 portchange) |
| 4404 | { |
| 4405 | struct usb_device *hdev = hub->hdev; |
| 4406 | struct device *hub_dev = hub->intfdev; |
Balaji Rao | 90da096 | 2007-11-22 01:58:14 +0530 | [diff] [blame] | 4407 | struct usb_hcd *hcd = bus_to_hcd(hdev->bus); |
Alan Stern | 24618b0 | 2008-04-28 11:06:28 -0400 | [diff] [blame] | 4408 | unsigned wHubCharacteristics = |
| 4409 | le16_to_cpu(hub->descriptor->wHubCharacteristics); |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4410 | struct usb_device *udev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4411 | int status, i; |
Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 4412 | unsigned unit_load; |
Alan Stern | 24618b0 | 2008-04-28 11:06:28 -0400 | [diff] [blame] | 4413 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4414 | dev_dbg (hub_dev, |
| 4415 | "port %d, status %04x, change %04x, %s\n", |
Sarah Sharp | 131dec3 | 2010-12-06 21:00:19 -0800 | [diff] [blame] | 4416 | port1, portstatus, portchange, portspeed(hub, portstatus)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4417 | |
| 4418 | if (hub->has_indicators) { |
| 4419 | set_port_led(hub, port1, HUB_LED_AUTO); |
| 4420 | hub->indicator[port1-1] = INDICATOR_AUTO; |
| 4421 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4422 | |
| 4423 | #ifdef CONFIG_USB_OTG |
| 4424 | /* during HNP, don't repeat the debounce */ |
| 4425 | if (hdev->bus->is_b_host) |
Alan Stern | 24618b0 | 2008-04-28 11:06:28 -0400 | [diff] [blame] | 4426 | portchange &= ~(USB_PORT_STAT_C_CONNECTION | |
| 4427 | USB_PORT_STAT_C_ENABLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4428 | #endif |
| 4429 | |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4430 | /* Try to resuscitate an existing device */ |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 4431 | udev = hub->ports[port1 - 1]->child; |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4432 | if ((portstatus & USB_PORT_STAT_CONNECTION) && udev && |
| 4433 | udev->state != USB_STATE_NOTATTACHED) { |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4434 | usb_lock_device(udev); |
| 4435 | if (portstatus & USB_PORT_STAT_ENABLE) { |
| 4436 | status = 0; /* Nothing to do */ |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4437 | |
Alan Stern | 84ebc10 | 2013-03-27 16:14:46 -0400 | [diff] [blame] | 4438 | #ifdef CONFIG_PM_RUNTIME |
Alan Stern | 5257d97 | 2008-09-22 14:43:08 -0400 | [diff] [blame] | 4439 | } else if (udev->state == USB_STATE_SUSPENDED && |
| 4440 | udev->persist_enabled) { |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4441 | /* For a suspended device, treat this as a |
| 4442 | * remote wakeup event. |
| 4443 | */ |
Alan Stern | 0534d46 | 2010-01-08 12:56:30 -0500 | [diff] [blame] | 4444 | status = usb_remote_wakeup(udev); |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4445 | #endif |
| 4446 | |
| 4447 | } else { |
Alan Stern | 5257d97 | 2008-09-22 14:43:08 -0400 | [diff] [blame] | 4448 | status = -ENODEV; /* Don't resuscitate */ |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4449 | } |
| 4450 | usb_unlock_device(udev); |
| 4451 | |
| 4452 | if (status == 0) { |
| 4453 | clear_bit(port1, hub->change_bits); |
| 4454 | return; |
| 4455 | } |
| 4456 | } |
| 4457 | |
Alan Stern | 24618b0 | 2008-04-28 11:06:28 -0400 | [diff] [blame] | 4458 | /* Disconnect any existing devices under this port */ |
Peter Chen | b76baa8 | 2012-11-09 09:44:43 +0800 | [diff] [blame] | 4459 | if (udev) { |
| 4460 | if (hcd->phy && !hdev->parent && |
| 4461 | !(portstatus & USB_PORT_STAT_CONNECTION)) |
Peter Chen | ac96511 | 2012-11-09 09:44:44 +0800 | [diff] [blame] | 4462 | usb_phy_notify_disconnect(hcd->phy, udev->speed); |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 4463 | usb_disconnect(&hub->ports[port1 - 1]->child); |
Peter Chen | b76baa8 | 2012-11-09 09:44:43 +0800 | [diff] [blame] | 4464 | } |
Alan Stern | 24618b0 | 2008-04-28 11:06:28 -0400 | [diff] [blame] | 4465 | clear_bit(port1, hub->change_bits); |
| 4466 | |
Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 4467 | /* We can forget about a "removed" device when there's a physical |
| 4468 | * disconnect or the connect status changes. |
| 4469 | */ |
| 4470 | if (!(portstatus & USB_PORT_STAT_CONNECTION) || |
| 4471 | (portchange & USB_PORT_STAT_C_CONNECTION)) |
| 4472 | clear_bit(port1, hub->removed_bits); |
| 4473 | |
Alan Stern | 5257d97 | 2008-09-22 14:43:08 -0400 | [diff] [blame] | 4474 | if (portchange & (USB_PORT_STAT_C_CONNECTION | |
| 4475 | USB_PORT_STAT_C_ENABLE)) { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4476 | status = hub_port_debounce_be_stable(hub, port1); |
Alan Stern | 5257d97 | 2008-09-22 14:43:08 -0400 | [diff] [blame] | 4477 | if (status < 0) { |
Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 4478 | if (status != -ENODEV && printk_ratelimit()) |
Alan Stern | 5257d97 | 2008-09-22 14:43:08 -0400 | [diff] [blame] | 4479 | dev_err(hub_dev, "connect-debounce failed, " |
| 4480 | "port %d disabled\n", port1); |
| 4481 | portstatus &= ~USB_PORT_STAT_CONNECTION; |
| 4482 | } else { |
| 4483 | portstatus = status; |
| 4484 | } |
| 4485 | } |
| 4486 | |
Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 4487 | /* Return now if debouncing failed or nothing is connected or |
| 4488 | * the device was "removed". |
| 4489 | */ |
| 4490 | if (!(portstatus & USB_PORT_STAT_CONNECTION) || |
| 4491 | test_bit(port1, hub->removed_bits)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4492 | |
| 4493 | /* maybe switch power back on (e.g. root hub was reset) */ |
Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 4494 | if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2 |
Andiry Xu | 0ed9a57 | 2011-04-27 18:07:43 +0800 | [diff] [blame] | 4495 | && !port_is_power_on(hub, portstatus)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4496 | set_port_feature(hdev, port1, USB_PORT_FEAT_POWER); |
Alan Stern | 5257d97 | 2008-09-22 14:43:08 -0400 | [diff] [blame] | 4497 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4498 | if (portstatus & USB_PORT_STAT_ENABLE) |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4499 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4500 | return; |
| 4501 | } |
Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 4502 | if (hub_is_superspeed(hub->hdev)) |
| 4503 | unit_load = 150; |
| 4504 | else |
| 4505 | unit_load = 100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4506 | |
Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 4507 | status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4508 | for (i = 0; i < SET_CONFIG_TRIES; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4509 | |
| 4510 | /* reallocate for each attempt, since references |
| 4511 | * to the previous one can escape in various ways |
| 4512 | */ |
| 4513 | udev = usb_alloc_dev(hdev, hdev->bus, port1); |
| 4514 | if (!udev) { |
| 4515 | dev_err (hub_dev, |
| 4516 | "couldn't allocate port %d usb_device\n", |
| 4517 | port1); |
| 4518 | goto done; |
| 4519 | } |
| 4520 | |
| 4521 | usb_set_device_state(udev, USB_STATE_POWERED); |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4522 | udev->bus_mA = hub->mA_per_port; |
Alan Stern | b6956ff | 2006-08-30 15:46:48 -0400 | [diff] [blame] | 4523 | udev->level = hdev->level + 1; |
Inaky Perez-Gonzalez | 8af548d | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 4524 | udev->wusb = hub_is_wusb(hub); |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4525 | |
Sarah Sharp | 131dec3 | 2010-12-06 21:00:19 -0800 | [diff] [blame] | 4526 | /* Only USB 3.0 devices are connected to SuperSpeed hubs. */ |
| 4527 | if (hub_is_superspeed(hub->hdev)) |
Sarah Sharp | e7b7717 | 2009-04-27 19:54:26 -0700 | [diff] [blame] | 4528 | udev->speed = USB_SPEED_SUPER; |
| 4529 | else |
| 4530 | udev->speed = USB_SPEED_UNKNOWN; |
| 4531 | |
Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 4532 | choose_devnum(udev); |
Andiry Xu | c8d4af8 | 2010-10-14 07:22:51 -0700 | [diff] [blame] | 4533 | if (udev->devnum <= 0) { |
| 4534 | status = -ENOTCONN; /* Don't retry */ |
| 4535 | goto loop; |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 4536 | } |
| 4537 | |
Sarah Sharp | e7b7717 | 2009-04-27 19:54:26 -0700 | [diff] [blame] | 4538 | /* reset (non-USB 3.0 devices) and get descriptor */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4539 | status = hub_port_init(hub, udev, port1, i); |
| 4540 | if (status < 0) |
| 4541 | goto loop; |
| 4542 | |
Phil Dibowitz | 93362a8 | 2010-07-22 00:05:01 +0200 | [diff] [blame] | 4543 | usb_detect_quirks(udev); |
| 4544 | if (udev->quirks & USB_QUIRK_DELAY_INIT) |
| 4545 | msleep(1000); |
| 4546 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4547 | /* consecutive bus-powered hubs aren't reliable; they can |
| 4548 | * violate the voltage drop budget. if the new child has |
| 4549 | * a "powered" LED, users should notice we didn't enable it |
| 4550 | * (without reading syslog), even without per-port LEDs |
| 4551 | * on the parent. |
| 4552 | */ |
| 4553 | if (udev->descriptor.bDeviceClass == USB_CLASS_HUB |
Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 4554 | && udev->bus_mA <= unit_load) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4555 | u16 devstat; |
| 4556 | |
| 4557 | status = usb_get_status(udev, USB_RECIP_DEVICE, 0, |
| 4558 | &devstat); |
Alan Stern | 15b7336 | 2013-07-30 15:35:40 -0400 | [diff] [blame] | 4559 | if (status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4560 | dev_dbg(&udev->dev, "get status %d ?\n", status); |
| 4561 | goto loop_disable; |
| 4562 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4563 | if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) { |
| 4564 | dev_err(&udev->dev, |
| 4565 | "can't connect bus-powered hub " |
| 4566 | "to this port\n"); |
| 4567 | if (hub->has_indicators) { |
| 4568 | hub->indicator[port1-1] = |
| 4569 | INDICATOR_AMBER_BLINK; |
Shaibal Dutta | 22f6a0f | 2014-02-01 19:16:46 -0800 | [diff] [blame] | 4570 | queue_delayed_work( |
| 4571 | system_power_efficient_wq, |
| 4572 | &hub->leds, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4573 | } |
| 4574 | status = -ENOTCONN; /* Don't retry */ |
| 4575 | goto loop_disable; |
| 4576 | } |
| 4577 | } |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4578 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4579 | /* check for devices running slower than they could */ |
| 4580 | if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200 |
| 4581 | && udev->speed == USB_SPEED_FULL |
| 4582 | && highspeed_hubs != 0) |
| 4583 | check_highspeed (hub, udev, port1); |
| 4584 | |
Greg Kroah-Hartman | fa28618 | 2012-05-14 09:20:37 -0700 | [diff] [blame] | 4585 | /* Store the parent's children[] pointer. At this point |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4586 | * udev becomes globally accessible, although presumably |
| 4587 | * no one will look at it until hdev is unlocked. |
| 4588 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4589 | status = 0; |
| 4590 | |
| 4591 | /* We mustn't add new devices if the parent hub has |
| 4592 | * been disconnected; we would race with the |
| 4593 | * recursively_mark_NOTATTACHED() routine. |
| 4594 | */ |
| 4595 | spin_lock_irq(&device_state_lock); |
| 4596 | if (hdev->state == USB_STATE_NOTATTACHED) |
| 4597 | status = -ENOTCONN; |
| 4598 | else |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 4599 | hub->ports[port1 - 1]->child = udev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4600 | spin_unlock_irq(&device_state_lock); |
| 4601 | |
| 4602 | /* Run it through the hoops (find a driver, etc) */ |
| 4603 | if (!status) { |
| 4604 | status = usb_new_device(udev); |
| 4605 | if (status) { |
| 4606 | spin_lock_irq(&device_state_lock); |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 4607 | hub->ports[port1 - 1]->child = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4608 | spin_unlock_irq(&device_state_lock); |
| 4609 | } |
| 4610 | } |
| 4611 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4612 | if (status) |
| 4613 | goto loop_disable; |
| 4614 | |
| 4615 | status = hub_power_remaining(hub); |
| 4616 | if (status) |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4617 | dev_dbg(hub_dev, "%dmA power budget left\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4618 | |
| 4619 | return; |
| 4620 | |
| 4621 | loop_disable: |
| 4622 | hub_port_disable(hub, port1, 1); |
| 4623 | loop: |
Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 4624 | usb_ep0_reinit(udev); |
Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 4625 | release_devnum(udev); |
Herbert Xu | f7410ce | 2010-01-10 20:15:03 +1100 | [diff] [blame] | 4626 | hub_free_dev(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4627 | usb_put_dev(udev); |
Vikram Pandita | ffcdc18 | 2007-05-25 21:31:07 -0700 | [diff] [blame] | 4628 | if ((status == -ENOTCONN) || (status == -ENOTSUPP)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4629 | break; |
| 4630 | } |
Alan Stern | 3a31155 | 2008-05-20 16:58:29 -0400 | [diff] [blame] | 4631 | if (hub->hdev->parent || |
| 4632 | !hcd->driver->port_handed_over || |
Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 4633 | !(hcd->driver->port_handed_over)(hcd, port1)) { |
| 4634 | if (status != -ENOTCONN && status != -ENODEV) |
| 4635 | dev_err(hub_dev, "unable to enumerate USB device on port %d\n", |
| 4636 | port1); |
| 4637 | } |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4638 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4639 | done: |
| 4640 | hub_port_disable(hub, port1, 1); |
Balaji Rao | 90da096 | 2007-11-22 01:58:14 +0530 | [diff] [blame] | 4641 | if (hcd->driver->relinquish_port && !hub->hdev->parent) |
| 4642 | hcd->driver->relinquish_port(hcd, port1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4643 | } |
| 4644 | |
Sarah Sharp | 714b07b | 2012-01-24 13:53:18 -0800 | [diff] [blame] | 4645 | /* Returns 1 if there was a remote wakeup and a connect status change. */ |
| 4646 | static int hub_handle_remote_wakeup(struct usb_hub *hub, unsigned int port, |
Sarah Sharp | 72937e1 | 2012-01-24 11:46:50 -0800 | [diff] [blame] | 4647 | u16 portstatus, u16 portchange) |
Sarah Sharp | 714b07b | 2012-01-24 13:53:18 -0800 | [diff] [blame] | 4648 | { |
| 4649 | struct usb_device *hdev; |
| 4650 | struct usb_device *udev; |
| 4651 | int connect_change = 0; |
| 4652 | int ret; |
| 4653 | |
| 4654 | hdev = hub->hdev; |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 4655 | udev = hub->ports[port - 1]->child; |
Sarah Sharp | 4ee823b | 2011-11-14 18:00:01 -0800 | [diff] [blame] | 4656 | if (!hub_is_superspeed(hdev)) { |
| 4657 | if (!(portchange & USB_PORT_STAT_C_SUSPEND)) |
| 4658 | return 0; |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4659 | usb_clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND); |
Sarah Sharp | 4ee823b | 2011-11-14 18:00:01 -0800 | [diff] [blame] | 4660 | } else { |
| 4661 | if (!udev || udev->state != USB_STATE_SUSPENDED || |
Sarah Sharp | 72937e1 | 2012-01-24 11:46:50 -0800 | [diff] [blame] | 4662 | (portstatus & USB_PORT_STAT_LINK_STATE) != |
| 4663 | USB_SS_PORT_LS_U0) |
Sarah Sharp | 4ee823b | 2011-11-14 18:00:01 -0800 | [diff] [blame] | 4664 | return 0; |
| 4665 | } |
| 4666 | |
Sarah Sharp | 714b07b | 2012-01-24 13:53:18 -0800 | [diff] [blame] | 4667 | if (udev) { |
| 4668 | /* TRSMRCY = 10 msec */ |
| 4669 | msleep(10); |
| 4670 | |
| 4671 | usb_lock_device(udev); |
| 4672 | ret = usb_remote_wakeup(udev); |
| 4673 | usb_unlock_device(udev); |
| 4674 | if (ret < 0) |
| 4675 | connect_change = 1; |
| 4676 | } else { |
| 4677 | ret = -ENODEV; |
| 4678 | hub_port_disable(hub, port, 1); |
| 4679 | } |
| 4680 | dev_dbg(hub->intfdev, "resume on port %d, status %d\n", |
| 4681 | port, ret); |
| 4682 | return connect_change; |
| 4683 | } |
| 4684 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4685 | static void hub_events(void) |
| 4686 | { |
| 4687 | struct list_head *tmp; |
| 4688 | struct usb_device *hdev; |
| 4689 | struct usb_interface *intf; |
| 4690 | struct usb_hub *hub; |
| 4691 | struct device *hub_dev; |
| 4692 | u16 hubstatus; |
| 4693 | u16 hubchange; |
| 4694 | u16 portstatus; |
| 4695 | u16 portchange; |
| 4696 | int i, ret; |
Sarah Sharp | 4ee823b | 2011-11-14 18:00:01 -0800 | [diff] [blame] | 4697 | int connect_change, wakeup_change; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4698 | |
| 4699 | /* |
| 4700 | * We restart the list every time to avoid a deadlock with |
| 4701 | * deleting hubs downstream from this one. This should be |
| 4702 | * safe since we delete the hub from the event list. |
| 4703 | * Not the most efficient, but avoids deadlocks. |
| 4704 | */ |
| 4705 | while (1) { |
| 4706 | |
| 4707 | /* Grab the first entry at the beginning of the list */ |
| 4708 | spin_lock_irq(&hub_event_lock); |
| 4709 | if (list_empty(&hub_event_list)) { |
| 4710 | spin_unlock_irq(&hub_event_lock); |
| 4711 | break; |
| 4712 | } |
| 4713 | |
| 4714 | tmp = hub_event_list.next; |
| 4715 | list_del_init(tmp); |
| 4716 | |
| 4717 | hub = list_entry(tmp, struct usb_hub, event_list); |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 4718 | kref_get(&hub->kref); |
| 4719 | spin_unlock_irq(&hub_event_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4720 | |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 4721 | hdev = hub->hdev; |
| 4722 | hub_dev = hub->intfdev; |
| 4723 | intf = to_usb_interface(hub_dev); |
Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 4724 | dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n", |
Krzysztof Mazur | 3bbc47d | 2013-08-22 14:49:40 +0200 | [diff] [blame] | 4725 | hdev->state, hdev->maxchild, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4726 | /* NOTE: expects max 15 ports... */ |
| 4727 | (u16) hub->change_bits[0], |
Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 4728 | (u16) hub->event_bits[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4729 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4730 | /* Lock the device, then check to see if we were |
| 4731 | * disconnected while waiting for the lock to succeed. */ |
Alan Stern | 06b84e8 | 2007-05-04 11:54:50 -0400 | [diff] [blame] | 4732 | usb_lock_device(hdev); |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 4733 | if (unlikely(hub->disconnected)) |
Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 4734 | goto loop_disconnected; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4735 | |
| 4736 | /* If the hub has died, clean up after it */ |
| 4737 | if (hdev->state == USB_STATE_NOTATTACHED) { |
Alan Stern | 7de18d8 | 2006-06-01 13:37:24 -0400 | [diff] [blame] | 4738 | hub->error = -ENODEV; |
Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 4739 | hub_quiesce(hub, HUB_DISCONNECT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4740 | goto loop; |
| 4741 | } |
| 4742 | |
Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 4743 | /* Autoresume */ |
| 4744 | ret = usb_autopm_get_interface(intf); |
| 4745 | if (ret) { |
| 4746 | dev_dbg(hub_dev, "Can't autoresume: %d\n", ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4747 | goto loop; |
Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 4748 | } |
| 4749 | |
| 4750 | /* If this is an inactive hub, do nothing */ |
| 4751 | if (hub->quiescing) |
| 4752 | goto loop_autopm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4753 | |
| 4754 | if (hub->error) { |
| 4755 | dev_dbg (hub_dev, "resetting for error %d\n", |
| 4756 | hub->error); |
| 4757 | |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 4758 | ret = usb_reset_device(hdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4759 | if (ret) { |
| 4760 | dev_dbg (hub_dev, |
| 4761 | "error resetting hub: %d\n", ret); |
Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 4762 | goto loop_autopm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4763 | } |
| 4764 | |
| 4765 | hub->nerrors = 0; |
| 4766 | hub->error = 0; |
| 4767 | } |
| 4768 | |
| 4769 | /* deal with port status changes */ |
Krzysztof Mazur | 3bbc47d | 2013-08-22 14:49:40 +0200 | [diff] [blame] | 4770 | for (i = 1; i <= hdev->maxchild; i++) { |
Hans de Goede | a82b76f | 2013-11-08 13:41:05 +0100 | [diff] [blame] | 4771 | struct usb_device *udev = hub->ports[i - 1]->child; |
| 4772 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4773 | if (test_bit(i, hub->busy_bits)) |
| 4774 | continue; |
| 4775 | connect_change = test_bit(i, hub->change_bits); |
Sarah Sharp | 72937e1 | 2012-01-24 11:46:50 -0800 | [diff] [blame] | 4776 | wakeup_change = test_and_clear_bit(i, hub->wakeup_bits); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4777 | if (!test_and_clear_bit(i, hub->event_bits) && |
Sarah Sharp | 4ee823b | 2011-11-14 18:00:01 -0800 | [diff] [blame] | 4778 | !connect_change && !wakeup_change) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4779 | continue; |
| 4780 | |
| 4781 | ret = hub_port_status(hub, i, |
| 4782 | &portstatus, &portchange); |
| 4783 | if (ret < 0) |
| 4784 | continue; |
| 4785 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4786 | if (portchange & USB_PORT_STAT_C_CONNECTION) { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4787 | usb_clear_port_feature(hdev, i, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4788 | USB_PORT_FEAT_C_CONNECTION); |
| 4789 | connect_change = 1; |
| 4790 | } |
| 4791 | |
| 4792 | if (portchange & USB_PORT_STAT_C_ENABLE) { |
| 4793 | if (!connect_change) |
| 4794 | dev_dbg (hub_dev, |
| 4795 | "port %d enable change, " |
| 4796 | "status %08x\n", |
| 4797 | i, portstatus); |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4798 | usb_clear_port_feature(hdev, i, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4799 | USB_PORT_FEAT_C_ENABLE); |
| 4800 | |
| 4801 | /* |
| 4802 | * EM interference sometimes causes badly |
| 4803 | * shielded USB devices to be shutdown by |
| 4804 | * the hub, this hack enables them again. |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4805 | * Works at least with mouse driver. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4806 | */ |
| 4807 | if (!(portstatus & USB_PORT_STAT_ENABLE) |
| 4808 | && !connect_change |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 4809 | && hub->ports[i - 1]->child) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4810 | dev_err (hub_dev, |
| 4811 | "port %i " |
| 4812 | "disabled by hub (EMI?), " |
| 4813 | "re-enabling...\n", |
| 4814 | i); |
| 4815 | connect_change = 1; |
| 4816 | } |
| 4817 | } |
| 4818 | |
Sarah Sharp | 72937e1 | 2012-01-24 11:46:50 -0800 | [diff] [blame] | 4819 | if (hub_handle_remote_wakeup(hub, i, |
| 4820 | portstatus, portchange)) |
Sarah Sharp | 714b07b | 2012-01-24 13:53:18 -0800 | [diff] [blame] | 4821 | connect_change = 1; |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4822 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4823 | if (portchange & USB_PORT_STAT_C_OVERCURRENT) { |
Paul Bolle | 752d57a | 2011-03-11 18:03:52 +0100 | [diff] [blame] | 4824 | u16 status = 0; |
| 4825 | u16 unused; |
| 4826 | |
| 4827 | dev_dbg(hub_dev, "over-current change on port " |
| 4828 | "%d\n", i); |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4829 | usb_clear_port_feature(hdev, i, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4830 | USB_PORT_FEAT_C_OVER_CURRENT); |
Paul Bolle | 752d57a | 2011-03-11 18:03:52 +0100 | [diff] [blame] | 4831 | msleep(100); /* Cool down */ |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 4832 | hub_power_on(hub, true); |
Paul Bolle | 752d57a | 2011-03-11 18:03:52 +0100 | [diff] [blame] | 4833 | hub_port_status(hub, i, &status, &unused); |
| 4834 | if (status & USB_PORT_STAT_OVERCURRENT) |
| 4835 | dev_err(hub_dev, "over-current " |
| 4836 | "condition on port %d\n", i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4837 | } |
| 4838 | |
| 4839 | if (portchange & USB_PORT_STAT_C_RESET) { |
| 4840 | dev_dbg (hub_dev, |
| 4841 | "reset change on port %d\n", |
| 4842 | i); |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4843 | usb_clear_port_feature(hdev, i, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4844 | USB_PORT_FEAT_C_RESET); |
| 4845 | } |
Sarah Sharp | c706157 | 2010-12-06 15:08:20 -0800 | [diff] [blame] | 4846 | if ((portchange & USB_PORT_STAT_C_BH_RESET) && |
| 4847 | hub_is_superspeed(hub->hdev)) { |
| 4848 | dev_dbg(hub_dev, |
| 4849 | "warm reset change on port %d\n", |
| 4850 | i); |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4851 | usb_clear_port_feature(hdev, i, |
Sarah Sharp | c706157 | 2010-12-06 15:08:20 -0800 | [diff] [blame] | 4852 | USB_PORT_FEAT_C_BH_PORT_RESET); |
| 4853 | } |
John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 4854 | if (portchange & USB_PORT_STAT_C_LINK_STATE) { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4855 | usb_clear_port_feature(hub->hdev, i, |
John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 4856 | USB_PORT_FEAT_C_PORT_LINK_STATE); |
| 4857 | } |
| 4858 | if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) { |
| 4859 | dev_warn(hub_dev, |
| 4860 | "config error on port %d\n", |
| 4861 | i); |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4862 | usb_clear_port_feature(hub->hdev, i, |
John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 4863 | USB_PORT_FEAT_C_PORT_CONFIG_ERROR); |
| 4864 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4865 | |
Andiry Xu | 5e467f6 | 2011-04-27 18:07:54 +0800 | [diff] [blame] | 4866 | /* Warm reset a USB3 protocol port if it's in |
| 4867 | * SS.Inactive state. |
| 4868 | */ |
Stanislaw Ledwon | 8bea2bd | 2012-06-18 15:20:00 +0200 | [diff] [blame] | 4869 | if (hub_port_warm_reset_required(hub, portstatus)) { |
Sarah Sharp | 65bdac5 | 2012-11-14 17:58:04 -0800 | [diff] [blame] | 4870 | int status; |
| 4871 | |
Andiry Xu | 5e467f6 | 2011-04-27 18:07:54 +0800 | [diff] [blame] | 4872 | dev_dbg(hub_dev, "warm reset port %d\n", i); |
Julius Werner | 2d51f3c | 2013-11-07 10:59:14 -0800 | [diff] [blame] | 4873 | if (!udev || |
| 4874 | !(portstatus & USB_PORT_STAT_CONNECTION) || |
| 4875 | udev->state == USB_STATE_NOTATTACHED) { |
Sarah Sharp | d3b9d7a | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 4876 | status = hub_port_reset(hub, i, |
| 4877 | NULL, HUB_BH_RESET_TIME, |
| 4878 | true); |
| 4879 | if (status < 0) |
| 4880 | hub_port_disable(hub, i, 1); |
| 4881 | } else { |
| 4882 | usb_lock_device(udev); |
| 4883 | status = usb_reset_device(udev); |
| 4884 | usb_unlock_device(udev); |
Julius Werner | f3e94aa | 2013-07-30 19:51:20 -0700 | [diff] [blame] | 4885 | connect_change = 0; |
Sarah Sharp | d3b9d7a | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 4886 | } |
Hans de Goede | a82b76f | 2013-11-08 13:41:05 +0100 | [diff] [blame] | 4887 | /* |
| 4888 | * On disconnect USB3 protocol ports transit from U0 to |
| 4889 | * SS.Inactive to Rx.Detect. If this happens a warm- |
| 4890 | * reset is not needed, but a (re)connect may happen |
| 4891 | * before khubd runs and sees the disconnect, and the |
| 4892 | * device may be an unknown state. |
| 4893 | * |
| 4894 | * If the port went through SS.Inactive without khubd |
| 4895 | * seeing it the C_LINK_STATE change flag will be set, |
| 4896 | * and we reset the dev to put it in a known state. |
| 4897 | */ |
| 4898 | } else if (udev && hub_is_superspeed(hub->hdev) && |
| 4899 | (portchange & USB_PORT_STAT_C_LINK_STATE) && |
| 4900 | (portstatus & USB_PORT_STAT_CONNECTION)) { |
| 4901 | usb_lock_device(udev); |
| 4902 | usb_reset_device(udev); |
| 4903 | usb_unlock_device(udev); |
| 4904 | connect_change = 0; |
Andiry Xu | 5e467f6 | 2011-04-27 18:07:54 +0800 | [diff] [blame] | 4905 | } |
| 4906 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4907 | if (connect_change) |
| 4908 | hub_port_connect_change(hub, i, |
| 4909 | portstatus, portchange); |
| 4910 | } /* end for i */ |
| 4911 | |
| 4912 | /* deal with hub status changes */ |
| 4913 | if (test_and_clear_bit(0, hub->event_bits) == 0) |
| 4914 | ; /* do nothing */ |
| 4915 | else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0) |
| 4916 | dev_err (hub_dev, "get_hub_status failed\n"); |
| 4917 | else { |
| 4918 | if (hubchange & HUB_CHANGE_LOCAL_POWER) { |
| 4919 | dev_dbg (hub_dev, "power change\n"); |
| 4920 | clear_hub_feature(hdev, C_HUB_LOCAL_POWER); |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4921 | if (hubstatus & HUB_STATUS_LOCAL_POWER) |
| 4922 | /* FIXME: Is this always true? */ |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4923 | hub->limited_power = 1; |
jidong xiao | 403fae7 | 2007-09-14 00:08:51 +0800 | [diff] [blame] | 4924 | else |
| 4925 | hub->limited_power = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4926 | } |
| 4927 | if (hubchange & HUB_CHANGE_OVERCURRENT) { |
Paul Bolle | 752d57a | 2011-03-11 18:03:52 +0100 | [diff] [blame] | 4928 | u16 status = 0; |
| 4929 | u16 unused; |
| 4930 | |
| 4931 | dev_dbg(hub_dev, "over-current change\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4932 | clear_hub_feature(hdev, C_HUB_OVER_CURRENT); |
Paul Bolle | 752d57a | 2011-03-11 18:03:52 +0100 | [diff] [blame] | 4933 | msleep(500); /* Cool down */ |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4934 | hub_power_on(hub, true); |
Paul Bolle | 752d57a | 2011-03-11 18:03:52 +0100 | [diff] [blame] | 4935 | hub_hub_status(hub, &status, &unused); |
| 4936 | if (status & HUB_STATUS_OVERCURRENT) |
| 4937 | dev_err(hub_dev, "over-current " |
| 4938 | "condition\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4939 | } |
| 4940 | } |
| 4941 | |
Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 4942 | loop_autopm: |
| 4943 | /* Balance the usb_autopm_get_interface() above */ |
| 4944 | usb_autopm_put_interface_no_suspend(intf); |
| 4945 | loop: |
| 4946 | /* Balance the usb_autopm_get_interface_no_resume() in |
| 4947 | * kick_khubd() and allow autosuspend. |
| 4948 | */ |
| 4949 | usb_autopm_put_interface(intf); |
Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 4950 | loop_disconnected: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4951 | usb_unlock_device(hdev); |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 4952 | kref_put(&hub->kref, hub_release); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4953 | |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4954 | } /* end while (1) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4955 | } |
| 4956 | |
| 4957 | static int hub_thread(void *__unused) |
| 4958 | { |
Rahul Bedarkar | 025d443 | 2014-01-04 11:24:41 +0530 | [diff] [blame] | 4959 | /* khubd needs to be freezable to avoid interfering with USB-PERSIST |
Alan Stern | 3bb1af5 | 2008-03-03 15:15:36 -0500 | [diff] [blame] | 4960 | * port handover. Otherwise it might see that a full-speed device |
| 4961 | * was gone before the EHCI controller had handed its port over to |
| 4962 | * the companion full-speed controller. |
| 4963 | */ |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 4964 | set_freezable(); |
Alan Stern | 3bb1af5 | 2008-03-03 15:15:36 -0500 | [diff] [blame] | 4965 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4966 | do { |
| 4967 | hub_events(); |
Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 4968 | wait_event_freezable(khubd_wait, |
akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 4969 | !list_empty(&hub_event_list) || |
| 4970 | kthread_should_stop()); |
akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 4971 | } while (!kthread_should_stop() || !list_empty(&hub_event_list)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4972 | |
akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 4973 | pr_debug("%s: khubd exiting\n", usbcore_name); |
| 4974 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4975 | } |
| 4976 | |
Németh Márton | 1e927d9 | 2010-01-10 15:34:53 +0100 | [diff] [blame] | 4977 | static const struct usb_device_id hub_id_table[] = { |
Ming Lei | e6f30de | 2012-10-24 11:59:24 +0800 | [diff] [blame] | 4978 | { .match_flags = USB_DEVICE_ID_MATCH_VENDOR |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4979 | | USB_DEVICE_ID_MATCH_INT_CLASS, |
Ming Lei | e6f30de | 2012-10-24 11:59:24 +0800 | [diff] [blame] | 4980 | .idVendor = USB_VENDOR_GENESYS_LOGIC, |
| 4981 | .bInterfaceClass = USB_CLASS_HUB, |
| 4982 | .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND}, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4983 | { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS, |
| 4984 | .bDeviceClass = USB_CLASS_HUB}, |
| 4985 | { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS, |
| 4986 | .bInterfaceClass = USB_CLASS_HUB}, |
| 4987 | { } /* Terminating entry */ |
| 4988 | }; |
| 4989 | |
| 4990 | MODULE_DEVICE_TABLE (usb, hub_id_table); |
| 4991 | |
| 4992 | static struct usb_driver hub_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4993 | .name = "hub", |
| 4994 | .probe = hub_probe, |
| 4995 | .disconnect = hub_disconnect, |
| 4996 | .suspend = hub_suspend, |
| 4997 | .resume = hub_resume, |
Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 4998 | .reset_resume = hub_reset_resume, |
Alan Stern | 7de18d8 | 2006-06-01 13:37:24 -0400 | [diff] [blame] | 4999 | .pre_reset = hub_pre_reset, |
| 5000 | .post_reset = hub_post_reset, |
Andi Kleen | c532b29 | 2010-06-01 23:04:41 +0200 | [diff] [blame] | 5001 | .unlocked_ioctl = hub_ioctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5002 | .id_table = hub_id_table, |
Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 5003 | .supports_autosuspend = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5004 | }; |
| 5005 | |
| 5006 | int usb_hub_init(void) |
| 5007 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5008 | if (usb_register(&hub_driver) < 0) { |
| 5009 | printk(KERN_ERR "%s: can't register hub driver\n", |
| 5010 | usbcore_name); |
| 5011 | return -1; |
| 5012 | } |
| 5013 | |
akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 5014 | khubd_task = kthread_run(hub_thread, NULL, "khubd"); |
| 5015 | if (!IS_ERR(khubd_task)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5016 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5017 | |
| 5018 | /* Fall through if kernel_thread failed */ |
| 5019 | usb_deregister(&hub_driver); |
| 5020 | printk(KERN_ERR "%s: can't start khubd\n", usbcore_name); |
| 5021 | |
| 5022 | return -1; |
| 5023 | } |
| 5024 | |
| 5025 | void usb_hub_cleanup(void) |
| 5026 | { |
akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 5027 | kthread_stop(khubd_task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5028 | |
| 5029 | /* |
| 5030 | * Hub resources are freed for us by usb_deregister. It calls |
| 5031 | * usb_driver_purge on every device which in turn calls that |
| 5032 | * devices disconnect function if it is using this driver. |
| 5033 | * The hub_disconnect function takes care of releasing the |
| 5034 | * individual hub resources. -greg |
| 5035 | */ |
| 5036 | usb_deregister(&hub_driver); |
| 5037 | } /* usb_hub_cleanup() */ |
| 5038 | |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5039 | static int descriptors_changed(struct usb_device *udev, |
Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5040 | struct usb_device_descriptor *old_device_descriptor, |
| 5041 | struct usb_host_bos *old_bos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5042 | { |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5043 | int changed = 0; |
| 5044 | unsigned index; |
| 5045 | unsigned serial_len = 0; |
| 5046 | unsigned len; |
| 5047 | unsigned old_length; |
| 5048 | int length; |
| 5049 | char *buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5050 | |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5051 | if (memcmp(&udev->descriptor, old_device_descriptor, |
| 5052 | sizeof(*old_device_descriptor)) != 0) |
| 5053 | return 1; |
| 5054 | |
Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5055 | if ((old_bos && !udev->bos) || (!old_bos && udev->bos)) |
| 5056 | return 1; |
| 5057 | if (udev->bos) { |
Xenia Ragiadakou | b9a1048 | 2013-08-31 04:40:49 +0300 | [diff] [blame] | 5058 | len = le16_to_cpu(udev->bos->desc->wTotalLength); |
| 5059 | if (len != le16_to_cpu(old_bos->desc->wTotalLength)) |
Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5060 | return 1; |
Xenia Ragiadakou | b9a1048 | 2013-08-31 04:40:49 +0300 | [diff] [blame] | 5061 | if (memcmp(udev->bos->desc, old_bos->desc, len)) |
Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5062 | return 1; |
| 5063 | } |
| 5064 | |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5065 | /* Since the idVendor, idProduct, and bcdDevice values in the |
| 5066 | * device descriptor haven't changed, we will assume the |
| 5067 | * Manufacturer and Product strings haven't changed either. |
| 5068 | * But the SerialNumber string could be different (e.g., a |
| 5069 | * different flash card of the same brand). |
| 5070 | */ |
| 5071 | if (udev->serial) |
| 5072 | serial_len = strlen(udev->serial) + 1; |
| 5073 | |
| 5074 | len = serial_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5075 | for (index = 0; index < udev->descriptor.bNumConfigurations; index++) { |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5076 | old_length = le16_to_cpu(udev->config[index].desc.wTotalLength); |
| 5077 | len = max(len, old_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5078 | } |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5079 | |
Oliver Neukum | 0cc1a51 | 2008-01-10 10:31:48 +0100 | [diff] [blame] | 5080 | buf = kmalloc(len, GFP_NOIO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5081 | if (buf == NULL) { |
| 5082 | dev_err(&udev->dev, "no mem to re-read configs after reset\n"); |
| 5083 | /* assume the worst */ |
| 5084 | return 1; |
| 5085 | } |
| 5086 | for (index = 0; index < udev->descriptor.bNumConfigurations; index++) { |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5087 | old_length = le16_to_cpu(udev->config[index].desc.wTotalLength); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5088 | length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf, |
| 5089 | old_length); |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5090 | if (length != old_length) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5091 | dev_dbg(&udev->dev, "config index %d, error %d\n", |
| 5092 | index, length); |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5093 | changed = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5094 | break; |
| 5095 | } |
| 5096 | if (memcmp (buf, udev->rawdescriptors[index], old_length) |
| 5097 | != 0) { |
| 5098 | dev_dbg(&udev->dev, "config index %d changed (#%d)\n", |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5099 | index, |
| 5100 | ((struct usb_config_descriptor *) buf)-> |
| 5101 | bConfigurationValue); |
| 5102 | changed = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5103 | break; |
| 5104 | } |
| 5105 | } |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5106 | |
| 5107 | if (!changed && serial_len) { |
| 5108 | length = usb_string(udev, udev->descriptor.iSerialNumber, |
| 5109 | buf, serial_len); |
| 5110 | if (length + 1 != serial_len) { |
| 5111 | dev_dbg(&udev->dev, "serial string error %d\n", |
| 5112 | length); |
| 5113 | changed = 1; |
| 5114 | } else if (memcmp(buf, udev->serial, length) != 0) { |
| 5115 | dev_dbg(&udev->dev, "serial string changed\n"); |
| 5116 | changed = 1; |
| 5117 | } |
| 5118 | } |
| 5119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5120 | kfree(buf); |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5121 | return changed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5122 | } |
| 5123 | |
| 5124 | /** |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 5125 | * usb_reset_and_verify_device - perform a USB port reset to reinitialize a device |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5126 | * @udev: device to reset (not in SUSPENDED or NOTATTACHED state) |
| 5127 | * |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5128 | * WARNING - don't use this routine to reset a composite device |
| 5129 | * (one with multiple interfaces owned by separate drivers)! |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 5130 | * Use usb_reset_device() instead. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5131 | * |
| 5132 | * Do a port reset, reassign the device's address, and establish its |
| 5133 | * former operating configuration. If the reset fails, or the device's |
| 5134 | * descriptors change from their values before the reset, or the original |
| 5135 | * configuration and altsettings cannot be restored, a flag will be set |
| 5136 | * telling khubd to pretend the device has been disconnected and then |
| 5137 | * re-connected. All drivers will be unbound, and the device will be |
| 5138 | * re-enumerated and probed all over again. |
| 5139 | * |
Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 5140 | * Return: 0 if the reset succeeded, -ENODEV if the device has been |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5141 | * flagged for logical disconnection, or some other negative error code |
| 5142 | * if the reset wasn't even attempted. |
| 5143 | * |
Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 5144 | * Note: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5145 | * The caller must own the device lock. For example, it's safe to use |
| 5146 | * this from a driver probe() routine after downloading new firmware. |
| 5147 | * For calls that might not occur during probe(), drivers should lock |
| 5148 | * the device using usb_lock_device_for_reset(). |
Alan Stern | 6bc6cff | 2007-05-04 11:53:03 -0400 | [diff] [blame] | 5149 | * |
| 5150 | * Locking exception: This routine may also be called from within an |
| 5151 | * autoresume handler. Such usage won't conflict with other tasks |
| 5152 | * holding the device lock because these tasks should always call |
| 5153 | * usb_autopm_resume_device(), thereby preventing any unwanted autoresume. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5154 | */ |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 5155 | static int usb_reset_and_verify_device(struct usb_device *udev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5156 | { |
| 5157 | struct usb_device *parent_hdev = udev->parent; |
| 5158 | struct usb_hub *parent_hub; |
Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 5159 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5160 | struct usb_device_descriptor descriptor = udev->descriptor; |
Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5161 | struct usb_host_bos *bos; |
Hans de Goede | 7a7b562 | 2013-11-08 16:37:26 +0100 | [diff] [blame] | 5162 | int i, j, ret = 0; |
Alan Stern | 12c3da3 | 2005-11-23 12:09:52 -0500 | [diff] [blame] | 5163 | int port1 = udev->portnum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5164 | |
| 5165 | if (udev->state == USB_STATE_NOTATTACHED || |
| 5166 | udev->state == USB_STATE_SUSPENDED) { |
| 5167 | dev_dbg(&udev->dev, "device reset not allowed in state %d\n", |
| 5168 | udev->state); |
| 5169 | return -EINVAL; |
| 5170 | } |
| 5171 | |
| 5172 | if (!parent_hdev) { |
Wolfram Sang | 4bec991 | 2010-08-29 18:17:14 +0200 | [diff] [blame] | 5173 | /* this requires hcd-specific logic; see ohci_restart() */ |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 5174 | dev_dbg(&udev->dev, "%s for root hub!\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5175 | return -EISDIR; |
| 5176 | } |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 5177 | parent_hub = usb_hub_to_struct_hub(parent_hdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5178 | |
Sarah Sharp | dcc01c0 | 2013-09-30 17:26:29 +0300 | [diff] [blame] | 5179 | /* Disable USB2 hardware LPM. |
| 5180 | * It will be re-enabled by the enumeration process. |
| 5181 | */ |
| 5182 | if (udev->usb2_hw_lpm_enabled == 1) |
| 5183 | usb_set_usb2_hardware_lpm(udev, 0); |
| 5184 | |
Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5185 | bos = udev->bos; |
| 5186 | udev->bos = NULL; |
| 5187 | |
Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 5188 | /* Disable LPM and LTM while we reset the device and reinstall the alt |
| 5189 | * settings. Device-initiated LPM settings, and system exit latency |
| 5190 | * settings are cleared when the device is reset, so we have to set |
| 5191 | * them up again. |
Sarah Sharp | 6d1d051 | 2012-07-03 22:49:04 -0700 | [diff] [blame] | 5192 | */ |
| 5193 | ret = usb_unlocked_disable_lpm(udev); |
| 5194 | if (ret) { |
| 5195 | dev_err(&udev->dev, "%s Failed to disable LPM\n.", __func__); |
| 5196 | goto re_enumerate; |
| 5197 | } |
Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 5198 | ret = usb_disable_ltm(udev); |
| 5199 | if (ret) { |
| 5200 | dev_err(&udev->dev, "%s Failed to disable LTM\n.", |
| 5201 | __func__); |
| 5202 | goto re_enumerate; |
| 5203 | } |
Sarah Sharp | 6d1d051 | 2012-07-03 22:49:04 -0700 | [diff] [blame] | 5204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5205 | set_bit(port1, parent_hub->busy_bits); |
| 5206 | for (i = 0; i < SET_CONFIG_TRIES; ++i) { |
| 5207 | |
| 5208 | /* ep0 maxpacket size may change; let the HCD know about it. |
| 5209 | * Other endpoints will be handled by re-enumeration. */ |
Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 5210 | usb_ep0_reinit(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5211 | ret = hub_port_init(parent_hub, udev, port1, i); |
Alan Stern | dd4dd19 | 2007-05-04 11:55:54 -0400 | [diff] [blame] | 5212 | if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5213 | break; |
| 5214 | } |
| 5215 | clear_bit(port1, parent_hub->busy_bits); |
Alan Stern | d5cbad4 | 2006-08-11 16:52:39 -0400 | [diff] [blame] | 5216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5217 | if (ret < 0) |
| 5218 | goto re_enumerate; |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 5219 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5220 | /* Device might have changed firmware (DFU or similar) */ |
Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5221 | if (descriptors_changed(udev, &descriptor, bos)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5222 | dev_info(&udev->dev, "device firmware changed\n"); |
| 5223 | udev->descriptor = descriptor; /* for disconnect() calls */ |
| 5224 | goto re_enumerate; |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 5225 | } |
Alan Stern | 4fe0387 | 2009-02-26 10:21:02 -0500 | [diff] [blame] | 5226 | |
| 5227 | /* Restore the device's previous configuration */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5228 | if (!udev->actconfig) |
| 5229 | goto done; |
Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 5230 | |
Sarah Sharp | d673bfc | 2010-10-15 08:55:24 -0700 | [diff] [blame] | 5231 | mutex_lock(hcd->bandwidth_mutex); |
Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 5232 | ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL); |
| 5233 | if (ret < 0) { |
| 5234 | dev_warn(&udev->dev, |
| 5235 | "Busted HC? Not enough HCD resources for " |
| 5236 | "old configuration.\n"); |
Sarah Sharp | d673bfc | 2010-10-15 08:55:24 -0700 | [diff] [blame] | 5237 | mutex_unlock(hcd->bandwidth_mutex); |
Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 5238 | goto re_enumerate; |
| 5239 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5240 | ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
| 5241 | USB_REQ_SET_CONFIGURATION, 0, |
| 5242 | udev->actconfig->desc.bConfigurationValue, 0, |
| 5243 | NULL, 0, USB_CTRL_SET_TIMEOUT); |
| 5244 | if (ret < 0) { |
| 5245 | dev_err(&udev->dev, |
| 5246 | "can't restore configuration #%d (error=%d)\n", |
| 5247 | udev->actconfig->desc.bConfigurationValue, ret); |
Sarah Sharp | d673bfc | 2010-10-15 08:55:24 -0700 | [diff] [blame] | 5248 | mutex_unlock(hcd->bandwidth_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5249 | goto re_enumerate; |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 5250 | } |
Sarah Sharp | d673bfc | 2010-10-15 08:55:24 -0700 | [diff] [blame] | 5251 | mutex_unlock(hcd->bandwidth_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5252 | usb_set_device_state(udev, USB_STATE_CONFIGURED); |
| 5253 | |
Alan Stern | 4fe0387 | 2009-02-26 10:21:02 -0500 | [diff] [blame] | 5254 | /* Put interfaces back into the same altsettings as before. |
| 5255 | * Don't bother to send the Set-Interface request for interfaces |
| 5256 | * that were already in altsetting 0; besides being unnecessary, |
| 5257 | * many devices can't handle it. Instead just reset the host-side |
| 5258 | * endpoint state. |
| 5259 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5260 | for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) { |
Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 5261 | struct usb_host_config *config = udev->actconfig; |
| 5262 | struct usb_interface *intf = config->interface[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5263 | struct usb_interface_descriptor *desc; |
| 5264 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5265 | desc = &intf->cur_altsetting->desc; |
Alan Stern | 4fe0387 | 2009-02-26 10:21:02 -0500 | [diff] [blame] | 5266 | if (desc->bAlternateSetting == 0) { |
| 5267 | usb_disable_interface(udev, intf, true); |
| 5268 | usb_enable_interface(udev, intf, true); |
| 5269 | ret = 0; |
| 5270 | } else { |
Sarah Sharp | 04a723e | 2010-01-06 10:16:51 -0800 | [diff] [blame] | 5271 | /* Let the bandwidth allocation function know that this |
| 5272 | * device has been reset, and it will have to use |
| 5273 | * alternate setting 0 as the current alternate setting. |
Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 5274 | */ |
Sarah Sharp | 04a723e | 2010-01-06 10:16:51 -0800 | [diff] [blame] | 5275 | intf->resetting_device = 1; |
Alan Stern | 4fe0387 | 2009-02-26 10:21:02 -0500 | [diff] [blame] | 5276 | ret = usb_set_interface(udev, desc->bInterfaceNumber, |
| 5277 | desc->bAlternateSetting); |
Sarah Sharp | 04a723e | 2010-01-06 10:16:51 -0800 | [diff] [blame] | 5278 | intf->resetting_device = 0; |
Alan Stern | 4fe0387 | 2009-02-26 10:21:02 -0500 | [diff] [blame] | 5279 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5280 | if (ret < 0) { |
| 5281 | dev_err(&udev->dev, "failed to restore interface %d " |
| 5282 | "altsetting %d (error=%d)\n", |
| 5283 | desc->bInterfaceNumber, |
| 5284 | desc->bAlternateSetting, |
| 5285 | ret); |
| 5286 | goto re_enumerate; |
| 5287 | } |
Hans de Goede | 7a7b562 | 2013-11-08 16:37:26 +0100 | [diff] [blame] | 5288 | /* Resetting also frees any allocated streams */ |
| 5289 | for (j = 0; j < intf->cur_altsetting->desc.bNumEndpoints; j++) |
| 5290 | intf->cur_altsetting->endpoint[j].streams = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5291 | } |
| 5292 | |
| 5293 | done: |
Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 5294 | /* Now that the alt settings are re-installed, enable LTM and LPM. */ |
Sarah Sharp | de68bab | 2013-09-30 17:26:28 +0300 | [diff] [blame] | 5295 | usb_set_usb2_hardware_lpm(udev, 1); |
Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 5296 | usb_unlocked_enable_lpm(udev); |
Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 5297 | usb_enable_ltm(udev); |
Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5298 | usb_release_bos_descriptor(udev); |
| 5299 | udev->bos = bos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5300 | return 0; |
Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 5301 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5302 | re_enumerate: |
Sarah Sharp | 6d1d051 | 2012-07-03 22:49:04 -0700 | [diff] [blame] | 5303 | /* LPM state doesn't matter when we're about to destroy the device. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5304 | hub_port_logical_disconnect(parent_hub, port1); |
Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5305 | usb_release_bos_descriptor(udev); |
| 5306 | udev->bos = bos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5307 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5308 | } |
| 5309 | |
| 5310 | /** |
| 5311 | * usb_reset_device - warn interface drivers and perform a USB port reset |
| 5312 | * @udev: device to reset (not in SUSPENDED or NOTATTACHED state) |
| 5313 | * |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5314 | * Warns all drivers bound to registered interfaces (using their pre_reset |
| 5315 | * method), performs the port reset, and then lets the drivers know that |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 5316 | * the reset is over (using their post_reset method). |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5317 | * |
Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 5318 | * Return: The same as for usb_reset_and_verify_device(). |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5319 | * |
Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 5320 | * Note: |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5321 | * The caller must own the device lock. For example, it's safe to use |
| 5322 | * this from a driver probe() routine after downloading new firmware. |
| 5323 | * For calls that might not occur during probe(), drivers should lock |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 5324 | * the device using usb_lock_device_for_reset(). |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5325 | * |
| 5326 | * If an interface is currently being probed or disconnected, we assume |
| 5327 | * its driver knows how to handle resets. For all other interfaces, |
| 5328 | * if the driver doesn't have pre_reset and post_reset methods then |
| 5329 | * we attempt to unbind it and rebind afterward. |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5330 | */ |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 5331 | int usb_reset_device(struct usb_device *udev) |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5332 | { |
| 5333 | int ret; |
Alan Stern | 852c4b4 | 2007-12-03 15:44:29 -0500 | [diff] [blame] | 5334 | int i; |
Ming Lei | 4d769de | 2013-02-22 16:34:22 -0800 | [diff] [blame] | 5335 | unsigned int noio_flag; |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5336 | struct usb_host_config *config = udev->actconfig; |
| 5337 | |
| 5338 | if (udev->state == USB_STATE_NOTATTACHED || |
| 5339 | udev->state == USB_STATE_SUSPENDED) { |
| 5340 | dev_dbg(&udev->dev, "device reset not allowed in state %d\n", |
| 5341 | udev->state); |
| 5342 | return -EINVAL; |
| 5343 | } |
| 5344 | |
Ming Lei | 4d769de | 2013-02-22 16:34:22 -0800 | [diff] [blame] | 5345 | /* |
| 5346 | * Don't allocate memory with GFP_KERNEL in current |
| 5347 | * context to avoid possible deadlock if usb mass |
| 5348 | * storage interface or usbnet interface(iSCSI case) |
| 5349 | * is included in current configuration. The easist |
| 5350 | * approach is to do it for every device reset, |
| 5351 | * because the device 'memalloc_noio' flag may have |
| 5352 | * not been set before reseting the usb device. |
| 5353 | */ |
| 5354 | noio_flag = memalloc_noio_save(); |
| 5355 | |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 5356 | /* Prevent autosuspend during the reset */ |
Alan Stern | 94fcda1 | 2006-11-20 11:38:46 -0500 | [diff] [blame] | 5357 | usb_autoresume_device(udev); |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 5358 | |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5359 | if (config) { |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5360 | for (i = 0; i < config->desc.bNumInterfaces; ++i) { |
Alan Stern | 852c4b4 | 2007-12-03 15:44:29 -0500 | [diff] [blame] | 5361 | struct usb_interface *cintf = config->interface[i]; |
| 5362 | struct usb_driver *drv; |
Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 5363 | int unbind = 0; |
Alan Stern | 852c4b4 | 2007-12-03 15:44:29 -0500 | [diff] [blame] | 5364 | |
| 5365 | if (cintf->dev.driver) { |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5366 | drv = to_usb_driver(cintf->dev.driver); |
Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 5367 | if (drv->pre_reset && drv->post_reset) |
| 5368 | unbind = (drv->pre_reset)(cintf); |
| 5369 | else if (cintf->condition == |
| 5370 | USB_INTERFACE_BOUND) |
| 5371 | unbind = 1; |
| 5372 | if (unbind) |
| 5373 | usb_forced_unbind_intf(cintf); |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5374 | } |
| 5375 | } |
| 5376 | } |
| 5377 | |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 5378 | ret = usb_reset_and_verify_device(udev); |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5379 | |
| 5380 | if (config) { |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5381 | for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) { |
Alan Stern | 852c4b4 | 2007-12-03 15:44:29 -0500 | [diff] [blame] | 5382 | struct usb_interface *cintf = config->interface[i]; |
| 5383 | struct usb_driver *drv; |
Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 5384 | int rebind = cintf->needs_binding; |
Alan Stern | 852c4b4 | 2007-12-03 15:44:29 -0500 | [diff] [blame] | 5385 | |
Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 5386 | if (!rebind && cintf->dev.driver) { |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5387 | drv = to_usb_driver(cintf->dev.driver); |
| 5388 | if (drv->post_reset) |
Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 5389 | rebind = (drv->post_reset)(cintf); |
| 5390 | else if (cintf->condition == |
| 5391 | USB_INTERFACE_BOUND) |
| 5392 | rebind = 1; |
Alan Stern | 6aec044 | 2014-03-12 11:30:38 -0400 | [diff] [blame] | 5393 | if (rebind) |
| 5394 | cintf->needs_binding = 1; |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5395 | } |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5396 | } |
Alan Stern | 6aec044 | 2014-03-12 11:30:38 -0400 | [diff] [blame] | 5397 | usb_unbind_and_rebind_marked_interfaces(udev); |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5398 | } |
| 5399 | |
Alan Stern | 94fcda1 | 2006-11-20 11:38:46 -0500 | [diff] [blame] | 5400 | usb_autosuspend_device(udev); |
Ming Lei | 4d769de | 2013-02-22 16:34:22 -0800 | [diff] [blame] | 5401 | memalloc_noio_restore(noio_flag); |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5402 | return ret; |
| 5403 | } |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 5404 | EXPORT_SYMBOL_GPL(usb_reset_device); |
Inaky Perez-Gonzalez | dc023dc | 2008-11-13 10:31:35 -0800 | [diff] [blame] | 5405 | |
| 5406 | |
| 5407 | /** |
| 5408 | * usb_queue_reset_device - Reset a USB device from an atomic context |
| 5409 | * @iface: USB interface belonging to the device to reset |
| 5410 | * |
| 5411 | * This function can be used to reset a USB device from an atomic |
| 5412 | * context, where usb_reset_device() won't work (as it blocks). |
| 5413 | * |
| 5414 | * Doing a reset via this method is functionally equivalent to calling |
| 5415 | * usb_reset_device(), except for the fact that it is delayed to a |
| 5416 | * workqueue. This means that any drivers bound to other interfaces |
| 5417 | * might be unbound, as well as users from usbfs in user space. |
| 5418 | * |
| 5419 | * Corner cases: |
| 5420 | * |
| 5421 | * - Scheduling two resets at the same time from two different drivers |
| 5422 | * attached to two different interfaces of the same device is |
| 5423 | * possible; depending on how the driver attached to each interface |
| 5424 | * handles ->pre_reset(), the second reset might happen or not. |
| 5425 | * |
| 5426 | * - If a driver is unbound and it had a pending reset, the reset will |
| 5427 | * be cancelled. |
| 5428 | * |
| 5429 | * - This function can be called during .probe() or .disconnect() |
| 5430 | * times. On return from .disconnect(), any pending resets will be |
| 5431 | * cancelled. |
| 5432 | * |
| 5433 | * There is no no need to lock/unlock the @reset_ws as schedule_work() |
| 5434 | * does its own. |
| 5435 | * |
| 5436 | * NOTE: We don't do any reference count tracking because it is not |
| 5437 | * needed. The lifecycle of the work_struct is tied to the |
| 5438 | * usb_interface. Before destroying the interface we cancel the |
| 5439 | * work_struct, so the fact that work_struct is queued and or |
| 5440 | * running means the interface (and thus, the device) exist and |
| 5441 | * are referenced. |
| 5442 | */ |
| 5443 | void usb_queue_reset_device(struct usb_interface *iface) |
| 5444 | { |
| 5445 | schedule_work(&iface->reset_ws); |
| 5446 | } |
| 5447 | EXPORT_SYMBOL_GPL(usb_queue_reset_device); |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 5448 | |
| 5449 | /** |
| 5450 | * usb_hub_find_child - Get the pointer of child device |
| 5451 | * attached to the port which is specified by @port1. |
| 5452 | * @hdev: USB device belonging to the usb hub |
| 5453 | * @port1: port num to indicate which port the child device |
| 5454 | * is attached to. |
| 5455 | * |
| 5456 | * USB drivers call this function to get hub's child device |
| 5457 | * pointer. |
| 5458 | * |
Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 5459 | * Return: %NULL if input param is invalid and |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 5460 | * child's usb_device pointer if non-NULL. |
| 5461 | */ |
| 5462 | struct usb_device *usb_hub_find_child(struct usb_device *hdev, |
| 5463 | int port1) |
| 5464 | { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 5465 | struct usb_hub *hub = usb_hub_to_struct_hub(hdev); |
Lan Tianyu | ff823c7 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 5466 | |
| 5467 | if (port1 < 1 || port1 > hdev->maxchild) |
| 5468 | return NULL; |
| 5469 | return hub->ports[port1 - 1]->child; |
| 5470 | } |
| 5471 | EXPORT_SYMBOL_GPL(usb_hub_find_child); |
Lan Tianyu | d557542 | 2012-09-05 13:44:33 +0800 | [diff] [blame] | 5472 | |
Lan Tianyu | 05f9168 | 2012-09-05 13:44:34 +0800 | [diff] [blame] | 5473 | /** |
| 5474 | * usb_set_hub_port_connect_type - set hub port connect type. |
| 5475 | * @hdev: USB device belonging to the usb hub |
| 5476 | * @port1: port num of the port |
| 5477 | * @type: connect type of the port |
| 5478 | */ |
| 5479 | void usb_set_hub_port_connect_type(struct usb_device *hdev, int port1, |
| 5480 | enum usb_port_connect_type type) |
| 5481 | { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 5482 | struct usb_hub *hub = usb_hub_to_struct_hub(hdev); |
Lan Tianyu | 05f9168 | 2012-09-05 13:44:34 +0800 | [diff] [blame] | 5483 | |
Mathias Nyman | 4134126 | 2013-06-18 17:28:48 +0300 | [diff] [blame] | 5484 | if (hub) |
| 5485 | hub->ports[port1 - 1]->connect_type = type; |
Lan Tianyu | 05f9168 | 2012-09-05 13:44:34 +0800 | [diff] [blame] | 5486 | } |
| 5487 | |
| 5488 | /** |
| 5489 | * usb_get_hub_port_connect_type - Get the port's connect type |
| 5490 | * @hdev: USB device belonging to the usb hub |
| 5491 | * @port1: port num of the port |
| 5492 | * |
Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 5493 | * Return: The connect type of the port if successful. Or |
| 5494 | * USB_PORT_CONNECT_TYPE_UNKNOWN if input params are invalid. |
Lan Tianyu | 05f9168 | 2012-09-05 13:44:34 +0800 | [diff] [blame] | 5495 | */ |
| 5496 | enum usb_port_connect_type |
| 5497 | usb_get_hub_port_connect_type(struct usb_device *hdev, int port1) |
| 5498 | { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 5499 | struct usb_hub *hub = usb_hub_to_struct_hub(hdev); |
Lan Tianyu | 05f9168 | 2012-09-05 13:44:34 +0800 | [diff] [blame] | 5500 | |
Mathias Nyman | 4134126 | 2013-06-18 17:28:48 +0300 | [diff] [blame] | 5501 | if (!hub) |
| 5502 | return USB_PORT_CONNECT_TYPE_UNKNOWN; |
| 5503 | |
Lan Tianyu | 05f9168 | 2012-09-05 13:44:34 +0800 | [diff] [blame] | 5504 | return hub->ports[port1 - 1]->connect_type; |
| 5505 | } |
| 5506 | |
Lan Tianyu | d2123fd | 2013-01-21 22:18:00 +0800 | [diff] [blame] | 5507 | void usb_hub_adjust_deviceremovable(struct usb_device *hdev, |
| 5508 | struct usb_hub_descriptor *desc) |
| 5509 | { |
| 5510 | enum usb_port_connect_type connect_type; |
| 5511 | int i; |
| 5512 | |
| 5513 | if (!hub_is_superspeed(hdev)) { |
| 5514 | for (i = 1; i <= hdev->maxchild; i++) { |
| 5515 | connect_type = usb_get_hub_port_connect_type(hdev, i); |
| 5516 | |
| 5517 | if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) { |
| 5518 | u8 mask = 1 << (i%8); |
| 5519 | |
| 5520 | if (!(desc->u.hs.DeviceRemovable[i/8] & mask)) { |
| 5521 | dev_dbg(&hdev->dev, "usb port%d's DeviceRemovable is changed to 1 according to platform information.\n", |
| 5522 | i); |
| 5523 | desc->u.hs.DeviceRemovable[i/8] |= mask; |
| 5524 | } |
| 5525 | } |
| 5526 | } |
| 5527 | } else { |
| 5528 | u16 port_removable = le16_to_cpu(desc->u.ss.DeviceRemovable); |
| 5529 | |
| 5530 | for (i = 1; i <= hdev->maxchild; i++) { |
| 5531 | connect_type = usb_get_hub_port_connect_type(hdev, i); |
| 5532 | |
| 5533 | if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) { |
| 5534 | u16 mask = 1 << i; |
| 5535 | |
| 5536 | if (!(port_removable & mask)) { |
| 5537 | dev_dbg(&hdev->dev, "usb port%d's DeviceRemovable is changed to 1 according to platform information.\n", |
| 5538 | i); |
| 5539 | port_removable |= mask; |
| 5540 | } |
| 5541 | } |
| 5542 | } |
| 5543 | |
| 5544 | desc->u.ss.DeviceRemovable = cpu_to_le16(port_removable); |
| 5545 | } |
| 5546 | } |
| 5547 | |
Lan Tianyu | d557542 | 2012-09-05 13:44:33 +0800 | [diff] [blame] | 5548 | #ifdef CONFIG_ACPI |
| 5549 | /** |
| 5550 | * usb_get_hub_port_acpi_handle - Get the usb port's acpi handle |
| 5551 | * @hdev: USB device belonging to the usb hub |
| 5552 | * @port1: port num of the port |
| 5553 | * |
Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 5554 | * Return: Port's acpi handle if successful, %NULL if params are |
| 5555 | * invalid. |
Lan Tianyu | d557542 | 2012-09-05 13:44:33 +0800 | [diff] [blame] | 5556 | */ |
| 5557 | acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev, |
| 5558 | int port1) |
| 5559 | { |
Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 5560 | struct usb_hub *hub = usb_hub_to_struct_hub(hdev); |
Lan Tianyu | d557542 | 2012-09-05 13:44:33 +0800 | [diff] [blame] | 5561 | |
Mathias Nyman | 4134126 | 2013-06-18 17:28:48 +0300 | [diff] [blame] | 5562 | if (!hub) |
| 5563 | return NULL; |
| 5564 | |
Rafael J. Wysocki | 3a83f99 | 2013-11-14 23:17:21 +0100 | [diff] [blame] | 5565 | return ACPI_HANDLE(&hub->ports[port1 - 1]->dev); |
Lan Tianyu | d557542 | 2012-09-05 13:44:33 +0800 | [diff] [blame] | 5566 | } |
| 5567 | #endif |