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> |
Phil Dibowitz | 93362a8 | 2010-07-22 00:05:01 +0200 | [diff] [blame] | 23 | #include <linux/usb/quirks.h> |
akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 24 | #include <linux/kthread.h> |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 25 | #include <linux/mutex.h> |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 26 | #include <linux/freezer.h> |
Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 27 | #include <linux/pm_runtime.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <asm/uaccess.h> |
| 30 | #include <asm/byteorder.h> |
| 31 | |
| 32 | #include "usb.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
Greg Kroah-Hartman | f2a383e | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 34 | /* if we are in debug mode, always announce new devices */ |
| 35 | #ifdef DEBUG |
| 36 | #ifndef CONFIG_USB_ANNOUNCE_NEW_DEVICES |
| 37 | #define CONFIG_USB_ANNOUNCE_NEW_DEVICES |
| 38 | #endif |
| 39 | #endif |
| 40 | |
Alan Stern | 1bb5f66 | 2006-11-06 11:56:13 -0500 | [diff] [blame] | 41 | struct usb_hub { |
| 42 | struct device *intfdev; /* the "interface" device */ |
| 43 | struct usb_device *hdev; |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 44 | struct kref kref; |
Alan Stern | 1bb5f66 | 2006-11-06 11:56:13 -0500 | [diff] [blame] | 45 | struct urb *urb; /* for interrupt polling pipe */ |
| 46 | |
| 47 | /* buffer for urb ... with extra space in case of babble */ |
| 48 | char (*buffer)[8]; |
Alan Stern | 1bb5f66 | 2006-11-06 11:56:13 -0500 | [diff] [blame] | 49 | union { |
| 50 | struct usb_hub_status hub; |
| 51 | struct usb_port_status port; |
| 52 | } *status; /* buffer for status reports */ |
Alan Stern | db90e7a | 2007-02-05 09:56:15 -0500 | [diff] [blame] | 53 | struct mutex status_mutex; /* for the status buffer */ |
Alan Stern | 1bb5f66 | 2006-11-06 11:56:13 -0500 | [diff] [blame] | 54 | |
| 55 | int error; /* last reported error */ |
| 56 | int nerrors; /* track consecutive errors */ |
| 57 | |
| 58 | struct list_head event_list; /* hubs w/data or errs ready */ |
| 59 | unsigned long event_bits[1]; /* status change bitmask */ |
| 60 | unsigned long change_bits[1]; /* ports with logical connect |
| 61 | status change */ |
| 62 | unsigned long busy_bits[1]; /* ports being reset or |
| 63 | resumed */ |
Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 64 | unsigned long removed_bits[1]; /* ports with a "removed" |
| 65 | device present */ |
Alan Stern | 1bb5f66 | 2006-11-06 11:56:13 -0500 | [diff] [blame] | 66 | #if USB_MAXCHILDREN > 31 /* 8*sizeof(unsigned long) - 1 */ |
| 67 | #error event_bits[] is too short! |
| 68 | #endif |
| 69 | |
| 70 | struct usb_hub_descriptor *descriptor; /* class descriptor */ |
| 71 | struct usb_tt tt; /* Transaction Translator */ |
| 72 | |
| 73 | unsigned mA_per_port; /* current for each child */ |
| 74 | |
| 75 | unsigned limited_power:1; |
| 76 | unsigned quiescing:1; |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 77 | unsigned disconnected:1; |
Alan Stern | 1bb5f66 | 2006-11-06 11:56:13 -0500 | [diff] [blame] | 78 | |
| 79 | unsigned has_indicators:1; |
| 80 | u8 indicator[USB_MAXCHILDREN]; |
David Howells | 6d5aefb | 2006-12-05 19:36:26 +0000 | [diff] [blame] | 81 | struct delayed_work leds; |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 82 | struct delayed_work init_work; |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 83 | void **port_owners; |
Alan Stern | 1bb5f66 | 2006-11-06 11:56:13 -0500 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | /* Protect struct usb_device->state and ->children members |
Alan Stern | 9ad3d6c | 2005-11-17 17:10:32 -0500 | [diff] [blame] | 88 | * Note: Both are also protected by ->dev.sem, except that ->state can |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | * change to USB_STATE_NOTATTACHED even when the semaphore isn't held. */ |
| 90 | static DEFINE_SPINLOCK(device_state_lock); |
| 91 | |
| 92 | /* khubd's worklist and its lock */ |
| 93 | static DEFINE_SPINLOCK(hub_event_lock); |
| 94 | static LIST_HEAD(hub_event_list); /* List of hubs needing servicing */ |
| 95 | |
| 96 | /* Wakes up khubd */ |
| 97 | static DECLARE_WAIT_QUEUE_HEAD(khubd_wait); |
| 98 | |
akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 99 | static struct task_struct *khubd_task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
| 101 | /* cycle leds on hubs that aren't blinking for attention */ |
| 102 | static int blinkenlights = 0; |
| 103 | module_param (blinkenlights, bool, S_IRUGO); |
| 104 | MODULE_PARM_DESC (blinkenlights, "true to cycle leds on hubs"); |
| 105 | |
| 106 | /* |
Jaroslav Kysela | fd7c519 | 2008-10-10 16:24:45 +0200 | [diff] [blame] | 107 | * Device SATA8000 FW1.0 from DATAST0R Technology Corp requires about |
| 108 | * 10 seconds to send reply for the initial 64-byte descriptor request. |
| 109 | */ |
| 110 | /* define initial 64-byte descriptor request timeout in milliseconds */ |
| 111 | static int initial_descriptor_timeout = USB_CTRL_GET_TIMEOUT; |
| 112 | module_param(initial_descriptor_timeout, int, S_IRUGO|S_IWUSR); |
Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 113 | MODULE_PARM_DESC(initial_descriptor_timeout, |
| 114 | "initial 64-byte descriptor request timeout in milliseconds " |
| 115 | "(default 5000 - 5.0 seconds)"); |
Jaroslav Kysela | fd7c519 | 2008-10-10 16:24:45 +0200 | [diff] [blame] | 116 | |
| 117 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | * As of 2.6.10 we introduce a new USB device initialization scheme which |
| 119 | * closely resembles the way Windows works. Hopefully it will be compatible |
| 120 | * with a wider range of devices than the old scheme. However some previously |
| 121 | * working devices may start giving rise to "device not accepting address" |
| 122 | * errors; if that happens the user can try the old scheme by adjusting the |
| 123 | * following module parameters. |
| 124 | * |
| 125 | * For maximum flexibility there are two boolean parameters to control the |
| 126 | * hub driver's behavior. On the first initialization attempt, if the |
| 127 | * "old_scheme_first" parameter is set then the old scheme will be used, |
| 128 | * otherwise the new scheme is used. If that fails and "use_both_schemes" |
| 129 | * is set, then the driver will make another attempt, using the other scheme. |
| 130 | */ |
| 131 | static int old_scheme_first = 0; |
| 132 | module_param(old_scheme_first, bool, S_IRUGO | S_IWUSR); |
| 133 | MODULE_PARM_DESC(old_scheme_first, |
| 134 | "start with the old device initialization scheme"); |
| 135 | |
| 136 | static int use_both_schemes = 1; |
| 137 | module_param(use_both_schemes, bool, S_IRUGO | S_IWUSR); |
| 138 | MODULE_PARM_DESC(use_both_schemes, |
| 139 | "try the other device initialization scheme if the " |
| 140 | "first one fails"); |
| 141 | |
Alan Stern | 32fe019 | 2007-10-10 16:27:07 -0400 | [diff] [blame] | 142 | /* Mutual exclusion for EHCI CF initialization. This interferes with |
| 143 | * port reset on some companion controllers. |
| 144 | */ |
| 145 | DECLARE_RWSEM(ehci_cf_port_reset_rwsem); |
| 146 | EXPORT_SYMBOL_GPL(ehci_cf_port_reset_rwsem); |
| 147 | |
Alan Stern | 948fea3 | 2008-04-28 11:07:07 -0400 | [diff] [blame] | 148 | #define HUB_DEBOUNCE_TIMEOUT 1500 |
| 149 | #define HUB_DEBOUNCE_STEP 25 |
| 150 | #define HUB_DEBOUNCE_STABLE 100 |
| 151 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 153 | static int usb_reset_and_verify_device(struct usb_device *udev); |
| 154 | |
Dan Williams | 404d5b1 | 2007-04-26 00:12:10 -0700 | [diff] [blame] | 155 | static inline char *portspeed(int portstatus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | { |
Alan Stern | 288ead4 | 2010-03-04 11:32:30 -0500 | [diff] [blame] | 157 | if (portstatus & USB_PORT_STAT_HIGH_SPEED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | return "480 Mb/s"; |
Alan Stern | 288ead4 | 2010-03-04 11:32:30 -0500 | [diff] [blame] | 159 | else if (portstatus & USB_PORT_STAT_LOW_SPEED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | return "1.5 Mb/s"; |
Alan Stern | 288ead4 | 2010-03-04 11:32:30 -0500 | [diff] [blame] | 161 | else if (portstatus & USB_PORT_STAT_SUPER_SPEED) |
Sarah Sharp | d2e9b4d | 2009-04-27 19:55:01 -0700 | [diff] [blame] | 162 | return "5.0 Gb/s"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | else |
| 164 | return "12 Mb/s"; |
| 165 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | |
| 167 | /* Note that hdev or one of its children must be locked! */ |
Alan Stern | 25118084 | 2009-07-22 14:41:18 -0400 | [diff] [blame] | 168 | static struct usb_hub *hdev_to_hub(struct usb_device *hdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | { |
Alan Stern | 25118084 | 2009-07-22 14:41:18 -0400 | [diff] [blame] | 170 | if (!hdev || !hdev->actconfig) |
| 171 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | return usb_get_intfdata(hdev->actconfig->interface[0]); |
| 173 | } |
| 174 | |
| 175 | /* USB 2.0 spec Section 11.24.4.5 */ |
| 176 | static int get_hub_descriptor(struct usb_device *hdev, void *data, int size) |
| 177 | { |
| 178 | int i, ret; |
| 179 | |
| 180 | for (i = 0; i < 3; i++) { |
| 181 | ret = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0), |
| 182 | USB_REQ_GET_DESCRIPTOR, USB_DIR_IN | USB_RT_HUB, |
| 183 | USB_DT_HUB << 8, 0, data, size, |
| 184 | USB_CTRL_GET_TIMEOUT); |
| 185 | if (ret >= (USB_DT_HUB_NONVAR_SIZE + 2)) |
| 186 | return ret; |
| 187 | } |
| 188 | return -EINVAL; |
| 189 | } |
| 190 | |
| 191 | /* |
| 192 | * USB 2.0 spec Section 11.24.2.1 |
| 193 | */ |
| 194 | static int clear_hub_feature(struct usb_device *hdev, int feature) |
| 195 | { |
| 196 | return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), |
| 197 | USB_REQ_CLEAR_FEATURE, USB_RT_HUB, feature, 0, NULL, 0, 1000); |
| 198 | } |
| 199 | |
| 200 | /* |
| 201 | * USB 2.0 spec Section 11.24.2.2 |
| 202 | */ |
| 203 | static int clear_port_feature(struct usb_device *hdev, int port1, int feature) |
| 204 | { |
| 205 | return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), |
| 206 | USB_REQ_CLEAR_FEATURE, USB_RT_PORT, feature, port1, |
| 207 | NULL, 0, 1000); |
| 208 | } |
| 209 | |
| 210 | /* |
| 211 | * USB 2.0 spec Section 11.24.2.13 |
| 212 | */ |
| 213 | static int set_port_feature(struct usb_device *hdev, int port1, int feature) |
| 214 | { |
| 215 | return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), |
| 216 | USB_REQ_SET_FEATURE, USB_RT_PORT, feature, port1, |
| 217 | NULL, 0, 1000); |
| 218 | } |
| 219 | |
| 220 | /* |
| 221 | * USB 2.0 spec Section 11.24.2.7.1.10 and table 11-7 |
| 222 | * for info about using port indicators |
| 223 | */ |
| 224 | static void set_port_led( |
| 225 | struct usb_hub *hub, |
| 226 | int port1, |
| 227 | int selector |
| 228 | ) |
| 229 | { |
| 230 | int status = set_port_feature(hub->hdev, (selector << 8) | port1, |
| 231 | USB_PORT_FEAT_INDICATOR); |
| 232 | if (status < 0) |
| 233 | dev_dbg (hub->intfdev, |
| 234 | "port %d indicator %s status %d\n", |
| 235 | port1, |
| 236 | ({ char *s; switch (selector) { |
| 237 | case HUB_LED_AMBER: s = "amber"; break; |
| 238 | case HUB_LED_GREEN: s = "green"; break; |
| 239 | case HUB_LED_OFF: s = "off"; break; |
| 240 | case HUB_LED_AUTO: s = "auto"; break; |
| 241 | default: s = "??"; break; |
| 242 | }; s; }), |
| 243 | status); |
| 244 | } |
| 245 | |
| 246 | #define LED_CYCLE_PERIOD ((2*HZ)/3) |
| 247 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 248 | static void led_work (struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | { |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 250 | struct usb_hub *hub = |
| 251 | container_of(work, struct usb_hub, leds.work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | struct usb_device *hdev = hub->hdev; |
| 253 | unsigned i; |
| 254 | unsigned changed = 0; |
| 255 | int cursor = -1; |
| 256 | |
| 257 | if (hdev->state != USB_STATE_CONFIGURED || hub->quiescing) |
| 258 | return; |
| 259 | |
| 260 | for (i = 0; i < hub->descriptor->bNbrPorts; i++) { |
| 261 | unsigned selector, mode; |
| 262 | |
| 263 | /* 30%-50% duty cycle */ |
| 264 | |
| 265 | switch (hub->indicator[i]) { |
| 266 | /* cycle marker */ |
| 267 | case INDICATOR_CYCLE: |
| 268 | cursor = i; |
| 269 | selector = HUB_LED_AUTO; |
| 270 | mode = INDICATOR_AUTO; |
| 271 | break; |
| 272 | /* blinking green = sw attention */ |
| 273 | case INDICATOR_GREEN_BLINK: |
| 274 | selector = HUB_LED_GREEN; |
| 275 | mode = INDICATOR_GREEN_BLINK_OFF; |
| 276 | break; |
| 277 | case INDICATOR_GREEN_BLINK_OFF: |
| 278 | selector = HUB_LED_OFF; |
| 279 | mode = INDICATOR_GREEN_BLINK; |
| 280 | break; |
| 281 | /* blinking amber = hw attention */ |
| 282 | case INDICATOR_AMBER_BLINK: |
| 283 | selector = HUB_LED_AMBER; |
| 284 | mode = INDICATOR_AMBER_BLINK_OFF; |
| 285 | break; |
| 286 | case INDICATOR_AMBER_BLINK_OFF: |
| 287 | selector = HUB_LED_OFF; |
| 288 | mode = INDICATOR_AMBER_BLINK; |
| 289 | break; |
| 290 | /* blink green/amber = reserved */ |
| 291 | case INDICATOR_ALT_BLINK: |
| 292 | selector = HUB_LED_GREEN; |
| 293 | mode = INDICATOR_ALT_BLINK_OFF; |
| 294 | break; |
| 295 | case INDICATOR_ALT_BLINK_OFF: |
| 296 | selector = HUB_LED_AMBER; |
| 297 | mode = INDICATOR_ALT_BLINK; |
| 298 | break; |
| 299 | default: |
| 300 | continue; |
| 301 | } |
| 302 | if (selector != HUB_LED_AUTO) |
| 303 | changed = 1; |
| 304 | set_port_led(hub, i + 1, selector); |
| 305 | hub->indicator[i] = mode; |
| 306 | } |
| 307 | if (!changed && blinkenlights) { |
| 308 | cursor++; |
| 309 | cursor %= hub->descriptor->bNbrPorts; |
| 310 | set_port_led(hub, cursor + 1, HUB_LED_GREEN); |
| 311 | hub->indicator[cursor] = INDICATOR_CYCLE; |
| 312 | changed++; |
| 313 | } |
| 314 | if (changed) |
| 315 | schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD); |
| 316 | } |
| 317 | |
| 318 | /* use a short timeout for hub/port status fetches */ |
| 319 | #define USB_STS_TIMEOUT 1000 |
| 320 | #define USB_STS_RETRIES 5 |
| 321 | |
| 322 | /* |
| 323 | * USB 2.0 spec Section 11.24.2.6 |
| 324 | */ |
| 325 | static int get_hub_status(struct usb_device *hdev, |
| 326 | struct usb_hub_status *data) |
| 327 | { |
| 328 | int i, status = -ETIMEDOUT; |
| 329 | |
| 330 | for (i = 0; i < USB_STS_RETRIES && status == -ETIMEDOUT; i++) { |
| 331 | status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0), |
| 332 | USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_HUB, 0, 0, |
| 333 | data, sizeof(*data), USB_STS_TIMEOUT); |
| 334 | } |
| 335 | return status; |
| 336 | } |
| 337 | |
| 338 | /* |
| 339 | * USB 2.0 spec Section 11.24.2.7 |
| 340 | */ |
| 341 | static int get_port_status(struct usb_device *hdev, int port1, |
| 342 | struct usb_port_status *data) |
| 343 | { |
| 344 | int i, status = -ETIMEDOUT; |
| 345 | |
| 346 | for (i = 0; i < USB_STS_RETRIES && status == -ETIMEDOUT; i++) { |
| 347 | status = usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0), |
| 348 | USB_REQ_GET_STATUS, USB_DIR_IN | USB_RT_PORT, 0, port1, |
| 349 | data, sizeof(*data), USB_STS_TIMEOUT); |
| 350 | } |
| 351 | return status; |
| 352 | } |
| 353 | |
Alan Stern | 3eb1491 | 2008-03-03 15:15:43 -0500 | [diff] [blame] | 354 | static int hub_port_status(struct usb_hub *hub, int port1, |
| 355 | u16 *status, u16 *change) |
| 356 | { |
| 357 | int ret; |
| 358 | |
| 359 | mutex_lock(&hub->status_mutex); |
| 360 | ret = get_port_status(hub->hdev, port1, &hub->status->port); |
| 361 | if (ret < 4) { |
| 362 | dev_err(hub->intfdev, |
| 363 | "%s failed (err = %d)\n", __func__, ret); |
| 364 | if (ret >= 0) |
| 365 | ret = -EIO; |
| 366 | } else { |
| 367 | *status = le16_to_cpu(hub->status->port.wPortStatus); |
| 368 | *change = le16_to_cpu(hub->status->port.wPortChange); |
| 369 | ret = 0; |
| 370 | } |
| 371 | mutex_unlock(&hub->status_mutex); |
| 372 | return ret; |
| 373 | } |
| 374 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | static void kick_khubd(struct usb_hub *hub) |
| 376 | { |
| 377 | unsigned long flags; |
| 378 | |
| 379 | spin_lock_irqsave(&hub_event_lock, flags); |
Roel Kluin | 2e2c5ee | 2007-10-26 23:54:35 +0200 | [diff] [blame] | 380 | if (!hub->disconnected && list_empty(&hub->event_list)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | list_add_tail(&hub->event_list, &hub_event_list); |
Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 382 | |
| 383 | /* Suppress autosuspend until khubd runs */ |
| 384 | usb_autopm_get_interface_no_resume( |
| 385 | to_usb_interface(hub->intfdev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | wake_up(&khubd_wait); |
| 387 | } |
| 388 | spin_unlock_irqrestore(&hub_event_lock, flags); |
| 389 | } |
| 390 | |
| 391 | void usb_kick_khubd(struct usb_device *hdev) |
| 392 | { |
Alan Stern | 25118084 | 2009-07-22 14:41:18 -0400 | [diff] [blame] | 393 | struct usb_hub *hub = hdev_to_hub(hdev); |
| 394 | |
| 395 | if (hub) |
| 396 | kick_khubd(hub); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | |
| 400 | /* completion function, fires on port status changes and various faults */ |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 401 | static void hub_irq(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | { |
Tobias Klauser | ec17cf1 | 2006-09-13 21:38:41 +0200 | [diff] [blame] | 403 | struct usb_hub *hub = urb->context; |
Alan Stern | e015268 | 2007-08-24 15:42:52 -0400 | [diff] [blame] | 404 | int status = urb->status; |
Roel Kluin | 71d2718 | 2009-03-13 12:19:18 +0100 | [diff] [blame] | 405 | unsigned i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | unsigned long bits; |
| 407 | |
Alan Stern | e015268 | 2007-08-24 15:42:52 -0400 | [diff] [blame] | 408 | switch (status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | case -ENOENT: /* synchronous unlink */ |
| 410 | case -ECONNRESET: /* async unlink */ |
| 411 | case -ESHUTDOWN: /* hardware going away */ |
| 412 | return; |
| 413 | |
| 414 | default: /* presumably an error */ |
| 415 | /* Cause a hub reset after 10 consecutive errors */ |
Alan Stern | e015268 | 2007-08-24 15:42:52 -0400 | [diff] [blame] | 416 | dev_dbg (hub->intfdev, "transfer --> %d\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | if ((++hub->nerrors < 10) || hub->error) |
| 418 | goto resubmit; |
Alan Stern | e015268 | 2007-08-24 15:42:52 -0400 | [diff] [blame] | 419 | hub->error = status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | /* FALL THROUGH */ |
Tobias Klauser | ec17cf1 | 2006-09-13 21:38:41 +0200 | [diff] [blame] | 421 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | /* let khubd handle things */ |
| 423 | case 0: /* we got data: port status changed */ |
| 424 | bits = 0; |
| 425 | for (i = 0; i < urb->actual_length; ++i) |
| 426 | bits |= ((unsigned long) ((*hub->buffer)[i])) |
| 427 | << (i*8); |
| 428 | hub->event_bits[0] = bits; |
| 429 | break; |
| 430 | } |
| 431 | |
| 432 | hub->nerrors = 0; |
| 433 | |
| 434 | /* Something happened, let khubd figure it out */ |
| 435 | kick_khubd(hub); |
| 436 | |
| 437 | resubmit: |
| 438 | if (hub->quiescing) |
| 439 | return; |
| 440 | |
| 441 | if ((status = usb_submit_urb (hub->urb, GFP_ATOMIC)) != 0 |
| 442 | && status != -ENODEV && status != -EPERM) |
| 443 | dev_err (hub->intfdev, "resubmit --> %d\n", status); |
| 444 | } |
| 445 | |
| 446 | /* USB 2.0 spec Section 11.24.2.3 */ |
| 447 | static inline int |
| 448 | hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt) |
| 449 | { |
Alan Stern | c2f6595 | 2009-11-18 11:37:15 -0500 | [diff] [blame] | 450 | return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo, |
| 452 | tt, NULL, 0, 1000); |
| 453 | } |
| 454 | |
| 455 | /* |
| 456 | * enumeration blocks khubd for a long time. we use keventd instead, since |
| 457 | * long blocking there is the exception, not the rule. accordingly, HCDs |
| 458 | * talking to TTs must queue control transfers (not just bulk and iso), so |
| 459 | * both can talk to the same hub concurrently. |
| 460 | */ |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 461 | static void hub_tt_work(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 462 | { |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 463 | struct usb_hub *hub = |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 464 | container_of(work, struct usb_hub, tt.clear_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | unsigned long flags; |
Mark Lord | 55e5fdf | 2007-05-14 19:48:02 -0400 | [diff] [blame] | 466 | int limit = 100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | |
| 468 | spin_lock_irqsave (&hub->tt.lock, flags); |
Mark Lord | 55e5fdf | 2007-05-14 19:48:02 -0400 | [diff] [blame] | 469 | while (--limit && !list_empty (&hub->tt.clear_list)) { |
H Hartley Sweeten | d0f830d | 2009-04-22 16:03:05 -0400 | [diff] [blame] | 470 | struct list_head *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | struct usb_tt_clear *clear; |
| 472 | struct usb_device *hdev = hub->hdev; |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 473 | const struct hc_driver *drv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | int status; |
| 475 | |
H Hartley Sweeten | d0f830d | 2009-04-22 16:03:05 -0400 | [diff] [blame] | 476 | next = hub->tt.clear_list.next; |
| 477 | clear = list_entry (next, struct usb_tt_clear, clear_list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | list_del (&clear->clear_list); |
| 479 | |
| 480 | /* drop lock so HCD can concurrently report other TT errors */ |
| 481 | spin_unlock_irqrestore (&hub->tt.lock, flags); |
| 482 | status = hub_clear_tt_buffer (hdev, clear->devinfo, clear->tt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | if (status) |
| 484 | dev_err (&hdev->dev, |
| 485 | "clear tt %d (%04x) error %d\n", |
| 486 | clear->tt, clear->devinfo, status); |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 487 | |
| 488 | /* Tell the HCD, even if the operation failed */ |
| 489 | drv = clear->hcd->driver; |
| 490 | if (drv->clear_tt_buffer_complete) |
| 491 | (drv->clear_tt_buffer_complete)(clear->hcd, clear->ep); |
| 492 | |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 493 | kfree(clear); |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 494 | spin_lock_irqsave(&hub->tt.lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | } |
| 496 | spin_unlock_irqrestore (&hub->tt.lock, flags); |
| 497 | } |
| 498 | |
| 499 | /** |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 500 | * usb_hub_clear_tt_buffer - clear control/bulk TT state in high speed hub |
| 501 | * @urb: an URB associated with the failed or incomplete split transaction |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | * |
| 503 | * High speed HCDs use this to tell the hub driver that some split control or |
| 504 | * bulk transaction failed in a way that requires clearing internal state of |
| 505 | * a transaction translator. This is normally detected (and reported) from |
| 506 | * interrupt context. |
| 507 | * |
| 508 | * It may not be possible for that hub to handle additional full (or low) |
| 509 | * speed transactions until that state is fully cleared out. |
| 510 | */ |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 511 | int usb_hub_clear_tt_buffer(struct urb *urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | { |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 513 | struct usb_device *udev = urb->dev; |
| 514 | int pipe = urb->pipe; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | struct usb_tt *tt = udev->tt; |
| 516 | unsigned long flags; |
| 517 | struct usb_tt_clear *clear; |
| 518 | |
| 519 | /* we've got to cope with an arbitrary number of pending TT clears, |
| 520 | * since each TT has "at least two" buffers that can need it (and |
| 521 | * there can be many TTs per hub). even if they're uncommon. |
| 522 | */ |
Christoph Lameter | 54e6ecb | 2006-12-06 20:33:16 -0800 | [diff] [blame] | 523 | if ((clear = kmalloc (sizeof *clear, GFP_ATOMIC)) == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | dev_err (&udev->dev, "can't save CLEAR_TT_BUFFER state\n"); |
| 525 | /* FIXME recover somehow ... RESET_TT? */ |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 526 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | } |
| 528 | |
| 529 | /* info that CLEAR_TT_BUFFER needs */ |
| 530 | clear->tt = tt->multi ? udev->ttport : 1; |
| 531 | clear->devinfo = usb_pipeendpoint (pipe); |
| 532 | clear->devinfo |= udev->devnum << 4; |
| 533 | clear->devinfo |= usb_pipecontrol (pipe) |
| 534 | ? (USB_ENDPOINT_XFER_CONTROL << 11) |
| 535 | : (USB_ENDPOINT_XFER_BULK << 11); |
| 536 | if (usb_pipein (pipe)) |
| 537 | clear->devinfo |= 1 << 15; |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 538 | |
| 539 | /* info for completion callback */ |
| 540 | clear->hcd = bus_to_hcd(udev->bus); |
| 541 | clear->ep = urb->ep; |
| 542 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | /* tell keventd to clear state for this TT */ |
| 544 | spin_lock_irqsave (&tt->lock, flags); |
| 545 | list_add_tail (&clear->clear_list, &tt->clear_list); |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 546 | schedule_work(&tt->clear_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | spin_unlock_irqrestore (&tt->lock, flags); |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 548 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | } |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 550 | EXPORT_SYMBOL_GPL(usb_hub_clear_tt_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 552 | /* If do_delay is false, return the number of milliseconds the caller |
| 553 | * needs to delay. |
| 554 | */ |
| 555 | static unsigned hub_power_on(struct usb_hub *hub, bool do_delay) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | { |
| 557 | int port1; |
David Brownell | b789696 | 2005-08-31 10:41:44 -0700 | [diff] [blame] | 558 | unsigned pgood_delay = hub->descriptor->bPwrOn2PwrGood * 2; |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 559 | unsigned delay; |
Alan Stern | 4489a57 | 2006-04-27 15:54:22 -0400 | [diff] [blame] | 560 | u16 wHubCharacteristics = |
| 561 | le16_to_cpu(hub->descriptor->wHubCharacteristics); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | |
Alan Stern | 4489a57 | 2006-04-27 15:54:22 -0400 | [diff] [blame] | 563 | /* Enable power on each port. Some hubs have reserved values |
| 564 | * of LPSM (> 2) in their descriptors, even though they are |
| 565 | * USB 2.0 hubs. Some hubs do not implement port-power switching |
| 566 | * but only emulate it. In all cases, the ports won't work |
| 567 | * unless we send these messages to the hub. |
| 568 | */ |
| 569 | if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | dev_dbg(hub->intfdev, "enabling power on all ports\n"); |
Alan Stern | 4489a57 | 2006-04-27 15:54:22 -0400 | [diff] [blame] | 571 | else |
| 572 | dev_dbg(hub->intfdev, "trying to enable port power on " |
| 573 | "non-switchable hub\n"); |
| 574 | for (port1 = 1; port1 <= hub->descriptor->bNbrPorts; port1++) |
| 575 | set_port_feature(hub->hdev, port1, USB_PORT_FEAT_POWER); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | |
David Brownell | b789696 | 2005-08-31 10:41:44 -0700 | [diff] [blame] | 577 | /* Wait at least 100 msec for power to become stable */ |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 578 | delay = max(pgood_delay, (unsigned) 100); |
| 579 | if (do_delay) |
| 580 | msleep(delay); |
| 581 | return delay; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | } |
| 583 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | static int hub_hub_status(struct usb_hub *hub, |
| 585 | u16 *status, u16 *change) |
| 586 | { |
| 587 | int ret; |
| 588 | |
Alan Stern | db90e7a | 2007-02-05 09:56:15 -0500 | [diff] [blame] | 589 | mutex_lock(&hub->status_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | ret = get_hub_status(hub->hdev, &hub->status->hub); |
| 591 | if (ret < 0) |
| 592 | dev_err (hub->intfdev, |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 593 | "%s failed (err = %d)\n", __func__, ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | else { |
| 595 | *status = le16_to_cpu(hub->status->hub.wHubStatus); |
| 596 | *change = le16_to_cpu(hub->status->hub.wHubChange); |
| 597 | ret = 0; |
| 598 | } |
Alan Stern | db90e7a | 2007-02-05 09:56:15 -0500 | [diff] [blame] | 599 | mutex_unlock(&hub->status_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | return ret; |
| 601 | } |
| 602 | |
Alan Stern | 8b28c75 | 2005-08-10 17:04:13 -0400 | [diff] [blame] | 603 | static int hub_port_disable(struct usb_hub *hub, int port1, int set_state) |
| 604 | { |
| 605 | struct usb_device *hdev = hub->hdev; |
Alan Stern | 0458d5b | 2007-05-04 11:52:20 -0400 | [diff] [blame] | 606 | int ret = 0; |
Alan Stern | 8b28c75 | 2005-08-10 17:04:13 -0400 | [diff] [blame] | 607 | |
Alan Stern | 0458d5b | 2007-05-04 11:52:20 -0400 | [diff] [blame] | 608 | if (hdev->children[port1-1] && set_state) |
Alan Stern | 8b28c75 | 2005-08-10 17:04:13 -0400 | [diff] [blame] | 609 | usb_set_device_state(hdev->children[port1-1], |
| 610 | USB_STATE_NOTATTACHED); |
Alan Stern | 0458d5b | 2007-05-04 11:52:20 -0400 | [diff] [blame] | 611 | if (!hub->error) |
| 612 | ret = clear_port_feature(hdev, port1, USB_PORT_FEAT_ENABLE); |
Alan Stern | 8b28c75 | 2005-08-10 17:04:13 -0400 | [diff] [blame] | 613 | if (ret) |
| 614 | dev_err(hub->intfdev, "cannot disable port %d (err = %d)\n", |
Alan Stern | 0458d5b | 2007-05-04 11:52:20 -0400 | [diff] [blame] | 615 | port1, ret); |
Alan Stern | 8b28c75 | 2005-08-10 17:04:13 -0400 | [diff] [blame] | 616 | return ret; |
| 617 | } |
| 618 | |
Alan Stern | 0458d5b | 2007-05-04 11:52:20 -0400 | [diff] [blame] | 619 | /* |
| 620 | * Disable a port and mark a logical connnect-change event, so that some |
| 621 | * time later khubd will disconnect() any existing usb_device on the port |
| 622 | * and will re-enumerate if there actually is a device attached. |
| 623 | */ |
| 624 | static void hub_port_logical_disconnect(struct usb_hub *hub, int port1) |
| 625 | { |
| 626 | dev_dbg(hub->intfdev, "logical disconnect on port %d\n", port1); |
| 627 | hub_port_disable(hub, port1, 1); |
| 628 | |
| 629 | /* FIXME let caller ask to power down the port: |
| 630 | * - some devices won't enumerate without a VBUS power cycle |
| 631 | * - SRP saves power that way |
| 632 | * - ... new call, TBD ... |
| 633 | * That's easy if this hub can switch power per-port, and |
| 634 | * khubd reactivates the port later (timer, SRP, etc). |
| 635 | * Powerdown must be optional, because of reset/DFU. |
| 636 | */ |
| 637 | |
| 638 | set_bit(port1, hub->change_bits); |
| 639 | kick_khubd(hub); |
| 640 | } |
| 641 | |
Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 642 | /** |
| 643 | * usb_remove_device - disable a device's port on its parent hub |
| 644 | * @udev: device to be disabled and removed |
| 645 | * Context: @udev locked, must be able to sleep. |
| 646 | * |
| 647 | * After @udev's port has been disabled, khubd is notified and it will |
| 648 | * see that the device has been disconnected. When the device is |
| 649 | * physically unplugged and something is plugged in, the events will |
| 650 | * be received and processed normally. |
| 651 | */ |
| 652 | int usb_remove_device(struct usb_device *udev) |
| 653 | { |
| 654 | struct usb_hub *hub; |
| 655 | struct usb_interface *intf; |
| 656 | |
| 657 | if (!udev->parent) /* Can't remove a root hub */ |
| 658 | return -EINVAL; |
| 659 | hub = hdev_to_hub(udev->parent); |
| 660 | intf = to_usb_interface(hub->intfdev); |
| 661 | |
| 662 | usb_autopm_get_interface(intf); |
| 663 | set_bit(udev->portnum, hub->removed_bits); |
| 664 | hub_port_logical_disconnect(hub, udev->portnum); |
| 665 | usb_autopm_put_interface(intf); |
| 666 | return 0; |
| 667 | } |
| 668 | |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 669 | enum hub_activation_type { |
Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 670 | HUB_INIT, HUB_INIT2, HUB_INIT3, /* INITs must come first */ |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 671 | HUB_POST_RESET, HUB_RESUME, HUB_RESET_RESUME, |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 672 | }; |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 673 | |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 674 | static void hub_init_func2(struct work_struct *ws); |
| 675 | static void hub_init_func3(struct work_struct *ws); |
| 676 | |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 677 | 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] | 678 | { |
| 679 | struct usb_device *hdev = hub->hdev; |
| 680 | int port1; |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 681 | int status; |
Alan Stern | 948fea3 | 2008-04-28 11:07:07 -0400 | [diff] [blame] | 682 | bool need_debounce_delay = false; |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 683 | unsigned delay; |
| 684 | |
| 685 | /* Continue a partial initialization */ |
| 686 | if (type == HUB_INIT2) |
| 687 | goto init2; |
| 688 | if (type == HUB_INIT3) |
| 689 | goto init3; |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 690 | |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 691 | /* After a resume, port power should still be on. |
| 692 | * For any other type of activation, turn it on. |
| 693 | */ |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 694 | if (type != HUB_RESUME) { |
| 695 | |
| 696 | /* Speed up system boot by using a delayed_work for the |
| 697 | * hub's initial power-up delays. This is pretty awkward |
| 698 | * and the implementation looks like a home-brewed sort of |
| 699 | * setjmp/longjmp, but it saves at least 100 ms for each |
| 700 | * root hub (assuming usbcore is compiled into the kernel |
| 701 | * rather than as a module). It adds up. |
| 702 | * |
| 703 | * This can't be done for HUB_RESUME or HUB_RESET_RESUME |
| 704 | * because for those activation types the ports have to be |
| 705 | * operational when we return. In theory this could be done |
| 706 | * for HUB_POST_RESET, but it's easier not to. |
| 707 | */ |
| 708 | if (type == HUB_INIT) { |
| 709 | delay = hub_power_on(hub, false); |
| 710 | PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func2); |
| 711 | schedule_delayed_work(&hub->init_work, |
| 712 | msecs_to_jiffies(delay)); |
Alan Stern | 61fbeba | 2008-10-27 12:07:44 -0400 | [diff] [blame] | 713 | |
| 714 | /* Suppress autosuspend until init is done */ |
Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 715 | usb_autopm_get_interface_no_resume( |
| 716 | to_usb_interface(hub->intfdev)); |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 717 | return; /* Continues at init2: below */ |
| 718 | } else { |
| 719 | hub_power_on(hub, true); |
| 720 | } |
| 721 | } |
| 722 | init2: |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 723 | |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 724 | /* Check each port and set hub->change_bits to let khubd know |
| 725 | * which ports need attention. |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 726 | */ |
| 727 | for (port1 = 1; port1 <= hdev->maxchild; ++port1) { |
| 728 | struct usb_device *udev = hdev->children[port1-1]; |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 729 | u16 portstatus, portchange; |
| 730 | |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 731 | portstatus = portchange = 0; |
| 732 | status = hub_port_status(hub, port1, &portstatus, &portchange); |
| 733 | if (udev || (portstatus & USB_PORT_STAT_CONNECTION)) |
| 734 | dev_dbg(hub->intfdev, |
| 735 | "port %d: status %04x change %04x\n", |
| 736 | port1, portstatus, portchange); |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 737 | |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 738 | /* After anything other than HUB_RESUME (i.e., initialization |
| 739 | * or any sort of reset), every port should be disabled. |
| 740 | * Unconnected ports should likewise be disabled (paranoia), |
| 741 | * and so should ports for which we have no usb_device. |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 742 | */ |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 743 | if ((portstatus & USB_PORT_STAT_ENABLE) && ( |
| 744 | type != HUB_RESUME || |
| 745 | !(portstatus & USB_PORT_STAT_CONNECTION) || |
| 746 | !udev || |
| 747 | udev->state == USB_STATE_NOTATTACHED)) { |
Andiry Xu | 9f0a6cd | 2010-05-07 18:09:27 +0800 | [diff] [blame] | 748 | /* |
| 749 | * USB3 protocol ports will automatically transition |
| 750 | * to Enabled state when detect an USB3.0 device attach. |
| 751 | * Do not disable USB3 protocol ports. |
| 752 | * FIXME: USB3 root hub and external hubs are treated |
| 753 | * differently here. |
| 754 | */ |
| 755 | if (hdev->descriptor.bDeviceProtocol != 3 || |
| 756 | (!hdev->parent && |
| 757 | !(portstatus & USB_PORT_STAT_SUPER_SPEED))) { |
| 758 | clear_port_feature(hdev, port1, |
| 759 | USB_PORT_FEAT_ENABLE); |
| 760 | portstatus &= ~USB_PORT_STAT_ENABLE; |
Sarah Sharp | 85f0ff4 | 2010-10-14 07:22:54 -0700 | [diff] [blame^] | 761 | } else { |
| 762 | /* Pretend that power was lost for USB3 devs */ |
| 763 | portstatus &= ~USB_PORT_STAT_ENABLE; |
Andiry Xu | 9f0a6cd | 2010-05-07 18:09:27 +0800 | [diff] [blame] | 764 | } |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 765 | } |
| 766 | |
Alan Stern | 948fea3 | 2008-04-28 11:07:07 -0400 | [diff] [blame] | 767 | /* Clear status-change flags; we'll debounce later */ |
| 768 | if (portchange & USB_PORT_STAT_C_CONNECTION) { |
| 769 | need_debounce_delay = true; |
| 770 | clear_port_feature(hub->hdev, port1, |
| 771 | USB_PORT_FEAT_C_CONNECTION); |
| 772 | } |
| 773 | if (portchange & USB_PORT_STAT_C_ENABLE) { |
| 774 | need_debounce_delay = true; |
| 775 | clear_port_feature(hub->hdev, port1, |
| 776 | USB_PORT_FEAT_C_ENABLE); |
| 777 | } |
| 778 | |
Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 779 | /* We can forget about a "removed" device when there's a |
| 780 | * physical disconnect or the connect status changes. |
| 781 | */ |
| 782 | if (!(portstatus & USB_PORT_STAT_CONNECTION) || |
| 783 | (portchange & USB_PORT_STAT_C_CONNECTION)) |
| 784 | clear_bit(port1, hub->removed_bits); |
| 785 | |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 786 | if (!udev || udev->state == USB_STATE_NOTATTACHED) { |
| 787 | /* Tell khubd to disconnect the device or |
| 788 | * check for a new connection |
| 789 | */ |
| 790 | if (udev || (portstatus & USB_PORT_STAT_CONNECTION)) |
| 791 | set_bit(port1, hub->change_bits); |
| 792 | |
| 793 | } else if (portstatus & USB_PORT_STAT_ENABLE) { |
| 794 | /* The power session apparently survived the resume. |
| 795 | * If there was an overcurrent or suspend change |
| 796 | * (i.e., remote wakeup request), have khubd |
| 797 | * take care of it. |
| 798 | */ |
| 799 | if (portchange) |
| 800 | set_bit(port1, hub->change_bits); |
| 801 | |
| 802 | } else if (udev->persist_enabled) { |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 803 | #ifdef CONFIG_PM |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 804 | udev->reset_resume = 1; |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 805 | #endif |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 806 | set_bit(port1, hub->change_bits); |
| 807 | |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 808 | } else { |
| 809 | /* The power session is gone; tell khubd */ |
| 810 | usb_set_device_state(udev, USB_STATE_NOTATTACHED); |
| 811 | set_bit(port1, hub->change_bits); |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 812 | } |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 813 | } |
| 814 | |
Alan Stern | 948fea3 | 2008-04-28 11:07:07 -0400 | [diff] [blame] | 815 | /* If no port-status-change flags were set, we don't need any |
| 816 | * debouncing. If flags were set we can try to debounce the |
| 817 | * ports all at once right now, instead of letting khubd do them |
| 818 | * one at a time later on. |
| 819 | * |
| 820 | * If any port-status changes do occur during this delay, khubd |
| 821 | * will see them later and handle them normally. |
| 822 | */ |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 823 | if (need_debounce_delay) { |
| 824 | delay = HUB_DEBOUNCE_STABLE; |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 825 | |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 826 | /* Don't do a long sleep inside a workqueue routine */ |
| 827 | if (type == HUB_INIT2) { |
| 828 | PREPARE_DELAYED_WORK(&hub->init_work, hub_init_func3); |
| 829 | schedule_delayed_work(&hub->init_work, |
| 830 | msecs_to_jiffies(delay)); |
| 831 | return; /* Continues at init3: below */ |
| 832 | } else { |
| 833 | msleep(delay); |
| 834 | } |
| 835 | } |
| 836 | init3: |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 837 | hub->quiescing = 0; |
| 838 | |
| 839 | status = usb_submit_urb(hub->urb, GFP_NOIO); |
| 840 | if (status < 0) |
| 841 | dev_err(hub->intfdev, "activate --> %d\n", status); |
| 842 | if (hub->has_indicators && blinkenlights) |
| 843 | schedule_delayed_work(&hub->leds, LED_CYCLE_PERIOD); |
| 844 | |
| 845 | /* Scan all ports that need attention */ |
| 846 | kick_khubd(hub); |
Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 847 | |
| 848 | /* Allow autosuspend if it was suppressed */ |
| 849 | if (type <= HUB_INIT3) |
| 850 | usb_autopm_put_interface_async(to_usb_interface(hub->intfdev)); |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 851 | } |
| 852 | |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 853 | /* Implement the continuations for the delays above */ |
| 854 | static void hub_init_func2(struct work_struct *ws) |
| 855 | { |
| 856 | struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work); |
| 857 | |
| 858 | hub_activate(hub, HUB_INIT2); |
| 859 | } |
| 860 | |
| 861 | static void hub_init_func3(struct work_struct *ws) |
| 862 | { |
| 863 | struct usb_hub *hub = container_of(ws, struct usb_hub, init_work.work); |
| 864 | |
| 865 | hub_activate(hub, HUB_INIT3); |
| 866 | } |
| 867 | |
Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 868 | enum hub_quiescing_type { |
| 869 | HUB_DISCONNECT, HUB_PRE_RESET, HUB_SUSPEND |
| 870 | }; |
| 871 | |
| 872 | static void hub_quiesce(struct usb_hub *hub, enum hub_quiescing_type type) |
| 873 | { |
| 874 | struct usb_device *hdev = hub->hdev; |
| 875 | int i; |
| 876 | |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 877 | cancel_delayed_work_sync(&hub->init_work); |
| 878 | |
Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 879 | /* khubd and related activity won't re-trigger */ |
| 880 | hub->quiescing = 1; |
| 881 | |
| 882 | if (type != HUB_SUSPEND) { |
| 883 | /* Disconnect all the children */ |
| 884 | for (i = 0; i < hdev->maxchild; ++i) { |
| 885 | if (hdev->children[i]) |
| 886 | usb_disconnect(&hdev->children[i]); |
| 887 | } |
| 888 | } |
| 889 | |
| 890 | /* Stop khubd and related activity */ |
| 891 | usb_kill_urb(hub->urb); |
| 892 | if (hub->has_indicators) |
| 893 | cancel_delayed_work_sync(&hub->leds); |
| 894 | if (hub->tt.hub) |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 895 | cancel_work_sync(&hub->tt.clear_work); |
Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 896 | } |
| 897 | |
Alan Stern | 3eb1491 | 2008-03-03 15:15:43 -0500 | [diff] [blame] | 898 | /* caller has locked the hub device */ |
| 899 | static int hub_pre_reset(struct usb_interface *intf) |
| 900 | { |
| 901 | struct usb_hub *hub = usb_get_intfdata(intf); |
| 902 | |
Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 903 | hub_quiesce(hub, HUB_PRE_RESET); |
Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 904 | return 0; |
Alan Stern | 7d069b7 | 2005-11-18 12:06:34 -0500 | [diff] [blame] | 905 | } |
| 906 | |
| 907 | /* caller has locked the hub device */ |
Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 908 | static int hub_post_reset(struct usb_interface *intf) |
Alan Stern | 7d069b7 | 2005-11-18 12:06:34 -0500 | [diff] [blame] | 909 | { |
Alan Stern | 7de18d8 | 2006-06-01 13:37:24 -0400 | [diff] [blame] | 910 | struct usb_hub *hub = usb_get_intfdata(intf); |
| 911 | |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 912 | hub_activate(hub, HUB_POST_RESET); |
Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 913 | return 0; |
Alan Stern | 7d069b7 | 2005-11-18 12:06:34 -0500 | [diff] [blame] | 914 | } |
| 915 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | static int hub_configure(struct usb_hub *hub, |
| 917 | struct usb_endpoint_descriptor *endpoint) |
| 918 | { |
Sarah Sharp | b356b7c | 2009-09-04 10:53:24 -0700 | [diff] [blame] | 919 | struct usb_hcd *hcd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | struct usb_device *hdev = hub->hdev; |
| 921 | struct device *hub_dev = hub->intfdev; |
| 922 | u16 hubstatus, hubchange; |
Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 923 | u16 wHubCharacteristics; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 924 | unsigned int pipe; |
| 925 | int maxp, ret; |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 926 | char *message = "out of memory"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | |
Alan Stern | d697cdd | 2009-10-27 15:18:46 -0400 | [diff] [blame] | 928 | hub->buffer = kmalloc(sizeof(*hub->buffer), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | if (!hub->buffer) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | ret = -ENOMEM; |
| 931 | goto fail; |
| 932 | } |
| 933 | |
| 934 | hub->status = kmalloc(sizeof(*hub->status), GFP_KERNEL); |
| 935 | if (!hub->status) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | ret = -ENOMEM; |
| 937 | goto fail; |
| 938 | } |
Alan Stern | db90e7a | 2007-02-05 09:56:15 -0500 | [diff] [blame] | 939 | mutex_init(&hub->status_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | |
| 941 | hub->descriptor = kmalloc(sizeof(*hub->descriptor), GFP_KERNEL); |
| 942 | if (!hub->descriptor) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | ret = -ENOMEM; |
| 944 | goto fail; |
| 945 | } |
| 946 | |
| 947 | /* Request the entire hub descriptor. |
| 948 | * hub->descriptor can handle USB_MAXCHILDREN ports, |
| 949 | * but the hub can/will return fewer bytes here. |
| 950 | */ |
| 951 | ret = get_hub_descriptor(hdev, hub->descriptor, |
| 952 | sizeof(*hub->descriptor)); |
| 953 | if (ret < 0) { |
| 954 | message = "can't read hub descriptor"; |
| 955 | goto fail; |
| 956 | } else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) { |
| 957 | message = "hub has too many ports!"; |
| 958 | ret = -ENODEV; |
| 959 | goto fail; |
| 960 | } |
| 961 | |
| 962 | hdev->maxchild = hub->descriptor->bNbrPorts; |
| 963 | dev_info (hub_dev, "%d port%s detected\n", hdev->maxchild, |
| 964 | (hdev->maxchild == 1) ? "" : "s"); |
| 965 | |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 966 | hub->port_owners = kzalloc(hdev->maxchild * sizeof(void *), GFP_KERNEL); |
| 967 | if (!hub->port_owners) { |
| 968 | ret = -ENOMEM; |
| 969 | goto fail; |
| 970 | } |
| 971 | |
Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 972 | wHubCharacteristics = le16_to_cpu(hub->descriptor->wHubCharacteristics); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | |
Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 974 | if (wHubCharacteristics & HUB_CHAR_COMPOUND) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 975 | int i; |
| 976 | char portstr [USB_MAXCHILDREN + 1]; |
| 977 | |
| 978 | for (i = 0; i < hdev->maxchild; i++) |
| 979 | portstr[i] = hub->descriptor->DeviceRemovable |
| 980 | [((i + 1) / 8)] & (1 << ((i + 1) % 8)) |
| 981 | ? 'F' : 'R'; |
| 982 | portstr[hdev->maxchild] = 0; |
| 983 | dev_dbg(hub_dev, "compound device; port removable status: %s\n", portstr); |
| 984 | } else |
| 985 | dev_dbg(hub_dev, "standalone hub\n"); |
| 986 | |
Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 987 | switch (wHubCharacteristics & HUB_CHAR_LPSM) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | case 0x00: |
| 989 | dev_dbg(hub_dev, "ganged power switching\n"); |
| 990 | break; |
| 991 | case 0x01: |
| 992 | dev_dbg(hub_dev, "individual port power switching\n"); |
| 993 | break; |
| 994 | case 0x02: |
| 995 | case 0x03: |
| 996 | dev_dbg(hub_dev, "no power switching (usb 1.0)\n"); |
| 997 | break; |
| 998 | } |
| 999 | |
Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1000 | switch (wHubCharacteristics & HUB_CHAR_OCPM) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1001 | case 0x00: |
| 1002 | dev_dbg(hub_dev, "global over-current protection\n"); |
| 1003 | break; |
| 1004 | case 0x08: |
| 1005 | dev_dbg(hub_dev, "individual port over-current protection\n"); |
| 1006 | break; |
| 1007 | case 0x10: |
| 1008 | case 0x18: |
| 1009 | dev_dbg(hub_dev, "no over-current protection\n"); |
| 1010 | break; |
| 1011 | } |
| 1012 | |
| 1013 | spin_lock_init (&hub->tt.lock); |
| 1014 | INIT_LIST_HEAD (&hub->tt.clear_list); |
Alan Stern | cb88a1b | 2009-06-29 10:43:32 -0400 | [diff] [blame] | 1015 | INIT_WORK(&hub->tt.clear_work, hub_tt_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | switch (hdev->descriptor.bDeviceProtocol) { |
| 1017 | case 0: |
| 1018 | break; |
| 1019 | case 1: |
| 1020 | dev_dbg(hub_dev, "Single TT\n"); |
| 1021 | hub->tt.hub = hdev; |
| 1022 | break; |
| 1023 | case 2: |
| 1024 | ret = usb_set_interface(hdev, 0, 1); |
| 1025 | if (ret == 0) { |
| 1026 | dev_dbg(hub_dev, "TT per port\n"); |
| 1027 | hub->tt.multi = 1; |
| 1028 | } else |
| 1029 | dev_err(hub_dev, "Using single TT (err %d)\n", |
| 1030 | ret); |
| 1031 | hub->tt.hub = hdev; |
| 1032 | break; |
Sarah Sharp | d2e9b4d | 2009-04-27 19:55:01 -0700 | [diff] [blame] | 1033 | case 3: |
| 1034 | /* USB 3.0 hubs don't have a TT */ |
| 1035 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1036 | default: |
| 1037 | dev_dbg(hub_dev, "Unrecognized hub protocol %d\n", |
| 1038 | hdev->descriptor.bDeviceProtocol); |
| 1039 | break; |
| 1040 | } |
| 1041 | |
david-b@pacbell.net | e09711a | 2005-08-13 18:41:04 -0700 | [diff] [blame] | 1042 | /* Note 8 FS bit times == (8 bits / 12000000 bps) ~= 666ns */ |
Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1043 | switch (wHubCharacteristics & HUB_CHAR_TTTT) { |
david-b@pacbell.net | e09711a | 2005-08-13 18:41:04 -0700 | [diff] [blame] | 1044 | case HUB_TTTT_8_BITS: |
| 1045 | if (hdev->descriptor.bDeviceProtocol != 0) { |
| 1046 | hub->tt.think_time = 666; |
| 1047 | dev_dbg(hub_dev, "TT requires at most %d " |
| 1048 | "FS bit times (%d ns)\n", |
| 1049 | 8, hub->tt.think_time); |
| 1050 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | break; |
david-b@pacbell.net | e09711a | 2005-08-13 18:41:04 -0700 | [diff] [blame] | 1052 | case HUB_TTTT_16_BITS: |
| 1053 | hub->tt.think_time = 666 * 2; |
| 1054 | dev_dbg(hub_dev, "TT requires at most %d " |
| 1055 | "FS bit times (%d ns)\n", |
| 1056 | 16, hub->tt.think_time); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1057 | break; |
david-b@pacbell.net | e09711a | 2005-08-13 18:41:04 -0700 | [diff] [blame] | 1058 | case HUB_TTTT_24_BITS: |
| 1059 | hub->tt.think_time = 666 * 3; |
| 1060 | dev_dbg(hub_dev, "TT requires at most %d " |
| 1061 | "FS bit times (%d ns)\n", |
| 1062 | 24, hub->tt.think_time); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | break; |
david-b@pacbell.net | e09711a | 2005-08-13 18:41:04 -0700 | [diff] [blame] | 1064 | case HUB_TTTT_32_BITS: |
| 1065 | hub->tt.think_time = 666 * 4; |
| 1066 | dev_dbg(hub_dev, "TT requires at most %d " |
| 1067 | "FS bit times (%d ns)\n", |
| 1068 | 32, hub->tt.think_time); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | break; |
| 1070 | } |
| 1071 | |
| 1072 | /* probe() zeroes hub->indicator[] */ |
Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1073 | if (wHubCharacteristics & HUB_CHAR_PORTIND) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | hub->has_indicators = 1; |
| 1075 | dev_dbg(hub_dev, "Port indicators are supported\n"); |
| 1076 | } |
| 1077 | |
| 1078 | dev_dbg(hub_dev, "power on to power good time: %dms\n", |
| 1079 | hub->descriptor->bPwrOn2PwrGood * 2); |
| 1080 | |
| 1081 | /* power budgeting mostly matters with bus-powered hubs, |
| 1082 | * and battery-powered root hubs (may provide just 8 mA). |
| 1083 | */ |
| 1084 | ret = usb_get_status(hdev, USB_RECIP_DEVICE, 0, &hubstatus); |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 1085 | if (ret < 2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1086 | message = "can't get hub status"; |
| 1087 | goto fail; |
| 1088 | } |
Alan Stern | 7d35b92 | 2005-04-25 11:18:32 -0400 | [diff] [blame] | 1089 | le16_to_cpus(&hubstatus); |
| 1090 | if (hdev == hdev->bus->root_hub) { |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 1091 | if (hdev->bus_mA == 0 || hdev->bus_mA >= 500) |
| 1092 | hub->mA_per_port = 500; |
| 1093 | else { |
| 1094 | hub->mA_per_port = hdev->bus_mA; |
| 1095 | hub->limited_power = 1; |
| 1096 | } |
Alan Stern | 7d35b92 | 2005-04-25 11:18:32 -0400 | [diff] [blame] | 1097 | } else if ((hubstatus & (1 << USB_DEVICE_SELF_POWERED)) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1098 | dev_dbg(hub_dev, "hub controller current requirement: %dmA\n", |
| 1099 | hub->descriptor->bHubContrCurrent); |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 1100 | hub->limited_power = 1; |
| 1101 | if (hdev->maxchild > 0) { |
| 1102 | int remaining = hdev->bus_mA - |
| 1103 | hub->descriptor->bHubContrCurrent; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1104 | |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 1105 | if (remaining < hdev->maxchild * 100) |
| 1106 | dev_warn(hub_dev, |
| 1107 | "insufficient power available " |
| 1108 | "to use all downstream ports\n"); |
| 1109 | hub->mA_per_port = 100; /* 7.2.1.1 */ |
| 1110 | } |
| 1111 | } else { /* Self-powered external hub */ |
| 1112 | /* FIXME: What about battery-powered external hubs that |
| 1113 | * provide less current per port? */ |
| 1114 | hub->mA_per_port = 500; |
| 1115 | } |
| 1116 | if (hub->mA_per_port < 500) |
| 1117 | dev_dbg(hub_dev, "%umA bus power budget for each child\n", |
| 1118 | hub->mA_per_port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | |
Sarah Sharp | b356b7c | 2009-09-04 10:53:24 -0700 | [diff] [blame] | 1120 | /* Update the HCD's internal representation of this hub before khubd |
| 1121 | * starts getting port status changes for devices under the hub. |
| 1122 | */ |
| 1123 | hcd = bus_to_hcd(hdev->bus); |
| 1124 | if (hcd->driver->update_hub_device) { |
| 1125 | ret = hcd->driver->update_hub_device(hcd, hdev, |
| 1126 | &hub->tt, GFP_KERNEL); |
| 1127 | if (ret < 0) { |
| 1128 | message = "can't update HCD hub info"; |
| 1129 | goto fail; |
| 1130 | } |
| 1131 | } |
| 1132 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | ret = hub_hub_status(hub, &hubstatus, &hubchange); |
| 1134 | if (ret < 0) { |
| 1135 | message = "can't get hub status"; |
| 1136 | goto fail; |
| 1137 | } |
| 1138 | |
| 1139 | /* local power status reports aren't always correct */ |
| 1140 | if (hdev->actconfig->desc.bmAttributes & USB_CONFIG_ATT_SELFPOWER) |
| 1141 | dev_dbg(hub_dev, "local power source is %s\n", |
| 1142 | (hubstatus & HUB_STATUS_LOCAL_POWER) |
| 1143 | ? "lost (inactive)" : "good"); |
| 1144 | |
Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1145 | if ((wHubCharacteristics & HUB_CHAR_OCPM) == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | dev_dbg(hub_dev, "%sover-current condition exists\n", |
| 1147 | (hubstatus & HUB_STATUS_OVERCURRENT) ? "" : "no "); |
| 1148 | |
inaky@linux.intel.com | 88fafff | 2006-10-11 20:05:59 -0700 | [diff] [blame] | 1149 | /* set up the interrupt endpoint |
| 1150 | * We use the EP's maxpacket size instead of (PORTS+1+7)/8 |
| 1151 | * bytes as USB2.0[11.12.3] says because some hubs are known |
| 1152 | * to send more data (and thus cause overflow). For root hubs, |
| 1153 | * maxpktsize is defined in hcd.c's fake endpoint descriptors |
| 1154 | * to be big enough for at least USB_MAXCHILDREN ports. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | pipe = usb_rcvintpipe(hdev, endpoint->bEndpointAddress); |
| 1156 | maxp = usb_maxpacket(hdev, pipe, usb_pipeout(pipe)); |
| 1157 | |
| 1158 | if (maxp > sizeof(*hub->buffer)) |
| 1159 | maxp = sizeof(*hub->buffer); |
| 1160 | |
| 1161 | hub->urb = usb_alloc_urb(0, GFP_KERNEL); |
| 1162 | if (!hub->urb) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | ret = -ENOMEM; |
| 1164 | goto fail; |
| 1165 | } |
| 1166 | |
| 1167 | usb_fill_int_urb(hub->urb, hdev, pipe, *hub->buffer, maxp, hub_irq, |
| 1168 | hub, endpoint->bInterval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1169 | |
| 1170 | /* maybe cycle the hub leds */ |
| 1171 | if (hub->has_indicators && blinkenlights) |
| 1172 | hub->indicator [0] = INDICATOR_CYCLE; |
| 1173 | |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 1174 | hub_activate(hub, HUB_INIT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | return 0; |
| 1176 | |
| 1177 | fail: |
| 1178 | dev_err (hub_dev, "config failed, %s (err %d)\n", |
| 1179 | message, ret); |
| 1180 | /* hub_disconnect() frees urb and descriptor */ |
| 1181 | return ret; |
| 1182 | } |
| 1183 | |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1184 | static void hub_release(struct kref *kref) |
| 1185 | { |
| 1186 | struct usb_hub *hub = container_of(kref, struct usb_hub, kref); |
| 1187 | |
| 1188 | usb_put_intf(to_usb_interface(hub->intfdev)); |
| 1189 | kfree(hub); |
| 1190 | } |
| 1191 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1192 | static unsigned highspeed_hubs; |
| 1193 | |
| 1194 | static void hub_disconnect(struct usb_interface *intf) |
| 1195 | { |
| 1196 | struct usb_hub *hub = usb_get_intfdata (intf); |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1197 | |
| 1198 | /* Take the hub off the event list and don't let it be added again */ |
| 1199 | spin_lock_irq(&hub_event_lock); |
Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 1200 | if (!list_empty(&hub->event_list)) { |
| 1201 | list_del_init(&hub->event_list); |
| 1202 | usb_autopm_put_interface_no_suspend(intf); |
| 1203 | } |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1204 | hub->disconnected = 1; |
| 1205 | spin_unlock_irq(&hub_event_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | |
Alan Stern | 7de18d8 | 2006-06-01 13:37:24 -0400 | [diff] [blame] | 1207 | /* Disconnect all children and quiesce the hub */ |
| 1208 | hub->error = 0; |
Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 1209 | hub_quiesce(hub, HUB_DISCONNECT); |
Alan Stern | 7de18d8 | 2006-06-01 13:37:24 -0400 | [diff] [blame] | 1210 | |
Alan Stern | 8b28c75 | 2005-08-10 17:04:13 -0400 | [diff] [blame] | 1211 | usb_set_intfdata (intf, NULL); |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1212 | hub->hdev->maxchild = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1214 | if (hub->hdev->speed == USB_SPEED_HIGH) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | highspeed_hubs--; |
| 1216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | usb_free_urb(hub->urb); |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1218 | kfree(hub->port_owners); |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1219 | kfree(hub->descriptor); |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 1220 | kfree(hub->status); |
Alan Stern | d697cdd | 2009-10-27 15:18:46 -0400 | [diff] [blame] | 1221 | kfree(hub->buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1223 | kref_put(&hub->kref, hub_release); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1224 | } |
| 1225 | |
| 1226 | static int hub_probe(struct usb_interface *intf, const struct usb_device_id *id) |
| 1227 | { |
| 1228 | struct usb_host_interface *desc; |
| 1229 | struct usb_endpoint_descriptor *endpoint; |
| 1230 | struct usb_device *hdev; |
| 1231 | struct usb_hub *hub; |
| 1232 | |
| 1233 | desc = intf->cur_altsetting; |
| 1234 | hdev = interface_to_usbdev(intf); |
| 1235 | |
Alan Stern | 088f7fe | 2010-01-08 12:56:54 -0500 | [diff] [blame] | 1236 | /* Hubs have proper suspend/resume support */ |
| 1237 | usb_enable_autosuspend(hdev); |
| 1238 | |
Felipe Balbi | 38f3ad5 | 2008-06-12 10:49:47 +0300 | [diff] [blame] | 1239 | if (hdev->level == MAX_TOPO_LEVEL) { |
Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 1240 | dev_err(&intf->dev, |
| 1241 | "Unsupported bus topology: hub nested too deep\n"); |
Felipe Balbi | 38f3ad5 | 2008-06-12 10:49:47 +0300 | [diff] [blame] | 1242 | return -E2BIG; |
| 1243 | } |
| 1244 | |
David Brownell | 89ccbdc | 2006-04-02 10:18:09 -0800 | [diff] [blame] | 1245 | #ifdef CONFIG_USB_OTG_BLACKLIST_HUB |
| 1246 | if (hdev->parent) { |
| 1247 | dev_warn(&intf->dev, "ignoring external hub\n"); |
| 1248 | return -ENODEV; |
| 1249 | } |
| 1250 | #endif |
| 1251 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1252 | /* Some hubs have a subclass of 1, which AFAICT according to the */ |
| 1253 | /* specs is not defined, but it works */ |
| 1254 | if ((desc->desc.bInterfaceSubClass != 0) && |
| 1255 | (desc->desc.bInterfaceSubClass != 1)) { |
| 1256 | descriptor_error: |
| 1257 | dev_err (&intf->dev, "bad descriptor, ignoring hub\n"); |
| 1258 | return -EIO; |
| 1259 | } |
| 1260 | |
| 1261 | /* Multiple endpoints? What kind of mutant ninja-hub is this? */ |
| 1262 | if (desc->desc.bNumEndpoints != 1) |
| 1263 | goto descriptor_error; |
| 1264 | |
| 1265 | endpoint = &desc->endpoint[0].desc; |
| 1266 | |
Luiz Fernando N. Capitulino | fbf81c2 | 2006-09-27 11:58:53 -0700 | [diff] [blame] | 1267 | /* If it's not an interrupt in endpoint, we'd better punt! */ |
| 1268 | if (!usb_endpoint_is_int_in(endpoint)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1269 | goto descriptor_error; |
| 1270 | |
| 1271 | /* We found a hub */ |
| 1272 | dev_info (&intf->dev, "USB hub found\n"); |
| 1273 | |
Alan Stern | 0a1ef3b | 2005-10-24 15:38:24 -0400 | [diff] [blame] | 1274 | hub = kzalloc(sizeof(*hub), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 | if (!hub) { |
| 1276 | dev_dbg (&intf->dev, "couldn't kmalloc hub struct\n"); |
| 1277 | return -ENOMEM; |
| 1278 | } |
| 1279 | |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1280 | kref_init(&hub->kref); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1281 | INIT_LIST_HEAD(&hub->event_list); |
| 1282 | hub->intfdev = &intf->dev; |
| 1283 | hub->hdev = hdev; |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1284 | INIT_DELAYED_WORK(&hub->leds, led_work); |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 1285 | INIT_DELAYED_WORK(&hub->init_work, NULL); |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 1286 | usb_get_intf(intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | |
| 1288 | usb_set_intfdata (intf, hub); |
Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 1289 | intf->needs_remote_wakeup = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | |
| 1291 | if (hdev->speed == USB_SPEED_HIGH) |
| 1292 | highspeed_hubs++; |
| 1293 | |
| 1294 | if (hub_configure(hub, endpoint) >= 0) |
| 1295 | return 0; |
| 1296 | |
| 1297 | hub_disconnect (intf); |
| 1298 | return -ENODEV; |
| 1299 | } |
| 1300 | |
Andi Kleen | c532b29 | 2010-06-01 23:04:41 +0200 | [diff] [blame] | 1301 | /* No BKL needed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | static int |
| 1303 | hub_ioctl(struct usb_interface *intf, unsigned int code, void *user_data) |
| 1304 | { |
| 1305 | struct usb_device *hdev = interface_to_usbdev (intf); |
| 1306 | |
| 1307 | /* assert ifno == 0 (part of hub spec) */ |
| 1308 | switch (code) { |
| 1309 | case USBDEVFS_HUB_PORTINFO: { |
| 1310 | struct usbdevfs_hub_portinfo *info = user_data; |
| 1311 | int i; |
| 1312 | |
| 1313 | spin_lock_irq(&device_state_lock); |
| 1314 | if (hdev->devnum <= 0) |
| 1315 | info->nports = 0; |
| 1316 | else { |
| 1317 | info->nports = hdev->maxchild; |
| 1318 | for (i = 0; i < info->nports; i++) { |
| 1319 | if (hdev->children[i] == NULL) |
| 1320 | info->port[i] = 0; |
| 1321 | else |
| 1322 | info->port[i] = |
| 1323 | hdev->children[i]->devnum; |
| 1324 | } |
| 1325 | } |
| 1326 | spin_unlock_irq(&device_state_lock); |
| 1327 | |
| 1328 | return info->nports + 1; |
| 1329 | } |
| 1330 | |
| 1331 | default: |
| 1332 | return -ENOSYS; |
| 1333 | } |
| 1334 | } |
| 1335 | |
Alan Stern | 7cbe5dc | 2009-06-29 10:56:54 -0400 | [diff] [blame] | 1336 | /* |
| 1337 | * Allow user programs to claim ports on a hub. When a device is attached |
| 1338 | * to one of these "claimed" ports, the program will "own" the device. |
| 1339 | */ |
| 1340 | static int find_port_owner(struct usb_device *hdev, unsigned port1, |
| 1341 | void ***ppowner) |
| 1342 | { |
| 1343 | if (hdev->state == USB_STATE_NOTATTACHED) |
| 1344 | return -ENODEV; |
| 1345 | if (port1 == 0 || port1 > hdev->maxchild) |
| 1346 | return -EINVAL; |
| 1347 | |
| 1348 | /* This assumes that devices not managed by the hub driver |
| 1349 | * will always have maxchild equal to 0. |
| 1350 | */ |
| 1351 | *ppowner = &(hdev_to_hub(hdev)->port_owners[port1 - 1]); |
| 1352 | return 0; |
| 1353 | } |
| 1354 | |
| 1355 | /* In the following three functions, the caller must hold hdev's lock */ |
| 1356 | int usb_hub_claim_port(struct usb_device *hdev, unsigned port1, void *owner) |
| 1357 | { |
| 1358 | int rc; |
| 1359 | void **powner; |
| 1360 | |
| 1361 | rc = find_port_owner(hdev, port1, &powner); |
| 1362 | if (rc) |
| 1363 | return rc; |
| 1364 | if (*powner) |
| 1365 | return -EBUSY; |
| 1366 | *powner = owner; |
| 1367 | return rc; |
| 1368 | } |
| 1369 | |
| 1370 | int usb_hub_release_port(struct usb_device *hdev, unsigned port1, void *owner) |
| 1371 | { |
| 1372 | int rc; |
| 1373 | void **powner; |
| 1374 | |
| 1375 | rc = find_port_owner(hdev, port1, &powner); |
| 1376 | if (rc) |
| 1377 | return rc; |
| 1378 | if (*powner != owner) |
| 1379 | return -ENOENT; |
| 1380 | *powner = NULL; |
| 1381 | return rc; |
| 1382 | } |
| 1383 | |
| 1384 | void usb_hub_release_all_ports(struct usb_device *hdev, void *owner) |
| 1385 | { |
| 1386 | int n; |
| 1387 | void **powner; |
| 1388 | |
| 1389 | n = find_port_owner(hdev, 1, &powner); |
| 1390 | if (n == 0) { |
| 1391 | for (; n < hdev->maxchild; (++n, ++powner)) { |
| 1392 | if (*powner == owner) |
| 1393 | *powner = NULL; |
| 1394 | } |
| 1395 | } |
| 1396 | } |
| 1397 | |
| 1398 | /* The caller must hold udev's lock */ |
| 1399 | bool usb_device_is_owned(struct usb_device *udev) |
| 1400 | { |
| 1401 | struct usb_hub *hub; |
| 1402 | |
| 1403 | if (udev->state == USB_STATE_NOTATTACHED || !udev->parent) |
| 1404 | return false; |
| 1405 | hub = hdev_to_hub(udev->parent); |
| 1406 | return !!hub->port_owners[udev->portnum - 1]; |
| 1407 | } |
| 1408 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1409 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1410 | static void recursively_mark_NOTATTACHED(struct usb_device *udev) |
| 1411 | { |
| 1412 | int i; |
| 1413 | |
| 1414 | for (i = 0; i < udev->maxchild; ++i) { |
| 1415 | if (udev->children[i]) |
| 1416 | recursively_mark_NOTATTACHED(udev->children[i]); |
| 1417 | } |
Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 1418 | if (udev->state == USB_STATE_SUSPENDED) |
Sarah Sharp | 1512300 | 2007-12-21 16:54:15 -0800 | [diff] [blame] | 1419 | udev->active_duration -= jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | udev->state = USB_STATE_NOTATTACHED; |
| 1421 | } |
| 1422 | |
| 1423 | /** |
| 1424 | * usb_set_device_state - change a device's current state (usbcore, hcds) |
| 1425 | * @udev: pointer to device whose state should be changed |
| 1426 | * @new_state: new state value to be stored |
| 1427 | * |
| 1428 | * udev->state is _not_ fully protected by the device lock. Although |
| 1429 | * most transitions are made only while holding the lock, the state can |
| 1430 | * can change to USB_STATE_NOTATTACHED at almost any time. This |
| 1431 | * is so that devices can be marked as disconnected as soon as possible, |
| 1432 | * without having to wait for any semaphores to be released. As a result, |
| 1433 | * all changes to any device's state must be protected by the |
| 1434 | * device_state_lock spinlock. |
| 1435 | * |
| 1436 | * Once a device has been added to the device tree, all changes to its state |
| 1437 | * should be made using this routine. The state should _not_ be set directly. |
| 1438 | * |
| 1439 | * If udev->state is already USB_STATE_NOTATTACHED then no change is made. |
| 1440 | * Otherwise udev->state is set to new_state, and if new_state is |
| 1441 | * USB_STATE_NOTATTACHED then all of udev's descendants' states are also set |
| 1442 | * to USB_STATE_NOTATTACHED. |
| 1443 | */ |
| 1444 | void usb_set_device_state(struct usb_device *udev, |
| 1445 | enum usb_device_state new_state) |
| 1446 | { |
| 1447 | unsigned long flags; |
| 1448 | |
| 1449 | spin_lock_irqsave(&device_state_lock, flags); |
| 1450 | if (udev->state == USB_STATE_NOTATTACHED) |
| 1451 | ; /* do nothing */ |
David Brownell | b94dc6b | 2005-09-12 19:39:39 -0700 | [diff] [blame] | 1452 | else if (new_state != USB_STATE_NOTATTACHED) { |
David Brownell | fb669cc | 2006-01-24 08:40:27 -0800 | [diff] [blame] | 1453 | |
| 1454 | /* root hub wakeup capabilities are managed out-of-band |
| 1455 | * and may involve silicon errata ... ignore them here. |
| 1456 | */ |
| 1457 | if (udev->parent) { |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 1458 | if (udev->state == USB_STATE_SUSPENDED |
| 1459 | || new_state == USB_STATE_SUSPENDED) |
| 1460 | ; /* No change to wakeup settings */ |
| 1461 | else if (new_state == USB_STATE_CONFIGURED) |
Dan Streetman | 1698540 | 2010-01-06 09:56:53 -0500 | [diff] [blame] | 1462 | device_set_wakeup_capable(&udev->dev, |
David Brownell | fb669cc | 2006-01-24 08:40:27 -0800 | [diff] [blame] | 1463 | (udev->actconfig->desc.bmAttributes |
| 1464 | & USB_CONFIG_ATT_WAKEUP)); |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 1465 | else |
Dan Streetman | 1698540 | 2010-01-06 09:56:53 -0500 | [diff] [blame] | 1466 | device_set_wakeup_capable(&udev->dev, 0); |
David Brownell | fb669cc | 2006-01-24 08:40:27 -0800 | [diff] [blame] | 1467 | } |
Sarah Sharp | 1512300 | 2007-12-21 16:54:15 -0800 | [diff] [blame] | 1468 | if (udev->state == USB_STATE_SUSPENDED && |
| 1469 | new_state != USB_STATE_SUSPENDED) |
| 1470 | udev->active_duration -= jiffies; |
| 1471 | else if (new_state == USB_STATE_SUSPENDED && |
| 1472 | udev->state != USB_STATE_SUSPENDED) |
| 1473 | udev->active_duration += jiffies; |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 1474 | udev->state = new_state; |
David Brownell | b94dc6b | 2005-09-12 19:39:39 -0700 | [diff] [blame] | 1475 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1476 | recursively_mark_NOTATTACHED(udev); |
| 1477 | spin_unlock_irqrestore(&device_state_lock, flags); |
| 1478 | } |
David Vrabel | 6da9c99 | 2009-02-18 14:43:47 +0000 | [diff] [blame] | 1479 | EXPORT_SYMBOL_GPL(usb_set_device_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1480 | |
Inaky Perez-Gonzalez | 8af548d | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 1481 | /* |
| 1482 | * WUSB devices are simple: they have no hubs behind, so the mapping |
| 1483 | * device <-> virtual port number becomes 1:1. Why? to simplify the |
| 1484 | * life of the device connection logic in |
| 1485 | * drivers/usb/wusbcore/devconnect.c. When we do the initial secret |
| 1486 | * handshake we need to assign a temporary address in the unauthorized |
| 1487 | * space. For simplicity we use the first virtual port number found to |
| 1488 | * be free [drivers/usb/wusbcore/devconnect.c:wusbhc_devconnect_ack()] |
| 1489 | * and that becomes it's address [X < 128] or its unauthorized address |
| 1490 | * [X | 0x80]. |
| 1491 | * |
| 1492 | * We add 1 as an offset to the one-based USB-stack port number |
| 1493 | * (zero-based wusb virtual port index) for two reasons: (a) dev addr |
| 1494 | * 0 is reserved by USB for default address; (b) Linux's USB stack |
| 1495 | * uses always #1 for the root hub of the controller. So USB stack's |
| 1496 | * port #1, which is wusb virtual-port #0 has address #2. |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 1497 | * |
| 1498 | * Devices connected under xHCI are not as simple. The host controller |
| 1499 | * supports virtualization, so the hardware assigns device addresses and |
| 1500 | * the HCD must setup data structures before issuing a set address |
| 1501 | * command to the hardware. |
Inaky Perez-Gonzalez | 8af548d | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 1502 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1503 | static void choose_address(struct usb_device *udev) |
| 1504 | { |
| 1505 | int devnum; |
| 1506 | struct usb_bus *bus = udev->bus; |
| 1507 | |
| 1508 | /* If khubd ever becomes multithreaded, this will need a lock */ |
Inaky Perez-Gonzalez | 8af548d | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 1509 | if (udev->wusb) { |
| 1510 | devnum = udev->portnum + 1; |
| 1511 | BUG_ON(test_bit(devnum, bus->devmap.devicemap)); |
| 1512 | } else { |
| 1513 | /* Try to allocate the next devnum beginning at |
| 1514 | * bus->devnum_next. */ |
| 1515 | devnum = find_next_zero_bit(bus->devmap.devicemap, 128, |
| 1516 | bus->devnum_next); |
| 1517 | if (devnum >= 128) |
| 1518 | devnum = find_next_zero_bit(bus->devmap.devicemap, |
| 1519 | 128, 1); |
| 1520 | bus->devnum_next = ( devnum >= 127 ? 1 : devnum + 1); |
| 1521 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1522 | if (devnum < 128) { |
| 1523 | set_bit(devnum, bus->devmap.devicemap); |
| 1524 | udev->devnum = devnum; |
| 1525 | } |
| 1526 | } |
| 1527 | |
| 1528 | static void release_address(struct usb_device *udev) |
| 1529 | { |
| 1530 | if (udev->devnum > 0) { |
| 1531 | clear_bit(udev->devnum, udev->bus->devmap.devicemap); |
| 1532 | udev->devnum = -1; |
| 1533 | } |
| 1534 | } |
| 1535 | |
David Vrabel | 4953d14 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 1536 | static void update_address(struct usb_device *udev, int devnum) |
| 1537 | { |
| 1538 | /* The address for a WUSB device is managed by wusbcore. */ |
| 1539 | if (!udev->wusb) |
| 1540 | udev->devnum = devnum; |
| 1541 | } |
| 1542 | |
Herbert Xu | f7410ce | 2010-01-10 20:15:03 +1100 | [diff] [blame] | 1543 | static void hub_free_dev(struct usb_device *udev) |
| 1544 | { |
| 1545 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); |
| 1546 | |
| 1547 | /* Root hubs aren't real devices, so don't free HCD resources */ |
| 1548 | if (hcd->driver->free_dev && udev->parent) |
| 1549 | hcd->driver->free_dev(hcd, udev); |
| 1550 | } |
| 1551 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | /** |
| 1553 | * usb_disconnect - disconnect a device (usbcore-internal) |
| 1554 | * @pdev: pointer to device being disconnected |
| 1555 | * Context: !in_interrupt () |
| 1556 | * |
| 1557 | * Something got disconnected. Get rid of it and all of its children. |
| 1558 | * |
| 1559 | * If *pdev is a normal device then the parent hub must already be locked. |
| 1560 | * If *pdev is a root hub then this routine will acquire the |
| 1561 | * usb_bus_list_lock on behalf of the caller. |
| 1562 | * |
| 1563 | * Only hub drivers (including virtual root hub drivers for host |
| 1564 | * controllers) should ever call this. |
| 1565 | * |
| 1566 | * This call is synchronous, and may not be used in an interrupt context. |
| 1567 | */ |
| 1568 | void usb_disconnect(struct usb_device **pdev) |
| 1569 | { |
| 1570 | struct usb_device *udev = *pdev; |
| 1571 | int i; |
| 1572 | |
| 1573 | if (!udev) { |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 1574 | pr_debug ("%s nodev\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1575 | return; |
| 1576 | } |
| 1577 | |
| 1578 | /* mark the device as inactive, so any further urb submissions for |
| 1579 | * this device (and any of its children) will fail immediately. |
| 1580 | * this quiesces everyting except pending urbs. |
| 1581 | */ |
| 1582 | usb_set_device_state(udev, USB_STATE_NOTATTACHED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | dev_info (&udev->dev, "USB disconnect, address %d\n", udev->devnum); |
| 1584 | |
Alan Stern | 9ad3d6c | 2005-11-17 17:10:32 -0500 | [diff] [blame] | 1585 | usb_lock_device(udev); |
| 1586 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1587 | /* Free up all the children before we remove this device */ |
| 1588 | for (i = 0; i < USB_MAXCHILDREN; i++) { |
| 1589 | if (udev->children[i]) |
| 1590 | usb_disconnect(&udev->children[i]); |
| 1591 | } |
| 1592 | |
| 1593 | /* deallocate hcd/hardware state ... nuking all pending urbs and |
| 1594 | * cleaning up all state associated with the current configuration |
| 1595 | * so that the hardware is now fully quiesced. |
| 1596 | */ |
Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 1597 | dev_dbg (&udev->dev, "unregistering device\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1598 | usb_disable_device(udev, 0); |
Alan Stern | cde217a | 2008-10-21 15:28:46 -0400 | [diff] [blame] | 1599 | usb_hcd_synchronize_unlinks(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1600 | |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1601 | usb_remove_ep_devs(&udev->ep0); |
Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 1602 | usb_unlock_device(udev); |
Greg Kroah-Hartman | 3099e75 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 1603 | |
Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 1604 | /* Unregister the device. The device driver is responsible |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1605 | * for de-configuring the device and invoking the remove-device |
| 1606 | * notifier chain (used by usbfs and possibly others). |
Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 1607 | */ |
| 1608 | device_del(&udev->dev); |
| 1609 | |
| 1610 | /* Free the device number and delete the parent's children[] |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | * (or root_hub) pointer. |
| 1612 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1613 | release_address(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1614 | |
| 1615 | /* Avoid races with recursively_mark_NOTATTACHED() */ |
| 1616 | spin_lock_irq(&device_state_lock); |
| 1617 | *pdev = NULL; |
| 1618 | spin_unlock_irq(&device_state_lock); |
| 1619 | |
Herbert Xu | f7410ce | 2010-01-10 20:15:03 +1100 | [diff] [blame] | 1620 | hub_free_dev(udev); |
| 1621 | |
Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 1622 | put_device(&udev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1623 | } |
| 1624 | |
Greg Kroah-Hartman | f2a383e | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 1625 | #ifdef CONFIG_USB_ANNOUNCE_NEW_DEVICES |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1626 | static void show_string(struct usb_device *udev, char *id, char *string) |
| 1627 | { |
| 1628 | if (!string) |
| 1629 | return; |
| 1630 | dev_printk(KERN_INFO, &udev->dev, "%s: %s\n", id, string); |
| 1631 | } |
| 1632 | |
Greg Kroah-Hartman | f2a383e | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 1633 | static void announce_device(struct usb_device *udev) |
| 1634 | { |
| 1635 | dev_info(&udev->dev, "New USB device found, idVendor=%04x, idProduct=%04x\n", |
| 1636 | le16_to_cpu(udev->descriptor.idVendor), |
| 1637 | le16_to_cpu(udev->descriptor.idProduct)); |
Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 1638 | dev_info(&udev->dev, |
| 1639 | "New USB device strings: Mfr=%d, Product=%d, SerialNumber=%d\n", |
Greg Kroah-Hartman | f2a383e | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 1640 | udev->descriptor.iManufacturer, |
| 1641 | udev->descriptor.iProduct, |
| 1642 | udev->descriptor.iSerialNumber); |
| 1643 | show_string(udev, "Product", udev->product); |
| 1644 | show_string(udev, "Manufacturer", udev->manufacturer); |
| 1645 | show_string(udev, "SerialNumber", udev->serial); |
| 1646 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1647 | #else |
Greg Kroah-Hartman | f2a383e | 2007-11-26 22:11:55 -0800 | [diff] [blame] | 1648 | static inline void announce_device(struct usb_device *udev) { } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | #endif |
| 1650 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | #ifdef CONFIG_USB_OTG |
| 1652 | #include "otg_whitelist.h" |
| 1653 | #endif |
| 1654 | |
Oliver Neukum | 3ede760 | 2007-01-11 14:35:50 +0100 | [diff] [blame] | 1655 | /** |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 1656 | * usb_enumerate_device_otg - FIXME (usbcore-internal) |
Oliver Neukum | 3ede760 | 2007-01-11 14:35:50 +0100 | [diff] [blame] | 1657 | * @udev: newly addressed device (in ADDRESS state) |
| 1658 | * |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 1659 | * Finish enumeration for On-The-Go devices |
Oliver Neukum | 3ede760 | 2007-01-11 14:35:50 +0100 | [diff] [blame] | 1660 | */ |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 1661 | static int usb_enumerate_device_otg(struct usb_device *udev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | { |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 1663 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1664 | |
| 1665 | #ifdef CONFIG_USB_OTG |
| 1666 | /* |
| 1667 | * OTG-aware devices on OTG-capable root hubs may be able to use SRP, |
| 1668 | * to wake us after we've powered off VBUS; and HNP, switching roles |
| 1669 | * "host" to "peripheral". The OTG descriptor helps figure this out. |
| 1670 | */ |
| 1671 | if (!udev->bus->is_b_host |
| 1672 | && udev->config |
| 1673 | && udev->parent == udev->bus->root_hub) { |
Felipe Balbi | 2eb5052 | 2009-12-04 15:47:43 +0200 | [diff] [blame] | 1674 | struct usb_otg_descriptor *desc = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1675 | struct usb_bus *bus = udev->bus; |
| 1676 | |
| 1677 | /* descriptor may appear anywhere in config */ |
| 1678 | if (__usb_get_extra_descriptor (udev->rawdescriptors[0], |
| 1679 | le16_to_cpu(udev->config[0].desc.wTotalLength), |
| 1680 | USB_DT_OTG, (void **) &desc) == 0) { |
| 1681 | if (desc->bmAttributes & USB_OTG_HNP) { |
Alan Stern | 12c3da3 | 2005-11-23 12:09:52 -0500 | [diff] [blame] | 1682 | unsigned port1 = udev->portnum; |
David Brownell | fc849b8 | 2006-09-18 16:53:26 -0700 | [diff] [blame] | 1683 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1684 | dev_info(&udev->dev, |
| 1685 | "Dual-Role OTG device on %sHNP port\n", |
| 1686 | (port1 == bus->otg_port) |
| 1687 | ? "" : "non-"); |
| 1688 | |
| 1689 | /* enable HNP before suspend, it's simpler */ |
| 1690 | if (port1 == bus->otg_port) |
| 1691 | bus->b_hnp_enable = 1; |
| 1692 | err = usb_control_msg(udev, |
| 1693 | usb_sndctrlpipe(udev, 0), |
| 1694 | USB_REQ_SET_FEATURE, 0, |
| 1695 | bus->b_hnp_enable |
| 1696 | ? USB_DEVICE_B_HNP_ENABLE |
| 1697 | : USB_DEVICE_A_ALT_HNP_SUPPORT, |
| 1698 | 0, NULL, 0, USB_CTRL_SET_TIMEOUT); |
| 1699 | if (err < 0) { |
| 1700 | /* OTG MESSAGE: report errors here, |
| 1701 | * customize to match your product. |
| 1702 | */ |
| 1703 | dev_info(&udev->dev, |
Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 1704 | "can't set HNP mode: %d\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | err); |
| 1706 | bus->b_hnp_enable = 0; |
| 1707 | } |
| 1708 | } |
| 1709 | } |
| 1710 | } |
| 1711 | |
| 1712 | if (!is_targeted(udev)) { |
| 1713 | |
| 1714 | /* Maybe it can talk to us, though we can't talk to it. |
| 1715 | * (Includes HNP test device.) |
| 1716 | */ |
| 1717 | if (udev->bus->b_hnp_enable || udev->bus->is_b_host) { |
David Brownell | 634a84f | 2009-01-15 13:51:28 -0800 | [diff] [blame] | 1718 | err = usb_port_suspend(udev, PMSG_SUSPEND); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1719 | if (err < 0) |
| 1720 | dev_dbg(&udev->dev, "HNP fail, %d\n", err); |
| 1721 | } |
Vikram Pandita | ffcdc18 | 2007-05-25 21:31:07 -0700 | [diff] [blame] | 1722 | err = -ENOTSUPP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1723 | goto fail; |
| 1724 | } |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 1725 | fail: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1726 | #endif |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 1727 | return err; |
| 1728 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1729 | |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 1730 | |
| 1731 | /** |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 1732 | * usb_enumerate_device - Read device configs/intfs/otg (usbcore-internal) |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 1733 | * @udev: newly addressed device (in ADDRESS state) |
| 1734 | * |
| 1735 | * This is only called by usb_new_device() and usb_authorize_device() |
| 1736 | * and FIXME -- all comments that apply to them apply here wrt to |
| 1737 | * environment. |
| 1738 | * |
| 1739 | * If the device is WUSB and not authorized, we don't attempt to read |
| 1740 | * the string descriptors, as they will be errored out by the device |
| 1741 | * until it has been authorized. |
| 1742 | */ |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 1743 | static int usb_enumerate_device(struct usb_device *udev) |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 1744 | { |
| 1745 | int err; |
| 1746 | |
| 1747 | if (udev->config == NULL) { |
| 1748 | err = usb_get_configuration(udev); |
| 1749 | if (err < 0) { |
| 1750 | dev_err(&udev->dev, "can't read configurations, error %d\n", |
| 1751 | err); |
| 1752 | goto fail; |
| 1753 | } |
| 1754 | } |
| 1755 | if (udev->wusb == 1 && udev->authorized == 0) { |
| 1756 | udev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL); |
| 1757 | udev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL); |
| 1758 | udev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL); |
| 1759 | } |
| 1760 | else { |
| 1761 | /* read the standard strings and cache them if present */ |
| 1762 | udev->product = usb_cache_string(udev, udev->descriptor.iProduct); |
| 1763 | udev->manufacturer = usb_cache_string(udev, |
| 1764 | udev->descriptor.iManufacturer); |
| 1765 | udev->serial = usb_cache_string(udev, udev->descriptor.iSerialNumber); |
| 1766 | } |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 1767 | err = usb_enumerate_device_otg(udev); |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 1768 | fail: |
| 1769 | return err; |
| 1770 | } |
| 1771 | |
| 1772 | |
| 1773 | /** |
| 1774 | * usb_new_device - perform initial device setup (usbcore-internal) |
| 1775 | * @udev: newly addressed device (in ADDRESS state) |
| 1776 | * |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 1777 | * This is called with devices which have been detected but not fully |
| 1778 | * enumerated. The device descriptor is available, but not descriptors |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 1779 | * for any device configuration. The caller must have locked either |
| 1780 | * the parent hub (if udev is a normal device) or else the |
| 1781 | * usb_bus_list_lock (if udev is a root hub). The parent's pointer to |
| 1782 | * udev has already been installed, but udev is not yet visible through |
| 1783 | * sysfs or other filesystem code. |
| 1784 | * |
| 1785 | * It will return if the device is configured properly or not. Zero if |
| 1786 | * the interface was registered with the driver core; else a negative |
| 1787 | * errno value. |
| 1788 | * |
| 1789 | * This call is synchronous, and may not be used in an interrupt context. |
| 1790 | * |
| 1791 | * Only the hub driver or root-hub registrar should ever call this. |
| 1792 | */ |
| 1793 | int usb_new_device(struct usb_device *udev) |
| 1794 | { |
| 1795 | int err; |
| 1796 | |
Dan Streetman | 1698540 | 2010-01-06 09:56:53 -0500 | [diff] [blame] | 1797 | if (udev->parent) { |
Dan Streetman | 1698540 | 2010-01-06 09:56:53 -0500 | [diff] [blame] | 1798 | /* Initialize non-root-hub device wakeup to disabled; |
| 1799 | * device (un)configuration controls wakeup capable |
| 1800 | * sysfs power/wakeup controls wakeup enabled/disabled |
| 1801 | */ |
| 1802 | device_init_wakeup(&udev->dev, 0); |
Dan Streetman | 1698540 | 2010-01-06 09:56:53 -0500 | [diff] [blame] | 1803 | } |
| 1804 | |
Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 1805 | /* Tell the runtime-PM framework the device is active */ |
| 1806 | pm_runtime_set_active(&udev->dev); |
| 1807 | pm_runtime_enable(&udev->dev); |
| 1808 | |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 1809 | err = usb_enumerate_device(udev); /* Read descriptors */ |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 1810 | if (err < 0) |
| 1811 | goto fail; |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 1812 | dev_dbg(&udev->dev, "udev %d, busnum %d, minor = %d\n", |
| 1813 | udev->devnum, udev->bus->busnum, |
| 1814 | (((udev->bus->busnum-1) * 128) + (udev->devnum-1))); |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 1815 | /* export the usbdev device-node for libusb */ |
| 1816 | udev->dev.devt = MKDEV(USB_DEVICE_MAJOR, |
| 1817 | (((udev->bus->busnum-1) * 128) + (udev->devnum-1))); |
| 1818 | |
Alan Stern | 6cd1320 | 2008-11-13 15:08:30 -0500 | [diff] [blame] | 1819 | /* Tell the world! */ |
| 1820 | announce_device(udev); |
Alan Stern | 195af2c | 2007-07-16 15:28:19 -0400 | [diff] [blame] | 1821 | |
Rafael J. Wysocki | 927bc91 | 2010-02-08 19:18:16 +0100 | [diff] [blame] | 1822 | device_enable_async_suspend(&udev->dev); |
Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 1823 | /* Register the device. The device driver is responsible |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1824 | * for configuring the device and invoking the add-device |
| 1825 | * notifier chain (used by usbfs and possibly others). |
Alan Stern | 782da72 | 2006-07-01 22:09:35 -0400 | [diff] [blame] | 1826 | */ |
Kay Sievers | 9f8b17e | 2007-03-13 15:59:31 +0100 | [diff] [blame] | 1827 | err = device_add(&udev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1828 | if (err) { |
| 1829 | dev_err(&udev->dev, "can't device_add, error %d\n", err); |
| 1830 | goto fail; |
| 1831 | } |
Alan Stern | 9ad3d6c | 2005-11-17 17:10:32 -0500 | [diff] [blame] | 1832 | |
Alan Stern | 3b23dd6 | 2008-12-05 14:10:34 -0500 | [diff] [blame] | 1833 | (void) usb_create_ep_devs(&udev->dev, &udev->ep0, udev); |
Greg Kroah-Hartman | c066475 | 2006-08-11 01:55:12 -0700 | [diff] [blame] | 1834 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | |
| 1836 | fail: |
| 1837 | usb_set_device_state(udev, USB_STATE_NOTATTACHED); |
Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 1838 | pm_runtime_disable(&udev->dev); |
| 1839 | pm_runtime_set_suspended(&udev->dev); |
Inaky Perez-Gonzalez | d9d16e8 | 2007-07-31 20:34:05 -0700 | [diff] [blame] | 1840 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1841 | } |
| 1842 | |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 1843 | |
| 1844 | /** |
Randy Dunlap | fd39c86 | 2007-10-15 17:30:02 -0700 | [diff] [blame] | 1845 | * usb_deauthorize_device - deauthorize a device (usbcore-internal) |
| 1846 | * @usb_dev: USB device |
| 1847 | * |
| 1848 | * Move the USB device to a very basic state where interfaces are disabled |
| 1849 | * and the device is in fact unconfigured and unusable. |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 1850 | * |
| 1851 | * We share a lock (that we have) with device_del(), so we need to |
| 1852 | * defer its call. |
| 1853 | */ |
| 1854 | int usb_deauthorize_device(struct usb_device *usb_dev) |
| 1855 | { |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 1856 | usb_lock_device(usb_dev); |
| 1857 | if (usb_dev->authorized == 0) |
| 1858 | goto out_unauthorized; |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 1859 | |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 1860 | usb_dev->authorized = 0; |
| 1861 | usb_set_configuration(usb_dev, -1); |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 1862 | |
| 1863 | kfree(usb_dev->product); |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 1864 | usb_dev->product = kstrdup("n/a (unauthorized)", GFP_KERNEL); |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 1865 | kfree(usb_dev->manufacturer); |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 1866 | usb_dev->manufacturer = kstrdup("n/a (unauthorized)", GFP_KERNEL); |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 1867 | kfree(usb_dev->serial); |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 1868 | usb_dev->serial = kstrdup("n/a (unauthorized)", GFP_KERNEL); |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 1869 | |
| 1870 | usb_destroy_configuration(usb_dev); |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 1871 | usb_dev->descriptor.bNumConfigurations = 0; |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 1872 | |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 1873 | out_unauthorized: |
| 1874 | usb_unlock_device(usb_dev); |
| 1875 | return 0; |
| 1876 | } |
| 1877 | |
| 1878 | |
| 1879 | int usb_authorize_device(struct usb_device *usb_dev) |
| 1880 | { |
| 1881 | int result = 0, c; |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 1882 | |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 1883 | usb_lock_device(usb_dev); |
| 1884 | if (usb_dev->authorized == 1) |
| 1885 | goto out_authorized; |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 1886 | |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 1887 | result = usb_autoresume_device(usb_dev); |
| 1888 | if (result < 0) { |
| 1889 | dev_err(&usb_dev->dev, |
| 1890 | "can't autoresume for authorization: %d\n", result); |
| 1891 | goto error_autoresume; |
| 1892 | } |
| 1893 | result = usb_get_device_descriptor(usb_dev, sizeof(usb_dev->descriptor)); |
| 1894 | if (result < 0) { |
| 1895 | dev_err(&usb_dev->dev, "can't re-read device descriptor for " |
| 1896 | "authorization: %d\n", result); |
| 1897 | goto error_device_descriptor; |
| 1898 | } |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 1899 | |
| 1900 | kfree(usb_dev->product); |
| 1901 | usb_dev->product = NULL; |
| 1902 | kfree(usb_dev->manufacturer); |
| 1903 | usb_dev->manufacturer = NULL; |
| 1904 | kfree(usb_dev->serial); |
| 1905 | usb_dev->serial = NULL; |
| 1906 | |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 1907 | usb_dev->authorized = 1; |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 1908 | result = usb_enumerate_device(usb_dev); |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 1909 | if (result < 0) |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 1910 | goto error_enumerate; |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 1911 | /* Choose and set the configuration. This registers the interfaces |
| 1912 | * with the driver core and lets interface drivers bind to them. |
| 1913 | */ |
Greg Kroah-Hartman | b5ea060 | 2007-08-02 22:44:27 -0600 | [diff] [blame] | 1914 | c = usb_choose_configuration(usb_dev); |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 1915 | if (c >= 0) { |
| 1916 | result = usb_set_configuration(usb_dev, c); |
| 1917 | if (result) { |
| 1918 | dev_err(&usb_dev->dev, |
| 1919 | "can't set config #%d, error %d\n", c, result); |
| 1920 | /* This need not be fatal. The user can try to |
| 1921 | * set other configurations. */ |
| 1922 | } |
| 1923 | } |
| 1924 | dev_info(&usb_dev->dev, "authorized to connect\n"); |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 1925 | |
Alan Stern | 8d8558d | 2009-12-08 15:50:41 -0500 | [diff] [blame] | 1926 | error_enumerate: |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 1927 | error_device_descriptor: |
Alan Stern | da30712 | 2009-12-08 15:54:44 -0500 | [diff] [blame] | 1928 | usb_autosuspend_device(usb_dev); |
Inaky Perez-Gonzalez | 93993a0 | 2007-07-31 20:34:06 -0700 | [diff] [blame] | 1929 | error_autoresume: |
| 1930 | out_authorized: |
| 1931 | usb_unlock_device(usb_dev); // complements locktree |
| 1932 | return result; |
| 1933 | } |
| 1934 | |
| 1935 | |
Inaky Perez-Gonzalez | 0165de0 | 2006-08-25 19:35:29 -0700 | [diff] [blame] | 1936 | /* Returns 1 if @hub is a WUSB root hub, 0 otherwise */ |
| 1937 | static unsigned hub_is_wusb(struct usb_hub *hub) |
| 1938 | { |
| 1939 | struct usb_hcd *hcd; |
| 1940 | if (hub->hdev->parent != NULL) /* not a root hub? */ |
| 1941 | return 0; |
| 1942 | hcd = container_of(hub->hdev->bus, struct usb_hcd, self); |
| 1943 | return hcd->wireless; |
| 1944 | } |
| 1945 | |
| 1946 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1947 | #define PORT_RESET_TRIES 5 |
| 1948 | #define SET_ADDRESS_TRIES 2 |
| 1949 | #define GET_DESCRIPTOR_TRIES 2 |
| 1950 | #define SET_CONFIG_TRIES (2 * (use_both_schemes + 1)) |
| 1951 | #define USE_NEW_SCHEME(i) ((i) / 2 == old_scheme_first) |
| 1952 | |
| 1953 | #define HUB_ROOT_RESET_TIME 50 /* times are in msec */ |
| 1954 | #define HUB_SHORT_RESET_TIME 10 |
| 1955 | #define HUB_LONG_RESET_TIME 200 |
| 1956 | #define HUB_RESET_TIMEOUT 500 |
| 1957 | |
| 1958 | static int hub_port_wait_reset(struct usb_hub *hub, int port1, |
| 1959 | struct usb_device *udev, unsigned int delay) |
| 1960 | { |
| 1961 | int delay_time, ret; |
| 1962 | u16 portstatus; |
| 1963 | u16 portchange; |
| 1964 | |
| 1965 | for (delay_time = 0; |
| 1966 | delay_time < HUB_RESET_TIMEOUT; |
| 1967 | delay_time += delay) { |
| 1968 | /* wait to give the device a chance to reset */ |
| 1969 | msleep(delay); |
| 1970 | |
| 1971 | /* read and decode port status */ |
| 1972 | ret = hub_port_status(hub, port1, &portstatus, &portchange); |
| 1973 | if (ret < 0) |
| 1974 | return ret; |
| 1975 | |
| 1976 | /* Device went away? */ |
| 1977 | if (!(portstatus & USB_PORT_STAT_CONNECTION)) |
| 1978 | return -ENOTCONN; |
| 1979 | |
Alan Stern | dd4dd19 | 2007-05-04 11:55:54 -0400 | [diff] [blame] | 1980 | /* bomb out completely if the connection bounced */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1981 | if ((portchange & USB_PORT_STAT_C_CONNECTION)) |
Alan Stern | dd4dd19 | 2007-05-04 11:55:54 -0400 | [diff] [blame] | 1982 | return -ENOTCONN; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | |
| 1984 | /* if we`ve finished resetting, then break out of the loop */ |
| 1985 | if (!(portstatus & USB_PORT_STAT_RESET) && |
| 1986 | (portstatus & USB_PORT_STAT_ENABLE)) { |
Inaky Perez-Gonzalez | 0165de0 | 2006-08-25 19:35:29 -0700 | [diff] [blame] | 1987 | if (hub_is_wusb(hub)) |
Greg Kroah-Hartman | 551cdbb | 2010-01-14 11:08:04 -0800 | [diff] [blame] | 1988 | udev->speed = USB_SPEED_WIRELESS; |
Sarah Sharp | 809cd1c | 2010-07-09 17:08:48 +0200 | [diff] [blame] | 1989 | else if (portstatus & USB_PORT_STAT_SUPER_SPEED) |
| 1990 | udev->speed = USB_SPEED_SUPER; |
Inaky Perez-Gonzalez | 0165de0 | 2006-08-25 19:35:29 -0700 | [diff] [blame] | 1991 | else if (portstatus & USB_PORT_STAT_HIGH_SPEED) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1992 | udev->speed = USB_SPEED_HIGH; |
| 1993 | else if (portstatus & USB_PORT_STAT_LOW_SPEED) |
| 1994 | udev->speed = USB_SPEED_LOW; |
| 1995 | else |
| 1996 | udev->speed = USB_SPEED_FULL; |
| 1997 | return 0; |
| 1998 | } |
| 1999 | |
| 2000 | /* switch to the long delay after two short delay failures */ |
| 2001 | if (delay_time >= 2 * HUB_SHORT_RESET_TIME) |
| 2002 | delay = HUB_LONG_RESET_TIME; |
| 2003 | |
| 2004 | dev_dbg (hub->intfdev, |
| 2005 | "port %d not reset yet, waiting %dms\n", |
| 2006 | port1, delay); |
| 2007 | } |
| 2008 | |
| 2009 | return -EBUSY; |
| 2010 | } |
| 2011 | |
| 2012 | static int hub_port_reset(struct usb_hub *hub, int port1, |
| 2013 | struct usb_device *udev, unsigned int delay) |
| 2014 | { |
| 2015 | int i, status; |
Sarah Sharp | a5f0efa | 2009-12-09 15:59:17 -0800 | [diff] [blame] | 2016 | struct usb_hcd *hcd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | |
Sarah Sharp | a5f0efa | 2009-12-09 15:59:17 -0800 | [diff] [blame] | 2018 | hcd = bus_to_hcd(udev->bus); |
Alan Stern | 32fe019 | 2007-10-10 16:27:07 -0400 | [diff] [blame] | 2019 | /* Block EHCI CF initialization during the port reset. |
| 2020 | * Some companion controllers don't like it when they mix. |
| 2021 | */ |
| 2022 | down_read(&ehci_cf_port_reset_rwsem); |
| 2023 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2024 | /* Reset the port */ |
| 2025 | for (i = 0; i < PORT_RESET_TRIES; i++) { |
| 2026 | status = set_port_feature(hub->hdev, |
| 2027 | port1, USB_PORT_FEAT_RESET); |
| 2028 | if (status) |
| 2029 | dev_err(hub->intfdev, |
| 2030 | "cannot reset port %d (err = %d)\n", |
| 2031 | port1, status); |
| 2032 | else { |
| 2033 | status = hub_port_wait_reset(hub, port1, udev, delay); |
David Brownell | dd16525 | 2005-08-31 10:45:25 -0700 | [diff] [blame] | 2034 | if (status && status != -ENOTCONN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2035 | dev_dbg(hub->intfdev, |
| 2036 | "port_wait_reset: err = %d\n", |
| 2037 | status); |
| 2038 | } |
| 2039 | |
| 2040 | /* return on disconnect or reset */ |
| 2041 | switch (status) { |
| 2042 | case 0: |
David Brownell | b789696 | 2005-08-31 10:41:44 -0700 | [diff] [blame] | 2043 | /* TRSTRCY = 10 ms; plus some extra */ |
| 2044 | msleep(10 + 40); |
David Vrabel | 4953d14 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 2045 | update_address(udev, 0); |
Sarah Sharp | a5f0efa | 2009-12-09 15:59:17 -0800 | [diff] [blame] | 2046 | if (hcd->driver->reset_device) { |
| 2047 | status = hcd->driver->reset_device(hcd, udev); |
| 2048 | if (status < 0) { |
| 2049 | dev_err(&udev->dev, "Cannot reset " |
| 2050 | "HCD device state\n"); |
| 2051 | break; |
| 2052 | } |
| 2053 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | /* FALL THROUGH */ |
| 2055 | case -ENOTCONN: |
| 2056 | case -ENODEV: |
| 2057 | clear_port_feature(hub->hdev, |
| 2058 | port1, USB_PORT_FEAT_C_RESET); |
| 2059 | /* FIXME need disconnect() for NOTATTACHED device */ |
| 2060 | usb_set_device_state(udev, status |
| 2061 | ? USB_STATE_NOTATTACHED |
| 2062 | : USB_STATE_DEFAULT); |
Alan Stern | 32fe019 | 2007-10-10 16:27:07 -0400 | [diff] [blame] | 2063 | goto done; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2064 | } |
| 2065 | |
| 2066 | dev_dbg (hub->intfdev, |
| 2067 | "port %d not enabled, trying reset again...\n", |
| 2068 | port1); |
| 2069 | delay = HUB_LONG_RESET_TIME; |
| 2070 | } |
| 2071 | |
| 2072 | dev_err (hub->intfdev, |
| 2073 | "Cannot enable port %i. Maybe the USB cable is bad?\n", |
| 2074 | port1); |
| 2075 | |
Alan Stern | 32fe019 | 2007-10-10 16:27:07 -0400 | [diff] [blame] | 2076 | done: |
| 2077 | up_read(&ehci_cf_port_reset_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2078 | return status; |
| 2079 | } |
| 2080 | |
Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 2081 | #ifdef CONFIG_PM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2082 | |
Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2083 | #define MASK_BITS (USB_PORT_STAT_POWER | USB_PORT_STAT_CONNECTION | \ |
| 2084 | USB_PORT_STAT_SUSPEND) |
| 2085 | #define WANT_BITS (USB_PORT_STAT_POWER | USB_PORT_STAT_CONNECTION) |
| 2086 | |
| 2087 | /* Determine whether the device on a port is ready for a normal resume, |
| 2088 | * is ready for a reset-resume, or should be disconnected. |
| 2089 | */ |
| 2090 | static int check_port_resume_type(struct usb_device *udev, |
| 2091 | struct usb_hub *hub, int port1, |
| 2092 | int status, unsigned portchange, unsigned portstatus) |
| 2093 | { |
| 2094 | /* Is the device still present? */ |
| 2095 | if (status || (portstatus & MASK_BITS) != WANT_BITS) { |
| 2096 | if (status >= 0) |
| 2097 | status = -ENODEV; |
| 2098 | } |
| 2099 | |
Alan Stern | 86c57ed | 2008-06-30 11:14:43 -0400 | [diff] [blame] | 2100 | /* Can't do a normal resume if the port isn't enabled, |
| 2101 | * so try a reset-resume instead. |
| 2102 | */ |
| 2103 | else if (!(portstatus & USB_PORT_STAT_ENABLE) && !udev->reset_resume) { |
| 2104 | if (udev->persist_enabled) |
| 2105 | udev->reset_resume = 1; |
| 2106 | else |
| 2107 | status = -ENODEV; |
| 2108 | } |
Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2109 | |
| 2110 | if (status) { |
| 2111 | dev_dbg(hub->intfdev, |
| 2112 | "port %d status %04x.%04x after resume, %d\n", |
| 2113 | port1, portchange, portstatus, status); |
| 2114 | } else if (udev->reset_resume) { |
| 2115 | |
| 2116 | /* Late port handoff can set status-change bits */ |
| 2117 | if (portchange & USB_PORT_STAT_C_CONNECTION) |
| 2118 | clear_port_feature(hub->hdev, port1, |
| 2119 | USB_PORT_FEAT_C_CONNECTION); |
| 2120 | if (portchange & USB_PORT_STAT_C_ENABLE) |
| 2121 | clear_port_feature(hub->hdev, port1, |
| 2122 | USB_PORT_FEAT_C_ENABLE); |
| 2123 | } |
| 2124 | |
| 2125 | return status; |
| 2126 | } |
| 2127 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2128 | #ifdef CONFIG_USB_SUSPEND |
| 2129 | |
| 2130 | /* |
Alan Stern | 140d8f6 | 2006-07-01 22:07:21 -0400 | [diff] [blame] | 2131 | * usb_port_suspend - suspend a usb device's upstream port |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2132 | * @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] | 2133 | * Context: must be able to sleep; device not locked; pm locks held |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2134 | * |
| 2135 | * Suspends a USB device that isn't in active use, conserving power. |
| 2136 | * Devices may wake out of a suspend, if anything important happens, |
| 2137 | * using the remote wakeup mechanism. They may also be taken out of |
Alan Stern | 140d8f6 | 2006-07-01 22:07:21 -0400 | [diff] [blame] | 2138 | * suspend by the host, using usb_port_resume(). It's also routine |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2139 | * to disconnect devices while they are suspended. |
| 2140 | * |
David Brownell | 390a8c3 | 2005-09-13 19:57:27 -0700 | [diff] [blame] | 2141 | * This only affects the USB hardware for a device; its interfaces |
| 2142 | * (and, for hubs, child devices) must already have been suspended. |
| 2143 | * |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2144 | * Selective port suspend reduces power; most suspended devices draw |
| 2145 | * less than 500 uA. It's also used in OTG, along with remote wakeup. |
| 2146 | * All devices below the suspended port are also suspended. |
| 2147 | * |
| 2148 | * Devices leave suspend state when the host wakes them up. Some devices |
| 2149 | * also support "remote wakeup", where the device can activate the USB |
| 2150 | * tree above them to deliver data, such as a keypress or packet. In |
| 2151 | * some cases, this wakes the USB host. |
| 2152 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2153 | * Suspending OTG devices may trigger HNP, if that's been enabled |
| 2154 | * between a pair of dual-role devices. That will change roles, such |
| 2155 | * as from A-Host to A-Peripheral or from B-Host back to B-Peripheral. |
| 2156 | * |
Alan Stern | 4956ecc | 2007-05-30 16:51:28 -0400 | [diff] [blame] | 2157 | * Devices on USB hub ports have only one "suspend" state, corresponding |
| 2158 | * to ACPI D2, "may cause the device to lose some context". |
| 2159 | * State transitions include: |
| 2160 | * |
| 2161 | * - suspend, resume ... when the VBUS power link stays live |
| 2162 | * - suspend, disconnect ... VBUS lost |
| 2163 | * |
| 2164 | * Once VBUS drop breaks the circuit, the port it's using has to go through |
| 2165 | * normal re-enumeration procedures, starting with enabling VBUS power. |
| 2166 | * Other than re-initializing the hub (plug/unplug, except for root hubs), |
| 2167 | * Linux (2.6) currently has NO mechanisms to initiate that: no khubd |
| 2168 | * timer, no SRP, no requests through sysfs. |
| 2169 | * |
| 2170 | * If CONFIG_USB_SUSPEND isn't enabled, devices only really suspend when |
| 2171 | * the root hub for their bus goes into global suspend ... so we don't |
| 2172 | * (falsely) update the device power state to say it suspended. |
| 2173 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2174 | * Returns 0 on success, else negative errno. |
| 2175 | */ |
Alan Stern | 65bfd29 | 2008-11-25 16:39:18 -0500 | [diff] [blame] | 2176 | int usb_port_suspend(struct usb_device *udev, pm_message_t msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | { |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2178 | struct usb_hub *hub = hdev_to_hub(udev->parent); |
| 2179 | int port1 = udev->portnum; |
| 2180 | int status; |
Alan Stern | 4956ecc | 2007-05-30 16:51:28 -0400 | [diff] [blame] | 2181 | |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2182 | // dev_dbg(hub->intfdev, "suspend port %d\n", port1); |
| 2183 | |
| 2184 | /* enable remote wakeup when appropriate; this lets the device |
| 2185 | * wake up the upstream hub (including maybe the root hub). |
| 2186 | * |
| 2187 | * NOTE: OTG devices may issue remote wakeup (or SRP) even when |
| 2188 | * we don't explicitly enable it here. |
| 2189 | */ |
| 2190 | if (udev->do_remote_wakeup) { |
| 2191 | status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
| 2192 | USB_REQ_SET_FEATURE, USB_RECIP_DEVICE, |
| 2193 | USB_DEVICE_REMOTE_WAKEUP, 0, |
| 2194 | NULL, 0, |
| 2195 | USB_CTRL_SET_TIMEOUT); |
Oliver Neukum | 0c48720 | 2009-10-19 13:19:41 +0200 | [diff] [blame] | 2196 | if (status) { |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2197 | dev_dbg(&udev->dev, "won't remote wakeup, status %d\n", |
| 2198 | status); |
Oliver Neukum | 0c48720 | 2009-10-19 13:19:41 +0200 | [diff] [blame] | 2199 | /* bail if autosuspend is requested */ |
| 2200 | if (msg.event & PM_EVENT_AUTO) |
| 2201 | return status; |
| 2202 | } |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2203 | } |
| 2204 | |
| 2205 | /* see 7.1.7.6 */ |
| 2206 | status = set_port_feature(hub->hdev, port1, USB_PORT_FEAT_SUSPEND); |
| 2207 | if (status) { |
| 2208 | dev_dbg(hub->intfdev, "can't suspend port %d, status %d\n", |
| 2209 | port1, status); |
| 2210 | /* paranoia: "should not happen" */ |
Oliver Neukum | 0c48720 | 2009-10-19 13:19:41 +0200 | [diff] [blame] | 2211 | if (udev->do_remote_wakeup) |
| 2212 | (void) usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2213 | USB_REQ_CLEAR_FEATURE, USB_RECIP_DEVICE, |
| 2214 | USB_DEVICE_REMOTE_WAKEUP, 0, |
| 2215 | NULL, 0, |
| 2216 | USB_CTRL_SET_TIMEOUT); |
| 2217 | } else { |
| 2218 | /* device has up to 10 msec to fully suspend */ |
| 2219 | dev_dbg(&udev->dev, "usb %ssuspend\n", |
Alan Stern | 65bfd29 | 2008-11-25 16:39:18 -0500 | [diff] [blame] | 2220 | (msg.event & PM_EVENT_AUTO ? "auto-" : "")); |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2221 | usb_set_device_state(udev, USB_STATE_SUSPENDED); |
| 2222 | msleep(10); |
| 2223 | } |
Alan Stern | 4956ecc | 2007-05-30 16:51:28 -0400 | [diff] [blame] | 2224 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2225 | } |
David Brownell | f3f3253 | 2005-09-22 22:37:29 -0700 | [diff] [blame] | 2226 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2227 | /* |
David Brownell | 390a8c3 | 2005-09-13 19:57:27 -0700 | [diff] [blame] | 2228 | * If the USB "suspend" state is in use (rather than "global suspend"), |
| 2229 | * many devices will be individually taken out of suspend state using |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2230 | * special "resume" signaling. This routine kicks in shortly after |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2231 | * hardware resume signaling is finished, either because of selective |
| 2232 | * resume (by host) or remote wakeup (by device) ... now see what changed |
| 2233 | * in the tree that's rooted at this device. |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2234 | * |
| 2235 | * If @udev->reset_resume is set then the device is reset before the |
| 2236 | * status check is done. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2237 | */ |
Alan Stern | 140d8f6 | 2006-07-01 22:07:21 -0400 | [diff] [blame] | 2238 | static int finish_port_resume(struct usb_device *udev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2239 | { |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2240 | int status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 | u16 devstatus; |
| 2242 | |
| 2243 | /* caller owns the udev device lock */ |
Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 2244 | dev_dbg(&udev->dev, "%s\n", |
| 2245 | udev->reset_resume ? "finish reset-resume" : "finish resume"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2246 | |
| 2247 | /* usb ch9 identifies four variants of SUSPENDED, based on what |
| 2248 | * state the device resumes to. Linux currently won't see the |
| 2249 | * first two on the host side; they'd be inside hub_port_init() |
| 2250 | * during many timeouts, but khubd can't suspend until later. |
| 2251 | */ |
| 2252 | usb_set_device_state(udev, udev->actconfig |
| 2253 | ? USB_STATE_CONFIGURED |
| 2254 | : USB_STATE_ADDRESS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2255 | |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2256 | /* 10.5.4.5 says not to reset a suspended port if the attached |
| 2257 | * device is enabled for remote wakeup. Hence the reset |
| 2258 | * operation is carried out here, after the port has been |
| 2259 | * resumed. |
| 2260 | */ |
| 2261 | if (udev->reset_resume) |
Alan Stern | 86c57ed | 2008-06-30 11:14:43 -0400 | [diff] [blame] | 2262 | retry_reset_resume: |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 2263 | status = usb_reset_and_verify_device(udev); |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2264 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2265 | /* 10.5.4.5 says be sure devices in the tree are still there. |
| 2266 | * For now let's assume the device didn't go crazy on resume, |
| 2267 | * and device drivers will know about any resume quirks. |
| 2268 | */ |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2269 | if (status == 0) { |
Alan Stern | 46dede4 | 2007-08-14 10:56:10 -0400 | [diff] [blame] | 2270 | devstatus = 0; |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2271 | status = usb_get_status(udev, USB_RECIP_DEVICE, 0, &devstatus); |
| 2272 | if (status >= 0) |
Alan Stern | 46dede4 | 2007-08-14 10:56:10 -0400 | [diff] [blame] | 2273 | status = (status > 0 ? 0 : -ENODEV); |
Alan Stern | 86c57ed | 2008-06-30 11:14:43 -0400 | [diff] [blame] | 2274 | |
| 2275 | /* If a normal resume failed, try doing a reset-resume */ |
| 2276 | if (status && !udev->reset_resume && udev->persist_enabled) { |
| 2277 | dev_dbg(&udev->dev, "retry with reset-resume\n"); |
| 2278 | udev->reset_resume = 1; |
| 2279 | goto retry_reset_resume; |
| 2280 | } |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2281 | } |
Alan Stern | b40b7a9 | 2006-06-19 15:12:38 -0400 | [diff] [blame] | 2282 | |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2283 | if (status) { |
| 2284 | dev_dbg(&udev->dev, "gone after usb resume? status %d\n", |
| 2285 | status); |
| 2286 | } else if (udev->actconfig) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2287 | le16_to_cpus(&devstatus); |
Alan Stern | 686314c | 2007-05-30 15:34:36 -0400 | [diff] [blame] | 2288 | if (devstatus & (1 << USB_DEVICE_REMOTE_WAKEUP)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2289 | status = usb_control_msg(udev, |
| 2290 | usb_sndctrlpipe(udev, 0), |
| 2291 | USB_REQ_CLEAR_FEATURE, |
| 2292 | USB_RECIP_DEVICE, |
| 2293 | USB_DEVICE_REMOTE_WAKEUP, 0, |
| 2294 | NULL, 0, |
| 2295 | USB_CTRL_SET_TIMEOUT); |
Alan Stern | a8e7c56 | 2006-07-01 22:11:02 -0400 | [diff] [blame] | 2296 | if (status) |
Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 2297 | dev_dbg(&udev->dev, |
| 2298 | "disable remote wakeup, status %d\n", |
| 2299 | status); |
Alan Stern | 4bf0ba8 | 2005-11-21 11:58:07 -0500 | [diff] [blame] | 2300 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2301 | status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2302 | } |
| 2303 | return status; |
| 2304 | } |
| 2305 | |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2306 | /* |
| 2307 | * usb_port_resume - re-activate a suspended usb device's upstream port |
| 2308 | * @udev: device to re-activate, not a root hub |
| 2309 | * Context: must be able to sleep; device not locked; pm locks held |
| 2310 | * |
| 2311 | * This will re-activate the suspended device, increasing power usage |
| 2312 | * while letting drivers communicate again with its endpoints. |
| 2313 | * USB resume explicitly guarantees that the power session between |
| 2314 | * the host and the device is the same as it was when the device |
| 2315 | * suspended. |
| 2316 | * |
Alan Stern | feccc30 | 2008-03-03 15:15:59 -0500 | [diff] [blame] | 2317 | * If @udev->reset_resume is set then this routine won't check that the |
| 2318 | * port is still enabled. Furthermore, finish_port_resume() above will |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2319 | * reset @udev. The end result is that a broken power session can be |
| 2320 | * recovered and @udev will appear to persist across a loss of VBUS power. |
| 2321 | * |
| 2322 | * For example, if a host controller doesn't maintain VBUS suspend current |
| 2323 | * during a system sleep or is reset when the system wakes up, all the USB |
| 2324 | * power sessions below it will be broken. This is especially troublesome |
| 2325 | * for mass-storage devices containing mounted filesystems, since the |
| 2326 | * device will appear to have disconnected and all the memory mappings |
| 2327 | * to it will be lost. Using the USB_PERSIST facility, the device can be |
| 2328 | * made to appear as if it had not disconnected. |
| 2329 | * |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 2330 | * This facility can be dangerous. Although usb_reset_and_verify_device() makes |
Alan Stern | feccc30 | 2008-03-03 15:15:59 -0500 | [diff] [blame] | 2331 | * every effort to insure that the same device is present after the |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2332 | * reset as before, it cannot provide a 100% guarantee. Furthermore it's |
| 2333 | * quite possible for a device to remain unaltered but its media to be |
| 2334 | * changed. If the user replaces a flash memory card while the system is |
| 2335 | * asleep, he will have only himself to blame when the filesystem on the |
| 2336 | * new card is corrupted and the system crashes. |
| 2337 | * |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2338 | * Returns 0 on success, else negative errno. |
| 2339 | */ |
Alan Stern | 65bfd29 | 2008-11-25 16:39:18 -0500 | [diff] [blame] | 2340 | int usb_port_resume(struct usb_device *udev, pm_message_t msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2341 | { |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2342 | struct usb_hub *hub = hdev_to_hub(udev->parent); |
| 2343 | int port1 = udev->portnum; |
| 2344 | int status; |
| 2345 | u16 portchange, portstatus; |
Alan Stern | d25450c | 2006-11-20 11:14:30 -0500 | [diff] [blame] | 2346 | |
| 2347 | /* Skip the initial Clear-Suspend step for a remote wakeup */ |
| 2348 | status = hub_port_status(hub, port1, &portstatus, &portchange); |
| 2349 | if (status == 0 && !(portstatus & USB_PORT_STAT_SUSPEND)) |
| 2350 | goto SuspendCleared; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2351 | |
| 2352 | // dev_dbg(hub->intfdev, "resume port %d\n", port1); |
| 2353 | |
Alan Stern | d5cbad4 | 2006-08-11 16:52:39 -0400 | [diff] [blame] | 2354 | set_bit(port1, hub->busy_bits); |
| 2355 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2356 | /* see 7.1.7.7; affects power usage, but not budgeting */ |
| 2357 | status = clear_port_feature(hub->hdev, |
| 2358 | port1, USB_PORT_FEAT_SUSPEND); |
| 2359 | if (status) { |
Alan Stern | 624d6c0 | 2007-05-30 15:35:16 -0400 | [diff] [blame] | 2360 | dev_dbg(hub->intfdev, "can't resume port %d, status %d\n", |
| 2361 | port1, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2362 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2363 | /* drive resume for at least 20 msec */ |
Alan Stern | 686314c | 2007-05-30 15:34:36 -0400 | [diff] [blame] | 2364 | dev_dbg(&udev->dev, "usb %sresume\n", |
Alan Stern | 65bfd29 | 2008-11-25 16:39:18 -0500 | [diff] [blame] | 2365 | (msg.event & PM_EVENT_AUTO ? "auto-" : "")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2366 | msleep(25); |
| 2367 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2368 | /* Virtual root hubs can trigger on GET_PORT_STATUS to |
| 2369 | * stop resume signaling. Then finish the resume |
| 2370 | * sequence. |
| 2371 | */ |
Alan Stern | d25450c | 2006-11-20 11:14:30 -0500 | [diff] [blame] | 2372 | status = hub_port_status(hub, port1, &portstatus, &portchange); |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2373 | |
Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2374 | /* TRSMRCY = 10 msec */ |
| 2375 | msleep(10); |
| 2376 | } |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2377 | |
Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2378 | SuspendCleared: |
| 2379 | if (status == 0) { |
| 2380 | if (portchange & USB_PORT_STAT_C_SUSPEND) |
| 2381 | clear_port_feature(hub->hdev, port1, |
| 2382 | USB_PORT_FEAT_C_SUSPEND); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2383 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2384 | |
Alan Stern | d5cbad4 | 2006-08-11 16:52:39 -0400 | [diff] [blame] | 2385 | clear_bit(port1, hub->busy_bits); |
Alan Stern | d5cbad4 | 2006-08-11 16:52:39 -0400 | [diff] [blame] | 2386 | |
Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2387 | status = check_port_resume_type(udev, |
| 2388 | hub, port1, status, portchange, portstatus); |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2389 | if (status == 0) |
| 2390 | status = finish_port_resume(udev); |
| 2391 | if (status < 0) { |
| 2392 | dev_dbg(&udev->dev, "can't resume, status %d\n", status); |
| 2393 | hub_port_logical_disconnect(hub, port1); |
| 2394 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2395 | return status; |
| 2396 | } |
| 2397 | |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 2398 | /* caller has locked udev */ |
Alan Stern | 0534d46 | 2010-01-08 12:56:30 -0500 | [diff] [blame] | 2399 | int usb_remote_wakeup(struct usb_device *udev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2400 | { |
| 2401 | int status = 0; |
| 2402 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2403 | if (udev->state == USB_STATE_SUSPENDED) { |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 2404 | dev_dbg(&udev->dev, "usb %sresume\n", "wakeup-"); |
Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 2405 | status = usb_autoresume_device(udev); |
| 2406 | if (status == 0) { |
| 2407 | /* Let the drivers do their thing, then... */ |
| 2408 | usb_autosuspend_device(udev); |
| 2409 | } |
Alan Stern | d25450c | 2006-11-20 11:14:30 -0500 | [diff] [blame] | 2410 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2411 | return status; |
| 2412 | } |
| 2413 | |
Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 2414 | #else /* CONFIG_USB_SUSPEND */ |
| 2415 | |
| 2416 | /* When CONFIG_USB_SUSPEND isn't set, we never suspend or resume any ports. */ |
| 2417 | |
Alan Stern | 65bfd29 | 2008-11-25 16:39:18 -0500 | [diff] [blame] | 2418 | int usb_port_suspend(struct usb_device *udev, pm_message_t msg) |
Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 2419 | { |
| 2420 | return 0; |
| 2421 | } |
| 2422 | |
Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2423 | /* However we may need to do a reset-resume */ |
| 2424 | |
Alan Stern | 65bfd29 | 2008-11-25 16:39:18 -0500 | [diff] [blame] | 2425 | int usb_port_resume(struct usb_device *udev, pm_message_t msg) |
Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 2426 | { |
Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2427 | struct usb_hub *hub = hdev_to_hub(udev->parent); |
| 2428 | int port1 = udev->portnum; |
| 2429 | int status; |
| 2430 | u16 portchange, portstatus; |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2431 | |
Alan Stern | b01b03f | 2008-04-28 11:06:11 -0400 | [diff] [blame] | 2432 | status = hub_port_status(hub, port1, &portstatus, &portchange); |
| 2433 | status = check_port_resume_type(udev, |
| 2434 | hub, port1, status, portchange, portstatus); |
| 2435 | |
| 2436 | if (status) { |
| 2437 | dev_dbg(&udev->dev, "can't resume, status %d\n", status); |
| 2438 | hub_port_logical_disconnect(hub, port1); |
| 2439 | } else if (udev->reset_resume) { |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2440 | dev_dbg(&udev->dev, "reset-resume\n"); |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 2441 | status = usb_reset_and_verify_device(udev); |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2442 | } |
| 2443 | return status; |
Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 2444 | } |
| 2445 | |
Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 2446 | #endif |
| 2447 | |
David Brownell | db69087 | 2005-09-13 19:56:33 -0700 | [diff] [blame] | 2448 | static int hub_suspend(struct usb_interface *intf, pm_message_t msg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2449 | { |
| 2450 | struct usb_hub *hub = usb_get_intfdata (intf); |
| 2451 | struct usb_device *hdev = hub->hdev; |
| 2452 | unsigned port1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2453 | |
David Brownell | c9f89fa | 2005-09-13 19:57:04 -0700 | [diff] [blame] | 2454 | /* fail if children aren't already suspended */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2455 | for (port1 = 1; port1 <= hdev->maxchild; port1++) { |
| 2456 | struct usb_device *udev; |
| 2457 | |
| 2458 | udev = hdev->children [port1-1]; |
Alan Stern | 6840d25 | 2007-09-10 11:34:26 -0400 | [diff] [blame] | 2459 | if (udev && udev->can_submit) { |
Alan Stern | 65bfd29 | 2008-11-25 16:39:18 -0500 | [diff] [blame] | 2460 | if (!(msg.event & PM_EVENT_AUTO)) |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 2461 | dev_dbg(&intf->dev, "port %d nyet suspended\n", |
| 2462 | port1); |
David Brownell | c9f89fa | 2005-09-13 19:57:04 -0700 | [diff] [blame] | 2463 | return -EBUSY; |
| 2464 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2465 | } |
| 2466 | |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 2467 | dev_dbg(&intf->dev, "%s\n", __func__); |
Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 2468 | |
David Brownell | c9f89fa | 2005-09-13 19:57:04 -0700 | [diff] [blame] | 2469 | /* stop khubd and related activity */ |
Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 2470 | hub_quiesce(hub, HUB_SUSPEND); |
Alan Stern | b6f6436d | 2007-05-04 11:51:54 -0400 | [diff] [blame] | 2471 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2472 | } |
| 2473 | |
| 2474 | static int hub_resume(struct usb_interface *intf) |
| 2475 | { |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 2476 | struct usb_hub *hub = usb_get_intfdata(intf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2477 | |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 2478 | dev_dbg(&intf->dev, "%s\n", __func__); |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 2479 | hub_activate(hub, HUB_RESUME); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2480 | return 0; |
| 2481 | } |
| 2482 | |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 2483 | static int hub_reset_resume(struct usb_interface *intf) |
Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 2484 | { |
Alan Stern | b41a60e | 2007-05-30 15:39:33 -0400 | [diff] [blame] | 2485 | struct usb_hub *hub = usb_get_intfdata(intf); |
Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 2486 | |
Alan Stern | 5e6effa | 2008-03-03 15:15:51 -0500 | [diff] [blame] | 2487 | dev_dbg(&intf->dev, "%s\n", __func__); |
Alan Stern | f283521 | 2008-04-28 11:07:17 -0400 | [diff] [blame] | 2488 | hub_activate(hub, HUB_RESET_RESUME); |
Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 2489 | return 0; |
| 2490 | } |
| 2491 | |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2492 | /** |
| 2493 | * usb_root_hub_lost_power - called by HCD if the root hub lost Vbus power |
| 2494 | * @rhdev: struct usb_device for the root hub |
| 2495 | * |
| 2496 | * The USB host controller driver calls this function when its root hub |
| 2497 | * is resumed and Vbus power has been interrupted or the controller |
Alan Stern | feccc30 | 2008-03-03 15:15:59 -0500 | [diff] [blame] | 2498 | * has been reset. The routine marks @rhdev as having lost power. |
| 2499 | * When the hub driver is resumed it will take notice and carry out |
| 2500 | * power-session recovery for all the "USB-PERSIST"-enabled child devices; |
| 2501 | * the others will be disconnected. |
Alan Stern | 54515fe | 2007-05-30 15:38:58 -0400 | [diff] [blame] | 2502 | */ |
| 2503 | void usb_root_hub_lost_power(struct usb_device *rhdev) |
| 2504 | { |
| 2505 | dev_warn(&rhdev->dev, "root hub lost power or was reset\n"); |
| 2506 | rhdev->reset_resume = 1; |
| 2507 | } |
| 2508 | EXPORT_SYMBOL_GPL(usb_root_hub_lost_power); |
| 2509 | |
Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 2510 | #else /* CONFIG_PM */ |
| 2511 | |
Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 2512 | #define hub_suspend NULL |
| 2513 | #define hub_resume NULL |
| 2514 | #define hub_reset_resume NULL |
Alan Stern | d388dab | 2006-07-01 22:14:24 -0400 | [diff] [blame] | 2515 | #endif |
| 2516 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2517 | |
| 2518 | /* USB 2.0 spec, 7.1.7.3 / fig 7-29: |
| 2519 | * |
| 2520 | * Between connect detection and reset signaling there must be a delay |
| 2521 | * of 100ms at least for debounce and power-settling. The corresponding |
| 2522 | * timer shall restart whenever the downstream port detects a disconnect. |
| 2523 | * |
| 2524 | * Apparently there are some bluetooth and irda-dongles and a number of |
| 2525 | * low-speed devices for which this debounce period may last over a second. |
| 2526 | * Not covered by the spec - but easy to deal with. |
| 2527 | * |
| 2528 | * This implementation uses a 1500ms total debounce timeout; if the |
| 2529 | * connection isn't stable by then it returns -ETIMEDOUT. It checks |
| 2530 | * every 25ms for transient disconnects. When the port status has been |
| 2531 | * unchanged for 100ms it returns the port status. |
| 2532 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2533 | static int hub_port_debounce(struct usb_hub *hub, int port1) |
| 2534 | { |
| 2535 | int ret; |
| 2536 | int total_time, stable_time = 0; |
| 2537 | u16 portchange, portstatus; |
| 2538 | unsigned connection = 0xffff; |
| 2539 | |
| 2540 | for (total_time = 0; ; total_time += HUB_DEBOUNCE_STEP) { |
| 2541 | ret = hub_port_status(hub, port1, &portstatus, &portchange); |
| 2542 | if (ret < 0) |
| 2543 | return ret; |
| 2544 | |
| 2545 | if (!(portchange & USB_PORT_STAT_C_CONNECTION) && |
| 2546 | (portstatus & USB_PORT_STAT_CONNECTION) == connection) { |
| 2547 | stable_time += HUB_DEBOUNCE_STEP; |
| 2548 | if (stable_time >= HUB_DEBOUNCE_STABLE) |
| 2549 | break; |
| 2550 | } else { |
| 2551 | stable_time = 0; |
| 2552 | connection = portstatus & USB_PORT_STAT_CONNECTION; |
| 2553 | } |
| 2554 | |
| 2555 | if (portchange & USB_PORT_STAT_C_CONNECTION) { |
| 2556 | clear_port_feature(hub->hdev, port1, |
| 2557 | USB_PORT_FEAT_C_CONNECTION); |
| 2558 | } |
| 2559 | |
| 2560 | if (total_time >= HUB_DEBOUNCE_TIMEOUT) |
| 2561 | break; |
| 2562 | msleep(HUB_DEBOUNCE_STEP); |
| 2563 | } |
| 2564 | |
| 2565 | dev_dbg (hub->intfdev, |
| 2566 | "debounce: port %d: total %dms stable %dms status 0x%x\n", |
| 2567 | port1, total_time, stable_time, portstatus); |
| 2568 | |
| 2569 | if (stable_time < HUB_DEBOUNCE_STABLE) |
| 2570 | return -ETIMEDOUT; |
| 2571 | return portstatus; |
| 2572 | } |
| 2573 | |
Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 2574 | void usb_ep0_reinit(struct usb_device *udev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2575 | { |
Alan Stern | ddeac4e | 2009-01-15 17:03:33 -0500 | [diff] [blame] | 2576 | usb_disable_endpoint(udev, 0 + USB_DIR_IN, true); |
| 2577 | usb_disable_endpoint(udev, 0 + USB_DIR_OUT, true); |
Alan Stern | 2caf7fc | 2008-12-31 11:31:33 -0500 | [diff] [blame] | 2578 | usb_enable_endpoint(udev, &udev->ep0, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2579 | } |
Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 2580 | EXPORT_SYMBOL_GPL(usb_ep0_reinit); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2581 | |
| 2582 | #define usb_sndaddr0pipe() (PIPE_CONTROL << 30) |
| 2583 | #define usb_rcvaddr0pipe() ((PIPE_CONTROL << 30) | USB_DIR_IN) |
| 2584 | |
Alan Stern | 4326ed0 | 2007-07-30 17:08:43 -0400 | [diff] [blame] | 2585 | static int hub_set_address(struct usb_device *udev, int devnum) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2586 | { |
| 2587 | int retval; |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 2588 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2589 | |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 2590 | /* |
| 2591 | * The host controller will choose the device address, |
| 2592 | * instead of the core having chosen it earlier |
| 2593 | */ |
| 2594 | if (!hcd->driver->address_device && devnum <= 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2595 | return -EINVAL; |
| 2596 | if (udev->state == USB_STATE_ADDRESS) |
| 2597 | return 0; |
| 2598 | if (udev->state != USB_STATE_DEFAULT) |
| 2599 | return -EINVAL; |
Andiry Xu | c8d4af8 | 2010-10-14 07:22:51 -0700 | [diff] [blame] | 2600 | if (hcd->driver->address_device) |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 2601 | retval = hcd->driver->address_device(hcd, udev); |
Andiry Xu | c8d4af8 | 2010-10-14 07:22:51 -0700 | [diff] [blame] | 2602 | else |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 2603 | retval = usb_control_msg(udev, usb_sndaddr0pipe(), |
| 2604 | USB_REQ_SET_ADDRESS, 0, devnum, 0, |
| 2605 | NULL, 0, USB_CTRL_SET_TIMEOUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2606 | if (retval == 0) { |
Andiry Xu | c8d4af8 | 2010-10-14 07:22:51 -0700 | [diff] [blame] | 2607 | update_address(udev, devnum); |
David Vrabel | 4953d14 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 2608 | /* Device now using proper address. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2609 | usb_set_device_state(udev, USB_STATE_ADDRESS); |
Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 2610 | usb_ep0_reinit(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2611 | } |
| 2612 | return retval; |
| 2613 | } |
| 2614 | |
| 2615 | /* Reset device, (re)assign address, get device descriptor. |
| 2616 | * Device connection must be stable, no more debouncing needed. |
| 2617 | * Returns device in USB_STATE_ADDRESS, except on error. |
| 2618 | * |
| 2619 | * If this is called for an already-existing device (as part of |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 2620 | * 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] | 2621 | * newly detected device that is not accessible through any global |
| 2622 | * pointers, it's not necessary to lock the device. |
| 2623 | */ |
| 2624 | static int |
| 2625 | hub_port_init (struct usb_hub *hub, struct usb_device *udev, int port1, |
| 2626 | int retry_counter) |
| 2627 | { |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 2628 | static DEFINE_MUTEX(usb_address0_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2629 | |
| 2630 | struct usb_device *hdev = hub->hdev; |
Sarah Sharp | e7b7717 | 2009-04-27 19:54:26 -0700 | [diff] [blame] | 2631 | struct usb_hcd *hcd = bus_to_hcd(hdev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2632 | int i, j, retval; |
| 2633 | unsigned delay = HUB_SHORT_RESET_TIME; |
| 2634 | enum usb_device_speed oldspeed = udev->speed; |
Inaky Perez-Gonzalez | 83a0719 | 2006-08-25 19:35:31 -0700 | [diff] [blame] | 2635 | char *speed, *type; |
Alan Stern | 4326ed0 | 2007-07-30 17:08:43 -0400 | [diff] [blame] | 2636 | int devnum = udev->devnum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2637 | |
| 2638 | /* root hub ports have a slightly longer reset period |
| 2639 | * (from USB 2.0 spec, section 7.1.7.5) |
| 2640 | */ |
| 2641 | if (!hdev->parent) { |
| 2642 | delay = HUB_ROOT_RESET_TIME; |
| 2643 | if (port1 == hdev->bus->otg_port) |
| 2644 | hdev->bus->b_hnp_enable = 0; |
| 2645 | } |
| 2646 | |
| 2647 | /* Some low speed devices have problems with the quick delay, so */ |
| 2648 | /* be a bit pessimistic with those devices. RHbug #23670 */ |
| 2649 | if (oldspeed == USB_SPEED_LOW) |
| 2650 | delay = HUB_LONG_RESET_TIME; |
| 2651 | |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 2652 | mutex_lock(&usb_address0_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2653 | |
Sarah Sharp | a5f0efa | 2009-12-09 15:59:17 -0800 | [diff] [blame] | 2654 | if (!udev->config && oldspeed == USB_SPEED_SUPER) { |
Sarah Sharp | e7b7717 | 2009-04-27 19:54:26 -0700 | [diff] [blame] | 2655 | /* Don't reset USB 3.0 devices during an initial setup */ |
| 2656 | usb_set_device_state(udev, USB_STATE_DEFAULT); |
| 2657 | } else { |
| 2658 | /* Reset the device; full speed may morph to high speed */ |
| 2659 | /* FIXME a USB 2.0 device may morph into SuperSpeed on reset. */ |
| 2660 | retval = hub_port_reset(hub, port1, udev, delay); |
| 2661 | if (retval < 0) /* error or disconnect */ |
| 2662 | goto fail; |
| 2663 | /* success, speed is known */ |
| 2664 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2665 | retval = -ENODEV; |
| 2666 | |
| 2667 | if (oldspeed != USB_SPEED_UNKNOWN && oldspeed != udev->speed) { |
| 2668 | dev_dbg(&udev->dev, "device reset changed speed!\n"); |
| 2669 | goto fail; |
| 2670 | } |
| 2671 | oldspeed = udev->speed; |
Alan Stern | 4326ed0 | 2007-07-30 17:08:43 -0400 | [diff] [blame] | 2672 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2673 | /* USB 2.0 section 5.5.3 talks about ep0 maxpacket ... |
| 2674 | * it's fixed size except for full speed devices. |
Inaky Perez-Gonzalez | 5bb6e0a | 2006-08-25 19:35:30 -0700 | [diff] [blame] | 2675 | * For Wireless USB devices, ep0 max packet is always 512 (tho |
| 2676 | * reported as 0xff in the device descriptor). WUSB1.0[4.8.1]. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2677 | */ |
| 2678 | switch (udev->speed) { |
Sarah Sharp | 6b403b0 | 2009-04-27 19:54:10 -0700 | [diff] [blame] | 2679 | case USB_SPEED_SUPER: |
Greg Kroah-Hartman | 551cdbb | 2010-01-14 11:08:04 -0800 | [diff] [blame] | 2680 | case USB_SPEED_WIRELESS: /* fixed at 512 */ |
Harvey Harrison | 551509d | 2009-02-11 14:11:36 -0800 | [diff] [blame] | 2681 | udev->ep0.desc.wMaxPacketSize = cpu_to_le16(512); |
Inaky Perez-Gonzalez | 5bb6e0a | 2006-08-25 19:35:30 -0700 | [diff] [blame] | 2682 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2683 | case USB_SPEED_HIGH: /* fixed at 64 */ |
Harvey Harrison | 551509d | 2009-02-11 14:11:36 -0800 | [diff] [blame] | 2684 | udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2685 | break; |
| 2686 | case USB_SPEED_FULL: /* 8, 16, 32, or 64 */ |
| 2687 | /* to determine the ep0 maxpacket size, try to read |
| 2688 | * the device descriptor to get bMaxPacketSize0 and |
| 2689 | * then correct our initial guess. |
| 2690 | */ |
Harvey Harrison | 551509d | 2009-02-11 14:11:36 -0800 | [diff] [blame] | 2691 | udev->ep0.desc.wMaxPacketSize = cpu_to_le16(64); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2692 | break; |
| 2693 | case USB_SPEED_LOW: /* fixed at 8 */ |
Harvey Harrison | 551509d | 2009-02-11 14:11:36 -0800 | [diff] [blame] | 2694 | udev->ep0.desc.wMaxPacketSize = cpu_to_le16(8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2695 | break; |
| 2696 | default: |
| 2697 | goto fail; |
| 2698 | } |
| 2699 | |
Inaky Perez-Gonzalez | 83a0719 | 2006-08-25 19:35:31 -0700 | [diff] [blame] | 2700 | type = ""; |
| 2701 | switch (udev->speed) { |
| 2702 | case USB_SPEED_LOW: speed = "low"; break; |
| 2703 | case USB_SPEED_FULL: speed = "full"; break; |
| 2704 | case USB_SPEED_HIGH: speed = "high"; break; |
Sarah Sharp | 6b403b0 | 2009-04-27 19:54:10 -0700 | [diff] [blame] | 2705 | case USB_SPEED_SUPER: |
| 2706 | speed = "super"; |
| 2707 | break; |
Greg Kroah-Hartman | 551cdbb | 2010-01-14 11:08:04 -0800 | [diff] [blame] | 2708 | case USB_SPEED_WIRELESS: |
Inaky Perez-Gonzalez | 83a0719 | 2006-08-25 19:35:31 -0700 | [diff] [blame] | 2709 | speed = "variable"; |
| 2710 | type = "Wireless "; |
| 2711 | break; |
| 2712 | default: speed = "?"; break; |
| 2713 | } |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 2714 | if (udev->speed != USB_SPEED_SUPER) |
| 2715 | dev_info(&udev->dev, |
| 2716 | "%s %s speed %sUSB device using %s and address %d\n", |
| 2717 | (udev->config) ? "reset" : "new", speed, type, |
| 2718 | udev->bus->controller->driver->name, devnum); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2719 | |
| 2720 | /* Set up TT records, if needed */ |
| 2721 | if (hdev->tt) { |
| 2722 | udev->tt = hdev->tt; |
| 2723 | udev->ttport = hdev->ttport; |
| 2724 | } else if (udev->speed != USB_SPEED_HIGH |
| 2725 | && hdev->speed == USB_SPEED_HIGH) { |
| 2726 | udev->tt = &hub->tt; |
| 2727 | udev->ttport = port1; |
| 2728 | } |
| 2729 | |
| 2730 | /* Why interleave GET_DESCRIPTOR and SET_ADDRESS this way? |
| 2731 | * Because device hardware and firmware is sometimes buggy in |
| 2732 | * this area, and this is how Linux has done it for ages. |
| 2733 | * Change it cautiously. |
| 2734 | * |
| 2735 | * NOTE: If USE_NEW_SCHEME() is true we will start by issuing |
| 2736 | * a 64-byte GET_DESCRIPTOR request. This is what Windows does, |
| 2737 | * so it may help with some non-standards-compliant devices. |
| 2738 | * Otherwise we start with SET_ADDRESS and then try to read the |
| 2739 | * first 8 bytes of the device descriptor to get the ep0 maxpacket |
| 2740 | * value. |
| 2741 | */ |
| 2742 | for (i = 0; i < GET_DESCRIPTOR_TRIES; (++i, msleep(100))) { |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 2743 | /* |
| 2744 | * An xHCI controller cannot send any packets to a device until |
| 2745 | * a set address command successfully completes. |
| 2746 | */ |
| 2747 | if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2748 | struct usb_device_descriptor *buf; |
| 2749 | int r = 0; |
| 2750 | |
| 2751 | #define GET_DESCRIPTOR_BUFSIZE 64 |
| 2752 | buf = kmalloc(GET_DESCRIPTOR_BUFSIZE, GFP_NOIO); |
| 2753 | if (!buf) { |
| 2754 | retval = -ENOMEM; |
| 2755 | continue; |
| 2756 | } |
| 2757 | |
Alan Stern | b89ee19 | 2007-05-11 10:19:04 -0400 | [diff] [blame] | 2758 | /* Retry on all errors; some devices are flakey. |
| 2759 | * 255 is for WUSB devices, we actually need to use |
| 2760 | * 512 (WUSB1.0[4.8.1]). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2761 | */ |
| 2762 | for (j = 0; j < 3; ++j) { |
| 2763 | buf->bMaxPacketSize0 = 0; |
| 2764 | r = usb_control_msg(udev, usb_rcvaddr0pipe(), |
| 2765 | USB_REQ_GET_DESCRIPTOR, USB_DIR_IN, |
| 2766 | USB_DT_DEVICE << 8, 0, |
| 2767 | buf, GET_DESCRIPTOR_BUFSIZE, |
Jaroslav Kysela | fd7c519 | 2008-10-10 16:24:45 +0200 | [diff] [blame] | 2768 | initial_descriptor_timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2769 | switch (buf->bMaxPacketSize0) { |
Inaky Perez-Gonzalez | 5bb6e0a | 2006-08-25 19:35:30 -0700 | [diff] [blame] | 2770 | case 8: case 16: case 32: case 64: case 255: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2771 | if (buf->bDescriptorType == |
| 2772 | USB_DT_DEVICE) { |
| 2773 | r = 0; |
| 2774 | break; |
| 2775 | } |
| 2776 | /* FALL THROUGH */ |
| 2777 | default: |
| 2778 | if (r == 0) |
| 2779 | r = -EPROTO; |
| 2780 | break; |
| 2781 | } |
| 2782 | if (r == 0) |
| 2783 | break; |
| 2784 | } |
| 2785 | udev->descriptor.bMaxPacketSize0 = |
| 2786 | buf->bMaxPacketSize0; |
| 2787 | kfree(buf); |
| 2788 | |
| 2789 | retval = hub_port_reset(hub, port1, udev, delay); |
| 2790 | if (retval < 0) /* error or disconnect */ |
| 2791 | goto fail; |
| 2792 | if (oldspeed != udev->speed) { |
| 2793 | dev_dbg(&udev->dev, |
| 2794 | "device reset changed speed!\n"); |
| 2795 | retval = -ENODEV; |
| 2796 | goto fail; |
| 2797 | } |
| 2798 | if (r) { |
Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 2799 | dev_err(&udev->dev, |
| 2800 | "device descriptor read/64, error %d\n", |
| 2801 | r); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2802 | retval = -EMSGSIZE; |
| 2803 | continue; |
| 2804 | } |
| 2805 | #undef GET_DESCRIPTOR_BUFSIZE |
| 2806 | } |
| 2807 | |
Inaky Perez-Gonzalez | 6c529cd | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 2808 | /* |
| 2809 | * If device is WUSB, we already assigned an |
| 2810 | * unauthorized address in the Connect Ack sequence; |
| 2811 | * authorization will assign the final address. |
| 2812 | */ |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 2813 | if (udev->wusb == 0) { |
Inaky Perez-Gonzalez | 6c529cd | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 2814 | for (j = 0; j < SET_ADDRESS_TRIES; ++j) { |
| 2815 | retval = hub_set_address(udev, devnum); |
| 2816 | if (retval >= 0) |
| 2817 | break; |
| 2818 | msleep(200); |
| 2819 | } |
| 2820 | if (retval < 0) { |
| 2821 | dev_err(&udev->dev, |
| 2822 | "device not accepting address %d, error %d\n", |
| 2823 | devnum, retval); |
| 2824 | goto fail; |
| 2825 | } |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 2826 | if (udev->speed == USB_SPEED_SUPER) { |
| 2827 | devnum = udev->devnum; |
| 2828 | dev_info(&udev->dev, |
| 2829 | "%s SuperSpeed USB device using %s and address %d\n", |
| 2830 | (udev->config) ? "reset" : "new", |
| 2831 | udev->bus->controller->driver->name, devnum); |
| 2832 | } |
Inaky Perez-Gonzalez | 6c529cd | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 2833 | |
| 2834 | /* cope with hardware quirkiness: |
| 2835 | * - let SET_ADDRESS settle, some device hardware wants it |
| 2836 | * - read ep0 maxpacket even for high and low speed, |
| 2837 | */ |
| 2838 | msleep(10); |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 2839 | if (USE_NEW_SCHEME(retry_counter) && !(hcd->driver->flags & HCD_USB3)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2840 | break; |
Inaky Perez-Gonzalez | 6c529cd | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 2841 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2842 | |
| 2843 | retval = usb_get_device_descriptor(udev, 8); |
| 2844 | if (retval < 8) { |
Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 2845 | dev_err(&udev->dev, |
| 2846 | "device descriptor read/8, error %d\n", |
| 2847 | retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2848 | if (retval >= 0) |
| 2849 | retval = -EMSGSIZE; |
| 2850 | } else { |
| 2851 | retval = 0; |
| 2852 | break; |
| 2853 | } |
| 2854 | } |
| 2855 | if (retval) |
| 2856 | goto fail; |
| 2857 | |
Sarah Sharp | 6b403b0 | 2009-04-27 19:54:10 -0700 | [diff] [blame] | 2858 | if (udev->descriptor.bMaxPacketSize0 == 0xff || |
| 2859 | udev->speed == USB_SPEED_SUPER) |
| 2860 | i = 512; |
| 2861 | else |
| 2862 | i = udev->descriptor.bMaxPacketSize0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2863 | if (le16_to_cpu(udev->ep0.desc.wMaxPacketSize) != i) { |
| 2864 | if (udev->speed != USB_SPEED_FULL || |
| 2865 | !(i == 8 || i == 16 || i == 32 || i == 64)) { |
| 2866 | dev_err(&udev->dev, "ep0 maxpacket = %d\n", i); |
| 2867 | retval = -EMSGSIZE; |
| 2868 | goto fail; |
| 2869 | } |
| 2870 | dev_dbg(&udev->dev, "ep0 maxpacket = %d\n", i); |
| 2871 | udev->ep0.desc.wMaxPacketSize = cpu_to_le16(i); |
Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 2872 | usb_ep0_reinit(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2873 | } |
| 2874 | |
| 2875 | retval = usb_get_device_descriptor(udev, USB_DT_DEVICE_SIZE); |
| 2876 | if (retval < (signed)sizeof(udev->descriptor)) { |
Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 2877 | dev_err(&udev->dev, "device descriptor read/all, error %d\n", |
| 2878 | retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2879 | if (retval >= 0) |
| 2880 | retval = -ENOMSG; |
| 2881 | goto fail; |
| 2882 | } |
| 2883 | |
| 2884 | retval = 0; |
Alek Du | 48f2497 | 2010-06-04 15:47:55 +0800 | [diff] [blame] | 2885 | /* notify HCD that we have a device connected and addressed */ |
| 2886 | if (hcd->driver->update_device) |
| 2887 | hcd->driver->update_device(hcd, udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2888 | fail: |
Alan Stern | 4326ed0 | 2007-07-30 17:08:43 -0400 | [diff] [blame] | 2889 | if (retval) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2890 | hub_port_disable(hub, port1, 0); |
David Vrabel | 4953d14 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 2891 | update_address(udev, devnum); /* for disconnect processing */ |
Alan Stern | 4326ed0 | 2007-07-30 17:08:43 -0400 | [diff] [blame] | 2892 | } |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 2893 | mutex_unlock(&usb_address0_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2894 | return retval; |
| 2895 | } |
| 2896 | |
| 2897 | static void |
| 2898 | check_highspeed (struct usb_hub *hub, struct usb_device *udev, int port1) |
| 2899 | { |
| 2900 | struct usb_qualifier_descriptor *qual; |
| 2901 | int status; |
| 2902 | |
Christoph Lameter | e94b176 | 2006-12-06 20:33:17 -0800 | [diff] [blame] | 2903 | qual = kmalloc (sizeof *qual, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2904 | if (qual == NULL) |
| 2905 | return; |
| 2906 | |
| 2907 | status = usb_get_descriptor (udev, USB_DT_DEVICE_QUALIFIER, 0, |
| 2908 | qual, sizeof *qual); |
| 2909 | if (status == sizeof *qual) { |
| 2910 | dev_info(&udev->dev, "not running at top speed; " |
| 2911 | "connect to a high speed hub\n"); |
| 2912 | /* hub LEDs are probably harder to miss than syslog */ |
| 2913 | if (hub->has_indicators) { |
| 2914 | hub->indicator[port1-1] = INDICATOR_GREEN_BLINK; |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 2915 | schedule_delayed_work (&hub->leds, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2916 | } |
| 2917 | } |
Jesper Juhl | 1bc3c9e | 2005-04-18 17:39:34 -0700 | [diff] [blame] | 2918 | kfree(qual); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2919 | } |
| 2920 | |
| 2921 | static unsigned |
| 2922 | hub_power_remaining (struct usb_hub *hub) |
| 2923 | { |
| 2924 | struct usb_device *hdev = hub->hdev; |
| 2925 | int remaining; |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 2926 | int port1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2927 | |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 2928 | if (!hub->limited_power) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2929 | return 0; |
| 2930 | |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 2931 | remaining = hdev->bus_mA - hub->descriptor->bHubContrCurrent; |
| 2932 | for (port1 = 1; port1 <= hdev->maxchild; ++port1) { |
| 2933 | struct usb_device *udev = hdev->children[port1 - 1]; |
| 2934 | int delta; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2935 | |
| 2936 | if (!udev) |
| 2937 | continue; |
| 2938 | |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 2939 | /* Unconfigured devices may not use more than 100mA, |
| 2940 | * or 8mA for OTG ports */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2941 | if (udev->actconfig) |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 2942 | delta = udev->actconfig->desc.bMaxPower * 2; |
| 2943 | else if (port1 != udev->bus->otg_port || hdev->parent) |
| 2944 | delta = 100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2945 | else |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 2946 | delta = 8; |
| 2947 | if (delta > hub->mA_per_port) |
Wu Fengguang | b9cef6c | 2008-12-15 15:32:01 +0800 | [diff] [blame] | 2948 | dev_warn(&udev->dev, |
| 2949 | "%dmA is over %umA budget for port %d!\n", |
| 2950 | delta, hub->mA_per_port, port1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2951 | remaining -= delta; |
| 2952 | } |
| 2953 | if (remaining < 0) { |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 2954 | dev_warn(hub->intfdev, "%dmA over power budget!\n", |
| 2955 | - remaining); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2956 | remaining = 0; |
| 2957 | } |
| 2958 | return remaining; |
| 2959 | } |
| 2960 | |
| 2961 | /* Handle physical or logical connection change events. |
| 2962 | * This routine is called when: |
| 2963 | * a port connection-change occurs; |
| 2964 | * a port enable-change occurs (often caused by EMI); |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 2965 | * usb_reset_and_verify_device() encounters changed descriptors (as from |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2966 | * a firmware download) |
| 2967 | * caller already locked the hub |
| 2968 | */ |
| 2969 | static void hub_port_connect_change(struct usb_hub *hub, int port1, |
| 2970 | u16 portstatus, u16 portchange) |
| 2971 | { |
| 2972 | struct usb_device *hdev = hub->hdev; |
| 2973 | struct device *hub_dev = hub->intfdev; |
Balaji Rao | 90da096 | 2007-11-22 01:58:14 +0530 | [diff] [blame] | 2974 | struct usb_hcd *hcd = bus_to_hcd(hdev->bus); |
Alan Stern | 24618b0 | 2008-04-28 11:06:28 -0400 | [diff] [blame] | 2975 | unsigned wHubCharacteristics = |
| 2976 | le16_to_cpu(hub->descriptor->wHubCharacteristics); |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 2977 | struct usb_device *udev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2978 | int status, i; |
Alan Stern | 24618b0 | 2008-04-28 11:06:28 -0400 | [diff] [blame] | 2979 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2980 | dev_dbg (hub_dev, |
| 2981 | "port %d, status %04x, change %04x, %s\n", |
| 2982 | port1, portstatus, portchange, portspeed (portstatus)); |
| 2983 | |
| 2984 | if (hub->has_indicators) { |
| 2985 | set_port_led(hub, port1, HUB_LED_AUTO); |
| 2986 | hub->indicator[port1-1] = INDICATOR_AUTO; |
| 2987 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2988 | |
| 2989 | #ifdef CONFIG_USB_OTG |
| 2990 | /* during HNP, don't repeat the debounce */ |
| 2991 | if (hdev->bus->is_b_host) |
Alan Stern | 24618b0 | 2008-04-28 11:06:28 -0400 | [diff] [blame] | 2992 | portchange &= ~(USB_PORT_STAT_C_CONNECTION | |
| 2993 | USB_PORT_STAT_C_ENABLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2994 | #endif |
| 2995 | |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 2996 | /* Try to resuscitate an existing device */ |
| 2997 | udev = hdev->children[port1-1]; |
| 2998 | if ((portstatus & USB_PORT_STAT_CONNECTION) && udev && |
| 2999 | udev->state != USB_STATE_NOTATTACHED) { |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 3000 | usb_lock_device(udev); |
| 3001 | if (portstatus & USB_PORT_STAT_ENABLE) { |
| 3002 | status = 0; /* Nothing to do */ |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 3003 | |
| 3004 | #ifdef CONFIG_USB_SUSPEND |
Alan Stern | 5257d97 | 2008-09-22 14:43:08 -0400 | [diff] [blame] | 3005 | } else if (udev->state == USB_STATE_SUSPENDED && |
| 3006 | udev->persist_enabled) { |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 3007 | /* For a suspended device, treat this as a |
| 3008 | * remote wakeup event. |
| 3009 | */ |
Alan Stern | 0534d46 | 2010-01-08 12:56:30 -0500 | [diff] [blame] | 3010 | status = usb_remote_wakeup(udev); |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 3011 | #endif |
| 3012 | |
| 3013 | } else { |
Alan Stern | 5257d97 | 2008-09-22 14:43:08 -0400 | [diff] [blame] | 3014 | status = -ENODEV; /* Don't resuscitate */ |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 3015 | } |
| 3016 | usb_unlock_device(udev); |
| 3017 | |
| 3018 | if (status == 0) { |
| 3019 | clear_bit(port1, hub->change_bits); |
| 3020 | return; |
| 3021 | } |
| 3022 | } |
| 3023 | |
Alan Stern | 24618b0 | 2008-04-28 11:06:28 -0400 | [diff] [blame] | 3024 | /* Disconnect any existing devices under this port */ |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 3025 | if (udev) |
Alan Stern | 24618b0 | 2008-04-28 11:06:28 -0400 | [diff] [blame] | 3026 | usb_disconnect(&hdev->children[port1-1]); |
| 3027 | clear_bit(port1, hub->change_bits); |
| 3028 | |
Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 3029 | /* We can forget about a "removed" device when there's a physical |
| 3030 | * disconnect or the connect status changes. |
| 3031 | */ |
| 3032 | if (!(portstatus & USB_PORT_STAT_CONNECTION) || |
| 3033 | (portchange & USB_PORT_STAT_C_CONNECTION)) |
| 3034 | clear_bit(port1, hub->removed_bits); |
| 3035 | |
Alan Stern | 5257d97 | 2008-09-22 14:43:08 -0400 | [diff] [blame] | 3036 | if (portchange & (USB_PORT_STAT_C_CONNECTION | |
| 3037 | USB_PORT_STAT_C_ENABLE)) { |
| 3038 | status = hub_port_debounce(hub, port1); |
| 3039 | if (status < 0) { |
| 3040 | if (printk_ratelimit()) |
| 3041 | dev_err(hub_dev, "connect-debounce failed, " |
| 3042 | "port %d disabled\n", port1); |
| 3043 | portstatus &= ~USB_PORT_STAT_CONNECTION; |
| 3044 | } else { |
| 3045 | portstatus = status; |
| 3046 | } |
| 3047 | } |
| 3048 | |
Alan Stern | 253e057 | 2009-10-27 15:20:13 -0400 | [diff] [blame] | 3049 | /* Return now if debouncing failed or nothing is connected or |
| 3050 | * the device was "removed". |
| 3051 | */ |
| 3052 | if (!(portstatus & USB_PORT_STAT_CONNECTION) || |
| 3053 | test_bit(port1, hub->removed_bits)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3054 | |
| 3055 | /* maybe switch power back on (e.g. root hub was reset) */ |
Greg Kroah-Hartman | 74ad9bd | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 3056 | if ((wHubCharacteristics & HUB_CHAR_LPSM) < 2 |
Alan Stern | 749da5f | 2010-03-04 17:05:08 -0500 | [diff] [blame] | 3057 | && !(portstatus & USB_PORT_STAT_POWER)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3058 | set_port_feature(hdev, port1, USB_PORT_FEAT_POWER); |
Alan Stern | 5257d97 | 2008-09-22 14:43:08 -0400 | [diff] [blame] | 3059 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3060 | if (portstatus & USB_PORT_STAT_ENABLE) |
| 3061 | goto done; |
| 3062 | return; |
| 3063 | } |
| 3064 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3065 | for (i = 0; i < SET_CONFIG_TRIES; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3066 | |
| 3067 | /* reallocate for each attempt, since references |
| 3068 | * to the previous one can escape in various ways |
| 3069 | */ |
| 3070 | udev = usb_alloc_dev(hdev, hdev->bus, port1); |
| 3071 | if (!udev) { |
| 3072 | dev_err (hub_dev, |
| 3073 | "couldn't allocate port %d usb_device\n", |
| 3074 | port1); |
| 3075 | goto done; |
| 3076 | } |
| 3077 | |
| 3078 | usb_set_device_state(udev, USB_STATE_POWERED); |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 3079 | udev->bus_mA = hub->mA_per_port; |
Alan Stern | b6956ff | 2006-08-30 15:46:48 -0400 | [diff] [blame] | 3080 | udev->level = hdev->level + 1; |
Inaky Perez-Gonzalez | 8af548d | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 3081 | udev->wusb = hub_is_wusb(hub); |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 3082 | |
Sarah Sharp | e7b7717 | 2009-04-27 19:54:26 -0700 | [diff] [blame] | 3083 | /* |
| 3084 | * USB 3.0 devices are reset automatically before the connect |
| 3085 | * port status change appears, and the root hub port status |
| 3086 | * shows the correct speed. We also get port change |
| 3087 | * notifications for USB 3.0 devices from the USB 3.0 portion of |
| 3088 | * an external USB 3.0 hub, but this isn't handled correctly yet |
| 3089 | * FIXME. |
| 3090 | */ |
| 3091 | |
| 3092 | if (!(hcd->driver->flags & HCD_USB3)) |
| 3093 | udev->speed = USB_SPEED_UNKNOWN; |
| 3094 | else if ((hdev->parent == NULL) && |
Alan Stern | 288ead4 | 2010-03-04 11:32:30 -0500 | [diff] [blame] | 3095 | (portstatus & USB_PORT_STAT_SUPER_SPEED)) |
Sarah Sharp | e7b7717 | 2009-04-27 19:54:26 -0700 | [diff] [blame] | 3096 | udev->speed = USB_SPEED_SUPER; |
| 3097 | else |
| 3098 | udev->speed = USB_SPEED_UNKNOWN; |
| 3099 | |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 3100 | /* |
Andiry Xu | c8d4af8 | 2010-10-14 07:22:51 -0700 | [diff] [blame] | 3101 | * Set the address. |
| 3102 | * Note xHCI needs to issue an address device command later |
| 3103 | * in the hub_port_init sequence for SS/HS/FS/LS devices, |
| 3104 | * and xHC will assign an address to the device. But use |
| 3105 | * kernel assigned address here, to avoid any address conflict |
| 3106 | * issue. |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 3107 | */ |
Andiry Xu | c8d4af8 | 2010-10-14 07:22:51 -0700 | [diff] [blame] | 3108 | choose_address(udev); |
| 3109 | if (udev->devnum <= 0) { |
| 3110 | status = -ENOTCONN; /* Don't retry */ |
| 3111 | goto loop; |
Sarah Sharp | c651527 | 2009-04-27 19:57:26 -0700 | [diff] [blame] | 3112 | } |
| 3113 | |
Sarah Sharp | e7b7717 | 2009-04-27 19:54:26 -0700 | [diff] [blame] | 3114 | /* reset (non-USB 3.0 devices) and get descriptor */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3115 | status = hub_port_init(hub, udev, port1, i); |
| 3116 | if (status < 0) |
| 3117 | goto loop; |
| 3118 | |
Phil Dibowitz | 93362a8 | 2010-07-22 00:05:01 +0200 | [diff] [blame] | 3119 | usb_detect_quirks(udev); |
| 3120 | if (udev->quirks & USB_QUIRK_DELAY_INIT) |
| 3121 | msleep(1000); |
| 3122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3123 | /* consecutive bus-powered hubs aren't reliable; they can |
| 3124 | * violate the voltage drop budget. if the new child has |
| 3125 | * a "powered" LED, users should notice we didn't enable it |
| 3126 | * (without reading syslog), even without per-port LEDs |
| 3127 | * on the parent. |
| 3128 | */ |
| 3129 | if (udev->descriptor.bDeviceClass == USB_CLASS_HUB |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 3130 | && udev->bus_mA <= 100) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3131 | u16 devstat; |
| 3132 | |
| 3133 | status = usb_get_status(udev, USB_RECIP_DEVICE, 0, |
| 3134 | &devstat); |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 3135 | if (status < 2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3136 | dev_dbg(&udev->dev, "get status %d ?\n", status); |
| 3137 | goto loop_disable; |
| 3138 | } |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 3139 | le16_to_cpus(&devstat); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3140 | if ((devstat & (1 << USB_DEVICE_SELF_POWERED)) == 0) { |
| 3141 | dev_err(&udev->dev, |
| 3142 | "can't connect bus-powered hub " |
| 3143 | "to this port\n"); |
| 3144 | if (hub->has_indicators) { |
| 3145 | hub->indicator[port1-1] = |
| 3146 | INDICATOR_AMBER_BLINK; |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 3147 | schedule_delayed_work (&hub->leds, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3148 | } |
| 3149 | status = -ENOTCONN; /* Don't retry */ |
| 3150 | goto loop_disable; |
| 3151 | } |
| 3152 | } |
| 3153 | |
| 3154 | /* check for devices running slower than they could */ |
| 3155 | if (le16_to_cpu(udev->descriptor.bcdUSB) >= 0x0200 |
| 3156 | && udev->speed == USB_SPEED_FULL |
| 3157 | && highspeed_hubs != 0) |
| 3158 | check_highspeed (hub, udev, port1); |
| 3159 | |
| 3160 | /* Store the parent's children[] pointer. At this point |
| 3161 | * udev becomes globally accessible, although presumably |
| 3162 | * no one will look at it until hdev is unlocked. |
| 3163 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3164 | status = 0; |
| 3165 | |
| 3166 | /* We mustn't add new devices if the parent hub has |
| 3167 | * been disconnected; we would race with the |
| 3168 | * recursively_mark_NOTATTACHED() routine. |
| 3169 | */ |
| 3170 | spin_lock_irq(&device_state_lock); |
| 3171 | if (hdev->state == USB_STATE_NOTATTACHED) |
| 3172 | status = -ENOTCONN; |
| 3173 | else |
| 3174 | hdev->children[port1-1] = udev; |
| 3175 | spin_unlock_irq(&device_state_lock); |
| 3176 | |
| 3177 | /* Run it through the hoops (find a driver, etc) */ |
| 3178 | if (!status) { |
| 3179 | status = usb_new_device(udev); |
| 3180 | if (status) { |
| 3181 | spin_lock_irq(&device_state_lock); |
| 3182 | hdev->children[port1-1] = NULL; |
| 3183 | spin_unlock_irq(&device_state_lock); |
| 3184 | } |
| 3185 | } |
| 3186 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3187 | if (status) |
| 3188 | goto loop_disable; |
| 3189 | |
| 3190 | status = hub_power_remaining(hub); |
| 3191 | if (status) |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 3192 | dev_dbg(hub_dev, "%dmA power budget left\n", status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3193 | |
| 3194 | return; |
| 3195 | |
| 3196 | loop_disable: |
| 3197 | hub_port_disable(hub, port1, 1); |
| 3198 | loop: |
Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 3199 | usb_ep0_reinit(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3200 | release_address(udev); |
Herbert Xu | f7410ce | 2010-01-10 20:15:03 +1100 | [diff] [blame] | 3201 | hub_free_dev(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3202 | usb_put_dev(udev); |
Vikram Pandita | ffcdc18 | 2007-05-25 21:31:07 -0700 | [diff] [blame] | 3203 | if ((status == -ENOTCONN) || (status == -ENOTSUPP)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3204 | break; |
| 3205 | } |
Alan Stern | 3a31155 | 2008-05-20 16:58:29 -0400 | [diff] [blame] | 3206 | if (hub->hdev->parent || |
| 3207 | !hcd->driver->port_handed_over || |
| 3208 | !(hcd->driver->port_handed_over)(hcd, port1)) |
| 3209 | dev_err(hub_dev, "unable to enumerate USB device on port %d\n", |
| 3210 | port1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3211 | |
| 3212 | done: |
| 3213 | hub_port_disable(hub, port1, 1); |
Balaji Rao | 90da096 | 2007-11-22 01:58:14 +0530 | [diff] [blame] | 3214 | if (hcd->driver->relinquish_port && !hub->hdev->parent) |
| 3215 | hcd->driver->relinquish_port(hcd, port1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3216 | } |
| 3217 | |
| 3218 | static void hub_events(void) |
| 3219 | { |
| 3220 | struct list_head *tmp; |
| 3221 | struct usb_device *hdev; |
| 3222 | struct usb_interface *intf; |
| 3223 | struct usb_hub *hub; |
| 3224 | struct device *hub_dev; |
| 3225 | u16 hubstatus; |
| 3226 | u16 hubchange; |
| 3227 | u16 portstatus; |
| 3228 | u16 portchange; |
| 3229 | int i, ret; |
| 3230 | int connect_change; |
| 3231 | |
| 3232 | /* |
| 3233 | * We restart the list every time to avoid a deadlock with |
| 3234 | * deleting hubs downstream from this one. This should be |
| 3235 | * safe since we delete the hub from the event list. |
| 3236 | * Not the most efficient, but avoids deadlocks. |
| 3237 | */ |
| 3238 | while (1) { |
| 3239 | |
| 3240 | /* Grab the first entry at the beginning of the list */ |
| 3241 | spin_lock_irq(&hub_event_lock); |
| 3242 | if (list_empty(&hub_event_list)) { |
| 3243 | spin_unlock_irq(&hub_event_lock); |
| 3244 | break; |
| 3245 | } |
| 3246 | |
| 3247 | tmp = hub_event_list.next; |
| 3248 | list_del_init(tmp); |
| 3249 | |
| 3250 | hub = list_entry(tmp, struct usb_hub, event_list); |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 3251 | kref_get(&hub->kref); |
| 3252 | spin_unlock_irq(&hub_event_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3253 | |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 3254 | hdev = hub->hdev; |
| 3255 | hub_dev = hub->intfdev; |
| 3256 | intf = to_usb_interface(hub_dev); |
Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 3257 | dev_dbg(hub_dev, "state %d ports %d chg %04x evt %04x\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3258 | hdev->state, hub->descriptor |
| 3259 | ? hub->descriptor->bNbrPorts |
| 3260 | : 0, |
| 3261 | /* NOTE: expects max 15 ports... */ |
| 3262 | (u16) hub->change_bits[0], |
Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 3263 | (u16) hub->event_bits[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3264 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3265 | /* Lock the device, then check to see if we were |
| 3266 | * disconnected while waiting for the lock to succeed. */ |
Alan Stern | 06b84e8 | 2007-05-04 11:54:50 -0400 | [diff] [blame] | 3267 | usb_lock_device(hdev); |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 3268 | if (unlikely(hub->disconnected)) |
Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 3269 | goto loop_disconnected; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3270 | |
| 3271 | /* If the hub has died, clean up after it */ |
| 3272 | if (hdev->state == USB_STATE_NOTATTACHED) { |
Alan Stern | 7de18d8 | 2006-06-01 13:37:24 -0400 | [diff] [blame] | 3273 | hub->error = -ENODEV; |
Alan Stern | 4330354 | 2008-04-28 11:07:31 -0400 | [diff] [blame] | 3274 | hub_quiesce(hub, HUB_DISCONNECT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3275 | goto loop; |
| 3276 | } |
| 3277 | |
Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 3278 | /* Autoresume */ |
| 3279 | ret = usb_autopm_get_interface(intf); |
| 3280 | if (ret) { |
| 3281 | dev_dbg(hub_dev, "Can't autoresume: %d\n", ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3282 | goto loop; |
Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 3283 | } |
| 3284 | |
| 3285 | /* If this is an inactive hub, do nothing */ |
| 3286 | if (hub->quiescing) |
| 3287 | goto loop_autopm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3288 | |
| 3289 | if (hub->error) { |
| 3290 | dev_dbg (hub_dev, "resetting for error %d\n", |
| 3291 | hub->error); |
| 3292 | |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 3293 | ret = usb_reset_device(hdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3294 | if (ret) { |
| 3295 | dev_dbg (hub_dev, |
| 3296 | "error resetting hub: %d\n", ret); |
Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 3297 | goto loop_autopm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3298 | } |
| 3299 | |
| 3300 | hub->nerrors = 0; |
| 3301 | hub->error = 0; |
| 3302 | } |
| 3303 | |
| 3304 | /* deal with port status changes */ |
| 3305 | for (i = 1; i <= hub->descriptor->bNbrPorts; i++) { |
| 3306 | if (test_bit(i, hub->busy_bits)) |
| 3307 | continue; |
| 3308 | connect_change = test_bit(i, hub->change_bits); |
| 3309 | if (!test_and_clear_bit(i, hub->event_bits) && |
Alan Stern | 6ee0b27 | 2008-04-28 11:06:42 -0400 | [diff] [blame] | 3310 | !connect_change) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3311 | continue; |
| 3312 | |
| 3313 | ret = hub_port_status(hub, i, |
| 3314 | &portstatus, &portchange); |
| 3315 | if (ret < 0) |
| 3316 | continue; |
| 3317 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3318 | if (portchange & USB_PORT_STAT_C_CONNECTION) { |
| 3319 | clear_port_feature(hdev, i, |
| 3320 | USB_PORT_FEAT_C_CONNECTION); |
| 3321 | connect_change = 1; |
| 3322 | } |
| 3323 | |
| 3324 | if (portchange & USB_PORT_STAT_C_ENABLE) { |
| 3325 | if (!connect_change) |
| 3326 | dev_dbg (hub_dev, |
| 3327 | "port %d enable change, " |
| 3328 | "status %08x\n", |
| 3329 | i, portstatus); |
| 3330 | clear_port_feature(hdev, i, |
| 3331 | USB_PORT_FEAT_C_ENABLE); |
| 3332 | |
| 3333 | /* |
| 3334 | * EM interference sometimes causes badly |
| 3335 | * shielded USB devices to be shutdown by |
| 3336 | * the hub, this hack enables them again. |
| 3337 | * Works at least with mouse driver. |
| 3338 | */ |
| 3339 | if (!(portstatus & USB_PORT_STAT_ENABLE) |
| 3340 | && !connect_change |
| 3341 | && hdev->children[i-1]) { |
| 3342 | dev_err (hub_dev, |
| 3343 | "port %i " |
| 3344 | "disabled by hub (EMI?), " |
| 3345 | "re-enabling...\n", |
| 3346 | i); |
| 3347 | connect_change = 1; |
| 3348 | } |
| 3349 | } |
| 3350 | |
| 3351 | if (portchange & USB_PORT_STAT_C_SUSPEND) { |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 3352 | struct usb_device *udev; |
| 3353 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3354 | clear_port_feature(hdev, i, |
| 3355 | USB_PORT_FEAT_C_SUSPEND); |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 3356 | udev = hdev->children[i-1]; |
| 3357 | if (udev) { |
Alan Stern | 49d0f07 | 2010-01-08 11:18:38 -0500 | [diff] [blame] | 3358 | /* TRSMRCY = 10 msec */ |
| 3359 | msleep(10); |
| 3360 | |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 3361 | usb_lock_device(udev); |
Alan Stern | 0534d46 | 2010-01-08 12:56:30 -0500 | [diff] [blame] | 3362 | ret = usb_remote_wakeup(hdev-> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3363 | children[i-1]); |
Alan Stern | 8808f00 | 2008-04-28 11:06:55 -0400 | [diff] [blame] | 3364 | usb_unlock_device(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3365 | if (ret < 0) |
| 3366 | connect_change = 1; |
| 3367 | } else { |
| 3368 | ret = -ENODEV; |
| 3369 | hub_port_disable(hub, i, 1); |
| 3370 | } |
| 3371 | dev_dbg (hub_dev, |
| 3372 | "resume on port %d, status %d\n", |
| 3373 | i, ret); |
| 3374 | } |
| 3375 | |
| 3376 | if (portchange & USB_PORT_STAT_C_OVERCURRENT) { |
| 3377 | dev_err (hub_dev, |
| 3378 | "over-current change on port %d\n", |
| 3379 | i); |
| 3380 | clear_port_feature(hdev, i, |
| 3381 | USB_PORT_FEAT_C_OVER_CURRENT); |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 3382 | hub_power_on(hub, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3383 | } |
| 3384 | |
| 3385 | if (portchange & USB_PORT_STAT_C_RESET) { |
| 3386 | dev_dbg (hub_dev, |
| 3387 | "reset change on port %d\n", |
| 3388 | i); |
| 3389 | clear_port_feature(hdev, i, |
| 3390 | USB_PORT_FEAT_C_RESET); |
| 3391 | } |
| 3392 | |
| 3393 | if (connect_change) |
| 3394 | hub_port_connect_change(hub, i, |
| 3395 | portstatus, portchange); |
| 3396 | } /* end for i */ |
| 3397 | |
| 3398 | /* deal with hub status changes */ |
| 3399 | if (test_and_clear_bit(0, hub->event_bits) == 0) |
| 3400 | ; /* do nothing */ |
| 3401 | else if (hub_hub_status(hub, &hubstatus, &hubchange) < 0) |
| 3402 | dev_err (hub_dev, "get_hub_status failed\n"); |
| 3403 | else { |
| 3404 | if (hubchange & HUB_CHANGE_LOCAL_POWER) { |
| 3405 | dev_dbg (hub_dev, "power change\n"); |
| 3406 | clear_hub_feature(hdev, C_HUB_LOCAL_POWER); |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 3407 | if (hubstatus & HUB_STATUS_LOCAL_POWER) |
| 3408 | /* FIXME: Is this always true? */ |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 3409 | hub->limited_power = 1; |
jidong xiao | 403fae7 | 2007-09-14 00:08:51 +0800 | [diff] [blame] | 3410 | else |
| 3411 | hub->limited_power = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3412 | } |
| 3413 | if (hubchange & HUB_CHANGE_OVERCURRENT) { |
| 3414 | dev_dbg (hub_dev, "overcurrent change\n"); |
| 3415 | msleep(500); /* Cool down */ |
| 3416 | clear_hub_feature(hdev, C_HUB_OVER_CURRENT); |
Alan Stern | 8520f38 | 2008-09-22 14:44:26 -0400 | [diff] [blame] | 3417 | hub_power_on(hub, true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3418 | } |
| 3419 | } |
| 3420 | |
Alan Stern | 8e4ceb3 | 2009-12-07 13:01:37 -0500 | [diff] [blame] | 3421 | loop_autopm: |
| 3422 | /* Balance the usb_autopm_get_interface() above */ |
| 3423 | usb_autopm_put_interface_no_suspend(intf); |
| 3424 | loop: |
| 3425 | /* Balance the usb_autopm_get_interface_no_resume() in |
| 3426 | * kick_khubd() and allow autosuspend. |
| 3427 | */ |
| 3428 | usb_autopm_put_interface(intf); |
Alan Stern | 9bbdf1e | 2010-01-08 12:57:28 -0500 | [diff] [blame] | 3429 | loop_disconnected: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3430 | usb_unlock_device(hdev); |
Alan Stern | e805485 | 2007-05-04 11:55:11 -0400 | [diff] [blame] | 3431 | kref_put(&hub->kref, hub_release); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3432 | |
| 3433 | } /* end while (1) */ |
| 3434 | } |
| 3435 | |
| 3436 | static int hub_thread(void *__unused) |
| 3437 | { |
Alan Stern | 3bb1af5 | 2008-03-03 15:15:36 -0500 | [diff] [blame] | 3438 | /* khubd needs to be freezable to avoid intefering with USB-PERSIST |
| 3439 | * port handover. Otherwise it might see that a full-speed device |
| 3440 | * was gone before the EHCI controller had handed its port over to |
| 3441 | * the companion full-speed controller. |
| 3442 | */ |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 3443 | set_freezable(); |
Alan Stern | 3bb1af5 | 2008-03-03 15:15:36 -0500 | [diff] [blame] | 3444 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3445 | do { |
| 3446 | hub_events(); |
Rafael J. Wysocki | e42837b | 2007-10-18 03:04:45 -0700 | [diff] [blame] | 3447 | wait_event_freezable(khubd_wait, |
akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 3448 | !list_empty(&hub_event_list) || |
| 3449 | kthread_should_stop()); |
akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 3450 | } while (!kthread_should_stop() || !list_empty(&hub_event_list)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3451 | |
akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 3452 | pr_debug("%s: khubd exiting\n", usbcore_name); |
| 3453 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3454 | } |
| 3455 | |
Németh Márton | 1e927d9 | 2010-01-10 15:34:53 +0100 | [diff] [blame] | 3456 | static const struct usb_device_id hub_id_table[] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3457 | { .match_flags = USB_DEVICE_ID_MATCH_DEV_CLASS, |
| 3458 | .bDeviceClass = USB_CLASS_HUB}, |
| 3459 | { .match_flags = USB_DEVICE_ID_MATCH_INT_CLASS, |
| 3460 | .bInterfaceClass = USB_CLASS_HUB}, |
| 3461 | { } /* Terminating entry */ |
| 3462 | }; |
| 3463 | |
| 3464 | MODULE_DEVICE_TABLE (usb, hub_id_table); |
| 3465 | |
| 3466 | static struct usb_driver hub_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3467 | .name = "hub", |
| 3468 | .probe = hub_probe, |
| 3469 | .disconnect = hub_disconnect, |
| 3470 | .suspend = hub_suspend, |
| 3471 | .resume = hub_resume, |
Alan Stern | f07600c | 2007-05-30 15:38:16 -0400 | [diff] [blame] | 3472 | .reset_resume = hub_reset_resume, |
Alan Stern | 7de18d8 | 2006-06-01 13:37:24 -0400 | [diff] [blame] | 3473 | .pre_reset = hub_pre_reset, |
| 3474 | .post_reset = hub_post_reset, |
Andi Kleen | c532b29 | 2010-06-01 23:04:41 +0200 | [diff] [blame] | 3475 | .unlocked_ioctl = hub_ioctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3476 | .id_table = hub_id_table, |
Alan Stern | 40f122f | 2006-11-09 14:44:33 -0500 | [diff] [blame] | 3477 | .supports_autosuspend = 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3478 | }; |
| 3479 | |
| 3480 | int usb_hub_init(void) |
| 3481 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3482 | if (usb_register(&hub_driver) < 0) { |
| 3483 | printk(KERN_ERR "%s: can't register hub driver\n", |
| 3484 | usbcore_name); |
| 3485 | return -1; |
| 3486 | } |
| 3487 | |
akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 3488 | khubd_task = kthread_run(hub_thread, NULL, "khubd"); |
| 3489 | if (!IS_ERR(khubd_task)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3490 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3491 | |
| 3492 | /* Fall through if kernel_thread failed */ |
| 3493 | usb_deregister(&hub_driver); |
| 3494 | printk(KERN_ERR "%s: can't start khubd\n", usbcore_name); |
| 3495 | |
| 3496 | return -1; |
| 3497 | } |
| 3498 | |
| 3499 | void usb_hub_cleanup(void) |
| 3500 | { |
akpm@osdl.org | 9c8d617 | 2005-06-20 14:29:58 -0700 | [diff] [blame] | 3501 | kthread_stop(khubd_task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3502 | |
| 3503 | /* |
| 3504 | * Hub resources are freed for us by usb_deregister. It calls |
| 3505 | * usb_driver_purge on every device which in turn calls that |
| 3506 | * devices disconnect function if it is using this driver. |
| 3507 | * The hub_disconnect function takes care of releasing the |
| 3508 | * individual hub resources. -greg |
| 3509 | */ |
| 3510 | usb_deregister(&hub_driver); |
| 3511 | } /* usb_hub_cleanup() */ |
| 3512 | |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 3513 | static int descriptors_changed(struct usb_device *udev, |
| 3514 | struct usb_device_descriptor *old_device_descriptor) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3515 | { |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 3516 | int changed = 0; |
| 3517 | unsigned index; |
| 3518 | unsigned serial_len = 0; |
| 3519 | unsigned len; |
| 3520 | unsigned old_length; |
| 3521 | int length; |
| 3522 | char *buf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3523 | |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 3524 | if (memcmp(&udev->descriptor, old_device_descriptor, |
| 3525 | sizeof(*old_device_descriptor)) != 0) |
| 3526 | return 1; |
| 3527 | |
| 3528 | /* Since the idVendor, idProduct, and bcdDevice values in the |
| 3529 | * device descriptor haven't changed, we will assume the |
| 3530 | * Manufacturer and Product strings haven't changed either. |
| 3531 | * But the SerialNumber string could be different (e.g., a |
| 3532 | * different flash card of the same brand). |
| 3533 | */ |
| 3534 | if (udev->serial) |
| 3535 | serial_len = strlen(udev->serial) + 1; |
| 3536 | |
| 3537 | len = serial_len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3538 | for (index = 0; index < udev->descriptor.bNumConfigurations; index++) { |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 3539 | old_length = le16_to_cpu(udev->config[index].desc.wTotalLength); |
| 3540 | len = max(len, old_length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3541 | } |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 3542 | |
Oliver Neukum | 0cc1a51 | 2008-01-10 10:31:48 +0100 | [diff] [blame] | 3543 | buf = kmalloc(len, GFP_NOIO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3544 | if (buf == NULL) { |
| 3545 | dev_err(&udev->dev, "no mem to re-read configs after reset\n"); |
| 3546 | /* assume the worst */ |
| 3547 | return 1; |
| 3548 | } |
| 3549 | for (index = 0; index < udev->descriptor.bNumConfigurations; index++) { |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 3550 | old_length = le16_to_cpu(udev->config[index].desc.wTotalLength); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3551 | length = usb_get_descriptor(udev, USB_DT_CONFIG, index, buf, |
| 3552 | old_length); |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 3553 | if (length != old_length) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3554 | dev_dbg(&udev->dev, "config index %d, error %d\n", |
| 3555 | index, length); |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 3556 | changed = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3557 | break; |
| 3558 | } |
| 3559 | if (memcmp (buf, udev->rawdescriptors[index], old_length) |
| 3560 | != 0) { |
| 3561 | dev_dbg(&udev->dev, "config index %d changed (#%d)\n", |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 3562 | index, |
| 3563 | ((struct usb_config_descriptor *) buf)-> |
| 3564 | bConfigurationValue); |
| 3565 | changed = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3566 | break; |
| 3567 | } |
| 3568 | } |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 3569 | |
| 3570 | if (!changed && serial_len) { |
| 3571 | length = usb_string(udev, udev->descriptor.iSerialNumber, |
| 3572 | buf, serial_len); |
| 3573 | if (length + 1 != serial_len) { |
| 3574 | dev_dbg(&udev->dev, "serial string error %d\n", |
| 3575 | length); |
| 3576 | changed = 1; |
| 3577 | } else if (memcmp(buf, udev->serial, length) != 0) { |
| 3578 | dev_dbg(&udev->dev, "serial string changed\n"); |
| 3579 | changed = 1; |
| 3580 | } |
| 3581 | } |
| 3582 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3583 | kfree(buf); |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 3584 | return changed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3585 | } |
| 3586 | |
| 3587 | /** |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 3588 | * 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] | 3589 | * @udev: device to reset (not in SUSPENDED or NOTATTACHED state) |
| 3590 | * |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3591 | * WARNING - don't use this routine to reset a composite device |
| 3592 | * (one with multiple interfaces owned by separate drivers)! |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 3593 | * Use usb_reset_device() instead. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3594 | * |
| 3595 | * Do a port reset, reassign the device's address, and establish its |
| 3596 | * former operating configuration. If the reset fails, or the device's |
| 3597 | * descriptors change from their values before the reset, or the original |
| 3598 | * configuration and altsettings cannot be restored, a flag will be set |
| 3599 | * telling khubd to pretend the device has been disconnected and then |
| 3600 | * re-connected. All drivers will be unbound, and the device will be |
| 3601 | * re-enumerated and probed all over again. |
| 3602 | * |
| 3603 | * Returns 0 if the reset succeeded, -ENODEV if the device has been |
| 3604 | * flagged for logical disconnection, or some other negative error code |
| 3605 | * if the reset wasn't even attempted. |
| 3606 | * |
| 3607 | * The caller must own the device lock. For example, it's safe to use |
| 3608 | * this from a driver probe() routine after downloading new firmware. |
| 3609 | * For calls that might not occur during probe(), drivers should lock |
| 3610 | * the device using usb_lock_device_for_reset(). |
Alan Stern | 6bc6cff | 2007-05-04 11:53:03 -0400 | [diff] [blame] | 3611 | * |
| 3612 | * Locking exception: This routine may also be called from within an |
| 3613 | * autoresume handler. Such usage won't conflict with other tasks |
| 3614 | * holding the device lock because these tasks should always call |
| 3615 | * usb_autopm_resume_device(), thereby preventing any unwanted autoresume. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3616 | */ |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 3617 | static int usb_reset_and_verify_device(struct usb_device *udev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3618 | { |
| 3619 | struct usb_device *parent_hdev = udev->parent; |
| 3620 | struct usb_hub *parent_hub; |
Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 3621 | struct usb_hcd *hcd = bus_to_hcd(udev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3622 | struct usb_device_descriptor descriptor = udev->descriptor; |
Alan Stern | 12c3da3 | 2005-11-23 12:09:52 -0500 | [diff] [blame] | 3623 | int i, ret = 0; |
| 3624 | int port1 = udev->portnum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3625 | |
| 3626 | if (udev->state == USB_STATE_NOTATTACHED || |
| 3627 | udev->state == USB_STATE_SUSPENDED) { |
| 3628 | dev_dbg(&udev->dev, "device reset not allowed in state %d\n", |
| 3629 | udev->state); |
| 3630 | return -EINVAL; |
| 3631 | } |
| 3632 | |
| 3633 | if (!parent_hdev) { |
Wolfram Sang | 4bec991 | 2010-08-29 18:17:14 +0200 | [diff] [blame] | 3634 | /* this requires hcd-specific logic; see ohci_restart() */ |
Harvey Harrison | 441b62c | 2008-03-03 16:08:34 -0800 | [diff] [blame] | 3635 | dev_dbg(&udev->dev, "%s for root hub!\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3636 | return -EISDIR; |
| 3637 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3638 | parent_hub = hdev_to_hub(parent_hdev); |
| 3639 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3640 | set_bit(port1, parent_hub->busy_bits); |
| 3641 | for (i = 0; i < SET_CONFIG_TRIES; ++i) { |
| 3642 | |
| 3643 | /* ep0 maxpacket size may change; let the HCD know about it. |
| 3644 | * Other endpoints will be handled by re-enumeration. */ |
Inaky Perez-Gonzalez | fc721f5 | 2008-04-08 13:24:46 -0700 | [diff] [blame] | 3645 | usb_ep0_reinit(udev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3646 | ret = hub_port_init(parent_hub, udev, port1, i); |
Alan Stern | dd4dd19 | 2007-05-04 11:55:54 -0400 | [diff] [blame] | 3647 | if (ret >= 0 || ret == -ENOTCONN || ret == -ENODEV) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3648 | break; |
| 3649 | } |
| 3650 | clear_bit(port1, parent_hub->busy_bits); |
Alan Stern | d5cbad4 | 2006-08-11 16:52:39 -0400 | [diff] [blame] | 3651 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3652 | if (ret < 0) |
| 3653 | goto re_enumerate; |
| 3654 | |
| 3655 | /* Device might have changed firmware (DFU or similar) */ |
Alan Stern | eb764c4 | 2008-03-03 15:16:04 -0500 | [diff] [blame] | 3656 | if (descriptors_changed(udev, &descriptor)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3657 | dev_info(&udev->dev, "device firmware changed\n"); |
| 3658 | udev->descriptor = descriptor; /* for disconnect() calls */ |
| 3659 | goto re_enumerate; |
| 3660 | } |
Alan Stern | 4fe0387 | 2009-02-26 10:21:02 -0500 | [diff] [blame] | 3661 | |
| 3662 | /* Restore the device's previous configuration */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3663 | if (!udev->actconfig) |
| 3664 | goto done; |
Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 3665 | |
| 3666 | mutex_lock(&hcd->bandwidth_mutex); |
| 3667 | ret = usb_hcd_alloc_bandwidth(udev, udev->actconfig, NULL, NULL); |
| 3668 | if (ret < 0) { |
| 3669 | dev_warn(&udev->dev, |
| 3670 | "Busted HC? Not enough HCD resources for " |
| 3671 | "old configuration.\n"); |
| 3672 | mutex_unlock(&hcd->bandwidth_mutex); |
| 3673 | goto re_enumerate; |
| 3674 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3675 | ret = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), |
| 3676 | USB_REQ_SET_CONFIGURATION, 0, |
| 3677 | udev->actconfig->desc.bConfigurationValue, 0, |
| 3678 | NULL, 0, USB_CTRL_SET_TIMEOUT); |
| 3679 | if (ret < 0) { |
| 3680 | dev_err(&udev->dev, |
| 3681 | "can't restore configuration #%d (error=%d)\n", |
| 3682 | udev->actconfig->desc.bConfigurationValue, ret); |
Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 3683 | mutex_unlock(&hcd->bandwidth_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3684 | goto re_enumerate; |
| 3685 | } |
Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 3686 | mutex_unlock(&hcd->bandwidth_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3687 | usb_set_device_state(udev, USB_STATE_CONFIGURED); |
| 3688 | |
Alan Stern | 4fe0387 | 2009-02-26 10:21:02 -0500 | [diff] [blame] | 3689 | /* Put interfaces back into the same altsettings as before. |
| 3690 | * Don't bother to send the Set-Interface request for interfaces |
| 3691 | * that were already in altsetting 0; besides being unnecessary, |
| 3692 | * many devices can't handle it. Instead just reset the host-side |
| 3693 | * endpoint state. |
| 3694 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3695 | for (i = 0; i < udev->actconfig->desc.bNumInterfaces; i++) { |
Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 3696 | struct usb_host_config *config = udev->actconfig; |
| 3697 | struct usb_interface *intf = config->interface[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3698 | struct usb_interface_descriptor *desc; |
| 3699 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3700 | desc = &intf->cur_altsetting->desc; |
Alan Stern | 4fe0387 | 2009-02-26 10:21:02 -0500 | [diff] [blame] | 3701 | if (desc->bAlternateSetting == 0) { |
| 3702 | usb_disable_interface(udev, intf, true); |
| 3703 | usb_enable_interface(udev, intf, true); |
| 3704 | ret = 0; |
| 3705 | } else { |
Sarah Sharp | 04a723e | 2010-01-06 10:16:51 -0800 | [diff] [blame] | 3706 | /* Let the bandwidth allocation function know that this |
| 3707 | * device has been reset, and it will have to use |
| 3708 | * alternate setting 0 as the current alternate setting. |
Sarah Sharp | 3f0479e | 2009-12-03 09:44:36 -0800 | [diff] [blame] | 3709 | */ |
Sarah Sharp | 04a723e | 2010-01-06 10:16:51 -0800 | [diff] [blame] | 3710 | intf->resetting_device = 1; |
Alan Stern | 4fe0387 | 2009-02-26 10:21:02 -0500 | [diff] [blame] | 3711 | ret = usb_set_interface(udev, desc->bInterfaceNumber, |
| 3712 | desc->bAlternateSetting); |
Sarah Sharp | 04a723e | 2010-01-06 10:16:51 -0800 | [diff] [blame] | 3713 | intf->resetting_device = 0; |
Alan Stern | 4fe0387 | 2009-02-26 10:21:02 -0500 | [diff] [blame] | 3714 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3715 | if (ret < 0) { |
| 3716 | dev_err(&udev->dev, "failed to restore interface %d " |
| 3717 | "altsetting %d (error=%d)\n", |
| 3718 | desc->bInterfaceNumber, |
| 3719 | desc->bAlternateSetting, |
| 3720 | ret); |
| 3721 | goto re_enumerate; |
| 3722 | } |
| 3723 | } |
| 3724 | |
| 3725 | done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3726 | return 0; |
| 3727 | |
| 3728 | re_enumerate: |
| 3729 | hub_port_logical_disconnect(parent_hub, port1); |
| 3730 | return -ENODEV; |
| 3731 | } |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3732 | |
| 3733 | /** |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 3734 | * usb_reset_device - warn interface drivers and perform a USB port reset |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3735 | * @udev: device to reset (not in SUSPENDED or NOTATTACHED state) |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3736 | * |
| 3737 | * Warns all drivers bound to registered interfaces (using their pre_reset |
| 3738 | * method), performs the port reset, and then lets the drivers know that |
| 3739 | * the reset is over (using their post_reset method). |
| 3740 | * |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 3741 | * Return value is the same as for usb_reset_and_verify_device(). |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3742 | * |
| 3743 | * The caller must own the device lock. For example, it's safe to use |
| 3744 | * this from a driver probe() routine after downloading new firmware. |
| 3745 | * For calls that might not occur during probe(), drivers should lock |
| 3746 | * the device using usb_lock_device_for_reset(). |
Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 3747 | * |
| 3748 | * If an interface is currently being probed or disconnected, we assume |
| 3749 | * its driver knows how to handle resets. For all other interfaces, |
| 3750 | * if the driver doesn't have pre_reset and post_reset methods then |
| 3751 | * we attempt to unbind it and rebind afterward. |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3752 | */ |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 3753 | int usb_reset_device(struct usb_device *udev) |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3754 | { |
| 3755 | int ret; |
Alan Stern | 852c4b4 | 2007-12-03 15:44:29 -0500 | [diff] [blame] | 3756 | int i; |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3757 | struct usb_host_config *config = udev->actconfig; |
| 3758 | |
| 3759 | if (udev->state == USB_STATE_NOTATTACHED || |
| 3760 | udev->state == USB_STATE_SUSPENDED) { |
| 3761 | dev_dbg(&udev->dev, "device reset not allowed in state %d\n", |
| 3762 | udev->state); |
| 3763 | return -EINVAL; |
| 3764 | } |
| 3765 | |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 3766 | /* Prevent autosuspend during the reset */ |
Alan Stern | 94fcda1 | 2006-11-20 11:38:46 -0500 | [diff] [blame] | 3767 | usb_autoresume_device(udev); |
Alan Stern | 645daaa | 2006-08-30 15:47:02 -0400 | [diff] [blame] | 3768 | |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3769 | if (config) { |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3770 | for (i = 0; i < config->desc.bNumInterfaces; ++i) { |
Alan Stern | 852c4b4 | 2007-12-03 15:44:29 -0500 | [diff] [blame] | 3771 | struct usb_interface *cintf = config->interface[i]; |
| 3772 | struct usb_driver *drv; |
Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 3773 | int unbind = 0; |
Alan Stern | 852c4b4 | 2007-12-03 15:44:29 -0500 | [diff] [blame] | 3774 | |
| 3775 | if (cintf->dev.driver) { |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3776 | drv = to_usb_driver(cintf->dev.driver); |
Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 3777 | if (drv->pre_reset && drv->post_reset) |
| 3778 | unbind = (drv->pre_reset)(cintf); |
| 3779 | else if (cintf->condition == |
| 3780 | USB_INTERFACE_BOUND) |
| 3781 | unbind = 1; |
| 3782 | if (unbind) |
| 3783 | usb_forced_unbind_intf(cintf); |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3784 | } |
| 3785 | } |
| 3786 | } |
| 3787 | |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 3788 | ret = usb_reset_and_verify_device(udev); |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3789 | |
| 3790 | if (config) { |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3791 | for (i = config->desc.bNumInterfaces - 1; i >= 0; --i) { |
Alan Stern | 852c4b4 | 2007-12-03 15:44:29 -0500 | [diff] [blame] | 3792 | struct usb_interface *cintf = config->interface[i]; |
| 3793 | struct usb_driver *drv; |
Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 3794 | int rebind = cintf->needs_binding; |
Alan Stern | 852c4b4 | 2007-12-03 15:44:29 -0500 | [diff] [blame] | 3795 | |
Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 3796 | if (!rebind && cintf->dev.driver) { |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3797 | drv = to_usb_driver(cintf->dev.driver); |
| 3798 | if (drv->post_reset) |
Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 3799 | rebind = (drv->post_reset)(cintf); |
| 3800 | else if (cintf->condition == |
| 3801 | USB_INTERFACE_BOUND) |
| 3802 | rebind = 1; |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3803 | } |
Alan Stern | 6c64094 | 2008-10-21 15:40:03 -0400 | [diff] [blame] | 3804 | if (ret == 0 && rebind) |
Alan Stern | 78d9a48 | 2008-06-23 16:00:40 -0400 | [diff] [blame] | 3805 | usb_rebind_intf(cintf); |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3806 | } |
| 3807 | } |
| 3808 | |
Alan Stern | 94fcda1 | 2006-11-20 11:38:46 -0500 | [diff] [blame] | 3809 | usb_autosuspend_device(udev); |
Alan Stern | 79efa09 | 2006-06-01 13:33:42 -0400 | [diff] [blame] | 3810 | return ret; |
| 3811 | } |
Ming Lei | 742120c | 2008-06-18 22:00:29 +0800 | [diff] [blame] | 3812 | EXPORT_SYMBOL_GPL(usb_reset_device); |
Inaky Perez-Gonzalez | dc023dc | 2008-11-13 10:31:35 -0800 | [diff] [blame] | 3813 | |
| 3814 | |
| 3815 | /** |
| 3816 | * usb_queue_reset_device - Reset a USB device from an atomic context |
| 3817 | * @iface: USB interface belonging to the device to reset |
| 3818 | * |
| 3819 | * This function can be used to reset a USB device from an atomic |
| 3820 | * context, where usb_reset_device() won't work (as it blocks). |
| 3821 | * |
| 3822 | * Doing a reset via this method is functionally equivalent to calling |
| 3823 | * usb_reset_device(), except for the fact that it is delayed to a |
| 3824 | * workqueue. This means that any drivers bound to other interfaces |
| 3825 | * might be unbound, as well as users from usbfs in user space. |
| 3826 | * |
| 3827 | * Corner cases: |
| 3828 | * |
| 3829 | * - Scheduling two resets at the same time from two different drivers |
| 3830 | * attached to two different interfaces of the same device is |
| 3831 | * possible; depending on how the driver attached to each interface |
| 3832 | * handles ->pre_reset(), the second reset might happen or not. |
| 3833 | * |
| 3834 | * - If a driver is unbound and it had a pending reset, the reset will |
| 3835 | * be cancelled. |
| 3836 | * |
| 3837 | * - This function can be called during .probe() or .disconnect() |
| 3838 | * times. On return from .disconnect(), any pending resets will be |
| 3839 | * cancelled. |
| 3840 | * |
| 3841 | * There is no no need to lock/unlock the @reset_ws as schedule_work() |
| 3842 | * does its own. |
| 3843 | * |
| 3844 | * NOTE: We don't do any reference count tracking because it is not |
| 3845 | * needed. The lifecycle of the work_struct is tied to the |
| 3846 | * usb_interface. Before destroying the interface we cancel the |
| 3847 | * work_struct, so the fact that work_struct is queued and or |
| 3848 | * running means the interface (and thus, the device) exist and |
| 3849 | * are referenced. |
| 3850 | */ |
| 3851 | void usb_queue_reset_device(struct usb_interface *iface) |
| 3852 | { |
| 3853 | schedule_work(&iface->reset_ws); |
| 3854 | } |
| 3855 | EXPORT_SYMBOL_GPL(usb_queue_reset_device); |