| 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 |  | 
| Dan Williams | d8521af | 2014-05-20 18:08:28 -0700 | [diff] [blame^] | 58 | /* synchronize hub-port add/remove and peering operations */ | 
|  | 59 | DEFINE_MUTEX(usb_port_peer_mutex); | 
|  | 60 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | /* cycle leds on hubs that aren't blinking for attention */ | 
| Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 62 | static bool blinkenlights = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | module_param (blinkenlights, bool, S_IRUGO); | 
|  | 64 | MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs"); | 
|  | 65 |  | 
|  | 66 | /* | 
| Jaroslav Kysela | fd7c519 | 2008-10-10 16:24:45 +0200 | [diff] [blame] | 67 | * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about | 
|  | 68 | * 10 seconds to send reply for the initial 64-byte descriptor request. | 
|  | 69 | */ | 
|  | 70 | /* define initial 64-byte descriptor request timeout in milliseconds */ | 
|  | 71 | static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT; | 
|  | 72 | module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR); | 
| Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 73 | MODULE_PARM_DESC(initial_descriptor_timeout, | 
|  | 74 | "initial 64-byte descriptor request timeout in milliseconds " | 
|  | 75 | "(default 5000 - 5.0 seconds)"); | 
| Jaroslav Kysela | fd7c519 | 2008-10-10 16:24:45 +0200 | [diff] [blame] | 76 |  | 
|  | 77 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | * As of 2.6.10 we introduce a new USB device initialization scheme which | 
|  | 79 | * closely resembles the way Windows works.  Hopefully it will be compatible | 
|  | 80 | * with a wider range of devices than the old scheme.  However some previously | 
|  | 81 | * working devices may start giving rise to "device not accepting address" | 
|  | 82 | * errors; if that happens the user can try the old scheme by adjusting the | 
|  | 83 | * following module parameters. | 
|  | 84 | * | 
|  | 85 | * For maximum flexibility there are two boolean parameters to control the | 
|  | 86 | * hub driver's behavior.  On the first initialization attempt, if the | 
|  | 87 | * "old_scheme_first" parameter is set then the old scheme will be used, | 
|  | 88 | * otherwise the new scheme is used.  If that fails and "use_both_schemes" | 
|  | 89 | * is set, then the driver will make another attempt, using the other scheme. | 
|  | 90 | */ | 
| Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 91 | static bool old_scheme_first = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR); | 
|  | 93 | MODULE_PARM_DESC(old_scheme_first, | 
|  | 94 | "start with the old device initialization scheme"); | 
|  | 95 |  | 
| Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 96 | static bool use_both_schemes = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR); | 
|  | 98 | MODULE_PARM_DESC(use_both_schemes, | 
|  | 99 | "try the other device initialization scheme if the " | 
|  | 100 | "first one fails"); | 
|  | 101 |  | 
| Alan Stern | 32fe019 | 2007-10-10 16:27:07 -0400 | [diff] [blame] | 102 | /* Mutual exclusion for EHCI CF initialization.  This interferes with | 
|  | 103 | * port reset on some companion controllers. | 
|  | 104 | */ | 
|  | 105 | DECLARE_RWSEM(ehci_cf_port_reset_rwsem); | 
|  | 106 | EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem); | 
|  | 107 |  | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 108 | #define HUB_DEBOUNCE_TIMEOUT	2000 | 
| Alan Stern | 948fea3 | 2008-04-28 11:07:07 -0400 | [diff] [blame] | 109 | #define HUB_DEBOUNCE_STEP	  25 | 
|  | 110 | #define HUB_DEBOUNCE_STABLE	 100 | 
|  | 111 |  | 
| Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 112 | static int usb_reset_and_verify_device(struct usb_device *udev); | 
|  | 113 |  | 
| Sarah Sharp | 131dec3 | 2010-12-06 21:00:19 -0800 | [diff] [blame] | 114 | static inline char *portspeed(struct usb_hub *hub, int portstatus) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | { | 
| Sarah Sharp | 131dec3 | 2010-12-06 21:00:19 -0800 | [diff] [blame] | 116 | if (hub_is_superspeed(hub->hdev)) | 
|  | 117 | return "5.0 Gb/s"; | 
| Alan Stern | 288ead4 | 2010-03-04 11:32:30 -0500 | [diff] [blame] | 118 | if (portstatus & USB_PORT_STAT_HIGH_SPEED) | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 119 | return "480 Mb/s"; | 
| Alan Stern | 288ead4 | 2010-03-04 11:32:30 -0500 | [diff] [blame] | 120 | else if (portstatus & USB_PORT_STAT_LOW_SPEED) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | return "1.5 Mb/s"; | 
|  | 122 | else | 
|  | 123 | return "12 Mb/s"; | 
|  | 124 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 |  | 
|  | 126 | /* Note that hdev or one of its children must be locked! */ | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 127 | struct usb_hub *usb_hub_to_struct_hub(struct usb_device *hdev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | { | 
| Lan Tianyu | ff823c79 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 129 | if (!hdev || !hdev->actconfig || !hdev->maxchild) | 
| Alan Stern | 25118084 | 2009-07-22 14:41:18 -0400 | [diff] [blame] | 130 | return NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | return usb_get_intfdata(hdev->actconfig->interface[0]); | 
|  | 132 | } | 
|  | 133 |  | 
| Sarah Sharp | 140e302 | 2014-01-22 13:35:02 -0800 | [diff] [blame] | 134 | static int usb_device_supports_lpm(struct usb_device *udev) | 
| Sarah Sharp | d9b2099 | 2012-02-20 08:31:26 -0800 | [diff] [blame] | 135 | { | 
|  | 136 | /* USB 2.1 (and greater) devices indicate LPM support through | 
|  | 137 | * their USB 2.0 Extended Capabilities BOS descriptor. | 
|  | 138 | */ | 
|  | 139 | if (udev->speed == USB_SPEED_HIGH) { | 
|  | 140 | if (udev->bos->ext_cap && | 
|  | 141 | (USB_LPM_SUPPORT & | 
|  | 142 | le32_to_cpu(udev->bos->ext_cap->bmAttributes))) | 
|  | 143 | return 1; | 
|  | 144 | return 0; | 
|  | 145 | } | 
| Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 146 |  | 
| Sarah Sharp | 25cd288 | 2014-01-17 14:15:44 -0800 | [diff] [blame] | 147 | /* | 
|  | 148 | * According to the USB 3.0 spec, all USB 3.0 devices must support LPM. | 
|  | 149 | * However, there are some that don't, and they set the U1/U2 exit | 
|  | 150 | * latencies to zero. | 
| Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 151 | */ | 
|  | 152 | if (!udev->bos->ss_cap) { | 
| Sarah Sharp | 25cd288 | 2014-01-17 14:15:44 -0800 | [diff] [blame] | 153 | 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] | 154 | return 0; | 
|  | 155 | } | 
| Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 156 |  | 
| Sarah Sharp | 25cd288 | 2014-01-17 14:15:44 -0800 | [diff] [blame] | 157 | if (udev->bos->ss_cap->bU1devExitLat == 0 && | 
|  | 158 | udev->bos->ss_cap->bU2DevExitLat == 0) { | 
|  | 159 | if (udev->parent) | 
|  | 160 | dev_info(&udev->dev, "LPM exit latency is zeroed, disabling LPM.\n"); | 
|  | 161 | else | 
|  | 162 | dev_info(&udev->dev, "We don't know the algorithms for LPM for this host, disabling LPM.\n"); | 
|  | 163 | return 0; | 
|  | 164 | } | 
|  | 165 |  | 
|  | 166 | if (!udev->parent || udev->parent->lpm_capable) | 
|  | 167 | return 1; | 
| Sarah Sharp | d9b2099 | 2012-02-20 08:31:26 -0800 | [diff] [blame] | 168 | return 0; | 
|  | 169 | } | 
|  | 170 |  | 
| Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 171 | /* | 
|  | 172 | * Set the Maximum Exit Latency (MEL) for the host to initiate a transition from | 
|  | 173 | * either U1 or U2. | 
|  | 174 | */ | 
|  | 175 | static void usb_set_lpm_mel(struct usb_device *udev, | 
|  | 176 | struct usb3_lpm_parameters *udev_lpm_params, | 
|  | 177 | unsigned int udev_exit_latency, | 
|  | 178 | struct usb_hub *hub, | 
|  | 179 | struct usb3_lpm_parameters *hub_lpm_params, | 
|  | 180 | unsigned int hub_exit_latency) | 
|  | 181 | { | 
|  | 182 | unsigned int total_mel; | 
|  | 183 | unsigned int device_mel; | 
|  | 184 | unsigned int hub_mel; | 
|  | 185 |  | 
|  | 186 | /* | 
|  | 187 | * Calculate the time it takes to transition all links from the roothub | 
|  | 188 | * to the parent hub into U0.  The parent hub must then decode the | 
|  | 189 | * packet (hub header decode latency) to figure out which port it was | 
|  | 190 | * bound for. | 
|  | 191 | * | 
|  | 192 | * The Hub Header decode latency is expressed in 0.1us intervals (0x1 | 
|  | 193 | * means 0.1us).  Multiply that by 100 to get nanoseconds. | 
|  | 194 | */ | 
|  | 195 | total_mel = hub_lpm_params->mel + | 
|  | 196 | (hub->descriptor->u.ss.bHubHdrDecLat * 100); | 
|  | 197 |  | 
|  | 198 | /* | 
|  | 199 | * How long will it take to transition the downstream hub's port into | 
|  | 200 | * U0?  The greater of either the hub exit latency or the device exit | 
|  | 201 | * latency. | 
|  | 202 | * | 
|  | 203 | * The BOS U1/U2 exit latencies are expressed in 1us intervals. | 
|  | 204 | * Multiply that by 1000 to get nanoseconds. | 
|  | 205 | */ | 
|  | 206 | device_mel = udev_exit_latency * 1000; | 
|  | 207 | hub_mel = hub_exit_latency * 1000; | 
|  | 208 | if (device_mel > hub_mel) | 
|  | 209 | total_mel += device_mel; | 
|  | 210 | else | 
|  | 211 | total_mel += hub_mel; | 
|  | 212 |  | 
|  | 213 | udev_lpm_params->mel = total_mel; | 
|  | 214 | } | 
|  | 215 |  | 
|  | 216 | /* | 
|  | 217 | * Set the maximum Device to Host Exit Latency (PEL) for the device to initiate | 
|  | 218 | * a transition from either U1 or U2. | 
|  | 219 | */ | 
|  | 220 | static void usb_set_lpm_pel(struct usb_device *udev, | 
|  | 221 | struct usb3_lpm_parameters *udev_lpm_params, | 
|  | 222 | unsigned int udev_exit_latency, | 
|  | 223 | struct usb_hub *hub, | 
|  | 224 | struct usb3_lpm_parameters *hub_lpm_params, | 
|  | 225 | unsigned int hub_exit_latency, | 
|  | 226 | unsigned int port_to_port_exit_latency) | 
|  | 227 | { | 
|  | 228 | unsigned int first_link_pel; | 
|  | 229 | unsigned int hub_pel; | 
|  | 230 |  | 
|  | 231 | /* | 
|  | 232 | * First, the device sends an LFPS to transition the link between the | 
|  | 233 | * device and the parent hub into U0.  The exit latency is the bigger of | 
|  | 234 | * the device exit latency or the hub exit latency. | 
|  | 235 | */ | 
|  | 236 | if (udev_exit_latency > hub_exit_latency) | 
|  | 237 | first_link_pel = udev_exit_latency * 1000; | 
|  | 238 | else | 
|  | 239 | first_link_pel = hub_exit_latency * 1000; | 
|  | 240 |  | 
|  | 241 | /* | 
|  | 242 | * When the hub starts to receive the LFPS, there is a slight delay for | 
|  | 243 | * it to figure out that one of the ports is sending an LFPS.  Then it | 
|  | 244 | * will forward the LFPS to its upstream link.  The exit latency is the | 
|  | 245 | * delay, plus the PEL that we calculated for this hub. | 
|  | 246 | */ | 
|  | 247 | hub_pel = port_to_port_exit_latency * 1000 + hub_lpm_params->pel; | 
|  | 248 |  | 
|  | 249 | /* | 
|  | 250 | * According to figure C-7 in the USB 3.0 spec, the PEL for this device | 
|  | 251 | * is the greater of the two exit latencies. | 
|  | 252 | */ | 
|  | 253 | if (first_link_pel > hub_pel) | 
|  | 254 | udev_lpm_params->pel = first_link_pel; | 
|  | 255 | else | 
|  | 256 | udev_lpm_params->pel = hub_pel; | 
|  | 257 | } | 
|  | 258 |  | 
|  | 259 | /* | 
|  | 260 | * Set the System Exit Latency (SEL) to indicate the total worst-case time from | 
|  | 261 | * when a device initiates a transition to U0, until when it will receive the | 
|  | 262 | * first packet from the host controller. | 
|  | 263 | * | 
|  | 264 | * Section C.1.5.1 describes the four components to this: | 
|  | 265 | *  - t1: device PEL | 
|  | 266 | *  - t2: time for the ERDY to make it from the device to the host. | 
|  | 267 | *  - t3: a host-specific delay to process the ERDY. | 
|  | 268 | *  - t4: time for the packet to make it from the host to the device. | 
|  | 269 | * | 
|  | 270 | * t3 is specific to both the xHCI host and the platform the host is integrated | 
|  | 271 | * into.  The Intel HW folks have said it's negligible, FIXME if a different | 
|  | 272 | * vendor says otherwise. | 
|  | 273 | */ | 
|  | 274 | static void usb_set_lpm_sel(struct usb_device *udev, | 
|  | 275 | struct usb3_lpm_parameters *udev_lpm_params) | 
|  | 276 | { | 
|  | 277 | struct usb_device *parent; | 
|  | 278 | unsigned int num_hubs; | 
|  | 279 | unsigned int total_sel; | 
|  | 280 |  | 
|  | 281 | /* t1 = device PEL */ | 
|  | 282 | total_sel = udev_lpm_params->pel; | 
|  | 283 | /* How many external hubs are in between the device & the root port. */ | 
|  | 284 | for (parent = udev->parent, num_hubs = 0; parent->parent; | 
|  | 285 | parent = parent->parent) | 
|  | 286 | num_hubs++; | 
|  | 287 | /* t2 = 2.1us + 250ns * (num_hubs - 1) */ | 
|  | 288 | if (num_hubs > 0) | 
|  | 289 | total_sel += 2100 + 250 * (num_hubs - 1); | 
|  | 290 |  | 
|  | 291 | /* t4 = 250ns * num_hubs */ | 
|  | 292 | total_sel += 250 * num_hubs; | 
|  | 293 |  | 
|  | 294 | udev_lpm_params->sel = total_sel; | 
|  | 295 | } | 
|  | 296 |  | 
|  | 297 | static void usb_set_lpm_parameters(struct usb_device *udev) | 
|  | 298 | { | 
|  | 299 | struct usb_hub *hub; | 
|  | 300 | unsigned int port_to_port_delay; | 
|  | 301 | unsigned int udev_u1_del; | 
|  | 302 | unsigned int udev_u2_del; | 
|  | 303 | unsigned int hub_u1_del; | 
|  | 304 | unsigned int hub_u2_del; | 
|  | 305 |  | 
|  | 306 | if (!udev->lpm_capable || udev->speed != USB_SPEED_SUPER) | 
|  | 307 | return; | 
|  | 308 |  | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 309 | hub = usb_hub_to_struct_hub(udev->parent); | 
| Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 310 | /* It doesn't take time to transition the roothub into U0, since it | 
|  | 311 | * doesn't have an upstream link. | 
|  | 312 | */ | 
|  | 313 | if (!hub) | 
|  | 314 | return; | 
|  | 315 |  | 
|  | 316 | udev_u1_del = udev->bos->ss_cap->bU1devExitLat; | 
| Xenia Ragiadakou | 4d96799 | 2013-08-31 18:09:13 +0300 | [diff] [blame] | 317 | udev_u2_del = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat); | 
| Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 318 | hub_u1_del = udev->parent->bos->ss_cap->bU1devExitLat; | 
| Xenia Ragiadakou | 4d96799 | 2013-08-31 18:09:13 +0300 | [diff] [blame] | 319 | hub_u2_del = le16_to_cpu(udev->parent->bos->ss_cap->bU2DevExitLat); | 
| Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 320 |  | 
|  | 321 | usb_set_lpm_mel(udev, &udev->u1_params, udev_u1_del, | 
|  | 322 | hub, &udev->parent->u1_params, hub_u1_del); | 
|  | 323 |  | 
|  | 324 | usb_set_lpm_mel(udev, &udev->u2_params, udev_u2_del, | 
|  | 325 | hub, &udev->parent->u2_params, hub_u2_del); | 
|  | 326 |  | 
|  | 327 | /* | 
|  | 328 | * Appendix C, section C.2.2.2, says that there is a slight delay from | 
|  | 329 | * when the parent hub notices the downstream port is trying to | 
|  | 330 | * transition to U0 to when the hub initiates a U0 transition on its | 
|  | 331 | * upstream port.  The section says the delays are tPort2PortU1EL and | 
|  | 332 | * tPort2PortU2EL, but it doesn't define what they are. | 
|  | 333 | * | 
|  | 334 | * The hub chapter, sections 10.4.2.4 and 10.4.2.5 seem to be talking | 
|  | 335 | * about the same delays.  Use the maximum delay calculations from those | 
|  | 336 | * sections.  For U1, it's tHubPort2PortExitLat, which is 1us max.  For | 
|  | 337 | * U2, it's tHubPort2PortExitLat + U2DevExitLat - U1DevExitLat.  I | 
|  | 338 | * assume the device exit latencies they are talking about are the hub | 
|  | 339 | * exit latencies. | 
|  | 340 | * | 
|  | 341 | * What do we do if the U2 exit latency is less than the U1 exit | 
|  | 342 | * latency?  It's possible, although not likely... | 
|  | 343 | */ | 
|  | 344 | port_to_port_delay = 1; | 
|  | 345 |  | 
|  | 346 | usb_set_lpm_pel(udev, &udev->u1_params, udev_u1_del, | 
|  | 347 | hub, &udev->parent->u1_params, hub_u1_del, | 
|  | 348 | port_to_port_delay); | 
|  | 349 |  | 
|  | 350 | if (hub_u2_del > hub_u1_del) | 
|  | 351 | port_to_port_delay = 1 + hub_u2_del - hub_u1_del; | 
|  | 352 | else | 
|  | 353 | port_to_port_delay = 1 + hub_u1_del; | 
|  | 354 |  | 
|  | 355 | usb_set_lpm_pel(udev, &udev->u2_params, udev_u2_del, | 
|  | 356 | hub, &udev->parent->u2_params, hub_u2_del, | 
|  | 357 | port_to_port_delay); | 
|  | 358 |  | 
|  | 359 | /* Now that we've got PEL, calculate SEL. */ | 
|  | 360 | usb_set_lpm_sel(udev, &udev->u1_params); | 
|  | 361 | usb_set_lpm_sel(udev, &udev->u2_params); | 
|  | 362 | } | 
|  | 363 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | /* USB 2.0 spec Section 11.24.4.5 */ | 
| John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 365 | static int get_hub_descriptor(struct usb_device *hdev, void *data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | { | 
| John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 367 | int i, ret, size; | 
|  | 368 | unsigned dtype; | 
|  | 369 |  | 
|  | 370 | if (hub_is_superspeed(hdev)) { | 
|  | 371 | dtype = USB_DT_SS_HUB; | 
|  | 372 | size = USB_DT_SS_HUB_SIZE; | 
|  | 373 | } else { | 
|  | 374 | dtype = USB_DT_HUB; | 
|  | 375 | size = sizeof(struct usb_hub_descriptor); | 
|  | 376 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 |  | 
|  | 378 | for (i = 0; i < 3; i++) { | 
|  | 379 | ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0), | 
|  | 380 | USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB, | 
| John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 381 | dtype << 8, 0, data, size, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | USB_CTRL_GET_TIMEOUT); | 
|  | 383 | if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2)) | 
|  | 384 | return ret; | 
|  | 385 | } | 
|  | 386 | return -EINVAL; | 
|  | 387 | } | 
|  | 388 |  | 
|  | 389 | /* | 
|  | 390 | * USB 2.0 spec Section 11.24.2.1 | 
|  | 391 | */ | 
|  | 392 | static int clear_hub_feature(struct usb_device *hdev, int feature) | 
|  | 393 | { | 
|  | 394 | return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), | 
|  | 395 | USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000); | 
|  | 396 | } | 
|  | 397 |  | 
|  | 398 | /* | 
|  | 399 | * USB 2.0 spec Section 11.24.2.2 | 
|  | 400 | */ | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 401 | 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] | 402 | { | 
|  | 403 | return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), | 
|  | 404 | USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1, | 
|  | 405 | NULL, 0, 1000); | 
|  | 406 | } | 
|  | 407 |  | 
|  | 408 | /* | 
|  | 409 | * USB 2.0 spec Section 11.24.2.13 | 
|  | 410 | */ | 
|  | 411 | static int set_port_feature(struct usb_device *hdev, int port1, int feature) | 
|  | 412 | { | 
|  | 413 | return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), | 
|  | 414 | USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1, | 
|  | 415 | NULL, 0, 1000); | 
|  | 416 | } | 
|  | 417 |  | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 418 | static char *to_led_name(int selector) | 
|  | 419 | { | 
|  | 420 | switch (selector) { | 
|  | 421 | case HUB_LED_AMBER: | 
|  | 422 | return "amber"; | 
|  | 423 | case HUB_LED_GREEN: | 
|  | 424 | return "green"; | 
|  | 425 | case HUB_LED_OFF: | 
|  | 426 | return "off"; | 
|  | 427 | case HUB_LED_AUTO: | 
|  | 428 | return "auto"; | 
|  | 429 | default: | 
|  | 430 | return "??"; | 
|  | 431 | } | 
|  | 432 | } | 
|  | 433 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | /* | 
|  | 435 | * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7 | 
|  | 436 | * for info about using port indicators | 
|  | 437 | */ | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 438 | static void set_port_led(struct usb_hub *hub, int port1, int selector) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 440 | struct usb_port *port_dev = hub->ports[port1 - 1]; | 
|  | 441 | int status; | 
|  | 442 |  | 
|  | 443 | status = set_port_feature(hub->hdev, (selector << 8) | port1, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 444 | USB_PORT_FEAT_INDICATOR); | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 445 | dev_dbg(&port_dev->dev, "indicator %s status %d\n", | 
|  | 446 | to_led_name(selector), status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | } | 
|  | 448 |  | 
|  | 449 | #define	LED_CYCLE_PERIOD	((2*HZ)/3) | 
|  | 450 |  | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 451 | static void led_work (struct work_struct *work) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | { | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 453 | struct usb_hub		*hub = | 
|  | 454 | container_of(work, struct usb_hub, leds.work); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | struct usb_device	*hdev = hub->hdev; | 
|  | 456 | unsigned		i; | 
|  | 457 | unsigned		changed = 0; | 
|  | 458 | int			cursor = -1; | 
|  | 459 |  | 
|  | 460 | if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing) | 
|  | 461 | return; | 
|  | 462 |  | 
| Krzysztof Mazur | 3bbc47d | 2013-08-22 14:49:40 +0200 | [diff] [blame] | 463 | for (i = 0; i < hdev->maxchild; i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | unsigned	selector, mode; | 
|  | 465 |  | 
|  | 466 | /* 30%-50% duty cycle */ | 
|  | 467 |  | 
|  | 468 | switch (hub->indicator[i]) { | 
|  | 469 | /* cycle marker */ | 
|  | 470 | case INDICATOR_CYCLE: | 
|  | 471 | cursor = i; | 
|  | 472 | selector = HUB_LED_AUTO; | 
|  | 473 | mode = INDICATOR_AUTO; | 
|  | 474 | break; | 
|  | 475 | /* blinking green = sw attention */ | 
|  | 476 | case INDICATOR_GREEN_BLINK: | 
|  | 477 | selector = HUB_LED_GREEN; | 
|  | 478 | mode = INDICATOR_GREEN_BLINK_OFF; | 
|  | 479 | break; | 
|  | 480 | case INDICATOR_GREEN_BLINK_OFF: | 
|  | 481 | selector = HUB_LED_OFF; | 
|  | 482 | mode = INDICATOR_GREEN_BLINK; | 
|  | 483 | break; | 
|  | 484 | /* blinking amber = hw attention */ | 
|  | 485 | case INDICATOR_AMBER_BLINK: | 
|  | 486 | selector = HUB_LED_AMBER; | 
|  | 487 | mode = INDICATOR_AMBER_BLINK_OFF; | 
|  | 488 | break; | 
|  | 489 | case INDICATOR_AMBER_BLINK_OFF: | 
|  | 490 | selector = HUB_LED_OFF; | 
|  | 491 | mode = INDICATOR_AMBER_BLINK; | 
|  | 492 | break; | 
|  | 493 | /* blink green/amber = reserved */ | 
|  | 494 | case INDICATOR_ALT_BLINK: | 
|  | 495 | selector = HUB_LED_GREEN; | 
|  | 496 | mode = INDICATOR_ALT_BLINK_OFF; | 
|  | 497 | break; | 
|  | 498 | case INDICATOR_ALT_BLINK_OFF: | 
|  | 499 | selector = HUB_LED_AMBER; | 
|  | 500 | mode = INDICATOR_ALT_BLINK; | 
|  | 501 | break; | 
|  | 502 | default: | 
|  | 503 | continue; | 
|  | 504 | } | 
|  | 505 | if (selector != HUB_LED_AUTO) | 
|  | 506 | changed = 1; | 
|  | 507 | set_port_led(hub, i + 1, selector); | 
|  | 508 | hub->indicator[i] = mode; | 
|  | 509 | } | 
|  | 510 | if (!changed && blinkenlights) { | 
|  | 511 | cursor++; | 
| Krzysztof Mazur | 3bbc47d | 2013-08-22 14:49:40 +0200 | [diff] [blame] | 512 | cursor %= hdev->maxchild; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | set_port_led(hub, cursor + 1, HUB_LED_GREEN); | 
|  | 514 | hub->indicator[cursor] = INDICATOR_CYCLE; | 
|  | 515 | changed++; | 
|  | 516 | } | 
|  | 517 | if (changed) | 
| Shaibal Dutta | 22f6a0f | 2014-02-01 19:16:46 -0800 | [diff] [blame] | 518 | queue_delayed_work(system_power_efficient_wq, | 
|  | 519 | &hub->leds, LED_CYCLE_PERIOD); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | } | 
|  | 521 |  | 
|  | 522 | /* use a short timeout for hub/port status fetches */ | 
|  | 523 | #define	USB_STS_TIMEOUT		1000 | 
|  | 524 | #define	USB_STS_RETRIES		5 | 
|  | 525 |  | 
|  | 526 | /* | 
|  | 527 | * USB 2.0 spec Section 11.24.2.6 | 
|  | 528 | */ | 
|  | 529 | static int get_hub_status(struct usb_device *hdev, | 
|  | 530 | struct usb_hub_status *data) | 
|  | 531 | { | 
|  | 532 | int i, status = -ETIMEDOUT; | 
|  | 533 |  | 
| Libor Pechacek | 3824c1d | 2011-05-20 14:53:25 +0200 | [diff] [blame] | 534 | for (i = 0; i < USB_STS_RETRIES && | 
|  | 535 | (status == -ETIMEDOUT || status == -EPIPE); i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0), | 
|  | 537 | USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0, | 
|  | 538 | data, sizeof(*data), USB_STS_TIMEOUT); | 
|  | 539 | } | 
|  | 540 | return status; | 
|  | 541 | } | 
|  | 542 |  | 
|  | 543 | /* | 
|  | 544 | * USB 2.0 spec Section 11.24.2.7 | 
|  | 545 | */ | 
|  | 546 | static int get_port_status(struct usb_device *hdev, int port1, | 
|  | 547 | struct usb_port_status *data) | 
|  | 548 | { | 
|  | 549 | int i, status = -ETIMEDOUT; | 
|  | 550 |  | 
| Libor Pechacek | 3824c1d | 2011-05-20 14:53:25 +0200 | [diff] [blame] | 551 | for (i = 0; i < USB_STS_RETRIES && | 
|  | 552 | (status == -ETIMEDOUT || status == -EPIPE); i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0), | 
|  | 554 | USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1, | 
|  | 555 | data, sizeof(*data), USB_STS_TIMEOUT); | 
|  | 556 | } | 
|  | 557 | return status; | 
|  | 558 | } | 
|  | 559 |  | 
| Alan Stern | 3eb1491 | 2008-03-03 15:15:43 -0500 | [diff] [blame] | 560 | static int hub_port_status(struct usb_hub *hub, int port1, | 
|  | 561 | u16 *status, u16 *change) | 
|  | 562 | { | 
|  | 563 | int ret; | 
|  | 564 |  | 
|  | 565 | mutex_lock(&hub->status_mutex); | 
|  | 566 | ret = get_port_status(hub->hdev, port1, &hub->status->port); | 
|  | 567 | if (ret < 4) { | 
| Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 568 | if (ret != -ENODEV) | 
|  | 569 | dev_err(hub->intfdev, | 
|  | 570 | "%s failed (err = %d)\n", __func__, ret); | 
| Alan Stern | 3eb1491 | 2008-03-03 15:15:43 -0500 | [diff] [blame] | 571 | if (ret >= 0) | 
|  | 572 | ret = -EIO; | 
|  | 573 | } else { | 
|  | 574 | *status = le16_to_cpu(hub->status->port.wPortStatus); | 
|  | 575 | *change = le16_to_cpu(hub->status->port.wPortChange); | 
| John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 576 |  | 
| Alan Stern | 3eb1491 | 2008-03-03 15:15:43 -0500 | [diff] [blame] | 577 | ret = 0; | 
|  | 578 | } | 
|  | 579 | mutex_unlock(&hub->status_mutex); | 
|  | 580 | return ret; | 
|  | 581 | } | 
|  | 582 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | static void kick_khubd(struct usb_hub *hub) | 
|  | 584 | { | 
|  | 585 | unsigned long	flags; | 
|  | 586 |  | 
|  | 587 | spin_lock_irqsave(&hub_event_lock, flags); | 
| Roel Kluin | 2e2c5ee | 2007-10-26 23:54:35 +0200 | [diff] [blame] | 588 | if (!hub->disconnected && list_empty(&hub->event_list)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 589 | list_add_tail(&hub->event_list, &hub_event_list); | 
| Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 590 |  | 
|  | 591 | /* Suppress autosuspend until khubd runs */ | 
|  | 592 | usb_autopm_get_interface_no_resume( | 
|  | 593 | to_usb_interface(hub->intfdev)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | wake_up(&khubd_wait); | 
|  | 595 | } | 
|  | 596 | spin_unlock_irqrestore(&hub_event_lock, flags); | 
|  | 597 | } | 
|  | 598 |  | 
|  | 599 | void usb_kick_khubd(struct usb_device *hdev) | 
|  | 600 | { | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 601 | struct usb_hub *hub = usb_hub_to_struct_hub(hdev); | 
| Alan Stern | 25118084 | 2009-07-22 14:41:18 -0400 | [diff] [blame] | 602 |  | 
|  | 603 | if (hub) | 
|  | 604 | kick_khubd(hub); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | } | 
|  | 606 |  | 
| Sarah Sharp | 4ee823b | 2011-11-14 18:00:01 -0800 | [diff] [blame] | 607 | /* | 
|  | 608 | * Let the USB core know that a USB 3.0 device has sent a Function Wake Device | 
|  | 609 | * Notification, which indicates it had initiated remote wakeup. | 
|  | 610 | * | 
|  | 611 | * USB 3.0 hubs do not report the port link state change from U3 to U0 when the | 
|  | 612 | * device initiates resume, so the USB core will not receive notice of the | 
|  | 613 | * resume through the normal hub interrupt URB. | 
|  | 614 | */ | 
|  | 615 | void usb_wakeup_notification(struct usb_device *hdev, | 
|  | 616 | unsigned int portnum) | 
|  | 617 | { | 
|  | 618 | struct usb_hub *hub; | 
|  | 619 |  | 
|  | 620 | if (!hdev) | 
|  | 621 | return; | 
|  | 622 |  | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 623 | hub = usb_hub_to_struct_hub(hdev); | 
| Sarah Sharp | 4ee823b | 2011-11-14 18:00:01 -0800 | [diff] [blame] | 624 | if (hub) { | 
|  | 625 | set_bit(portnum, hub->wakeup_bits); | 
|  | 626 | kick_khubd(hub); | 
|  | 627 | } | 
|  | 628 | } | 
|  | 629 | EXPORT_SYMBOL_GPL(usb_wakeup_notification); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 |  | 
|  | 631 | /* completion function, fires on port status changes and various faults */ | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 632 | static void hub_irq(struct urb *urb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 633 | { | 
| Tobias Klauser | ec17cf1 | 2006-09-13 21:38:41 +0200 | [diff] [blame] | 634 | struct usb_hub *hub = urb->context; | 
| Alan Stern | e015268 | 2007-08-24 15:42:52 -0400 | [diff] [blame] | 635 | int status = urb->status; | 
| Roel Kluin | 71d2718 | 2009-03-13 12:19:18 +0100 | [diff] [blame] | 636 | unsigned i; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | unsigned long bits; | 
|  | 638 |  | 
| Alan Stern | e015268 | 2007-08-24 15:42:52 -0400 | [diff] [blame] | 639 | switch (status) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | case -ENOENT:		/* synchronous unlink */ | 
|  | 641 | case -ECONNRESET:	/* async unlink */ | 
|  | 642 | case -ESHUTDOWN:	/* hardware going away */ | 
|  | 643 | return; | 
|  | 644 |  | 
|  | 645 | default:		/* presumably an error */ | 
|  | 646 | /* Cause a hub reset after 10 consecutive errors */ | 
| Alan Stern | e015268 | 2007-08-24 15:42:52 -0400 | [diff] [blame] | 647 | dev_dbg (hub->intfdev, "transfer --> %d\n", status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | if ((++hub->nerrors < 10) || hub->error) | 
|  | 649 | goto resubmit; | 
| Alan Stern | e015268 | 2007-08-24 15:42:52 -0400 | [diff] [blame] | 650 | hub->error = status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | /* FALL THROUGH */ | 
| Tobias Klauser | ec17cf1 | 2006-09-13 21:38:41 +0200 | [diff] [blame] | 652 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | /* let khubd handle things */ | 
|  | 654 | case 0:			/* we got data:  port status changed */ | 
|  | 655 | bits = 0; | 
|  | 656 | for (i = 0; i < urb->actual_length; ++i) | 
|  | 657 | bits |= ((unsigned long) ((*hub->buffer)[i])) | 
|  | 658 | << (i*8); | 
|  | 659 | hub->event_bits[0] = bits; | 
|  | 660 | break; | 
|  | 661 | } | 
|  | 662 |  | 
|  | 663 | hub->nerrors = 0; | 
|  | 664 |  | 
|  | 665 | /* Something happened, let khubd figure it out */ | 
|  | 666 | kick_khubd(hub); | 
|  | 667 |  | 
|  | 668 | resubmit: | 
|  | 669 | if (hub->quiescing) | 
|  | 670 | return; | 
|  | 671 |  | 
|  | 672 | if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0 | 
|  | 673 | && status != -ENODEV && status != -EPERM) | 
|  | 674 | dev_err (hub->intfdev, "resubmit --> %d\n", status); | 
|  | 675 | } | 
|  | 676 |  | 
|  | 677 | /* USB 2.0 spec Section 11.24.2.3 */ | 
|  | 678 | static inline int | 
|  | 679 | hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt) | 
|  | 680 | { | 
| William Gulland | 2c7b871 | 2013-06-27 16:10:20 -0700 | [diff] [blame] | 681 | /* Need to clear both directions for control ep */ | 
|  | 682 | if (((devinfo >> 11) & USB_ENDPOINT_XFERTYPE_MASK) == | 
|  | 683 | USB_ENDPOINT_XFER_CONTROL) { | 
|  | 684 | int status = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), | 
|  | 685 | HUB_CLEAR_TT_BUFFER, USB_RT_PORT, | 
|  | 686 | devinfo ^ 0x8000, tt, NULL, 0, 1000); | 
|  | 687 | if (status) | 
|  | 688 | return status; | 
|  | 689 | } | 
| Alan Stern | c2f6595 | 2009-11-18 11:37:15 -0500 | [diff] [blame] | 690 | return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo, | 
|  | 692 | tt, NULL, 0, 1000); | 
|  | 693 | } | 
|  | 694 |  | 
|  | 695 | /* | 
|  | 696 | * enumeration blocks khubd for a long time. we use keventd instead, since | 
|  | 697 | * long blocking there is the exception, not the rule.  accordingly, HCDs | 
|  | 698 | * talking to TTs must queue control transfers (not just bulk and iso), so | 
|  | 699 | * both can talk to the same hub concurrently. | 
|  | 700 | */ | 
| Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 701 | static void hub_tt_work(struct work_struct *work) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | { | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 703 | struct usb_hub		*hub = | 
| Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 704 | container_of(work, struct usb_hub, tt.clear_work); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | unsigned long		flags; | 
|  | 706 |  | 
|  | 707 | spin_lock_irqsave (&hub->tt.lock, flags); | 
| Octavian Purdila | 3b6054d | 2012-10-01 22:21:12 +0300 | [diff] [blame] | 708 | while (!list_empty(&hub->tt.clear_list)) { | 
| H Hartley Sweeten | d0f830d | 2009-04-22 16:03:05 -0400 | [diff] [blame] | 709 | struct list_head	*next; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | struct usb_tt_clear	*clear; | 
|  | 711 | struct usb_device	*hdev = hub->hdev; | 
| Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 712 | const struct hc_driver	*drv; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | int			status; | 
|  | 714 |  | 
| H Hartley Sweeten | d0f830d | 2009-04-22 16:03:05 -0400 | [diff] [blame] | 715 | next = hub->tt.clear_list.next; | 
|  | 716 | clear = list_entry (next, struct usb_tt_clear, clear_list); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | list_del (&clear->clear_list); | 
|  | 718 |  | 
|  | 719 | /* drop lock so HCD can concurrently report other TT errors */ | 
|  | 720 | spin_unlock_irqrestore (&hub->tt.lock, flags); | 
|  | 721 | status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt); | 
| Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 722 | if (status && status != -ENODEV) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | dev_err (&hdev->dev, | 
|  | 724 | "clear tt %d (%04x) error %d\n", | 
|  | 725 | clear->tt, clear->devinfo, status); | 
| Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 726 |  | 
|  | 727 | /* Tell the HCD, even if the operation failed */ | 
|  | 728 | drv = clear->hcd->driver; | 
|  | 729 | if (drv->clear_tt_buffer_complete) | 
|  | 730 | (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep); | 
|  | 731 |  | 
| Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 732 | kfree(clear); | 
| Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 733 | spin_lock_irqsave(&hub->tt.lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | } | 
|  | 735 | spin_unlock_irqrestore (&hub->tt.lock, flags); | 
|  | 736 | } | 
|  | 737 |  | 
|  | 738 | /** | 
| Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 739 | * usb_hub_set_port_power - control hub port's power state | 
| Mathias Nyman | 41341261 | 2013-06-18 17:28:48 +0300 | [diff] [blame] | 740 | * @hdev: USB device belonging to the usb hub | 
|  | 741 | * @hub: target hub | 
| Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 742 | * @port1: port index | 
|  | 743 | * @set: expected status | 
|  | 744 | * | 
|  | 745 | * call this function to control port's power via setting or | 
|  | 746 | * clearing the port's PORT_POWER feature. | 
| Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 747 | * | 
|  | 748 | * Return: 0 if successful. A negative error code otherwise. | 
| Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 749 | */ | 
| Mathias Nyman | 41341261 | 2013-06-18 17:28:48 +0300 | [diff] [blame] | 750 | int usb_hub_set_port_power(struct usb_device *hdev, struct usb_hub *hub, | 
|  | 751 | int port1, bool set) | 
| Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 752 | { | 
|  | 753 | int ret; | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 754 | struct usb_port *port_dev = hub->ports[port1 - 1]; | 
| Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 755 |  | 
|  | 756 | if (set) | 
|  | 757 | ret = set_port_feature(hdev, port1, USB_PORT_FEAT_POWER); | 
|  | 758 | else | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 759 | ret = usb_clear_port_feature(hdev, port1, USB_PORT_FEAT_POWER); | 
|  | 760 |  | 
|  | 761 | if (!ret) | 
|  | 762 | port_dev->power_is_on = set; | 
| Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 763 | return ret; | 
|  | 764 | } | 
|  | 765 |  | 
|  | 766 | /** | 
| Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 767 | * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub | 
|  | 768 | * @urb: an URB associated with the failed or incomplete split transaction | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | * | 
|  | 770 | * High speed HCDs use this to tell the hub driver that some split control or | 
|  | 771 | * bulk transaction failed in a way that requires clearing internal state of | 
|  | 772 | * a transaction translator.  This is normally detected (and reported) from | 
|  | 773 | * interrupt context. | 
|  | 774 | * | 
|  | 775 | * It may not be possible for that hub to handle additional full (or low) | 
|  | 776 | * speed transactions until that state is fully cleared out. | 
| Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 777 | * | 
|  | 778 | * Return: 0 if successful. A negative error code otherwise. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | */ | 
| Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 780 | int usb_hub_clear_tt_buffer(struct urb *urb) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | { | 
| Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 782 | struct usb_device	*udev = urb->dev; | 
|  | 783 | int			pipe = urb->pipe; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 784 | struct usb_tt		*tt = udev->tt; | 
|  | 785 | unsigned long		flags; | 
|  | 786 | struct usb_tt_clear	*clear; | 
|  | 787 |  | 
|  | 788 | /* we've got to cope with an arbitrary number of pending TT clears, | 
|  | 789 | * since each TT has "at least two" buffers that can need it (and | 
|  | 790 | * there can be many TTs per hub).  even if they're uncommon. | 
|  | 791 | */ | 
| Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 792 | if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n"); | 
|  | 794 | /* FIXME recover somehow ... RESET_TT? */ | 
| Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 795 | return -ENOMEM; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | } | 
|  | 797 |  | 
|  | 798 | /* info that CLEAR_TT_BUFFER needs */ | 
|  | 799 | clear->tt = tt->multi ? udev->ttport : 1; | 
|  | 800 | clear->devinfo = usb_pipeendpoint (pipe); | 
|  | 801 | clear->devinfo |= udev->devnum << 4; | 
|  | 802 | clear->devinfo |= usb_pipecontrol (pipe) | 
|  | 803 | ? (USB_ENDPOINT_XFER_CONTROL << 11) | 
|  | 804 | : (USB_ENDPOINT_XFER_BULK << 11); | 
|  | 805 | if (usb_pipein (pipe)) | 
|  | 806 | clear->devinfo |= 1 << 15; | 
| Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 807 |  | 
|  | 808 | /* info for completion callback */ | 
|  | 809 | clear->hcd = bus_to_hcd(udev->bus); | 
|  | 810 | clear->ep = urb->ep; | 
|  | 811 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | /* tell keventd to clear state for this TT */ | 
|  | 813 | spin_lock_irqsave (&tt->lock, flags); | 
|  | 814 | list_add_tail (&clear->clear_list, &tt->clear_list); | 
| Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 815 | schedule_work(&tt->clear_work); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | spin_unlock_irqrestore (&tt->lock, flags); | 
| Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 817 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | } | 
| Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 819 | EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 |  | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 821 | /* If do_delay is false, return the number of milliseconds the caller | 
|  | 822 | * needs to delay. | 
|  | 823 | */ | 
|  | 824 | static unsigned hub_power_on(struct usb_hub *hub, bool do_delay) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | { | 
|  | 826 | int port1; | 
| David Brownell | b789696 | 2005-08-31 10:41:44 -0700 | [diff] [blame] | 827 | unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2; | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 828 | unsigned delay; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 |  | 
| Alan Stern | 4489a57 | 2006-04-27 15:54:22 -0400 | [diff] [blame] | 830 | /* Enable power on each port.  Some hubs have reserved values | 
|  | 831 | * of LPSM (> 2) in their descriptors, even though they are | 
|  | 832 | * USB 2.0 hubs.  Some hubs do not implement port-power switching | 
|  | 833 | * but only emulate it.  In all cases, the ports won't work | 
|  | 834 | * unless we send these messages to the hub. | 
|  | 835 | */ | 
| Dan Williams | 9262c19 | 2014-05-20 18:08:12 -0700 | [diff] [blame] | 836 | if (hub_is_port_power_switchable(hub)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | dev_dbg(hub->intfdev, "enabling power on all ports\n"); | 
| Alan Stern | 4489a57 | 2006-04-27 15:54:22 -0400 | [diff] [blame] | 838 | else | 
|  | 839 | dev_dbg(hub->intfdev, "trying to enable port power on " | 
|  | 840 | "non-switchable hub\n"); | 
| Krzysztof Mazur | 3bbc47d | 2013-08-22 14:49:40 +0200 | [diff] [blame] | 841 | for (port1 = 1; port1 <= hub->hdev->maxchild; port1++) | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 842 | if (hub->ports[port1 - 1]->power_is_on) | 
|  | 843 | set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER); | 
|  | 844 | else | 
|  | 845 | usb_clear_port_feature(hub->hdev, port1, | 
|  | 846 | USB_PORT_FEAT_POWER); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 |  | 
| David Brownell | b789696 | 2005-08-31 10:41:44 -0700 | [diff] [blame] | 848 | /* Wait at least 100 msec for power to become stable */ | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 849 | delay = max(pgood_delay, (unsigned) 100); | 
|  | 850 | if (do_delay) | 
|  | 851 | msleep(delay); | 
|  | 852 | return delay; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | } | 
|  | 854 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | static int hub_hub_status(struct usb_hub *hub, | 
|  | 856 | u16 *status, u16 *change) | 
|  | 857 | { | 
|  | 858 | int ret; | 
|  | 859 |  | 
| Alan Stern | db90e7a | 2007-02-05 09:56:15 -0500 | [diff] [blame] | 860 | mutex_lock(&hub->status_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | ret = get_hub_status(hub->hdev, &hub->status->hub); | 
| Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 862 | if (ret < 0) { | 
|  | 863 | if (ret != -ENODEV) | 
|  | 864 | dev_err(hub->intfdev, | 
|  | 865 | "%s failed (err = %d)\n", __func__, ret); | 
|  | 866 | } else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | *status = le16_to_cpu(hub->status->hub.wHubStatus); | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 868 | *change = le16_to_cpu(hub->status->hub.wHubChange); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 869 | ret = 0; | 
|  | 870 | } | 
| Alan Stern | db90e7a | 2007-02-05 09:56:15 -0500 | [diff] [blame] | 871 | mutex_unlock(&hub->status_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | return ret; | 
|  | 873 | } | 
|  | 874 |  | 
| Sarah Sharp | 41e7e05 | 2012-11-14 16:42:32 -0800 | [diff] [blame] | 875 | static int hub_set_port_link_state(struct usb_hub *hub, int port1, | 
|  | 876 | unsigned int link_status) | 
|  | 877 | { | 
|  | 878 | return set_port_feature(hub->hdev, | 
|  | 879 | port1 | (link_status << 3), | 
|  | 880 | USB_PORT_FEAT_LINK_STATE); | 
|  | 881 | } | 
|  | 882 |  | 
|  | 883 | /* | 
|  | 884 | * If USB 3.0 ports are placed into the Disabled state, they will no longer | 
|  | 885 | * detect any device connects or disconnects.  This is generally not what the | 
|  | 886 | * USB core wants, since it expects a disabled port to produce a port status | 
|  | 887 | * change event when a new device connects. | 
|  | 888 | * | 
|  | 889 | * Instead, set the link state to Disabled, wait for the link to settle into | 
|  | 890 | * that state, clear any change bits, and then put the port into the RxDetect | 
|  | 891 | * state. | 
|  | 892 | */ | 
|  | 893 | static int hub_usb3_port_disable(struct usb_hub *hub, int port1) | 
|  | 894 | { | 
|  | 895 | int ret; | 
|  | 896 | int total_time; | 
|  | 897 | u16 portchange, portstatus; | 
|  | 898 |  | 
|  | 899 | if (!hub_is_superspeed(hub->hdev)) | 
|  | 900 | return -EINVAL; | 
|  | 901 |  | 
|  | 902 | 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] | 903 | if (ret) | 
| Sarah Sharp | 41e7e05 | 2012-11-14 16:42:32 -0800 | [diff] [blame] | 904 | return ret; | 
| Sarah Sharp | 41e7e05 | 2012-11-14 16:42:32 -0800 | [diff] [blame] | 905 |  | 
|  | 906 | /* Wait for the link to enter the disabled state. */ | 
|  | 907 | for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) { | 
|  | 908 | ret = hub_port_status(hub, port1, &portstatus, &portchange); | 
|  | 909 | if (ret < 0) | 
|  | 910 | return ret; | 
|  | 911 |  | 
|  | 912 | if ((portstatus & USB_PORT_STAT_LINK_STATE) == | 
|  | 913 | USB_SS_PORT_LS_SS_DISABLED) | 
|  | 914 | break; | 
|  | 915 | if (total_time >= HUB_DEBOUNCE_TIMEOUT) | 
|  | 916 | break; | 
|  | 917 | msleep(HUB_DEBOUNCE_STEP); | 
|  | 918 | } | 
|  | 919 | if (total_time >= HUB_DEBOUNCE_TIMEOUT) | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 920 | dev_warn(&hub->ports[port1 - 1]->dev, | 
|  | 921 | "Could not disable after %d ms\n", total_time); | 
| Sarah Sharp | 41e7e05 | 2012-11-14 16:42:32 -0800 | [diff] [blame] | 922 |  | 
|  | 923 | return hub_set_port_link_state(hub, port1, USB_SS_PORT_LS_RX_DETECT); | 
|  | 924 | } | 
|  | 925 |  | 
| Alan Stern | 8b28c75 | 2005-08-10 17:04:13 -0400 | [diff] [blame] | 926 | static int hub_port_disable(struct usb_hub *hub, int port1, int set_state) | 
|  | 927 | { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 928 | struct usb_port *port_dev = hub->ports[port1 - 1]; | 
| Alan Stern | 8b28c75 | 2005-08-10 17:04:13 -0400 | [diff] [blame] | 929 | struct usb_device *hdev = hub->hdev; | 
| Alan Stern | 0458d5b | 2007-05-04 11:52:20 -0400 | [diff] [blame] | 930 | int ret = 0; | 
| Alan Stern | 8b28c75 | 2005-08-10 17:04:13 -0400 | [diff] [blame] | 931 |  | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 932 | if (port_dev->child && set_state) | 
|  | 933 | usb_set_device_state(port_dev->child, USB_STATE_NOTATTACHED); | 
| Sarah Sharp | 41e7e05 | 2012-11-14 16:42:32 -0800 | [diff] [blame] | 934 | if (!hub->error) { | 
|  | 935 | if (hub_is_superspeed(hub->hdev)) | 
|  | 936 | ret = hub_usb3_port_disable(hub, port1); | 
|  | 937 | else | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 938 | ret = usb_clear_port_feature(hdev, port1, | 
| Sarah Sharp | 41e7e05 | 2012-11-14 16:42:32 -0800 | [diff] [blame] | 939 | USB_PORT_FEAT_ENABLE); | 
|  | 940 | } | 
| Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 941 | if (ret && ret != -ENODEV) | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 942 | dev_err(&port_dev->dev, "cannot disable (err = %d)\n", ret); | 
| Alan Stern | 8b28c75 | 2005-08-10 17:04:13 -0400 | [diff] [blame] | 943 | return ret; | 
|  | 944 | } | 
|  | 945 |  | 
| Alan Stern | 0458d5b | 2007-05-04 11:52:20 -0400 | [diff] [blame] | 946 | /* | 
| Justin P. Mattock | 6d42fcd | 2011-02-26 20:33:56 -0800 | [diff] [blame] | 947 | * 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] | 948 | * time later khubd will disconnect() any existing usb_device on the port | 
|  | 949 | * and will re-enumerate if there actually is a device attached. | 
|  | 950 | */ | 
|  | 951 | static void hub_port_logical_disconnect(struct usb_hub *hub, int port1) | 
|  | 952 | { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 953 | dev_dbg(&hub->ports[port1 - 1]->dev, "logical disconnect\n"); | 
| Alan Stern | 0458d5b | 2007-05-04 11:52:20 -0400 | [diff] [blame] | 954 | hub_port_disable(hub, port1, 1); | 
|  | 955 |  | 
|  | 956 | /* FIXME let caller ask to power down the port: | 
|  | 957 | *  - some devices won't enumerate without a VBUS power cycle | 
|  | 958 | *  - SRP saves power that way | 
|  | 959 | *  - ... new call, TBD ... | 
|  | 960 | * That's easy if this hub can switch power per-port, and | 
|  | 961 | * khubd reactivates the port later (timer, SRP, etc). | 
|  | 962 | * Powerdown must be optional, because of reset/DFU. | 
|  | 963 | */ | 
|  | 964 |  | 
|  | 965 | set_bit(port1, hub->change_bits); | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 966 | kick_khubd(hub); | 
| Alan Stern | 0458d5b | 2007-05-04 11:52:20 -0400 | [diff] [blame] | 967 | } | 
|  | 968 |  | 
| Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 969 | /** | 
|  | 970 | * usb_remove_device - disable a device's port on its parent hub | 
|  | 971 | * @udev: device to be disabled and removed | 
|  | 972 | * Context: @udev locked, must be able to sleep. | 
|  | 973 | * | 
|  | 974 | * After @udev's port has been disabled, khubd is notified and it will | 
|  | 975 | * see that the device has been disconnected.  When the device is | 
|  | 976 | * physically unplugged and something is plugged in, the events will | 
|  | 977 | * be received and processed normally. | 
| Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 978 | * | 
|  | 979 | * Return: 0 if successful. A negative error code otherwise. | 
| Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 980 | */ | 
|  | 981 | int usb_remove_device(struct usb_device *udev) | 
|  | 982 | { | 
|  | 983 | struct usb_hub *hub; | 
|  | 984 | struct usb_interface *intf; | 
|  | 985 |  | 
|  | 986 | if (!udev->parent)	/* Can't remove a root hub */ | 
|  | 987 | return -EINVAL; | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 988 | hub = usb_hub_to_struct_hub(udev->parent); | 
| Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 989 | intf = to_usb_interface(hub->intfdev); | 
|  | 990 |  | 
|  | 991 | usb_autopm_get_interface(intf); | 
|  | 992 | set_bit(udev->portnum, hub->removed_bits); | 
|  | 993 | hub_port_logical_disconnect(hub, udev->portnum); | 
|  | 994 | usb_autopm_put_interface(intf); | 
|  | 995 | return 0; | 
|  | 996 | } | 
|  | 997 |  | 
| Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 998 | enum hub_activation_type { | 
| Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 999 | HUB_INIT, HUB_INIT2, HUB_INIT3,		/* INITs must come first */ | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1000 | HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME, | 
| Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1001 | }; | 
| Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1002 |  | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1003 | static void hub_init_func2(struct work_struct *ws); | 
|  | 1004 | static void hub_init_func3(struct work_struct *ws); | 
|  | 1005 |  | 
| Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1006 | 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] | 1007 | { | 
|  | 1008 | struct usb_device *hdev = hub->hdev; | 
| Sarah Sharp | 653a39d | 2010-12-23 11:12:42 -0800 | [diff] [blame] | 1009 | struct usb_hcd *hcd; | 
|  | 1010 | int ret; | 
| Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1011 | int port1; | 
| Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1012 | int status; | 
| Alan Stern | 948fea3 | 2008-04-28 11:07:07 -0400 | [diff] [blame] | 1013 | bool need_debounce_delay = false; | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1014 | unsigned delay; | 
|  | 1015 |  | 
|  | 1016 | /* Continue a partial initialization */ | 
|  | 1017 | if (type == HUB_INIT2) | 
|  | 1018 | goto init2; | 
|  | 1019 | if (type == HUB_INIT3) | 
|  | 1020 | goto init3; | 
| Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1021 |  | 
| Elric Fu | a45aa3b | 2012-02-18 13:32:27 +0800 | [diff] [blame] | 1022 | /* The superspeed hub except for root hub has to use Hub Depth | 
|  | 1023 | * value as an offset into the route string to locate the bits | 
|  | 1024 | * it uses to determine the downstream port number. So hub driver | 
|  | 1025 | * should send a set hub depth request to superspeed hub after | 
|  | 1026 | * the superspeed hub is set configuration in initialization or | 
|  | 1027 | * reset procedure. | 
|  | 1028 | * | 
|  | 1029 | * After a resume, port power should still be on. | 
| Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1030 | * For any other type of activation, turn it on. | 
|  | 1031 | */ | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1032 | if (type != HUB_RESUME) { | 
| Elric Fu | a45aa3b | 2012-02-18 13:32:27 +0800 | [diff] [blame] | 1033 | if (hdev->parent && hub_is_superspeed(hdev)) { | 
|  | 1034 | ret = usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), | 
|  | 1035 | HUB_SET_DEPTH, USB_RT_HUB, | 
|  | 1036 | hdev->level - 1, 0, NULL, 0, | 
|  | 1037 | USB_CTRL_SET_TIMEOUT); | 
|  | 1038 | if (ret < 0) | 
|  | 1039 | dev_err(hub->intfdev, | 
|  | 1040 | "set hub depth failed\n"); | 
|  | 1041 | } | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1042 |  | 
|  | 1043 | /* Speed up system boot by using a delayed_work for the | 
|  | 1044 | * hub's initial power-up delays.  This is pretty awkward | 
|  | 1045 | * and the implementation looks like a home-brewed sort of | 
|  | 1046 | * setjmp/longjmp, but it saves at least 100 ms for each | 
|  | 1047 | * root hub (assuming usbcore is compiled into the kernel | 
|  | 1048 | * rather than as a module).  It adds up. | 
|  | 1049 | * | 
|  | 1050 | * This can't be done for HUB_RESUME or HUB_RESET_RESUME | 
|  | 1051 | * because for those activation types the ports have to be | 
|  | 1052 | * operational when we return.  In theory this could be done | 
|  | 1053 | * for HUB_POST_RESET, but it's easier not to. | 
|  | 1054 | */ | 
|  | 1055 | if (type == HUB_INIT) { | 
|  | 1056 | delay = hub_power_on(hub, false); | 
| Tejun Heo | 77fa83c | 2014-03-07 10:24:48 -0500 | [diff] [blame] | 1057 | INIT_DELAYED_WORK(&hub->init_work, hub_init_func2); | 
| Shaibal Dutta | 22f6a0f | 2014-02-01 19:16:46 -0800 | [diff] [blame] | 1058 | queue_delayed_work(system_power_efficient_wq, | 
|  | 1059 | &hub->init_work, | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1060 | msecs_to_jiffies(delay)); | 
| Alan Stern | 61fbeba | 2008-10-27 12:07:44 -0400 | [diff] [blame] | 1061 |  | 
|  | 1062 | /* Suppress autosuspend until init is done */ | 
| Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 1063 | usb_autopm_get_interface_no_resume( | 
|  | 1064 | to_usb_interface(hub->intfdev)); | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1065 | return;		/* Continues at init2: below */ | 
| Sarah Sharp | 653a39d | 2010-12-23 11:12:42 -0800 | [diff] [blame] | 1066 | } else if (type == HUB_RESET_RESUME) { | 
|  | 1067 | /* The internal host controller state for the hub device | 
|  | 1068 | * may be gone after a host power loss on system resume. | 
|  | 1069 | * Update the device's info so the HW knows it's a hub. | 
|  | 1070 | */ | 
|  | 1071 | hcd = bus_to_hcd(hdev->bus); | 
|  | 1072 | if (hcd->driver->update_hub_device) { | 
|  | 1073 | ret = hcd->driver->update_hub_device(hcd, hdev, | 
|  | 1074 | &hub->tt, GFP_NOIO); | 
|  | 1075 | if (ret < 0) { | 
|  | 1076 | dev_err(hub->intfdev, "Host not " | 
|  | 1077 | "accepting hub info " | 
|  | 1078 | "update.\n"); | 
|  | 1079 | dev_err(hub->intfdev, "LS/FS devices " | 
|  | 1080 | "and hubs may not work " | 
|  | 1081 | "under this hub\n."); | 
|  | 1082 | } | 
|  | 1083 | } | 
|  | 1084 | hub_power_on(hub, true); | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1085 | } else { | 
|  | 1086 | hub_power_on(hub, true); | 
|  | 1087 | } | 
|  | 1088 | } | 
|  | 1089 | init2: | 
| Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1090 |  | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 1091 | /* | 
|  | 1092 | * Check each port and set hub->change_bits to let khubd know | 
| Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1093 | * which ports need attention. | 
| Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1094 | */ | 
|  | 1095 | for (port1 = 1; port1 <= hdev->maxchild; ++port1) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 1096 | struct usb_port *port_dev = hub->ports[port1 - 1]; | 
|  | 1097 | struct usb_device *udev = port_dev->child; | 
| Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1098 | u16 portstatus, portchange; | 
|  | 1099 |  | 
| Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1100 | portstatus = portchange = 0; | 
|  | 1101 | status = hub_port_status(hub, port1, &portstatus, &portchange); | 
|  | 1102 | if (udev || (portstatus & USB_PORT_STAT_CONNECTION)) | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 1103 | dev_dbg(&port_dev->dev, "status %04x change %04x\n", | 
|  | 1104 | portstatus, portchange); | 
| Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1105 |  | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 1106 | /* | 
|  | 1107 | * After anything other than HUB_RESUME (i.e., initialization | 
| Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1108 | * or any sort of reset), every port should be disabled. | 
|  | 1109 | * Unconnected ports should likewise be disabled (paranoia), | 
|  | 1110 | * and so should ports for which we have no usb_device. | 
| Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1111 | */ | 
| Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1112 | if ((portstatus & USB_PORT_STAT_ENABLE) && ( | 
|  | 1113 | type != HUB_RESUME || | 
|  | 1114 | !(portstatus & USB_PORT_STAT_CONNECTION) || | 
|  | 1115 | !udev || | 
|  | 1116 | udev->state == USB_STATE_NOTATTACHED)) { | 
| Andiry Xu | 9f0a6cd | 2010-05-07 18:09:27 +0800 | [diff] [blame] | 1117 | /* | 
|  | 1118 | * USB3 protocol ports will automatically transition | 
|  | 1119 | * to Enabled state when detect an USB3.0 device attach. | 
| Dan Williams | fd1ac4c | 2013-10-07 11:58:20 -0700 | [diff] [blame] | 1120 | * Do not disable USB3 protocol ports, just pretend | 
|  | 1121 | * power was lost | 
| Andiry Xu | 9f0a6cd | 2010-05-07 18:09:27 +0800 | [diff] [blame] | 1122 | */ | 
| Dan Williams | fd1ac4c | 2013-10-07 11:58:20 -0700 | [diff] [blame] | 1123 | portstatus &= ~USB_PORT_STAT_ENABLE; | 
|  | 1124 | if (!hub_is_superspeed(hdev)) | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1125 | usb_clear_port_feature(hdev, port1, | 
| Andiry Xu | 9f0a6cd | 2010-05-07 18:09:27 +0800 | [diff] [blame] | 1126 | USB_PORT_FEAT_ENABLE); | 
| Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1127 | } | 
|  | 1128 |  | 
| Alan Stern | 948fea3 | 2008-04-28 11:07:07 -0400 | [diff] [blame] | 1129 | /* Clear status-change flags; we'll debounce later */ | 
|  | 1130 | if (portchange & USB_PORT_STAT_C_CONNECTION) { | 
|  | 1131 | need_debounce_delay = true; | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1132 | usb_clear_port_feature(hub->hdev, port1, | 
| Alan Stern | 948fea3 | 2008-04-28 11:07:07 -0400 | [diff] [blame] | 1133 | USB_PORT_FEAT_C_CONNECTION); | 
|  | 1134 | } | 
|  | 1135 | if (portchange & USB_PORT_STAT_C_ENABLE) { | 
|  | 1136 | need_debounce_delay = true; | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1137 | usb_clear_port_feature(hub->hdev, port1, | 
| Alan Stern | 948fea3 | 2008-04-28 11:07:07 -0400 | [diff] [blame] | 1138 | USB_PORT_FEAT_C_ENABLE); | 
|  | 1139 | } | 
| Julius Werner | e92aee3 | 2013-10-15 17:45:00 -0700 | [diff] [blame] | 1140 | if (portchange & USB_PORT_STAT_C_RESET) { | 
|  | 1141 | need_debounce_delay = true; | 
|  | 1142 | usb_clear_port_feature(hub->hdev, port1, | 
|  | 1143 | USB_PORT_FEAT_C_RESET); | 
|  | 1144 | } | 
| Don Zickus | 79c3dd8 | 2011-11-03 09:07:18 -0400 | [diff] [blame] | 1145 | if ((portchange & USB_PORT_STAT_C_BH_RESET) && | 
|  | 1146 | hub_is_superspeed(hub->hdev)) { | 
|  | 1147 | need_debounce_delay = true; | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1148 | usb_clear_port_feature(hub->hdev, port1, | 
| Don Zickus | 79c3dd8 | 2011-11-03 09:07:18 -0400 | [diff] [blame] | 1149 | USB_PORT_FEAT_C_BH_PORT_RESET); | 
|  | 1150 | } | 
| Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 1151 | /* We can forget about a "removed" device when there's a | 
|  | 1152 | * physical disconnect or the connect status changes. | 
|  | 1153 | */ | 
|  | 1154 | if (!(portstatus & USB_PORT_STAT_CONNECTION) || | 
|  | 1155 | (portchange & USB_PORT_STAT_C_CONNECTION)) | 
|  | 1156 | clear_bit(port1, hub->removed_bits); | 
|  | 1157 |  | 
| Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1158 | if (!udev || udev->state == USB_STATE_NOTATTACHED) { | 
|  | 1159 | /* Tell khubd to disconnect the device or | 
|  | 1160 | * check for a new connection | 
|  | 1161 | */ | 
| Shen Guang | 08d1dec | 2014-01-08 14:45:42 +0800 | [diff] [blame] | 1162 | if (udev || (portstatus & USB_PORT_STAT_CONNECTION) || | 
|  | 1163 | (portstatus & USB_PORT_STAT_OVERCURRENT)) | 
| Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1164 | set_bit(port1, hub->change_bits); | 
|  | 1165 |  | 
|  | 1166 | } else if (portstatus & USB_PORT_STAT_ENABLE) { | 
| Sarah Sharp | 72937e1 | 2012-01-24 11:46:50 -0800 | [diff] [blame] | 1167 | bool port_resumed = (portstatus & | 
|  | 1168 | USB_PORT_STAT_LINK_STATE) == | 
|  | 1169 | USB_SS_PORT_LS_U0; | 
| Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1170 | /* The power session apparently survived the resume. | 
|  | 1171 | * If there was an overcurrent or suspend change | 
|  | 1172 | * (i.e., remote wakeup request), have khubd | 
| Sarah Sharp | 72937e1 | 2012-01-24 11:46:50 -0800 | [diff] [blame] | 1173 | * take care of it.  Look at the port link state | 
|  | 1174 | * for USB 3.0 hubs, since they don't have a suspend | 
|  | 1175 | * change bit, and they don't set the port link change | 
|  | 1176 | * bit on device-initiated resume. | 
| Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1177 | */ | 
| Sarah Sharp | 72937e1 | 2012-01-24 11:46:50 -0800 | [diff] [blame] | 1178 | if (portchange || (hub_is_superspeed(hub->hdev) && | 
|  | 1179 | port_resumed)) | 
| Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1180 | set_bit(port1, hub->change_bits); | 
|  | 1181 |  | 
|  | 1182 | } else if (udev->persist_enabled) { | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1183 | struct usb_port *port_dev = hub->ports[port1 - 1]; | 
|  | 1184 |  | 
| Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1185 | #ifdef CONFIG_PM | 
| Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1186 | udev->reset_resume = 1; | 
| Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1187 | #endif | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1188 | /* Don't set the change_bits when the device | 
|  | 1189 | * was powered off. | 
|  | 1190 | */ | 
|  | 1191 | if (port_dev->power_is_on) | 
|  | 1192 | set_bit(port1, hub->change_bits); | 
| Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 1193 |  | 
| Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 1194 | } else { | 
|  | 1195 | /* The power session is gone; tell khubd */ | 
|  | 1196 | usb_set_device_state(udev, USB_STATE_NOTATTACHED); | 
|  | 1197 | set_bit(port1, hub->change_bits); | 
| Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1198 | } | 
| Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1199 | } | 
|  | 1200 |  | 
| Alan Stern | 948fea3 | 2008-04-28 11:07:07 -0400 | [diff] [blame] | 1201 | /* If no port-status-change flags were set, we don't need any | 
|  | 1202 | * debouncing.  If flags were set we can try to debounce the | 
|  | 1203 | * ports all at once right now, instead of letting khubd do them | 
|  | 1204 | * one at a time later on. | 
|  | 1205 | * | 
|  | 1206 | * If any port-status changes do occur during this delay, khubd | 
|  | 1207 | * will see them later and handle them normally. | 
|  | 1208 | */ | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1209 | if (need_debounce_delay) { | 
|  | 1210 | delay = HUB_DEBOUNCE_STABLE; | 
| Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1211 |  | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1212 | /* Don't do a long sleep inside a workqueue routine */ | 
|  | 1213 | if (type == HUB_INIT2) { | 
| Tejun Heo | 77fa83c | 2014-03-07 10:24:48 -0500 | [diff] [blame] | 1214 | INIT_DELAYED_WORK(&hub->init_work, hub_init_func3); | 
| Shaibal Dutta | 22f6a0f | 2014-02-01 19:16:46 -0800 | [diff] [blame] | 1215 | queue_delayed_work(system_power_efficient_wq, | 
|  | 1216 | &hub->init_work, | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1217 | msecs_to_jiffies(delay)); | 
|  | 1218 | return;		/* Continues at init3: below */ | 
|  | 1219 | } else { | 
|  | 1220 | msleep(delay); | 
|  | 1221 | } | 
|  | 1222 | } | 
|  | 1223 | init3: | 
| Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1224 | hub->quiescing = 0; | 
|  | 1225 |  | 
|  | 1226 | status = usb_submit_urb(hub->urb, GFP_NOIO); | 
|  | 1227 | if (status < 0) | 
|  | 1228 | dev_err(hub->intfdev, "activate --> %d\n", status); | 
|  | 1229 | if (hub->has_indicators && blinkenlights) | 
| Shaibal Dutta | 22f6a0f | 2014-02-01 19:16:46 -0800 | [diff] [blame] | 1230 | queue_delayed_work(system_power_efficient_wq, | 
|  | 1231 | &hub->leds, LED_CYCLE_PERIOD); | 
| Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1232 |  | 
|  | 1233 | /* Scan all ports that need attention */ | 
|  | 1234 | kick_khubd(hub); | 
| Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 1235 |  | 
|  | 1236 | /* Allow autosuspend if it was suppressed */ | 
|  | 1237 | if (type <= HUB_INIT3) | 
|  | 1238 | usb_autopm_put_interface_async(to_usb_interface(hub->intfdev)); | 
| Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 1239 | } | 
|  | 1240 |  | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1241 | /* Implement the continuations for the delays above */ | 
|  | 1242 | static void hub_init_func2(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_INIT2); | 
|  | 1247 | } | 
|  | 1248 |  | 
|  | 1249 | static void hub_init_func3(struct work_struct *ws) | 
|  | 1250 | { | 
|  | 1251 | struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work); | 
|  | 1252 |  | 
|  | 1253 | hub_activate(hub, HUB_INIT3); | 
|  | 1254 | } | 
|  | 1255 |  | 
| Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 1256 | enum hub_quiescing_type { | 
|  | 1257 | HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND | 
|  | 1258 | }; | 
|  | 1259 |  | 
|  | 1260 | static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type) | 
|  | 1261 | { | 
|  | 1262 | struct usb_device *hdev = hub->hdev; | 
|  | 1263 | int i; | 
|  | 1264 |  | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1265 | cancel_delayed_work_sync(&hub->init_work); | 
|  | 1266 |  | 
| Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 1267 | /* khubd and related activity won't re-trigger */ | 
|  | 1268 | hub->quiescing = 1; | 
|  | 1269 |  | 
|  | 1270 | if (type != HUB_SUSPEND) { | 
|  | 1271 | /* Disconnect all the children */ | 
|  | 1272 | for (i = 0; i < hdev->maxchild; ++i) { | 
| Lan Tianyu | ff823c79 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 1273 | if (hub->ports[i]->child) | 
|  | 1274 | usb_disconnect(&hub->ports[i]->child); | 
| Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 1275 | } | 
|  | 1276 | } | 
|  | 1277 |  | 
|  | 1278 | /* Stop khubd and related activity */ | 
|  | 1279 | usb_kill_urb(hub->urb); | 
|  | 1280 | if (hub->has_indicators) | 
|  | 1281 | cancel_delayed_work_sync(&hub->leds); | 
|  | 1282 | if (hub->tt.hub) | 
| Octavian Purdila | 036546b | 2012-10-23 11:33:12 +0300 | [diff] [blame] | 1283 | flush_work(&hub->tt.clear_work); | 
| Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 1284 | } | 
|  | 1285 |  | 
| Alan Stern | 600856c | 2014-05-20 18:08:07 -0700 | [diff] [blame] | 1286 | static void hub_pm_barrier_for_all_ports(struct usb_hub *hub) | 
|  | 1287 | { | 
|  | 1288 | int i; | 
|  | 1289 |  | 
|  | 1290 | for (i = 0; i < hub->hdev->maxchild; ++i) | 
|  | 1291 | pm_runtime_barrier(&hub->ports[i]->dev); | 
|  | 1292 | } | 
|  | 1293 |  | 
| Alan Stern | 3eb1491 | 2008-03-03 15:15:43 -0500 | [diff] [blame] | 1294 | /* caller has locked the hub device */ | 
|  | 1295 | static int hub_pre_reset(struct usb_interface *intf) | 
|  | 1296 | { | 
|  | 1297 | struct usb_hub *hub = usb_get_intfdata(intf); | 
|  | 1298 |  | 
| Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 1299 | hub_quiesce(hub, HUB_PRE_RESET); | 
| Alan Stern | 600856c | 2014-05-20 18:08:07 -0700 | [diff] [blame] | 1300 | hub->in_reset = 1; | 
|  | 1301 | hub_pm_barrier_for_all_ports(hub); | 
| Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 1302 | return 0; | 
| Alan Stern | 7d069b7 | 2005-11-18 12:06:34 -0500 | [diff] [blame] | 1303 | } | 
|  | 1304 |  | 
|  | 1305 | /* caller has locked the hub device */ | 
| Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 1306 | static int hub_post_reset(struct usb_interface *intf) | 
| Alan Stern | 7d069b7 | 2005-11-18 12:06:34 -0500 | [diff] [blame] | 1307 | { | 
| Alan Stern | 7de18d8 | 2006-06-01 13:37:24 -0400 | [diff] [blame] | 1308 | struct usb_hub *hub = usb_get_intfdata(intf); | 
|  | 1309 |  | 
| Alan Stern | 600856c | 2014-05-20 18:08:07 -0700 | [diff] [blame] | 1310 | hub->in_reset = 0; | 
|  | 1311 | hub_pm_barrier_for_all_ports(hub); | 
| Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1312 | hub_activate(hub, HUB_POST_RESET); | 
| Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 1313 | return 0; | 
| Alan Stern | 7d069b7 | 2005-11-18 12:06:34 -0500 | [diff] [blame] | 1314 | } | 
|  | 1315 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 | static int hub_configure(struct usb_hub *hub, | 
|  | 1317 | struct usb_endpoint_descriptor *endpoint) | 
|  | 1318 | { | 
| Sarah Sharp | b356b7c | 2009-09-04 10:53:24 -0700 | [diff] [blame] | 1319 | struct usb_hcd *hcd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | struct usb_device *hdev = hub->hdev; | 
|  | 1321 | struct device *hub_dev = hub->intfdev; | 
|  | 1322 | u16 hubstatus, hubchange; | 
| Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1323 | u16 wHubCharacteristics; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | unsigned int pipe; | 
| Lan Tianyu | fa2a956 | 2012-09-05 13:44:31 +0800 | [diff] [blame] | 1325 | int maxp, ret, i; | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1326 | char *message = "out of memory"; | 
| Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1327 | unsigned unit_load; | 
|  | 1328 | unsigned full_load; | 
| Dan Williams | d8521af | 2014-05-20 18:08:28 -0700 | [diff] [blame^] | 1329 | unsigned maxchild; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1330 |  | 
| Alan Stern | d697cdd | 2009-10-27 15:18:46 -0400 | [diff] [blame] | 1331 | hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1332 | if (!hub->buffer) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | ret = -ENOMEM; | 
|  | 1334 | goto fail; | 
|  | 1335 | } | 
|  | 1336 |  | 
|  | 1337 | hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL); | 
|  | 1338 | if (!hub->status) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | ret = -ENOMEM; | 
|  | 1340 | goto fail; | 
|  | 1341 | } | 
| Alan Stern | db90e7a | 2007-02-05 09:56:15 -0500 | [diff] [blame] | 1342 | mutex_init(&hub->status_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1343 |  | 
|  | 1344 | hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL); | 
|  | 1345 | if (!hub->descriptor) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | ret = -ENOMEM; | 
|  | 1347 | goto fail; | 
|  | 1348 | } | 
|  | 1349 |  | 
|  | 1350 | /* Request the entire hub descriptor. | 
|  | 1351 | * hub->descriptor can handle USB_MAXCHILDREN ports, | 
|  | 1352 | * but the hub can/will return fewer bytes here. | 
|  | 1353 | */ | 
| John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 1354 | ret = get_hub_descriptor(hdev, hub->descriptor); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | if (ret < 0) { | 
|  | 1356 | message = "can't read hub descriptor"; | 
|  | 1357 | goto fail; | 
|  | 1358 | } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) { | 
|  | 1359 | message = "hub has too many ports!"; | 
|  | 1360 | ret = -ENODEV; | 
|  | 1361 | goto fail; | 
| David Linares | 769d7368 | 2013-03-25 10:50:27 +0000 | [diff] [blame] | 1362 | } else if (hub->descriptor->bNbrPorts == 0) { | 
|  | 1363 | message = "hub doesn't have any ports!"; | 
|  | 1364 | ret = -ENODEV; | 
|  | 1365 | goto fail; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1366 | } | 
|  | 1367 |  | 
| Dan Williams | d8521af | 2014-05-20 18:08:28 -0700 | [diff] [blame^] | 1368 | maxchild = hub->descriptor->bNbrPorts; | 
|  | 1369 | dev_info(hub_dev, "%d port%s detected\n", maxchild, | 
|  | 1370 | (maxchild == 1) ? "" : "s"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1371 |  | 
| Dan Williams | d8521af | 2014-05-20 18:08:28 -0700 | [diff] [blame^] | 1372 | hub->ports = kzalloc(maxchild * sizeof(struct usb_port *), GFP_KERNEL); | 
| Lan Tianyu | ff823c79 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 1373 | if (!hub->ports) { | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1374 | ret = -ENOMEM; | 
|  | 1375 | goto fail; | 
|  | 1376 | } | 
|  | 1377 |  | 
| Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1378 | wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics); | 
| Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1379 | if (hub_is_superspeed(hdev)) { | 
|  | 1380 | unit_load = 150; | 
|  | 1381 | full_load = 900; | 
|  | 1382 | } else { | 
|  | 1383 | unit_load = 100; | 
|  | 1384 | full_load = 500; | 
|  | 1385 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 |  | 
| John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 1387 | /* FIXME for USB 3.0, skip for now */ | 
|  | 1388 | if ((wHubCharacteristics & HUB_CHAR_COMPOUND) && | 
|  | 1389 | !(hub_is_superspeed(hdev))) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1390 | int	i; | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 1391 | char	portstr[USB_MAXCHILDREN + 1]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 |  | 
| Dan Williams | d8521af | 2014-05-20 18:08:28 -0700 | [diff] [blame^] | 1393 | for (i = 0; i < maxchild; i++) | 
| John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 1394 | portstr[i] = hub->descriptor->u.hs.DeviceRemovable | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1395 | [((i + 1) / 8)] & (1 << ((i + 1) % 8)) | 
|  | 1396 | ? 'F' : 'R'; | 
| Dan Williams | d8521af | 2014-05-20 18:08:28 -0700 | [diff] [blame^] | 1397 | portstr[maxchild] = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr); | 
|  | 1399 | } else | 
|  | 1400 | dev_dbg(hub_dev, "standalone hub\n"); | 
|  | 1401 |  | 
| Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1402 | switch (wHubCharacteristics & HUB_CHAR_LPSM) { | 
| Aman Deep | 7bf0118 | 2011-12-08 12:05:22 +0530 | [diff] [blame] | 1403 | case HUB_CHAR_COMMON_LPSM: | 
|  | 1404 | dev_dbg(hub_dev, "ganged power switching\n"); | 
|  | 1405 | break; | 
|  | 1406 | case HUB_CHAR_INDV_PORT_LPSM: | 
|  | 1407 | dev_dbg(hub_dev, "individual port power switching\n"); | 
|  | 1408 | break; | 
|  | 1409 | case HUB_CHAR_NO_LPSM: | 
|  | 1410 | case HUB_CHAR_LPSM: | 
|  | 1411 | dev_dbg(hub_dev, "no power switching (usb 1.0)\n"); | 
|  | 1412 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1413 | } | 
|  | 1414 |  | 
| Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1415 | switch (wHubCharacteristics & HUB_CHAR_OCPM) { | 
| Aman Deep | 7bf0118 | 2011-12-08 12:05:22 +0530 | [diff] [blame] | 1416 | case HUB_CHAR_COMMON_OCPM: | 
|  | 1417 | dev_dbg(hub_dev, "global over-current protection\n"); | 
|  | 1418 | break; | 
|  | 1419 | case HUB_CHAR_INDV_PORT_OCPM: | 
|  | 1420 | dev_dbg(hub_dev, "individual port over-current protection\n"); | 
|  | 1421 | break; | 
|  | 1422 | case HUB_CHAR_NO_OCPM: | 
|  | 1423 | case HUB_CHAR_OCPM: | 
|  | 1424 | dev_dbg(hub_dev, "no over-current protection\n"); | 
|  | 1425 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | } | 
|  | 1427 |  | 
|  | 1428 | spin_lock_init (&hub->tt.lock); | 
|  | 1429 | INIT_LIST_HEAD (&hub->tt.clear_list); | 
| Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 1430 | INIT_WORK(&hub->tt.clear_work, hub_tt_work); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1431 | switch (hdev->descriptor.bDeviceProtocol) { | 
| Aman Deep | 7bf0118 | 2011-12-08 12:05:22 +0530 | [diff] [blame] | 1432 | case USB_HUB_PR_FS: | 
|  | 1433 | break; | 
|  | 1434 | case USB_HUB_PR_HS_SINGLE_TT: | 
|  | 1435 | dev_dbg(hub_dev, "Single TT\n"); | 
|  | 1436 | hub->tt.hub = hdev; | 
|  | 1437 | break; | 
|  | 1438 | case USB_HUB_PR_HS_MULTI_TT: | 
|  | 1439 | ret = usb_set_interface(hdev, 0, 1); | 
|  | 1440 | if (ret == 0) { | 
|  | 1441 | dev_dbg(hub_dev, "TT per port\n"); | 
|  | 1442 | hub->tt.multi = 1; | 
|  | 1443 | } else | 
|  | 1444 | dev_err(hub_dev, "Using single TT (err %d)\n", | 
|  | 1445 | ret); | 
|  | 1446 | hub->tt.hub = hdev; | 
|  | 1447 | break; | 
|  | 1448 | case USB_HUB_PR_SS: | 
|  | 1449 | /* USB 3.0 hubs don't have a TT */ | 
|  | 1450 | break; | 
|  | 1451 | default: | 
|  | 1452 | dev_dbg(hub_dev, "Unrecognized hub protocol %d\n", | 
|  | 1453 | hdev->descriptor.bDeviceProtocol); | 
|  | 1454 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1455 | } | 
|  | 1456 |  | 
| david-b@pacbell.net | e09711a | 2005-08-13 18:41:04 -0700 | [diff] [blame] | 1457 | /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */ | 
| Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1458 | switch (wHubCharacteristics & HUB_CHAR_TTTT) { | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 1459 | case HUB_TTTT_8_BITS: | 
|  | 1460 | if (hdev->descriptor.bDeviceProtocol != 0) { | 
|  | 1461 | hub->tt.think_time = 666; | 
| david-b@pacbell.net | e09711a | 2005-08-13 18:41:04 -0700 | [diff] [blame] | 1462 | dev_dbg(hub_dev, "TT requires at most %d " | 
|  | 1463 | "FS bit times (%d ns)\n", | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 1464 | 8, hub->tt.think_time); | 
|  | 1465 | } | 
|  | 1466 | break; | 
|  | 1467 | case HUB_TTTT_16_BITS: | 
|  | 1468 | hub->tt.think_time = 666 * 2; | 
|  | 1469 | dev_dbg(hub_dev, "TT requires at most %d " | 
|  | 1470 | "FS bit times (%d ns)\n", | 
|  | 1471 | 16, hub->tt.think_time); | 
|  | 1472 | break; | 
|  | 1473 | case HUB_TTTT_24_BITS: | 
|  | 1474 | hub->tt.think_time = 666 * 3; | 
|  | 1475 | dev_dbg(hub_dev, "TT requires at most %d " | 
|  | 1476 | "FS bit times (%d ns)\n", | 
|  | 1477 | 24, hub->tt.think_time); | 
|  | 1478 | break; | 
|  | 1479 | case HUB_TTTT_32_BITS: | 
|  | 1480 | hub->tt.think_time = 666 * 4; | 
|  | 1481 | dev_dbg(hub_dev, "TT requires at most %d " | 
|  | 1482 | "FS bit times (%d ns)\n", | 
|  | 1483 | 32, hub->tt.think_time); | 
|  | 1484 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1485 | } | 
|  | 1486 |  | 
|  | 1487 | /* probe() zeroes hub->indicator[] */ | 
| Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1488 | if (wHubCharacteristics & HUB_CHAR_PORTIND) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | hub->has_indicators = 1; | 
|  | 1490 | dev_dbg(hub_dev, "Port indicators are supported\n"); | 
|  | 1491 | } | 
|  | 1492 |  | 
|  | 1493 | dev_dbg(hub_dev, "power on to power good time: %dms\n", | 
|  | 1494 | hub->descriptor->bPwrOn2PwrGood * 2); | 
|  | 1495 |  | 
|  | 1496 | /* power budgeting mostly matters with bus-powered hubs, | 
|  | 1497 | * and battery-powered root hubs (may provide just 8 mA). | 
|  | 1498 | */ | 
|  | 1499 | ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus); | 
| Alan Stern | 15b7336 | 2013-07-30 15:35:40 -0400 | [diff] [blame] | 1500 | if (ret) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1501 | message = "can't get hub status"; | 
|  | 1502 | goto fail; | 
|  | 1503 | } | 
| Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1504 | hcd = bus_to_hcd(hdev->bus); | 
| Alan Stern | 7d35b92 | 2005-04-25 11:18:32 -0400 | [diff] [blame] | 1505 | if (hdev == hdev->bus->root_hub) { | 
| Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1506 | if (hcd->power_budget > 0) | 
|  | 1507 | hdev->bus_mA = hcd->power_budget; | 
|  | 1508 | else | 
| Dan Williams | d8521af | 2014-05-20 18:08:28 -0700 | [diff] [blame^] | 1509 | hdev->bus_mA = full_load * maxchild; | 
| Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1510 | if (hdev->bus_mA >= full_load) | 
|  | 1511 | hub->mA_per_port = full_load; | 
| Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 1512 | else { | 
|  | 1513 | hub->mA_per_port = hdev->bus_mA; | 
|  | 1514 | hub->limited_power = 1; | 
|  | 1515 | } | 
| Alan Stern | 7d35b92 | 2005-04-25 11:18:32 -0400 | [diff] [blame] | 1516 | } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) { | 
| Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1517 | int remaining = hdev->bus_mA - | 
|  | 1518 | hub->descriptor->bHubContrCurrent; | 
|  | 1519 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1520 | dev_dbg(hub_dev, "hub controller current requirement: %dmA\n", | 
|  | 1521 | hub->descriptor->bHubContrCurrent); | 
| Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 1522 | hub->limited_power = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 |  | 
| Dan Williams | d8521af | 2014-05-20 18:08:28 -0700 | [diff] [blame^] | 1524 | if (remaining < maxchild * unit_load) | 
| Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1525 | dev_warn(hub_dev, | 
| Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 1526 | "insufficient power available " | 
|  | 1527 | "to use all downstream ports\n"); | 
| Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1528 | hub->mA_per_port = unit_load;	/* 7.2.1 */ | 
|  | 1529 |  | 
| Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 1530 | } else {	/* Self-powered external hub */ | 
|  | 1531 | /* FIXME: What about battery-powered external hubs that | 
|  | 1532 | * provide less current per port? */ | 
| Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1533 | hub->mA_per_port = full_load; | 
| Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 1534 | } | 
| Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 1535 | if (hub->mA_per_port < full_load) | 
| Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 1536 | dev_dbg(hub_dev, "%umA bus power budget for each child\n", | 
|  | 1537 | hub->mA_per_port); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1538 |  | 
| Sarah Sharp | b356b7c | 2009-09-04 10:53:24 -0700 | [diff] [blame] | 1539 | /* Update the HCD's internal representation of this hub before khubd | 
|  | 1540 | * starts getting port status changes for devices under the hub. | 
|  | 1541 | */ | 
| Sarah Sharp | b356b7c | 2009-09-04 10:53:24 -0700 | [diff] [blame] | 1542 | if (hcd->driver->update_hub_device) { | 
|  | 1543 | ret = hcd->driver->update_hub_device(hcd, hdev, | 
|  | 1544 | &hub->tt, GFP_KERNEL); | 
|  | 1545 | if (ret < 0) { | 
|  | 1546 | message = "can't update HCD hub info"; | 
|  | 1547 | goto fail; | 
|  | 1548 | } | 
|  | 1549 | } | 
|  | 1550 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1551 | ret = hub_hub_status(hub, &hubstatus, &hubchange); | 
|  | 1552 | if (ret < 0) { | 
|  | 1553 | message = "can't get hub status"; | 
|  | 1554 | goto fail; | 
|  | 1555 | } | 
|  | 1556 |  | 
|  | 1557 | /* local power status reports aren't always correct */ | 
|  | 1558 | if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER) | 
|  | 1559 | dev_dbg(hub_dev, "local power source is %s\n", | 
|  | 1560 | (hubstatus & HUB_STATUS_LOCAL_POWER) | 
|  | 1561 | ? "lost (inactive)" : "good"); | 
|  | 1562 |  | 
| Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1563 | if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1564 | dev_dbg(hub_dev, "%sover-current condition exists\n", | 
|  | 1565 | (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no "); | 
|  | 1566 |  | 
| inaky@linux.intel.com | 88fafff | 2006-10-11 20:05:59 -0700 | [diff] [blame] | 1567 | /* set up the interrupt endpoint | 
|  | 1568 | * We use the EP's maxpacket size instead of (PORTS+1+7)/8 | 
|  | 1569 | * bytes as USB2.0[11.12.3] says because some hubs are known | 
|  | 1570 | * to send more data (and thus cause overflow). For root hubs, | 
|  | 1571 | * maxpktsize is defined in hcd.c's fake endpoint descriptors | 
|  | 1572 | * to be big enough for at least USB_MAXCHILDREN ports. */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1573 | pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress); | 
|  | 1574 | maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe)); | 
|  | 1575 |  | 
|  | 1576 | if (maxp > sizeof(*hub->buffer)) | 
|  | 1577 | maxp = sizeof(*hub->buffer); | 
|  | 1578 |  | 
|  | 1579 | hub->urb = usb_alloc_urb(0, GFP_KERNEL); | 
|  | 1580 | if (!hub->urb) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1581 | ret = -ENOMEM; | 
|  | 1582 | goto fail; | 
|  | 1583 | } | 
|  | 1584 |  | 
|  | 1585 | usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq, | 
|  | 1586 | hub, endpoint->bInterval); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 |  | 
|  | 1588 | /* maybe cycle the hub leds */ | 
|  | 1589 | if (hub->has_indicators && blinkenlights) | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 1590 | hub->indicator[0] = INDICATOR_CYCLE; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 |  | 
| Dan Williams | d8521af | 2014-05-20 18:08:28 -0700 | [diff] [blame^] | 1592 | mutex_lock(&usb_port_peer_mutex); | 
|  | 1593 | for (i = 0; i < maxchild; i++) { | 
| Krzysztof Mazur | e58547e | 2013-08-22 14:49:39 +0200 | [diff] [blame] | 1594 | ret = usb_hub_create_port_device(hub, i + 1); | 
|  | 1595 | if (ret < 0) { | 
| Lan Tianyu | fa2a956 | 2012-09-05 13:44:31 +0800 | [diff] [blame] | 1596 | dev_err(hub->intfdev, | 
|  | 1597 | "couldn't create port%d device.\n", i + 1); | 
| Dan Williams | d8521af | 2014-05-20 18:08:28 -0700 | [diff] [blame^] | 1598 | break; | 
| Krzysztof Mazur | e58547e | 2013-08-22 14:49:39 +0200 | [diff] [blame] | 1599 | } | 
|  | 1600 | } | 
| Dan Williams | d8521af | 2014-05-20 18:08:28 -0700 | [diff] [blame^] | 1601 | hdev->maxchild = i; | 
|  | 1602 | mutex_unlock(&usb_port_peer_mutex); | 
|  | 1603 | if (ret < 0) | 
|  | 1604 | goto fail; | 
| Lan Tianyu | fa2a956 | 2012-09-05 13:44:31 +0800 | [diff] [blame] | 1605 |  | 
| Lan Tianyu | d2123fd | 2013-01-21 22:18:00 +0800 | [diff] [blame] | 1606 | usb_hub_adjust_deviceremovable(hdev, hub->descriptor); | 
|  | 1607 |  | 
| Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1608 | hub_activate(hub, HUB_INIT); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1609 | return 0; | 
|  | 1610 |  | 
|  | 1611 | fail: | 
|  | 1612 | dev_err (hub_dev, "config failed, %s (err %d)\n", | 
|  | 1613 | message, ret); | 
|  | 1614 | /* hub_disconnect() frees urb and descriptor */ | 
|  | 1615 | return ret; | 
|  | 1616 | } | 
|  | 1617 |  | 
| Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1618 | static void hub_release(struct kref *kref) | 
|  | 1619 | { | 
|  | 1620 | struct usb_hub *hub = container_of(kref, struct usb_hub, kref); | 
|  | 1621 |  | 
|  | 1622 | usb_put_intf(to_usb_interface(hub->intfdev)); | 
|  | 1623 | kfree(hub); | 
|  | 1624 | } | 
|  | 1625 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | static unsigned highspeed_hubs; | 
|  | 1627 |  | 
|  | 1628 | static void hub_disconnect(struct usb_interface *intf) | 
|  | 1629 | { | 
| Huajun Li | 8816230 | 2012-03-12 21:00:19 +0800 | [diff] [blame] | 1630 | struct usb_hub *hub = usb_get_intfdata(intf); | 
| Greg Kroah-Hartman | fa28618 | 2012-05-14 09:20:37 -0700 | [diff] [blame] | 1631 | struct usb_device *hdev = interface_to_usbdev(intf); | 
| Alan Stern | 543d778 | 2014-01-07 10:43:02 -0500 | [diff] [blame] | 1632 | int port1; | 
| Lan Tianyu | fa2a956 | 2012-09-05 13:44:31 +0800 | [diff] [blame] | 1633 |  | 
| Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1634 | /* Take the hub off the event list and don't let it be added again */ | 
|  | 1635 | spin_lock_irq(&hub_event_lock); | 
| Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 1636 | if (!list_empty(&hub->event_list)) { | 
|  | 1637 | list_del_init(&hub->event_list); | 
|  | 1638 | usb_autopm_put_interface_no_suspend(intf); | 
|  | 1639 | } | 
| Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1640 | hub->disconnected = 1; | 
|  | 1641 | spin_unlock_irq(&hub_event_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 |  | 
| Alan Stern | 7de18d8 | 2006-06-01 13:37:24 -0400 | [diff] [blame] | 1643 | /* Disconnect all children and quiesce the hub */ | 
|  | 1644 | hub->error = 0; | 
| Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 1645 | hub_quiesce(hub, HUB_DISCONNECT); | 
| Alan Stern | 7de18d8 | 2006-06-01 13:37:24 -0400 | [diff] [blame] | 1646 |  | 
| Dan Williams | d8521af | 2014-05-20 18:08:28 -0700 | [diff] [blame^] | 1647 | mutex_lock(&usb_port_peer_mutex); | 
|  | 1648 |  | 
| Alan Stern | 543d778 | 2014-01-07 10:43:02 -0500 | [diff] [blame] | 1649 | /* Avoid races with recursively_mark_NOTATTACHED() */ | 
|  | 1650 | spin_lock_irq(&device_state_lock); | 
|  | 1651 | port1 = hdev->maxchild; | 
|  | 1652 | hdev->maxchild = 0; | 
|  | 1653 | usb_set_intfdata(intf, NULL); | 
|  | 1654 | spin_unlock_irq(&device_state_lock); | 
| Alexander Shishkin | 1f2235b | 2012-09-12 14:48:31 +0300 | [diff] [blame] | 1655 |  | 
| Alan Stern | 543d778 | 2014-01-07 10:43:02 -0500 | [diff] [blame] | 1656 | for (; port1 > 0; --port1) | 
|  | 1657 | usb_hub_remove_port_device(hub, port1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1658 |  | 
| Dan Williams | d8521af | 2014-05-20 18:08:28 -0700 | [diff] [blame^] | 1659 | mutex_unlock(&usb_port_peer_mutex); | 
|  | 1660 |  | 
| Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1661 | if (hub->hdev->speed == USB_SPEED_HIGH) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | highspeed_hubs--; | 
|  | 1663 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1664 | usb_free_urb(hub->urb); | 
| Lan Tianyu | fa2a956 | 2012-09-05 13:44:31 +0800 | [diff] [blame] | 1665 | kfree(hub->ports); | 
| Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1666 | kfree(hub->descriptor); | 
| Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1667 | kfree(hub->status); | 
| Alan Stern | d697cdd | 2009-10-27 15:18:46 -0400 | [diff] [blame] | 1668 | kfree(hub->buffer); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1669 |  | 
| Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 1670 | pm_suspend_ignore_children(&intf->dev, false); | 
| Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1671 | kref_put(&hub->kref, hub_release); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1672 | } | 
|  | 1673 |  | 
|  | 1674 | static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id) | 
|  | 1675 | { | 
|  | 1676 | struct usb_host_interface *desc; | 
|  | 1677 | struct usb_endpoint_descriptor *endpoint; | 
|  | 1678 | struct usb_device *hdev; | 
|  | 1679 | struct usb_hub *hub; | 
|  | 1680 |  | 
|  | 1681 | desc = intf->cur_altsetting; | 
|  | 1682 | hdev = interface_to_usbdev(intf); | 
|  | 1683 |  | 
| Ming Lei | 596d789 | 2012-10-24 11:59:25 +0800 | [diff] [blame] | 1684 | /* | 
|  | 1685 | * Set default autosuspend delay as 0 to speedup bus suspend, | 
|  | 1686 | * based on the below considerations: | 
|  | 1687 | * | 
|  | 1688 | * - Unlike other drivers, the hub driver does not rely on the | 
|  | 1689 | *   autosuspend delay to provide enough time to handle a wakeup | 
|  | 1690 | *   event, and the submitted status URB is just to check future | 
|  | 1691 | *   change on hub downstream ports, so it is safe to do it. | 
|  | 1692 | * | 
|  | 1693 | * - The patch might cause one or more auto supend/resume for | 
|  | 1694 | *   below very rare devices when they are plugged into hub | 
|  | 1695 | *   first time: | 
|  | 1696 | * | 
|  | 1697 | *   	devices having trouble initializing, and disconnect | 
|  | 1698 | *   	themselves from the bus and then reconnect a second | 
|  | 1699 | *   	or so later | 
|  | 1700 | * | 
|  | 1701 | *   	devices just for downloading firmware, and disconnects | 
|  | 1702 | *   	themselves after completing it | 
|  | 1703 | * | 
|  | 1704 | *   For these quite rare devices, their drivers may change the | 
|  | 1705 | *   autosuspend delay of their parent hub in the probe() to one | 
|  | 1706 | *   appropriate value to avoid the subtle problem if someone | 
|  | 1707 | *   does care it. | 
|  | 1708 | * | 
|  | 1709 | * - The patch may cause one or more auto suspend/resume on | 
|  | 1710 | *   hub during running 'lsusb', but it is probably too | 
|  | 1711 | *   infrequent to worry about. | 
|  | 1712 | * | 
|  | 1713 | * - Change autosuspend delay of hub can avoid unnecessary auto | 
|  | 1714 | *   suspend timer for hub, also may decrease power consumption | 
|  | 1715 | *   of USB bus. | 
|  | 1716 | */ | 
|  | 1717 | pm_runtime_set_autosuspend_delay(&hdev->dev, 0); | 
|  | 1718 |  | 
| Sarah Sharp | 2839f5b | 2012-01-06 16:27:25 -0800 | [diff] [blame] | 1719 | /* Hubs have proper suspend/resume support. */ | 
|  | 1720 | usb_enable_autosuspend(hdev); | 
| Alan Stern | 088f7fe | 2010-01-08 12:56:54 -0500 | [diff] [blame] | 1721 |  | 
| Felipe Balbi | 38f3ad5 | 2008-06-12 10:49:47 +0300 | [diff] [blame] | 1722 | if (hdev->level == MAX_TOPO_LEVEL) { | 
| Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 1723 | dev_err(&intf->dev, | 
|  | 1724 | "Unsupported bus topology: hub nested too deep\n"); | 
| Felipe Balbi | 38f3ad5 | 2008-06-12 10:49:47 +0300 | [diff] [blame] | 1725 | return -E2BIG; | 
|  | 1726 | } | 
|  | 1727 |  | 
| David Brownell | 89ccbdc | 2006-04-02 10:18:09 -0800 | [diff] [blame] | 1728 | #ifdef	CONFIG_USB_OTG_BLACKLIST_HUB | 
|  | 1729 | if (hdev->parent) { | 
|  | 1730 | dev_warn(&intf->dev, "ignoring external hub\n"); | 
|  | 1731 | return -ENODEV; | 
|  | 1732 | } | 
|  | 1733 | #endif | 
|  | 1734 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | /* Some hubs have a subclass of 1, which AFAICT according to the */ | 
|  | 1736 | /*  specs is not defined, but it works */ | 
|  | 1737 | if ((desc->desc.bInterfaceSubClass != 0) && | 
|  | 1738 | (desc->desc.bInterfaceSubClass != 1)) { | 
|  | 1739 | descriptor_error: | 
|  | 1740 | dev_err (&intf->dev, "bad descriptor, ignoring hub\n"); | 
|  | 1741 | return -EIO; | 
|  | 1742 | } | 
|  | 1743 |  | 
|  | 1744 | /* Multiple endpoints? What kind of mutant ninja-hub is this? */ | 
|  | 1745 | if (desc->desc.bNumEndpoints != 1) | 
|  | 1746 | goto descriptor_error; | 
|  | 1747 |  | 
|  | 1748 | endpoint = &desc->endpoint[0].desc; | 
|  | 1749 |  | 
| Luiz Fernando N. Capitulino | fbf81c2 | 2006-09-27 11:58:53 -0700 | [diff] [blame] | 1750 | /* If it's not an interrupt in endpoint, we'd better punt! */ | 
|  | 1751 | if (!usb_endpoint_is_int_in(endpoint)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1752 | goto descriptor_error; | 
|  | 1753 |  | 
|  | 1754 | /* We found a hub */ | 
|  | 1755 | dev_info (&intf->dev, "USB hub found\n"); | 
|  | 1756 |  | 
| Alan Stern | 0a1ef3b | 2005-10-24 15:38:24 -0400 | [diff] [blame] | 1757 | hub = kzalloc(sizeof(*hub), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1758 | if (!hub) { | 
|  | 1759 | dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n"); | 
|  | 1760 | return -ENOMEM; | 
|  | 1761 | } | 
|  | 1762 |  | 
| Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1763 | kref_init(&hub->kref); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1764 | INIT_LIST_HEAD(&hub->event_list); | 
|  | 1765 | hub->intfdev = &intf->dev; | 
|  | 1766 | hub->hdev = hdev; | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1767 | INIT_DELAYED_WORK(&hub->leds, led_work); | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1768 | INIT_DELAYED_WORK(&hub->init_work, NULL); | 
| Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1769 | usb_get_intf(intf); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1770 |  | 
|  | 1771 | usb_set_intfdata (intf, hub); | 
| Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 1772 | intf->needs_remote_wakeup = 1; | 
| Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 1773 | pm_suspend_ignore_children(&intf->dev, true); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1774 |  | 
|  | 1775 | if (hdev->speed == USB_SPEED_HIGH) | 
|  | 1776 | highspeed_hubs++; | 
|  | 1777 |  | 
| Ming Lei | e6f30de | 2012-10-24 11:59:24 +0800 | [diff] [blame] | 1778 | if (id->driver_info & HUB_QUIRK_CHECK_PORT_AUTOSUSPEND) | 
|  | 1779 | hub->quirk_check_port_auto_suspend = 1; | 
|  | 1780 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1781 | if (hub_configure(hub, endpoint) >= 0) | 
|  | 1782 | return 0; | 
|  | 1783 |  | 
|  | 1784 | hub_disconnect (intf); | 
|  | 1785 | return -ENODEV; | 
|  | 1786 | } | 
|  | 1787 |  | 
|  | 1788 | static int | 
|  | 1789 | hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data) | 
|  | 1790 | { | 
|  | 1791 | struct usb_device *hdev = interface_to_usbdev (intf); | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1792 | struct usb_hub *hub = usb_hub_to_struct_hub(hdev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1793 |  | 
|  | 1794 | /* assert ifno == 0 (part of hub spec) */ | 
|  | 1795 | switch (code) { | 
|  | 1796 | case USBDEVFS_HUB_PORTINFO: { | 
|  | 1797 | struct usbdevfs_hub_portinfo *info = user_data; | 
|  | 1798 | int i; | 
|  | 1799 |  | 
|  | 1800 | spin_lock_irq(&device_state_lock); | 
|  | 1801 | if (hdev->devnum <= 0) | 
|  | 1802 | info->nports = 0; | 
|  | 1803 | else { | 
|  | 1804 | info->nports = hdev->maxchild; | 
|  | 1805 | for (i = 0; i < info->nports; i++) { | 
| Lan Tianyu | ff823c79 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 1806 | if (hub->ports[i]->child == NULL) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1807 | info->port[i] = 0; | 
|  | 1808 | else | 
|  | 1809 | info->port[i] = | 
| Lan Tianyu | ff823c79 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 1810 | hub->ports[i]->child->devnum; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | } | 
|  | 1812 | } | 
|  | 1813 | spin_unlock_irq(&device_state_lock); | 
|  | 1814 |  | 
|  | 1815 | return info->nports + 1; | 
|  | 1816 | } | 
|  | 1817 |  | 
|  | 1818 | default: | 
|  | 1819 | return -ENOSYS; | 
|  | 1820 | } | 
|  | 1821 | } | 
|  | 1822 |  | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1823 | /* | 
|  | 1824 | * Allow user programs to claim ports on a hub.  When a device is attached | 
|  | 1825 | * to one of these "claimed" ports, the program will "own" the device. | 
|  | 1826 | */ | 
|  | 1827 | static int find_port_owner(struct usb_device *hdev, unsigned port1, | 
| Valentina Manea | 9b6f0c4 | 2014-03-10 10:36:40 +0200 | [diff] [blame] | 1828 | struct usb_dev_state ***ppowner) | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1829 | { | 
| Mathias Nyman | 41341261 | 2013-06-18 17:28:48 +0300 | [diff] [blame] | 1830 | struct usb_hub *hub = usb_hub_to_struct_hub(hdev); | 
|  | 1831 |  | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1832 | if (hdev->state == USB_STATE_NOTATTACHED) | 
|  | 1833 | return -ENODEV; | 
|  | 1834 | if (port1 == 0 || port1 > hdev->maxchild) | 
|  | 1835 | return -EINVAL; | 
|  | 1836 |  | 
| Mathias Nyman | 41341261 | 2013-06-18 17:28:48 +0300 | [diff] [blame] | 1837 | /* Devices not managed by the hub driver | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1838 | * will always have maxchild equal to 0. | 
|  | 1839 | */ | 
| Mathias Nyman | 41341261 | 2013-06-18 17:28:48 +0300 | [diff] [blame] | 1840 | *ppowner = &(hub->ports[port1 - 1]->port_owner); | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1841 | return 0; | 
|  | 1842 | } | 
|  | 1843 |  | 
|  | 1844 | /* In the following three functions, the caller must hold hdev's lock */ | 
| Lan Tianyu | 336c5c3 | 2012-07-06 14:13:52 +0800 | [diff] [blame] | 1845 | int usb_hub_claim_port(struct usb_device *hdev, unsigned port1, | 
| Valentina Manea | 9b6f0c4 | 2014-03-10 10:36:40 +0200 | [diff] [blame] | 1846 | struct usb_dev_state *owner) | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1847 | { | 
|  | 1848 | int rc; | 
| Valentina Manea | 9b6f0c4 | 2014-03-10 10:36:40 +0200 | [diff] [blame] | 1849 | struct usb_dev_state **powner; | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1850 |  | 
|  | 1851 | rc = find_port_owner(hdev, port1, &powner); | 
|  | 1852 | if (rc) | 
|  | 1853 | return rc; | 
|  | 1854 | if (*powner) | 
|  | 1855 | return -EBUSY; | 
|  | 1856 | *powner = owner; | 
|  | 1857 | return rc; | 
|  | 1858 | } | 
| Valentina Manea | 6080cd0 | 2014-03-08 14:53:34 +0200 | [diff] [blame] | 1859 | EXPORT_SYMBOL_GPL(usb_hub_claim_port); | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1860 |  | 
| Lan Tianyu | 336c5c3 | 2012-07-06 14:13:52 +0800 | [diff] [blame] | 1861 | int usb_hub_release_port(struct usb_device *hdev, unsigned port1, | 
| Valentina Manea | 9b6f0c4 | 2014-03-10 10:36:40 +0200 | [diff] [blame] | 1862 | struct usb_dev_state *owner) | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1863 | { | 
|  | 1864 | int rc; | 
| Valentina Manea | 9b6f0c4 | 2014-03-10 10:36:40 +0200 | [diff] [blame] | 1865 | struct usb_dev_state **powner; | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1866 |  | 
|  | 1867 | rc = find_port_owner(hdev, port1, &powner); | 
|  | 1868 | if (rc) | 
|  | 1869 | return rc; | 
|  | 1870 | if (*powner != owner) | 
|  | 1871 | return -ENOENT; | 
|  | 1872 | *powner = NULL; | 
|  | 1873 | return rc; | 
|  | 1874 | } | 
| Valentina Manea | 6080cd0 | 2014-03-08 14:53:34 +0200 | [diff] [blame] | 1875 | EXPORT_SYMBOL_GPL(usb_hub_release_port); | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1876 |  | 
| Valentina Manea | 9b6f0c4 | 2014-03-10 10:36:40 +0200 | [diff] [blame] | 1877 | 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] | 1878 | { | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1879 | struct usb_hub *hub = usb_hub_to_struct_hub(hdev); | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1880 | int n; | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1881 |  | 
| Lan Tianyu | fa2a956 | 2012-09-05 13:44:31 +0800 | [diff] [blame] | 1882 | for (n = 0; n < hdev->maxchild; n++) { | 
|  | 1883 | if (hub->ports[n]->port_owner == owner) | 
|  | 1884 | hub->ports[n]->port_owner = NULL; | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1885 | } | 
| Lan Tianyu | fa2a956 | 2012-09-05 13:44:31 +0800 | [diff] [blame] | 1886 |  | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1887 | } | 
|  | 1888 |  | 
|  | 1889 | /* The caller must hold udev's lock */ | 
|  | 1890 | bool usb_device_is_owned(struct usb_device *udev) | 
|  | 1891 | { | 
|  | 1892 | struct usb_hub *hub; | 
|  | 1893 |  | 
|  | 1894 | if (udev->state == USB_STATE_NOTATTACHED || !udev->parent) | 
|  | 1895 | return false; | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1896 | hub = usb_hub_to_struct_hub(udev->parent); | 
| Lan Tianyu | fa2a956 | 2012-09-05 13:44:31 +0800 | [diff] [blame] | 1897 | return !!hub->ports[udev->portnum - 1]->port_owner; | 
| Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1898 | } | 
|  | 1899 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | static void recursively_mark_NOTATTACHED(struct usb_device *udev) | 
|  | 1901 | { | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 1902 | struct usb_hub *hub = usb_hub_to_struct_hub(udev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1903 | int i; | 
|  | 1904 |  | 
|  | 1905 | for (i = 0; i < udev->maxchild; ++i) { | 
| Lan Tianyu | ff823c79 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 1906 | if (hub->ports[i]->child) | 
|  | 1907 | recursively_mark_NOTATTACHED(hub->ports[i]->child); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | } | 
| Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 1909 | if (udev->state == USB_STATE_SUSPENDED) | 
| Sarah Sharp | 1512300 | 2007-12-21 16:54:15 -0800 | [diff] [blame] | 1910 | udev->active_duration -= jiffies; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1911 | udev->state = USB_STATE_NOTATTACHED; | 
|  | 1912 | } | 
|  | 1913 |  | 
|  | 1914 | /** | 
|  | 1915 | * usb_set_device_state - change a device's current state (usbcore, hcds) | 
|  | 1916 | * @udev: pointer to device whose state should be changed | 
|  | 1917 | * @new_state: new state value to be stored | 
|  | 1918 | * | 
|  | 1919 | * udev->state is _not_ fully protected by the device lock.  Although | 
|  | 1920 | * most transitions are made only while holding the lock, the state can | 
|  | 1921 | * can change to USB_STATE_NOTATTACHED at almost any time.  This | 
|  | 1922 | * is so that devices can be marked as disconnected as soon as possible, | 
|  | 1923 | * without having to wait for any semaphores to be released.  As a result, | 
|  | 1924 | * all changes to any device's state must be protected by the | 
|  | 1925 | * device_state_lock spinlock. | 
|  | 1926 | * | 
|  | 1927 | * Once a device has been added to the device tree, all changes to its state | 
|  | 1928 | * should be made using this routine.  The state should _not_ be set directly. | 
|  | 1929 | * | 
|  | 1930 | * If udev->state is already USB_STATE_NOTATTACHED then no change is made. | 
|  | 1931 | * Otherwise udev->state is set to new_state, and if new_state is | 
|  | 1932 | * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set | 
|  | 1933 | * to USB_STATE_NOTATTACHED. | 
|  | 1934 | */ | 
|  | 1935 | void usb_set_device_state(struct usb_device *udev, | 
|  | 1936 | enum usb_device_state new_state) | 
|  | 1937 | { | 
|  | 1938 | unsigned long flags; | 
| Rafael J. Wysocki | 4681b17 | 2011-02-08 23:25:48 +0100 | [diff] [blame] | 1939 | int wakeup = -1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1940 |  | 
|  | 1941 | spin_lock_irqsave(&device_state_lock, flags); | 
|  | 1942 | if (udev->state == USB_STATE_NOTATTACHED) | 
|  | 1943 | ;	/* do nothing */ | 
| David Brownell | b94dc6b | 2005-09-12 19:39:39 -0700 | [diff] [blame] | 1944 | else if (new_state != USB_STATE_NOTATTACHED) { | 
| David Brownell | fb669cc | 2006-01-24 08:40:27 -0800 | [diff] [blame] | 1945 |  | 
|  | 1946 | /* root hub wakeup capabilities are managed out-of-band | 
|  | 1947 | * and may involve silicon errata ... ignore them here. | 
|  | 1948 | */ | 
|  | 1949 | if (udev->parent) { | 
| Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 1950 | if (udev->state == USB_STATE_SUSPENDED | 
|  | 1951 | || new_state == USB_STATE_SUSPENDED) | 
|  | 1952 | ;	/* No change to wakeup settings */ | 
|  | 1953 | else if (new_state == USB_STATE_CONFIGURED) | 
| Rafael J. Wysocki | 4681b17 | 2011-02-08 23:25:48 +0100 | [diff] [blame] | 1954 | wakeup = udev->actconfig->desc.bmAttributes | 
|  | 1955 | & USB_CONFIG_ATT_WAKEUP; | 
| Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 1956 | else | 
| Rafael J. Wysocki | 4681b17 | 2011-02-08 23:25:48 +0100 | [diff] [blame] | 1957 | wakeup = 0; | 
| David Brownell | fb669cc | 2006-01-24 08:40:27 -0800 | [diff] [blame] | 1958 | } | 
| Sarah Sharp | 1512300 | 2007-12-21 16:54:15 -0800 | [diff] [blame] | 1959 | if (udev->state == USB_STATE_SUSPENDED && | 
|  | 1960 | new_state != USB_STATE_SUSPENDED) | 
|  | 1961 | udev->active_duration -= jiffies; | 
|  | 1962 | else if (new_state == USB_STATE_SUSPENDED && | 
|  | 1963 | udev->state != USB_STATE_SUSPENDED) | 
|  | 1964 | udev->active_duration += jiffies; | 
| Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 1965 | udev->state = new_state; | 
| David Brownell | b94dc6b | 2005-09-12 19:39:39 -0700 | [diff] [blame] | 1966 | } else | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1967 | recursively_mark_NOTATTACHED(udev); | 
|  | 1968 | spin_unlock_irqrestore(&device_state_lock, flags); | 
| Rafael J. Wysocki | 4681b17 | 2011-02-08 23:25:48 +0100 | [diff] [blame] | 1969 | if (wakeup >= 0) | 
|  | 1970 | device_set_wakeup_capable(&udev->dev, wakeup); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1971 | } | 
| David Vrabel | 6da9c99 | 2009-02-18 14:43:47 +0000 | [diff] [blame] | 1972 | EXPORT_SYMBOL_GPL(usb_set_device_state); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1973 |  | 
| Inaky Perez-Gonzalez | 8af548d | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 1974 | /* | 
| Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 1975 | * Choose a device number. | 
|  | 1976 | * | 
|  | 1977 | * Device numbers are used as filenames in usbfs.  On USB-1.1 and | 
|  | 1978 | * USB-2.0 buses they are also used as device addresses, however on | 
|  | 1979 | * USB-3.0 buses the address is assigned by the controller hardware | 
|  | 1980 | * and it usually is not the same as the device number. | 
|  | 1981 | * | 
| Inaky Perez-Gonzalez | 8af548d | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 1982 | * WUSB devices are simple: they have no hubs behind, so the mapping | 
|  | 1983 | * device <-> virtual port number becomes 1:1. Why? to simplify the | 
|  | 1984 | * life of the device connection logic in | 
|  | 1985 | * drivers/usb/wusbcore/devconnect.c. When we do the initial secret | 
|  | 1986 | * handshake we need to assign a temporary address in the unauthorized | 
|  | 1987 | * space. For simplicity we use the first virtual port number found to | 
|  | 1988 | * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()] | 
|  | 1989 | * and that becomes it's address [X < 128] or its unauthorized address | 
|  | 1990 | * [X | 0x80]. | 
|  | 1991 | * | 
|  | 1992 | * We add 1 as an offset to the one-based USB-stack port number | 
|  | 1993 | * (zero-based wusb virtual port index) for two reasons: (a) dev addr | 
|  | 1994 | * 0 is reserved by USB for default address; (b) Linux's USB stack | 
|  | 1995 | * uses always #1 for the root hub of the controller. So USB stack's | 
|  | 1996 | * port #1, which is wusb virtual-port #0 has address #2. | 
| Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 1997 | * | 
|  | 1998 | * Devices connected under xHCI are not as simple.  The host controller | 
|  | 1999 | * supports virtualization, so the hardware assigns device addresses and | 
|  | 2000 | * the HCD must setup data structures before issuing a set address | 
|  | 2001 | * command to the hardware. | 
| Inaky Perez-Gonzalez | 8af548d | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 2002 | */ | 
| Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 2003 | static void choose_devnum(struct usb_device *udev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2004 | { | 
|  | 2005 | int		devnum; | 
|  | 2006 | struct usb_bus	*bus = udev->bus; | 
|  | 2007 |  | 
|  | 2008 | /* If khubd ever becomes multithreaded, this will need a lock */ | 
| Inaky Perez-Gonzalez | 8af548d | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 2009 | if (udev->wusb) { | 
|  | 2010 | devnum = udev->portnum + 1; | 
|  | 2011 | BUG_ON(test_bit(devnum, bus->devmap.devicemap)); | 
|  | 2012 | } else { | 
|  | 2013 | /* Try to allocate the next devnum beginning at | 
|  | 2014 | * bus->devnum_next. */ | 
|  | 2015 | devnum = find_next_zero_bit(bus->devmap.devicemap, 128, | 
|  | 2016 | bus->devnum_next); | 
|  | 2017 | if (devnum >= 128) | 
|  | 2018 | devnum = find_next_zero_bit(bus->devmap.devicemap, | 
|  | 2019 | 128, 1); | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 2020 | bus->devnum_next = (devnum >= 127 ? 1 : devnum + 1); | 
| Inaky Perez-Gonzalez | 8af548d | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 2021 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2022 | if (devnum < 128) { | 
|  | 2023 | set_bit(devnum, bus->devmap.devicemap); | 
|  | 2024 | udev->devnum = devnum; | 
|  | 2025 | } | 
|  | 2026 | } | 
|  | 2027 |  | 
| Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 2028 | static void release_devnum(struct usb_device *udev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2029 | { | 
|  | 2030 | if (udev->devnum > 0) { | 
|  | 2031 | clear_bit(udev->devnum, udev->bus->devmap.devicemap); | 
|  | 2032 | udev->devnum = -1; | 
|  | 2033 | } | 
|  | 2034 | } | 
|  | 2035 |  | 
| Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 2036 | static void update_devnum(struct usb_device *udev, int devnum) | 
| David Vrabel | 4953d14 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 2037 | { | 
|  | 2038 | /* The address for a WUSB device is managed by wusbcore. */ | 
|  | 2039 | if (!udev->wusb) | 
|  | 2040 | udev->devnum = devnum; | 
|  | 2041 | } | 
|  | 2042 |  | 
| Herbert Xu | f7410ce | 2010-01-10 20:15:03 +1100 | [diff] [blame] | 2043 | static void hub_free_dev(struct usb_device *udev) | 
|  | 2044 | { | 
|  | 2045 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); | 
|  | 2046 |  | 
|  | 2047 | /* Root hubs aren't real devices, so don't free HCD resources */ | 
|  | 2048 | if (hcd->driver->free_dev && udev->parent) | 
|  | 2049 | hcd->driver->free_dev(hcd, udev); | 
|  | 2050 | } | 
|  | 2051 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2052 | /** | 
|  | 2053 | * usb_disconnect - disconnect a device (usbcore-internal) | 
|  | 2054 | * @pdev: pointer to device being disconnected | 
|  | 2055 | * Context: !in_interrupt () | 
|  | 2056 | * | 
|  | 2057 | * Something got disconnected. Get rid of it and all of its children. | 
|  | 2058 | * | 
|  | 2059 | * 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] | 2060 | * If *pdev is a root hub then the caller must hold the usb_bus_list_lock, | 
|  | 2061 | * 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] | 2062 | * | 
|  | 2063 | * Only hub drivers (including virtual root hub drivers for host | 
|  | 2064 | * controllers) should ever call this. | 
|  | 2065 | * | 
|  | 2066 | * This call is synchronous, and may not be used in an interrupt context. | 
|  | 2067 | */ | 
|  | 2068 | void usb_disconnect(struct usb_device **pdev) | 
|  | 2069 | { | 
|  | 2070 | struct usb_device	*udev = *pdev; | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2071 | struct usb_hub		*hub = usb_hub_to_struct_hub(udev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2072 | int			i; | 
|  | 2073 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2074 | /* mark the device as inactive, so any further urb submissions for | 
|  | 2075 | * this device (and any of its children) will fail immediately. | 
| Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2076 | * this quiesces everything except pending urbs. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2077 | */ | 
|  | 2078 | usb_set_device_state(udev, USB_STATE_NOTATTACHED); | 
| Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 2079 | dev_info(&udev->dev, "USB disconnect, device number %d\n", | 
|  | 2080 | udev->devnum); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2081 |  | 
| Alan Stern | 9ad3d6c | 2005-11-17 17:10:32 -0500 | [diff] [blame] | 2082 | usb_lock_device(udev); | 
|  | 2083 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2084 | /* Free up all the children before we remove this device */ | 
| Huajun Li | 8816230 | 2012-03-12 21:00:19 +0800 | [diff] [blame] | 2085 | for (i = 0; i < udev->maxchild; i++) { | 
| Lan Tianyu | ff823c79 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 2086 | if (hub->ports[i]->child) | 
|  | 2087 | usb_disconnect(&hub->ports[i]->child); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2088 | } | 
|  | 2089 |  | 
|  | 2090 | /* deallocate hcd/hardware state ... nuking all pending urbs and | 
|  | 2091 | * cleaning up all state associated with the current configuration | 
|  | 2092 | * so that the hardware is now fully quiesced. | 
|  | 2093 | */ | 
| Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 2094 | dev_dbg (&udev->dev, "unregistering device\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2095 | usb_disable_device(udev, 0); | 
| Alan Stern | cde217a | 2008-10-21 15:28:46 -0400 | [diff] [blame] | 2096 | usb_hcd_synchronize_unlinks(udev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2097 |  | 
| Lan Tianyu | fde2638 | 2013-01-20 01:53:33 +0800 | [diff] [blame] | 2098 | if (udev->parent) { | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2099 | struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent); | 
|  | 2100 | struct usb_port	*port_dev = hub->ports[udev->portnum - 1]; | 
| Lan Tianyu | fde2638 | 2013-01-20 01:53:33 +0800 | [diff] [blame] | 2101 |  | 
|  | 2102 | sysfs_remove_link(&udev->dev.kobj, "port"); | 
|  | 2103 | sysfs_remove_link(&port_dev->dev.kobj, "device"); | 
| Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 2104 |  | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2105 | if (!port_dev->did_runtime_put) | 
|  | 2106 | pm_runtime_put(&port_dev->dev); | 
|  | 2107 | else | 
|  | 2108 | port_dev->did_runtime_put = false; | 
| Lan Tianyu | fde2638 | 2013-01-20 01:53:33 +0800 | [diff] [blame] | 2109 | } | 
|  | 2110 |  | 
| Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 2111 | usb_remove_ep_devs(&udev->ep0); | 
| Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 2112 | usb_unlock_device(udev); | 
| Greg Kroah-Hartman | 3099e75 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 2113 |  | 
| Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 2114 | /* Unregister the device.  The device driver is responsible | 
| Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 2115 | * for de-configuring the device and invoking the remove-device | 
|  | 2116 | * notifier chain (used by usbfs and possibly others). | 
| Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 2117 | */ | 
|  | 2118 | device_del(&udev->dev); | 
|  | 2119 |  | 
|  | 2120 | /* Free the device number and delete the parent's children[] | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2121 | * (or root_hub) pointer. | 
|  | 2122 | */ | 
| Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 2123 | release_devnum(udev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2124 |  | 
|  | 2125 | /* Avoid races with recursively_mark_NOTATTACHED() */ | 
|  | 2126 | spin_lock_irq(&device_state_lock); | 
|  | 2127 | *pdev = NULL; | 
|  | 2128 | spin_unlock_irq(&device_state_lock); | 
|  | 2129 |  | 
| Herbert Xu | f7410ce | 2010-01-10 20:15:03 +1100 | [diff] [blame] | 2130 | hub_free_dev(udev); | 
|  | 2131 |  | 
| Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 2132 | put_device(&udev->dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2133 | } | 
|  | 2134 |  | 
| Greg Kroah-Hartman | f2a383e | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 2135 | #ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2136 | static void show_string(struct usb_device *udev, char *id, char *string) | 
|  | 2137 | { | 
|  | 2138 | if (!string) | 
|  | 2139 | return; | 
| Joe Perches | f2ec522 | 2012-10-28 01:05:51 -0700 | [diff] [blame] | 2140 | dev_info(&udev->dev, "%s: %s\n", id, string); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2141 | } | 
|  | 2142 |  | 
| Greg Kroah-Hartman | f2a383e | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 2143 | static void announce_device(struct usb_device *udev) | 
|  | 2144 | { | 
|  | 2145 | dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n", | 
|  | 2146 | le16_to_cpu(udev->descriptor.idVendor), | 
|  | 2147 | le16_to_cpu(udev->descriptor.idProduct)); | 
| Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 2148 | dev_info(&udev->dev, | 
|  | 2149 | "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n", | 
| Greg Kroah-Hartman | f2a383e | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 2150 | udev->descriptor.iManufacturer, | 
|  | 2151 | udev->descriptor.iProduct, | 
|  | 2152 | udev->descriptor.iSerialNumber); | 
|  | 2153 | show_string(udev, "Product", udev->product); | 
|  | 2154 | show_string(udev, "Manufacturer", udev->manufacturer); | 
|  | 2155 | show_string(udev, "SerialNumber", udev->serial); | 
|  | 2156 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2157 | #else | 
| Greg Kroah-Hartman | f2a383e | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 2158 | static inline void announce_device(struct usb_device *udev) { } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2159 | #endif | 
|  | 2160 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2161 | #ifdef	CONFIG_USB_OTG | 
|  | 2162 | #include "otg_whitelist.h" | 
|  | 2163 | #endif | 
|  | 2164 |  | 
| Oliver Neukum | 3ede760 | 2007-01-11 14:35:50 +0100 | [diff] [blame] | 2165 | /** | 
| Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 2166 | * usb_enumerate_device_otg - FIXME (usbcore-internal) | 
| Oliver Neukum | 3ede760 | 2007-01-11 14:35:50 +0100 | [diff] [blame] | 2167 | * @udev: newly addressed device (in ADDRESS state) | 
|  | 2168 | * | 
| Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 2169 | * Finish enumeration for On-The-Go devices | 
| Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 2170 | * | 
|  | 2171 | * Return: 0 if successful. A negative error code otherwise. | 
| Oliver Neukum | 3ede760 | 2007-01-11 14:35:50 +0100 | [diff] [blame] | 2172 | */ | 
| Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 2173 | static int usb_enumerate_device_otg(struct usb_device *udev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2174 | { | 
| Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2175 | int err = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2176 |  | 
|  | 2177 | #ifdef	CONFIG_USB_OTG | 
|  | 2178 | /* | 
|  | 2179 | * OTG-aware devices on OTG-capable root hubs may be able to use SRP, | 
|  | 2180 | * to wake us after we've powered off VBUS; and HNP, switching roles | 
|  | 2181 | * "host" to "peripheral".  The OTG descriptor helps figure this out. | 
|  | 2182 | */ | 
|  | 2183 | if (!udev->bus->is_b_host | 
|  | 2184 | && udev->config | 
|  | 2185 | && udev->parent == udev->bus->root_hub) { | 
| Felipe Balbi | 2eb5052 | 2009-12-04 15:47:43 +0200 | [diff] [blame] | 2186 | struct usb_otg_descriptor	*desc = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2187 | struct usb_bus			*bus = udev->bus; | 
|  | 2188 |  | 
|  | 2189 | /* descriptor may appear anywhere in config */ | 
|  | 2190 | if (__usb_get_extra_descriptor (udev->rawdescriptors[0], | 
|  | 2191 | le16_to_cpu(udev->config[0].desc.wTotalLength), | 
|  | 2192 | USB_DT_OTG, (void **) &desc) == 0) { | 
|  | 2193 | if (desc->bmAttributes & USB_OTG_HNP) { | 
| Alan Stern | 12c3da3 | 2005-11-23 12:09:52 -0500 | [diff] [blame] | 2194 | unsigned		port1 = udev->portnum; | 
| David Brownell | fc849b8 | 2006-09-18 16:53:26 -0700 | [diff] [blame] | 2195 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | dev_info(&udev->dev, | 
|  | 2197 | "Dual-Role OTG device on %sHNP port\n", | 
|  | 2198 | (port1 == bus->otg_port) | 
|  | 2199 | ? "" : "non-"); | 
|  | 2200 |  | 
|  | 2201 | /* enable HNP before suspend, it's simpler */ | 
|  | 2202 | if (port1 == bus->otg_port) | 
|  | 2203 | bus->b_hnp_enable = 1; | 
|  | 2204 | err = usb_control_msg(udev, | 
|  | 2205 | usb_sndctrlpipe(udev, 0), | 
|  | 2206 | USB_REQ_SET_FEATURE, 0, | 
|  | 2207 | bus->b_hnp_enable | 
|  | 2208 | ? USB_DEVICE_B_HNP_ENABLE | 
|  | 2209 | : USB_DEVICE_A_ALT_HNP_SUPPORT, | 
|  | 2210 | 0, NULL, 0, USB_CTRL_SET_TIMEOUT); | 
|  | 2211 | if (err < 0) { | 
|  | 2212 | /* OTG MESSAGE: report errors here, | 
|  | 2213 | * customize to match your product. | 
|  | 2214 | */ | 
|  | 2215 | dev_info(&udev->dev, | 
| Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 2216 | "can't set HNP mode: %d\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2217 | err); | 
|  | 2218 | bus->b_hnp_enable = 0; | 
|  | 2219 | } | 
|  | 2220 | } | 
|  | 2221 | } | 
|  | 2222 | } | 
|  | 2223 |  | 
|  | 2224 | if (!is_targeted(udev)) { | 
|  | 2225 |  | 
|  | 2226 | /* Maybe it can talk to us, though we can't talk to it. | 
|  | 2227 | * (Includes HNP test device.) | 
|  | 2228 | */ | 
|  | 2229 | if (udev->bus->b_hnp_enable || udev->bus->is_b_host) { | 
| David Brownell | 634a84f | 2009-01-15 13:51:28 -0800 | [diff] [blame] | 2230 | err = usb_port_suspend(udev, PMSG_SUSPEND); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2231 | if (err < 0) | 
|  | 2232 | dev_dbg(&udev->dev, "HNP fail, %d\n", err); | 
|  | 2233 | } | 
| Vikram Pandita | ffcdc18 | 2007-05-25 21:31:07 -0700 | [diff] [blame] | 2234 | err = -ENOTSUPP; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2235 | goto fail; | 
|  | 2236 | } | 
| Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2237 | fail: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2238 | #endif | 
| Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2239 | return err; | 
|  | 2240 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 |  | 
| Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2242 |  | 
|  | 2243 | /** | 
| Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 2244 | * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal) | 
| Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2245 | * @udev: newly addressed device (in ADDRESS state) | 
|  | 2246 | * | 
|  | 2247 | * This is only called by usb_new_device() and usb_authorize_device() | 
|  | 2248 | * and FIXME -- all comments that apply to them apply here wrt to | 
|  | 2249 | * environment. | 
|  | 2250 | * | 
|  | 2251 | * If the device is WUSB and not authorized, we don't attempt to read | 
|  | 2252 | * the string descriptors, as they will be errored out by the device | 
|  | 2253 | * until it has been authorized. | 
| Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 2254 | * | 
|  | 2255 | * Return: 0 if successful. A negative error code otherwise. | 
| Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2256 | */ | 
| Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 2257 | static int usb_enumerate_device(struct usb_device *udev) | 
| Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2258 | { | 
|  | 2259 | int err; | 
|  | 2260 |  | 
|  | 2261 | if (udev->config == NULL) { | 
|  | 2262 | err = usb_get_configuration(udev); | 
|  | 2263 | if (err < 0) { | 
| Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 2264 | if (err != -ENODEV) | 
|  | 2265 | dev_err(&udev->dev, "can't read configurations, error %d\n", | 
|  | 2266 | err); | 
| Laurent Pinchart | 80da2e0 | 2012-07-19 12:39:13 +0200 | [diff] [blame] | 2267 | return err; | 
| Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2268 | } | 
|  | 2269 | } | 
| Thomas Pugliese | 83e83ec | 2013-12-09 13:40:29 -0600 | [diff] [blame] | 2270 |  | 
|  | 2271 | /* read the standard strings and cache them if present */ | 
|  | 2272 | udev->product = usb_cache_string(udev, udev->descriptor.iProduct); | 
|  | 2273 | udev->manufacturer = usb_cache_string(udev, | 
|  | 2274 | udev->descriptor.iManufacturer); | 
|  | 2275 | udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber); | 
|  | 2276 |  | 
| Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 2277 | err = usb_enumerate_device_otg(udev); | 
| Laurent Pinchart | 80da2e0 | 2012-07-19 12:39:13 +0200 | [diff] [blame] | 2278 | if (err < 0) | 
|  | 2279 | return err; | 
|  | 2280 |  | 
|  | 2281 | usb_detect_interface_quirks(udev); | 
|  | 2282 |  | 
|  | 2283 | return 0; | 
| Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2284 | } | 
|  | 2285 |  | 
| Matthew Garrett | d35e70d | 2012-02-03 17:11:55 -0500 | [diff] [blame] | 2286 | static void set_usb_port_removable(struct usb_device *udev) | 
|  | 2287 | { | 
|  | 2288 | struct usb_device *hdev = udev->parent; | 
|  | 2289 | struct usb_hub *hub; | 
|  | 2290 | u8 port = udev->portnum; | 
|  | 2291 | u16 wHubCharacteristics; | 
|  | 2292 | bool removable = true; | 
|  | 2293 |  | 
|  | 2294 | if (!hdev) | 
|  | 2295 | return; | 
|  | 2296 |  | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2297 | hub = usb_hub_to_struct_hub(udev->parent); | 
| Matthew Garrett | d35e70d | 2012-02-03 17:11:55 -0500 | [diff] [blame] | 2298 |  | 
|  | 2299 | wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics); | 
|  | 2300 |  | 
|  | 2301 | if (!(wHubCharacteristics & HUB_CHAR_COMPOUND)) | 
|  | 2302 | return; | 
|  | 2303 |  | 
|  | 2304 | if (hub_is_superspeed(hdev)) { | 
| Lan Tianyu | ca3c153 | 2012-09-11 04:22:36 +0800 | [diff] [blame] | 2305 | if (le16_to_cpu(hub->descriptor->u.ss.DeviceRemovable) | 
|  | 2306 | & (1 << port)) | 
| Matthew Garrett | d35e70d | 2012-02-03 17:11:55 -0500 | [diff] [blame] | 2307 | removable = false; | 
|  | 2308 | } else { | 
|  | 2309 | if (hub->descriptor->u.hs.DeviceRemovable[port / 8] & (1 << (port % 8))) | 
|  | 2310 | removable = false; | 
|  | 2311 | } | 
|  | 2312 |  | 
|  | 2313 | if (removable) | 
|  | 2314 | udev->removable = USB_DEVICE_REMOVABLE; | 
|  | 2315 | else | 
|  | 2316 | udev->removable = USB_DEVICE_FIXED; | 
| Dan Williams | a4204ff | 2014-05-20 18:08:22 -0700 | [diff] [blame] | 2317 |  | 
|  | 2318 | /* | 
|  | 2319 | * Platform firmware may have populated an alternative value for | 
|  | 2320 | * removable.  If the parent port has a known connect_type use | 
|  | 2321 | * that instead. | 
|  | 2322 | */ | 
|  | 2323 | switch (hub->ports[udev->portnum - 1]->connect_type) { | 
|  | 2324 | case USB_PORT_CONNECT_TYPE_HOT_PLUG: | 
|  | 2325 | udev->removable = USB_DEVICE_REMOVABLE; | 
|  | 2326 | break; | 
|  | 2327 | case USB_PORT_CONNECT_TYPE_HARD_WIRED: | 
|  | 2328 | udev->removable = USB_DEVICE_FIXED; | 
|  | 2329 | break; | 
|  | 2330 | default: /* use what was set above */ | 
|  | 2331 | break; | 
|  | 2332 | } | 
| Matthew Garrett | d35e70d | 2012-02-03 17:11:55 -0500 | [diff] [blame] | 2333 | } | 
| Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2334 |  | 
|  | 2335 | /** | 
|  | 2336 | * usb_new_device - perform initial device setup (usbcore-internal) | 
|  | 2337 | * @udev: newly addressed device (in ADDRESS state) | 
|  | 2338 | * | 
| Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 2339 | * This is called with devices which have been detected but not fully | 
|  | 2340 | * enumerated.  The device descriptor is available, but not descriptors | 
| Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2341 | * for any device configuration.  The caller must have locked either | 
|  | 2342 | * the parent hub (if udev is a normal device) or else the | 
|  | 2343 | * usb_bus_list_lock (if udev is a root hub).  The parent's pointer to | 
|  | 2344 | * udev has already been installed, but udev is not yet visible through | 
|  | 2345 | * sysfs or other filesystem code. | 
|  | 2346 | * | 
| Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2347 | * This call is synchronous, and may not be used in an interrupt context. | 
|  | 2348 | * | 
|  | 2349 | * Only the hub driver or root-hub registrar should ever call this. | 
| Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 2350 | * | 
|  | 2351 | * Return: Whether the device is configured properly or not. Zero if the | 
|  | 2352 | * interface was registered with the driver core; else a negative errno | 
|  | 2353 | * value. | 
|  | 2354 | * | 
| Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2355 | */ | 
|  | 2356 | int usb_new_device(struct usb_device *udev) | 
|  | 2357 | { | 
|  | 2358 | int err; | 
|  | 2359 |  | 
| Dan Streetman | 1698540 | 2010-01-06 09:56:53 -0500 | [diff] [blame] | 2360 | if (udev->parent) { | 
| Dan Streetman | 1698540 | 2010-01-06 09:56:53 -0500 | [diff] [blame] | 2361 | /* Initialize non-root-hub device wakeup to disabled; | 
|  | 2362 | * device (un)configuration controls wakeup capable | 
|  | 2363 | * sysfs power/wakeup controls wakeup enabled/disabled | 
|  | 2364 | */ | 
|  | 2365 | device_init_wakeup(&udev->dev, 0); | 
| Dan Streetman | 1698540 | 2010-01-06 09:56:53 -0500 | [diff] [blame] | 2366 | } | 
|  | 2367 |  | 
| Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 2368 | /* Tell the runtime-PM framework the device is active */ | 
|  | 2369 | pm_runtime_set_active(&udev->dev); | 
| Alan Stern | c08512c | 2010-11-15 15:57:58 -0500 | [diff] [blame] | 2370 | pm_runtime_get_noresume(&udev->dev); | 
| Alan Stern | fcc4a01 | 2010-11-15 15:57:51 -0500 | [diff] [blame] | 2371 | pm_runtime_use_autosuspend(&udev->dev); | 
| Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 2372 | pm_runtime_enable(&udev->dev); | 
|  | 2373 |  | 
| Alan Stern | c08512c | 2010-11-15 15:57:58 -0500 | [diff] [blame] | 2374 | /* By default, forbid autosuspend for all devices.  It will be | 
|  | 2375 | * allowed for hubs during binding. | 
|  | 2376 | */ | 
|  | 2377 | usb_disable_autosuspend(udev); | 
|  | 2378 |  | 
| Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 2379 | err = usb_enumerate_device(udev);	/* Read descriptors */ | 
| Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2380 | if (err < 0) | 
|  | 2381 | goto fail; | 
| Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 2382 | dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n", | 
|  | 2383 | udev->devnum, udev->bus->busnum, | 
|  | 2384 | (((udev->bus->busnum-1) * 128) + (udev->devnum-1))); | 
| Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 2385 | /* export the usbdev device-node for libusb */ | 
|  | 2386 | udev->dev.devt = MKDEV(USB_DEVICE_MAJOR, | 
|  | 2387 | (((udev->bus->busnum-1) * 128) + (udev->devnum-1))); | 
|  | 2388 |  | 
| Alan Stern | 6cd1320 | 2008-11-13 15:08:30 -0500 | [diff] [blame] | 2389 | /* Tell the world! */ | 
|  | 2390 | announce_device(udev); | 
| Alan Stern | 195af2c | 2007-07-16 15:28:19 -0400 | [diff] [blame] | 2391 |  | 
| Theodore Ts'o | b04b315 | 2012-07-04 11:22:20 -0400 | [diff] [blame] | 2392 | if (udev->serial) | 
|  | 2393 | add_device_randomness(udev->serial, strlen(udev->serial)); | 
|  | 2394 | if (udev->product) | 
|  | 2395 | add_device_randomness(udev->product, strlen(udev->product)); | 
|  | 2396 | if (udev->manufacturer) | 
|  | 2397 | add_device_randomness(udev->manufacturer, | 
|  | 2398 | strlen(udev->manufacturer)); | 
|  | 2399 |  | 
| Rafael J. Wysocki | 927bc91 | 2010-02-08 19:18:16 +0100 | [diff] [blame] | 2400 | device_enable_async_suspend(&udev->dev); | 
| Matthew Garrett | d35e70d | 2012-02-03 17:11:55 -0500 | [diff] [blame] | 2401 |  | 
| Dan Williams | a4204ff | 2014-05-20 18:08:22 -0700 | [diff] [blame] | 2402 | /* check whether the hub or firmware marks this port as non-removable */ | 
| Matthew Garrett | d35e70d | 2012-02-03 17:11:55 -0500 | [diff] [blame] | 2403 | if (udev->parent) | 
|  | 2404 | set_usb_port_removable(udev); | 
|  | 2405 |  | 
| Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 2406 | /* Register the device.  The device driver is responsible | 
| Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 2407 | * for configuring the device and invoking the add-device | 
|  | 2408 | * notifier chain (used by usbfs and possibly others). | 
| Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 2409 | */ | 
| Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 2410 | err = device_add(&udev->dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2411 | if (err) { | 
|  | 2412 | dev_err(&udev->dev, "can't device_add, error %d\n", err); | 
|  | 2413 | goto fail; | 
|  | 2414 | } | 
| Alan Stern | 9ad3d6c | 2005-11-17 17:10:32 -0500 | [diff] [blame] | 2415 |  | 
| Lan Tianyu | fde2638 | 2013-01-20 01:53:33 +0800 | [diff] [blame] | 2416 | /* Create link files between child device and usb port device. */ | 
|  | 2417 | if (udev->parent) { | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2418 | struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent); | 
|  | 2419 | struct usb_port	*port_dev = hub->ports[udev->portnum - 1]; | 
| Lan Tianyu | fde2638 | 2013-01-20 01:53:33 +0800 | [diff] [blame] | 2420 |  | 
|  | 2421 | err = sysfs_create_link(&udev->dev.kobj, | 
|  | 2422 | &port_dev->dev.kobj, "port"); | 
|  | 2423 | if (err) | 
|  | 2424 | goto fail; | 
|  | 2425 |  | 
|  | 2426 | err = sysfs_create_link(&port_dev->dev.kobj, | 
|  | 2427 | &udev->dev.kobj, "device"); | 
|  | 2428 | if (err) { | 
|  | 2429 | sysfs_remove_link(&udev->dev.kobj, "port"); | 
|  | 2430 | goto fail; | 
|  | 2431 | } | 
| Lan Tianyu | 971fcd4 | 2013-01-23 04:26:29 +0800 | [diff] [blame] | 2432 |  | 
|  | 2433 | pm_runtime_get_sync(&port_dev->dev); | 
| Lan Tianyu | fde2638 | 2013-01-20 01:53:33 +0800 | [diff] [blame] | 2434 | } | 
|  | 2435 |  | 
| Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 2436 | (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev); | 
| Alan Stern | c08512c | 2010-11-15 15:57:58 -0500 | [diff] [blame] | 2437 | usb_mark_last_busy(udev); | 
|  | 2438 | pm_runtime_put_sync_autosuspend(&udev->dev); | 
| Greg Kroah-Hartman | c066475 | 2006-08-11 01:55:12 -0700 | [diff] [blame] | 2439 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2440 |  | 
|  | 2441 | fail: | 
|  | 2442 | usb_set_device_state(udev, USB_STATE_NOTATTACHED); | 
| Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 2443 | pm_runtime_disable(&udev->dev); | 
|  | 2444 | pm_runtime_set_suspended(&udev->dev); | 
| Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 2445 | return err; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2446 | } | 
|  | 2447 |  | 
| Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2448 |  | 
|  | 2449 | /** | 
| Randy Dunlap | fd39c86 | 2007-10-15 17:30:02 -0700 | [diff] [blame] | 2450 | * usb_deauthorize_device - deauthorize a device (usbcore-internal) | 
|  | 2451 | * @usb_dev: USB device | 
|  | 2452 | * | 
|  | 2453 | * Move the USB device to a very basic state where interfaces are disabled | 
|  | 2454 | * and the device is in fact unconfigured and unusable. | 
| Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2455 | * | 
|  | 2456 | * We share a lock (that we have) with device_del(), so we need to | 
|  | 2457 | * defer its call. | 
| Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 2458 | * | 
|  | 2459 | * Return: 0. | 
| Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2460 | */ | 
|  | 2461 | int usb_deauthorize_device(struct usb_device *usb_dev) | 
|  | 2462 | { | 
| Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2463 | usb_lock_device(usb_dev); | 
|  | 2464 | if (usb_dev->authorized == 0) | 
|  | 2465 | goto out_unauthorized; | 
| Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 2466 |  | 
| Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2467 | usb_dev->authorized = 0; | 
|  | 2468 | usb_set_configuration(usb_dev, -1); | 
| Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 2469 |  | 
| Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2470 | out_unauthorized: | 
|  | 2471 | usb_unlock_device(usb_dev); | 
|  | 2472 | return 0; | 
|  | 2473 | } | 
|  | 2474 |  | 
|  | 2475 |  | 
|  | 2476 | int usb_authorize_device(struct usb_device *usb_dev) | 
|  | 2477 | { | 
|  | 2478 | int result = 0, c; | 
| Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 2479 |  | 
| Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2480 | usb_lock_device(usb_dev); | 
|  | 2481 | if (usb_dev->authorized == 1) | 
|  | 2482 | goto out_authorized; | 
| Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 2483 |  | 
| Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2484 | result = usb_autoresume_device(usb_dev); | 
|  | 2485 | if (result < 0) { | 
|  | 2486 | dev_err(&usb_dev->dev, | 
|  | 2487 | "can't autoresume for authorization: %d\n", result); | 
|  | 2488 | goto error_autoresume; | 
|  | 2489 | } | 
|  | 2490 | result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor)); | 
|  | 2491 | if (result < 0) { | 
|  | 2492 | dev_err(&usb_dev->dev, "can't re-read device descriptor for " | 
|  | 2493 | "authorization: %d\n", result); | 
|  | 2494 | goto error_device_descriptor; | 
|  | 2495 | } | 
| Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 2496 |  | 
| Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2497 | usb_dev->authorized = 1; | 
| Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2498 | /* Choose and set the configuration.  This registers the interfaces | 
|  | 2499 | * with the driver core and lets interface drivers bind to them. | 
|  | 2500 | */ | 
| Greg Kroah-Hartman | b5ea060 | 2007-08-02 22:44:27 -0600 | [diff] [blame] | 2501 | c = usb_choose_configuration(usb_dev); | 
| Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2502 | if (c >= 0) { | 
|  | 2503 | result = usb_set_configuration(usb_dev, c); | 
|  | 2504 | if (result) { | 
|  | 2505 | dev_err(&usb_dev->dev, | 
|  | 2506 | "can't set config #%d, error %d\n", c, result); | 
|  | 2507 | /* This need not be fatal.  The user can try to | 
|  | 2508 | * set other configurations. */ | 
|  | 2509 | } | 
|  | 2510 | } | 
|  | 2511 | dev_info(&usb_dev->dev, "authorized to connect\n"); | 
| Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 2512 |  | 
| Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2513 | error_device_descriptor: | 
| Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 2514 | usb_autosuspend_device(usb_dev); | 
| Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2515 | error_autoresume: | 
|  | 2516 | out_authorized: | 
| Matthias Beyer | 781b213 | 2013-10-10 23:41:29 +0200 | [diff] [blame] | 2517 | usb_unlock_device(usb_dev);	/* complements locktree */ | 
| Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 2518 | return result; | 
|  | 2519 | } | 
|  | 2520 |  | 
|  | 2521 |  | 
| Inaky Perez-Gonzalez | 0165de0 | 2006-08-25 19:35:29 -0700 | [diff] [blame] | 2522 | /* Returns 1 if @hub is a WUSB root hub, 0 otherwise */ | 
|  | 2523 | static unsigned hub_is_wusb(struct usb_hub *hub) | 
|  | 2524 | { | 
|  | 2525 | struct usb_hcd *hcd; | 
|  | 2526 | if (hub->hdev->parent != NULL)  /* not a root hub? */ | 
|  | 2527 | return 0; | 
|  | 2528 | hcd = container_of(hub->hdev->bus, struct usb_hcd, self); | 
|  | 2529 | return hcd->wireless; | 
|  | 2530 | } | 
|  | 2531 |  | 
|  | 2532 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2533 | #define PORT_RESET_TRIES	5 | 
|  | 2534 | #define SET_ADDRESS_TRIES	2 | 
|  | 2535 | #define GET_DESCRIPTOR_TRIES	2 | 
|  | 2536 | #define SET_CONFIG_TRIES	(2 * (use_both_schemes + 1)) | 
| Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 2537 | #define USE_NEW_SCHEME(i)	((i) / 2 == (int)old_scheme_first) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2538 |  | 
|  | 2539 | #define HUB_ROOT_RESET_TIME	50	/* times are in msec */ | 
|  | 2540 | #define HUB_SHORT_RESET_TIME	10 | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2541 | #define HUB_BH_RESET_TIME	50 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2542 | #define HUB_LONG_RESET_TIME	200 | 
| Sarah Sharp | 77c7f07 | 2012-11-14 17:16:52 -0800 | [diff] [blame] | 2543 | #define HUB_RESET_TIMEOUT	800 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2544 |  | 
| Dan Williams | 48fc7db | 2013-12-05 17:07:27 -0800 | [diff] [blame] | 2545 | /* | 
|  | 2546 | * "New scheme" enumeration causes an extra state transition to be | 
|  | 2547 | * exposed to an xhci host and causes USB3 devices to receive control | 
|  | 2548 | * commands in the default state.  This has been seen to cause | 
|  | 2549 | * enumeration failures, so disable this enumeration scheme for USB3 | 
|  | 2550 | * devices. | 
|  | 2551 | */ | 
|  | 2552 | static bool use_new_scheme(struct usb_device *udev, int retry) | 
|  | 2553 | { | 
|  | 2554 | if (udev->speed == USB_SPEED_SUPER) | 
|  | 2555 | return false; | 
|  | 2556 |  | 
|  | 2557 | return USE_NEW_SCHEME(retry); | 
|  | 2558 | } | 
|  | 2559 |  | 
| Sarah Sharp | 10d674a | 2011-09-14 14:24:52 -0700 | [diff] [blame] | 2560 | static int hub_port_reset(struct usb_hub *hub, int port1, | 
|  | 2561 | struct usb_device *udev, unsigned int delay, bool warm); | 
|  | 2562 |  | 
| Rahul Bedarkar | 025d443 | 2014-01-04 11:24:41 +0530 | [diff] [blame] | 2563 | /* 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] | 2564 | * Port worm reset is required to recover | 
|  | 2565 | */ | 
|  | 2566 | 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] | 2567 | { | 
|  | 2568 | return hub_is_superspeed(hub->hdev) && | 
| Stanislaw Ledwon | 8bea2bd | 2012-06-18 15:20:00 +0200 | [diff] [blame] | 2569 | (((portstatus & USB_PORT_STAT_LINK_STATE) == | 
|  | 2570 | USB_SS_PORT_LS_SS_INACTIVE) || | 
|  | 2571 | ((portstatus & USB_PORT_STAT_LINK_STATE) == | 
|  | 2572 | USB_SS_PORT_LS_COMP_MOD)) ; | 
| Sarah Sharp | 10d674a | 2011-09-14 14:24:52 -0700 | [diff] [blame] | 2573 | } | 
|  | 2574 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2575 | static int hub_port_wait_reset(struct usb_hub *hub, int port1, | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2576 | struct usb_device *udev, unsigned int delay, bool warm) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2577 | { | 
|  | 2578 | int delay_time, ret; | 
|  | 2579 | u16 portstatus; | 
|  | 2580 | u16 portchange; | 
|  | 2581 |  | 
|  | 2582 | for (delay_time = 0; | 
|  | 2583 | delay_time < HUB_RESET_TIMEOUT; | 
|  | 2584 | delay_time += delay) { | 
|  | 2585 | /* wait to give the device a chance to reset */ | 
|  | 2586 | msleep(delay); | 
|  | 2587 |  | 
|  | 2588 | /* read and decode port status */ | 
|  | 2589 | ret = hub_port_status(hub, port1, &portstatus, &portchange); | 
|  | 2590 | if (ret < 0) | 
|  | 2591 | return ret; | 
|  | 2592 |  | 
| Sarah Sharp | 4f43447 | 2012-11-15 14:58:04 -0800 | [diff] [blame] | 2593 | /* The port state is unknown until the reset completes. */ | 
| Sarah Sharp | 470f0be | 2012-12-11 10:14:03 -0800 | [diff] [blame] | 2594 | if (!(portstatus & USB_PORT_STAT_RESET)) | 
|  | 2595 | break; | 
| Sarah Sharp | 4f43447 | 2012-11-15 14:58:04 -0800 | [diff] [blame] | 2596 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2597 | /* switch to the long delay after two short delay failures */ | 
|  | 2598 | if (delay_time >= 2 * HUB_SHORT_RESET_TIME) | 
|  | 2599 | delay = HUB_LONG_RESET_TIME; | 
|  | 2600 |  | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 2601 | dev_dbg(&hub->ports[port1 - 1]->dev, | 
|  | 2602 | "not %sreset yet, waiting %dms\n", | 
|  | 2603 | warm ? "warm " : "", delay); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2604 | } | 
|  | 2605 |  | 
| Sarah Sharp | 470f0be | 2012-12-11 10:14:03 -0800 | [diff] [blame] | 2606 | if ((portstatus & USB_PORT_STAT_RESET)) | 
|  | 2607 | return -EBUSY; | 
|  | 2608 |  | 
|  | 2609 | if (hub_port_warm_reset_required(hub, portstatus)) | 
|  | 2610 | return -ENOTCONN; | 
|  | 2611 |  | 
|  | 2612 | /* Device went away? */ | 
|  | 2613 | if (!(portstatus & USB_PORT_STAT_CONNECTION)) | 
|  | 2614 | return -ENOTCONN; | 
|  | 2615 |  | 
|  | 2616 | /* bomb out completely if the connection bounced.  A USB 3.0 | 
|  | 2617 | * connection may bounce if multiple warm resets were issued, | 
|  | 2618 | * but the device may have successfully re-connected. Ignore it. | 
|  | 2619 | */ | 
|  | 2620 | if (!hub_is_superspeed(hub->hdev) && | 
|  | 2621 | (portchange & USB_PORT_STAT_C_CONNECTION)) | 
|  | 2622 | return -ENOTCONN; | 
|  | 2623 |  | 
|  | 2624 | if (!(portstatus & USB_PORT_STAT_ENABLE)) | 
|  | 2625 | return -EBUSY; | 
|  | 2626 |  | 
|  | 2627 | if (!udev) | 
|  | 2628 | return 0; | 
|  | 2629 |  | 
|  | 2630 | if (hub_is_wusb(hub)) | 
|  | 2631 | udev->speed = USB_SPEED_WIRELESS; | 
|  | 2632 | else if (hub_is_superspeed(hub->hdev)) | 
|  | 2633 | udev->speed = USB_SPEED_SUPER; | 
|  | 2634 | else if (portstatus & USB_PORT_STAT_HIGH_SPEED) | 
|  | 2635 | udev->speed = USB_SPEED_HIGH; | 
|  | 2636 | else if (portstatus & USB_PORT_STAT_LOW_SPEED) | 
|  | 2637 | udev->speed = USB_SPEED_LOW; | 
|  | 2638 | else | 
|  | 2639 | udev->speed = USB_SPEED_FULL; | 
|  | 2640 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2641 | } | 
|  | 2642 |  | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2643 | static void hub_port_finish_reset(struct usb_hub *hub, int port1, | 
| Sarah Sharp | a24a607 | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2644 | struct usb_device *udev, int *status) | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2645 | { | 
|  | 2646 | switch (*status) { | 
|  | 2647 | case 0: | 
| Sarah Sharp | a24a607 | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2648 | /* TRSTRCY = 10 ms; plus some extra */ | 
|  | 2649 | msleep(10 + 40); | 
|  | 2650 | if (udev) { | 
|  | 2651 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); | 
|  | 2652 |  | 
|  | 2653 | update_devnum(udev, 0); | 
|  | 2654 | /* The xHC may think the device is already reset, | 
|  | 2655 | * so ignore the status. | 
|  | 2656 | */ | 
|  | 2657 | if (hcd->driver->reset_device) | 
|  | 2658 | hcd->driver->reset_device(hcd, udev); | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2659 | } | 
|  | 2660 | /* FALL THROUGH */ | 
|  | 2661 | case -ENOTCONN: | 
|  | 2662 | case -ENODEV: | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2663 | usb_clear_port_feature(hub->hdev, | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2664 | port1, USB_PORT_FEAT_C_RESET); | 
| Sarah Sharp | 1c7439c6 | 2012-11-14 15:58:52 -0800 | [diff] [blame] | 2665 | if (hub_is_superspeed(hub->hdev)) { | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2666 | usb_clear_port_feature(hub->hdev, port1, | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2667 | USB_PORT_FEAT_C_BH_PORT_RESET); | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2668 | usb_clear_port_feature(hub->hdev, port1, | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2669 | USB_PORT_FEAT_C_PORT_LINK_STATE); | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2670 | usb_clear_port_feature(hub->hdev, port1, | 
| Sarah Sharp | a24a607 | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2671 | USB_PORT_FEAT_C_CONNECTION); | 
| Sarah Sharp | 1c7439c6 | 2012-11-14 15:58:52 -0800 | [diff] [blame] | 2672 | } | 
| Sarah Sharp | a24a607 | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2673 | if (udev) | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2674 | usb_set_device_state(udev, *status | 
|  | 2675 | ? USB_STATE_NOTATTACHED | 
|  | 2676 | : USB_STATE_DEFAULT); | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2677 | break; | 
|  | 2678 | } | 
|  | 2679 | } | 
|  | 2680 |  | 
|  | 2681 | /* Handle port reset and port warm(BH) reset (for USB3 protocol ports) */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2682 | static int hub_port_reset(struct usb_hub *hub, int port1, | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2683 | struct usb_device *udev, unsigned int delay, bool warm) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2684 | { | 
|  | 2685 | int i, status; | 
| Sarah Sharp | a24a607 | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2686 | u16 portchange, portstatus; | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 2687 | struct usb_port *port_dev = hub->ports[port1 - 1]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2688 |  | 
| Sarah Sharp | 0fe51aa | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2689 | if (!hub_is_superspeed(hub->hdev)) { | 
|  | 2690 | if (warm) { | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2691 | dev_err(hub->intfdev, "only USB3 hub support " | 
|  | 2692 | "warm reset\n"); | 
|  | 2693 | return -EINVAL; | 
|  | 2694 | } | 
| Sarah Sharp | 0fe51aa | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2695 | /* Block EHCI CF initialization during the port reset. | 
|  | 2696 | * Some companion controllers don't like it when they mix. | 
|  | 2697 | */ | 
|  | 2698 | down_read(&ehci_cf_port_reset_rwsem); | 
| Sarah Sharp | d3b9d7a | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2699 | } else if (!warm) { | 
|  | 2700 | /* | 
|  | 2701 | * If the caller hasn't explicitly requested a warm reset, | 
|  | 2702 | * double check and see if one is needed. | 
|  | 2703 | */ | 
|  | 2704 | status = hub_port_status(hub, port1, | 
|  | 2705 | &portstatus, &portchange); | 
|  | 2706 | if (status < 0) | 
|  | 2707 | goto done; | 
|  | 2708 |  | 
|  | 2709 | if (hub_port_warm_reset_required(hub, portstatus)) | 
|  | 2710 | warm = true; | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2711 | } | 
| Alan Stern | 32fe019 | 2007-10-10 16:27:07 -0400 | [diff] [blame] | 2712 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2713 | /* Reset the port */ | 
|  | 2714 | for (i = 0; i < PORT_RESET_TRIES; i++) { | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2715 | status = set_port_feature(hub->hdev, port1, (warm ? | 
|  | 2716 | USB_PORT_FEAT_BH_PORT_RESET : | 
|  | 2717 | USB_PORT_FEAT_RESET)); | 
| Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 2718 | if (status == -ENODEV) { | 
|  | 2719 | ;	/* The hub is gone */ | 
|  | 2720 | } else if (status) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 2721 | dev_err(&port_dev->dev, | 
|  | 2722 | "cannot %sreset (err = %d)\n", | 
|  | 2723 | warm ? "warm " : "", status); | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2724 | } else { | 
|  | 2725 | status = hub_port_wait_reset(hub, port1, udev, delay, | 
|  | 2726 | warm); | 
| Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 2727 | if (status && status != -ENOTCONN && status != -ENODEV) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2728 | dev_dbg(hub->intfdev, | 
|  | 2729 | "port_wait_reset: err = %d\n", | 
|  | 2730 | status); | 
|  | 2731 | } | 
|  | 2732 |  | 
| Sarah Sharp | a24a607 | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2733 | /* Check for disconnect or reset */ | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2734 | if (status == 0 || status == -ENOTCONN || status == -ENODEV) { | 
| Sarah Sharp | a24a607 | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2735 | hub_port_finish_reset(hub, port1, udev, &status); | 
|  | 2736 |  | 
|  | 2737 | if (!hub_is_superspeed(hub->hdev)) | 
|  | 2738 | goto done; | 
|  | 2739 |  | 
|  | 2740 | /* | 
|  | 2741 | * If a USB 3.0 device migrates from reset to an error | 
|  | 2742 | * state, re-issue the warm reset. | 
|  | 2743 | */ | 
|  | 2744 | if (hub_port_status(hub, port1, | 
|  | 2745 | &portstatus, &portchange) < 0) | 
|  | 2746 | goto done; | 
|  | 2747 |  | 
|  | 2748 | if (!hub_port_warm_reset_required(hub, portstatus)) | 
|  | 2749 | goto done; | 
|  | 2750 |  | 
|  | 2751 | /* | 
|  | 2752 | * If the port is in SS.Inactive or Compliance Mode, the | 
|  | 2753 | * hot or warm reset failed.  Try another warm reset. | 
|  | 2754 | */ | 
|  | 2755 | if (!warm) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 2756 | dev_dbg(&port_dev->dev, | 
|  | 2757 | "hot reset failed, warm reset\n"); | 
| Sarah Sharp | a24a607 | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2758 | warm = true; | 
|  | 2759 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2760 | } | 
|  | 2761 |  | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 2762 | dev_dbg(&port_dev->dev, | 
|  | 2763 | "not enabled, trying %sreset again...\n", | 
|  | 2764 | warm ? "warm " : ""); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2765 | delay = HUB_LONG_RESET_TIME; | 
|  | 2766 | } | 
|  | 2767 |  | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 2768 | dev_err(&port_dev->dev, "Cannot enable. Maybe the USB cable is bad?\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2769 |  | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2770 | done: | 
| Sarah Sharp | 0fe51aa | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 2771 | if (!hub_is_superspeed(hub->hdev)) | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 2772 | up_read(&ehci_cf_port_reset_rwsem); | 
|  | 2773 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2774 | return status; | 
|  | 2775 | } | 
|  | 2776 |  | 
| Andiry Xu | 0ed9a57 | 2011-04-27 18:07:43 +0800 | [diff] [blame] | 2777 | /* Check if a port is power on */ | 
|  | 2778 | static int port_is_power_on(struct usb_hub *hub, unsigned portstatus) | 
|  | 2779 | { | 
|  | 2780 | int ret = 0; | 
|  | 2781 |  | 
|  | 2782 | if (hub_is_superspeed(hub->hdev)) { | 
|  | 2783 | if (portstatus & USB_SS_PORT_STAT_POWER) | 
|  | 2784 | ret = 1; | 
|  | 2785 | } else { | 
|  | 2786 | if (portstatus & USB_PORT_STAT_POWER) | 
|  | 2787 | ret = 1; | 
|  | 2788 | } | 
|  | 2789 |  | 
|  | 2790 | return ret; | 
|  | 2791 | } | 
|  | 2792 |  | 
| Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 2793 | #ifdef	CONFIG_PM | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2794 |  | 
| Andiry Xu | 0ed9a57 | 2011-04-27 18:07:43 +0800 | [diff] [blame] | 2795 | /* Check if a port is suspended(USB2.0 port) or in U3 state(USB3.0 port) */ | 
|  | 2796 | static int port_is_suspended(struct usb_hub *hub, unsigned portstatus) | 
|  | 2797 | { | 
|  | 2798 | int ret = 0; | 
|  | 2799 |  | 
|  | 2800 | if (hub_is_superspeed(hub->hdev)) { | 
|  | 2801 | if ((portstatus & USB_PORT_STAT_LINK_STATE) | 
|  | 2802 | == USB_SS_PORT_LS_U3) | 
|  | 2803 | ret = 1; | 
|  | 2804 | } else { | 
|  | 2805 | if (portstatus & USB_PORT_STAT_SUSPEND) | 
|  | 2806 | ret = 1; | 
|  | 2807 | } | 
|  | 2808 |  | 
|  | 2809 | return ret; | 
|  | 2810 | } | 
| Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2811 |  | 
|  | 2812 | /* Determine whether the device on a port is ready for a normal resume, | 
|  | 2813 | * is ready for a reset-resume, or should be disconnected. | 
|  | 2814 | */ | 
|  | 2815 | static int check_port_resume_type(struct usb_device *udev, | 
|  | 2816 | struct usb_hub *hub, int port1, | 
|  | 2817 | int status, unsigned portchange, unsigned portstatus) | 
|  | 2818 | { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 2819 | struct usb_port *port_dev = hub->ports[port1 - 1]; | 
|  | 2820 |  | 
| Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2821 | /* Is the device still present? */ | 
| Andiry Xu | 0ed9a57 | 2011-04-27 18:07:43 +0800 | [diff] [blame] | 2822 | if (status || port_is_suspended(hub, portstatus) || | 
|  | 2823 | !port_is_power_on(hub, portstatus) || | 
|  | 2824 | !(portstatus & USB_PORT_STAT_CONNECTION)) { | 
| Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2825 | if (status >= 0) | 
|  | 2826 | status = -ENODEV; | 
|  | 2827 | } | 
|  | 2828 |  | 
| Alan Stern | 86c57ed | 2008-06-30 11:14:43 -0400 | [diff] [blame] | 2829 | /* Can't do a normal resume if the port isn't enabled, | 
|  | 2830 | * so try a reset-resume instead. | 
|  | 2831 | */ | 
|  | 2832 | else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) { | 
|  | 2833 | if (udev->persist_enabled) | 
|  | 2834 | udev->reset_resume = 1; | 
|  | 2835 | else | 
|  | 2836 | status = -ENODEV; | 
|  | 2837 | } | 
| Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2838 |  | 
|  | 2839 | if (status) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 2840 | dev_dbg(&port_dev->dev, "status %04x.%04x after resume, %d\n", | 
|  | 2841 | portchange, portstatus, status); | 
| Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2842 | } else if (udev->reset_resume) { | 
|  | 2843 |  | 
|  | 2844 | /* Late port handoff can set status-change bits */ | 
|  | 2845 | if (portchange & USB_PORT_STAT_C_CONNECTION) | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2846 | usb_clear_port_feature(hub->hdev, port1, | 
| Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2847 | USB_PORT_FEAT_C_CONNECTION); | 
|  | 2848 | if (portchange & USB_PORT_STAT_C_ENABLE) | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 2849 | usb_clear_port_feature(hub->hdev, port1, | 
| Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2850 | USB_PORT_FEAT_C_ENABLE); | 
|  | 2851 | } | 
|  | 2852 |  | 
|  | 2853 | return status; | 
|  | 2854 | } | 
|  | 2855 |  | 
| Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 2856 | int usb_disable_ltm(struct usb_device *udev) | 
|  | 2857 | { | 
|  | 2858 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); | 
|  | 2859 |  | 
|  | 2860 | /* Check if the roothub and device supports LTM. */ | 
|  | 2861 | if (!usb_device_supports_ltm(hcd->self.root_hub) || | 
|  | 2862 | !usb_device_supports_ltm(udev)) | 
|  | 2863 | return 0; | 
|  | 2864 |  | 
|  | 2865 | /* Clear Feature LTM Enable can only be sent if the device is | 
|  | 2866 | * configured. | 
|  | 2867 | */ | 
|  | 2868 | if (!udev->actconfig) | 
|  | 2869 | return 0; | 
|  | 2870 |  | 
|  | 2871 | return usb_control_msg(udev, usb_sndctrlpipe(udev, 0), | 
|  | 2872 | USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE, | 
|  | 2873 | USB_DEVICE_LTM_ENABLE, 0, NULL, 0, | 
|  | 2874 | USB_CTRL_SET_TIMEOUT); | 
|  | 2875 | } | 
|  | 2876 | EXPORT_SYMBOL_GPL(usb_disable_ltm); | 
|  | 2877 |  | 
|  | 2878 | void usb_enable_ltm(struct usb_device *udev) | 
|  | 2879 | { | 
|  | 2880 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); | 
|  | 2881 |  | 
|  | 2882 | /* Check if the roothub and device supports LTM. */ | 
|  | 2883 | if (!usb_device_supports_ltm(hcd->self.root_hub) || | 
|  | 2884 | !usb_device_supports_ltm(udev)) | 
|  | 2885 | return; | 
|  | 2886 |  | 
|  | 2887 | /* Set Feature LTM Enable can only be sent if the device is | 
|  | 2888 | * configured. | 
|  | 2889 | */ | 
|  | 2890 | if (!udev->actconfig) | 
|  | 2891 | return; | 
|  | 2892 |  | 
|  | 2893 | usb_control_msg(udev, usb_sndctrlpipe(udev, 0), | 
|  | 2894 | USB_REQ_SET_FEATURE, USB_RECIP_DEVICE, | 
|  | 2895 | USB_DEVICE_LTM_ENABLE, 0, NULL, 0, | 
|  | 2896 | USB_CTRL_SET_TIMEOUT); | 
|  | 2897 | } | 
|  | 2898 | EXPORT_SYMBOL_GPL(usb_enable_ltm); | 
|  | 2899 |  | 
| Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 2900 | /* | 
| Alan Stern | 28e86165 | 2013-07-30 15:37:33 -0400 | [diff] [blame] | 2901 | * usb_enable_remote_wakeup - enable remote wakeup for a device | 
| Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 2902 | * @udev: target device | 
|  | 2903 | * | 
| Alan Stern | 28e86165 | 2013-07-30 15:37:33 -0400 | [diff] [blame] | 2904 | * For USB-2 devices: Set the device's remote wakeup feature. | 
|  | 2905 | * | 
|  | 2906 | * For USB-3 devices: Assume there's only one function on the device and | 
|  | 2907 | * enable remote wake for the first interface.  FIXME if the interface | 
|  | 2908 | * association descriptor shows there's more than one function. | 
| Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 2909 | */ | 
| Alan Stern | 28e86165 | 2013-07-30 15:37:33 -0400 | [diff] [blame] | 2910 | static int usb_enable_remote_wakeup(struct usb_device *udev) | 
| Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 2911 | { | 
| Alan Stern | 28e86165 | 2013-07-30 15:37:33 -0400 | [diff] [blame] | 2912 | if (udev->speed < USB_SPEED_SUPER) | 
|  | 2913 | return usb_control_msg(udev, usb_sndctrlpipe(udev, 0), | 
|  | 2914 | USB_REQ_SET_FEATURE, USB_RECIP_DEVICE, | 
|  | 2915 | USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0, | 
|  | 2916 | USB_CTRL_SET_TIMEOUT); | 
|  | 2917 | else | 
|  | 2918 | return usb_control_msg(udev, usb_sndctrlpipe(udev, 0), | 
|  | 2919 | USB_REQ_SET_FEATURE, USB_RECIP_INTERFACE, | 
|  | 2920 | USB_INTRF_FUNC_SUSPEND, | 
|  | 2921 | USB_INTRF_FUNC_SUSPEND_RW | | 
|  | 2922 | USB_INTRF_FUNC_SUSPEND_LP, | 
|  | 2923 | NULL, 0, USB_CTRL_SET_TIMEOUT); | 
|  | 2924 | } | 
|  | 2925 |  | 
|  | 2926 | /* | 
|  | 2927 | * usb_disable_remote_wakeup - disable remote wakeup for a device | 
|  | 2928 | * @udev: target device | 
|  | 2929 | * | 
|  | 2930 | * For USB-2 devices: Clear the device's remote wakeup feature. | 
|  | 2931 | * | 
|  | 2932 | * For USB-3 devices: Assume there's only one function on the device and | 
|  | 2933 | * disable remote wake for the first interface.  FIXME if the interface | 
|  | 2934 | * association descriptor shows there's more than one function. | 
|  | 2935 | */ | 
|  | 2936 | static int usb_disable_remote_wakeup(struct usb_device *udev) | 
|  | 2937 | { | 
|  | 2938 | if (udev->speed < USB_SPEED_SUPER) | 
|  | 2939 | return usb_control_msg(udev, usb_sndctrlpipe(udev, 0), | 
|  | 2940 | USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE, | 
|  | 2941 | USB_DEVICE_REMOTE_WAKEUP, 0, NULL, 0, | 
|  | 2942 | USB_CTRL_SET_TIMEOUT); | 
|  | 2943 | else | 
|  | 2944 | return usb_control_msg(udev, usb_sndctrlpipe(udev, 0), | 
| Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 2945 | USB_REQ_CLEAR_FEATURE, USB_RECIP_INTERFACE, | 
|  | 2946 | USB_INTRF_FUNC_SUSPEND,	0, NULL, 0, | 
|  | 2947 | USB_CTRL_SET_TIMEOUT); | 
|  | 2948 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2949 |  | 
| Alan Stern | e583d9d | 2013-07-11 14:58:04 -0400 | [diff] [blame] | 2950 | /* Count of wakeup-enabled devices at or below udev */ | 
|  | 2951 | static unsigned wakeup_enabled_descendants(struct usb_device *udev) | 
|  | 2952 | { | 
|  | 2953 | struct usb_hub *hub = usb_hub_to_struct_hub(udev); | 
|  | 2954 |  | 
|  | 2955 | return udev->do_remote_wakeup + | 
|  | 2956 | (hub ? hub->wakeup_enabled_descendants : 0); | 
|  | 2957 | } | 
|  | 2958 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2959 | /* | 
| Alan Stern | 140d8f6 | 2006-07-01 22:07:21 -0400 | [diff] [blame] | 2960 | * usb_port_suspend - suspend a usb device's upstream port | 
| Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2961 | * @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] | 2962 | * Context: must be able to sleep; device not locked; pm locks held | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2963 | * | 
|  | 2964 | * Suspends a USB device that isn't in active use, conserving power. | 
|  | 2965 | * Devices may wake out of a suspend, if anything important happens, | 
|  | 2966 | * using the remote wakeup mechanism.  They may also be taken out of | 
| Alan Stern | 140d8f6 | 2006-07-01 22:07:21 -0400 | [diff] [blame] | 2967 | * suspend by the host, using usb_port_resume().  It's also routine | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2968 | * to disconnect devices while they are suspended. | 
|  | 2969 | * | 
| David Brownell | 390a8c3 | 2005-09-13 19:57:27 -0700 | [diff] [blame] | 2970 | * This only affects the USB hardware for a device; its interfaces | 
|  | 2971 | * (and, for hubs, child devices) must already have been suspended. | 
|  | 2972 | * | 
| Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2973 | * Selective port suspend reduces power; most suspended devices draw | 
|  | 2974 | * less than 500 uA.  It's also used in OTG, along with remote wakeup. | 
|  | 2975 | * All devices below the suspended port are also suspended. | 
|  | 2976 | * | 
|  | 2977 | * Devices leave suspend state when the host wakes them up.  Some devices | 
|  | 2978 | * also support "remote wakeup", where the device can activate the USB | 
|  | 2979 | * tree above them to deliver data, such as a keypress or packet.  In | 
|  | 2980 | * some cases, this wakes the USB host. | 
|  | 2981 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2982 | * Suspending OTG devices may trigger HNP, if that's been enabled | 
|  | 2983 | * between a pair of dual-role devices.  That will change roles, such | 
|  | 2984 | * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral. | 
|  | 2985 | * | 
| Alan Stern | 4956ecc | 2007-05-30 16:51:28 -0400 | [diff] [blame] | 2986 | * Devices on USB hub ports have only one "suspend" state, corresponding | 
|  | 2987 | * to ACPI D2, "may cause the device to lose some context". | 
|  | 2988 | * State transitions include: | 
|  | 2989 | * | 
|  | 2990 | *   - suspend, resume ... when the VBUS power link stays live | 
|  | 2991 | *   - suspend, disconnect ... VBUS lost | 
|  | 2992 | * | 
|  | 2993 | * Once VBUS drop breaks the circuit, the port it's using has to go through | 
|  | 2994 | * normal re-enumeration procedures, starting with enabling VBUS power. | 
|  | 2995 | * Other than re-initializing the hub (plug/unplug, except for root hubs), | 
|  | 2996 | * Linux (2.6) currently has NO mechanisms to initiate that:  no khubd | 
|  | 2997 | * timer, no SRP, no requests through sysfs. | 
|  | 2998 | * | 
| Alan Stern | e583d9d | 2013-07-11 14:58:04 -0400 | [diff] [blame] | 2999 | * If Runtime PM isn't enabled or used, non-SuperSpeed devices may not get | 
|  | 3000 | * suspended until their bus goes into global suspend (i.e., the root | 
| Alan Stern | 0aa2832 | 2013-03-27 16:14:19 -0400 | [diff] [blame] | 3001 | * hub is suspended).  Nevertheless, we change @udev->state to | 
|  | 3002 | * USB_STATE_SUSPENDED as this is the device's "logical" state.  The actual | 
|  | 3003 | * upstream port setting is stored in @udev->port_is_suspended. | 
| Alan Stern | 4956ecc | 2007-05-30 16:51:28 -0400 | [diff] [blame] | 3004 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3005 | * Returns 0 on success, else negative errno. | 
|  | 3006 | */ | 
| Alan Stern | 65bfd29 | 2008-11-25 16:39:18 -0500 | [diff] [blame] | 3007 | int usb_port_suspend(struct usb_device *udev, pm_message_t msg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3008 | { | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3009 | struct usb_hub	*hub = usb_hub_to_struct_hub(udev->parent); | 
|  | 3010 | struct usb_port *port_dev = hub->ports[udev->portnum - 1]; | 
| Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3011 | int		port1 = udev->portnum; | 
|  | 3012 | int		status; | 
| Alan Stern | 0aa2832 | 2013-03-27 16:14:19 -0400 | [diff] [blame] | 3013 | bool		really_suspend = true; | 
| Alan Stern | 4956ecc | 2007-05-30 16:51:28 -0400 | [diff] [blame] | 3014 |  | 
| Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3015 | /* enable remote wakeup when appropriate; this lets the device | 
|  | 3016 | * wake up the upstream hub (including maybe the root hub). | 
|  | 3017 | * | 
|  | 3018 | * NOTE:  OTG devices may issue remote wakeup (or SRP) even when | 
|  | 3019 | * we don't explicitly enable it here. | 
|  | 3020 | */ | 
|  | 3021 | if (udev->do_remote_wakeup) { | 
| Alan Stern | 28e86165 | 2013-07-30 15:37:33 -0400 | [diff] [blame] | 3022 | status = usb_enable_remote_wakeup(udev); | 
| Oliver Neukum | 0c48720 | 2009-10-19 13:19:41 +0200 | [diff] [blame] | 3023 | if (status) { | 
| Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3024 | dev_dbg(&udev->dev, "won't remote wakeup, status %d\n", | 
|  | 3025 | status); | 
| Oliver Neukum | 0c48720 | 2009-10-19 13:19:41 +0200 | [diff] [blame] | 3026 | /* bail if autosuspend is requested */ | 
| Alan Stern | 5b1b0b8 | 2011-08-19 23:49:48 +0200 | [diff] [blame] | 3027 | if (PMSG_IS_AUTO(msg)) | 
| Alan Stern | 4fae6f0 | 2013-07-30 15:39:02 -0400 | [diff] [blame] | 3028 | goto err_wakeup; | 
| Oliver Neukum | 0c48720 | 2009-10-19 13:19:41 +0200 | [diff] [blame] | 3029 | } | 
| Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3030 | } | 
|  | 3031 |  | 
| Andiry Xu | 65580b43 | 2011-09-23 14:19:52 -0700 | [diff] [blame] | 3032 | /* disable USB2 hardware LPM */ | 
|  | 3033 | if (udev->usb2_hw_lpm_enabled == 1) | 
|  | 3034 | usb_set_usb2_hardware_lpm(udev, 0); | 
|  | 3035 |  | 
| Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 3036 | if (usb_disable_ltm(udev)) { | 
| Alan Stern | 4fae6f0 | 2013-07-30 15:39:02 -0400 | [diff] [blame] | 3037 | dev_err(&udev->dev, "Failed to disable LTM before suspend\n."); | 
|  | 3038 | status = -ENOMEM; | 
|  | 3039 | if (PMSG_IS_AUTO(msg)) | 
|  | 3040 | goto err_ltm; | 
| Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 3041 | } | 
| Sarah Sharp | 8306095 | 2012-05-02 14:25:52 -0700 | [diff] [blame] | 3042 | if (usb_unlocked_disable_lpm(udev)) { | 
| Alan Stern | 4fae6f0 | 2013-07-30 15:39:02 -0400 | [diff] [blame] | 3043 | dev_err(&udev->dev, "Failed to disable LPM before suspend\n."); | 
|  | 3044 | status = -ENOMEM; | 
|  | 3045 | if (PMSG_IS_AUTO(msg)) | 
|  | 3046 | goto err_lpm3; | 
| Sarah Sharp | 8306095 | 2012-05-02 14:25:52 -0700 | [diff] [blame] | 3047 | } | 
|  | 3048 |  | 
| Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3049 | /* see 7.1.7.6 */ | 
| Andiry Xu | a711423 | 2011-04-27 18:07:50 +0800 | [diff] [blame] | 3050 | if (hub_is_superspeed(hub->hdev)) | 
| Sarah Sharp | c2f60db | 2012-12-10 15:43:08 -0800 | [diff] [blame] | 3051 | 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] | 3052 |  | 
| Alan Stern | 0aa2832 | 2013-03-27 16:14:19 -0400 | [diff] [blame] | 3053 | /* | 
|  | 3054 | * For system suspend, we do not need to enable the suspend feature | 
|  | 3055 | * on individual USB-2 ports.  The devices will automatically go | 
|  | 3056 | * into suspend a few ms after the root hub stops sending packets. | 
|  | 3057 | * The USB 2.0 spec calls this "global suspend". | 
| Alan Stern | e583d9d | 2013-07-11 14:58:04 -0400 | [diff] [blame] | 3058 | * | 
|  | 3059 | * However, many USB hubs have a bug: They don't relay wakeup requests | 
|  | 3060 | * from a downstream port if the port's suspend feature isn't on. | 
|  | 3061 | * Therefore we will turn on the suspend feature if udev or any of its | 
|  | 3062 | * descendants is enabled for remote wakeup. | 
| Alan Stern | 0aa2832 | 2013-03-27 16:14:19 -0400 | [diff] [blame] | 3063 | */ | 
| Alan Stern | e583d9d | 2013-07-11 14:58:04 -0400 | [diff] [blame] | 3064 | else if (PMSG_IS_AUTO(msg) || wakeup_enabled_descendants(udev) > 0) | 
|  | 3065 | status = set_port_feature(hub->hdev, port1, | 
|  | 3066 | USB_PORT_FEAT_SUSPEND); | 
| Alan Stern | 0aa2832 | 2013-03-27 16:14:19 -0400 | [diff] [blame] | 3067 | else { | 
|  | 3068 | really_suspend = false; | 
|  | 3069 | status = 0; | 
|  | 3070 | } | 
| Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3071 | if (status) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 3072 | dev_dbg(&port_dev->dev, "can't suspend, status %d\n", status); | 
| Alan Stern | cbb3300 | 2011-06-15 16:29:16 -0400 | [diff] [blame] | 3073 |  | 
| Alan Stern | 4fae6f0 | 2013-07-30 15:39:02 -0400 | [diff] [blame] | 3074 | /* Try to enable USB3 LPM and LTM again */ | 
|  | 3075 | usb_unlocked_enable_lpm(udev); | 
|  | 3076 | err_lpm3: | 
|  | 3077 | usb_enable_ltm(udev); | 
|  | 3078 | err_ltm: | 
| Andiry Xu | c3e751e | 2012-05-05 00:50:10 +0800 | [diff] [blame] | 3079 | /* Try to enable USB2 hardware LPM again */ | 
|  | 3080 | if (udev->usb2_hw_lpm_capable == 1) | 
|  | 3081 | usb_set_usb2_hardware_lpm(udev, 1); | 
|  | 3082 |  | 
| Alan Stern | 4fae6f0 | 2013-07-30 15:39:02 -0400 | [diff] [blame] | 3083 | if (udev->do_remote_wakeup) | 
|  | 3084 | (void) usb_disable_remote_wakeup(udev); | 
|  | 3085 | err_wakeup: | 
| Sarah Sharp | 8306095 | 2012-05-02 14:25:52 -0700 | [diff] [blame] | 3086 |  | 
| Alan Stern | cbb3300 | 2011-06-15 16:29:16 -0400 | [diff] [blame] | 3087 | /* System sleep transitions should never fail */ | 
| Alan Stern | 5b1b0b8 | 2011-08-19 23:49:48 +0200 | [diff] [blame] | 3088 | if (!PMSG_IS_AUTO(msg)) | 
| Alan Stern | cbb3300 | 2011-06-15 16:29:16 -0400 | [diff] [blame] | 3089 | status = 0; | 
| Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3090 | } else { | 
| Alan Stern | 30b1a7a | 2011-09-27 21:54:22 +0200 | [diff] [blame] | 3091 | dev_dbg(&udev->dev, "usb %ssuspend, wakeup %d\n", | 
|  | 3092 | (PMSG_IS_AUTO(msg) ? "auto-" : ""), | 
|  | 3093 | udev->do_remote_wakeup); | 
| Alan Stern | 0aa2832 | 2013-03-27 16:14:19 -0400 | [diff] [blame] | 3094 | if (really_suspend) { | 
|  | 3095 | udev->port_is_suspended = 1; | 
| Alan Stern | e583d9d | 2013-07-11 14:58:04 -0400 | [diff] [blame] | 3096 |  | 
|  | 3097 | /* device has up to 10 msec to fully suspend */ | 
| Alan Stern | 0aa2832 | 2013-03-27 16:14:19 -0400 | [diff] [blame] | 3098 | msleep(10); | 
|  | 3099 | } | 
| Alan Stern | e583d9d | 2013-07-11 14:58:04 -0400 | [diff] [blame] | 3100 | usb_set_device_state(udev, USB_STATE_SUSPENDED); | 
| Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3101 | } | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3102 |  | 
| Alan Stern | 4fae6f0 | 2013-07-30 15:39:02 -0400 | [diff] [blame] | 3103 | if (status == 0 && !udev->do_remote_wakeup && udev->persist_enabled) { | 
| Lan Tianyu | 98a4f1f | 2013-07-03 22:17:54 +0800 | [diff] [blame] | 3104 | pm_runtime_put_sync(&port_dev->dev); | 
|  | 3105 | port_dev->did_runtime_put = true; | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3106 | } | 
|  | 3107 |  | 
| Alan Stern | c08512c | 2010-11-15 15:57:58 -0500 | [diff] [blame] | 3108 | usb_mark_last_busy(hub->hdev); | 
| Alan Stern | 4956ecc | 2007-05-30 16:51:28 -0400 | [diff] [blame] | 3109 | return status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3110 | } | 
| David Brownell | f3f3253 | 2005-09-22 22:37:29 -0700 | [diff] [blame] | 3111 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3112 | /* | 
| David Brownell | 390a8c3 | 2005-09-13 19:57:27 -0700 | [diff] [blame] | 3113 | * If the USB "suspend" state is in use (rather than "global suspend"), | 
|  | 3114 | * many devices will be individually taken out of suspend state using | 
| Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3115 | * special "resume" signaling.  This routine kicks in shortly after | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3116 | * hardware resume signaling is finished, either because of selective | 
|  | 3117 | * resume (by host) or remote wakeup (by device) ... now see what changed | 
|  | 3118 | * in the tree that's rooted at this device. | 
| Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3119 | * | 
|  | 3120 | * If @udev->reset_resume is set then the device is reset before the | 
|  | 3121 | * status check is done. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3122 | */ | 
| Alan Stern | 140d8f6 | 2006-07-01 22:07:21 -0400 | [diff] [blame] | 3123 | static int finish_port_resume(struct usb_device *udev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3124 | { | 
| Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3125 | int	status = 0; | 
| Oliver Neukum | 07e72b9 | 2012-11-29 15:05:57 +0100 | [diff] [blame] | 3126 | u16	devstatus = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3127 |  | 
|  | 3128 | /* caller owns the udev device lock */ | 
| Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 3129 | dev_dbg(&udev->dev, "%s\n", | 
|  | 3130 | udev->reset_resume ? "finish reset-resume" : "finish resume"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3131 |  | 
|  | 3132 | /* usb ch9 identifies four variants of SUSPENDED, based on what | 
|  | 3133 | * state the device resumes to.  Linux currently won't see the | 
|  | 3134 | * first two on the host side; they'd be inside hub_port_init() | 
|  | 3135 | * during many timeouts, but khubd can't suspend until later. | 
|  | 3136 | */ | 
|  | 3137 | usb_set_device_state(udev, udev->actconfig | 
|  | 3138 | ? USB_STATE_CONFIGURED | 
|  | 3139 | : USB_STATE_ADDRESS); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3140 |  | 
| Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3141 | /* 10.5.4.5 says not to reset a suspended port if the attached | 
|  | 3142 | * device is enabled for remote wakeup.  Hence the reset | 
|  | 3143 | * operation is carried out here, after the port has been | 
|  | 3144 | * resumed. | 
|  | 3145 | */ | 
| Alan Stern | 1d10255 | 2014-03-18 10:39:05 -0400 | [diff] [blame] | 3146 | if (udev->reset_resume) { | 
|  | 3147 | /* | 
|  | 3148 | * If the device morphs or switches modes when it is reset, | 
|  | 3149 | * we don't want to perform a reset-resume.  We'll fail the | 
|  | 3150 | * resume, which will cause a logical disconnect, and then | 
|  | 3151 | * the device will be rediscovered. | 
|  | 3152 | */ | 
| Alan Stern | 86c57ed | 2008-06-30 11:14:43 -0400 | [diff] [blame] | 3153 | retry_reset_resume: | 
| Alan Stern | 1d10255 | 2014-03-18 10:39:05 -0400 | [diff] [blame] | 3154 | if (udev->quirks & USB_QUIRK_RESET) | 
|  | 3155 | status = -ENODEV; | 
|  | 3156 | else | 
|  | 3157 | status = usb_reset_and_verify_device(udev); | 
|  | 3158 | } | 
| Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3159 |  | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 3160 | /* 10.5.4.5 says be sure devices in the tree are still there. | 
|  | 3161 | * 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] | 3162 | * and device drivers will know about any resume quirks. | 
|  | 3163 | */ | 
| Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3164 | if (status == 0) { | 
| Alan Stern | 46dede4 | 2007-08-14 10:56:10 -0400 | [diff] [blame] | 3165 | devstatus = 0; | 
| Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3166 | status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus); | 
| Alan Stern | 86c57ed | 2008-06-30 11:14:43 -0400 | [diff] [blame] | 3167 |  | 
|  | 3168 | /* If a normal resume failed, try doing a reset-resume */ | 
|  | 3169 | if (status && !udev->reset_resume && udev->persist_enabled) { | 
|  | 3170 | dev_dbg(&udev->dev, "retry with reset-resume\n"); | 
|  | 3171 | udev->reset_resume = 1; | 
|  | 3172 | goto retry_reset_resume; | 
|  | 3173 | } | 
| Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3174 | } | 
| Alan Stern | b40b7a9 | 2006-06-19 15:12:38 -0400 | [diff] [blame] | 3175 |  | 
| Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3176 | if (status) { | 
|  | 3177 | dev_dbg(&udev->dev, "gone after usb resume? status %d\n", | 
|  | 3178 | status); | 
| Oliver Neukum | 07e72b9 | 2012-11-29 15:05:57 +0100 | [diff] [blame] | 3179 | /* | 
|  | 3180 | * There are a few quirky devices which violate the standard | 
|  | 3181 | * by claiming to have remote wakeup enabled after a reset, | 
|  | 3182 | * which crash if the feature is cleared, hence check for | 
|  | 3183 | * udev->reset_resume | 
|  | 3184 | */ | 
|  | 3185 | } else if (udev->actconfig && !udev->reset_resume) { | 
| Alan Stern | 28e86165 | 2013-07-30 15:37:33 -0400 | [diff] [blame] | 3186 | if (udev->speed < USB_SPEED_SUPER) { | 
| Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 3187 | if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP)) | 
| Alan Stern | 28e86165 | 2013-07-30 15:37:33 -0400 | [diff] [blame] | 3188 | status = usb_disable_remote_wakeup(udev); | 
| Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 3189 | } else { | 
|  | 3190 | status = usb_get_status(udev, USB_RECIP_INTERFACE, 0, | 
|  | 3191 | &devstatus); | 
| Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 3192 | if (!status && devstatus & (USB_INTRF_STAT_FUNC_RW_CAP | 
|  | 3193 | | USB_INTRF_STAT_FUNC_RW)) | 
| Alan Stern | 28e86165 | 2013-07-30 15:37:33 -0400 | [diff] [blame] | 3194 | status = usb_disable_remote_wakeup(udev); | 
| Alan Stern | 4bf0ba8 | 2005-11-21 11:58:07 -0500 | [diff] [blame] | 3195 | } | 
| Lan Tianyu | 54a3ac0 | 2013-01-24 10:31:28 +0800 | [diff] [blame] | 3196 |  | 
|  | 3197 | if (status) | 
|  | 3198 | dev_dbg(&udev->dev, | 
|  | 3199 | "disable remote wakeup, status %d\n", | 
|  | 3200 | status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3201 | status = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3202 | } | 
|  | 3203 | return status; | 
|  | 3204 | } | 
|  | 3205 |  | 
| Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3206 | /* | 
|  | 3207 | * usb_port_resume - re-activate a suspended usb device's upstream port | 
|  | 3208 | * @udev: device to re-activate, not a root hub | 
|  | 3209 | * Context: must be able to sleep; device not locked; pm locks held | 
|  | 3210 | * | 
|  | 3211 | * This will re-activate the suspended device, increasing power usage | 
|  | 3212 | * while letting drivers communicate again with its endpoints. | 
|  | 3213 | * USB resume explicitly guarantees that the power session between | 
|  | 3214 | * the host and the device is the same as it was when the device | 
|  | 3215 | * suspended. | 
|  | 3216 | * | 
| Alan Stern | feccc30 | 2008-03-03 15:15:59 -0500 | [diff] [blame] | 3217 | * If @udev->reset_resume is set then this routine won't check that the | 
|  | 3218 | * port is still enabled.  Furthermore, finish_port_resume() above will | 
| Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3219 | * reset @udev.  The end result is that a broken power session can be | 
|  | 3220 | * recovered and @udev will appear to persist across a loss of VBUS power. | 
|  | 3221 | * | 
|  | 3222 | * For example, if a host controller doesn't maintain VBUS suspend current | 
|  | 3223 | * during a system sleep or is reset when the system wakes up, all the USB | 
|  | 3224 | * power sessions below it will be broken.  This is especially troublesome | 
|  | 3225 | * for mass-storage devices containing mounted filesystems, since the | 
|  | 3226 | * device will appear to have disconnected and all the memory mappings | 
|  | 3227 | * to it will be lost.  Using the USB_PERSIST facility, the device can be | 
|  | 3228 | * made to appear as if it had not disconnected. | 
|  | 3229 | * | 
| Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 3230 | * This facility can be dangerous.  Although usb_reset_and_verify_device() makes | 
| Alan Stern | feccc30 | 2008-03-03 15:15:59 -0500 | [diff] [blame] | 3231 | * every effort to insure that the same device is present after the | 
| Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3232 | * reset as before, it cannot provide a 100% guarantee.  Furthermore it's | 
|  | 3233 | * quite possible for a device to remain unaltered but its media to be | 
|  | 3234 | * changed.  If the user replaces a flash memory card while the system is | 
|  | 3235 | * asleep, he will have only himself to blame when the filesystem on the | 
|  | 3236 | * new card is corrupted and the system crashes. | 
|  | 3237 | * | 
| Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3238 | * Returns 0 on success, else negative errno. | 
|  | 3239 | */ | 
| Alan Stern | 65bfd29 | 2008-11-25 16:39:18 -0500 | [diff] [blame] | 3240 | int usb_port_resume(struct usb_device *udev, pm_message_t msg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3241 | { | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3242 | struct usb_hub	*hub = usb_hub_to_struct_hub(udev->parent); | 
|  | 3243 | struct usb_port *port_dev = hub->ports[udev->portnum  - 1]; | 
| Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 3244 | int		port1 = udev->portnum; | 
|  | 3245 | int		status; | 
|  | 3246 | u16		portchange, portstatus; | 
| Alan Stern | d25450c | 2006-11-20 11:14:30 -0500 | [diff] [blame] | 3247 |  | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3248 | if (port_dev->did_runtime_put) { | 
|  | 3249 | status = pm_runtime_get_sync(&port_dev->dev); | 
|  | 3250 | port_dev->did_runtime_put = false; | 
|  | 3251 | if (status < 0) { | 
|  | 3252 | dev_dbg(&udev->dev, "can't resume usb port, status %d\n", | 
|  | 3253 | status); | 
|  | 3254 | return status; | 
|  | 3255 | } | 
|  | 3256 | } | 
|  | 3257 |  | 
| Alan Stern | d25450c | 2006-11-20 11:14:30 -0500 | [diff] [blame] | 3258 | /* Skip the initial Clear-Suspend step for a remote wakeup */ | 
|  | 3259 | status = hub_port_status(hub, port1, &portstatus, &portchange); | 
| Andiry Xu | 0ed9a57 | 2011-04-27 18:07:43 +0800 | [diff] [blame] | 3260 | if (status == 0 && !port_is_suspended(hub, portstatus)) | 
| Alan Stern | d25450c | 2006-11-20 11:14:30 -0500 | [diff] [blame] | 3261 | goto SuspendCleared; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3262 |  | 
| Alan Stern | d5cbad4 | 2006-08-11 16:52:39 -0400 | [diff] [blame] | 3263 | set_bit(port1, hub->busy_bits); | 
|  | 3264 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3265 | /* see 7.1.7.7; affects power usage, but not budgeting */ | 
| Andiry Xu | a711423 | 2011-04-27 18:07:50 +0800 | [diff] [blame] | 3266 | if (hub_is_superspeed(hub->hdev)) | 
| Sarah Sharp | c2f60db | 2012-12-10 15:43:08 -0800 | [diff] [blame] | 3267 | 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] | 3268 | else | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3269 | status = usb_clear_port_feature(hub->hdev, | 
| Andiry Xu | a711423 | 2011-04-27 18:07:50 +0800 | [diff] [blame] | 3270 | port1, USB_PORT_FEAT_SUSPEND); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3271 | if (status) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 3272 | dev_dbg(&port_dev->dev, "can't resume, status %d\n", status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3273 | } else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3274 | /* drive resume for at least 20 msec */ | 
| Alan Stern | 686314c | 2007-05-30 15:34:36 -0400 | [diff] [blame] | 3275 | dev_dbg(&udev->dev, "usb %sresume\n", | 
| Alan Stern | 5b1b0b8 | 2011-08-19 23:49:48 +0200 | [diff] [blame] | 3276 | (PMSG_IS_AUTO(msg) ? "auto-" : "")); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3277 | msleep(25); | 
|  | 3278 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3279 | /* Virtual root hubs can trigger on GET_PORT_STATUS to | 
|  | 3280 | * stop resume signaling.  Then finish the resume | 
|  | 3281 | * sequence. | 
|  | 3282 | */ | 
| Alan Stern | d25450c | 2006-11-20 11:14:30 -0500 | [diff] [blame] | 3283 | status = hub_port_status(hub, port1, &portstatus, &portchange); | 
| Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3284 |  | 
| Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 3285 | /* TRSMRCY = 10 msec */ | 
|  | 3286 | msleep(10); | 
|  | 3287 | } | 
| Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3288 |  | 
| Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 3289 | SuspendCleared: | 
|  | 3290 | if (status == 0) { | 
| Alan Stern | bfd1e91 | 2012-10-19 11:03:39 -0400 | [diff] [blame] | 3291 | udev->port_is_suspended = 0; | 
| Andiry Xu | a711423 | 2011-04-27 18:07:50 +0800 | [diff] [blame] | 3292 | if (hub_is_superspeed(hub->hdev)) { | 
|  | 3293 | if (portchange & USB_PORT_STAT_C_LINK_STATE) | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3294 | usb_clear_port_feature(hub->hdev, port1, | 
| Andiry Xu | a711423 | 2011-04-27 18:07:50 +0800 | [diff] [blame] | 3295 | USB_PORT_FEAT_C_PORT_LINK_STATE); | 
|  | 3296 | } else { | 
|  | 3297 | if (portchange & USB_PORT_STAT_C_SUSPEND) | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3298 | usb_clear_port_feature(hub->hdev, port1, | 
| Andiry Xu | a711423 | 2011-04-27 18:07:50 +0800 | [diff] [blame] | 3299 | USB_PORT_FEAT_C_SUSPEND); | 
|  | 3300 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3301 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3302 |  | 
| Alan Stern | d5cbad4 | 2006-08-11 16:52:39 -0400 | [diff] [blame] | 3303 | clear_bit(port1, hub->busy_bits); | 
| Alan Stern | d5cbad4 | 2006-08-11 16:52:39 -0400 | [diff] [blame] | 3304 |  | 
| Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 3305 | status = check_port_resume_type(udev, | 
|  | 3306 | hub, port1, status, portchange, portstatus); | 
| Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3307 | if (status == 0) | 
|  | 3308 | status = finish_port_resume(udev); | 
|  | 3309 | if (status < 0) { | 
|  | 3310 | dev_dbg(&udev->dev, "can't resume, status %d\n", status); | 
|  | 3311 | hub_port_logical_disconnect(hub, port1); | 
| Andiry Xu | 65580b43 | 2011-09-23 14:19:52 -0700 | [diff] [blame] | 3312 | } else  { | 
|  | 3313 | /* Try to enable USB2 hardware LPM */ | 
|  | 3314 | if (udev->usb2_hw_lpm_capable == 1) | 
|  | 3315 | usb_set_usb2_hardware_lpm(udev, 1); | 
| Sarah Sharp | 8306095 | 2012-05-02 14:25:52 -0700 | [diff] [blame] | 3316 |  | 
| Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 3317 | /* Try to enable USB3 LTM and LPM */ | 
|  | 3318 | usb_enable_ltm(udev); | 
| Sarah Sharp | 8306095 | 2012-05-02 14:25:52 -0700 | [diff] [blame] | 3319 | usb_unlocked_enable_lpm(udev); | 
| Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3320 | } | 
| Andiry Xu | 65580b43 | 2011-09-23 14:19:52 -0700 | [diff] [blame] | 3321 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3322 | return status; | 
|  | 3323 | } | 
|  | 3324 |  | 
| Alan Stern | 84ebc10 | 2013-03-27 16:14:46 -0400 | [diff] [blame] | 3325 | #ifdef	CONFIG_PM_RUNTIME | 
|  | 3326 |  | 
| Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 3327 | /* caller has locked udev */ | 
| Alan Stern | 0534d46 | 2010-01-08 12:56:30 -0500 | [diff] [blame] | 3328 | int usb_remote_wakeup(struct usb_device *udev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3329 | { | 
|  | 3330 | int	status = 0; | 
|  | 3331 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3332 | if (udev->state == USB_STATE_SUSPENDED) { | 
| Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 3333 | dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-"); | 
| Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 3334 | status = usb_autoresume_device(udev); | 
|  | 3335 | if (status == 0) { | 
|  | 3336 | /* Let the drivers do their thing, then... */ | 
|  | 3337 | usb_autosuspend_device(udev); | 
|  | 3338 | } | 
| Alan Stern | d25450c | 2006-11-20 11:14:30 -0500 | [diff] [blame] | 3339 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3340 | return status; | 
|  | 3341 | } | 
|  | 3342 |  | 
| Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 3343 | #endif | 
|  | 3344 |  | 
| Ming Lei | e6f30de | 2012-10-24 11:59:24 +0800 | [diff] [blame] | 3345 | static int check_ports_changed(struct usb_hub *hub) | 
|  | 3346 | { | 
|  | 3347 | int port1; | 
|  | 3348 |  | 
|  | 3349 | for (port1 = 1; port1 <= hub->hdev->maxchild; ++port1) { | 
|  | 3350 | u16 portstatus, portchange; | 
|  | 3351 | int status; | 
|  | 3352 |  | 
|  | 3353 | status = hub_port_status(hub, port1, &portstatus, &portchange); | 
|  | 3354 | if (!status && portchange) | 
|  | 3355 | return 1; | 
|  | 3356 | } | 
|  | 3357 | return 0; | 
|  | 3358 | } | 
|  | 3359 |  | 
| David Brownell | db69087 | 2005-09-13 19:56:33 -0700 | [diff] [blame] | 3360 | static int hub_suspend(struct usb_interface *intf, pm_message_t msg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3361 | { | 
|  | 3362 | struct usb_hub		*hub = usb_get_intfdata (intf); | 
|  | 3363 | struct usb_device	*hdev = hub->hdev; | 
|  | 3364 | unsigned		port1; | 
| Sarah Sharp | 4296c70a | 2012-01-06 10:34:31 -0800 | [diff] [blame] | 3365 | int			status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3366 |  | 
| Alan Stern | e583d9d | 2013-07-11 14:58:04 -0400 | [diff] [blame] | 3367 | /* | 
|  | 3368 | * Warn if children aren't already suspended. | 
|  | 3369 | * Also, add up the number of wakeup-enabled descendants. | 
|  | 3370 | */ | 
|  | 3371 | hub->wakeup_enabled_descendants = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3372 | for (port1 = 1; port1 <= hdev->maxchild; port1++) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 3373 | struct usb_port *port_dev = hub->ports[port1 - 1]; | 
|  | 3374 | struct usb_device *udev = port_dev->child; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3375 |  | 
| Alan Stern | 6840d25 | 2007-09-10 11:34:26 -0400 | [diff] [blame] | 3376 | if (udev && udev->can_submit) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 3377 | dev_warn(&port_dev->dev, "not suspended yet\n"); | 
| Alan Stern | 5b1b0b8 | 2011-08-19 23:49:48 +0200 | [diff] [blame] | 3378 | if (PMSG_IS_AUTO(msg)) | 
| Alan Stern | cbb3300 | 2011-06-15 16:29:16 -0400 | [diff] [blame] | 3379 | return -EBUSY; | 
| David Brownell | c9f89fa | 2005-09-13 19:57:04 -0700 | [diff] [blame] | 3380 | } | 
| Alan Stern | e583d9d | 2013-07-11 14:58:04 -0400 | [diff] [blame] | 3381 | if (udev) | 
|  | 3382 | hub->wakeup_enabled_descendants += | 
|  | 3383 | wakeup_enabled_descendants(udev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3384 | } | 
| Ming Lei | e6f30de | 2012-10-24 11:59:24 +0800 | [diff] [blame] | 3385 |  | 
|  | 3386 | if (hdev->do_remote_wakeup && hub->quirk_check_port_auto_suspend) { | 
|  | 3387 | /* check if there are changes pending on hub ports */ | 
|  | 3388 | if (check_ports_changed(hub)) { | 
|  | 3389 | if (PMSG_IS_AUTO(msg)) | 
|  | 3390 | return -EBUSY; | 
|  | 3391 | pm_wakeup_event(&hdev->dev, 2000); | 
|  | 3392 | } | 
|  | 3393 | } | 
|  | 3394 |  | 
| Sarah Sharp | 4296c70a | 2012-01-06 10:34:31 -0800 | [diff] [blame] | 3395 | if (hub_is_superspeed(hdev) && hdev->do_remote_wakeup) { | 
|  | 3396 | /* Enable hub to send remote wakeup for all ports. */ | 
|  | 3397 | for (port1 = 1; port1 <= hdev->maxchild; port1++) { | 
|  | 3398 | status = set_port_feature(hdev, | 
|  | 3399 | port1 | | 
|  | 3400 | USB_PORT_FEAT_REMOTE_WAKE_CONNECT | | 
|  | 3401 | USB_PORT_FEAT_REMOTE_WAKE_DISCONNECT | | 
|  | 3402 | USB_PORT_FEAT_REMOTE_WAKE_OVER_CURRENT, | 
|  | 3403 | USB_PORT_FEAT_REMOTE_WAKE_MASK); | 
|  | 3404 | } | 
|  | 3405 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3406 |  | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 3407 | dev_dbg(&intf->dev, "%s\n", __func__); | 
| Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 3408 |  | 
| David Brownell | c9f89fa | 2005-09-13 19:57:04 -0700 | [diff] [blame] | 3409 | /* stop khubd and related activity */ | 
| Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 3410 | hub_quiesce(hub, HUB_SUSPEND); | 
| Alan Stern | b6f6436 | 2007-05-04 11:51:54 -0400 | [diff] [blame] | 3411 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3412 | } | 
|  | 3413 |  | 
|  | 3414 | static int hub_resume(struct usb_interface *intf) | 
|  | 3415 | { | 
| Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 3416 | struct usb_hub *hub = usb_get_intfdata(intf); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3417 |  | 
| Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 3418 | dev_dbg(&intf->dev, "%s\n", __func__); | 
| Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 3419 | hub_activate(hub, HUB_RESUME); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3420 | return 0; | 
|  | 3421 | } | 
|  | 3422 |  | 
| Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 3423 | static int hub_reset_resume(struct usb_interface *intf) | 
| Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 3424 | { | 
| Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 3425 | struct usb_hub *hub = usb_get_intfdata(intf); | 
| Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 3426 |  | 
| Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 3427 | dev_dbg(&intf->dev, "%s\n", __func__); | 
| Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 3428 | hub_activate(hub, HUB_RESET_RESUME); | 
| Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 3429 | return 0; | 
|  | 3430 | } | 
|  | 3431 |  | 
| Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3432 | /** | 
|  | 3433 | * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power | 
|  | 3434 | * @rhdev: struct usb_device for the root hub | 
|  | 3435 | * | 
|  | 3436 | * The USB host controller driver calls this function when its root hub | 
|  | 3437 | * is resumed and Vbus power has been interrupted or the controller | 
| Alan Stern | feccc30 | 2008-03-03 15:15:59 -0500 | [diff] [blame] | 3438 | * has been reset.  The routine marks @rhdev as having lost power. | 
|  | 3439 | * When the hub driver is resumed it will take notice and carry out | 
|  | 3440 | * power-session recovery for all the "USB-PERSIST"-enabled child devices; | 
|  | 3441 | * the others will be disconnected. | 
| Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 3442 | */ | 
|  | 3443 | void usb_root_hub_lost_power(struct usb_device *rhdev) | 
|  | 3444 | { | 
|  | 3445 | dev_warn(&rhdev->dev, "root hub lost power or was reset\n"); | 
|  | 3446 | rhdev->reset_resume = 1; | 
|  | 3447 | } | 
|  | 3448 | EXPORT_SYMBOL_GPL(usb_root_hub_lost_power); | 
|  | 3449 |  | 
| Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3450 | static const char * const usb3_lpm_names[]  = { | 
|  | 3451 | "U0", | 
|  | 3452 | "U1", | 
|  | 3453 | "U2", | 
|  | 3454 | "U3", | 
|  | 3455 | }; | 
|  | 3456 |  | 
|  | 3457 | /* | 
|  | 3458 | * Send a Set SEL control transfer to the device, prior to enabling | 
|  | 3459 | * device-initiated U1 or U2.  This lets the device know the exit latencies from | 
|  | 3460 | * the time the device initiates a U1 or U2 exit, to the time it will receive a | 
|  | 3461 | * packet from the host. | 
|  | 3462 | * | 
|  | 3463 | * This function will fail if the SEL or PEL values for udev are greater than | 
|  | 3464 | * the maximum allowed values for the link state to be enabled. | 
|  | 3465 | */ | 
|  | 3466 | static int usb_req_set_sel(struct usb_device *udev, enum usb3_link_state state) | 
|  | 3467 | { | 
|  | 3468 | struct usb_set_sel_req *sel_values; | 
|  | 3469 | unsigned long long u1_sel; | 
|  | 3470 | unsigned long long u1_pel; | 
|  | 3471 | unsigned long long u2_sel; | 
|  | 3472 | unsigned long long u2_pel; | 
|  | 3473 | int ret; | 
|  | 3474 |  | 
| Xenia Ragiadakou | 38d7f68 | 2013-09-04 17:24:45 +0300 | [diff] [blame] | 3475 | if (udev->state != USB_STATE_CONFIGURED) | 
|  | 3476 | return 0; | 
|  | 3477 |  | 
| Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3478 | /* Convert SEL and PEL stored in ns to us */ | 
|  | 3479 | u1_sel = DIV_ROUND_UP(udev->u1_params.sel, 1000); | 
|  | 3480 | u1_pel = DIV_ROUND_UP(udev->u1_params.pel, 1000); | 
|  | 3481 | u2_sel = DIV_ROUND_UP(udev->u2_params.sel, 1000); | 
|  | 3482 | u2_pel = DIV_ROUND_UP(udev->u2_params.pel, 1000); | 
|  | 3483 |  | 
|  | 3484 | /* | 
|  | 3485 | * Make sure that the calculated SEL and PEL values for the link | 
|  | 3486 | * state we're enabling aren't bigger than the max SEL/PEL | 
|  | 3487 | * value that will fit in the SET SEL control transfer. | 
|  | 3488 | * Otherwise the device would get an incorrect idea of the exit | 
|  | 3489 | * latency for the link state, and could start a device-initiated | 
|  | 3490 | * U1/U2 when the exit latencies are too high. | 
|  | 3491 | */ | 
|  | 3492 | if ((state == USB3_LPM_U1 && | 
|  | 3493 | (u1_sel > USB3_LPM_MAX_U1_SEL_PEL || | 
|  | 3494 | u1_pel > USB3_LPM_MAX_U1_SEL_PEL)) || | 
|  | 3495 | (state == USB3_LPM_U2 && | 
|  | 3496 | (u2_sel > USB3_LPM_MAX_U2_SEL_PEL || | 
|  | 3497 | u2_pel > USB3_LPM_MAX_U2_SEL_PEL))) { | 
| Sarah Sharp | 1510a1a | 2012-10-05 10:30:35 -0700 | [diff] [blame] | 3498 | 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] | 3499 | usb3_lpm_names[state], u1_sel, u1_pel); | 
|  | 3500 | return -EINVAL; | 
|  | 3501 | } | 
|  | 3502 |  | 
|  | 3503 | /* | 
|  | 3504 | * If we're enabling device-initiated LPM for one link state, | 
|  | 3505 | * but the other link state has a too high SEL or PEL value, | 
|  | 3506 | * just set those values to the max in the Set SEL request. | 
|  | 3507 | */ | 
|  | 3508 | if (u1_sel > USB3_LPM_MAX_U1_SEL_PEL) | 
|  | 3509 | u1_sel = USB3_LPM_MAX_U1_SEL_PEL; | 
|  | 3510 |  | 
|  | 3511 | if (u1_pel > USB3_LPM_MAX_U1_SEL_PEL) | 
|  | 3512 | u1_pel = USB3_LPM_MAX_U1_SEL_PEL; | 
|  | 3513 |  | 
|  | 3514 | if (u2_sel > USB3_LPM_MAX_U2_SEL_PEL) | 
|  | 3515 | u2_sel = USB3_LPM_MAX_U2_SEL_PEL; | 
|  | 3516 |  | 
|  | 3517 | if (u2_pel > USB3_LPM_MAX_U2_SEL_PEL) | 
|  | 3518 | u2_pel = USB3_LPM_MAX_U2_SEL_PEL; | 
|  | 3519 |  | 
|  | 3520 | /* | 
|  | 3521 | * usb_enable_lpm() can be called as part of a failed device reset, | 
|  | 3522 | * which may be initiated by an error path of a mass storage driver. | 
|  | 3523 | * Therefore, use GFP_NOIO. | 
|  | 3524 | */ | 
|  | 3525 | sel_values = kmalloc(sizeof *(sel_values), GFP_NOIO); | 
|  | 3526 | if (!sel_values) | 
|  | 3527 | return -ENOMEM; | 
|  | 3528 |  | 
|  | 3529 | sel_values->u1_sel = u1_sel; | 
|  | 3530 | sel_values->u1_pel = u1_pel; | 
|  | 3531 | sel_values->u2_sel = cpu_to_le16(u2_sel); | 
|  | 3532 | sel_values->u2_pel = cpu_to_le16(u2_pel); | 
|  | 3533 |  | 
|  | 3534 | ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), | 
|  | 3535 | USB_REQ_SET_SEL, | 
|  | 3536 | USB_RECIP_DEVICE, | 
|  | 3537 | 0, 0, | 
|  | 3538 | sel_values, sizeof *(sel_values), | 
|  | 3539 | USB_CTRL_SET_TIMEOUT); | 
|  | 3540 | kfree(sel_values); | 
|  | 3541 | return ret; | 
|  | 3542 | } | 
|  | 3543 |  | 
|  | 3544 | /* | 
|  | 3545 | * Enable or disable device-initiated U1 or U2 transitions. | 
|  | 3546 | */ | 
|  | 3547 | static int usb_set_device_initiated_lpm(struct usb_device *udev, | 
|  | 3548 | enum usb3_link_state state, bool enable) | 
|  | 3549 | { | 
|  | 3550 | int ret; | 
|  | 3551 | int feature; | 
|  | 3552 |  | 
|  | 3553 | switch (state) { | 
|  | 3554 | case USB3_LPM_U1: | 
|  | 3555 | feature = USB_DEVICE_U1_ENABLE; | 
|  | 3556 | break; | 
|  | 3557 | case USB3_LPM_U2: | 
|  | 3558 | feature = USB_DEVICE_U2_ENABLE; | 
|  | 3559 | break; | 
|  | 3560 | default: | 
|  | 3561 | dev_warn(&udev->dev, "%s: Can't %s non-U1 or U2 state.\n", | 
|  | 3562 | __func__, enable ? "enable" : "disable"); | 
|  | 3563 | return -EINVAL; | 
|  | 3564 | } | 
|  | 3565 |  | 
|  | 3566 | if (udev->state != USB_STATE_CONFIGURED) { | 
|  | 3567 | dev_dbg(&udev->dev, "%s: Can't %s %s state " | 
|  | 3568 | "for unconfigured device.\n", | 
|  | 3569 | __func__, enable ? "enable" : "disable", | 
|  | 3570 | usb3_lpm_names[state]); | 
|  | 3571 | return 0; | 
|  | 3572 | } | 
|  | 3573 |  | 
|  | 3574 | if (enable) { | 
|  | 3575 | /* | 
| Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3576 | * Now send the control transfer to enable device-initiated LPM | 
|  | 3577 | * for either U1 or U2. | 
|  | 3578 | */ | 
|  | 3579 | ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), | 
|  | 3580 | USB_REQ_SET_FEATURE, | 
|  | 3581 | USB_RECIP_DEVICE, | 
|  | 3582 | feature, | 
|  | 3583 | 0, NULL, 0, | 
|  | 3584 | USB_CTRL_SET_TIMEOUT); | 
|  | 3585 | } else { | 
|  | 3586 | ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), | 
|  | 3587 | USB_REQ_CLEAR_FEATURE, | 
|  | 3588 | USB_RECIP_DEVICE, | 
|  | 3589 | feature, | 
|  | 3590 | 0, NULL, 0, | 
|  | 3591 | USB_CTRL_SET_TIMEOUT); | 
|  | 3592 | } | 
|  | 3593 | if (ret < 0) { | 
|  | 3594 | dev_warn(&udev->dev, "%s of device-initiated %s failed.\n", | 
|  | 3595 | enable ? "Enable" : "Disable", | 
|  | 3596 | usb3_lpm_names[state]); | 
|  | 3597 | return -EBUSY; | 
|  | 3598 | } | 
|  | 3599 | return 0; | 
|  | 3600 | } | 
|  | 3601 |  | 
|  | 3602 | static int usb_set_lpm_timeout(struct usb_device *udev, | 
|  | 3603 | enum usb3_link_state state, int timeout) | 
|  | 3604 | { | 
|  | 3605 | int ret; | 
|  | 3606 | int feature; | 
|  | 3607 |  | 
|  | 3608 | switch (state) { | 
|  | 3609 | case USB3_LPM_U1: | 
|  | 3610 | feature = USB_PORT_FEAT_U1_TIMEOUT; | 
|  | 3611 | break; | 
|  | 3612 | case USB3_LPM_U2: | 
|  | 3613 | feature = USB_PORT_FEAT_U2_TIMEOUT; | 
|  | 3614 | break; | 
|  | 3615 | default: | 
|  | 3616 | dev_warn(&udev->dev, "%s: Can't set timeout for non-U1 or U2 state.\n", | 
|  | 3617 | __func__); | 
|  | 3618 | return -EINVAL; | 
|  | 3619 | } | 
|  | 3620 |  | 
|  | 3621 | if (state == USB3_LPM_U1 && timeout > USB3_LPM_U1_MAX_TIMEOUT && | 
|  | 3622 | timeout != USB3_LPM_DEVICE_INITIATED) { | 
|  | 3623 | dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x, " | 
|  | 3624 | "which is a reserved value.\n", | 
|  | 3625 | usb3_lpm_names[state], timeout); | 
|  | 3626 | return -EINVAL; | 
|  | 3627 | } | 
|  | 3628 |  | 
|  | 3629 | ret = set_port_feature(udev->parent, | 
|  | 3630 | USB_PORT_LPM_TIMEOUT(timeout) | udev->portnum, | 
|  | 3631 | feature); | 
|  | 3632 | if (ret < 0) { | 
|  | 3633 | dev_warn(&udev->dev, "Failed to set %s timeout to 0x%x," | 
|  | 3634 | "error code %i\n", usb3_lpm_names[state], | 
|  | 3635 | timeout, ret); | 
|  | 3636 | return -EBUSY; | 
|  | 3637 | } | 
|  | 3638 | if (state == USB3_LPM_U1) | 
|  | 3639 | udev->u1_params.timeout = timeout; | 
|  | 3640 | else | 
|  | 3641 | udev->u2_params.timeout = timeout; | 
|  | 3642 | return 0; | 
|  | 3643 | } | 
|  | 3644 |  | 
|  | 3645 | /* | 
|  | 3646 | * Enable the hub-initiated U1/U2 idle timeouts, and enable device-initiated | 
|  | 3647 | * U1/U2 entry. | 
|  | 3648 | * | 
|  | 3649 | * We will attempt to enable U1 or U2, but there are no guarantees that the | 
|  | 3650 | * control transfers to set the hub timeout or enable device-initiated U1/U2 | 
|  | 3651 | * will be successful. | 
|  | 3652 | * | 
|  | 3653 | * If we cannot set the parent hub U1/U2 timeout, we attempt to let the xHCI | 
|  | 3654 | * driver know about it.  If that call fails, it should be harmless, and just | 
|  | 3655 | * take up more slightly more bus bandwidth for unnecessary U1/U2 exit latency. | 
|  | 3656 | */ | 
|  | 3657 | static void usb_enable_link_state(struct usb_hcd *hcd, struct usb_device *udev, | 
|  | 3658 | enum usb3_link_state state) | 
|  | 3659 | { | 
| Sarah Sharp | 65a95b7 | 2012-10-05 10:32:07 -0700 | [diff] [blame] | 3660 | int timeout, ret; | 
| Sarah Sharp | ae8963a | 2012-10-03 11:18:05 -0700 | [diff] [blame] | 3661 | __u8 u1_mel = udev->bos->ss_cap->bU1devExitLat; | 
|  | 3662 | __le16 u2_mel = udev->bos->ss_cap->bU2DevExitLat; | 
|  | 3663 |  | 
|  | 3664 | /* If the device says it doesn't have *any* exit latency to come out of | 
|  | 3665 | * U1 or U2, it's probably lying.  Assume it doesn't implement that link | 
|  | 3666 | * state. | 
|  | 3667 | */ | 
|  | 3668 | if ((state == USB3_LPM_U1 && u1_mel == 0) || | 
|  | 3669 | (state == USB3_LPM_U2 && u2_mel == 0)) | 
|  | 3670 | return; | 
| Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3671 |  | 
| Sarah Sharp | 65a95b7 | 2012-10-05 10:32:07 -0700 | [diff] [blame] | 3672 | /* | 
|  | 3673 | * First, let the device know about the exit latencies | 
|  | 3674 | * associated with the link state we're about to enable. | 
|  | 3675 | */ | 
|  | 3676 | ret = usb_req_set_sel(udev, state); | 
|  | 3677 | if (ret < 0) { | 
|  | 3678 | dev_warn(&udev->dev, "Set SEL for device-initiated %s failed.\n", | 
|  | 3679 | usb3_lpm_names[state]); | 
|  | 3680 | return; | 
|  | 3681 | } | 
|  | 3682 |  | 
| Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3683 | /* We allow the host controller to set the U1/U2 timeout internally | 
|  | 3684 | * first, so that it can change its schedule to account for the | 
|  | 3685 | * additional latency to send data to a device in a lower power | 
|  | 3686 | * link state. | 
|  | 3687 | */ | 
|  | 3688 | timeout = hcd->driver->enable_usb3_lpm_timeout(hcd, udev, state); | 
|  | 3689 |  | 
|  | 3690 | /* xHCI host controller doesn't want to enable this LPM state. */ | 
|  | 3691 | if (timeout == 0) | 
|  | 3692 | return; | 
|  | 3693 |  | 
|  | 3694 | if (timeout < 0) { | 
|  | 3695 | dev_warn(&udev->dev, "Could not enable %s link state, " | 
|  | 3696 | "xHCI error %i.\n", usb3_lpm_names[state], | 
|  | 3697 | timeout); | 
|  | 3698 | return; | 
|  | 3699 | } | 
|  | 3700 |  | 
|  | 3701 | if (usb_set_lpm_timeout(udev, state, timeout)) | 
|  | 3702 | /* If we can't set the parent hub U1/U2 timeout, | 
|  | 3703 | * device-initiated LPM won't be allowed either, so let the xHCI | 
|  | 3704 | * host know that this link state won't be enabled. | 
|  | 3705 | */ | 
|  | 3706 | hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state); | 
|  | 3707 |  | 
|  | 3708 | /* Only a configured device will accept the Set Feature U1/U2_ENABLE */ | 
|  | 3709 | else if (udev->actconfig) | 
|  | 3710 | usb_set_device_initiated_lpm(udev, state, true); | 
|  | 3711 |  | 
|  | 3712 | } | 
|  | 3713 |  | 
|  | 3714 | /* | 
|  | 3715 | * Disable the hub-initiated U1/U2 idle timeouts, and disable device-initiated | 
|  | 3716 | * U1/U2 entry. | 
|  | 3717 | * | 
|  | 3718 | * If this function returns -EBUSY, the parent hub will still allow U1/U2 entry. | 
|  | 3719 | * If zero is returned, the parent will not allow the link to go into U1/U2. | 
|  | 3720 | * | 
|  | 3721 | * If zero is returned, device-initiated U1/U2 entry may still be enabled, but | 
|  | 3722 | * it won't have an effect on the bus link state because the parent hub will | 
|  | 3723 | * still disallow device-initiated U1/U2 entry. | 
|  | 3724 | * | 
|  | 3725 | * If zero is returned, the xHCI host controller may still think U1/U2 entry is | 
|  | 3726 | * possible.  The result will be slightly more bus bandwidth will be taken up | 
|  | 3727 | * (to account for U1/U2 exit latency), but it should be harmless. | 
|  | 3728 | */ | 
|  | 3729 | static int usb_disable_link_state(struct usb_hcd *hcd, struct usb_device *udev, | 
|  | 3730 | enum usb3_link_state state) | 
|  | 3731 | { | 
|  | 3732 | int feature; | 
|  | 3733 |  | 
|  | 3734 | switch (state) { | 
|  | 3735 | case USB3_LPM_U1: | 
|  | 3736 | feature = USB_PORT_FEAT_U1_TIMEOUT; | 
|  | 3737 | break; | 
|  | 3738 | case USB3_LPM_U2: | 
|  | 3739 | feature = USB_PORT_FEAT_U2_TIMEOUT; | 
|  | 3740 | break; | 
|  | 3741 | default: | 
|  | 3742 | dev_warn(&udev->dev, "%s: Can't disable non-U1 or U2 state.\n", | 
|  | 3743 | __func__); | 
|  | 3744 | return -EINVAL; | 
|  | 3745 | } | 
|  | 3746 |  | 
|  | 3747 | if (usb_set_lpm_timeout(udev, state, 0)) | 
|  | 3748 | return -EBUSY; | 
|  | 3749 |  | 
|  | 3750 | usb_set_device_initiated_lpm(udev, state, false); | 
|  | 3751 |  | 
|  | 3752 | if (hcd->driver->disable_usb3_lpm_timeout(hcd, udev, state)) | 
|  | 3753 | dev_warn(&udev->dev, "Could not disable xHCI %s timeout, " | 
|  | 3754 | "bus schedule bandwidth may be impacted.\n", | 
|  | 3755 | usb3_lpm_names[state]); | 
|  | 3756 | return 0; | 
|  | 3757 | } | 
|  | 3758 |  | 
|  | 3759 | /* | 
|  | 3760 | * Disable hub-initiated and device-initiated U1 and U2 entry. | 
|  | 3761 | * Caller must own the bandwidth_mutex. | 
|  | 3762 | * | 
|  | 3763 | * This will call usb_enable_lpm() on failure, which will decrement | 
|  | 3764 | * lpm_disable_count, and will re-enable LPM if lpm_disable_count reaches zero. | 
|  | 3765 | */ | 
|  | 3766 | int usb_disable_lpm(struct usb_device *udev) | 
|  | 3767 | { | 
|  | 3768 | struct usb_hcd *hcd; | 
|  | 3769 |  | 
|  | 3770 | if (!udev || !udev->parent || | 
|  | 3771 | udev->speed != USB_SPEED_SUPER || | 
|  | 3772 | !udev->lpm_capable) | 
|  | 3773 | return 0; | 
|  | 3774 |  | 
|  | 3775 | hcd = bus_to_hcd(udev->bus); | 
|  | 3776 | if (!hcd || !hcd->driver->disable_usb3_lpm_timeout) | 
|  | 3777 | return 0; | 
|  | 3778 |  | 
|  | 3779 | udev->lpm_disable_count++; | 
| Dan Carpenter | 55558c3 | 2012-05-22 20:54:34 +0300 | [diff] [blame] | 3780 | if ((udev->u1_params.timeout == 0 && udev->u2_params.timeout == 0)) | 
| Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3781 | return 0; | 
|  | 3782 |  | 
|  | 3783 | /* If LPM is enabled, attempt to disable it. */ | 
|  | 3784 | if (usb_disable_link_state(hcd, udev, USB3_LPM_U1)) | 
|  | 3785 | goto enable_lpm; | 
|  | 3786 | if (usb_disable_link_state(hcd, udev, USB3_LPM_U2)) | 
|  | 3787 | goto enable_lpm; | 
|  | 3788 |  | 
|  | 3789 | return 0; | 
|  | 3790 |  | 
|  | 3791 | enable_lpm: | 
|  | 3792 | usb_enable_lpm(udev); | 
|  | 3793 | return -EBUSY; | 
|  | 3794 | } | 
|  | 3795 | EXPORT_SYMBOL_GPL(usb_disable_lpm); | 
|  | 3796 |  | 
|  | 3797 | /* Grab the bandwidth_mutex before calling usb_disable_lpm() */ | 
|  | 3798 | int usb_unlocked_disable_lpm(struct usb_device *udev) | 
|  | 3799 | { | 
|  | 3800 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); | 
|  | 3801 | int ret; | 
|  | 3802 |  | 
|  | 3803 | if (!hcd) | 
|  | 3804 | return -EINVAL; | 
|  | 3805 |  | 
|  | 3806 | mutex_lock(hcd->bandwidth_mutex); | 
|  | 3807 | ret = usb_disable_lpm(udev); | 
|  | 3808 | mutex_unlock(hcd->bandwidth_mutex); | 
|  | 3809 |  | 
|  | 3810 | return ret; | 
|  | 3811 | } | 
|  | 3812 | EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm); | 
|  | 3813 |  | 
|  | 3814 | /* | 
|  | 3815 | * Attempt to enable device-initiated and hub-initiated U1 and U2 entry.  The | 
|  | 3816 | * xHCI host policy may prevent U1 or U2 from being enabled. | 
|  | 3817 | * | 
|  | 3818 | * Other callers may have disabled link PM, so U1 and U2 entry will be disabled | 
|  | 3819 | * until the lpm_disable_count drops to zero.  Caller must own the | 
|  | 3820 | * bandwidth_mutex. | 
|  | 3821 | */ | 
|  | 3822 | void usb_enable_lpm(struct usb_device *udev) | 
|  | 3823 | { | 
|  | 3824 | struct usb_hcd *hcd; | 
|  | 3825 |  | 
|  | 3826 | if (!udev || !udev->parent || | 
|  | 3827 | udev->speed != USB_SPEED_SUPER || | 
|  | 3828 | !udev->lpm_capable) | 
|  | 3829 | return; | 
|  | 3830 |  | 
|  | 3831 | udev->lpm_disable_count--; | 
|  | 3832 | hcd = bus_to_hcd(udev->bus); | 
|  | 3833 | /* Double check that we can both enable and disable LPM. | 
|  | 3834 | * Device must be configured to accept set feature U1/U2 timeout. | 
|  | 3835 | */ | 
|  | 3836 | if (!hcd || !hcd->driver->enable_usb3_lpm_timeout || | 
|  | 3837 | !hcd->driver->disable_usb3_lpm_timeout) | 
|  | 3838 | return; | 
|  | 3839 |  | 
|  | 3840 | if (udev->lpm_disable_count > 0) | 
|  | 3841 | return; | 
|  | 3842 |  | 
|  | 3843 | usb_enable_link_state(hcd, udev, USB3_LPM_U1); | 
|  | 3844 | usb_enable_link_state(hcd, udev, USB3_LPM_U2); | 
|  | 3845 | } | 
|  | 3846 | EXPORT_SYMBOL_GPL(usb_enable_lpm); | 
|  | 3847 |  | 
|  | 3848 | /* Grab the bandwidth_mutex before calling usb_enable_lpm() */ | 
|  | 3849 | void usb_unlocked_enable_lpm(struct usb_device *udev) | 
|  | 3850 | { | 
|  | 3851 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); | 
|  | 3852 |  | 
|  | 3853 | if (!hcd) | 
|  | 3854 | return; | 
|  | 3855 |  | 
|  | 3856 | mutex_lock(hcd->bandwidth_mutex); | 
|  | 3857 | usb_enable_lpm(udev); | 
|  | 3858 | mutex_unlock(hcd->bandwidth_mutex); | 
|  | 3859 | } | 
|  | 3860 | EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm); | 
|  | 3861 |  | 
|  | 3862 |  | 
| Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 3863 | #else	/* CONFIG_PM */ | 
|  | 3864 |  | 
| Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 3865 | #define hub_suspend		NULL | 
|  | 3866 | #define hub_resume		NULL | 
|  | 3867 | #define hub_reset_resume	NULL | 
| Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3868 |  | 
|  | 3869 | int usb_disable_lpm(struct usb_device *udev) | 
|  | 3870 | { | 
|  | 3871 | return 0; | 
|  | 3872 | } | 
| Sarah Sharp | e9261fb | 2012-05-21 08:29:01 -0700 | [diff] [blame] | 3873 | EXPORT_SYMBOL_GPL(usb_disable_lpm); | 
| Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3874 |  | 
|  | 3875 | void usb_enable_lpm(struct usb_device *udev) { } | 
| Sarah Sharp | e9261fb | 2012-05-21 08:29:01 -0700 | [diff] [blame] | 3876 | EXPORT_SYMBOL_GPL(usb_enable_lpm); | 
| Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3877 |  | 
|  | 3878 | int usb_unlocked_disable_lpm(struct usb_device *udev) | 
|  | 3879 | { | 
|  | 3880 | return 0; | 
|  | 3881 | } | 
| Sarah Sharp | e9261fb | 2012-05-21 08:29:01 -0700 | [diff] [blame] | 3882 | EXPORT_SYMBOL_GPL(usb_unlocked_disable_lpm); | 
| Sarah Sharp | 1ea7e0e | 2012-04-24 17:21:50 -0700 | [diff] [blame] | 3883 |  | 
|  | 3884 | void usb_unlocked_enable_lpm(struct usb_device *udev) { } | 
| Sarah Sharp | e9261fb | 2012-05-21 08:29:01 -0700 | [diff] [blame] | 3885 | EXPORT_SYMBOL_GPL(usb_unlocked_enable_lpm); | 
| Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 3886 |  | 
|  | 3887 | int usb_disable_ltm(struct usb_device *udev) | 
|  | 3888 | { | 
|  | 3889 | return 0; | 
|  | 3890 | } | 
|  | 3891 | EXPORT_SYMBOL_GPL(usb_disable_ltm); | 
|  | 3892 |  | 
|  | 3893 | void usb_enable_ltm(struct usb_device *udev) { } | 
|  | 3894 | EXPORT_SYMBOL_GPL(usb_enable_ltm); | 
| Alan Stern | c4b51a4 | 2013-07-11 14:58:23 -0400 | [diff] [blame] | 3895 |  | 
|  | 3896 | #endif	/* CONFIG_PM */ | 
| Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 3897 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3898 |  | 
|  | 3899 | /* USB 2.0 spec, 7.1.7.3 / fig 7-29: | 
|  | 3900 | * | 
|  | 3901 | * Between connect detection and reset signaling there must be a delay | 
|  | 3902 | * of 100ms at least for debounce and power-settling.  The corresponding | 
|  | 3903 | * timer shall restart whenever the downstream port detects a disconnect. | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 3904 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3905 | * Apparently there are some bluetooth and irda-dongles and a number of | 
|  | 3906 | * low-speed devices for which this debounce period may last over a second. | 
|  | 3907 | * Not covered by the spec - but easy to deal with. | 
|  | 3908 | * | 
|  | 3909 | * This implementation uses a 1500ms total debounce timeout; if the | 
|  | 3910 | * connection isn't stable by then it returns -ETIMEDOUT.  It checks | 
|  | 3911 | * every 25ms for transient disconnects.  When the port status has been | 
|  | 3912 | * unchanged for 100ms it returns the port status. | 
|  | 3913 | */ | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3914 | 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] | 3915 | { | 
|  | 3916 | int ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3917 | u16 portchange, portstatus; | 
|  | 3918 | unsigned connection = 0xffff; | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 3919 | int total_time, stable_time = 0; | 
|  | 3920 | struct usb_port *port_dev = hub->ports[port1 - 1]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3921 |  | 
|  | 3922 | for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) { | 
|  | 3923 | ret = hub_port_status(hub, port1, &portstatus, &portchange); | 
|  | 3924 | if (ret < 0) | 
|  | 3925 | return ret; | 
|  | 3926 |  | 
|  | 3927 | if (!(portchange & USB_PORT_STAT_C_CONNECTION) && | 
|  | 3928 | (portstatus & USB_PORT_STAT_CONNECTION) == connection) { | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3929 | if (!must_be_connected || | 
|  | 3930 | (connection == USB_PORT_STAT_CONNECTION)) | 
|  | 3931 | stable_time += HUB_DEBOUNCE_STEP; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3932 | if (stable_time >= HUB_DEBOUNCE_STABLE) | 
|  | 3933 | break; | 
|  | 3934 | } else { | 
|  | 3935 | stable_time = 0; | 
|  | 3936 | connection = portstatus & USB_PORT_STAT_CONNECTION; | 
|  | 3937 | } | 
|  | 3938 |  | 
|  | 3939 | if (portchange & USB_PORT_STAT_C_CONNECTION) { | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 3940 | usb_clear_port_feature(hub->hdev, port1, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3941 | USB_PORT_FEAT_C_CONNECTION); | 
|  | 3942 | } | 
|  | 3943 |  | 
|  | 3944 | if (total_time >= HUB_DEBOUNCE_TIMEOUT) | 
|  | 3945 | break; | 
|  | 3946 | msleep(HUB_DEBOUNCE_STEP); | 
|  | 3947 | } | 
|  | 3948 |  | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 3949 | dev_dbg(&port_dev->dev, "debounce total %dms stable %dms status 0x%x\n", | 
|  | 3950 | total_time, stable_time, portstatus); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3951 |  | 
|  | 3952 | if (stable_time < HUB_DEBOUNCE_STABLE) | 
|  | 3953 | return -ETIMEDOUT; | 
|  | 3954 | return portstatus; | 
|  | 3955 | } | 
|  | 3956 |  | 
| Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 3957 | void usb_ep0_reinit(struct usb_device *udev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3958 | { | 
| Alan Stern | ddeac4e | 2009-01-15 17:03:33 -0500 | [diff] [blame] | 3959 | usb_disable_endpoint(udev, 0 + USB_DIR_IN, true); | 
|  | 3960 | usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true); | 
| Alan Stern | 2caf7fc | 2008-12-31 11:31:33 -0500 | [diff] [blame] | 3961 | usb_enable_endpoint(udev, &udev->ep0, true); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3962 | } | 
| Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 3963 | EXPORT_SYMBOL_GPL(usb_ep0_reinit); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3964 |  | 
|  | 3965 | #define usb_sndaddr0pipe()	(PIPE_CONTROL << 30) | 
|  | 3966 | #define usb_rcvaddr0pipe()	((PIPE_CONTROL << 30) | USB_DIR_IN) | 
|  | 3967 |  | 
| Alan Stern | 4326ed0 | 2007-07-30 17:08:43 -0400 | [diff] [blame] | 3968 | static int hub_set_address(struct usb_device *udev, int devnum) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3969 | { | 
|  | 3970 | int retval; | 
| Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 3971 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3972 |  | 
| Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 3973 | /* | 
|  | 3974 | * The host controller will choose the device address, | 
|  | 3975 | * instead of the core having chosen it earlier | 
|  | 3976 | */ | 
|  | 3977 | if (!hcd->driver->address_device && devnum <= 1) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3978 | return -EINVAL; | 
|  | 3979 | if (udev->state == USB_STATE_ADDRESS) | 
|  | 3980 | return 0; | 
|  | 3981 | if (udev->state != USB_STATE_DEFAULT) | 
|  | 3982 | return -EINVAL; | 
| Andiry Xu | c8d4af8 | 2010-10-14 07:22:51 -0700 | [diff] [blame] | 3983 | if (hcd->driver->address_device) | 
| Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 3984 | retval = hcd->driver->address_device(hcd, udev); | 
| Andiry Xu | c8d4af8 | 2010-10-14 07:22:51 -0700 | [diff] [blame] | 3985 | else | 
| Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 3986 | retval = usb_control_msg(udev, usb_sndaddr0pipe(), | 
|  | 3987 | USB_REQ_SET_ADDRESS, 0, devnum, 0, | 
|  | 3988 | NULL, 0, USB_CTRL_SET_TIMEOUT); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3989 | if (retval == 0) { | 
| Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 3990 | update_devnum(udev, devnum); | 
| David Vrabel | 4953d14 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 3991 | /* Device now using proper address. */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3992 | usb_set_device_state(udev, USB_STATE_ADDRESS); | 
| Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 3993 | usb_ep0_reinit(udev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3994 | } | 
|  | 3995 | return retval; | 
|  | 3996 | } | 
|  | 3997 |  | 
| Mathias Nyman | 890dae8 | 2013-09-30 17:26:31 +0300 | [diff] [blame] | 3998 | /* | 
|  | 3999 | * There are reports of USB 3.0 devices that say they support USB 2.0 Link PM | 
|  | 4000 | * when they're plugged into a USB 2.0 port, but they don't work when LPM is | 
|  | 4001 | * enabled. | 
|  | 4002 | * | 
|  | 4003 | * Only enable USB 2.0 Link PM if the port is internal (hardwired), or the | 
|  | 4004 | * device says it supports the new USB 2.0 Link PM errata by setting the BESL | 
|  | 4005 | * support bit in the BOS descriptor. | 
|  | 4006 | */ | 
|  | 4007 | static void hub_set_initial_usb2_lpm_policy(struct usb_device *udev) | 
|  | 4008 | { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4009 | struct usb_hub *hub = usb_hub_to_struct_hub(udev->parent); | 
|  | 4010 | int connect_type = USB_PORT_CONNECT_TYPE_UNKNOWN; | 
| Mathias Nyman | 890dae8 | 2013-09-30 17:26:31 +0300 | [diff] [blame] | 4011 |  | 
|  | 4012 | if (!udev->usb2_hw_lpm_capable) | 
|  | 4013 | return; | 
|  | 4014 |  | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4015 | if (hub) | 
|  | 4016 | connect_type = hub->ports[udev->portnum - 1]->connect_type; | 
| Mathias Nyman | 890dae8 | 2013-09-30 17:26:31 +0300 | [diff] [blame] | 4017 |  | 
| Bjørn Mork | 23c0582 | 2014-02-27 14:23:55 +0100 | [diff] [blame] | 4018 | if ((udev->bos->ext_cap->bmAttributes & cpu_to_le32(USB_BESL_SUPPORT)) || | 
| Mathias Nyman | 890dae8 | 2013-09-30 17:26:31 +0300 | [diff] [blame] | 4019 | connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) { | 
|  | 4020 | udev->usb2_hw_lpm_allowed = 1; | 
|  | 4021 | usb_set_usb2_hardware_lpm(udev, 1); | 
|  | 4022 | } | 
|  | 4023 | } | 
|  | 4024 |  | 
| Dan Williams | 48fc7db | 2013-12-05 17:07:27 -0800 | [diff] [blame] | 4025 | static int hub_enable_device(struct usb_device *udev) | 
|  | 4026 | { | 
|  | 4027 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); | 
|  | 4028 |  | 
|  | 4029 | if (!hcd->driver->enable_device) | 
|  | 4030 | return 0; | 
|  | 4031 | if (udev->state == USB_STATE_ADDRESS) | 
|  | 4032 | return 0; | 
|  | 4033 | if (udev->state != USB_STATE_DEFAULT) | 
|  | 4034 | return -EINVAL; | 
|  | 4035 |  | 
|  | 4036 | return hcd->driver->enable_device(hcd, udev); | 
|  | 4037 | } | 
|  | 4038 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4039 | /* Reset device, (re)assign address, get device descriptor. | 
|  | 4040 | * Device connection must be stable, no more debouncing needed. | 
|  | 4041 | * Returns device in USB_STATE_ADDRESS, except on error. | 
|  | 4042 | * | 
|  | 4043 | * If this is called for an already-existing device (as part of | 
| Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 4044 | * 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] | 4045 | * newly detected device that is not accessible through any global | 
|  | 4046 | * pointers, it's not necessary to lock the device. | 
|  | 4047 | */ | 
|  | 4048 | static int | 
|  | 4049 | hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1, | 
|  | 4050 | int retry_counter) | 
|  | 4051 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4052 | struct usb_device	*hdev = hub->hdev; | 
| Sarah Sharp | e7b7717 | 2009-04-27 19:54:26 -0700 | [diff] [blame] | 4053 | struct usb_hcd		*hcd = bus_to_hcd(hdev->bus); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4054 | int			i, j, retval; | 
|  | 4055 | unsigned		delay = HUB_SHORT_RESET_TIME; | 
|  | 4056 | enum usb_device_speed	oldspeed = udev->speed; | 
| Michal Nazarewicz | e538dfd | 2011-08-30 17:11:19 +0200 | [diff] [blame] | 4057 | const char		*speed; | 
| Alan Stern | 4326ed0 | 2007-07-30 17:08:43 -0400 | [diff] [blame] | 4058 | int			devnum = udev->devnum; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4059 |  | 
|  | 4060 | /* root hub ports have a slightly longer reset period | 
|  | 4061 | * (from USB 2.0 spec, section 7.1.7.5) | 
|  | 4062 | */ | 
|  | 4063 | if (!hdev->parent) { | 
|  | 4064 | delay = HUB_ROOT_RESET_TIME; | 
|  | 4065 | if (port1 == hdev->bus->otg_port) | 
|  | 4066 | hdev->bus->b_hnp_enable = 0; | 
|  | 4067 | } | 
|  | 4068 |  | 
|  | 4069 | /* Some low speed devices have problems with the quick delay, so */ | 
|  | 4070 | /*  be a bit pessimistic with those devices. RHbug #23670 */ | 
|  | 4071 | if (oldspeed == USB_SPEED_LOW) | 
|  | 4072 | delay = HUB_LONG_RESET_TIME; | 
|  | 4073 |  | 
| Todd E Brandt | 6fecd4f | 2014-05-19 10:55:32 -0700 | [diff] [blame] | 4074 | mutex_lock(&hdev->bus->usb_address0_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4075 |  | 
| Luben Tuikov | 07194ab | 2011-02-11 11:33:10 -0800 | [diff] [blame] | 4076 | /* Reset the device; full speed may morph to high speed */ | 
|  | 4077 | /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */ | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 4078 | retval = hub_port_reset(hub, port1, udev, delay, false); | 
| Luben Tuikov | 07194ab | 2011-02-11 11:33:10 -0800 | [diff] [blame] | 4079 | if (retval < 0)		/* error or disconnect */ | 
|  | 4080 | goto fail; | 
|  | 4081 | /* success, speed is known */ | 
|  | 4082 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4083 | retval = -ENODEV; | 
|  | 4084 |  | 
|  | 4085 | if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) { | 
|  | 4086 | dev_dbg(&udev->dev, "device reset changed speed!\n"); | 
|  | 4087 | goto fail; | 
|  | 4088 | } | 
|  | 4089 | oldspeed = udev->speed; | 
| Alan Stern | 4326ed0 | 2007-07-30 17:08:43 -0400 | [diff] [blame] | 4090 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4091 | /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ... | 
|  | 4092 | * it's fixed size except for full speed devices. | 
| Inaky Perez-Gonzalez | 5bb6e0a | 2006-08-25 19:35:30 -0700 | [diff] [blame] | 4093 | * For Wireless USB devices, ep0 max packet is always 512 (tho | 
|  | 4094 | * reported as 0xff in the device descriptor). WUSB1.0[4.8.1]. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4095 | */ | 
|  | 4096 | switch (udev->speed) { | 
| Sarah Sharp | 6b403b0 | 2009-04-27 19:54:10 -0700 | [diff] [blame] | 4097 | case USB_SPEED_SUPER: | 
| Greg Kroah-Hartman | 551cdbb | 2010-01-14 11:08:04 -0800 | [diff] [blame] | 4098 | case USB_SPEED_WIRELESS:	/* fixed at 512 */ | 
| Harvey Harrison | 551509d | 2009-02-11 14:11:36 -0800 | [diff] [blame] | 4099 | udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512); | 
| Inaky Perez-Gonzalez | 5bb6e0a | 2006-08-25 19:35:30 -0700 | [diff] [blame] | 4100 | break; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4101 | case USB_SPEED_HIGH:		/* fixed at 64 */ | 
| Harvey Harrison | 551509d | 2009-02-11 14:11:36 -0800 | [diff] [blame] | 4102 | udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4103 | break; | 
|  | 4104 | case USB_SPEED_FULL:		/* 8, 16, 32, or 64 */ | 
|  | 4105 | /* to determine the ep0 maxpacket size, try to read | 
|  | 4106 | * the device descriptor to get bMaxPacketSize0 and | 
|  | 4107 | * then correct our initial guess. | 
|  | 4108 | */ | 
| Harvey Harrison | 551509d | 2009-02-11 14:11:36 -0800 | [diff] [blame] | 4109 | udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4110 | break; | 
|  | 4111 | case USB_SPEED_LOW:		/* fixed at 8 */ | 
| Harvey Harrison | 551509d | 2009-02-11 14:11:36 -0800 | [diff] [blame] | 4112 | udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4113 | break; | 
|  | 4114 | default: | 
|  | 4115 | goto fail; | 
|  | 4116 | } | 
| Michal Nazarewicz | e538dfd | 2011-08-30 17:11:19 +0200 | [diff] [blame] | 4117 |  | 
|  | 4118 | if (udev->speed == USB_SPEED_WIRELESS) | 
|  | 4119 | speed = "variable speed Wireless"; | 
|  | 4120 | else | 
|  | 4121 | speed = usb_speed_string(udev->speed); | 
|  | 4122 |  | 
| Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 4123 | if (udev->speed != USB_SPEED_SUPER) | 
|  | 4124 | dev_info(&udev->dev, | 
| Michal Nazarewicz | e538dfd | 2011-08-30 17:11:19 +0200 | [diff] [blame] | 4125 | "%s %s USB device number %d using %s\n", | 
|  | 4126 | (udev->config) ? "reset" : "new", speed, | 
| Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 4127 | devnum, udev->bus->controller->driver->name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4128 |  | 
|  | 4129 | /* Set up TT records, if needed  */ | 
|  | 4130 | if (hdev->tt) { | 
|  | 4131 | udev->tt = hdev->tt; | 
|  | 4132 | udev->ttport = hdev->ttport; | 
|  | 4133 | } else if (udev->speed != USB_SPEED_HIGH | 
|  | 4134 | && hdev->speed == USB_SPEED_HIGH) { | 
| Alan Stern | d199c96 | 2011-01-31 10:56:37 -0500 | [diff] [blame] | 4135 | if (!hub->tt.hub) { | 
|  | 4136 | dev_err(&udev->dev, "parent hub has no TT\n"); | 
|  | 4137 | retval = -EINVAL; | 
|  | 4138 | goto fail; | 
|  | 4139 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4140 | udev->tt = &hub->tt; | 
|  | 4141 | udev->ttport = port1; | 
|  | 4142 | } | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4143 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4144 | /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way? | 
|  | 4145 | * Because device hardware and firmware is sometimes buggy in | 
|  | 4146 | * this area, and this is how Linux has done it for ages. | 
|  | 4147 | * Change it cautiously. | 
|  | 4148 | * | 
| Dan Williams | 48fc7db | 2013-12-05 17:07:27 -0800 | [diff] [blame] | 4149 | * NOTE:  If use_new_scheme() is true we will start by issuing | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4150 | * a 64-byte GET_DESCRIPTOR request.  This is what Windows does, | 
|  | 4151 | * so it may help with some non-standards-compliant devices. | 
|  | 4152 | * Otherwise we start with SET_ADDRESS and then try to read the | 
|  | 4153 | * first 8 bytes of the device descriptor to get the ep0 maxpacket | 
|  | 4154 | * value. | 
|  | 4155 | */ | 
|  | 4156 | for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) { | 
| Dan Williams | 48fc7db | 2013-12-05 17:07:27 -0800 | [diff] [blame] | 4157 | bool did_new_scheme = false; | 
|  | 4158 |  | 
|  | 4159 | if (use_new_scheme(udev, retry_counter)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4160 | struct usb_device_descriptor *buf; | 
|  | 4161 | int r = 0; | 
|  | 4162 |  | 
| Dan Williams | 48fc7db | 2013-12-05 17:07:27 -0800 | [diff] [blame] | 4163 | did_new_scheme = true; | 
|  | 4164 | retval = hub_enable_device(udev); | 
| Oliver Neukum | 938569e | 2014-02-27 10:57:10 +0100 | [diff] [blame] | 4165 | if (retval < 0) { | 
|  | 4166 | dev_err(&udev->dev, | 
|  | 4167 | "hub failed to enable device, error %d\n", | 
|  | 4168 | retval); | 
| Dan Williams | 48fc7db | 2013-12-05 17:07:27 -0800 | [diff] [blame] | 4169 | goto fail; | 
| Oliver Neukum | 938569e | 2014-02-27 10:57:10 +0100 | [diff] [blame] | 4170 | } | 
| Dan Williams | 48fc7db | 2013-12-05 17:07:27 -0800 | [diff] [blame] | 4171 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4172 | #define GET_DESCRIPTOR_BUFSIZE	64 | 
|  | 4173 | buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO); | 
|  | 4174 | if (!buf) { | 
|  | 4175 | retval = -ENOMEM; | 
|  | 4176 | continue; | 
|  | 4177 | } | 
|  | 4178 |  | 
| Alan Stern | b89ee19 | 2007-05-11 10:19:04 -0400 | [diff] [blame] | 4179 | /* Retry on all errors; some devices are flakey. | 
|  | 4180 | * 255 is for WUSB devices, we actually need to use | 
|  | 4181 | * 512 (WUSB1.0[4.8.1]). | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4182 | */ | 
|  | 4183 | for (j = 0; j < 3; ++j) { | 
|  | 4184 | buf->bMaxPacketSize0 = 0; | 
|  | 4185 | r = usb_control_msg(udev, usb_rcvaddr0pipe(), | 
|  | 4186 | USB_REQ_GET_DESCRIPTOR, USB_DIR_IN, | 
|  | 4187 | USB_DT_DEVICE << 8, 0, | 
|  | 4188 | buf, GET_DESCRIPTOR_BUFSIZE, | 
| Jaroslav Kysela | fd7c519 | 2008-10-10 16:24:45 +0200 | [diff] [blame] | 4189 | initial_descriptor_timeout); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4190 | switch (buf->bMaxPacketSize0) { | 
| Inaky Perez-Gonzalez | 5bb6e0a | 2006-08-25 19:35:30 -0700 | [diff] [blame] | 4191 | case 8: case 16: case 32: case 64: case 255: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4192 | if (buf->bDescriptorType == | 
|  | 4193 | USB_DT_DEVICE) { | 
|  | 4194 | r = 0; | 
|  | 4195 | break; | 
|  | 4196 | } | 
|  | 4197 | /* FALL THROUGH */ | 
|  | 4198 | default: | 
|  | 4199 | if (r == 0) | 
|  | 4200 | r = -EPROTO; | 
|  | 4201 | break; | 
|  | 4202 | } | 
|  | 4203 | if (r == 0) | 
|  | 4204 | break; | 
|  | 4205 | } | 
|  | 4206 | udev->descriptor.bMaxPacketSize0 = | 
|  | 4207 | buf->bMaxPacketSize0; | 
|  | 4208 | kfree(buf); | 
|  | 4209 |  | 
| Andiry Xu | 75d7cf7 | 2011-09-13 16:41:11 -0700 | [diff] [blame] | 4210 | retval = hub_port_reset(hub, port1, udev, delay, false); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4211 | if (retval < 0)		/* error or disconnect */ | 
|  | 4212 | goto fail; | 
|  | 4213 | if (oldspeed != udev->speed) { | 
|  | 4214 | dev_dbg(&udev->dev, | 
|  | 4215 | "device reset changed speed!\n"); | 
|  | 4216 | retval = -ENODEV; | 
|  | 4217 | goto fail; | 
|  | 4218 | } | 
|  | 4219 | if (r) { | 
| Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 4220 | if (r != -ENODEV) | 
|  | 4221 | dev_err(&udev->dev, "device descriptor read/64, error %d\n", | 
|  | 4222 | r); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4223 | retval = -EMSGSIZE; | 
|  | 4224 | continue; | 
|  | 4225 | } | 
|  | 4226 | #undef GET_DESCRIPTOR_BUFSIZE | 
|  | 4227 | } | 
|  | 4228 |  | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4229 | /* | 
|  | 4230 | * If device is WUSB, we already assigned an | 
|  | 4231 | * unauthorized address in the Connect Ack sequence; | 
|  | 4232 | * authorization will assign the final address. | 
|  | 4233 | */ | 
| Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 4234 | if (udev->wusb == 0) { | 
| Inaky Perez-Gonzalez | 6c529cd | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 4235 | for (j = 0; j < SET_ADDRESS_TRIES; ++j) { | 
|  | 4236 | retval = hub_set_address(udev, devnum); | 
|  | 4237 | if (retval >= 0) | 
|  | 4238 | break; | 
|  | 4239 | msleep(200); | 
|  | 4240 | } | 
|  | 4241 | if (retval < 0) { | 
| Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 4242 | if (retval != -ENODEV) | 
|  | 4243 | dev_err(&udev->dev, "device not accepting address %d, error %d\n", | 
|  | 4244 | devnum, retval); | 
| Inaky Perez-Gonzalez | 6c529cd | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 4245 | goto fail; | 
|  | 4246 | } | 
| Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 4247 | if (udev->speed == USB_SPEED_SUPER) { | 
|  | 4248 | devnum = udev->devnum; | 
|  | 4249 | dev_info(&udev->dev, | 
| Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 4250 | "%s SuperSpeed USB device number %d using %s\n", | 
| Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 4251 | (udev->config) ? "reset" : "new", | 
| Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 4252 | devnum, udev->bus->controller->driver->name); | 
| Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 4253 | } | 
| Inaky Perez-Gonzalez | 6c529cd | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 4254 |  | 
|  | 4255 | /* cope with hardware quirkiness: | 
|  | 4256 | *  - let SET_ADDRESS settle, some device hardware wants it | 
|  | 4257 | *  - read ep0 maxpacket even for high and low speed, | 
|  | 4258 | */ | 
|  | 4259 | msleep(10); | 
| Dan Williams | 48fc7db | 2013-12-05 17:07:27 -0800 | [diff] [blame] | 4260 | /* use_new_scheme() checks the speed which may have | 
|  | 4261 | * changed since the initial look so we cache the result | 
|  | 4262 | * in did_new_scheme | 
|  | 4263 | */ | 
|  | 4264 | if (did_new_scheme) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4265 | break; | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4266 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4267 |  | 
|  | 4268 | retval = usb_get_device_descriptor(udev, 8); | 
|  | 4269 | if (retval < 8) { | 
| Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 4270 | if (retval != -ENODEV) | 
|  | 4271 | dev_err(&udev->dev, | 
| Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 4272 | "device descriptor read/8, error %d\n", | 
|  | 4273 | retval); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4274 | if (retval >= 0) | 
|  | 4275 | retval = -EMSGSIZE; | 
|  | 4276 | } else { | 
|  | 4277 | retval = 0; | 
|  | 4278 | break; | 
|  | 4279 | } | 
|  | 4280 | } | 
|  | 4281 | if (retval) | 
|  | 4282 | goto fail; | 
|  | 4283 |  | 
| Peter Chen | b76baa8 | 2012-11-09 09:44:43 +0800 | [diff] [blame] | 4284 | if (hcd->phy && !hdev->parent) | 
| Peter Chen | ac96511 | 2012-11-09 09:44:44 +0800 | [diff] [blame] | 4285 | usb_phy_notify_connect(hcd->phy, udev->speed); | 
| Peter Chen | b76baa8 | 2012-11-09 09:44:43 +0800 | [diff] [blame] | 4286 |  | 
| Elric Fu | d8aec3d | 2012-03-26 21:16:02 +0800 | [diff] [blame] | 4287 | /* | 
|  | 4288 | * Some superspeed devices have finished the link training process | 
|  | 4289 | * and attached to a superspeed hub port, but the device descriptor | 
|  | 4290 | * got from those devices show they aren't superspeed devices. Warm | 
|  | 4291 | * reset the port attached by the devices can fix them. | 
|  | 4292 | */ | 
|  | 4293 | if ((udev->speed == USB_SPEED_SUPER) && | 
|  | 4294 | (le16_to_cpu(udev->descriptor.bcdUSB) < 0x0300)) { | 
|  | 4295 | dev_err(&udev->dev, "got a wrong device descriptor, " | 
|  | 4296 | "warm reset device\n"); | 
|  | 4297 | hub_port_reset(hub, port1, udev, | 
|  | 4298 | HUB_BH_RESET_TIME, true); | 
|  | 4299 | retval = -EINVAL; | 
|  | 4300 | goto fail; | 
|  | 4301 | } | 
|  | 4302 |  | 
| Sarah Sharp | 6b403b0 | 2009-04-27 19:54:10 -0700 | [diff] [blame] | 4303 | if (udev->descriptor.bMaxPacketSize0 == 0xff || | 
|  | 4304 | udev->speed == USB_SPEED_SUPER) | 
|  | 4305 | i = 512; | 
|  | 4306 | else | 
|  | 4307 | i = udev->descriptor.bMaxPacketSize0; | 
| Kuninori Morimoto | 29cc889 | 2011-08-23 03:12:03 -0700 | [diff] [blame] | 4308 | if (usb_endpoint_maxp(&udev->ep0.desc) != i) { | 
| Alan Stern | 56626a7 | 2010-10-14 15:25:21 -0400 | [diff] [blame] | 4309 | if (udev->speed == USB_SPEED_LOW || | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4310 | !(i == 8 || i == 16 || i == 32 || i == 64)) { | 
| Alan Stern | 56626a7 | 2010-10-14 15:25:21 -0400 | [diff] [blame] | 4311 | dev_err(&udev->dev, "Invalid ep0 maxpacket: %d\n", i); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4312 | retval = -EMSGSIZE; | 
|  | 4313 | goto fail; | 
|  | 4314 | } | 
| Alan Stern | 56626a7 | 2010-10-14 15:25:21 -0400 | [diff] [blame] | 4315 | if (udev->speed == USB_SPEED_FULL) | 
|  | 4316 | dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i); | 
|  | 4317 | else | 
|  | 4318 | dev_warn(&udev->dev, "Using ep0 maxpacket: %d\n", i); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4319 | udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i); | 
| Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 4320 | usb_ep0_reinit(udev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4321 | } | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4322 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4323 | retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE); | 
|  | 4324 | if (retval < (signed)sizeof(udev->descriptor)) { | 
| Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 4325 | if (retval != -ENODEV) | 
|  | 4326 | dev_err(&udev->dev, "device descriptor read/all, error %d\n", | 
|  | 4327 | retval); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4328 | if (retval >= 0) | 
|  | 4329 | retval = -ENOMSG; | 
|  | 4330 | goto fail; | 
|  | 4331 | } | 
|  | 4332 |  | 
| Andiry Xu | 1ff4df5 | 2011-09-23 14:19:48 -0700 | [diff] [blame] | 4333 | if (udev->wusb == 0 && le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0201) { | 
|  | 4334 | retval = usb_get_bos_descriptor(udev); | 
| Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 4335 | if (!retval) { | 
| Sarah Sharp | d9b2099 | 2012-02-20 08:31:26 -0800 | [diff] [blame] | 4336 | udev->lpm_capable = usb_device_supports_lpm(udev); | 
| Sarah Sharp | 51e0a01 | 2012-02-20 12:02:19 -0800 | [diff] [blame] | 4337 | usb_set_lpm_parameters(udev); | 
|  | 4338 | } | 
| Andiry Xu | 1ff4df5 | 2011-09-23 14:19:48 -0700 | [diff] [blame] | 4339 | } | 
| Andiry Xu | 3148bf0 | 2011-09-23 14:19:47 -0700 | [diff] [blame] | 4340 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4341 | retval = 0; | 
| Alek Du | 48f2497 | 2010-06-04 15:47:55 +0800 | [diff] [blame] | 4342 | /* notify HCD that we have a device connected and addressed */ | 
|  | 4343 | if (hcd->driver->update_device) | 
|  | 4344 | hcd->driver->update_device(hcd, udev); | 
| Mathias Nyman | 890dae8 | 2013-09-30 17:26:31 +0300 | [diff] [blame] | 4345 | hub_set_initial_usb2_lpm_policy(udev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4346 | fail: | 
| Alan Stern | 4326ed0 | 2007-07-30 17:08:43 -0400 | [diff] [blame] | 4347 | if (retval) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4348 | hub_port_disable(hub, port1, 0); | 
| Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 4349 | update_devnum(udev, devnum);	/* for disconnect processing */ | 
| Alan Stern | 4326ed0 | 2007-07-30 17:08:43 -0400 | [diff] [blame] | 4350 | } | 
| Todd E Brandt | 6fecd4f | 2014-05-19 10:55:32 -0700 | [diff] [blame] | 4351 | mutex_unlock(&hdev->bus->usb_address0_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4352 | return retval; | 
|  | 4353 | } | 
|  | 4354 |  | 
|  | 4355 | static void | 
|  | 4356 | check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1) | 
|  | 4357 | { | 
|  | 4358 | struct usb_qualifier_descriptor	*qual; | 
|  | 4359 | int				status; | 
|  | 4360 |  | 
| Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 4361 | qual = kmalloc (sizeof *qual, GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4362 | if (qual == NULL) | 
|  | 4363 | return; | 
|  | 4364 |  | 
|  | 4365 | status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0, | 
|  | 4366 | qual, sizeof *qual); | 
|  | 4367 | if (status == sizeof *qual) { | 
|  | 4368 | dev_info(&udev->dev, "not running at top speed; " | 
|  | 4369 | "connect to a high speed hub\n"); | 
|  | 4370 | /* hub LEDs are probably harder to miss than syslog */ | 
|  | 4371 | if (hub->has_indicators) { | 
|  | 4372 | hub->indicator[port1-1] = INDICATOR_GREEN_BLINK; | 
| Shaibal Dutta | 22f6a0f | 2014-02-01 19:16:46 -0800 | [diff] [blame] | 4373 | queue_delayed_work(system_power_efficient_wq, | 
|  | 4374 | &hub->leds, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4375 | } | 
|  | 4376 | } | 
| Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 4377 | kfree(qual); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4378 | } | 
|  | 4379 |  | 
|  | 4380 | static unsigned | 
|  | 4381 | hub_power_remaining (struct usb_hub *hub) | 
|  | 4382 | { | 
|  | 4383 | struct usb_device *hdev = hub->hdev; | 
|  | 4384 | int remaining; | 
| Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4385 | int port1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4386 |  | 
| Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4387 | if (!hub->limited_power) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4388 | return 0; | 
|  | 4389 |  | 
| Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4390 | remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent; | 
|  | 4391 | for (port1 = 1; port1 <= hdev->maxchild; ++port1) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4392 | struct usb_port *port_dev = hub->ports[port1 - 1]; | 
|  | 4393 | struct usb_device *udev = port_dev->child; | 
|  | 4394 | unsigned unit_load; | 
|  | 4395 | int delta; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4396 |  | 
|  | 4397 | if (!udev) | 
|  | 4398 | continue; | 
| Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 4399 | if (hub_is_superspeed(udev)) | 
|  | 4400 | unit_load = 150; | 
|  | 4401 | else | 
|  | 4402 | unit_load = 100; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4403 |  | 
| Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 4404 | /* | 
|  | 4405 | * Unconfigured devices may not use more than one unit load, | 
|  | 4406 | * or 8mA for OTG ports | 
|  | 4407 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4408 | if (udev->actconfig) | 
| Sebastian Andrzej Siewior | 8d8479d | 2012-12-18 15:25:46 +0100 | [diff] [blame] | 4409 | delta = usb_get_max_power(udev, udev->actconfig); | 
| Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4410 | else if (port1 != udev->bus->otg_port || hdev->parent) | 
| Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 4411 | delta = unit_load; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4412 | else | 
| Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4413 | delta = 8; | 
|  | 4414 | if (delta > hub->mA_per_port) | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4415 | dev_warn(&port_dev->dev, "%dmA is over %umA budget!\n", | 
|  | 4416 | delta, hub->mA_per_port); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4417 | remaining -= delta; | 
|  | 4418 | } | 
|  | 4419 | if (remaining < 0) { | 
| Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4420 | dev_warn(hub->intfdev, "%dmA over power budget!\n", | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4421 | -remaining); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4422 | remaining = 0; | 
|  | 4423 | } | 
|  | 4424 | return remaining; | 
|  | 4425 | } | 
|  | 4426 |  | 
|  | 4427 | /* Handle physical or logical connection change events. | 
|  | 4428 | * This routine is called when: | 
|  | 4429 | * 	a port connection-change occurs; | 
|  | 4430 | *	a port enable-change occurs (often caused by EMI); | 
| Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 4431 | *	usb_reset_and_verify_device() encounters changed descriptors (as from | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4432 | *		a firmware download) | 
|  | 4433 | * caller already locked the hub | 
|  | 4434 | */ | 
|  | 4435 | static void hub_port_connect_change(struct usb_hub *hub, int port1, | 
|  | 4436 | u16 portstatus, u16 portchange) | 
|  | 4437 | { | 
|  | 4438 | struct usb_device *hdev = hub->hdev; | 
| Balaji Rao | 90da096 | 2007-11-22 01:58:14 +0530 | [diff] [blame] | 4439 | struct usb_hcd *hcd = bus_to_hcd(hdev->bus); | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4440 | struct usb_port *port_dev = hub->ports[port1 - 1]; | 
| Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4441 | struct usb_device *udev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4442 | int status, i; | 
| Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 4443 | unsigned unit_load; | 
| Alan Stern | 24618b0 | 2008-04-28 11:06:28 -0400 | [diff] [blame] | 4444 |  | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4445 | dev_dbg(&port_dev->dev, "status %04x, change %04x, %s\n", | 
|  | 4446 | portstatus, portchange, portspeed(hub, portstatus)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4447 |  | 
|  | 4448 | if (hub->has_indicators) { | 
|  | 4449 | set_port_led(hub, port1, HUB_LED_AUTO); | 
|  | 4450 | hub->indicator[port1-1] = INDICATOR_AUTO; | 
|  | 4451 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4452 |  | 
|  | 4453 | #ifdef	CONFIG_USB_OTG | 
|  | 4454 | /* during HNP, don't repeat the debounce */ | 
|  | 4455 | if (hdev->bus->is_b_host) | 
| Alan Stern | 24618b0 | 2008-04-28 11:06:28 -0400 | [diff] [blame] | 4456 | portchange &= ~(USB_PORT_STAT_C_CONNECTION | | 
|  | 4457 | USB_PORT_STAT_C_ENABLE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4458 | #endif | 
|  | 4459 |  | 
| Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4460 | /* Try to resuscitate an existing device */ | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4461 | udev = port_dev->child; | 
| Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4462 | if ((portstatus & USB_PORT_STAT_CONNECTION) && udev && | 
|  | 4463 | udev->state != USB_STATE_NOTATTACHED) { | 
| Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4464 | usb_lock_device(udev); | 
|  | 4465 | if (portstatus & USB_PORT_STAT_ENABLE) { | 
|  | 4466 | status = 0;		/* Nothing to do */ | 
| Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4467 |  | 
| Alan Stern | 84ebc10 | 2013-03-27 16:14:46 -0400 | [diff] [blame] | 4468 | #ifdef CONFIG_PM_RUNTIME | 
| Alan Stern | 5257d97 | 2008-09-22 14:43:08 -0400 | [diff] [blame] | 4469 | } else if (udev->state == USB_STATE_SUSPENDED && | 
|  | 4470 | udev->persist_enabled) { | 
| Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4471 | /* For a suspended device, treat this as a | 
|  | 4472 | * remote wakeup event. | 
|  | 4473 | */ | 
| Alan Stern | 0534d46 | 2010-01-08 12:56:30 -0500 | [diff] [blame] | 4474 | status = usb_remote_wakeup(udev); | 
| Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4475 | #endif | 
|  | 4476 |  | 
|  | 4477 | } else { | 
| Alan Stern | 5257d97 | 2008-09-22 14:43:08 -0400 | [diff] [blame] | 4478 | status = -ENODEV;	/* Don't resuscitate */ | 
| Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4479 | } | 
|  | 4480 | usb_unlock_device(udev); | 
|  | 4481 |  | 
|  | 4482 | if (status == 0) { | 
|  | 4483 | clear_bit(port1, hub->change_bits); | 
|  | 4484 | return; | 
|  | 4485 | } | 
|  | 4486 | } | 
|  | 4487 |  | 
| Alan Stern | 24618b0 | 2008-04-28 11:06:28 -0400 | [diff] [blame] | 4488 | /* Disconnect any existing devices under this port */ | 
| Peter Chen | b76baa8 | 2012-11-09 09:44:43 +0800 | [diff] [blame] | 4489 | if (udev) { | 
|  | 4490 | if (hcd->phy && !hdev->parent && | 
|  | 4491 | !(portstatus & USB_PORT_STAT_CONNECTION)) | 
| Peter Chen | ac96511 | 2012-11-09 09:44:44 +0800 | [diff] [blame] | 4492 | usb_phy_notify_disconnect(hcd->phy, udev->speed); | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4493 | usb_disconnect(&port_dev->child); | 
| Peter Chen | b76baa8 | 2012-11-09 09:44:43 +0800 | [diff] [blame] | 4494 | } | 
| Alan Stern | 24618b0 | 2008-04-28 11:06:28 -0400 | [diff] [blame] | 4495 | clear_bit(port1, hub->change_bits); | 
|  | 4496 |  | 
| Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 4497 | /* We can forget about a "removed" device when there's a physical | 
|  | 4498 | * disconnect or the connect status changes. | 
|  | 4499 | */ | 
|  | 4500 | if (!(portstatus & USB_PORT_STAT_CONNECTION) || | 
|  | 4501 | (portchange & USB_PORT_STAT_C_CONNECTION)) | 
|  | 4502 | clear_bit(port1, hub->removed_bits); | 
|  | 4503 |  | 
| Alan Stern | 5257d97 | 2008-09-22 14:43:08 -0400 | [diff] [blame] | 4504 | if (portchange & (USB_PORT_STAT_C_CONNECTION | | 
|  | 4505 | USB_PORT_STAT_C_ENABLE)) { | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4506 | status = hub_port_debounce_be_stable(hub, port1); | 
| Alan Stern | 5257d97 | 2008-09-22 14:43:08 -0400 | [diff] [blame] | 4507 | if (status < 0) { | 
| Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 4508 | if (status != -ENODEV && printk_ratelimit()) | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4509 | dev_err(&port_dev->dev, | 
|  | 4510 | "connect-debounce failed\n"); | 
| Alan Stern | 5257d97 | 2008-09-22 14:43:08 -0400 | [diff] [blame] | 4511 | portstatus &= ~USB_PORT_STAT_CONNECTION; | 
|  | 4512 | } else { | 
|  | 4513 | portstatus = status; | 
|  | 4514 | } | 
|  | 4515 | } | 
|  | 4516 |  | 
| Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 4517 | /* Return now if debouncing failed or nothing is connected or | 
|  | 4518 | * the device was "removed". | 
|  | 4519 | */ | 
|  | 4520 | if (!(portstatus & USB_PORT_STAT_CONNECTION) || | 
|  | 4521 | test_bit(port1, hub->removed_bits)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4522 |  | 
|  | 4523 | /* maybe switch power back on (e.g. root hub was reset) */ | 
| Dan Williams | 9262c19 | 2014-05-20 18:08:12 -0700 | [diff] [blame] | 4524 | if (hub_is_port_power_switchable(hub) | 
| Andiry Xu | 0ed9a57 | 2011-04-27 18:07:43 +0800 | [diff] [blame] | 4525 | && !port_is_power_on(hub, portstatus)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4526 | set_port_feature(hdev, port1, USB_PORT_FEAT_POWER); | 
| Alan Stern | 5257d97 | 2008-09-22 14:43:08 -0400 | [diff] [blame] | 4527 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4528 | if (portstatus & USB_PORT_STAT_ENABLE) | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4529 | goto done; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4530 | return; | 
|  | 4531 | } | 
| Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 4532 | if (hub_is_superspeed(hub->hdev)) | 
|  | 4533 | unit_load = 150; | 
|  | 4534 | else | 
|  | 4535 | unit_load = 100; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4536 |  | 
| Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 4537 | status = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4538 | for (i = 0; i < SET_CONFIG_TRIES; i++) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4539 |  | 
|  | 4540 | /* reallocate for each attempt, since references | 
|  | 4541 | * to the previous one can escape in various ways | 
|  | 4542 | */ | 
|  | 4543 | udev = usb_alloc_dev(hdev, hdev->bus, port1); | 
|  | 4544 | if (!udev) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4545 | dev_err(&port_dev->dev, | 
|  | 4546 | "couldn't allocate usb_device\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4547 | goto done; | 
|  | 4548 | } | 
|  | 4549 |  | 
|  | 4550 | usb_set_device_state(udev, USB_STATE_POWERED); | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4551 | udev->bus_mA = hub->mA_per_port; | 
| Alan Stern | b6956ff | 2006-08-30 15:46:48 -0400 | [diff] [blame] | 4552 | udev->level = hdev->level + 1; | 
| Inaky Perez-Gonzalez | 8af548d | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 4553 | udev->wusb = hub_is_wusb(hub); | 
| Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4554 |  | 
| Sarah Sharp | 131dec3 | 2010-12-06 21:00:19 -0800 | [diff] [blame] | 4555 | /* Only USB 3.0 devices are connected to SuperSpeed hubs. */ | 
|  | 4556 | if (hub_is_superspeed(hub->hdev)) | 
| Sarah Sharp | e7b7717 | 2009-04-27 19:54:26 -0700 | [diff] [blame] | 4557 | udev->speed = USB_SPEED_SUPER; | 
|  | 4558 | else | 
|  | 4559 | udev->speed = USB_SPEED_UNKNOWN; | 
|  | 4560 |  | 
| Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 4561 | choose_devnum(udev); | 
| Andiry Xu | c8d4af8 | 2010-10-14 07:22:51 -0700 | [diff] [blame] | 4562 | if (udev->devnum <= 0) { | 
|  | 4563 | status = -ENOTCONN;	/* Don't retry */ | 
|  | 4564 | goto loop; | 
| Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 4565 | } | 
|  | 4566 |  | 
| Sarah Sharp | e7b7717 | 2009-04-27 19:54:26 -0700 | [diff] [blame] | 4567 | /* reset (non-USB 3.0 devices) and get descriptor */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4568 | status = hub_port_init(hub, udev, port1, i); | 
|  | 4569 | if (status < 0) | 
|  | 4570 | goto loop; | 
|  | 4571 |  | 
| Phil Dibowitz | 93362a8 | 2010-07-22 00:05:01 +0200 | [diff] [blame] | 4572 | usb_detect_quirks(udev); | 
|  | 4573 | if (udev->quirks & USB_QUIRK_DELAY_INIT) | 
|  | 4574 | msleep(1000); | 
|  | 4575 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4576 | /* consecutive bus-powered hubs aren't reliable; they can | 
|  | 4577 | * violate the voltage drop budget.  if the new child has | 
|  | 4578 | * a "powered" LED, users should notice we didn't enable it | 
|  | 4579 | * (without reading syslog), even without per-port LEDs | 
|  | 4580 | * on the parent. | 
|  | 4581 | */ | 
|  | 4582 | if (udev->descriptor.bDeviceClass == USB_CLASS_HUB | 
| Sebastian Andrzej Siewior | 430ee58 | 2012-12-18 15:25:47 +0100 | [diff] [blame] | 4583 | && udev->bus_mA <= unit_load) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4584 | u16	devstat; | 
|  | 4585 |  | 
|  | 4586 | status = usb_get_status(udev, USB_RECIP_DEVICE, 0, | 
|  | 4587 | &devstat); | 
| Alan Stern | 15b7336 | 2013-07-30 15:35:40 -0400 | [diff] [blame] | 4588 | if (status) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4589 | dev_dbg(&udev->dev, "get status %d ?\n", status); | 
|  | 4590 | goto loop_disable; | 
|  | 4591 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4592 | if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) { | 
|  | 4593 | dev_err(&udev->dev, | 
|  | 4594 | "can't connect bus-powered hub " | 
|  | 4595 | "to this port\n"); | 
|  | 4596 | if (hub->has_indicators) { | 
|  | 4597 | hub->indicator[port1-1] = | 
|  | 4598 | INDICATOR_AMBER_BLINK; | 
| Shaibal Dutta | 22f6a0f | 2014-02-01 19:16:46 -0800 | [diff] [blame] | 4599 | queue_delayed_work( | 
|  | 4600 | system_power_efficient_wq, | 
|  | 4601 | &hub->leds, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4602 | } | 
|  | 4603 | status = -ENOTCONN;	/* Don't retry */ | 
|  | 4604 | goto loop_disable; | 
|  | 4605 | } | 
|  | 4606 | } | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4607 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4608 | /* check for devices running slower than they could */ | 
|  | 4609 | if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200 | 
|  | 4610 | && udev->speed == USB_SPEED_FULL | 
|  | 4611 | && highspeed_hubs != 0) | 
|  | 4612 | check_highspeed (hub, udev, port1); | 
|  | 4613 |  | 
| Greg Kroah-Hartman | fa28618 | 2012-05-14 09:20:37 -0700 | [diff] [blame] | 4614 | /* Store the parent's children[] pointer.  At this point | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4615 | * udev becomes globally accessible, although presumably | 
|  | 4616 | * no one will look at it until hdev is unlocked. | 
|  | 4617 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4618 | status = 0; | 
|  | 4619 |  | 
| Dan Williams | d8521af | 2014-05-20 18:08:28 -0700 | [diff] [blame^] | 4620 | mutex_lock(&usb_port_peer_mutex); | 
|  | 4621 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4622 | /* We mustn't add new devices if the parent hub has | 
|  | 4623 | * been disconnected; we would race with the | 
|  | 4624 | * recursively_mark_NOTATTACHED() routine. | 
|  | 4625 | */ | 
|  | 4626 | spin_lock_irq(&device_state_lock); | 
|  | 4627 | if (hdev->state == USB_STATE_NOTATTACHED) | 
|  | 4628 | status = -ENOTCONN; | 
|  | 4629 | else | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4630 | port_dev->child = udev; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4631 | spin_unlock_irq(&device_state_lock); | 
| Dan Williams | d8521af | 2014-05-20 18:08:28 -0700 | [diff] [blame^] | 4632 | mutex_unlock(&usb_port_peer_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4633 |  | 
|  | 4634 | /* Run it through the hoops (find a driver, etc) */ | 
|  | 4635 | if (!status) { | 
|  | 4636 | status = usb_new_device(udev); | 
|  | 4637 | if (status) { | 
| Dan Williams | d8521af | 2014-05-20 18:08:28 -0700 | [diff] [blame^] | 4638 | mutex_lock(&usb_port_peer_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4639 | spin_lock_irq(&device_state_lock); | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4640 | port_dev->child = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4641 | spin_unlock_irq(&device_state_lock); | 
| Dan Williams | d8521af | 2014-05-20 18:08:28 -0700 | [diff] [blame^] | 4642 | mutex_unlock(&usb_port_peer_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4643 | } | 
|  | 4644 | } | 
|  | 4645 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4646 | if (status) | 
|  | 4647 | goto loop_disable; | 
|  | 4648 |  | 
|  | 4649 | status = hub_power_remaining(hub); | 
|  | 4650 | if (status) | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4651 | dev_dbg(hub->intfdev, "%dmA power budget left\n", status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4652 |  | 
|  | 4653 | return; | 
|  | 4654 |  | 
|  | 4655 | loop_disable: | 
|  | 4656 | hub_port_disable(hub, port1, 1); | 
|  | 4657 | loop: | 
| Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 4658 | usb_ep0_reinit(udev); | 
| Alan Stern | 3b29b68 | 2011-02-22 09:53:41 -0500 | [diff] [blame] | 4659 | release_devnum(udev); | 
| Herbert Xu | f7410ce | 2010-01-10 20:15:03 +1100 | [diff] [blame] | 4660 | hub_free_dev(udev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4661 | usb_put_dev(udev); | 
| Vikram Pandita | ffcdc18 | 2007-05-25 21:31:07 -0700 | [diff] [blame] | 4662 | if ((status == -ENOTCONN) || (status == -ENOTSUPP)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4663 | break; | 
|  | 4664 | } | 
| Alan Stern | 3a31155 | 2008-05-20 16:58:29 -0400 | [diff] [blame] | 4665 | if (hub->hdev->parent || | 
|  | 4666 | !hcd->driver->port_handed_over || | 
| Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 4667 | !(hcd->driver->port_handed_over)(hcd, port1)) { | 
|  | 4668 | if (status != -ENOTCONN && status != -ENODEV) | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4669 | dev_err(&port_dev->dev, | 
|  | 4670 | "unable to enumerate USB device\n"); | 
| Alan Stern | e9e88fb | 2013-03-27 16:14:01 -0400 | [diff] [blame] | 4671 | } | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4672 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4673 | done: | 
|  | 4674 | hub_port_disable(hub, port1, 1); | 
| Balaji Rao | 90da096 | 2007-11-22 01:58:14 +0530 | [diff] [blame] | 4675 | if (hcd->driver->relinquish_port && !hub->hdev->parent) | 
|  | 4676 | hcd->driver->relinquish_port(hcd, port1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4677 | } | 
|  | 4678 |  | 
| Sarah Sharp | 714b07b | 2012-01-24 13:53:18 -0800 | [diff] [blame] | 4679 | /* Returns 1 if there was a remote wakeup and a connect status change. */ | 
|  | 4680 | 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] | 4681 | u16 portstatus, u16 portchange) | 
| Sarah Sharp | 714b07b | 2012-01-24 13:53:18 -0800 | [diff] [blame] | 4682 | { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4683 | struct usb_port *port_dev = hub->ports[port - 1]; | 
| Sarah Sharp | 714b07b | 2012-01-24 13:53:18 -0800 | [diff] [blame] | 4684 | struct usb_device *hdev; | 
|  | 4685 | struct usb_device *udev; | 
|  | 4686 | int connect_change = 0; | 
|  | 4687 | int ret; | 
|  | 4688 |  | 
|  | 4689 | hdev = hub->hdev; | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4690 | udev = port_dev->child; | 
| Sarah Sharp | 4ee823b | 2011-11-14 18:00:01 -0800 | [diff] [blame] | 4691 | if (!hub_is_superspeed(hdev)) { | 
|  | 4692 | if (!(portchange & USB_PORT_STAT_C_SUSPEND)) | 
|  | 4693 | return 0; | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4694 | usb_clear_port_feature(hdev, port, USB_PORT_FEAT_C_SUSPEND); | 
| Sarah Sharp | 4ee823b | 2011-11-14 18:00:01 -0800 | [diff] [blame] | 4695 | } else { | 
|  | 4696 | if (!udev || udev->state != USB_STATE_SUSPENDED || | 
| Sarah Sharp | 72937e1 | 2012-01-24 11:46:50 -0800 | [diff] [blame] | 4697 | (portstatus & USB_PORT_STAT_LINK_STATE) != | 
|  | 4698 | USB_SS_PORT_LS_U0) | 
| Sarah Sharp | 4ee823b | 2011-11-14 18:00:01 -0800 | [diff] [blame] | 4699 | return 0; | 
|  | 4700 | } | 
|  | 4701 |  | 
| Sarah Sharp | 714b07b | 2012-01-24 13:53:18 -0800 | [diff] [blame] | 4702 | if (udev) { | 
|  | 4703 | /* TRSMRCY = 10 msec */ | 
|  | 4704 | msleep(10); | 
|  | 4705 |  | 
|  | 4706 | usb_lock_device(udev); | 
|  | 4707 | ret = usb_remote_wakeup(udev); | 
|  | 4708 | usb_unlock_device(udev); | 
|  | 4709 | if (ret < 0) | 
|  | 4710 | connect_change = 1; | 
|  | 4711 | } else { | 
|  | 4712 | ret = -ENODEV; | 
|  | 4713 | hub_port_disable(hub, port, 1); | 
|  | 4714 | } | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4715 | dev_dbg(&port_dev->dev, "resume, status %d\n", ret); | 
| Sarah Sharp | 714b07b | 2012-01-24 13:53:18 -0800 | [diff] [blame] | 4716 | return connect_change; | 
|  | 4717 | } | 
|  | 4718 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4719 | static void hub_events(void) | 
|  | 4720 | { | 
|  | 4721 | struct list_head *tmp; | 
|  | 4722 | struct usb_device *hdev; | 
|  | 4723 | struct usb_interface *intf; | 
|  | 4724 | struct usb_hub *hub; | 
|  | 4725 | struct device *hub_dev; | 
|  | 4726 | u16 hubstatus; | 
|  | 4727 | u16 hubchange; | 
|  | 4728 | u16 portstatus; | 
|  | 4729 | u16 portchange; | 
|  | 4730 | int i, ret; | 
| Sarah Sharp | 4ee823b | 2011-11-14 18:00:01 -0800 | [diff] [blame] | 4731 | int connect_change, wakeup_change; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4732 |  | 
|  | 4733 | /* | 
|  | 4734 | *  We restart the list every time to avoid a deadlock with | 
|  | 4735 | * deleting hubs downstream from this one. This should be | 
|  | 4736 | * safe since we delete the hub from the event list. | 
|  | 4737 | * Not the most efficient, but avoids deadlocks. | 
|  | 4738 | */ | 
|  | 4739 | while (1) { | 
|  | 4740 |  | 
|  | 4741 | /* Grab the first entry at the beginning of the list */ | 
|  | 4742 | spin_lock_irq(&hub_event_lock); | 
|  | 4743 | if (list_empty(&hub_event_list)) { | 
|  | 4744 | spin_unlock_irq(&hub_event_lock); | 
|  | 4745 | break; | 
|  | 4746 | } | 
|  | 4747 |  | 
|  | 4748 | tmp = hub_event_list.next; | 
|  | 4749 | list_del_init(tmp); | 
|  | 4750 |  | 
|  | 4751 | hub = list_entry(tmp, struct usb_hub, event_list); | 
| Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 4752 | kref_get(&hub->kref); | 
|  | 4753 | spin_unlock_irq(&hub_event_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4754 |  | 
| Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 4755 | hdev = hub->hdev; | 
|  | 4756 | hub_dev = hub->intfdev; | 
|  | 4757 | intf = to_usb_interface(hub_dev); | 
| Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 4758 | 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] | 4759 | hdev->state, hdev->maxchild, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4760 | /* NOTE: expects max 15 ports... */ | 
|  | 4761 | (u16) hub->change_bits[0], | 
| Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 4762 | (u16) hub->event_bits[0]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4763 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4764 | /* Lock the device, then check to see if we were | 
|  | 4765 | * disconnected while waiting for the lock to succeed. */ | 
| Alan Stern | 06b84e8 | 2007-05-04 11:54:50 -0400 | [diff] [blame] | 4766 | usb_lock_device(hdev); | 
| Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 4767 | if (unlikely(hub->disconnected)) | 
| Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 4768 | goto loop_disconnected; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4769 |  | 
|  | 4770 | /* If the hub has died, clean up after it */ | 
|  | 4771 | if (hdev->state == USB_STATE_NOTATTACHED) { | 
| Alan Stern | 7de18d8 | 2006-06-01 13:37:24 -0400 | [diff] [blame] | 4772 | hub->error = -ENODEV; | 
| Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 4773 | hub_quiesce(hub, HUB_DISCONNECT); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4774 | goto loop; | 
|  | 4775 | } | 
|  | 4776 |  | 
| Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 4777 | /* Autoresume */ | 
|  | 4778 | ret = usb_autopm_get_interface(intf); | 
|  | 4779 | if (ret) { | 
|  | 4780 | dev_dbg(hub_dev, "Can't autoresume: %d\n", ret); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4781 | goto loop; | 
| Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 4782 | } | 
|  | 4783 |  | 
|  | 4784 | /* If this is an inactive hub, do nothing */ | 
|  | 4785 | if (hub->quiescing) | 
|  | 4786 | goto loop_autopm; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4787 |  | 
|  | 4788 | if (hub->error) { | 
|  | 4789 | dev_dbg (hub_dev, "resetting for error %d\n", | 
|  | 4790 | hub->error); | 
|  | 4791 |  | 
| Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 4792 | ret = usb_reset_device(hdev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4793 | if (ret) { | 
|  | 4794 | dev_dbg (hub_dev, | 
|  | 4795 | "error resetting hub: %d\n", ret); | 
| Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 4796 | goto loop_autopm; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4797 | } | 
|  | 4798 |  | 
|  | 4799 | hub->nerrors = 0; | 
|  | 4800 | hub->error = 0; | 
|  | 4801 | } | 
|  | 4802 |  | 
|  | 4803 | /* deal with port status changes */ | 
| Krzysztof Mazur | 3bbc47d | 2013-08-22 14:49:40 +0200 | [diff] [blame] | 4804 | for (i = 1; i <= hdev->maxchild; i++) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4805 | struct usb_port *port_dev = hub->ports[i - 1]; | 
|  | 4806 | struct usb_device *udev = port_dev->child; | 
| Hans de Goede | a82b76f | 2013-11-08 13:41:05 +0100 | [diff] [blame] | 4807 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4808 | if (test_bit(i, hub->busy_bits)) | 
|  | 4809 | continue; | 
|  | 4810 | connect_change = test_bit(i, hub->change_bits); | 
| Sarah Sharp | 72937e1 | 2012-01-24 11:46:50 -0800 | [diff] [blame] | 4811 | wakeup_change = test_and_clear_bit(i, hub->wakeup_bits); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4812 | if (!test_and_clear_bit(i, hub->event_bits) && | 
| Sarah Sharp | 4ee823b | 2011-11-14 18:00:01 -0800 | [diff] [blame] | 4813 | !connect_change && !wakeup_change) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4814 | continue; | 
|  | 4815 |  | 
|  | 4816 | ret = hub_port_status(hub, i, | 
|  | 4817 | &portstatus, &portchange); | 
|  | 4818 | if (ret < 0) | 
|  | 4819 | continue; | 
|  | 4820 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4821 | if (portchange & USB_PORT_STAT_C_CONNECTION) { | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4822 | usb_clear_port_feature(hdev, i, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4823 | USB_PORT_FEAT_C_CONNECTION); | 
|  | 4824 | connect_change = 1; | 
|  | 4825 | } | 
|  | 4826 |  | 
|  | 4827 | if (portchange & USB_PORT_STAT_C_ENABLE) { | 
|  | 4828 | if (!connect_change) | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4829 | dev_dbg(&port_dev->dev, | 
|  | 4830 | "enable change, status %08x\n", | 
|  | 4831 | portstatus); | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4832 | usb_clear_port_feature(hdev, i, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4833 | USB_PORT_FEAT_C_ENABLE); | 
|  | 4834 |  | 
|  | 4835 | /* | 
|  | 4836 | * EM interference sometimes causes badly | 
|  | 4837 | * shielded USB devices to be shutdown by | 
|  | 4838 | * the hub, this hack enables them again. | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4839 | * Works at least with mouse driver. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4840 | */ | 
|  | 4841 | if (!(portstatus & USB_PORT_STAT_ENABLE) | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4842 | && !connect_change && udev) { | 
|  | 4843 | dev_err(&port_dev->dev, | 
|  | 4844 | "disabled by hub (EMI?), re-enabling...\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4845 | connect_change = 1; | 
|  | 4846 | } | 
|  | 4847 | } | 
|  | 4848 |  | 
| Sarah Sharp | 72937e1 | 2012-01-24 11:46:50 -0800 | [diff] [blame] | 4849 | if (hub_handle_remote_wakeup(hub, i, | 
|  | 4850 | portstatus, portchange)) | 
| Sarah Sharp | 714b07b | 2012-01-24 13:53:18 -0800 | [diff] [blame] | 4851 | connect_change = 1; | 
| Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 4852 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4853 | if (portchange & USB_PORT_STAT_C_OVERCURRENT) { | 
| Paul Bolle | 752d57a | 2011-03-11 18:03:52 +0100 | [diff] [blame] | 4854 | u16 status = 0; | 
|  | 4855 | u16 unused; | 
|  | 4856 |  | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4857 | dev_dbg(&port_dev->dev, "over-current change\n"); | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4858 | usb_clear_port_feature(hdev, i, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4859 | USB_PORT_FEAT_C_OVER_CURRENT); | 
| Paul Bolle | 752d57a | 2011-03-11 18:03:52 +0100 | [diff] [blame] | 4860 | msleep(100);	/* Cool down */ | 
| Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 4861 | hub_power_on(hub, true); | 
| Paul Bolle | 752d57a | 2011-03-11 18:03:52 +0100 | [diff] [blame] | 4862 | hub_port_status(hub, i, &status, &unused); | 
|  | 4863 | if (status & USB_PORT_STAT_OVERCURRENT) | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4864 | dev_err(&port_dev->dev, | 
|  | 4865 | "over-current condition\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4866 | } | 
|  | 4867 |  | 
|  | 4868 | if (portchange & USB_PORT_STAT_C_RESET) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4869 | dev_dbg(&port_dev->dev, "reset change\n"); | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4870 | usb_clear_port_feature(hdev, i, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4871 | USB_PORT_FEAT_C_RESET); | 
|  | 4872 | } | 
| Sarah Sharp | c706157 | 2010-12-06 15:08:20 -0800 | [diff] [blame] | 4873 | if ((portchange & USB_PORT_STAT_C_BH_RESET) && | 
|  | 4874 | hub_is_superspeed(hub->hdev)) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4875 | dev_dbg(&port_dev->dev, "warm reset change\n"); | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4876 | usb_clear_port_feature(hdev, i, | 
| Sarah Sharp | c706157 | 2010-12-06 15:08:20 -0800 | [diff] [blame] | 4877 | USB_PORT_FEAT_C_BH_PORT_RESET); | 
|  | 4878 | } | 
| John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 4879 | if (portchange & USB_PORT_STAT_C_LINK_STATE) { | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4880 | usb_clear_port_feature(hub->hdev, i, | 
| John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 4881 | USB_PORT_FEAT_C_PORT_LINK_STATE); | 
|  | 4882 | } | 
|  | 4883 | if (portchange & USB_PORT_STAT_C_CONFIG_ERROR) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4884 | dev_warn(&port_dev->dev, "config error\n"); | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 4885 | usb_clear_port_feature(hub->hdev, i, | 
| John Youn | dbe79bb | 2001-09-17 00:00:00 -0700 | [diff] [blame] | 4886 | USB_PORT_FEAT_C_PORT_CONFIG_ERROR); | 
|  | 4887 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4888 |  | 
| Andiry Xu | 5e467f6 | 2011-04-27 18:07:54 +0800 | [diff] [blame] | 4889 | /* Warm reset a USB3 protocol port if it's in | 
|  | 4890 | * SS.Inactive state. | 
|  | 4891 | */ | 
| Stanislaw Ledwon | 8bea2bd | 2012-06-18 15:20:00 +0200 | [diff] [blame] | 4892 | if (hub_port_warm_reset_required(hub, portstatus)) { | 
| Sarah Sharp | 65bdac5 | 2012-11-14 17:58:04 -0800 | [diff] [blame] | 4893 | int status; | 
|  | 4894 |  | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 4895 | dev_dbg(&port_dev->dev, "warm reset\n"); | 
| Julius Werner | 2d51f3c | 2013-11-07 10:59:14 -0800 | [diff] [blame] | 4896 | if (!udev || | 
|  | 4897 | !(portstatus & USB_PORT_STAT_CONNECTION) || | 
|  | 4898 | udev->state == USB_STATE_NOTATTACHED) { | 
| Sarah Sharp | d3b9d7a | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 4899 | status = hub_port_reset(hub, i, | 
|  | 4900 | NULL, HUB_BH_RESET_TIME, | 
|  | 4901 | true); | 
|  | 4902 | if (status < 0) | 
|  | 4903 | hub_port_disable(hub, i, 1); | 
|  | 4904 | } else { | 
|  | 4905 | usb_lock_device(udev); | 
|  | 4906 | status = usb_reset_device(udev); | 
|  | 4907 | usb_unlock_device(udev); | 
| Julius Werner | f3e94aa | 2013-07-30 19:51:20 -0700 | [diff] [blame] | 4908 | connect_change = 0; | 
| Sarah Sharp | d3b9d7a | 2012-11-01 11:20:44 -0700 | [diff] [blame] | 4909 | } | 
| Hans de Goede | a82b76f | 2013-11-08 13:41:05 +0100 | [diff] [blame] | 4910 | /* | 
|  | 4911 | * On disconnect USB3 protocol ports transit from U0 to | 
|  | 4912 | * SS.Inactive to Rx.Detect. If this happens a warm- | 
|  | 4913 | * reset is not needed, but a (re)connect may happen | 
|  | 4914 | * before khubd runs and sees the disconnect, and the | 
|  | 4915 | * device may be an unknown state. | 
|  | 4916 | * | 
|  | 4917 | * If the port went through SS.Inactive without khubd | 
|  | 4918 | * seeing it the C_LINK_STATE change flag will be set, | 
|  | 4919 | * and we reset the dev to put it in a known state. | 
|  | 4920 | */ | 
|  | 4921 | } else if (udev && hub_is_superspeed(hub->hdev) && | 
|  | 4922 | (portchange & USB_PORT_STAT_C_LINK_STATE) && | 
|  | 4923 | (portstatus & USB_PORT_STAT_CONNECTION)) { | 
|  | 4924 | usb_lock_device(udev); | 
|  | 4925 | usb_reset_device(udev); | 
|  | 4926 | usb_unlock_device(udev); | 
|  | 4927 | connect_change = 0; | 
| Andiry Xu | 5e467f6 | 2011-04-27 18:07:54 +0800 | [diff] [blame] | 4928 | } | 
|  | 4929 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4930 | if (connect_change) | 
|  | 4931 | hub_port_connect_change(hub, i, | 
|  | 4932 | portstatus, portchange); | 
|  | 4933 | } /* end for i */ | 
|  | 4934 |  | 
|  | 4935 | /* deal with hub status changes */ | 
|  | 4936 | if (test_and_clear_bit(0, hub->event_bits) == 0) | 
|  | 4937 | ;	/* do nothing */ | 
|  | 4938 | else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0) | 
|  | 4939 | dev_err (hub_dev, "get_hub_status failed\n"); | 
|  | 4940 | else { | 
|  | 4941 | if (hubchange & HUB_CHANGE_LOCAL_POWER) { | 
|  | 4942 | dev_dbg (hub_dev, "power change\n"); | 
|  | 4943 | clear_hub_feature(hdev, C_HUB_LOCAL_POWER); | 
| Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4944 | if (hubstatus & HUB_STATUS_LOCAL_POWER) | 
|  | 4945 | /* FIXME: Is this always true? */ | 
| Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 4946 | hub->limited_power = 1; | 
| jidong xiao | 403fae7 | 2007-09-14 00:08:51 +0800 | [diff] [blame] | 4947 | else | 
|  | 4948 | hub->limited_power = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4949 | } | 
|  | 4950 | if (hubchange & HUB_CHANGE_OVERCURRENT) { | 
| Paul Bolle | 752d57a | 2011-03-11 18:03:52 +0100 | [diff] [blame] | 4951 | u16 status = 0; | 
|  | 4952 | u16 unused; | 
|  | 4953 |  | 
|  | 4954 | dev_dbg(hub_dev, "over-current change\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4955 | clear_hub_feature(hdev, C_HUB_OVER_CURRENT); | 
| Paul Bolle | 752d57a | 2011-03-11 18:03:52 +0100 | [diff] [blame] | 4956 | msleep(500);	/* Cool down */ | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4957 | hub_power_on(hub, true); | 
| Paul Bolle | 752d57a | 2011-03-11 18:03:52 +0100 | [diff] [blame] | 4958 | hub_hub_status(hub, &status, &unused); | 
|  | 4959 | if (status & HUB_STATUS_OVERCURRENT) | 
|  | 4960 | dev_err(hub_dev, "over-current " | 
|  | 4961 | "condition\n"); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4962 | } | 
|  | 4963 | } | 
|  | 4964 |  | 
| Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 4965 | loop_autopm: | 
|  | 4966 | /* Balance the usb_autopm_get_interface() above */ | 
|  | 4967 | usb_autopm_put_interface_no_suspend(intf); | 
|  | 4968 | loop: | 
|  | 4969 | /* Balance the usb_autopm_get_interface_no_resume() in | 
|  | 4970 | * kick_khubd() and allow autosuspend. | 
|  | 4971 | */ | 
|  | 4972 | usb_autopm_put_interface(intf); | 
| Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 4973 | loop_disconnected: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4974 | usb_unlock_device(hdev); | 
| Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 4975 | kref_put(&hub->kref, hub_release); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4976 |  | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 4977 | } /* end while (1) */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4978 | } | 
|  | 4979 |  | 
|  | 4980 | static int hub_thread(void *__unused) | 
|  | 4981 | { | 
| Rahul Bedarkar | 025d443 | 2014-01-04 11:24:41 +0530 | [diff] [blame] | 4982 | /* khubd needs to be freezable to avoid interfering with USB-PERSIST | 
| Alan Stern | 3bb1af5 | 2008-03-03 15:15:36 -0500 | [diff] [blame] | 4983 | * port handover.  Otherwise it might see that a full-speed device | 
|  | 4984 | * was gone before the EHCI controller had handed its port over to | 
|  | 4985 | * the companion full-speed controller. | 
|  | 4986 | */ | 
| Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 4987 | set_freezable(); | 
| Alan Stern | 3bb1af5 | 2008-03-03 15:15:36 -0500 | [diff] [blame] | 4988 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4989 | do { | 
|  | 4990 | hub_events(); | 
| Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 4991 | wait_event_freezable(khubd_wait, | 
| akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 4992 | !list_empty(&hub_event_list) || | 
|  | 4993 | kthread_should_stop()); | 
| akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 4994 | } while (!kthread_should_stop() || !list_empty(&hub_event_list)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4995 |  | 
| akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 4996 | pr_debug("%s: khubd exiting\n", usbcore_name); | 
|  | 4997 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4998 | } | 
|  | 4999 |  | 
| Németh Márton | 1e927d9 | 2010-01-10 15:34:53 +0100 | [diff] [blame] | 5000 | static const struct usb_device_id hub_id_table[] = { | 
| Ming Lei | e6f30de | 2012-10-24 11:59:24 +0800 | [diff] [blame] | 5001 | { .match_flags = USB_DEVICE_ID_MATCH_VENDOR | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 5002 | | USB_DEVICE_ID_MATCH_INT_CLASS, | 
| Ming Lei | e6f30de | 2012-10-24 11:59:24 +0800 | [diff] [blame] | 5003 | .idVendor = USB_VENDOR_GENESYS_LOGIC, | 
|  | 5004 | .bInterfaceClass = USB_CLASS_HUB, | 
|  | 5005 | .driver_info = HUB_QUIRK_CHECK_PORT_AUTOSUSPEND}, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5006 | { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS, | 
|  | 5007 | .bDeviceClass = USB_CLASS_HUB}, | 
|  | 5008 | { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS, | 
|  | 5009 | .bInterfaceClass = USB_CLASS_HUB}, | 
|  | 5010 | { }						/* Terminating entry */ | 
|  | 5011 | }; | 
|  | 5012 |  | 
|  | 5013 | MODULE_DEVICE_TABLE (usb, hub_id_table); | 
|  | 5014 |  | 
|  | 5015 | static struct usb_driver hub_driver = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5016 | .name =		"hub", | 
|  | 5017 | .probe =	hub_probe, | 
|  | 5018 | .disconnect =	hub_disconnect, | 
|  | 5019 | .suspend =	hub_suspend, | 
|  | 5020 | .resume =	hub_resume, | 
| Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 5021 | .reset_resume =	hub_reset_resume, | 
| Alan Stern | 7de18d8 | 2006-06-01 13:37:24 -0400 | [diff] [blame] | 5022 | .pre_reset =	hub_pre_reset, | 
|  | 5023 | .post_reset =	hub_post_reset, | 
| Andi Kleen | c532b29 | 2010-06-01 23:04:41 +0200 | [diff] [blame] | 5024 | .unlocked_ioctl = hub_ioctl, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5025 | .id_table =	hub_id_table, | 
| Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 5026 | .supports_autosuspend =	1, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5027 | }; | 
|  | 5028 |  | 
|  | 5029 | int usb_hub_init(void) | 
|  | 5030 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5031 | if (usb_register(&hub_driver) < 0) { | 
|  | 5032 | printk(KERN_ERR "%s: can't register hub driver\n", | 
|  | 5033 | usbcore_name); | 
|  | 5034 | return -1; | 
|  | 5035 | } | 
|  | 5036 |  | 
| akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 5037 | khubd_task = kthread_run(hub_thread, NULL, "khubd"); | 
|  | 5038 | if (!IS_ERR(khubd_task)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5039 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5040 |  | 
|  | 5041 | /* Fall through if kernel_thread failed */ | 
|  | 5042 | usb_deregister(&hub_driver); | 
|  | 5043 | printk(KERN_ERR "%s: can't start khubd\n", usbcore_name); | 
|  | 5044 |  | 
|  | 5045 | return -1; | 
|  | 5046 | } | 
|  | 5047 |  | 
|  | 5048 | void usb_hub_cleanup(void) | 
|  | 5049 | { | 
| akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 5050 | kthread_stop(khubd_task); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5051 |  | 
|  | 5052 | /* | 
|  | 5053 | * Hub resources are freed for us by usb_deregister. It calls | 
|  | 5054 | * usb_driver_purge on every device which in turn calls that | 
|  | 5055 | * devices disconnect function if it is using this driver. | 
|  | 5056 | * The hub_disconnect function takes care of releasing the | 
|  | 5057 | * individual hub resources. -greg | 
|  | 5058 | */ | 
|  | 5059 | usb_deregister(&hub_driver); | 
|  | 5060 | } /* usb_hub_cleanup() */ | 
|  | 5061 |  | 
| Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5062 | static int descriptors_changed(struct usb_device *udev, | 
| Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5063 | struct usb_device_descriptor *old_device_descriptor, | 
|  | 5064 | struct usb_host_bos *old_bos) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5065 | { | 
| Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5066 | int		changed = 0; | 
|  | 5067 | unsigned	index; | 
|  | 5068 | unsigned	serial_len = 0; | 
|  | 5069 | unsigned	len; | 
|  | 5070 | unsigned	old_length; | 
|  | 5071 | int		length; | 
|  | 5072 | char		*buf; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5073 |  | 
| Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5074 | if (memcmp(&udev->descriptor, old_device_descriptor, | 
|  | 5075 | sizeof(*old_device_descriptor)) != 0) | 
|  | 5076 | return 1; | 
|  | 5077 |  | 
| Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5078 | if ((old_bos && !udev->bos) || (!old_bos && udev->bos)) | 
|  | 5079 | return 1; | 
|  | 5080 | if (udev->bos) { | 
| Xenia Ragiadakou | b9a1048 | 2013-08-31 04:40:49 +0300 | [diff] [blame] | 5081 | len = le16_to_cpu(udev->bos->desc->wTotalLength); | 
|  | 5082 | if (len != le16_to_cpu(old_bos->desc->wTotalLength)) | 
| Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5083 | return 1; | 
| Xenia Ragiadakou | b9a1048 | 2013-08-31 04:40:49 +0300 | [diff] [blame] | 5084 | if (memcmp(udev->bos->desc, old_bos->desc, len)) | 
| Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5085 | return 1; | 
|  | 5086 | } | 
|  | 5087 |  | 
| Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5088 | /* Since the idVendor, idProduct, and bcdDevice values in the | 
|  | 5089 | * device descriptor haven't changed, we will assume the | 
|  | 5090 | * Manufacturer and Product strings haven't changed either. | 
|  | 5091 | * But the SerialNumber string could be different (e.g., a | 
|  | 5092 | * different flash card of the same brand). | 
|  | 5093 | */ | 
|  | 5094 | if (udev->serial) | 
|  | 5095 | serial_len = strlen(udev->serial) + 1; | 
|  | 5096 |  | 
|  | 5097 | len = serial_len; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5098 | for (index = 0; index < udev->descriptor.bNumConfigurations; index++) { | 
| Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5099 | old_length = le16_to_cpu(udev->config[index].desc.wTotalLength); | 
|  | 5100 | len = max(len, old_length); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5101 | } | 
| Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5102 |  | 
| Oliver Neukum | 0cc1a51 | 2008-01-10 10:31:48 +0100 | [diff] [blame] | 5103 | buf = kmalloc(len, GFP_NOIO); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5104 | if (buf == NULL) { | 
|  | 5105 | dev_err(&udev->dev, "no mem to re-read configs after reset\n"); | 
|  | 5106 | /* assume the worst */ | 
|  | 5107 | return 1; | 
|  | 5108 | } | 
|  | 5109 | for (index = 0; index < udev->descriptor.bNumConfigurations; index++) { | 
| Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5110 | old_length = le16_to_cpu(udev->config[index].desc.wTotalLength); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5111 | length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf, | 
|  | 5112 | old_length); | 
| Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5113 | if (length != old_length) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5114 | dev_dbg(&udev->dev, "config index %d, error %d\n", | 
|  | 5115 | index, length); | 
| Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5116 | changed = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5117 | break; | 
|  | 5118 | } | 
|  | 5119 | if (memcmp (buf, udev->rawdescriptors[index], old_length) | 
|  | 5120 | != 0) { | 
|  | 5121 | dev_dbg(&udev->dev, "config index %d changed (#%d)\n", | 
| Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5122 | index, | 
|  | 5123 | ((struct usb_config_descriptor *) buf)-> | 
|  | 5124 | bConfigurationValue); | 
|  | 5125 | changed = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5126 | break; | 
|  | 5127 | } | 
|  | 5128 | } | 
| Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5129 |  | 
|  | 5130 | if (!changed && serial_len) { | 
|  | 5131 | length = usb_string(udev, udev->descriptor.iSerialNumber, | 
|  | 5132 | buf, serial_len); | 
|  | 5133 | if (length + 1 != serial_len) { | 
|  | 5134 | dev_dbg(&udev->dev, "serial string error %d\n", | 
|  | 5135 | length); | 
|  | 5136 | changed = 1; | 
|  | 5137 | } else if (memcmp(buf, udev->serial, length) != 0) { | 
|  | 5138 | dev_dbg(&udev->dev, "serial string changed\n"); | 
|  | 5139 | changed = 1; | 
|  | 5140 | } | 
|  | 5141 | } | 
|  | 5142 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5143 | kfree(buf); | 
| Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 5144 | return changed; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5145 | } | 
|  | 5146 |  | 
|  | 5147 | /** | 
| Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 5148 | * 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] | 5149 | * @udev: device to reset (not in SUSPENDED or NOTATTACHED state) | 
|  | 5150 | * | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5151 | * WARNING - don't use this routine to reset a composite device | 
|  | 5152 | * (one with multiple interfaces owned by separate drivers)! | 
| Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 5153 | * Use usb_reset_device() instead. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5154 | * | 
|  | 5155 | * Do a port reset, reassign the device's address, and establish its | 
|  | 5156 | * former operating configuration.  If the reset fails, or the device's | 
|  | 5157 | * descriptors change from their values before the reset, or the original | 
|  | 5158 | * configuration and altsettings cannot be restored, a flag will be set | 
|  | 5159 | * telling khubd to pretend the device has been disconnected and then | 
|  | 5160 | * re-connected.  All drivers will be unbound, and the device will be | 
|  | 5161 | * re-enumerated and probed all over again. | 
|  | 5162 | * | 
| Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 5163 | * Return: 0 if the reset succeeded, -ENODEV if the device has been | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5164 | * flagged for logical disconnection, or some other negative error code | 
|  | 5165 | * if the reset wasn't even attempted. | 
|  | 5166 | * | 
| Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 5167 | * Note: | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5168 | * The caller must own the device lock.  For example, it's safe to use | 
|  | 5169 | * this from a driver probe() routine after downloading new firmware. | 
|  | 5170 | * For calls that might not occur during probe(), drivers should lock | 
|  | 5171 | * the device using usb_lock_device_for_reset(). | 
| Alan Stern | 6bc6cff | 2007-05-04 11:53:03 -0400 | [diff] [blame] | 5172 | * | 
|  | 5173 | * Locking exception: This routine may also be called from within an | 
|  | 5174 | * autoresume handler.  Such usage won't conflict with other tasks | 
|  | 5175 | * holding the device lock because these tasks should always call | 
|  | 5176 | * usb_autopm_resume_device(), thereby preventing any unwanted autoresume. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5177 | */ | 
| Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 5178 | static int usb_reset_and_verify_device(struct usb_device *udev) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5179 | { | 
|  | 5180 | struct usb_device		*parent_hdev = udev->parent; | 
|  | 5181 | struct usb_hub			*parent_hub; | 
| Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 5182 | struct usb_hcd			*hcd = bus_to_hcd(udev->bus); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5183 | struct usb_device_descriptor	descriptor = udev->descriptor; | 
| Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5184 | struct usb_host_bos		*bos; | 
| Hans de Goede | 7a7b562 | 2013-11-08 16:37:26 +0100 | [diff] [blame] | 5185 | int				i, j, ret = 0; | 
| Alan Stern | 12c3da3 | 2005-11-23 12:09:52 -0500 | [diff] [blame] | 5186 | int				port1 = udev->portnum; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5187 |  | 
|  | 5188 | if (udev->state == USB_STATE_NOTATTACHED || | 
|  | 5189 | udev->state == USB_STATE_SUSPENDED) { | 
|  | 5190 | dev_dbg(&udev->dev, "device reset not allowed in state %d\n", | 
|  | 5191 | udev->state); | 
|  | 5192 | return -EINVAL; | 
|  | 5193 | } | 
|  | 5194 |  | 
|  | 5195 | if (!parent_hdev) { | 
| Wolfram Sang | 4bec991 | 2010-08-29 18:17:14 +0200 | [diff] [blame] | 5196 | /* this requires hcd-specific logic; see ohci_restart() */ | 
| Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 5197 | dev_dbg(&udev->dev, "%s for root hub!\n", __func__); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5198 | return -EISDIR; | 
|  | 5199 | } | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 5200 | parent_hub = usb_hub_to_struct_hub(parent_hdev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5201 |  | 
| Sarah Sharp | dcc01c0 | 2013-09-30 17:26:29 +0300 | [diff] [blame] | 5202 | /* Disable USB2 hardware LPM. | 
|  | 5203 | * It will be re-enabled by the enumeration process. | 
|  | 5204 | */ | 
|  | 5205 | if (udev->usb2_hw_lpm_enabled == 1) | 
|  | 5206 | usb_set_usb2_hardware_lpm(udev, 0); | 
|  | 5207 |  | 
| Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5208 | bos = udev->bos; | 
|  | 5209 | udev->bos = NULL; | 
|  | 5210 |  | 
| Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 5211 | /* Disable LPM and LTM while we reset the device and reinstall the alt | 
|  | 5212 | * settings.  Device-initiated LPM settings, and system exit latency | 
|  | 5213 | * settings are cleared when the device is reset, so we have to set | 
|  | 5214 | * them up again. | 
| Sarah Sharp | 6d1d051 | 2012-07-03 22:49:04 -0700 | [diff] [blame] | 5215 | */ | 
|  | 5216 | ret = usb_unlocked_disable_lpm(udev); | 
|  | 5217 | if (ret) { | 
|  | 5218 | dev_err(&udev->dev, "%s Failed to disable LPM\n.", __func__); | 
|  | 5219 | goto re_enumerate; | 
|  | 5220 | } | 
| Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 5221 | ret = usb_disable_ltm(udev); | 
|  | 5222 | if (ret) { | 
|  | 5223 | dev_err(&udev->dev, "%s Failed to disable LTM\n.", | 
|  | 5224 | __func__); | 
|  | 5225 | goto re_enumerate; | 
|  | 5226 | } | 
| Sarah Sharp | 6d1d051 | 2012-07-03 22:49:04 -0700 | [diff] [blame] | 5227 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5228 | set_bit(port1, parent_hub->busy_bits); | 
|  | 5229 | for (i = 0; i < SET_CONFIG_TRIES; ++i) { | 
|  | 5230 |  | 
|  | 5231 | /* ep0 maxpacket size may change; let the HCD know about it. | 
|  | 5232 | * Other endpoints will be handled by re-enumeration. */ | 
| Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 5233 | usb_ep0_reinit(udev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5234 | ret = hub_port_init(parent_hub, udev, port1, i); | 
| Alan Stern | dd4dd19 | 2007-05-04 11:55:54 -0400 | [diff] [blame] | 5235 | if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5236 | break; | 
|  | 5237 | } | 
|  | 5238 | clear_bit(port1, parent_hub->busy_bits); | 
| Alan Stern | d5cbad4 | 2006-08-11 16:52:39 -0400 | [diff] [blame] | 5239 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5240 | if (ret < 0) | 
|  | 5241 | goto re_enumerate; | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 5242 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5243 | /* Device might have changed firmware (DFU or similar) */ | 
| Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5244 | if (descriptors_changed(udev, &descriptor, bos)) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5245 | dev_info(&udev->dev, "device firmware changed\n"); | 
|  | 5246 | udev->descriptor = descriptor;	/* for disconnect() calls */ | 
|  | 5247 | goto re_enumerate; | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 5248 | } | 
| Alan Stern | 4fe0387 | 2009-02-26 10:21:02 -0500 | [diff] [blame] | 5249 |  | 
|  | 5250 | /* Restore the device's previous configuration */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5251 | if (!udev->actconfig) | 
|  | 5252 | goto done; | 
| Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 5253 |  | 
| Sarah Sharp | d673bfc | 2010-10-15 08:55:24 -0700 | [diff] [blame] | 5254 | mutex_lock(hcd->bandwidth_mutex); | 
| Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 5255 | ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL); | 
|  | 5256 | if (ret < 0) { | 
|  | 5257 | dev_warn(&udev->dev, | 
|  | 5258 | "Busted HC?  Not enough HCD resources for " | 
|  | 5259 | "old configuration.\n"); | 
| Sarah Sharp | d673bfc | 2010-10-15 08:55:24 -0700 | [diff] [blame] | 5260 | mutex_unlock(hcd->bandwidth_mutex); | 
| Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 5261 | goto re_enumerate; | 
|  | 5262 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5263 | ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), | 
|  | 5264 | USB_REQ_SET_CONFIGURATION, 0, | 
|  | 5265 | udev->actconfig->desc.bConfigurationValue, 0, | 
|  | 5266 | NULL, 0, USB_CTRL_SET_TIMEOUT); | 
|  | 5267 | if (ret < 0) { | 
|  | 5268 | dev_err(&udev->dev, | 
|  | 5269 | "can't restore configuration #%d (error=%d)\n", | 
|  | 5270 | udev->actconfig->desc.bConfigurationValue, ret); | 
| Sarah Sharp | d673bfc | 2010-10-15 08:55:24 -0700 | [diff] [blame] | 5271 | mutex_unlock(hcd->bandwidth_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5272 | goto re_enumerate; | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 5273 | } | 
| Sarah Sharp | d673bfc | 2010-10-15 08:55:24 -0700 | [diff] [blame] | 5274 | mutex_unlock(hcd->bandwidth_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5275 | usb_set_device_state(udev, USB_STATE_CONFIGURED); | 
|  | 5276 |  | 
| Alan Stern | 4fe0387 | 2009-02-26 10:21:02 -0500 | [diff] [blame] | 5277 | /* Put interfaces back into the same altsettings as before. | 
|  | 5278 | * Don't bother to send the Set-Interface request for interfaces | 
|  | 5279 | * that were already in altsetting 0; besides being unnecessary, | 
|  | 5280 | * many devices can't handle it.  Instead just reset the host-side | 
|  | 5281 | * endpoint state. | 
|  | 5282 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5283 | for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) { | 
| Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 5284 | struct usb_host_config *config = udev->actconfig; | 
|  | 5285 | struct usb_interface *intf = config->interface[i]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5286 | struct usb_interface_descriptor *desc; | 
|  | 5287 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5288 | desc = &intf->cur_altsetting->desc; | 
| Alan Stern | 4fe0387 | 2009-02-26 10:21:02 -0500 | [diff] [blame] | 5289 | if (desc->bAlternateSetting == 0) { | 
|  | 5290 | usb_disable_interface(udev, intf, true); | 
|  | 5291 | usb_enable_interface(udev, intf, true); | 
|  | 5292 | ret = 0; | 
|  | 5293 | } else { | 
| Sarah Sharp | 04a723e | 2010-01-06 10:16:51 -0800 | [diff] [blame] | 5294 | /* Let the bandwidth allocation function know that this | 
|  | 5295 | * device has been reset, and it will have to use | 
|  | 5296 | * alternate setting 0 as the current alternate setting. | 
| Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 5297 | */ | 
| Sarah Sharp | 04a723e | 2010-01-06 10:16:51 -0800 | [diff] [blame] | 5298 | intf->resetting_device = 1; | 
| Alan Stern | 4fe0387 | 2009-02-26 10:21:02 -0500 | [diff] [blame] | 5299 | ret = usb_set_interface(udev, desc->bInterfaceNumber, | 
|  | 5300 | desc->bAlternateSetting); | 
| Sarah Sharp | 04a723e | 2010-01-06 10:16:51 -0800 | [diff] [blame] | 5301 | intf->resetting_device = 0; | 
| Alan Stern | 4fe0387 | 2009-02-26 10:21:02 -0500 | [diff] [blame] | 5302 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5303 | if (ret < 0) { | 
|  | 5304 | dev_err(&udev->dev, "failed to restore interface %d " | 
|  | 5305 | "altsetting %d (error=%d)\n", | 
|  | 5306 | desc->bInterfaceNumber, | 
|  | 5307 | desc->bAlternateSetting, | 
|  | 5308 | ret); | 
|  | 5309 | goto re_enumerate; | 
|  | 5310 | } | 
| Hans de Goede | 7a7b562 | 2013-11-08 16:37:26 +0100 | [diff] [blame] | 5311 | /* Resetting also frees any allocated streams */ | 
|  | 5312 | for (j = 0; j < intf->cur_altsetting->desc.bNumEndpoints; j++) | 
|  | 5313 | intf->cur_altsetting->endpoint[j].streams = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5314 | } | 
|  | 5315 |  | 
|  | 5316 | done: | 
| Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 5317 | /* Now that the alt settings are re-installed, enable LTM and LPM. */ | 
| Sarah Sharp | de68bab | 2013-09-30 17:26:28 +0300 | [diff] [blame] | 5318 | usb_set_usb2_hardware_lpm(udev, 1); | 
| Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 5319 | usb_unlocked_enable_lpm(udev); | 
| Sarah Sharp | f74631e | 2012-06-25 12:08:08 -0700 | [diff] [blame] | 5320 | usb_enable_ltm(udev); | 
| Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5321 | usb_release_bos_descriptor(udev); | 
|  | 5322 | udev->bos = bos; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5323 | return 0; | 
| Matthias Beyer | 469271f | 2013-10-10 23:41:27 +0200 | [diff] [blame] | 5324 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5325 | re_enumerate: | 
| Sarah Sharp | 6d1d051 | 2012-07-03 22:49:04 -0700 | [diff] [blame] | 5326 | /* 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] | 5327 | hub_port_logical_disconnect(parent_hub, port1); | 
| Xenia Ragiadakou | e3376d6 | 2013-08-29 21:45:48 +0300 | [diff] [blame] | 5328 | usb_release_bos_descriptor(udev); | 
|  | 5329 | udev->bos = bos; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5330 | return -ENODEV; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5331 | } | 
|  | 5332 |  | 
|  | 5333 | /** | 
|  | 5334 | * usb_reset_device - warn interface drivers and perform a USB port reset | 
|  | 5335 | * @udev: device to reset (not in SUSPENDED or NOTATTACHED state) | 
|  | 5336 | * | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5337 | * Warns all drivers bound to registered interfaces (using their pre_reset | 
|  | 5338 | * method), performs the port reset, and then lets the drivers know that | 
| Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 5339 | * the reset is over (using their post_reset method). | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5340 | * | 
| Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 5341 | * Return: The same as for usb_reset_and_verify_device(). | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5342 | * | 
| Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 5343 | * Note: | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5344 | * The caller must own the device lock.  For example, it's safe to use | 
|  | 5345 | * this from a driver probe() routine after downloading new firmware. | 
|  | 5346 | * For calls that might not occur during probe(), drivers should lock | 
| Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 5347 | * the device using usb_lock_device_for_reset(). | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5348 | * | 
|  | 5349 | * If an interface is currently being probed or disconnected, we assume | 
|  | 5350 | * its driver knows how to handle resets.  For all other interfaces, | 
|  | 5351 | * if the driver doesn't have pre_reset and post_reset methods then | 
|  | 5352 | * we attempt to unbind it and rebind afterward. | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5353 | */ | 
| Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 5354 | int usb_reset_device(struct usb_device *udev) | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5355 | { | 
|  | 5356 | int ret; | 
| Alan Stern | 852c4b4 | 2007-12-03 15:44:29 -0500 | [diff] [blame] | 5357 | int i; | 
| Ming Lei | 4d769de | 2013-02-22 16:34:22 -0800 | [diff] [blame] | 5358 | unsigned int noio_flag; | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5359 | struct usb_host_config *config = udev->actconfig; | 
|  | 5360 |  | 
|  | 5361 | if (udev->state == USB_STATE_NOTATTACHED || | 
|  | 5362 | udev->state == USB_STATE_SUSPENDED) { | 
|  | 5363 | dev_dbg(&udev->dev, "device reset not allowed in state %d\n", | 
|  | 5364 | udev->state); | 
|  | 5365 | return -EINVAL; | 
|  | 5366 | } | 
|  | 5367 |  | 
| Ming Lei | 4d769de | 2013-02-22 16:34:22 -0800 | [diff] [blame] | 5368 | /* | 
|  | 5369 | * Don't allocate memory with GFP_KERNEL in current | 
|  | 5370 | * context to avoid possible deadlock if usb mass | 
|  | 5371 | * storage interface or usbnet interface(iSCSI case) | 
|  | 5372 | * is included in current configuration. The easist | 
|  | 5373 | * approach is to do it for every device reset, | 
|  | 5374 | * because the device 'memalloc_noio' flag may have | 
|  | 5375 | * not been set before reseting the usb device. | 
|  | 5376 | */ | 
|  | 5377 | noio_flag = memalloc_noio_save(); | 
|  | 5378 |  | 
| Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 5379 | /* Prevent autosuspend during the reset */ | 
| Alan Stern | 94fcda1 | 2006-11-20 11:38:46 -0500 | [diff] [blame] | 5380 | usb_autoresume_device(udev); | 
| Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 5381 |  | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5382 | if (config) { | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5383 | for (i = 0; i < config->desc.bNumInterfaces; ++i) { | 
| Alan Stern | 852c4b4 | 2007-12-03 15:44:29 -0500 | [diff] [blame] | 5384 | struct usb_interface *cintf = config->interface[i]; | 
|  | 5385 | struct usb_driver *drv; | 
| Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 5386 | int unbind = 0; | 
| Alan Stern | 852c4b4 | 2007-12-03 15:44:29 -0500 | [diff] [blame] | 5387 |  | 
|  | 5388 | if (cintf->dev.driver) { | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5389 | drv = to_usb_driver(cintf->dev.driver); | 
| Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 5390 | if (drv->pre_reset && drv->post_reset) | 
|  | 5391 | unbind = (drv->pre_reset)(cintf); | 
|  | 5392 | else if (cintf->condition == | 
|  | 5393 | USB_INTERFACE_BOUND) | 
|  | 5394 | unbind = 1; | 
|  | 5395 | if (unbind) | 
|  | 5396 | usb_forced_unbind_intf(cintf); | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5397 | } | 
|  | 5398 | } | 
|  | 5399 | } | 
|  | 5400 |  | 
| Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 5401 | ret = usb_reset_and_verify_device(udev); | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5402 |  | 
|  | 5403 | if (config) { | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5404 | for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) { | 
| Alan Stern | 852c4b4 | 2007-12-03 15:44:29 -0500 | [diff] [blame] | 5405 | struct usb_interface *cintf = config->interface[i]; | 
|  | 5406 | struct usb_driver *drv; | 
| Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 5407 | int rebind = cintf->needs_binding; | 
| Alan Stern | 852c4b4 | 2007-12-03 15:44:29 -0500 | [diff] [blame] | 5408 |  | 
| Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 5409 | if (!rebind && cintf->dev.driver) { | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5410 | drv = to_usb_driver(cintf->dev.driver); | 
|  | 5411 | if (drv->post_reset) | 
| Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 5412 | rebind = (drv->post_reset)(cintf); | 
|  | 5413 | else if (cintf->condition == | 
|  | 5414 | USB_INTERFACE_BOUND) | 
|  | 5415 | rebind = 1; | 
| Alan Stern | 6aec044 | 2014-03-12 11:30:38 -0400 | [diff] [blame] | 5416 | if (rebind) | 
|  | 5417 | cintf->needs_binding = 1; | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5418 | } | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5419 | } | 
| Alan Stern | 6aec044 | 2014-03-12 11:30:38 -0400 | [diff] [blame] | 5420 | usb_unbind_and_rebind_marked_interfaces(udev); | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5421 | } | 
|  | 5422 |  | 
| Alan Stern | 94fcda1 | 2006-11-20 11:38:46 -0500 | [diff] [blame] | 5423 | usb_autosuspend_device(udev); | 
| Ming Lei | 4d769de | 2013-02-22 16:34:22 -0800 | [diff] [blame] | 5424 | memalloc_noio_restore(noio_flag); | 
| Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 5425 | return ret; | 
|  | 5426 | } | 
| Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 5427 | EXPORT_SYMBOL_GPL(usb_reset_device); | 
| Inaky Perez-Gonzalez | dc023dc | 2008-11-13 10:31:35 -0800 | [diff] [blame] | 5428 |  | 
|  | 5429 |  | 
|  | 5430 | /** | 
|  | 5431 | * usb_queue_reset_device - Reset a USB device from an atomic context | 
|  | 5432 | * @iface: USB interface belonging to the device to reset | 
|  | 5433 | * | 
|  | 5434 | * This function can be used to reset a USB device from an atomic | 
|  | 5435 | * context, where usb_reset_device() won't work (as it blocks). | 
|  | 5436 | * | 
|  | 5437 | * Doing a reset via this method is functionally equivalent to calling | 
|  | 5438 | * usb_reset_device(), except for the fact that it is delayed to a | 
|  | 5439 | * workqueue. This means that any drivers bound to other interfaces | 
|  | 5440 | * might be unbound, as well as users from usbfs in user space. | 
|  | 5441 | * | 
|  | 5442 | * Corner cases: | 
|  | 5443 | * | 
|  | 5444 | * - Scheduling two resets at the same time from two different drivers | 
|  | 5445 | *   attached to two different interfaces of the same device is | 
|  | 5446 | *   possible; depending on how the driver attached to each interface | 
|  | 5447 | *   handles ->pre_reset(), the second reset might happen or not. | 
|  | 5448 | * | 
|  | 5449 | * - If a driver is unbound and it had a pending reset, the reset will | 
|  | 5450 | *   be cancelled. | 
|  | 5451 | * | 
|  | 5452 | * - This function can be called during .probe() or .disconnect() | 
|  | 5453 | *   times. On return from .disconnect(), any pending resets will be | 
|  | 5454 | *   cancelled. | 
|  | 5455 | * | 
|  | 5456 | * There is no no need to lock/unlock the @reset_ws as schedule_work() | 
|  | 5457 | * does its own. | 
|  | 5458 | * | 
|  | 5459 | * NOTE: We don't do any reference count tracking because it is not | 
|  | 5460 | *     needed. The lifecycle of the work_struct is tied to the | 
|  | 5461 | *     usb_interface. Before destroying the interface we cancel the | 
|  | 5462 | *     work_struct, so the fact that work_struct is queued and or | 
|  | 5463 | *     running means the interface (and thus, the device) exist and | 
|  | 5464 | *     are referenced. | 
|  | 5465 | */ | 
|  | 5466 | void usb_queue_reset_device(struct usb_interface *iface) | 
|  | 5467 | { | 
|  | 5468 | schedule_work(&iface->reset_ws); | 
|  | 5469 | } | 
|  | 5470 | EXPORT_SYMBOL_GPL(usb_queue_reset_device); | 
| Lan Tianyu | ff823c79 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 5471 |  | 
|  | 5472 | /** | 
|  | 5473 | * usb_hub_find_child - Get the pointer of child device | 
|  | 5474 | * attached to the port which is specified by @port1. | 
|  | 5475 | * @hdev: USB device belonging to the usb hub | 
|  | 5476 | * @port1: port num to indicate which port the child device | 
|  | 5477 | *	is attached to. | 
|  | 5478 | * | 
|  | 5479 | * USB drivers call this function to get hub's child device | 
|  | 5480 | * pointer. | 
|  | 5481 | * | 
| Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 5482 | * Return: %NULL if input param is invalid and | 
| Lan Tianyu | ff823c79 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 5483 | * child's usb_device pointer if non-NULL. | 
|  | 5484 | */ | 
|  | 5485 | struct usb_device *usb_hub_find_child(struct usb_device *hdev, | 
|  | 5486 | int port1) | 
|  | 5487 | { | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 5488 | struct usb_hub *hub = usb_hub_to_struct_hub(hdev); | 
| Lan Tianyu | ff823c79 | 2012-09-05 13:44:32 +0800 | [diff] [blame] | 5489 |  | 
|  | 5490 | if (port1 < 1 || port1 > hdev->maxchild) | 
|  | 5491 | return NULL; | 
|  | 5492 | return hub->ports[port1 - 1]->child; | 
|  | 5493 | } | 
|  | 5494 | EXPORT_SYMBOL_GPL(usb_hub_find_child); | 
| Lan Tianyu | d557542 | 2012-09-05 13:44:33 +0800 | [diff] [blame] | 5495 |  | 
| Lan Tianyu | d2123fd | 2013-01-21 22:18:00 +0800 | [diff] [blame] | 5496 | void usb_hub_adjust_deviceremovable(struct usb_device *hdev, | 
|  | 5497 | struct usb_hub_descriptor *desc) | 
|  | 5498 | { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 5499 | struct usb_hub *hub = usb_hub_to_struct_hub(hdev); | 
| Lan Tianyu | d2123fd | 2013-01-21 22:18:00 +0800 | [diff] [blame] | 5500 | enum usb_port_connect_type connect_type; | 
|  | 5501 | int i; | 
|  | 5502 |  | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 5503 | if (!hub) | 
|  | 5504 | return; | 
|  | 5505 |  | 
| Lan Tianyu | d2123fd | 2013-01-21 22:18:00 +0800 | [diff] [blame] | 5506 | if (!hub_is_superspeed(hdev)) { | 
|  | 5507 | for (i = 1; i <= hdev->maxchild; i++) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 5508 | struct usb_port *port_dev = hub->ports[i - 1]; | 
| Lan Tianyu | d2123fd | 2013-01-21 22:18:00 +0800 | [diff] [blame] | 5509 |  | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 5510 | connect_type = port_dev->connect_type; | 
| Lan Tianyu | d2123fd | 2013-01-21 22:18:00 +0800 | [diff] [blame] | 5511 | if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) { | 
|  | 5512 | u8 mask = 1 << (i%8); | 
|  | 5513 |  | 
|  | 5514 | if (!(desc->u.hs.DeviceRemovable[i/8] & mask)) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 5515 | dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n"); | 
| Lan Tianyu | d2123fd | 2013-01-21 22:18:00 +0800 | [diff] [blame] | 5516 | desc->u.hs.DeviceRemovable[i/8]	|= mask; | 
|  | 5517 | } | 
|  | 5518 | } | 
|  | 5519 | } | 
|  | 5520 | } else { | 
|  | 5521 | u16 port_removable = le16_to_cpu(desc->u.ss.DeviceRemovable); | 
|  | 5522 |  | 
|  | 5523 | for (i = 1; i <= hdev->maxchild; i++) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 5524 | struct usb_port *port_dev = hub->ports[i - 1]; | 
| Lan Tianyu | d2123fd | 2013-01-21 22:18:00 +0800 | [diff] [blame] | 5525 |  | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 5526 | connect_type = port_dev->connect_type; | 
| Lan Tianyu | d2123fd | 2013-01-21 22:18:00 +0800 | [diff] [blame] | 5527 | if (connect_type == USB_PORT_CONNECT_TYPE_HARD_WIRED) { | 
|  | 5528 | u16 mask = 1 << i; | 
|  | 5529 |  | 
|  | 5530 | if (!(port_removable & mask)) { | 
| Dan Williams | d99f6b4 | 2014-05-20 18:08:17 -0700 | [diff] [blame] | 5531 | dev_dbg(&port_dev->dev, "DeviceRemovable is changed to 1 according to platform information.\n"); | 
| Lan Tianyu | d2123fd | 2013-01-21 22:18:00 +0800 | [diff] [blame] | 5532 | port_removable |= mask; | 
|  | 5533 | } | 
|  | 5534 | } | 
|  | 5535 | } | 
|  | 5536 |  | 
|  | 5537 | desc->u.ss.DeviceRemovable = cpu_to_le16(port_removable); | 
|  | 5538 | } | 
|  | 5539 | } | 
|  | 5540 |  | 
| Lan Tianyu | d557542 | 2012-09-05 13:44:33 +0800 | [diff] [blame] | 5541 | #ifdef CONFIG_ACPI | 
|  | 5542 | /** | 
|  | 5543 | * usb_get_hub_port_acpi_handle - Get the usb port's acpi handle | 
|  | 5544 | * @hdev: USB device belonging to the usb hub | 
|  | 5545 | * @port1: port num of the port | 
|  | 5546 | * | 
| Yacine Belkadi | 626f090 | 2013-08-02 20:10:04 +0200 | [diff] [blame] | 5547 | * Return: Port's acpi handle if successful, %NULL if params are | 
|  | 5548 | * invalid. | 
| Lan Tianyu | d557542 | 2012-09-05 13:44:33 +0800 | [diff] [blame] | 5549 | */ | 
|  | 5550 | acpi_handle usb_get_hub_port_acpi_handle(struct usb_device *hdev, | 
|  | 5551 | int port1) | 
|  | 5552 | { | 
| Lan Tianyu | ad493e5 | 2013-01-23 04:26:30 +0800 | [diff] [blame] | 5553 | struct usb_hub *hub = usb_hub_to_struct_hub(hdev); | 
| Lan Tianyu | d557542 | 2012-09-05 13:44:33 +0800 | [diff] [blame] | 5554 |  | 
| Mathias Nyman | 41341261 | 2013-06-18 17:28:48 +0300 | [diff] [blame] | 5555 | if (!hub) | 
|  | 5556 | return NULL; | 
|  | 5557 |  | 
| Rafael J. Wysocki | 3a83f99 | 2013-11-14 23:17:21 +0100 | [diff] [blame] | 5558 | return ACPI_HANDLE(&hub->ports[port1 - 1]->dev); | 
| Lan Tianyu | d557542 | 2012-09-05 13:44:33 +0800 | [diff] [blame] | 5559 | } | 
|  | 5560 | #endif |