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