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