Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright Linus Torvalds 1999 |
| 3 | * (C) Copyright Johannes Erdfelt 1999-2001 |
| 4 | * (C) Copyright Andreas Gal 1999 |
| 5 | * (C) Copyright Gregory P. Smith 1999 |
| 6 | * (C) Copyright Deti Fliegl 1999 |
| 7 | * (C) Copyright Randy Dunlap 2000 |
| 8 | * (C) Copyright David Brownell 2000-2002 |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify it |
| 11 | * under the terms of the GNU General Public License as published by the |
| 12 | * Free Software Foundation; either version 2 of the License, or (at your |
| 13 | * option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, but |
| 16 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
| 17 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 18 | * for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software Foundation, |
| 22 | * Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 23 | */ |
| 24 | |
| 25 | #include <linux/config.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/module.h> |
| 27 | #include <linux/version.h> |
| 28 | #include <linux/kernel.h> |
| 29 | #include <linux/slab.h> |
| 30 | #include <linux/completion.h> |
| 31 | #include <linux/utsname.h> |
| 32 | #include <linux/mm.h> |
| 33 | #include <asm/io.h> |
| 34 | #include <asm/scatterlist.h> |
| 35 | #include <linux/device.h> |
| 36 | #include <linux/dma-mapping.h> |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 37 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <asm/irq.h> |
| 39 | #include <asm/byteorder.h> |
| 40 | |
| 41 | #include <linux/usb.h> |
| 42 | |
| 43 | #include "usb.h" |
| 44 | #include "hcd.h" |
| 45 | #include "hub.h" |
| 46 | |
| 47 | |
| 48 | // #define USB_BANDWIDTH_MESSAGES |
| 49 | |
| 50 | /*-------------------------------------------------------------------------*/ |
| 51 | |
| 52 | /* |
| 53 | * USB Host Controller Driver framework |
| 54 | * |
| 55 | * Plugs into usbcore (usb_bus) and lets HCDs share code, minimizing |
| 56 | * HCD-specific behaviors/bugs. |
| 57 | * |
| 58 | * This does error checks, tracks devices and urbs, and delegates to a |
| 59 | * "hc_driver" only for code (and data) that really needs to know about |
| 60 | * hardware differences. That includes root hub registers, i/o queues, |
| 61 | * and so on ... but as little else as possible. |
| 62 | * |
| 63 | * Shared code includes most of the "root hub" code (these are emulated, |
| 64 | * though each HC's hardware works differently) and PCI glue, plus request |
| 65 | * tracking overhead. The HCD code should only block on spinlocks or on |
| 66 | * hardware handshaking; blocking on software events (such as other kernel |
| 67 | * threads releasing resources, or completing actions) is all generic. |
| 68 | * |
| 69 | * Happens the USB 2.0 spec says this would be invisible inside the "USBD", |
| 70 | * and includes mostly a "HCDI" (HCD Interface) along with some APIs used |
| 71 | * only by the hub driver ... and that neither should be seen or used by |
| 72 | * usb client device drivers. |
| 73 | * |
| 74 | * Contributors of ideas or unattributed patches include: David Brownell, |
| 75 | * Roman Weissgaerber, Rory Bolt, Greg Kroah-Hartman, ... |
| 76 | * |
| 77 | * HISTORY: |
| 78 | * 2002-02-21 Pull in most of the usb_bus support from usb.c; some |
| 79 | * associated cleanup. "usb_hcd" still != "usb_bus". |
| 80 | * 2001-12-12 Initial patch version for Linux 2.5.1 kernel. |
| 81 | */ |
| 82 | |
| 83 | /*-------------------------------------------------------------------------*/ |
| 84 | |
| 85 | /* host controllers we manage */ |
| 86 | LIST_HEAD (usb_bus_list); |
| 87 | EXPORT_SYMBOL_GPL (usb_bus_list); |
| 88 | |
| 89 | /* used when allocating bus numbers */ |
| 90 | #define USB_MAXBUS 64 |
| 91 | struct usb_busmap { |
| 92 | unsigned long busmap [USB_MAXBUS / (8*sizeof (unsigned long))]; |
| 93 | }; |
| 94 | static struct usb_busmap busmap; |
| 95 | |
| 96 | /* used when updating list of hcds */ |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 97 | DEFINE_MUTEX(usb_bus_list_lock); /* exported only for usbfs */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | EXPORT_SYMBOL_GPL (usb_bus_list_lock); |
| 99 | |
| 100 | /* used for controlling access to virtual root hubs */ |
| 101 | static DEFINE_SPINLOCK(hcd_root_hub_lock); |
| 102 | |
| 103 | /* used when updating hcd data */ |
| 104 | static DEFINE_SPINLOCK(hcd_data_lock); |
| 105 | |
| 106 | /* wait queue for synchronous unlinks */ |
| 107 | DECLARE_WAIT_QUEUE_HEAD(usb_kill_urb_queue); |
| 108 | |
| 109 | /*-------------------------------------------------------------------------*/ |
| 110 | |
| 111 | /* |
| 112 | * Sharable chunks of root hub code. |
| 113 | */ |
| 114 | |
| 115 | /*-------------------------------------------------------------------------*/ |
| 116 | |
| 117 | #define KERNEL_REL ((LINUX_VERSION_CODE >> 16) & 0x0ff) |
| 118 | #define KERNEL_VER ((LINUX_VERSION_CODE >> 8) & 0x0ff) |
| 119 | |
| 120 | /* usb 2.0 root hub device descriptor */ |
| 121 | static const u8 usb2_rh_dev_descriptor [18] = { |
| 122 | 0x12, /* __u8 bLength; */ |
| 123 | 0x01, /* __u8 bDescriptorType; Device */ |
| 124 | 0x00, 0x02, /* __le16 bcdUSB; v2.0 */ |
| 125 | |
| 126 | 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */ |
| 127 | 0x00, /* __u8 bDeviceSubClass; */ |
| 128 | 0x01, /* __u8 bDeviceProtocol; [ usb 2.0 single TT ]*/ |
Alan Stern | 16f16d1 | 2005-10-24 15:41:19 -0400 | [diff] [blame] | 129 | 0x40, /* __u8 bMaxPacketSize0; 64 Bytes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
| 131 | 0x00, 0x00, /* __le16 idVendor; */ |
| 132 | 0x00, 0x00, /* __le16 idProduct; */ |
| 133 | KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */ |
| 134 | |
| 135 | 0x03, /* __u8 iManufacturer; */ |
| 136 | 0x02, /* __u8 iProduct; */ |
| 137 | 0x01, /* __u8 iSerialNumber; */ |
| 138 | 0x01 /* __u8 bNumConfigurations; */ |
| 139 | }; |
| 140 | |
| 141 | /* no usb 2.0 root hub "device qualifier" descriptor: one speed only */ |
| 142 | |
| 143 | /* usb 1.1 root hub device descriptor */ |
| 144 | static const u8 usb11_rh_dev_descriptor [18] = { |
| 145 | 0x12, /* __u8 bLength; */ |
| 146 | 0x01, /* __u8 bDescriptorType; Device */ |
| 147 | 0x10, 0x01, /* __le16 bcdUSB; v1.1 */ |
| 148 | |
| 149 | 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */ |
| 150 | 0x00, /* __u8 bDeviceSubClass; */ |
| 151 | 0x00, /* __u8 bDeviceProtocol; [ low/full speeds only ] */ |
Alan Stern | 16f16d1 | 2005-10-24 15:41:19 -0400 | [diff] [blame] | 152 | 0x40, /* __u8 bMaxPacketSize0; 64 Bytes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
| 154 | 0x00, 0x00, /* __le16 idVendor; */ |
| 155 | 0x00, 0x00, /* __le16 idProduct; */ |
| 156 | KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */ |
| 157 | |
| 158 | 0x03, /* __u8 iManufacturer; */ |
| 159 | 0x02, /* __u8 iProduct; */ |
| 160 | 0x01, /* __u8 iSerialNumber; */ |
| 161 | 0x01 /* __u8 bNumConfigurations; */ |
| 162 | }; |
| 163 | |
| 164 | |
| 165 | /*-------------------------------------------------------------------------*/ |
| 166 | |
| 167 | /* Configuration descriptors for our root hubs */ |
| 168 | |
| 169 | static const u8 fs_rh_config_descriptor [] = { |
| 170 | |
| 171 | /* one configuration */ |
| 172 | 0x09, /* __u8 bLength; */ |
| 173 | 0x02, /* __u8 bDescriptorType; Configuration */ |
| 174 | 0x19, 0x00, /* __le16 wTotalLength; */ |
| 175 | 0x01, /* __u8 bNumInterfaces; (1) */ |
| 176 | 0x01, /* __u8 bConfigurationValue; */ |
| 177 | 0x00, /* __u8 iConfiguration; */ |
| 178 | 0xc0, /* __u8 bmAttributes; |
| 179 | Bit 7: must be set, |
| 180 | 6: Self-powered, |
| 181 | 5: Remote wakeup, |
| 182 | 4..0: resvd */ |
| 183 | 0x00, /* __u8 MaxPower; */ |
| 184 | |
| 185 | /* USB 1.1: |
| 186 | * USB 2.0, single TT organization (mandatory): |
| 187 | * one interface, protocol 0 |
| 188 | * |
| 189 | * USB 2.0, multiple TT organization (optional): |
| 190 | * two interfaces, protocols 1 (like single TT) |
| 191 | * and 2 (multiple TT mode) ... config is |
| 192 | * sometimes settable |
| 193 | * NOT IMPLEMENTED |
| 194 | */ |
| 195 | |
| 196 | /* one interface */ |
| 197 | 0x09, /* __u8 if_bLength; */ |
| 198 | 0x04, /* __u8 if_bDescriptorType; Interface */ |
| 199 | 0x00, /* __u8 if_bInterfaceNumber; */ |
| 200 | 0x00, /* __u8 if_bAlternateSetting; */ |
| 201 | 0x01, /* __u8 if_bNumEndpoints; */ |
| 202 | 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */ |
| 203 | 0x00, /* __u8 if_bInterfaceSubClass; */ |
| 204 | 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */ |
| 205 | 0x00, /* __u8 if_iInterface; */ |
| 206 | |
| 207 | /* one endpoint (status change endpoint) */ |
| 208 | 0x07, /* __u8 ep_bLength; */ |
| 209 | 0x05, /* __u8 ep_bDescriptorType; Endpoint */ |
| 210 | 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */ |
| 211 | 0x03, /* __u8 ep_bmAttributes; Interrupt */ |
| 212 | 0x02, 0x00, /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */ |
| 213 | 0xff /* __u8 ep_bInterval; (255ms -- usb 2.0 spec) */ |
| 214 | }; |
| 215 | |
| 216 | static const u8 hs_rh_config_descriptor [] = { |
| 217 | |
| 218 | /* one configuration */ |
| 219 | 0x09, /* __u8 bLength; */ |
| 220 | 0x02, /* __u8 bDescriptorType; Configuration */ |
| 221 | 0x19, 0x00, /* __le16 wTotalLength; */ |
| 222 | 0x01, /* __u8 bNumInterfaces; (1) */ |
| 223 | 0x01, /* __u8 bConfigurationValue; */ |
| 224 | 0x00, /* __u8 iConfiguration; */ |
| 225 | 0xc0, /* __u8 bmAttributes; |
| 226 | Bit 7: must be set, |
| 227 | 6: Self-powered, |
| 228 | 5: Remote wakeup, |
| 229 | 4..0: resvd */ |
| 230 | 0x00, /* __u8 MaxPower; */ |
| 231 | |
| 232 | /* USB 1.1: |
| 233 | * USB 2.0, single TT organization (mandatory): |
| 234 | * one interface, protocol 0 |
| 235 | * |
| 236 | * USB 2.0, multiple TT organization (optional): |
| 237 | * two interfaces, protocols 1 (like single TT) |
| 238 | * and 2 (multiple TT mode) ... config is |
| 239 | * sometimes settable |
| 240 | * NOT IMPLEMENTED |
| 241 | */ |
| 242 | |
| 243 | /* one interface */ |
| 244 | 0x09, /* __u8 if_bLength; */ |
| 245 | 0x04, /* __u8 if_bDescriptorType; Interface */ |
| 246 | 0x00, /* __u8 if_bInterfaceNumber; */ |
| 247 | 0x00, /* __u8 if_bAlternateSetting; */ |
| 248 | 0x01, /* __u8 if_bNumEndpoints; */ |
| 249 | 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */ |
| 250 | 0x00, /* __u8 if_bInterfaceSubClass; */ |
| 251 | 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */ |
| 252 | 0x00, /* __u8 if_iInterface; */ |
| 253 | |
| 254 | /* one endpoint (status change endpoint) */ |
| 255 | 0x07, /* __u8 ep_bLength; */ |
| 256 | 0x05, /* __u8 ep_bDescriptorType; Endpoint */ |
| 257 | 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */ |
| 258 | 0x03, /* __u8 ep_bmAttributes; Interrupt */ |
| 259 | 0x02, 0x00, /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */ |
| 260 | 0x0c /* __u8 ep_bInterval; (256ms -- usb 2.0 spec) */ |
| 261 | }; |
| 262 | |
| 263 | /*-------------------------------------------------------------------------*/ |
| 264 | |
| 265 | /* |
| 266 | * helper routine for returning string descriptors in UTF-16LE |
| 267 | * input can actually be ISO-8859-1; ASCII is its 7-bit subset |
| 268 | */ |
| 269 | static int ascii2utf (char *s, u8 *utf, int utfmax) |
| 270 | { |
| 271 | int retval; |
| 272 | |
| 273 | for (retval = 0; *s && utfmax > 1; utfmax -= 2, retval += 2) { |
| 274 | *utf++ = *s++; |
| 275 | *utf++ = 0; |
| 276 | } |
| 277 | if (utfmax > 0) { |
| 278 | *utf = *s; |
| 279 | ++retval; |
| 280 | } |
| 281 | return retval; |
| 282 | } |
| 283 | |
| 284 | /* |
| 285 | * rh_string - provides manufacturer, product and serial strings for root hub |
| 286 | * @id: the string ID number (1: serial number, 2: product, 3: vendor) |
| 287 | * @hcd: the host controller for this root hub |
| 288 | * @type: string describing our driver |
| 289 | * @data: return packet in UTF-16 LE |
| 290 | * @len: length of the return packet |
| 291 | * |
| 292 | * Produces either a manufacturer, product or serial number string for the |
| 293 | * virtual root hub device. |
| 294 | */ |
| 295 | static int rh_string ( |
| 296 | int id, |
| 297 | struct usb_hcd *hcd, |
| 298 | u8 *data, |
| 299 | int len |
| 300 | ) { |
| 301 | char buf [100]; |
| 302 | |
| 303 | // language ids |
| 304 | if (id == 0) { |
| 305 | buf[0] = 4; buf[1] = 3; /* 4 bytes string data */ |
| 306 | buf[2] = 0x09; buf[3] = 0x04; /* MSFT-speak for "en-us" */ |
| 307 | len = min (len, 4); |
| 308 | memcpy (data, buf, len); |
| 309 | return len; |
| 310 | |
| 311 | // serial number |
| 312 | } else if (id == 1) { |
| 313 | strlcpy (buf, hcd->self.bus_name, sizeof buf); |
| 314 | |
| 315 | // product description |
| 316 | } else if (id == 2) { |
| 317 | strlcpy (buf, hcd->product_desc, sizeof buf); |
| 318 | |
| 319 | // id 3 == vendor description |
| 320 | } else if (id == 3) { |
| 321 | snprintf (buf, sizeof buf, "%s %s %s", system_utsname.sysname, |
| 322 | system_utsname.release, hcd->driver->description); |
| 323 | |
| 324 | // unsupported IDs --> "protocol stall" |
| 325 | } else |
| 326 | return -EPIPE; |
| 327 | |
| 328 | switch (len) { /* All cases fall through */ |
| 329 | default: |
| 330 | len = 2 + ascii2utf (buf, data + 2, len - 2); |
| 331 | case 2: |
| 332 | data [1] = 3; /* type == string */ |
| 333 | case 1: |
| 334 | data [0] = 2 * (strlen (buf) + 1); |
| 335 | case 0: |
| 336 | ; /* Compiler wants a statement here */ |
| 337 | } |
| 338 | return len; |
| 339 | } |
| 340 | |
| 341 | |
| 342 | /* Root hub control transfers execute synchronously */ |
| 343 | static int rh_call_control (struct usb_hcd *hcd, struct urb *urb) |
| 344 | { |
| 345 | struct usb_ctrlrequest *cmd; |
| 346 | u16 typeReq, wValue, wIndex, wLength; |
| 347 | u8 *ubuf = urb->transfer_buffer; |
| 348 | u8 tbuf [sizeof (struct usb_hub_descriptor)]; |
| 349 | const u8 *bufp = tbuf; |
| 350 | int len = 0; |
| 351 | int patch_wakeup = 0; |
| 352 | unsigned long flags; |
| 353 | int status = 0; |
| 354 | int n; |
| 355 | |
| 356 | cmd = (struct usb_ctrlrequest *) urb->setup_packet; |
| 357 | typeReq = (cmd->bRequestType << 8) | cmd->bRequest; |
| 358 | wValue = le16_to_cpu (cmd->wValue); |
| 359 | wIndex = le16_to_cpu (cmd->wIndex); |
| 360 | wLength = le16_to_cpu (cmd->wLength); |
| 361 | |
| 362 | if (wLength > urb->transfer_buffer_length) |
| 363 | goto error; |
| 364 | |
| 365 | urb->actual_length = 0; |
| 366 | switch (typeReq) { |
| 367 | |
| 368 | /* DEVICE REQUESTS */ |
| 369 | |
| 370 | case DeviceRequest | USB_REQ_GET_STATUS: |
| 371 | tbuf [0] = (hcd->remote_wakeup << USB_DEVICE_REMOTE_WAKEUP) |
| 372 | | (1 << USB_DEVICE_SELF_POWERED); |
| 373 | tbuf [1] = 0; |
| 374 | len = 2; |
| 375 | break; |
| 376 | case DeviceOutRequest | USB_REQ_CLEAR_FEATURE: |
| 377 | if (wValue == USB_DEVICE_REMOTE_WAKEUP) |
| 378 | hcd->remote_wakeup = 0; |
| 379 | else |
| 380 | goto error; |
| 381 | break; |
| 382 | case DeviceOutRequest | USB_REQ_SET_FEATURE: |
| 383 | if (hcd->can_wakeup && wValue == USB_DEVICE_REMOTE_WAKEUP) |
| 384 | hcd->remote_wakeup = 1; |
| 385 | else |
| 386 | goto error; |
| 387 | break; |
| 388 | case DeviceRequest | USB_REQ_GET_CONFIGURATION: |
| 389 | tbuf [0] = 1; |
| 390 | len = 1; |
| 391 | /* FALLTHROUGH */ |
| 392 | case DeviceOutRequest | USB_REQ_SET_CONFIGURATION: |
| 393 | break; |
| 394 | case DeviceRequest | USB_REQ_GET_DESCRIPTOR: |
| 395 | switch (wValue & 0xff00) { |
| 396 | case USB_DT_DEVICE << 8: |
| 397 | if (hcd->driver->flags & HCD_USB2) |
| 398 | bufp = usb2_rh_dev_descriptor; |
| 399 | else if (hcd->driver->flags & HCD_USB11) |
| 400 | bufp = usb11_rh_dev_descriptor; |
| 401 | else |
| 402 | goto error; |
| 403 | len = 18; |
| 404 | break; |
| 405 | case USB_DT_CONFIG << 8: |
| 406 | if (hcd->driver->flags & HCD_USB2) { |
| 407 | bufp = hs_rh_config_descriptor; |
| 408 | len = sizeof hs_rh_config_descriptor; |
| 409 | } else { |
| 410 | bufp = fs_rh_config_descriptor; |
| 411 | len = sizeof fs_rh_config_descriptor; |
| 412 | } |
| 413 | if (hcd->can_wakeup) |
| 414 | patch_wakeup = 1; |
| 415 | break; |
| 416 | case USB_DT_STRING << 8: |
| 417 | n = rh_string (wValue & 0xff, hcd, ubuf, wLength); |
| 418 | if (n < 0) |
| 419 | goto error; |
| 420 | urb->actual_length = n; |
| 421 | break; |
| 422 | default: |
| 423 | goto error; |
| 424 | } |
| 425 | break; |
| 426 | case DeviceRequest | USB_REQ_GET_INTERFACE: |
| 427 | tbuf [0] = 0; |
| 428 | len = 1; |
| 429 | /* FALLTHROUGH */ |
| 430 | case DeviceOutRequest | USB_REQ_SET_INTERFACE: |
| 431 | break; |
| 432 | case DeviceOutRequest | USB_REQ_SET_ADDRESS: |
| 433 | // wValue == urb->dev->devaddr |
| 434 | dev_dbg (hcd->self.controller, "root hub device address %d\n", |
| 435 | wValue); |
| 436 | break; |
| 437 | |
| 438 | /* INTERFACE REQUESTS (no defined feature/status flags) */ |
| 439 | |
| 440 | /* ENDPOINT REQUESTS */ |
| 441 | |
| 442 | case EndpointRequest | USB_REQ_GET_STATUS: |
| 443 | // ENDPOINT_HALT flag |
| 444 | tbuf [0] = 0; |
| 445 | tbuf [1] = 0; |
| 446 | len = 2; |
| 447 | /* FALLTHROUGH */ |
| 448 | case EndpointOutRequest | USB_REQ_CLEAR_FEATURE: |
| 449 | case EndpointOutRequest | USB_REQ_SET_FEATURE: |
| 450 | dev_dbg (hcd->self.controller, "no endpoint features yet\n"); |
| 451 | break; |
| 452 | |
| 453 | /* CLASS REQUESTS (and errors) */ |
| 454 | |
| 455 | default: |
| 456 | /* non-generic request */ |
David Brownell | b13296c | 2005-09-27 10:38:54 -0700 | [diff] [blame] | 457 | switch (typeReq) { |
| 458 | case GetHubStatus: |
| 459 | case GetPortStatus: |
| 460 | len = 4; |
| 461 | break; |
| 462 | case GetHubDescriptor: |
| 463 | len = sizeof (struct usb_hub_descriptor); |
| 464 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 465 | } |
David Brownell | b13296c | 2005-09-27 10:38:54 -0700 | [diff] [blame] | 466 | status = hcd->driver->hub_control (hcd, |
| 467 | typeReq, wValue, wIndex, |
| 468 | tbuf, wLength); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | break; |
| 470 | error: |
| 471 | /* "protocol stall" on error */ |
| 472 | status = -EPIPE; |
| 473 | } |
| 474 | |
| 475 | if (status) { |
| 476 | len = 0; |
| 477 | if (status != -EPIPE) { |
| 478 | dev_dbg (hcd->self.controller, |
| 479 | "CTRL: TypeReq=0x%x val=0x%x " |
| 480 | "idx=0x%x len=%d ==> %d\n", |
| 481 | typeReq, wValue, wIndex, |
David Brownell | b13296c | 2005-09-27 10:38:54 -0700 | [diff] [blame] | 482 | wLength, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | } |
| 484 | } |
| 485 | if (len) { |
| 486 | if (urb->transfer_buffer_length < len) |
| 487 | len = urb->transfer_buffer_length; |
| 488 | urb->actual_length = len; |
| 489 | // always USB_DIR_IN, toward host |
| 490 | memcpy (ubuf, bufp, len); |
| 491 | |
| 492 | /* report whether RH hardware supports remote wakeup */ |
| 493 | if (patch_wakeup && |
| 494 | len > offsetof (struct usb_config_descriptor, |
| 495 | bmAttributes)) |
| 496 | ((struct usb_config_descriptor *)ubuf)->bmAttributes |
| 497 | |= USB_CONFIG_ATT_WAKEUP; |
| 498 | } |
| 499 | |
| 500 | /* any errors get returned through the urb completion */ |
| 501 | local_irq_save (flags); |
| 502 | spin_lock (&urb->lock); |
| 503 | if (urb->status == -EINPROGRESS) |
| 504 | urb->status = status; |
| 505 | spin_unlock (&urb->lock); |
| 506 | usb_hcd_giveback_urb (hcd, urb, NULL); |
| 507 | local_irq_restore (flags); |
| 508 | return 0; |
| 509 | } |
| 510 | |
| 511 | /*-------------------------------------------------------------------------*/ |
| 512 | |
| 513 | /* |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 514 | * Root Hub interrupt transfers are polled using a timer if the |
| 515 | * driver requests it; otherwise the driver is responsible for |
| 516 | * calling usb_hcd_poll_rh_status() when an event occurs. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | * |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 518 | * Completions are called in_interrupt(), but they may or may not |
| 519 | * be in_irq(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | */ |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 521 | void usb_hcd_poll_rh_status(struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | { |
| 523 | struct urb *urb; |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 524 | int length; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | unsigned long flags; |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 526 | char buffer[4]; /* Any root hubs with > 31 ports? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 528 | if (!hcd->uses_new_polling && !hcd->status_urb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 530 | |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 531 | length = hcd->driver->hub_status_data(hcd, buffer); |
| 532 | if (length > 0) { |
| 533 | |
| 534 | /* try to complete the status urb */ |
| 535 | local_irq_save (flags); |
| 536 | spin_lock(&hcd_root_hub_lock); |
| 537 | urb = hcd->status_urb; |
| 538 | if (urb) { |
| 539 | spin_lock(&urb->lock); |
| 540 | if (urb->status == -EINPROGRESS) { |
| 541 | hcd->poll_pending = 0; |
| 542 | hcd->status_urb = NULL; |
| 543 | urb->status = 0; |
| 544 | urb->hcpriv = NULL; |
| 545 | urb->actual_length = length; |
| 546 | memcpy(urb->transfer_buffer, buffer, length); |
| 547 | } else /* urb has been unlinked */ |
| 548 | length = 0; |
| 549 | spin_unlock(&urb->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | } else |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 551 | length = 0; |
| 552 | spin_unlock(&hcd_root_hub_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 554 | /* local irqs are always blocked in completions */ |
| 555 | if (length > 0) |
| 556 | usb_hcd_giveback_urb (hcd, urb, NULL); |
| 557 | else |
| 558 | hcd->poll_pending = 1; |
| 559 | local_irq_restore (flags); |
| 560 | } |
| 561 | |
| 562 | /* The USB 2.0 spec says 256 ms. This is close enough and won't |
| 563 | * exceed that limit if HZ is 100. */ |
| 564 | if (hcd->uses_new_polling ? hcd->poll_rh : |
| 565 | (length == 0 && hcd->status_urb != NULL)) |
| 566 | mod_timer (&hcd->rh_timer, jiffies + msecs_to_jiffies(250)); |
| 567 | } |
| 568 | EXPORT_SYMBOL_GPL(usb_hcd_poll_rh_status); |
| 569 | |
| 570 | /* timer callback */ |
| 571 | static void rh_timer_func (unsigned long _hcd) |
| 572 | { |
| 573 | usb_hcd_poll_rh_status((struct usb_hcd *) _hcd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | } |
| 575 | |
| 576 | /*-------------------------------------------------------------------------*/ |
| 577 | |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 578 | static int rh_queue_status (struct usb_hcd *hcd, struct urb *urb) |
| 579 | { |
| 580 | int retval; |
| 581 | unsigned long flags; |
| 582 | int len = 1 + (urb->dev->maxchild / 8); |
| 583 | |
| 584 | spin_lock_irqsave (&hcd_root_hub_lock, flags); |
| 585 | if (urb->status != -EINPROGRESS) /* already unlinked */ |
| 586 | retval = urb->status; |
| 587 | else if (hcd->status_urb || urb->transfer_buffer_length < len) { |
| 588 | dev_dbg (hcd->self.controller, "not queuing rh status urb\n"); |
| 589 | retval = -EINVAL; |
| 590 | } else { |
| 591 | hcd->status_urb = urb; |
| 592 | urb->hcpriv = hcd; /* indicate it's queued */ |
| 593 | |
| 594 | if (!hcd->uses_new_polling) |
| 595 | mod_timer (&hcd->rh_timer, jiffies + |
| 596 | msecs_to_jiffies(250)); |
| 597 | |
| 598 | /* If a status change has already occurred, report it ASAP */ |
| 599 | else if (hcd->poll_pending) |
| 600 | mod_timer (&hcd->rh_timer, jiffies); |
| 601 | retval = 0; |
| 602 | } |
| 603 | spin_unlock_irqrestore (&hcd_root_hub_lock, flags); |
| 604 | return retval; |
| 605 | } |
| 606 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | static int rh_urb_enqueue (struct usb_hcd *hcd, struct urb *urb) |
| 608 | { |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 609 | if (usb_pipeint (urb->pipe)) |
| 610 | return rh_queue_status (hcd, urb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | if (usb_pipecontrol (urb->pipe)) |
| 612 | return rh_call_control (hcd, urb); |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 613 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | } |
| 615 | |
| 616 | /*-------------------------------------------------------------------------*/ |
| 617 | |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 618 | /* Asynchronous unlinks of root-hub control URBs are legal, but they |
| 619 | * don't do anything. Status URB unlinks must be made in process context |
| 620 | * with interrupts enabled. |
| 621 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | static int usb_rh_urb_dequeue (struct usb_hcd *hcd, struct urb *urb) |
| 623 | { |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 624 | if (usb_pipeendpoint(urb->pipe) == 0) { /* Control URB */ |
| 625 | if (in_interrupt()) |
| 626 | return 0; /* nothing to do */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | spin_lock_irq(&urb->lock); /* from usb_kill_urb */ |
| 629 | ++urb->reject; |
| 630 | spin_unlock_irq(&urb->lock); |
| 631 | |
| 632 | wait_event(usb_kill_urb_queue, |
| 633 | atomic_read(&urb->use_count) == 0); |
| 634 | |
| 635 | spin_lock_irq(&urb->lock); |
| 636 | --urb->reject; |
| 637 | spin_unlock_irq(&urb->lock); |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 638 | |
| 639 | } else { /* Status URB */ |
| 640 | if (!hcd->uses_new_polling) |
| 641 | del_timer_sync (&hcd->rh_timer); |
| 642 | local_irq_disable (); |
| 643 | spin_lock (&hcd_root_hub_lock); |
| 644 | if (urb == hcd->status_urb) { |
| 645 | hcd->status_urb = NULL; |
| 646 | urb->hcpriv = NULL; |
| 647 | } else |
| 648 | urb = NULL; /* wasn't fully queued */ |
| 649 | spin_unlock (&hcd_root_hub_lock); |
| 650 | if (urb) |
| 651 | usb_hcd_giveback_urb (hcd, urb, NULL); |
| 652 | local_irq_enable (); |
| 653 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 654 | |
| 655 | return 0; |
| 656 | } |
| 657 | |
| 658 | /*-------------------------------------------------------------------------*/ |
| 659 | |
| 660 | /* exported only within usbcore */ |
gregkh@suse.de | 8561b10 | 2005-03-15 15:10:13 -0800 | [diff] [blame] | 661 | struct usb_bus *usb_bus_get(struct usb_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | { |
| 663 | if (bus) |
gregkh@suse.de | 8561b10 | 2005-03-15 15:10:13 -0800 | [diff] [blame] | 664 | kref_get(&bus->kref); |
| 665 | return bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 666 | } |
| 667 | |
gregkh@suse.de | 8561b10 | 2005-03-15 15:10:13 -0800 | [diff] [blame] | 668 | static void usb_host_release(struct kref *kref) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 669 | { |
gregkh@suse.de | 8561b10 | 2005-03-15 15:10:13 -0800 | [diff] [blame] | 670 | struct usb_bus *bus = container_of(kref, struct usb_bus, kref); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | |
| 672 | if (bus->release) |
| 673 | bus->release(bus); |
| 674 | } |
| 675 | |
gregkh@suse.de | 8561b10 | 2005-03-15 15:10:13 -0800 | [diff] [blame] | 676 | /* exported only within usbcore */ |
| 677 | void usb_bus_put(struct usb_bus *bus) |
| 678 | { |
| 679 | if (bus) |
| 680 | kref_put(&bus->kref, usb_host_release); |
| 681 | } |
| 682 | |
| 683 | /*-------------------------------------------------------------------------*/ |
| 684 | |
| 685 | static struct class *usb_host_class; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | |
| 687 | int usb_host_init(void) |
| 688 | { |
gregkh@suse.de | 8561b10 | 2005-03-15 15:10:13 -0800 | [diff] [blame] | 689 | int retval = 0; |
| 690 | |
| 691 | usb_host_class = class_create(THIS_MODULE, "usb_host"); |
| 692 | if (IS_ERR(usb_host_class)) |
| 693 | retval = PTR_ERR(usb_host_class); |
| 694 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 695 | } |
| 696 | |
| 697 | void usb_host_cleanup(void) |
| 698 | { |
gregkh@suse.de | 8561b10 | 2005-03-15 15:10:13 -0800 | [diff] [blame] | 699 | class_destroy(usb_host_class); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | } |
| 701 | |
| 702 | /** |
| 703 | * usb_bus_init - shared initialization code |
| 704 | * @bus: the bus structure being initialized |
| 705 | * |
| 706 | * This code is used to initialize a usb_bus structure, memory for which is |
| 707 | * separately managed. |
| 708 | */ |
| 709 | static void usb_bus_init (struct usb_bus *bus) |
| 710 | { |
| 711 | memset (&bus->devmap, 0, sizeof(struct usb_devmap)); |
| 712 | |
| 713 | bus->devnum_next = 1; |
| 714 | |
| 715 | bus->root_hub = NULL; |
| 716 | bus->hcpriv = NULL; |
| 717 | bus->busnum = -1; |
| 718 | bus->bandwidth_allocated = 0; |
| 719 | bus->bandwidth_int_reqs = 0; |
| 720 | bus->bandwidth_isoc_reqs = 0; |
| 721 | |
| 722 | INIT_LIST_HEAD (&bus->bus_list); |
| 723 | |
gregkh@suse.de | 8561b10 | 2005-03-15 15:10:13 -0800 | [diff] [blame] | 724 | kref_init(&bus->kref); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | } |
| 726 | |
| 727 | /** |
| 728 | * usb_alloc_bus - creates a new USB host controller structure |
| 729 | * @op: pointer to a struct usb_operations that this bus structure should use |
| 730 | * Context: !in_interrupt() |
| 731 | * |
| 732 | * Creates a USB host controller bus structure with the specified |
| 733 | * usb_operations and initializes all the necessary internal objects. |
| 734 | * |
| 735 | * If no memory is available, NULL is returned. |
| 736 | * |
| 737 | * The caller should call usb_put_bus() when it is finished with the structure. |
| 738 | */ |
| 739 | struct usb_bus *usb_alloc_bus (struct usb_operations *op) |
| 740 | { |
| 741 | struct usb_bus *bus; |
| 742 | |
Alan Stern | 0a1ef3b | 2005-10-24 15:38:24 -0400 | [diff] [blame] | 743 | bus = kzalloc (sizeof *bus, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 744 | if (!bus) |
| 745 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | usb_bus_init (bus); |
| 747 | bus->op = op; |
| 748 | return bus; |
| 749 | } |
| 750 | |
| 751 | /*-------------------------------------------------------------------------*/ |
| 752 | |
| 753 | /** |
| 754 | * usb_register_bus - registers the USB host controller with the usb core |
| 755 | * @bus: pointer to the bus to register |
| 756 | * Context: !in_interrupt() |
| 757 | * |
| 758 | * Assigns a bus number, and links the controller into usbcore data |
| 759 | * structures so that it can be seen by scanning the bus list. |
| 760 | */ |
| 761 | static int usb_register_bus(struct usb_bus *bus) |
| 762 | { |
| 763 | int busnum; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 765 | mutex_lock(&usb_bus_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | busnum = find_next_zero_bit (busmap.busmap, USB_MAXBUS, 1); |
| 767 | if (busnum < USB_MAXBUS) { |
| 768 | set_bit (busnum, busmap.busmap); |
| 769 | bus->busnum = busnum; |
| 770 | } else { |
| 771 | printk (KERN_ERR "%s: too many buses\n", usbcore_name); |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 772 | mutex_unlock(&usb_bus_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 773 | return -E2BIG; |
| 774 | } |
| 775 | |
Greg Kroah-Hartman | 53f4654 | 2005-10-27 22:25:43 -0700 | [diff] [blame] | 776 | bus->class_dev = class_device_create(usb_host_class, NULL, MKDEV(0,0), |
| 777 | bus->controller, "usb_host%d", busnum); |
gregkh@suse.de | 8561b10 | 2005-03-15 15:10:13 -0800 | [diff] [blame] | 778 | if (IS_ERR(bus->class_dev)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | clear_bit(busnum, busmap.busmap); |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 780 | mutex_unlock(&usb_bus_list_lock); |
gregkh@suse.de | 8561b10 | 2005-03-15 15:10:13 -0800 | [diff] [blame] | 781 | return PTR_ERR(bus->class_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | } |
| 783 | |
gregkh@suse.de | 8561b10 | 2005-03-15 15:10:13 -0800 | [diff] [blame] | 784 | class_set_devdata(bus->class_dev, bus); |
| 785 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | /* Add it to the local list of buses */ |
| 787 | list_add (&bus->bus_list, &usb_bus_list); |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 788 | mutex_unlock(&usb_bus_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | |
Greg Kroah-Hartman | 3099e75 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 790 | usb_notify_add_bus(bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | |
| 792 | dev_info (bus->controller, "new USB bus registered, assigned bus number %d\n", bus->busnum); |
| 793 | return 0; |
| 794 | } |
| 795 | |
| 796 | /** |
| 797 | * usb_deregister_bus - deregisters the USB host controller |
| 798 | * @bus: pointer to the bus to deregister |
| 799 | * Context: !in_interrupt() |
| 800 | * |
| 801 | * Recycles the bus number, and unlinks the controller from usbcore data |
| 802 | * structures so that it won't be seen by scanning the bus list. |
| 803 | */ |
| 804 | static void usb_deregister_bus (struct usb_bus *bus) |
| 805 | { |
| 806 | dev_info (bus->controller, "USB bus %d deregistered\n", bus->busnum); |
| 807 | |
| 808 | /* |
| 809 | * NOTE: make sure that all the devices are removed by the |
| 810 | * controller code, as well as having it call this when cleaning |
| 811 | * itself up |
| 812 | */ |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 813 | mutex_lock(&usb_bus_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | list_del (&bus->bus_list); |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 815 | mutex_unlock(&usb_bus_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 816 | |
Greg Kroah-Hartman | 3099e75 | 2005-06-20 21:15:16 -0700 | [diff] [blame] | 817 | usb_notify_remove_bus(bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | |
| 819 | clear_bit (bus->busnum, busmap.busmap); |
| 820 | |
gregkh@suse.de | 8561b10 | 2005-03-15 15:10:13 -0800 | [diff] [blame] | 821 | class_device_unregister(bus->class_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | } |
| 823 | |
| 824 | /** |
Alan Stern | 8ec8d20 | 2005-04-25 11:25:17 -0400 | [diff] [blame] | 825 | * register_root_hub - called by usb_add_hcd() to register a root hub |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | * @hcd: host controller for this root hub |
| 827 | * |
Alan Stern | 8ec8d20 | 2005-04-25 11:25:17 -0400 | [diff] [blame] | 828 | * This function registers the root hub with the USB subsystem. It sets up |
David Brownell | b1e8f0a | 2006-01-23 15:25:40 -0800 | [diff] [blame] | 829 | * the device properly in the device tree and then calls usb_new_device() |
| 830 | * to register the usb device. It also assigns the root hub's USB address |
| 831 | * (always 1). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | */ |
David Brownell | b1e8f0a | 2006-01-23 15:25:40 -0800 | [diff] [blame] | 833 | static int register_root_hub(struct usb_hcd *hcd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | { |
| 835 | struct device *parent_dev = hcd->self.controller; |
David Brownell | b1e8f0a | 2006-01-23 15:25:40 -0800 | [diff] [blame] | 836 | struct usb_device *usb_dev = hcd->self.root_hub; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | const int devnum = 1; |
| 838 | int retval; |
| 839 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | usb_dev->devnum = devnum; |
| 841 | usb_dev->bus->devnum_next = devnum + 1; |
| 842 | memset (&usb_dev->bus->devmap.devicemap, 0, |
| 843 | sizeof usb_dev->bus->devmap.devicemap); |
| 844 | set_bit (devnum, usb_dev->bus->devmap.devicemap); |
| 845 | usb_set_device_state(usb_dev, USB_STATE_ADDRESS); |
| 846 | |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 847 | mutex_lock(&usb_bus_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | |
| 849 | usb_dev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64); |
| 850 | retval = usb_get_device_descriptor(usb_dev, USB_DT_DEVICE_SIZE); |
| 851 | if (retval != sizeof usb_dev->descriptor) { |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 852 | mutex_unlock(&usb_bus_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | dev_dbg (parent_dev, "can't read %s device descriptor %d\n", |
| 854 | usb_dev->dev.bus_id, retval); |
| 855 | return (retval < 0) ? retval : -EMSGSIZE; |
| 856 | } |
| 857 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | retval = usb_new_device (usb_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 859 | if (retval) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | dev_err (parent_dev, "can't register root hub for %s, %d\n", |
| 861 | usb_dev->dev.bus_id, retval); |
| 862 | } |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 863 | mutex_unlock(&usb_bus_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | |
| 865 | if (retval == 0) { |
| 866 | spin_lock_irq (&hcd_root_hub_lock); |
| 867 | hcd->rh_registered = 1; |
| 868 | spin_unlock_irq (&hcd_root_hub_lock); |
| 869 | |
| 870 | /* Did the HC die before the root hub was registered? */ |
| 871 | if (hcd->state == HC_STATE_HALT) |
| 872 | usb_hc_died (hcd); /* This time clean up */ |
| 873 | } |
| 874 | |
| 875 | return retval; |
| 876 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 877 | |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 878 | void usb_enable_root_hub_irq (struct usb_bus *bus) |
| 879 | { |
| 880 | struct usb_hcd *hcd; |
| 881 | |
| 882 | hcd = container_of (bus, struct usb_hcd, self); |
| 883 | if (hcd->driver->hub_irq_enable && !hcd->poll_rh && |
| 884 | hcd->state != HC_STATE_HALT) |
| 885 | hcd->driver->hub_irq_enable (hcd); |
| 886 | } |
| 887 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | |
| 889 | /*-------------------------------------------------------------------------*/ |
| 890 | |
| 891 | /** |
| 892 | * usb_calc_bus_time - approximate periodic transaction time in nanoseconds |
| 893 | * @speed: from dev->speed; USB_SPEED_{LOW,FULL,HIGH} |
| 894 | * @is_input: true iff the transaction sends data to the host |
| 895 | * @isoc: true for isochronous transactions, false for interrupt ones |
| 896 | * @bytecount: how many bytes in the transaction. |
| 897 | * |
| 898 | * Returns approximate bus time in nanoseconds for a periodic transaction. |
| 899 | * See USB 2.0 spec section 5.11.3; only periodic transfers need to be |
| 900 | * scheduled in software, this function is only used for such scheduling. |
| 901 | */ |
| 902 | long usb_calc_bus_time (int speed, int is_input, int isoc, int bytecount) |
| 903 | { |
| 904 | unsigned long tmp; |
| 905 | |
| 906 | switch (speed) { |
| 907 | case USB_SPEED_LOW: /* INTR only */ |
| 908 | if (is_input) { |
| 909 | tmp = (67667L * (31L + 10L * BitTime (bytecount))) / 1000L; |
| 910 | return (64060L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp); |
| 911 | } else { |
| 912 | tmp = (66700L * (31L + 10L * BitTime (bytecount))) / 1000L; |
| 913 | return (64107L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp); |
| 914 | } |
| 915 | case USB_SPEED_FULL: /* ISOC or INTR */ |
| 916 | if (isoc) { |
| 917 | tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L; |
| 918 | return (((is_input) ? 7268L : 6265L) + BW_HOST_DELAY + tmp); |
| 919 | } else { |
| 920 | tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L; |
| 921 | return (9107L + BW_HOST_DELAY + tmp); |
| 922 | } |
| 923 | case USB_SPEED_HIGH: /* ISOC or INTR */ |
| 924 | // FIXME adjust for input vs output |
| 925 | if (isoc) |
Dan Streetman | 498f78e | 2005-07-29 12:18:28 -0700 | [diff] [blame] | 926 | tmp = HS_NSECS_ISO (bytecount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | else |
Dan Streetman | 498f78e | 2005-07-29 12:18:28 -0700 | [diff] [blame] | 928 | tmp = HS_NSECS (bytecount); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | return tmp; |
| 930 | default: |
| 931 | pr_debug ("%s: bogus device speed!\n", usbcore_name); |
| 932 | return -1; |
| 933 | } |
| 934 | } |
| 935 | EXPORT_SYMBOL (usb_calc_bus_time); |
| 936 | |
| 937 | /* |
| 938 | * usb_check_bandwidth(): |
| 939 | * |
| 940 | * old_alloc is from host_controller->bandwidth_allocated in microseconds; |
| 941 | * bustime is from calc_bus_time(), but converted to microseconds. |
| 942 | * |
| 943 | * returns <bustime in us> if successful, |
| 944 | * or -ENOSPC if bandwidth request fails. |
| 945 | * |
| 946 | * FIXME: |
| 947 | * This initial implementation does not use Endpoint.bInterval |
| 948 | * in managing bandwidth allocation. |
| 949 | * It probably needs to be expanded to use Endpoint.bInterval. |
| 950 | * This can be done as a later enhancement (correction). |
| 951 | * |
| 952 | * This will also probably require some kind of |
| 953 | * frame allocation tracking...meaning, for example, |
| 954 | * that if multiple drivers request interrupts every 10 USB frames, |
| 955 | * they don't all have to be allocated at |
| 956 | * frame numbers N, N+10, N+20, etc. Some of them could be at |
| 957 | * N+11, N+21, N+31, etc., and others at |
| 958 | * N+12, N+22, N+32, etc. |
| 959 | * |
| 960 | * Similarly for isochronous transfers... |
| 961 | * |
| 962 | * Individual HCDs can schedule more directly ... this logic |
| 963 | * is not correct for high speed transfers. |
| 964 | */ |
| 965 | int usb_check_bandwidth (struct usb_device *dev, struct urb *urb) |
| 966 | { |
| 967 | unsigned int pipe = urb->pipe; |
| 968 | long bustime; |
| 969 | int is_in = usb_pipein (pipe); |
| 970 | int is_iso = usb_pipeisoc (pipe); |
| 971 | int old_alloc = dev->bus->bandwidth_allocated; |
| 972 | int new_alloc; |
| 973 | |
| 974 | |
| 975 | bustime = NS_TO_US (usb_calc_bus_time (dev->speed, is_in, is_iso, |
| 976 | usb_maxpacket (dev, pipe, !is_in))); |
| 977 | if (is_iso) |
| 978 | bustime /= urb->number_of_packets; |
| 979 | |
| 980 | new_alloc = old_alloc + (int) bustime; |
| 981 | if (new_alloc > FRAME_TIME_MAX_USECS_ALLOC) { |
| 982 | #ifdef DEBUG |
| 983 | char *mode = |
| 984 | #ifdef CONFIG_USB_BANDWIDTH |
| 985 | ""; |
| 986 | #else |
| 987 | "would have "; |
| 988 | #endif |
| 989 | dev_dbg (&dev->dev, "usb_check_bandwidth %sFAILED: %d + %ld = %d usec\n", |
| 990 | mode, old_alloc, bustime, new_alloc); |
| 991 | #endif |
| 992 | #ifdef CONFIG_USB_BANDWIDTH |
| 993 | bustime = -ENOSPC; /* report error */ |
| 994 | #endif |
| 995 | } |
| 996 | |
| 997 | return bustime; |
| 998 | } |
| 999 | EXPORT_SYMBOL (usb_check_bandwidth); |
| 1000 | |
| 1001 | |
| 1002 | /** |
| 1003 | * usb_claim_bandwidth - records bandwidth for a periodic transfer |
| 1004 | * @dev: source/target of request |
| 1005 | * @urb: request (urb->dev == dev) |
| 1006 | * @bustime: bandwidth consumed, in (average) microseconds per frame |
| 1007 | * @isoc: true iff the request is isochronous |
| 1008 | * |
| 1009 | * Bus bandwidth reservations are recorded purely for diagnostic purposes. |
| 1010 | * HCDs are expected not to overcommit periodic bandwidth, and to record such |
| 1011 | * reservations whenever endpoints are added to the periodic schedule. |
| 1012 | * |
| 1013 | * FIXME averaging per-frame is suboptimal. Better to sum over the HCD's |
| 1014 | * entire periodic schedule ... 32 frames for OHCI, 1024 for UHCI, settable |
| 1015 | * for EHCI (256/512/1024 frames, default 1024) and have the bus expose how |
| 1016 | * large its periodic schedule is. |
| 1017 | */ |
| 1018 | void usb_claim_bandwidth (struct usb_device *dev, struct urb *urb, int bustime, int isoc) |
| 1019 | { |
| 1020 | dev->bus->bandwidth_allocated += bustime; |
| 1021 | if (isoc) |
| 1022 | dev->bus->bandwidth_isoc_reqs++; |
| 1023 | else |
| 1024 | dev->bus->bandwidth_int_reqs++; |
| 1025 | urb->bandwidth = bustime; |
| 1026 | |
| 1027 | #ifdef USB_BANDWIDTH_MESSAGES |
| 1028 | dev_dbg (&dev->dev, "bandwidth alloc increased by %d (%s) to %d for %d requesters\n", |
| 1029 | bustime, |
| 1030 | isoc ? "ISOC" : "INTR", |
| 1031 | dev->bus->bandwidth_allocated, |
| 1032 | dev->bus->bandwidth_int_reqs + dev->bus->bandwidth_isoc_reqs); |
| 1033 | #endif |
| 1034 | } |
| 1035 | EXPORT_SYMBOL (usb_claim_bandwidth); |
| 1036 | |
| 1037 | |
| 1038 | /** |
| 1039 | * usb_release_bandwidth - reverses effect of usb_claim_bandwidth() |
| 1040 | * @dev: source/target of request |
| 1041 | * @urb: request (urb->dev == dev) |
| 1042 | * @isoc: true iff the request is isochronous |
| 1043 | * |
| 1044 | * This records that previously allocated bandwidth has been released. |
| 1045 | * Bandwidth is released when endpoints are removed from the host controller's |
| 1046 | * periodic schedule. |
| 1047 | */ |
| 1048 | void usb_release_bandwidth (struct usb_device *dev, struct urb *urb, int isoc) |
| 1049 | { |
| 1050 | dev->bus->bandwidth_allocated -= urb->bandwidth; |
| 1051 | if (isoc) |
| 1052 | dev->bus->bandwidth_isoc_reqs--; |
| 1053 | else |
| 1054 | dev->bus->bandwidth_int_reqs--; |
| 1055 | |
| 1056 | #ifdef USB_BANDWIDTH_MESSAGES |
| 1057 | dev_dbg (&dev->dev, "bandwidth alloc reduced by %d (%s) to %d for %d requesters\n", |
| 1058 | urb->bandwidth, |
| 1059 | isoc ? "ISOC" : "INTR", |
| 1060 | dev->bus->bandwidth_allocated, |
| 1061 | dev->bus->bandwidth_int_reqs + dev->bus->bandwidth_isoc_reqs); |
| 1062 | #endif |
| 1063 | urb->bandwidth = 0; |
| 1064 | } |
| 1065 | EXPORT_SYMBOL (usb_release_bandwidth); |
| 1066 | |
| 1067 | |
| 1068 | /*-------------------------------------------------------------------------*/ |
| 1069 | |
| 1070 | /* |
| 1071 | * Generic HC operations. |
| 1072 | */ |
| 1073 | |
| 1074 | /*-------------------------------------------------------------------------*/ |
| 1075 | |
| 1076 | static void urb_unlink (struct urb *urb) |
| 1077 | { |
| 1078 | unsigned long flags; |
| 1079 | |
| 1080 | /* Release any periodic transfer bandwidth */ |
| 1081 | if (urb->bandwidth) |
| 1082 | usb_release_bandwidth (urb->dev, urb, |
| 1083 | usb_pipeisoc (urb->pipe)); |
| 1084 | |
| 1085 | /* clear all state linking urb to this dev (and hcd) */ |
| 1086 | |
| 1087 | spin_lock_irqsave (&hcd_data_lock, flags); |
| 1088 | list_del_init (&urb->urb_list); |
| 1089 | spin_unlock_irqrestore (&hcd_data_lock, flags); |
| 1090 | usb_put_dev (urb->dev); |
| 1091 | } |
| 1092 | |
| 1093 | |
| 1094 | /* may be called in any context with a valid urb->dev usecount |
| 1095 | * caller surrenders "ownership" of urb |
| 1096 | * expects usb_submit_urb() to have sanity checked and conditioned all |
| 1097 | * inputs in the urb |
| 1098 | */ |
Al Viro | 55016f1 | 2005-10-21 03:21:58 -0400 | [diff] [blame] | 1099 | static int hcd_submit_urb (struct urb *urb, gfp_t mem_flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1100 | { |
| 1101 | int status; |
| 1102 | struct usb_hcd *hcd = urb->dev->bus->hcpriv; |
| 1103 | struct usb_host_endpoint *ep; |
| 1104 | unsigned long flags; |
| 1105 | |
| 1106 | if (!hcd) |
| 1107 | return -ENODEV; |
| 1108 | |
| 1109 | usbmon_urb_submit(&hcd->self, urb); |
| 1110 | |
| 1111 | /* |
| 1112 | * Atomically queue the urb, first to our records, then to the HCD. |
| 1113 | * Access to urb->status is controlled by urb->lock ... changes on |
| 1114 | * i/o completion (normal or fault) or unlinking. |
| 1115 | */ |
| 1116 | |
| 1117 | // FIXME: verify that quiescing hc works right (RH cleans up) |
| 1118 | |
| 1119 | spin_lock_irqsave (&hcd_data_lock, flags); |
| 1120 | ep = (usb_pipein(urb->pipe) ? urb->dev->ep_in : urb->dev->ep_out) |
| 1121 | [usb_pipeendpoint(urb->pipe)]; |
| 1122 | if (unlikely (!ep)) |
| 1123 | status = -ENOENT; |
| 1124 | else if (unlikely (urb->reject)) |
| 1125 | status = -EPERM; |
| 1126 | else switch (hcd->state) { |
| 1127 | case HC_STATE_RUNNING: |
| 1128 | case HC_STATE_RESUMING: |
David Brownell | 979d519 | 2005-09-22 22:32:24 -0700 | [diff] [blame] | 1129 | doit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1130 | usb_get_dev (urb->dev); |
| 1131 | list_add_tail (&urb->urb_list, &ep->urb_list); |
| 1132 | status = 0; |
| 1133 | break; |
David Brownell | 979d519 | 2005-09-22 22:32:24 -0700 | [diff] [blame] | 1134 | case HC_STATE_SUSPENDED: |
| 1135 | /* HC upstream links (register access, wakeup signaling) can work |
| 1136 | * even when the downstream links (and DMA etc) are quiesced; let |
| 1137 | * usbcore talk to the root hub. |
| 1138 | */ |
| 1139 | if (hcd->self.controller->power.power_state.event == PM_EVENT_ON |
| 1140 | && urb->dev->parent == NULL) |
| 1141 | goto doit; |
| 1142 | /* FALL THROUGH */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | default: |
| 1144 | status = -ESHUTDOWN; |
| 1145 | break; |
| 1146 | } |
| 1147 | spin_unlock_irqrestore (&hcd_data_lock, flags); |
| 1148 | if (status) { |
| 1149 | INIT_LIST_HEAD (&urb->urb_list); |
| 1150 | usbmon_urb_submit_error(&hcd->self, urb, status); |
| 1151 | return status; |
| 1152 | } |
| 1153 | |
| 1154 | /* increment urb's reference count as part of giving it to the HCD |
| 1155 | * (which now controls it). HCD guarantees that it either returns |
| 1156 | * an error or calls giveback(), but not both. |
| 1157 | */ |
| 1158 | urb = usb_get_urb (urb); |
| 1159 | atomic_inc (&urb->use_count); |
| 1160 | |
| 1161 | if (urb->dev == hcd->self.root_hub) { |
| 1162 | /* NOTE: requirement on hub callers (usbfs and the hub |
| 1163 | * driver, for now) that URBs' urb->transfer_buffer be |
| 1164 | * valid and usb_buffer_{sync,unmap}() not be needed, since |
| 1165 | * they could clobber root hub response data. |
| 1166 | */ |
| 1167 | status = rh_urb_enqueue (hcd, urb); |
| 1168 | goto done; |
| 1169 | } |
| 1170 | |
| 1171 | /* lower level hcd code should use *_dma exclusively, |
| 1172 | * unless it uses pio or talks to another transport. |
| 1173 | */ |
| 1174 | if (hcd->self.controller->dma_mask) { |
| 1175 | if (usb_pipecontrol (urb->pipe) |
| 1176 | && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP)) |
| 1177 | urb->setup_dma = dma_map_single ( |
| 1178 | hcd->self.controller, |
| 1179 | urb->setup_packet, |
| 1180 | sizeof (struct usb_ctrlrequest), |
| 1181 | DMA_TO_DEVICE); |
| 1182 | if (urb->transfer_buffer_length != 0 |
| 1183 | && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)) |
| 1184 | urb->transfer_dma = dma_map_single ( |
| 1185 | hcd->self.controller, |
| 1186 | urb->transfer_buffer, |
| 1187 | urb->transfer_buffer_length, |
| 1188 | usb_pipein (urb->pipe) |
| 1189 | ? DMA_FROM_DEVICE |
| 1190 | : DMA_TO_DEVICE); |
| 1191 | } |
| 1192 | |
| 1193 | status = hcd->driver->urb_enqueue (hcd, ep, urb, mem_flags); |
| 1194 | done: |
| 1195 | if (unlikely (status)) { |
| 1196 | urb_unlink (urb); |
| 1197 | atomic_dec (&urb->use_count); |
| 1198 | if (urb->reject) |
| 1199 | wake_up (&usb_kill_urb_queue); |
| 1200 | usb_put_urb (urb); |
| 1201 | usbmon_urb_submit_error(&hcd->self, urb, status); |
| 1202 | } |
| 1203 | return status; |
| 1204 | } |
| 1205 | |
| 1206 | /*-------------------------------------------------------------------------*/ |
| 1207 | |
| 1208 | /* called in any context */ |
| 1209 | static int hcd_get_frame_number (struct usb_device *udev) |
| 1210 | { |
| 1211 | struct usb_hcd *hcd = (struct usb_hcd *)udev->bus->hcpriv; |
| 1212 | if (!HC_IS_RUNNING (hcd->state)) |
| 1213 | return -ESHUTDOWN; |
| 1214 | return hcd->driver->get_frame_number (hcd); |
| 1215 | } |
| 1216 | |
| 1217 | /*-------------------------------------------------------------------------*/ |
| 1218 | |
| 1219 | /* this makes the hcd giveback() the urb more quickly, by kicking it |
| 1220 | * off hardware queues (which may take a while) and returning it as |
| 1221 | * soon as practical. we've already set up the urb's return status, |
| 1222 | * but we can't know if the callback completed already. |
| 1223 | */ |
| 1224 | static int |
| 1225 | unlink1 (struct usb_hcd *hcd, struct urb *urb) |
| 1226 | { |
| 1227 | int value; |
| 1228 | |
| 1229 | if (urb->dev == hcd->self.root_hub) |
| 1230 | value = usb_rh_urb_dequeue (hcd, urb); |
| 1231 | else { |
| 1232 | |
| 1233 | /* The only reason an HCD might fail this call is if |
| 1234 | * it has not yet fully queued the urb to begin with. |
| 1235 | * Such failures should be harmless. */ |
| 1236 | value = hcd->driver->urb_dequeue (hcd, urb); |
| 1237 | } |
| 1238 | |
| 1239 | if (value != 0) |
| 1240 | dev_dbg (hcd->self.controller, "dequeue %p --> %d\n", |
| 1241 | urb, value); |
| 1242 | return value; |
| 1243 | } |
| 1244 | |
| 1245 | /* |
| 1246 | * called in any context |
| 1247 | * |
| 1248 | * caller guarantees urb won't be recycled till both unlink() |
| 1249 | * and the urb's completion function return |
| 1250 | */ |
| 1251 | static int hcd_unlink_urb (struct urb *urb, int status) |
| 1252 | { |
| 1253 | struct usb_host_endpoint *ep; |
| 1254 | struct usb_hcd *hcd = NULL; |
| 1255 | struct device *sys = NULL; |
| 1256 | unsigned long flags; |
| 1257 | struct list_head *tmp; |
| 1258 | int retval; |
| 1259 | |
| 1260 | if (!urb) |
| 1261 | return -EINVAL; |
| 1262 | if (!urb->dev || !urb->dev->bus) |
| 1263 | return -ENODEV; |
| 1264 | ep = (usb_pipein(urb->pipe) ? urb->dev->ep_in : urb->dev->ep_out) |
| 1265 | [usb_pipeendpoint(urb->pipe)]; |
| 1266 | if (!ep) |
| 1267 | return -ENODEV; |
| 1268 | |
| 1269 | /* |
| 1270 | * we contend for urb->status with the hcd core, |
| 1271 | * which changes it while returning the urb. |
| 1272 | * |
| 1273 | * Caller guaranteed that the urb pointer hasn't been freed, and |
| 1274 | * that it was submitted. But as a rule it can't know whether or |
| 1275 | * not it's already been unlinked ... so we respect the reversed |
| 1276 | * lock sequence needed for the usb_hcd_giveback_urb() code paths |
| 1277 | * (urb lock, then hcd_data_lock) in case some other CPU is now |
| 1278 | * unlinking it. |
| 1279 | */ |
| 1280 | spin_lock_irqsave (&urb->lock, flags); |
| 1281 | spin_lock (&hcd_data_lock); |
| 1282 | |
| 1283 | sys = &urb->dev->dev; |
| 1284 | hcd = urb->dev->bus->hcpriv; |
| 1285 | if (hcd == NULL) { |
| 1286 | retval = -ENODEV; |
| 1287 | goto done; |
| 1288 | } |
| 1289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | /* insist the urb is still queued */ |
| 1291 | list_for_each(tmp, &ep->urb_list) { |
| 1292 | if (tmp == &urb->urb_list) |
| 1293 | break; |
| 1294 | } |
| 1295 | if (tmp != &urb->urb_list) { |
| 1296 | retval = -EIDRM; |
| 1297 | goto done; |
| 1298 | } |
| 1299 | |
| 1300 | /* Any status except -EINPROGRESS means something already started to |
| 1301 | * unlink this URB from the hardware. So there's no more work to do. |
| 1302 | */ |
| 1303 | if (urb->status != -EINPROGRESS) { |
| 1304 | retval = -EBUSY; |
| 1305 | goto done; |
| 1306 | } |
| 1307 | |
| 1308 | /* IRQ setup can easily be broken so that USB controllers |
| 1309 | * never get completion IRQs ... maybe even the ones we need to |
| 1310 | * finish unlinking the initial failed usb_set_address() |
| 1311 | * or device descriptor fetch. |
| 1312 | */ |
Benjamin Herrenschmidt | 8de9840 | 2005-11-25 09:59:46 +1100 | [diff] [blame] | 1313 | if (!test_bit(HCD_FLAG_SAW_IRQ, &hcd->flags) |
| 1314 | && hcd->self.root_hub != urb->dev) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | dev_warn (hcd->self.controller, "Unlink after no-IRQ? " |
| 1316 | "Controller is probably using the wrong IRQ." |
| 1317 | "\n"); |
Benjamin Herrenschmidt | 8de9840 | 2005-11-25 09:59:46 +1100 | [diff] [blame] | 1318 | set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | } |
| 1320 | |
| 1321 | urb->status = status; |
| 1322 | |
| 1323 | spin_unlock (&hcd_data_lock); |
| 1324 | spin_unlock_irqrestore (&urb->lock, flags); |
| 1325 | |
| 1326 | retval = unlink1 (hcd, urb); |
| 1327 | if (retval == 0) |
| 1328 | retval = -EINPROGRESS; |
| 1329 | return retval; |
| 1330 | |
| 1331 | done: |
| 1332 | spin_unlock (&hcd_data_lock); |
| 1333 | spin_unlock_irqrestore (&urb->lock, flags); |
| 1334 | if (retval != -EIDRM && sys && sys->driver) |
| 1335 | dev_dbg (sys, "hcd_unlink_urb %p fail %d\n", urb, retval); |
| 1336 | return retval; |
| 1337 | } |
| 1338 | |
| 1339 | /*-------------------------------------------------------------------------*/ |
| 1340 | |
| 1341 | /* disables the endpoint: cancels any pending urbs, then synchronizes with |
| 1342 | * the hcd to make sure all endpoint state is gone from hardware. use for |
| 1343 | * set_configuration, set_interface, driver removal, physical disconnect. |
| 1344 | * |
| 1345 | * example: a qh stored in ep->hcpriv, holding state related to endpoint |
| 1346 | * type, maxpacket size, toggle, halt status, and scheduling. |
| 1347 | */ |
| 1348 | static void |
| 1349 | hcd_endpoint_disable (struct usb_device *udev, struct usb_host_endpoint *ep) |
| 1350 | { |
| 1351 | struct usb_hcd *hcd; |
| 1352 | struct urb *urb; |
| 1353 | |
| 1354 | hcd = udev->bus->hcpriv; |
| 1355 | |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 1356 | WARN_ON (!HC_IS_RUNNING (hcd->state) && hcd->state != HC_STATE_HALT && |
| 1357 | udev->state != USB_STATE_NOTATTACHED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1358 | |
| 1359 | local_irq_disable (); |
| 1360 | |
| 1361 | /* FIXME move most of this into message.c as part of its |
| 1362 | * endpoint disable logic |
| 1363 | */ |
| 1364 | |
| 1365 | /* ep is already gone from udev->ep_{in,out}[]; no more submits */ |
| 1366 | rescan: |
| 1367 | spin_lock (&hcd_data_lock); |
| 1368 | list_for_each_entry (urb, &ep->urb_list, urb_list) { |
| 1369 | int tmp; |
| 1370 | |
| 1371 | /* another cpu may be in hcd, spinning on hcd_data_lock |
| 1372 | * to giveback() this urb. the races here should be |
| 1373 | * small, but a full fix needs a new "can't submit" |
| 1374 | * urb state. |
| 1375 | * FIXME urb->reject should allow that... |
| 1376 | */ |
| 1377 | if (urb->status != -EINPROGRESS) |
| 1378 | continue; |
| 1379 | usb_get_urb (urb); |
| 1380 | spin_unlock (&hcd_data_lock); |
| 1381 | |
| 1382 | spin_lock (&urb->lock); |
| 1383 | tmp = urb->status; |
| 1384 | if (tmp == -EINPROGRESS) |
| 1385 | urb->status = -ESHUTDOWN; |
| 1386 | spin_unlock (&urb->lock); |
| 1387 | |
| 1388 | /* kick hcd unless it's already returning this */ |
| 1389 | if (tmp == -EINPROGRESS) { |
| 1390 | tmp = urb->pipe; |
| 1391 | unlink1 (hcd, urb); |
| 1392 | dev_dbg (hcd->self.controller, |
| 1393 | "shutdown urb %p pipe %08x ep%d%s%s\n", |
| 1394 | urb, tmp, usb_pipeendpoint (tmp), |
| 1395 | (tmp & USB_DIR_IN) ? "in" : "out", |
| 1396 | ({ char *s; \ |
| 1397 | switch (usb_pipetype (tmp)) { \ |
| 1398 | case PIPE_CONTROL: s = ""; break; \ |
| 1399 | case PIPE_BULK: s = "-bulk"; break; \ |
| 1400 | case PIPE_INTERRUPT: s = "-intr"; break; \ |
| 1401 | default: s = "-iso"; break; \ |
| 1402 | }; s;})); |
| 1403 | } |
| 1404 | usb_put_urb (urb); |
| 1405 | |
| 1406 | /* list contents may have changed */ |
| 1407 | goto rescan; |
| 1408 | } |
| 1409 | spin_unlock (&hcd_data_lock); |
| 1410 | local_irq_enable (); |
| 1411 | |
| 1412 | /* synchronize with the hardware, so old configuration state |
| 1413 | * clears out immediately (and will be freed). |
| 1414 | */ |
| 1415 | might_sleep (); |
| 1416 | if (hcd->driver->endpoint_disable) |
| 1417 | hcd->driver->endpoint_disable (hcd, ep); |
| 1418 | } |
| 1419 | |
| 1420 | /*-------------------------------------------------------------------------*/ |
| 1421 | |
David Brownell | 9293677 | 2005-09-22 22:32:11 -0700 | [diff] [blame] | 1422 | #ifdef CONFIG_PM |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1423 | |
Alan Stern | 0c0382e | 2005-10-13 17:08:02 -0400 | [diff] [blame] | 1424 | int hcd_bus_suspend (struct usb_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1425 | { |
| 1426 | struct usb_hcd *hcd; |
David Brownell | 9293677 | 2005-09-22 22:32:11 -0700 | [diff] [blame] | 1427 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | |
| 1429 | hcd = container_of (bus, struct usb_hcd, self); |
Alan Stern | 0c0382e | 2005-10-13 17:08:02 -0400 | [diff] [blame] | 1430 | if (!hcd->driver->bus_suspend) |
David Brownell | 9293677 | 2005-09-22 22:32:11 -0700 | [diff] [blame] | 1431 | return -ENOENT; |
| 1432 | hcd->state = HC_STATE_QUIESCING; |
Alan Stern | 0c0382e | 2005-10-13 17:08:02 -0400 | [diff] [blame] | 1433 | status = hcd->driver->bus_suspend (hcd); |
David Brownell | 9293677 | 2005-09-22 22:32:11 -0700 | [diff] [blame] | 1434 | if (status == 0) |
| 1435 | hcd->state = HC_STATE_SUSPENDED; |
| 1436 | else |
| 1437 | dev_dbg(&bus->root_hub->dev, "%s fail, err %d\n", |
| 1438 | "suspend", status); |
| 1439 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 | } |
| 1441 | |
Alan Stern | 0c0382e | 2005-10-13 17:08:02 -0400 | [diff] [blame] | 1442 | int hcd_bus_resume (struct usb_bus *bus) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | { |
| 1444 | struct usb_hcd *hcd; |
David Brownell | 9293677 | 2005-09-22 22:32:11 -0700 | [diff] [blame] | 1445 | int status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | |
| 1447 | hcd = container_of (bus, struct usb_hcd, self); |
Alan Stern | 0c0382e | 2005-10-13 17:08:02 -0400 | [diff] [blame] | 1448 | if (!hcd->driver->bus_resume) |
David Brownell | 9293677 | 2005-09-22 22:32:11 -0700 | [diff] [blame] | 1449 | return -ENOENT; |
David Brownell | 979d519 | 2005-09-22 22:32:24 -0700 | [diff] [blame] | 1450 | if (hcd->state == HC_STATE_RUNNING) |
| 1451 | return 0; |
David Brownell | 9293677 | 2005-09-22 22:32:11 -0700 | [diff] [blame] | 1452 | hcd->state = HC_STATE_RESUMING; |
Alan Stern | 0c0382e | 2005-10-13 17:08:02 -0400 | [diff] [blame] | 1453 | status = hcd->driver->bus_resume (hcd); |
David Brownell | 9293677 | 2005-09-22 22:32:11 -0700 | [diff] [blame] | 1454 | if (status == 0) |
| 1455 | hcd->state = HC_STATE_RUNNING; |
| 1456 | else { |
| 1457 | dev_dbg(&bus->root_hub->dev, "%s fail, err %d\n", |
| 1458 | "resume", status); |
| 1459 | usb_hc_died(hcd); |
| 1460 | } |
| 1461 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | } |
| 1463 | |
David Brownell | 979d519 | 2005-09-22 22:32:24 -0700 | [diff] [blame] | 1464 | /* |
| 1465 | * usb_hcd_suspend_root_hub - HCD autosuspends downstream ports |
| 1466 | * @hcd: host controller for this root hub |
| 1467 | * |
| 1468 | * This call arranges that usb_hcd_resume_root_hub() is safe to call later; |
| 1469 | * that the HCD's root hub polling is deactivated; and that the root's hub |
| 1470 | * driver is suspended. HCDs may call this to autosuspend when their root |
| 1471 | * hub's downstream ports are all inactive: unpowered, disconnected, |
| 1472 | * disabled, or suspended. |
| 1473 | * |
| 1474 | * The HCD will autoresume on device connect change detection (using SRP |
| 1475 | * or a D+/D- pullup). The HCD also autoresumes on remote wakeup signaling |
| 1476 | * from any ports that are suspended (if that is enabled). In most cases, |
| 1477 | * overcurrent signaling (on powered ports) will also start autoresume. |
| 1478 | * |
| 1479 | * Always called with IRQs blocked. |
| 1480 | */ |
| 1481 | void usb_hcd_suspend_root_hub (struct usb_hcd *hcd) |
| 1482 | { |
| 1483 | struct urb *urb; |
| 1484 | |
| 1485 | spin_lock (&hcd_root_hub_lock); |
| 1486 | usb_suspend_root_hub (hcd->self.root_hub); |
| 1487 | |
| 1488 | /* force status urb to complete/unlink while suspended */ |
| 1489 | if (hcd->status_urb) { |
| 1490 | urb = hcd->status_urb; |
| 1491 | urb->status = -ECONNRESET; |
| 1492 | urb->hcpriv = NULL; |
| 1493 | urb->actual_length = 0; |
| 1494 | |
| 1495 | del_timer (&hcd->rh_timer); |
| 1496 | hcd->poll_pending = 0; |
| 1497 | hcd->status_urb = NULL; |
| 1498 | } else |
| 1499 | urb = NULL; |
| 1500 | spin_unlock (&hcd_root_hub_lock); |
| 1501 | hcd->state = HC_STATE_SUSPENDED; |
| 1502 | |
| 1503 | if (urb) |
| 1504 | usb_hcd_giveback_urb (hcd, urb, NULL); |
| 1505 | } |
| 1506 | EXPORT_SYMBOL_GPL(usb_hcd_suspend_root_hub); |
| 1507 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1508 | /** |
| 1509 | * usb_hcd_resume_root_hub - called by HCD to resume its root hub |
| 1510 | * @hcd: host controller for this root hub |
| 1511 | * |
| 1512 | * The USB host controller calls this function when its root hub is |
| 1513 | * suspended (with the remote wakeup feature enabled) and a remote |
| 1514 | * wakeup request is received. It queues a request for khubd to |
David Brownell | 979d519 | 2005-09-22 22:32:24 -0700 | [diff] [blame] | 1515 | * resume the root hub (that is, manage its downstream ports again). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1516 | */ |
| 1517 | void usb_hcd_resume_root_hub (struct usb_hcd *hcd) |
| 1518 | { |
| 1519 | unsigned long flags; |
| 1520 | |
| 1521 | spin_lock_irqsave (&hcd_root_hub_lock, flags); |
| 1522 | if (hcd->rh_registered) |
| 1523 | usb_resume_root_hub (hcd->self.root_hub); |
| 1524 | spin_unlock_irqrestore (&hcd_root_hub_lock, flags); |
| 1525 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1526 | EXPORT_SYMBOL_GPL(usb_hcd_resume_root_hub); |
| 1527 | |
David Brownell | 9293677 | 2005-09-22 22:32:11 -0700 | [diff] [blame] | 1528 | #endif |
| 1529 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1530 | /*-------------------------------------------------------------------------*/ |
| 1531 | |
| 1532 | #ifdef CONFIG_USB_OTG |
| 1533 | |
| 1534 | /** |
| 1535 | * usb_bus_start_enum - start immediate enumeration (for OTG) |
| 1536 | * @bus: the bus (must use hcd framework) |
| 1537 | * @port_num: 1-based number of port; usually bus->otg_port |
| 1538 | * Context: in_interrupt() |
| 1539 | * |
| 1540 | * Starts enumeration, with an immediate reset followed later by |
| 1541 | * khubd identifying and possibly configuring the device. |
| 1542 | * This is needed by OTG controller drivers, where it helps meet |
| 1543 | * HNP protocol timing requirements for starting a port reset. |
| 1544 | */ |
| 1545 | int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num) |
| 1546 | { |
| 1547 | struct usb_hcd *hcd; |
| 1548 | int status = -EOPNOTSUPP; |
| 1549 | |
| 1550 | /* NOTE: since HNP can't start by grabbing the bus's address0_sem, |
| 1551 | * boards with root hubs hooked up to internal devices (instead of |
| 1552 | * just the OTG port) may need more attention to resetting... |
| 1553 | */ |
| 1554 | hcd = container_of (bus, struct usb_hcd, self); |
| 1555 | if (port_num && hcd->driver->start_port_reset) |
| 1556 | status = hcd->driver->start_port_reset(hcd, port_num); |
| 1557 | |
| 1558 | /* run khubd shortly after (first) root port reset finishes; |
| 1559 | * it may issue others, until at least 50 msecs have passed. |
| 1560 | */ |
| 1561 | if (status == 0) |
| 1562 | mod_timer(&hcd->rh_timer, jiffies + msecs_to_jiffies(10)); |
| 1563 | return status; |
| 1564 | } |
| 1565 | EXPORT_SYMBOL (usb_bus_start_enum); |
| 1566 | |
| 1567 | #endif |
| 1568 | |
| 1569 | /*-------------------------------------------------------------------------*/ |
| 1570 | |
| 1571 | /* |
| 1572 | * usb_hcd_operations - adapts usb_bus framework to HCD framework (bus glue) |
| 1573 | */ |
| 1574 | static struct usb_operations usb_hcd_operations = { |
| 1575 | .get_frame_number = hcd_get_frame_number, |
| 1576 | .submit_urb = hcd_submit_urb, |
| 1577 | .unlink_urb = hcd_unlink_urb, |
| 1578 | .buffer_alloc = hcd_buffer_alloc, |
| 1579 | .buffer_free = hcd_buffer_free, |
| 1580 | .disable = hcd_endpoint_disable, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1581 | }; |
| 1582 | |
| 1583 | /*-------------------------------------------------------------------------*/ |
| 1584 | |
| 1585 | /** |
| 1586 | * usb_hcd_giveback_urb - return URB from HCD to device driver |
| 1587 | * @hcd: host controller returning the URB |
| 1588 | * @urb: urb being returned to the USB device driver. |
| 1589 | * @regs: pt_regs, passed down to the URB completion handler |
| 1590 | * Context: in_interrupt() |
| 1591 | * |
| 1592 | * This hands the URB from HCD to its USB device driver, using its |
| 1593 | * completion function. The HCD has freed all per-urb resources |
| 1594 | * (and is done using urb->hcpriv). It also released all HCD locks; |
| 1595 | * the device driver won't cause problems if it frees, modifies, |
| 1596 | * or resubmits this URB. |
| 1597 | */ |
| 1598 | void usb_hcd_giveback_urb (struct usb_hcd *hcd, struct urb *urb, struct pt_regs *regs) |
| 1599 | { |
| 1600 | int at_root_hub; |
| 1601 | |
| 1602 | at_root_hub = (urb->dev == hcd->self.root_hub); |
| 1603 | urb_unlink (urb); |
| 1604 | |
| 1605 | /* lower level hcd code should use *_dma exclusively */ |
| 1606 | if (hcd->self.controller->dma_mask && !at_root_hub) { |
| 1607 | if (usb_pipecontrol (urb->pipe) |
| 1608 | && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP)) |
| 1609 | dma_unmap_single (hcd->self.controller, urb->setup_dma, |
| 1610 | sizeof (struct usb_ctrlrequest), |
| 1611 | DMA_TO_DEVICE); |
| 1612 | if (urb->transfer_buffer_length != 0 |
| 1613 | && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)) |
| 1614 | dma_unmap_single (hcd->self.controller, |
| 1615 | urb->transfer_dma, |
| 1616 | urb->transfer_buffer_length, |
| 1617 | usb_pipein (urb->pipe) |
| 1618 | ? DMA_FROM_DEVICE |
| 1619 | : DMA_TO_DEVICE); |
| 1620 | } |
| 1621 | |
| 1622 | usbmon_urb_complete (&hcd->self, urb); |
| 1623 | /* pass ownership to the completion handler */ |
| 1624 | urb->complete (urb, regs); |
| 1625 | atomic_dec (&urb->use_count); |
| 1626 | if (unlikely (urb->reject)) |
| 1627 | wake_up (&usb_kill_urb_queue); |
| 1628 | usb_put_urb (urb); |
| 1629 | } |
| 1630 | EXPORT_SYMBOL (usb_hcd_giveback_urb); |
| 1631 | |
| 1632 | /*-------------------------------------------------------------------------*/ |
| 1633 | |
| 1634 | /** |
| 1635 | * usb_hcd_irq - hook IRQs to HCD framework (bus glue) |
| 1636 | * @irq: the IRQ being raised |
| 1637 | * @__hcd: pointer to the HCD whose IRQ is being signaled |
| 1638 | * @r: saved hardware registers |
| 1639 | * |
| 1640 | * If the controller isn't HALTed, calls the driver's irq handler. |
| 1641 | * Checks whether the controller is now dead. |
| 1642 | */ |
| 1643 | irqreturn_t usb_hcd_irq (int irq, void *__hcd, struct pt_regs * r) |
| 1644 | { |
| 1645 | struct usb_hcd *hcd = __hcd; |
| 1646 | int start = hcd->state; |
| 1647 | |
Benjamin Herrenschmidt | 8de9840 | 2005-11-25 09:59:46 +1100 | [diff] [blame] | 1648 | if (unlikely(start == HC_STATE_HALT || |
| 1649 | !test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1650 | return IRQ_NONE; |
| 1651 | if (hcd->driver->irq (hcd, r) == IRQ_NONE) |
| 1652 | return IRQ_NONE; |
| 1653 | |
Benjamin Herrenschmidt | 8de9840 | 2005-11-25 09:59:46 +1100 | [diff] [blame] | 1654 | set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags); |
| 1655 | |
| 1656 | if (unlikely(hcd->state == HC_STATE_HALT)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1657 | usb_hc_died (hcd); |
| 1658 | return IRQ_HANDLED; |
| 1659 | } |
| 1660 | |
| 1661 | /*-------------------------------------------------------------------------*/ |
| 1662 | |
| 1663 | /** |
| 1664 | * usb_hc_died - report abnormal shutdown of a host controller (bus glue) |
| 1665 | * @hcd: pointer to the HCD representing the controller |
| 1666 | * |
| 1667 | * This is called by bus glue to report a USB host controller that died |
| 1668 | * while operations may still have been pending. It's called automatically |
| 1669 | * by the PCI glue, so only glue for non-PCI busses should need to call it. |
| 1670 | */ |
| 1671 | void usb_hc_died (struct usb_hcd *hcd) |
| 1672 | { |
| 1673 | unsigned long flags; |
| 1674 | |
| 1675 | dev_err (hcd->self.controller, "HC died; cleaning up\n"); |
| 1676 | |
| 1677 | spin_lock_irqsave (&hcd_root_hub_lock, flags); |
| 1678 | if (hcd->rh_registered) { |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 1679 | hcd->poll_rh = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1680 | |
| 1681 | /* make khubd clean up old urbs and devices */ |
| 1682 | usb_set_device_state (hcd->self.root_hub, |
| 1683 | USB_STATE_NOTATTACHED); |
| 1684 | usb_kick_khubd (hcd->self.root_hub); |
| 1685 | } |
| 1686 | spin_unlock_irqrestore (&hcd_root_hub_lock, flags); |
| 1687 | } |
| 1688 | EXPORT_SYMBOL_GPL (usb_hc_died); |
| 1689 | |
| 1690 | /*-------------------------------------------------------------------------*/ |
| 1691 | |
| 1692 | static void hcd_release (struct usb_bus *bus) |
| 1693 | { |
| 1694 | struct usb_hcd *hcd; |
| 1695 | |
| 1696 | hcd = container_of(bus, struct usb_hcd, self); |
| 1697 | kfree(hcd); |
| 1698 | } |
| 1699 | |
| 1700 | /** |
| 1701 | * usb_create_hcd - create and initialize an HCD structure |
| 1702 | * @driver: HC driver that will use this hcd |
| 1703 | * @dev: device for this HC, stored in hcd->self.controller |
| 1704 | * @bus_name: value to store in hcd->self.bus_name |
| 1705 | * Context: !in_interrupt() |
| 1706 | * |
| 1707 | * Allocate a struct usb_hcd, with extra space at the end for the |
| 1708 | * HC driver's private data. Initialize the generic members of the |
| 1709 | * hcd structure. |
| 1710 | * |
| 1711 | * If memory is unavailable, returns NULL. |
| 1712 | */ |
| 1713 | struct usb_hcd *usb_create_hcd (const struct hc_driver *driver, |
| 1714 | struct device *dev, char *bus_name) |
| 1715 | { |
| 1716 | struct usb_hcd *hcd; |
| 1717 | |
Pekka Enberg | 7b842b6 | 2005-09-06 15:18:34 -0700 | [diff] [blame] | 1718 | hcd = kzalloc(sizeof(*hcd) + driver->hcd_priv_size, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1719 | if (!hcd) { |
| 1720 | dev_dbg (dev, "hcd alloc failed\n"); |
| 1721 | return NULL; |
| 1722 | } |
| 1723 | dev_set_drvdata(dev, hcd); |
| 1724 | |
| 1725 | usb_bus_init(&hcd->self); |
| 1726 | hcd->self.op = &usb_hcd_operations; |
| 1727 | hcd->self.hcpriv = hcd; |
| 1728 | hcd->self.release = &hcd_release; |
| 1729 | hcd->self.controller = dev; |
| 1730 | hcd->self.bus_name = bus_name; |
| 1731 | |
| 1732 | init_timer(&hcd->rh_timer); |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 1733 | hcd->rh_timer.function = rh_timer_func; |
| 1734 | hcd->rh_timer.data = (unsigned long) hcd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1735 | |
| 1736 | hcd->driver = driver; |
| 1737 | hcd->product_desc = (driver->product_desc) ? driver->product_desc : |
| 1738 | "USB Host Controller"; |
| 1739 | |
| 1740 | return hcd; |
| 1741 | } |
| 1742 | EXPORT_SYMBOL (usb_create_hcd); |
| 1743 | |
| 1744 | void usb_put_hcd (struct usb_hcd *hcd) |
| 1745 | { |
| 1746 | dev_set_drvdata(hcd->self.controller, NULL); |
| 1747 | usb_bus_put(&hcd->self); |
| 1748 | } |
| 1749 | EXPORT_SYMBOL (usb_put_hcd); |
| 1750 | |
| 1751 | /** |
| 1752 | * usb_add_hcd - finish generic HCD structure initialization and register |
| 1753 | * @hcd: the usb_hcd structure to initialize |
| 1754 | * @irqnum: Interrupt line to allocate |
| 1755 | * @irqflags: Interrupt type flags |
| 1756 | * |
| 1757 | * Finish the remaining parts of generic HCD initialization: allocate the |
| 1758 | * buffers of consistent memory, register the bus, request the IRQ line, |
| 1759 | * and call the driver's reset() and start() routines. |
| 1760 | */ |
| 1761 | int usb_add_hcd(struct usb_hcd *hcd, |
| 1762 | unsigned int irqnum, unsigned long irqflags) |
| 1763 | { |
Alan Stern | 8ec8d20 | 2005-04-25 11:25:17 -0400 | [diff] [blame] | 1764 | int retval; |
| 1765 | struct usb_device *rhdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1766 | |
| 1767 | dev_info(hcd->self.controller, "%s\n", hcd->product_desc); |
| 1768 | |
Benjamin Herrenschmidt | 8de9840 | 2005-11-25 09:59:46 +1100 | [diff] [blame] | 1769 | set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags); |
| 1770 | |
David Brownell | b1e8f0a | 2006-01-23 15:25:40 -0800 | [diff] [blame] | 1771 | /* HC is in reset state, but accessible. Now do the one-time init, |
| 1772 | * bottom up so that hcds can customize the root hubs before khubd |
| 1773 | * starts talking to them. (Note, bus id is assigned early too.) |
| 1774 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1775 | if ((retval = hcd_buffer_create(hcd)) != 0) { |
| 1776 | dev_dbg(hcd->self.controller, "pool alloc failed\n"); |
| 1777 | return retval; |
| 1778 | } |
| 1779 | |
| 1780 | if ((retval = usb_register_bus(&hcd->self)) < 0) |
Alan Stern | 8ec8d20 | 2005-04-25 11:25:17 -0400 | [diff] [blame] | 1781 | goto err_register_bus; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1782 | |
David Brownell | b1e8f0a | 2006-01-23 15:25:40 -0800 | [diff] [blame] | 1783 | if ((rhdev = usb_alloc_dev(NULL, &hcd->self, 0)) == NULL) { |
| 1784 | dev_err(hcd->self.controller, "unable to allocate root hub\n"); |
| 1785 | retval = -ENOMEM; |
| 1786 | goto err_allocate_root_hub; |
| 1787 | } |
| 1788 | rhdev->speed = (hcd->driver->flags & HCD_USB2) ? USB_SPEED_HIGH : |
| 1789 | USB_SPEED_FULL; |
| 1790 | hcd->self.root_hub = rhdev; |
| 1791 | |
| 1792 | /* "reset" is misnamed; its role is now one-time init. the controller |
| 1793 | * should already have been reset (and boot firmware kicked off etc). |
| 1794 | */ |
| 1795 | if (hcd->driver->reset && (retval = hcd->driver->reset(hcd)) < 0) { |
| 1796 | dev_err(hcd->self.controller, "can't setup\n"); |
| 1797 | goto err_hcd_driver_setup; |
| 1798 | } |
| 1799 | |
| 1800 | /* wakeup flag init is in transition; for now we can't rely on PCI to |
| 1801 | * initialize these bits properly, so we let reset() override it. |
| 1802 | * This init should _precede_ the reset() once PCI behaves. |
| 1803 | */ |
| 1804 | device_init_wakeup(&rhdev->dev, |
| 1805 | device_can_wakeup(hcd->self.controller)); |
| 1806 | |
| 1807 | // ... all these hcd->*_wakeup flags will vanish |
| 1808 | hcd->can_wakeup = device_can_wakeup(hcd->self.controller); |
| 1809 | |
| 1810 | /* hcd->driver->reset() reported can_wakeup, probably with |
| 1811 | * assistance from board's boot firmware. |
| 1812 | * NOTE: normal devices won't enable wakeup by default. |
| 1813 | */ |
| 1814 | if (hcd->can_wakeup) |
| 1815 | dev_dbg(hcd->self.controller, "supports USB remote wakeup\n"); |
| 1816 | hcd->remote_wakeup = hcd->can_wakeup; |
| 1817 | |
| 1818 | /* enable irqs just before we start the controller */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1819 | if (hcd->driver->irq) { |
| 1820 | char buf[8], *bufp = buf; |
| 1821 | |
| 1822 | #ifdef __sparc__ |
| 1823 | bufp = __irq_itoa(irqnum); |
| 1824 | #else |
| 1825 | sprintf(buf, "%d", irqnum); |
| 1826 | #endif |
| 1827 | |
| 1828 | snprintf(hcd->irq_descr, sizeof(hcd->irq_descr), "%s:usb%d", |
| 1829 | hcd->driver->description, hcd->self.busnum); |
| 1830 | if ((retval = request_irq(irqnum, &usb_hcd_irq, irqflags, |
| 1831 | hcd->irq_descr, hcd)) != 0) { |
| 1832 | dev_err(hcd->self.controller, |
| 1833 | "request interrupt %s failed\n", bufp); |
Alan Stern | 8ec8d20 | 2005-04-25 11:25:17 -0400 | [diff] [blame] | 1834 | goto err_request_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | } |
| 1836 | hcd->irq = irqnum; |
| 1837 | dev_info(hcd->self.controller, "irq %s, %s 0x%08llx\n", bufp, |
| 1838 | (hcd->driver->flags & HCD_MEMORY) ? |
| 1839 | "io mem" : "io base", |
| 1840 | (unsigned long long)hcd->rsrc_start); |
| 1841 | } else { |
| 1842 | hcd->irq = -1; |
| 1843 | if (hcd->rsrc_start) |
| 1844 | dev_info(hcd->self.controller, "%s 0x%08llx\n", |
| 1845 | (hcd->driver->flags & HCD_MEMORY) ? |
| 1846 | "io mem" : "io base", |
| 1847 | (unsigned long long)hcd->rsrc_start); |
| 1848 | } |
| 1849 | |
| 1850 | if ((retval = hcd->driver->start(hcd)) < 0) { |
| 1851 | dev_err(hcd->self.controller, "startup error %d\n", retval); |
Alan Stern | 8ec8d20 | 2005-04-25 11:25:17 -0400 | [diff] [blame] | 1852 | goto err_hcd_driver_start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1853 | } |
| 1854 | |
David Brownell | b1e8f0a | 2006-01-23 15:25:40 -0800 | [diff] [blame] | 1855 | /* starting here, usbcore will pay attention to this root hub */ |
Alan Stern | 55c5271 | 2005-11-23 12:03:12 -0500 | [diff] [blame] | 1856 | rhdev->bus_mA = min(500u, hcd->power_budget); |
David Brownell | b1e8f0a | 2006-01-23 15:25:40 -0800 | [diff] [blame] | 1857 | if ((retval = register_root_hub(hcd)) != 0) |
Alan Stern | 8ec8d20 | 2005-04-25 11:25:17 -0400 | [diff] [blame] | 1858 | goto err_register_root_hub; |
| 1859 | |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 1860 | if (hcd->uses_new_polling && hcd->poll_rh) |
| 1861 | usb_hcd_poll_rh_status(hcd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1862 | return retval; |
| 1863 | |
David Brownell | b1e8f0a | 2006-01-23 15:25:40 -0800 | [diff] [blame] | 1864 | err_register_root_hub: |
Alan Stern | 8ec8d20 | 2005-04-25 11:25:17 -0400 | [diff] [blame] | 1865 | hcd->driver->stop(hcd); |
David Brownell | b1e8f0a | 2006-01-23 15:25:40 -0800 | [diff] [blame] | 1866 | err_hcd_driver_start: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1867 | if (hcd->irq >= 0) |
| 1868 | free_irq(irqnum, hcd); |
David Brownell | b1e8f0a | 2006-01-23 15:25:40 -0800 | [diff] [blame] | 1869 | err_request_irq: |
| 1870 | err_hcd_driver_setup: |
| 1871 | hcd->self.root_hub = NULL; |
| 1872 | usb_put_dev(rhdev); |
| 1873 | err_allocate_root_hub: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1874 | usb_deregister_bus(&hcd->self); |
David Brownell | b1e8f0a | 2006-01-23 15:25:40 -0800 | [diff] [blame] | 1875 | err_register_bus: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1876 | hcd_buffer_destroy(hcd); |
| 1877 | return retval; |
| 1878 | } |
| 1879 | EXPORT_SYMBOL (usb_add_hcd); |
| 1880 | |
| 1881 | /** |
| 1882 | * usb_remove_hcd - shutdown processing for generic HCDs |
| 1883 | * @hcd: the usb_hcd structure to remove |
| 1884 | * Context: !in_interrupt() |
| 1885 | * |
| 1886 | * Disconnects the root hub, then reverses the effects of usb_add_hcd(), |
| 1887 | * invoking the HCD's stop() method. |
| 1888 | */ |
| 1889 | void usb_remove_hcd(struct usb_hcd *hcd) |
| 1890 | { |
| 1891 | dev_info(hcd->self.controller, "remove, state %x\n", hcd->state); |
| 1892 | |
| 1893 | if (HC_IS_RUNNING (hcd->state)) |
| 1894 | hcd->state = HC_STATE_QUIESCING; |
| 1895 | |
| 1896 | dev_dbg(hcd->self.controller, "roothub graceful disconnect\n"); |
| 1897 | spin_lock_irq (&hcd_root_hub_lock); |
| 1898 | hcd->rh_registered = 0; |
| 1899 | spin_unlock_irq (&hcd_root_hub_lock); |
Alan Stern | 9ad3d6c | 2005-11-17 17:10:32 -0500 | [diff] [blame] | 1900 | |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 1901 | mutex_lock(&usb_bus_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1902 | usb_disconnect(&hcd->self.root_hub); |
Arjan van de Ven | 4186ecf | 2006-01-11 15:55:29 +0100 | [diff] [blame] | 1903 | mutex_unlock(&usb_bus_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | |
Alan Stern | d5926ae7 | 2005-04-21 15:56:37 -0400 | [diff] [blame] | 1905 | hcd->poll_rh = 0; |
| 1906 | del_timer_sync(&hcd->rh_timer); |
| 1907 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | hcd->driver->stop(hcd); |
| 1909 | hcd->state = HC_STATE_HALT; |
| 1910 | |
| 1911 | if (hcd->irq >= 0) |
| 1912 | free_irq(hcd->irq, hcd); |
| 1913 | usb_deregister_bus(&hcd->self); |
| 1914 | hcd_buffer_destroy(hcd); |
| 1915 | } |
| 1916 | EXPORT_SYMBOL (usb_remove_hcd); |
| 1917 | |
| 1918 | /*-------------------------------------------------------------------------*/ |
| 1919 | |
Adrian Bunk | 4749f32 | 2005-06-23 11:36:56 +0200 | [diff] [blame] | 1920 | #if defined(CONFIG_USB_MON) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1921 | |
| 1922 | struct usb_mon_operations *mon_ops; |
| 1923 | |
| 1924 | /* |
| 1925 | * The registration is unlocked. |
| 1926 | * We do it this way because we do not want to lock in hot paths. |
| 1927 | * |
| 1928 | * Notice that the code is minimally error-proof. Because usbmon needs |
| 1929 | * symbols from usbcore, usbcore gets referenced and cannot be unloaded first. |
| 1930 | */ |
| 1931 | |
| 1932 | int usb_mon_register (struct usb_mon_operations *ops) |
| 1933 | { |
| 1934 | |
| 1935 | if (mon_ops) |
| 1936 | return -EBUSY; |
| 1937 | |
| 1938 | mon_ops = ops; |
| 1939 | mb(); |
| 1940 | return 0; |
| 1941 | } |
| 1942 | EXPORT_SYMBOL_GPL (usb_mon_register); |
| 1943 | |
| 1944 | void usb_mon_deregister (void) |
| 1945 | { |
| 1946 | |
| 1947 | if (mon_ops == NULL) { |
| 1948 | printk(KERN_ERR "USB: monitor was not registered\n"); |
| 1949 | return; |
| 1950 | } |
| 1951 | mon_ops = NULL; |
| 1952 | mb(); |
| 1953 | } |
| 1954 | EXPORT_SYMBOL_GPL (usb_mon_deregister); |
| 1955 | |
| 1956 | #endif /* CONFIG_USB_MON */ |