USB: add missing "{}" in map_urb_for_dma
[linux/fpc-iii.git] / drivers / usb / core / hcd.c
blob4f157453d425e75cbcd4a1d2beb147e2049ac2da
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.
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.
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.
25 #include <linux/module.h>
26 #include <linux/version.h>
27 #include <linux/kernel.h>
28 #include <linux/slab.h>
29 #include <linux/completion.h>
30 #include <linux/utsname.h>
31 #include <linux/mm.h>
32 #include <asm/io.h>
33 #include <linux/device.h>
34 #include <linux/dma-mapping.h>
35 #include <linux/mutex.h>
36 #include <asm/irq.h>
37 #include <asm/byteorder.h>
38 #include <asm/unaligned.h>
39 #include <linux/platform_device.h>
40 #include <linux/workqueue.h>
41 #include <linux/mutex.h>
42 #include <linux/pm_runtime.h>
44 #include <linux/usb.h>
46 #include "usb.h"
47 #include "hcd.h"
48 #include "hub.h"
51 /*-------------------------------------------------------------------------*/
54 * USB Host Controller Driver framework
56 * Plugs into usbcore (usb_bus) and lets HCDs share code, minimizing
57 * HCD-specific behaviors/bugs.
59 * This does error checks, tracks devices and urbs, and delegates to a
60 * "hc_driver" only for code (and data) that really needs to know about
61 * hardware differences. That includes root hub registers, i/o queues,
62 * and so on ... but as little else as possible.
64 * Shared code includes most of the "root hub" code (these are emulated,
65 * though each HC's hardware works differently) and PCI glue, plus request
66 * tracking overhead. The HCD code should only block on spinlocks or on
67 * hardware handshaking; blocking on software events (such as other kernel
68 * threads releasing resources, or completing actions) is all generic.
70 * Happens the USB 2.0 spec says this would be invisible inside the "USBD",
71 * and includes mostly a "HCDI" (HCD Interface) along with some APIs used
72 * only by the hub driver ... and that neither should be seen or used by
73 * usb client device drivers.
75 * Contributors of ideas or unattributed patches include: David Brownell,
76 * Roman Weissgaerber, Rory Bolt, Greg Kroah-Hartman, ...
78 * HISTORY:
79 * 2002-02-21 Pull in most of the usb_bus support from usb.c; some
80 * associated cleanup. "usb_hcd" still != "usb_bus".
81 * 2001-12-12 Initial patch version for Linux 2.5.1 kernel.
84 /*-------------------------------------------------------------------------*/
86 /* Keep track of which host controller drivers are loaded */
87 unsigned long usb_hcds_loaded;
88 EXPORT_SYMBOL_GPL(usb_hcds_loaded);
90 /* host controllers we manage */
91 LIST_HEAD (usb_bus_list);
92 EXPORT_SYMBOL_GPL (usb_bus_list);
94 /* used when allocating bus numbers */
95 #define USB_MAXBUS 64
96 struct usb_busmap {
97 unsigned long busmap [USB_MAXBUS / (8*sizeof (unsigned long))];
99 static struct usb_busmap busmap;
101 /* used when updating list of hcds */
102 DEFINE_MUTEX(usb_bus_list_lock); /* exported only for usbfs */
103 EXPORT_SYMBOL_GPL (usb_bus_list_lock);
105 /* used for controlling access to virtual root hubs */
106 static DEFINE_SPINLOCK(hcd_root_hub_lock);
108 /* used when updating an endpoint's URB list */
109 static DEFINE_SPINLOCK(hcd_urb_list_lock);
111 /* used to protect against unlinking URBs after the device is gone */
112 static DEFINE_SPINLOCK(hcd_urb_unlink_lock);
114 /* wait queue for synchronous unlinks */
115 DECLARE_WAIT_QUEUE_HEAD(usb_kill_urb_queue);
117 static inline int is_root_hub(struct usb_device *udev)
119 return (udev->parent == NULL);
122 /*-------------------------------------------------------------------------*/
125 * Sharable chunks of root hub code.
128 /*-------------------------------------------------------------------------*/
130 #define KERNEL_REL ((LINUX_VERSION_CODE >> 16) & 0x0ff)
131 #define KERNEL_VER ((LINUX_VERSION_CODE >> 8) & 0x0ff)
133 /* usb 3.0 root hub device descriptor */
134 static const u8 usb3_rh_dev_descriptor[18] = {
135 0x12, /* __u8 bLength; */
136 0x01, /* __u8 bDescriptorType; Device */
137 0x00, 0x03, /* __le16 bcdUSB; v3.0 */
139 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
140 0x00, /* __u8 bDeviceSubClass; */
141 0x03, /* __u8 bDeviceProtocol; USB 3.0 hub */
142 0x09, /* __u8 bMaxPacketSize0; 2^9 = 512 Bytes */
144 0x6b, 0x1d, /* __le16 idVendor; Linux Foundation */
145 0x03, 0x00, /* __le16 idProduct; device 0x0003 */
146 KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
148 0x03, /* __u8 iManufacturer; */
149 0x02, /* __u8 iProduct; */
150 0x01, /* __u8 iSerialNumber; */
151 0x01 /* __u8 bNumConfigurations; */
154 /* usb 2.0 root hub device descriptor */
155 static const u8 usb2_rh_dev_descriptor [18] = {
156 0x12, /* __u8 bLength; */
157 0x01, /* __u8 bDescriptorType; Device */
158 0x00, 0x02, /* __le16 bcdUSB; v2.0 */
160 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
161 0x00, /* __u8 bDeviceSubClass; */
162 0x00, /* __u8 bDeviceProtocol; [ usb 2.0 no TT ] */
163 0x40, /* __u8 bMaxPacketSize0; 64 Bytes */
165 0x6b, 0x1d, /* __le16 idVendor; Linux Foundation */
166 0x02, 0x00, /* __le16 idProduct; device 0x0002 */
167 KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
169 0x03, /* __u8 iManufacturer; */
170 0x02, /* __u8 iProduct; */
171 0x01, /* __u8 iSerialNumber; */
172 0x01 /* __u8 bNumConfigurations; */
175 /* no usb 2.0 root hub "device qualifier" descriptor: one speed only */
177 /* usb 1.1 root hub device descriptor */
178 static const u8 usb11_rh_dev_descriptor [18] = {
179 0x12, /* __u8 bLength; */
180 0x01, /* __u8 bDescriptorType; Device */
181 0x10, 0x01, /* __le16 bcdUSB; v1.1 */
183 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
184 0x00, /* __u8 bDeviceSubClass; */
185 0x00, /* __u8 bDeviceProtocol; [ low/full speeds only ] */
186 0x40, /* __u8 bMaxPacketSize0; 64 Bytes */
188 0x6b, 0x1d, /* __le16 idVendor; Linux Foundation */
189 0x01, 0x00, /* __le16 idProduct; device 0x0001 */
190 KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
192 0x03, /* __u8 iManufacturer; */
193 0x02, /* __u8 iProduct; */
194 0x01, /* __u8 iSerialNumber; */
195 0x01 /* __u8 bNumConfigurations; */
199 /*-------------------------------------------------------------------------*/
201 /* Configuration descriptors for our root hubs */
203 static const u8 fs_rh_config_descriptor [] = {
205 /* one configuration */
206 0x09, /* __u8 bLength; */
207 0x02, /* __u8 bDescriptorType; Configuration */
208 0x19, 0x00, /* __le16 wTotalLength; */
209 0x01, /* __u8 bNumInterfaces; (1) */
210 0x01, /* __u8 bConfigurationValue; */
211 0x00, /* __u8 iConfiguration; */
212 0xc0, /* __u8 bmAttributes;
213 Bit 7: must be set,
214 6: Self-powered,
215 5: Remote wakeup,
216 4..0: resvd */
217 0x00, /* __u8 MaxPower; */
219 /* USB 1.1:
220 * USB 2.0, single TT organization (mandatory):
221 * one interface, protocol 0
223 * USB 2.0, multiple TT organization (optional):
224 * two interfaces, protocols 1 (like single TT)
225 * and 2 (multiple TT mode) ... config is
226 * sometimes settable
227 * NOT IMPLEMENTED
230 /* one interface */
231 0x09, /* __u8 if_bLength; */
232 0x04, /* __u8 if_bDescriptorType; Interface */
233 0x00, /* __u8 if_bInterfaceNumber; */
234 0x00, /* __u8 if_bAlternateSetting; */
235 0x01, /* __u8 if_bNumEndpoints; */
236 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
237 0x00, /* __u8 if_bInterfaceSubClass; */
238 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */
239 0x00, /* __u8 if_iInterface; */
241 /* one endpoint (status change endpoint) */
242 0x07, /* __u8 ep_bLength; */
243 0x05, /* __u8 ep_bDescriptorType; Endpoint */
244 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
245 0x03, /* __u8 ep_bmAttributes; Interrupt */
246 0x02, 0x00, /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */
247 0xff /* __u8 ep_bInterval; (255ms -- usb 2.0 spec) */
250 static const u8 hs_rh_config_descriptor [] = {
252 /* one configuration */
253 0x09, /* __u8 bLength; */
254 0x02, /* __u8 bDescriptorType; Configuration */
255 0x19, 0x00, /* __le16 wTotalLength; */
256 0x01, /* __u8 bNumInterfaces; (1) */
257 0x01, /* __u8 bConfigurationValue; */
258 0x00, /* __u8 iConfiguration; */
259 0xc0, /* __u8 bmAttributes;
260 Bit 7: must be set,
261 6: Self-powered,
262 5: Remote wakeup,
263 4..0: resvd */
264 0x00, /* __u8 MaxPower; */
266 /* USB 1.1:
267 * USB 2.0, single TT organization (mandatory):
268 * one interface, protocol 0
270 * USB 2.0, multiple TT organization (optional):
271 * two interfaces, protocols 1 (like single TT)
272 * and 2 (multiple TT mode) ... config is
273 * sometimes settable
274 * NOT IMPLEMENTED
277 /* one interface */
278 0x09, /* __u8 if_bLength; */
279 0x04, /* __u8 if_bDescriptorType; Interface */
280 0x00, /* __u8 if_bInterfaceNumber; */
281 0x00, /* __u8 if_bAlternateSetting; */
282 0x01, /* __u8 if_bNumEndpoints; */
283 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
284 0x00, /* __u8 if_bInterfaceSubClass; */
285 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */
286 0x00, /* __u8 if_iInterface; */
288 /* one endpoint (status change endpoint) */
289 0x07, /* __u8 ep_bLength; */
290 0x05, /* __u8 ep_bDescriptorType; Endpoint */
291 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
292 0x03, /* __u8 ep_bmAttributes; Interrupt */
293 /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8)
294 * see hub.c:hub_configure() for details. */
295 (USB_MAXCHILDREN + 1 + 7) / 8, 0x00,
296 0x0c /* __u8 ep_bInterval; (256ms -- usb 2.0 spec) */
299 static const u8 ss_rh_config_descriptor[] = {
300 /* one configuration */
301 0x09, /* __u8 bLength; */
302 0x02, /* __u8 bDescriptorType; Configuration */
303 0x19, 0x00, /* __le16 wTotalLength; FIXME */
304 0x01, /* __u8 bNumInterfaces; (1) */
305 0x01, /* __u8 bConfigurationValue; */
306 0x00, /* __u8 iConfiguration; */
307 0xc0, /* __u8 bmAttributes;
308 Bit 7: must be set,
309 6: Self-powered,
310 5: Remote wakeup,
311 4..0: resvd */
312 0x00, /* __u8 MaxPower; */
314 /* one interface */
315 0x09, /* __u8 if_bLength; */
316 0x04, /* __u8 if_bDescriptorType; Interface */
317 0x00, /* __u8 if_bInterfaceNumber; */
318 0x00, /* __u8 if_bAlternateSetting; */
319 0x01, /* __u8 if_bNumEndpoints; */
320 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
321 0x00, /* __u8 if_bInterfaceSubClass; */
322 0x00, /* __u8 if_bInterfaceProtocol; */
323 0x00, /* __u8 if_iInterface; */
325 /* one endpoint (status change endpoint) */
326 0x07, /* __u8 ep_bLength; */
327 0x05, /* __u8 ep_bDescriptorType; Endpoint */
328 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
329 0x03, /* __u8 ep_bmAttributes; Interrupt */
330 /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8)
331 * see hub.c:hub_configure() for details. */
332 (USB_MAXCHILDREN + 1 + 7) / 8, 0x00,
333 0x0c /* __u8 ep_bInterval; (256ms -- usb 2.0 spec) */
335 * All 3.0 hubs should have an endpoint companion descriptor,
336 * but we're ignoring that for now. FIXME?
340 /*-------------------------------------------------------------------------*/
343 * ascii2desc() - Helper routine for producing UTF-16LE string descriptors
344 * @s: Null-terminated ASCII (actually ISO-8859-1) string
345 * @buf: Buffer for USB string descriptor (header + UTF-16LE)
346 * @len: Length (in bytes; may be odd) of descriptor buffer.
348 * The return value is the number of bytes filled in: 2 + 2*strlen(s) or
349 * buflen, whichever is less.
351 * USB String descriptors can contain at most 126 characters; input
352 * strings longer than that are truncated.
354 static unsigned
355 ascii2desc(char const *s, u8 *buf, unsigned len)
357 unsigned n, t = 2 + 2*strlen(s);
359 if (t > 254)
360 t = 254; /* Longest possible UTF string descriptor */
361 if (len > t)
362 len = t;
364 t += USB_DT_STRING << 8; /* Now t is first 16 bits to store */
366 n = len;
367 while (n--) {
368 *buf++ = t;
369 if (!n--)
370 break;
371 *buf++ = t >> 8;
372 t = (unsigned char)*s++;
374 return len;
378 * rh_string() - provides string descriptors for root hub
379 * @id: the string ID number (0: langids, 1: serial #, 2: product, 3: vendor)
380 * @hcd: the host controller for this root hub
381 * @data: buffer for output packet
382 * @len: length of the provided buffer
384 * Produces either a manufacturer, product or serial number string for the
385 * virtual root hub device.
386 * Returns the number of bytes filled in: the length of the descriptor or
387 * of the provided buffer, whichever is less.
389 static unsigned
390 rh_string(int id, struct usb_hcd const *hcd, u8 *data, unsigned len)
392 char buf[100];
393 char const *s;
394 static char const langids[4] = {4, USB_DT_STRING, 0x09, 0x04};
396 // language ids
397 switch (id) {
398 case 0:
399 /* Array of LANGID codes (0x0409 is MSFT-speak for "en-us") */
400 /* See http://www.usb.org/developers/docs/USB_LANGIDs.pdf */
401 if (len > 4)
402 len = 4;
403 memcpy(data, langids, len);
404 return len;
405 case 1:
406 /* Serial number */
407 s = hcd->self.bus_name;
408 break;
409 case 2:
410 /* Product name */
411 s = hcd->product_desc;
412 break;
413 case 3:
414 /* Manufacturer */
415 snprintf (buf, sizeof buf, "%s %s %s", init_utsname()->sysname,
416 init_utsname()->release, hcd->driver->description);
417 s = buf;
418 break;
419 default:
420 /* Can't happen; caller guarantees it */
421 return 0;
424 return ascii2desc(s, data, len);
428 /* Root hub control transfers execute synchronously */
429 static int rh_call_control (struct usb_hcd *hcd, struct urb *urb)
431 struct usb_ctrlrequest *cmd;
432 u16 typeReq, wValue, wIndex, wLength;
433 u8 *ubuf = urb->transfer_buffer;
434 u8 tbuf [sizeof (struct usb_hub_descriptor)]
435 __attribute__((aligned(4)));
436 const u8 *bufp = tbuf;
437 unsigned len = 0;
438 int status;
439 u8 patch_wakeup = 0;
440 u8 patch_protocol = 0;
442 might_sleep();
444 spin_lock_irq(&hcd_root_hub_lock);
445 status = usb_hcd_link_urb_to_ep(hcd, urb);
446 spin_unlock_irq(&hcd_root_hub_lock);
447 if (status)
448 return status;
449 urb->hcpriv = hcd; /* Indicate it's queued */
451 cmd = (struct usb_ctrlrequest *) urb->setup_packet;
452 typeReq = (cmd->bRequestType << 8) | cmd->bRequest;
453 wValue = le16_to_cpu (cmd->wValue);
454 wIndex = le16_to_cpu (cmd->wIndex);
455 wLength = le16_to_cpu (cmd->wLength);
457 if (wLength > urb->transfer_buffer_length)
458 goto error;
460 urb->actual_length = 0;
461 switch (typeReq) {
463 /* DEVICE REQUESTS */
465 /* The root hub's remote wakeup enable bit is implemented using
466 * driver model wakeup flags. If this system supports wakeup
467 * through USB, userspace may change the default "allow wakeup"
468 * policy through sysfs or these calls.
470 * Most root hubs support wakeup from downstream devices, for
471 * runtime power management (disabling USB clocks and reducing
472 * VBUS power usage). However, not all of them do so; silicon,
473 * board, and BIOS bugs here are not uncommon, so these can't
474 * be treated quite like external hubs.
476 * Likewise, not all root hubs will pass wakeup events upstream,
477 * to wake up the whole system. So don't assume root hub and
478 * controller capabilities are identical.
481 case DeviceRequest | USB_REQ_GET_STATUS:
482 tbuf [0] = (device_may_wakeup(&hcd->self.root_hub->dev)
483 << USB_DEVICE_REMOTE_WAKEUP)
484 | (1 << USB_DEVICE_SELF_POWERED);
485 tbuf [1] = 0;
486 len = 2;
487 break;
488 case DeviceOutRequest | USB_REQ_CLEAR_FEATURE:
489 if (wValue == USB_DEVICE_REMOTE_WAKEUP)
490 device_set_wakeup_enable(&hcd->self.root_hub->dev, 0);
491 else
492 goto error;
493 break;
494 case DeviceOutRequest | USB_REQ_SET_FEATURE:
495 if (device_can_wakeup(&hcd->self.root_hub->dev)
496 && wValue == USB_DEVICE_REMOTE_WAKEUP)
497 device_set_wakeup_enable(&hcd->self.root_hub->dev, 1);
498 else
499 goto error;
500 break;
501 case DeviceRequest | USB_REQ_GET_CONFIGURATION:
502 tbuf [0] = 1;
503 len = 1;
504 /* FALLTHROUGH */
505 case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
506 break;
507 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
508 switch (wValue & 0xff00) {
509 case USB_DT_DEVICE << 8:
510 switch (hcd->driver->flags & HCD_MASK) {
511 case HCD_USB3:
512 bufp = usb3_rh_dev_descriptor;
513 break;
514 case HCD_USB2:
515 bufp = usb2_rh_dev_descriptor;
516 break;
517 case HCD_USB11:
518 bufp = usb11_rh_dev_descriptor;
519 break;
520 default:
521 goto error;
523 len = 18;
524 if (hcd->has_tt)
525 patch_protocol = 1;
526 break;
527 case USB_DT_CONFIG << 8:
528 switch (hcd->driver->flags & HCD_MASK) {
529 case HCD_USB3:
530 bufp = ss_rh_config_descriptor;
531 len = sizeof ss_rh_config_descriptor;
532 break;
533 case HCD_USB2:
534 bufp = hs_rh_config_descriptor;
535 len = sizeof hs_rh_config_descriptor;
536 break;
537 case HCD_USB11:
538 bufp = fs_rh_config_descriptor;
539 len = sizeof fs_rh_config_descriptor;
540 break;
541 default:
542 goto error;
544 if (device_can_wakeup(&hcd->self.root_hub->dev))
545 patch_wakeup = 1;
546 break;
547 case USB_DT_STRING << 8:
548 if ((wValue & 0xff) < 4)
549 urb->actual_length = rh_string(wValue & 0xff,
550 hcd, ubuf, wLength);
551 else /* unsupported IDs --> "protocol stall" */
552 goto error;
553 break;
554 default:
555 goto error;
557 break;
558 case DeviceRequest | USB_REQ_GET_INTERFACE:
559 tbuf [0] = 0;
560 len = 1;
561 /* FALLTHROUGH */
562 case DeviceOutRequest | USB_REQ_SET_INTERFACE:
563 break;
564 case DeviceOutRequest | USB_REQ_SET_ADDRESS:
565 // wValue == urb->dev->devaddr
566 dev_dbg (hcd->self.controller, "root hub device address %d\n",
567 wValue);
568 break;
570 /* INTERFACE REQUESTS (no defined feature/status flags) */
572 /* ENDPOINT REQUESTS */
574 case EndpointRequest | USB_REQ_GET_STATUS:
575 // ENDPOINT_HALT flag
576 tbuf [0] = 0;
577 tbuf [1] = 0;
578 len = 2;
579 /* FALLTHROUGH */
580 case EndpointOutRequest | USB_REQ_CLEAR_FEATURE:
581 case EndpointOutRequest | USB_REQ_SET_FEATURE:
582 dev_dbg (hcd->self.controller, "no endpoint features yet\n");
583 break;
585 /* CLASS REQUESTS (and errors) */
587 default:
588 /* non-generic request */
589 switch (typeReq) {
590 case GetHubStatus:
591 case GetPortStatus:
592 len = 4;
593 break;
594 case GetHubDescriptor:
595 len = sizeof (struct usb_hub_descriptor);
596 break;
598 status = hcd->driver->hub_control (hcd,
599 typeReq, wValue, wIndex,
600 tbuf, wLength);
601 break;
602 error:
603 /* "protocol stall" on error */
604 status = -EPIPE;
607 if (status) {
608 len = 0;
609 if (status != -EPIPE) {
610 dev_dbg (hcd->self.controller,
611 "CTRL: TypeReq=0x%x val=0x%x "
612 "idx=0x%x len=%d ==> %d\n",
613 typeReq, wValue, wIndex,
614 wLength, status);
617 if (len) {
618 if (urb->transfer_buffer_length < len)
619 len = urb->transfer_buffer_length;
620 urb->actual_length = len;
621 // always USB_DIR_IN, toward host
622 memcpy (ubuf, bufp, len);
624 /* report whether RH hardware supports remote wakeup */
625 if (patch_wakeup &&
626 len > offsetof (struct usb_config_descriptor,
627 bmAttributes))
628 ((struct usb_config_descriptor *)ubuf)->bmAttributes
629 |= USB_CONFIG_ATT_WAKEUP;
631 /* report whether RH hardware has an integrated TT */
632 if (patch_protocol &&
633 len > offsetof(struct usb_device_descriptor,
634 bDeviceProtocol))
635 ((struct usb_device_descriptor *) ubuf)->
636 bDeviceProtocol = 1;
639 /* any errors get returned through the urb completion */
640 spin_lock_irq(&hcd_root_hub_lock);
641 usb_hcd_unlink_urb_from_ep(hcd, urb);
643 /* This peculiar use of spinlocks echoes what real HC drivers do.
644 * Avoiding calls to local_irq_disable/enable makes the code
645 * RT-friendly.
647 spin_unlock(&hcd_root_hub_lock);
648 usb_hcd_giveback_urb(hcd, urb, status);
649 spin_lock(&hcd_root_hub_lock);
651 spin_unlock_irq(&hcd_root_hub_lock);
652 return 0;
655 /*-------------------------------------------------------------------------*/
658 * Root Hub interrupt transfers are polled using a timer if the
659 * driver requests it; otherwise the driver is responsible for
660 * calling usb_hcd_poll_rh_status() when an event occurs.
662 * Completions are called in_interrupt(), but they may or may not
663 * be in_irq().
665 void usb_hcd_poll_rh_status(struct usb_hcd *hcd)
667 struct urb *urb;
668 int length;
669 unsigned long flags;
670 char buffer[6]; /* Any root hubs with > 31 ports? */
672 if (unlikely(!hcd->rh_registered))
673 return;
674 if (!hcd->uses_new_polling && !hcd->status_urb)
675 return;
677 length = hcd->driver->hub_status_data(hcd, buffer);
678 if (length > 0) {
680 /* try to complete the status urb */
681 spin_lock_irqsave(&hcd_root_hub_lock, flags);
682 urb = hcd->status_urb;
683 if (urb) {
684 hcd->poll_pending = 0;
685 hcd->status_urb = NULL;
686 urb->actual_length = length;
687 memcpy(urb->transfer_buffer, buffer, length);
689 usb_hcd_unlink_urb_from_ep(hcd, urb);
690 spin_unlock(&hcd_root_hub_lock);
691 usb_hcd_giveback_urb(hcd, urb, 0);
692 spin_lock(&hcd_root_hub_lock);
693 } else {
694 length = 0;
695 hcd->poll_pending = 1;
697 spin_unlock_irqrestore(&hcd_root_hub_lock, flags);
700 /* The USB 2.0 spec says 256 ms. This is close enough and won't
701 * exceed that limit if HZ is 100. The math is more clunky than
702 * maybe expected, this is to make sure that all timers for USB devices
703 * fire at the same time to give the CPU a break inbetween */
704 if (hcd->uses_new_polling ? hcd->poll_rh :
705 (length == 0 && hcd->status_urb != NULL))
706 mod_timer (&hcd->rh_timer, (jiffies/(HZ/4) + 1) * (HZ/4));
708 EXPORT_SYMBOL_GPL(usb_hcd_poll_rh_status);
710 /* timer callback */
711 static void rh_timer_func (unsigned long _hcd)
713 usb_hcd_poll_rh_status((struct usb_hcd *) _hcd);
716 /*-------------------------------------------------------------------------*/
718 static int rh_queue_status (struct usb_hcd *hcd, struct urb *urb)
720 int retval;
721 unsigned long flags;
722 unsigned len = 1 + (urb->dev->maxchild / 8);
724 spin_lock_irqsave (&hcd_root_hub_lock, flags);
725 if (hcd->status_urb || urb->transfer_buffer_length < len) {
726 dev_dbg (hcd->self.controller, "not queuing rh status urb\n");
727 retval = -EINVAL;
728 goto done;
731 retval = usb_hcd_link_urb_to_ep(hcd, urb);
732 if (retval)
733 goto done;
735 hcd->status_urb = urb;
736 urb->hcpriv = hcd; /* indicate it's queued */
737 if (!hcd->uses_new_polling)
738 mod_timer(&hcd->rh_timer, (jiffies/(HZ/4) + 1) * (HZ/4));
740 /* If a status change has already occurred, report it ASAP */
741 else if (hcd->poll_pending)
742 mod_timer(&hcd->rh_timer, jiffies);
743 retval = 0;
744 done:
745 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
746 return retval;
749 static int rh_urb_enqueue (struct usb_hcd *hcd, struct urb *urb)
751 if (usb_endpoint_xfer_int(&urb->ep->desc))
752 return rh_queue_status (hcd, urb);
753 if (usb_endpoint_xfer_control(&urb->ep->desc))
754 return rh_call_control (hcd, urb);
755 return -EINVAL;
758 /*-------------------------------------------------------------------------*/
760 /* Unlinks of root-hub control URBs are legal, but they don't do anything
761 * since these URBs always execute synchronously.
763 static int usb_rh_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
765 unsigned long flags;
766 int rc;
768 spin_lock_irqsave(&hcd_root_hub_lock, flags);
769 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
770 if (rc)
771 goto done;
773 if (usb_endpoint_num(&urb->ep->desc) == 0) { /* Control URB */
774 ; /* Do nothing */
776 } else { /* Status URB */
777 if (!hcd->uses_new_polling)
778 del_timer (&hcd->rh_timer);
779 if (urb == hcd->status_urb) {
780 hcd->status_urb = NULL;
781 usb_hcd_unlink_urb_from_ep(hcd, urb);
783 spin_unlock(&hcd_root_hub_lock);
784 usb_hcd_giveback_urb(hcd, urb, status);
785 spin_lock(&hcd_root_hub_lock);
788 done:
789 spin_unlock_irqrestore(&hcd_root_hub_lock, flags);
790 return rc;
796 * Show & store the current value of authorized_default
798 static ssize_t usb_host_authorized_default_show(struct device *dev,
799 struct device_attribute *attr,
800 char *buf)
802 struct usb_device *rh_usb_dev = to_usb_device(dev);
803 struct usb_bus *usb_bus = rh_usb_dev->bus;
804 struct usb_hcd *usb_hcd;
806 if (usb_bus == NULL) /* FIXME: not sure if this case is possible */
807 return -ENODEV;
808 usb_hcd = bus_to_hcd(usb_bus);
809 return snprintf(buf, PAGE_SIZE, "%u\n", usb_hcd->authorized_default);
812 static ssize_t usb_host_authorized_default_store(struct device *dev,
813 struct device_attribute *attr,
814 const char *buf, size_t size)
816 ssize_t result;
817 unsigned val;
818 struct usb_device *rh_usb_dev = to_usb_device(dev);
819 struct usb_bus *usb_bus = rh_usb_dev->bus;
820 struct usb_hcd *usb_hcd;
822 if (usb_bus == NULL) /* FIXME: not sure if this case is possible */
823 return -ENODEV;
824 usb_hcd = bus_to_hcd(usb_bus);
825 result = sscanf(buf, "%u\n", &val);
826 if (result == 1) {
827 usb_hcd->authorized_default = val? 1 : 0;
828 result = size;
830 else
831 result = -EINVAL;
832 return result;
835 static DEVICE_ATTR(authorized_default, 0644,
836 usb_host_authorized_default_show,
837 usb_host_authorized_default_store);
840 /* Group all the USB bus attributes */
841 static struct attribute *usb_bus_attrs[] = {
842 &dev_attr_authorized_default.attr,
843 NULL,
846 static struct attribute_group usb_bus_attr_group = {
847 .name = NULL, /* we want them in the same directory */
848 .attrs = usb_bus_attrs,
853 /*-------------------------------------------------------------------------*/
856 * usb_bus_init - shared initialization code
857 * @bus: the bus structure being initialized
859 * This code is used to initialize a usb_bus structure, memory for which is
860 * separately managed.
862 static void usb_bus_init (struct usb_bus *bus)
864 memset (&bus->devmap, 0, sizeof(struct usb_devmap));
866 bus->devnum_next = 1;
868 bus->root_hub = NULL;
869 bus->busnum = -1;
870 bus->bandwidth_allocated = 0;
871 bus->bandwidth_int_reqs = 0;
872 bus->bandwidth_isoc_reqs = 0;
874 INIT_LIST_HEAD (&bus->bus_list);
877 /*-------------------------------------------------------------------------*/
880 * usb_register_bus - registers the USB host controller with the usb core
881 * @bus: pointer to the bus to register
882 * Context: !in_interrupt()
884 * Assigns a bus number, and links the controller into usbcore data
885 * structures so that it can be seen by scanning the bus list.
887 static int usb_register_bus(struct usb_bus *bus)
889 int result = -E2BIG;
890 int busnum;
892 mutex_lock(&usb_bus_list_lock);
893 busnum = find_next_zero_bit (busmap.busmap, USB_MAXBUS, 1);
894 if (busnum >= USB_MAXBUS) {
895 printk (KERN_ERR "%s: too many buses\n", usbcore_name);
896 goto error_find_busnum;
898 set_bit (busnum, busmap.busmap);
899 bus->busnum = busnum;
901 /* Add it to the local list of buses */
902 list_add (&bus->bus_list, &usb_bus_list);
903 mutex_unlock(&usb_bus_list_lock);
905 usb_notify_add_bus(bus);
907 dev_info (bus->controller, "new USB bus registered, assigned bus "
908 "number %d\n", bus->busnum);
909 return 0;
911 error_find_busnum:
912 mutex_unlock(&usb_bus_list_lock);
913 return result;
917 * usb_deregister_bus - deregisters the USB host controller
918 * @bus: pointer to the bus to deregister
919 * Context: !in_interrupt()
921 * Recycles the bus number, and unlinks the controller from usbcore data
922 * structures so that it won't be seen by scanning the bus list.
924 static void usb_deregister_bus (struct usb_bus *bus)
926 dev_info (bus->controller, "USB bus %d deregistered\n", bus->busnum);
929 * NOTE: make sure that all the devices are removed by the
930 * controller code, as well as having it call this when cleaning
931 * itself up
933 mutex_lock(&usb_bus_list_lock);
934 list_del (&bus->bus_list);
935 mutex_unlock(&usb_bus_list_lock);
937 usb_notify_remove_bus(bus);
939 clear_bit (bus->busnum, busmap.busmap);
943 * register_root_hub - called by usb_add_hcd() to register a root hub
944 * @hcd: host controller for this root hub
946 * This function registers the root hub with the USB subsystem. It sets up
947 * the device properly in the device tree and then calls usb_new_device()
948 * to register the usb device. It also assigns the root hub's USB address
949 * (always 1).
951 static int register_root_hub(struct usb_hcd *hcd)
953 struct device *parent_dev = hcd->self.controller;
954 struct usb_device *usb_dev = hcd->self.root_hub;
955 const int devnum = 1;
956 int retval;
958 usb_dev->devnum = devnum;
959 usb_dev->bus->devnum_next = devnum + 1;
960 memset (&usb_dev->bus->devmap.devicemap, 0,
961 sizeof usb_dev->bus->devmap.devicemap);
962 set_bit (devnum, usb_dev->bus->devmap.devicemap);
963 usb_set_device_state(usb_dev, USB_STATE_ADDRESS);
965 mutex_lock(&usb_bus_list_lock);
967 usb_dev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
968 retval = usb_get_device_descriptor(usb_dev, USB_DT_DEVICE_SIZE);
969 if (retval != sizeof usb_dev->descriptor) {
970 mutex_unlock(&usb_bus_list_lock);
971 dev_dbg (parent_dev, "can't read %s device descriptor %d\n",
972 dev_name(&usb_dev->dev), retval);
973 return (retval < 0) ? retval : -EMSGSIZE;
976 retval = usb_new_device (usb_dev);
977 if (retval) {
978 dev_err (parent_dev, "can't register root hub for %s, %d\n",
979 dev_name(&usb_dev->dev), retval);
981 mutex_unlock(&usb_bus_list_lock);
983 if (retval == 0) {
984 spin_lock_irq (&hcd_root_hub_lock);
985 hcd->rh_registered = 1;
986 spin_unlock_irq (&hcd_root_hub_lock);
988 /* Did the HC die before the root hub was registered? */
989 if (hcd->state == HC_STATE_HALT)
990 usb_hc_died (hcd); /* This time clean up */
993 return retval;
997 /*-------------------------------------------------------------------------*/
1000 * usb_calc_bus_time - approximate periodic transaction time in nanoseconds
1001 * @speed: from dev->speed; USB_SPEED_{LOW,FULL,HIGH}
1002 * @is_input: true iff the transaction sends data to the host
1003 * @isoc: true for isochronous transactions, false for interrupt ones
1004 * @bytecount: how many bytes in the transaction.
1006 * Returns approximate bus time in nanoseconds for a periodic transaction.
1007 * See USB 2.0 spec section 5.11.3; only periodic transfers need to be
1008 * scheduled in software, this function is only used for such scheduling.
1010 long usb_calc_bus_time (int speed, int is_input, int isoc, int bytecount)
1012 unsigned long tmp;
1014 switch (speed) {
1015 case USB_SPEED_LOW: /* INTR only */
1016 if (is_input) {
1017 tmp = (67667L * (31L + 10L * BitTime (bytecount))) / 1000L;
1018 return (64060L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
1019 } else {
1020 tmp = (66700L * (31L + 10L * BitTime (bytecount))) / 1000L;
1021 return (64107L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
1023 case USB_SPEED_FULL: /* ISOC or INTR */
1024 if (isoc) {
1025 tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
1026 return (((is_input) ? 7268L : 6265L) + BW_HOST_DELAY + tmp);
1027 } else {
1028 tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
1029 return (9107L + BW_HOST_DELAY + tmp);
1031 case USB_SPEED_HIGH: /* ISOC or INTR */
1032 // FIXME adjust for input vs output
1033 if (isoc)
1034 tmp = HS_NSECS_ISO (bytecount);
1035 else
1036 tmp = HS_NSECS (bytecount);
1037 return tmp;
1038 default:
1039 pr_debug ("%s: bogus device speed!\n", usbcore_name);
1040 return -1;
1043 EXPORT_SYMBOL_GPL(usb_calc_bus_time);
1046 /*-------------------------------------------------------------------------*/
1049 * Generic HC operations.
1052 /*-------------------------------------------------------------------------*/
1055 * usb_hcd_link_urb_to_ep - add an URB to its endpoint queue
1056 * @hcd: host controller to which @urb was submitted
1057 * @urb: URB being submitted
1059 * Host controller drivers should call this routine in their enqueue()
1060 * method. The HCD's private spinlock must be held and interrupts must
1061 * be disabled. The actions carried out here are required for URB
1062 * submission, as well as for endpoint shutdown and for usb_kill_urb.
1064 * Returns 0 for no error, otherwise a negative error code (in which case
1065 * the enqueue() method must fail). If no error occurs but enqueue() fails
1066 * anyway, it must call usb_hcd_unlink_urb_from_ep() before releasing
1067 * the private spinlock and returning.
1069 int usb_hcd_link_urb_to_ep(struct usb_hcd *hcd, struct urb *urb)
1071 int rc = 0;
1073 spin_lock(&hcd_urb_list_lock);
1075 /* Check that the URB isn't being killed */
1076 if (unlikely(atomic_read(&urb->reject))) {
1077 rc = -EPERM;
1078 goto done;
1081 if (unlikely(!urb->ep->enabled)) {
1082 rc = -ENOENT;
1083 goto done;
1086 if (unlikely(!urb->dev->can_submit)) {
1087 rc = -EHOSTUNREACH;
1088 goto done;
1092 * Check the host controller's state and add the URB to the
1093 * endpoint's queue.
1095 switch (hcd->state) {
1096 case HC_STATE_RUNNING:
1097 case HC_STATE_RESUMING:
1098 urb->unlinked = 0;
1099 list_add_tail(&urb->urb_list, &urb->ep->urb_list);
1100 break;
1101 default:
1102 rc = -ESHUTDOWN;
1103 goto done;
1105 done:
1106 spin_unlock(&hcd_urb_list_lock);
1107 return rc;
1109 EXPORT_SYMBOL_GPL(usb_hcd_link_urb_to_ep);
1112 * usb_hcd_check_unlink_urb - check whether an URB may be unlinked
1113 * @hcd: host controller to which @urb was submitted
1114 * @urb: URB being checked for unlinkability
1115 * @status: error code to store in @urb if the unlink succeeds
1117 * Host controller drivers should call this routine in their dequeue()
1118 * method. The HCD's private spinlock must be held and interrupts must
1119 * be disabled. The actions carried out here are required for making
1120 * sure than an unlink is valid.
1122 * Returns 0 for no error, otherwise a negative error code (in which case
1123 * the dequeue() method must fail). The possible error codes are:
1125 * -EIDRM: @urb was not submitted or has already completed.
1126 * The completion function may not have been called yet.
1128 * -EBUSY: @urb has already been unlinked.
1130 int usb_hcd_check_unlink_urb(struct usb_hcd *hcd, struct urb *urb,
1131 int status)
1133 struct list_head *tmp;
1135 /* insist the urb is still queued */
1136 list_for_each(tmp, &urb->ep->urb_list) {
1137 if (tmp == &urb->urb_list)
1138 break;
1140 if (tmp != &urb->urb_list)
1141 return -EIDRM;
1143 /* Any status except -EINPROGRESS means something already started to
1144 * unlink this URB from the hardware. So there's no more work to do.
1146 if (urb->unlinked)
1147 return -EBUSY;
1148 urb->unlinked = status;
1150 /* IRQ setup can easily be broken so that USB controllers
1151 * never get completion IRQs ... maybe even the ones we need to
1152 * finish unlinking the initial failed usb_set_address()
1153 * or device descriptor fetch.
1155 if (!test_bit(HCD_FLAG_SAW_IRQ, &hcd->flags) &&
1156 !is_root_hub(urb->dev)) {
1157 dev_warn(hcd->self.controller, "Unlink after no-IRQ? "
1158 "Controller is probably using the wrong IRQ.\n");
1159 set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
1162 return 0;
1164 EXPORT_SYMBOL_GPL(usb_hcd_check_unlink_urb);
1167 * usb_hcd_unlink_urb_from_ep - remove an URB from its endpoint queue
1168 * @hcd: host controller to which @urb was submitted
1169 * @urb: URB being unlinked
1171 * Host controller drivers should call this routine before calling
1172 * usb_hcd_giveback_urb(). The HCD's private spinlock must be held and
1173 * interrupts must be disabled. The actions carried out here are required
1174 * for URB completion.
1176 void usb_hcd_unlink_urb_from_ep(struct usb_hcd *hcd, struct urb *urb)
1178 /* clear all state linking urb to this dev (and hcd) */
1179 spin_lock(&hcd_urb_list_lock);
1180 list_del_init(&urb->urb_list);
1181 spin_unlock(&hcd_urb_list_lock);
1183 EXPORT_SYMBOL_GPL(usb_hcd_unlink_urb_from_ep);
1186 * Some usb host controllers can only perform dma using a small SRAM area.
1187 * The usb core itself is however optimized for host controllers that can dma
1188 * using regular system memory - like pci devices doing bus mastering.
1190 * To support host controllers with limited dma capabilites we provide dma
1191 * bounce buffers. This feature can be enabled using the HCD_LOCAL_MEM flag.
1192 * For this to work properly the host controller code must first use the
1193 * function dma_declare_coherent_memory() to point out which memory area
1194 * that should be used for dma allocations.
1196 * The HCD_LOCAL_MEM flag then tells the usb code to allocate all data for
1197 * dma using dma_alloc_coherent() which in turn allocates from the memory
1198 * area pointed out with dma_declare_coherent_memory().
1200 * So, to summarize...
1202 * - We need "local" memory, canonical example being
1203 * a small SRAM on a discrete controller being the
1204 * only memory that the controller can read ...
1205 * (a) "normal" kernel memory is no good, and
1206 * (b) there's not enough to share
1208 * - The only *portable* hook for such stuff in the
1209 * DMA framework is dma_declare_coherent_memory()
1211 * - So we use that, even though the primary requirement
1212 * is that the memory be "local" (hence addressible
1213 * by that device), not "coherent".
1217 static int hcd_alloc_coherent(struct usb_bus *bus,
1218 gfp_t mem_flags, dma_addr_t *dma_handle,
1219 void **vaddr_handle, size_t size,
1220 enum dma_data_direction dir)
1222 unsigned char *vaddr;
1224 vaddr = hcd_buffer_alloc(bus, size + sizeof(vaddr),
1225 mem_flags, dma_handle);
1226 if (!vaddr)
1227 return -ENOMEM;
1230 * Store the virtual address of the buffer at the end
1231 * of the allocated dma buffer. The size of the buffer
1232 * may be uneven so use unaligned functions instead
1233 * of just rounding up. It makes sense to optimize for
1234 * memory footprint over access speed since the amount
1235 * of memory available for dma may be limited.
1237 put_unaligned((unsigned long)*vaddr_handle,
1238 (unsigned long *)(vaddr + size));
1240 if (dir == DMA_TO_DEVICE)
1241 memcpy(vaddr, *vaddr_handle, size);
1243 *vaddr_handle = vaddr;
1244 return 0;
1247 static void hcd_free_coherent(struct usb_bus *bus, dma_addr_t *dma_handle,
1248 void **vaddr_handle, size_t size,
1249 enum dma_data_direction dir)
1251 unsigned char *vaddr = *vaddr_handle;
1253 vaddr = (void *)get_unaligned((unsigned long *)(vaddr + size));
1255 if (dir == DMA_FROM_DEVICE)
1256 memcpy(vaddr, *vaddr_handle, size);
1258 hcd_buffer_free(bus, size + sizeof(vaddr), *vaddr_handle, *dma_handle);
1260 *vaddr_handle = vaddr;
1261 *dma_handle = 0;
1264 static void unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb)
1266 enum dma_data_direction dir;
1268 if (urb->transfer_flags & URB_SETUP_MAP_SINGLE)
1269 dma_unmap_single(hcd->self.controller,
1270 urb->setup_dma,
1271 sizeof(struct usb_ctrlrequest),
1272 DMA_TO_DEVICE);
1273 else if (urb->transfer_flags & URB_SETUP_MAP_LOCAL)
1274 hcd_free_coherent(urb->dev->bus,
1275 &urb->setup_dma,
1276 (void **) &urb->setup_packet,
1277 sizeof(struct usb_ctrlrequest),
1278 DMA_TO_DEVICE);
1280 dir = usb_urb_dir_in(urb) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
1281 if (urb->transfer_flags & URB_DMA_MAP_SG)
1282 dma_unmap_sg(hcd->self.controller,
1283 urb->sg->sg,
1284 urb->num_sgs,
1285 dir);
1286 else if (urb->transfer_flags & URB_DMA_MAP_PAGE)
1287 dma_unmap_page(hcd->self.controller,
1288 urb->transfer_dma,
1289 urb->transfer_buffer_length,
1290 dir);
1291 else if (urb->transfer_flags & URB_DMA_MAP_SINGLE)
1292 dma_unmap_single(hcd->self.controller,
1293 urb->transfer_dma,
1294 urb->transfer_buffer_length,
1295 dir);
1296 else if (urb->transfer_flags & URB_MAP_LOCAL)
1297 hcd_free_coherent(urb->dev->bus,
1298 &urb->transfer_dma,
1299 &urb->transfer_buffer,
1300 urb->transfer_buffer_length,
1301 dir);
1303 /* Make it safe to call this routine more than once */
1304 urb->transfer_flags &= ~(URB_SETUP_MAP_SINGLE | URB_SETUP_MAP_LOCAL |
1305 URB_DMA_MAP_SG | URB_DMA_MAP_PAGE |
1306 URB_DMA_MAP_SINGLE | URB_MAP_LOCAL);
1309 static int map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
1310 gfp_t mem_flags)
1312 enum dma_data_direction dir;
1313 int ret = 0;
1315 /* Map the URB's buffers for DMA access.
1316 * Lower level HCD code should use *_dma exclusively,
1317 * unless it uses pio or talks to another transport,
1318 * or uses the provided scatter gather list for bulk.
1321 if (usb_endpoint_xfer_control(&urb->ep->desc)
1322 && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP)) {
1323 if (hcd->self.uses_dma) {
1324 urb->setup_dma = dma_map_single(
1325 hcd->self.controller,
1326 urb->setup_packet,
1327 sizeof(struct usb_ctrlrequest),
1328 DMA_TO_DEVICE);
1329 if (dma_mapping_error(hcd->self.controller,
1330 urb->setup_dma))
1331 return -EAGAIN;
1332 urb->transfer_flags |= URB_SETUP_MAP_SINGLE;
1333 } else if (hcd->driver->flags & HCD_LOCAL_MEM) {
1334 ret = hcd_alloc_coherent(
1335 urb->dev->bus, mem_flags,
1336 &urb->setup_dma,
1337 (void **)&urb->setup_packet,
1338 sizeof(struct usb_ctrlrequest),
1339 DMA_TO_DEVICE);
1340 if (ret)
1341 return ret;
1342 urb->transfer_flags |= URB_SETUP_MAP_LOCAL;
1346 dir = usb_urb_dir_in(urb) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
1347 if (urb->transfer_buffer_length != 0
1348 && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)) {
1349 if (hcd->self.uses_dma) {
1350 if (urb->num_sgs) {
1351 int n = dma_map_sg(
1352 hcd->self.controller,
1353 urb->sg->sg,
1354 urb->num_sgs,
1355 dir);
1356 if (n <= 0)
1357 ret = -EAGAIN;
1358 else
1359 urb->transfer_flags |= URB_DMA_MAP_SG;
1360 if (n != urb->num_sgs) {
1361 urb->num_sgs = n;
1362 urb->transfer_flags |=
1363 URB_DMA_SG_COMBINED;
1365 } else if (urb->sg) {
1366 struct scatterlist *sg;
1368 sg = (struct scatterlist *) urb->sg;
1369 urb->transfer_dma = dma_map_page(
1370 hcd->self.controller,
1371 sg_page(sg),
1372 sg->offset,
1373 urb->transfer_buffer_length,
1374 dir);
1375 if (dma_mapping_error(hcd->self.controller,
1376 urb->transfer_dma))
1377 ret = -EAGAIN;
1378 else
1379 urb->transfer_flags |= URB_DMA_MAP_PAGE;
1380 } else {
1381 urb->transfer_dma = dma_map_single(
1382 hcd->self.controller,
1383 urb->transfer_buffer,
1384 urb->transfer_buffer_length,
1385 dir);
1386 if (dma_mapping_error(hcd->self.controller,
1387 urb->transfer_dma))
1388 ret = -EAGAIN;
1389 else
1390 urb->transfer_flags |= URB_DMA_MAP_SINGLE;
1392 } else if (hcd->driver->flags & HCD_LOCAL_MEM) {
1393 ret = hcd_alloc_coherent(
1394 urb->dev->bus, mem_flags,
1395 &urb->transfer_dma,
1396 &urb->transfer_buffer,
1397 urb->transfer_buffer_length,
1398 dir);
1399 if (ret == 0)
1400 urb->transfer_flags |= URB_MAP_LOCAL;
1402 if (ret && (urb->transfer_flags & (URB_SETUP_MAP_SINGLE |
1403 URB_SETUP_MAP_LOCAL)))
1404 unmap_urb_for_dma(hcd, urb);
1406 return ret;
1409 /*-------------------------------------------------------------------------*/
1411 /* may be called in any context with a valid urb->dev usecount
1412 * caller surrenders "ownership" of urb
1413 * expects usb_submit_urb() to have sanity checked and conditioned all
1414 * inputs in the urb
1416 int usb_hcd_submit_urb (struct urb *urb, gfp_t mem_flags)
1418 int status;
1419 struct usb_hcd *hcd = bus_to_hcd(urb->dev->bus);
1421 /* increment urb's reference count as part of giving it to the HCD
1422 * (which will control it). HCD guarantees that it either returns
1423 * an error or calls giveback(), but not both.
1425 usb_get_urb(urb);
1426 atomic_inc(&urb->use_count);
1427 atomic_inc(&urb->dev->urbnum);
1428 usbmon_urb_submit(&hcd->self, urb);
1430 /* NOTE requirements on root-hub callers (usbfs and the hub
1431 * driver, for now): URBs' urb->transfer_buffer must be
1432 * valid and usb_buffer_{sync,unmap}() not be needed, since
1433 * they could clobber root hub response data. Also, control
1434 * URBs must be submitted in process context with interrupts
1435 * enabled.
1438 if (is_root_hub(urb->dev)) {
1439 status = rh_urb_enqueue(hcd, urb);
1440 } else {
1441 status = map_urb_for_dma(hcd, urb, mem_flags);
1442 if (likely(status == 0)) {
1443 status = hcd->driver->urb_enqueue(hcd, urb, mem_flags);
1444 if (unlikely(status))
1445 unmap_urb_for_dma(hcd, urb);
1449 if (unlikely(status)) {
1450 usbmon_urb_submit_error(&hcd->self, urb, status);
1451 urb->hcpriv = NULL;
1452 INIT_LIST_HEAD(&urb->urb_list);
1453 atomic_dec(&urb->use_count);
1454 atomic_dec(&urb->dev->urbnum);
1455 if (atomic_read(&urb->reject))
1456 wake_up(&usb_kill_urb_queue);
1457 usb_put_urb(urb);
1459 return status;
1462 /*-------------------------------------------------------------------------*/
1464 /* this makes the hcd giveback() the urb more quickly, by kicking it
1465 * off hardware queues (which may take a while) and returning it as
1466 * soon as practical. we've already set up the urb's return status,
1467 * but we can't know if the callback completed already.
1469 static int unlink1(struct usb_hcd *hcd, struct urb *urb, int status)
1471 int value;
1473 if (is_root_hub(urb->dev))
1474 value = usb_rh_urb_dequeue(hcd, urb, status);
1475 else {
1477 /* The only reason an HCD might fail this call is if
1478 * it has not yet fully queued the urb to begin with.
1479 * Such failures should be harmless. */
1480 value = hcd->driver->urb_dequeue(hcd, urb, status);
1482 return value;
1486 * called in any context
1488 * caller guarantees urb won't be recycled till both unlink()
1489 * and the urb's completion function return
1491 int usb_hcd_unlink_urb (struct urb *urb, int status)
1493 struct usb_hcd *hcd;
1494 int retval = -EIDRM;
1495 unsigned long flags;
1497 /* Prevent the device and bus from going away while
1498 * the unlink is carried out. If they are already gone
1499 * then urb->use_count must be 0, since disconnected
1500 * devices can't have any active URBs.
1502 spin_lock_irqsave(&hcd_urb_unlink_lock, flags);
1503 if (atomic_read(&urb->use_count) > 0) {
1504 retval = 0;
1505 usb_get_dev(urb->dev);
1507 spin_unlock_irqrestore(&hcd_urb_unlink_lock, flags);
1508 if (retval == 0) {
1509 hcd = bus_to_hcd(urb->dev->bus);
1510 retval = unlink1(hcd, urb, status);
1511 usb_put_dev(urb->dev);
1514 if (retval == 0)
1515 retval = -EINPROGRESS;
1516 else if (retval != -EIDRM && retval != -EBUSY)
1517 dev_dbg(&urb->dev->dev, "hcd_unlink_urb %p fail %d\n",
1518 urb, retval);
1519 return retval;
1522 /*-------------------------------------------------------------------------*/
1525 * usb_hcd_giveback_urb - return URB from HCD to device driver
1526 * @hcd: host controller returning the URB
1527 * @urb: urb being returned to the USB device driver.
1528 * @status: completion status code for the URB.
1529 * Context: in_interrupt()
1531 * This hands the URB from HCD to its USB device driver, using its
1532 * completion function. The HCD has freed all per-urb resources
1533 * (and is done using urb->hcpriv). It also released all HCD locks;
1534 * the device driver won't cause problems if it frees, modifies,
1535 * or resubmits this URB.
1537 * If @urb was unlinked, the value of @status will be overridden by
1538 * @urb->unlinked. Erroneous short transfers are detected in case
1539 * the HCD hasn't checked for them.
1541 void usb_hcd_giveback_urb(struct usb_hcd *hcd, struct urb *urb, int status)
1543 urb->hcpriv = NULL;
1544 if (unlikely(urb->unlinked))
1545 status = urb->unlinked;
1546 else if (unlikely((urb->transfer_flags & URB_SHORT_NOT_OK) &&
1547 urb->actual_length < urb->transfer_buffer_length &&
1548 !status))
1549 status = -EREMOTEIO;
1551 unmap_urb_for_dma(hcd, urb);
1552 usbmon_urb_complete(&hcd->self, urb, status);
1553 usb_unanchor_urb(urb);
1555 /* pass ownership to the completion handler */
1556 urb->status = status;
1557 urb->complete (urb);
1558 atomic_dec (&urb->use_count);
1559 if (unlikely(atomic_read(&urb->reject)))
1560 wake_up (&usb_kill_urb_queue);
1561 usb_put_urb (urb);
1563 EXPORT_SYMBOL_GPL(usb_hcd_giveback_urb);
1565 /*-------------------------------------------------------------------------*/
1567 /* Cancel all URBs pending on this endpoint and wait for the endpoint's
1568 * queue to drain completely. The caller must first insure that no more
1569 * URBs can be submitted for this endpoint.
1571 void usb_hcd_flush_endpoint(struct usb_device *udev,
1572 struct usb_host_endpoint *ep)
1574 struct usb_hcd *hcd;
1575 struct urb *urb;
1577 if (!ep)
1578 return;
1579 might_sleep();
1580 hcd = bus_to_hcd(udev->bus);
1582 /* No more submits can occur */
1583 spin_lock_irq(&hcd_urb_list_lock);
1584 rescan:
1585 list_for_each_entry (urb, &ep->urb_list, urb_list) {
1586 int is_in;
1588 if (urb->unlinked)
1589 continue;
1590 usb_get_urb (urb);
1591 is_in = usb_urb_dir_in(urb);
1592 spin_unlock(&hcd_urb_list_lock);
1594 /* kick hcd */
1595 unlink1(hcd, urb, -ESHUTDOWN);
1596 dev_dbg (hcd->self.controller,
1597 "shutdown urb %p ep%d%s%s\n",
1598 urb, usb_endpoint_num(&ep->desc),
1599 is_in ? "in" : "out",
1600 ({ char *s;
1602 switch (usb_endpoint_type(&ep->desc)) {
1603 case USB_ENDPOINT_XFER_CONTROL:
1604 s = ""; break;
1605 case USB_ENDPOINT_XFER_BULK:
1606 s = "-bulk"; break;
1607 case USB_ENDPOINT_XFER_INT:
1608 s = "-intr"; break;
1609 default:
1610 s = "-iso"; break;
1613 }));
1614 usb_put_urb (urb);
1616 /* list contents may have changed */
1617 spin_lock(&hcd_urb_list_lock);
1618 goto rescan;
1620 spin_unlock_irq(&hcd_urb_list_lock);
1622 /* Wait until the endpoint queue is completely empty */
1623 while (!list_empty (&ep->urb_list)) {
1624 spin_lock_irq(&hcd_urb_list_lock);
1626 /* The list may have changed while we acquired the spinlock */
1627 urb = NULL;
1628 if (!list_empty (&ep->urb_list)) {
1629 urb = list_entry (ep->urb_list.prev, struct urb,
1630 urb_list);
1631 usb_get_urb (urb);
1633 spin_unlock_irq(&hcd_urb_list_lock);
1635 if (urb) {
1636 usb_kill_urb (urb);
1637 usb_put_urb (urb);
1643 * usb_hcd_alloc_bandwidth - check whether a new bandwidth setting exceeds
1644 * the bus bandwidth
1645 * @udev: target &usb_device
1646 * @new_config: new configuration to install
1647 * @cur_alt: the current alternate interface setting
1648 * @new_alt: alternate interface setting that is being installed
1650 * To change configurations, pass in the new configuration in new_config,
1651 * and pass NULL for cur_alt and new_alt.
1653 * To reset a device's configuration (put the device in the ADDRESSED state),
1654 * pass in NULL for new_config, cur_alt, and new_alt.
1656 * To change alternate interface settings, pass in NULL for new_config,
1657 * pass in the current alternate interface setting in cur_alt,
1658 * and pass in the new alternate interface setting in new_alt.
1660 * Returns an error if the requested bandwidth change exceeds the
1661 * bus bandwidth or host controller internal resources.
1663 int usb_hcd_alloc_bandwidth(struct usb_device *udev,
1664 struct usb_host_config *new_config,
1665 struct usb_host_interface *cur_alt,
1666 struct usb_host_interface *new_alt)
1668 int num_intfs, i, j;
1669 struct usb_host_interface *alt = NULL;
1670 int ret = 0;
1671 struct usb_hcd *hcd;
1672 struct usb_host_endpoint *ep;
1674 hcd = bus_to_hcd(udev->bus);
1675 if (!hcd->driver->check_bandwidth)
1676 return 0;
1678 /* Configuration is being removed - set configuration 0 */
1679 if (!new_config && !cur_alt) {
1680 for (i = 1; i < 16; ++i) {
1681 ep = udev->ep_out[i];
1682 if (ep)
1683 hcd->driver->drop_endpoint(hcd, udev, ep);
1684 ep = udev->ep_in[i];
1685 if (ep)
1686 hcd->driver->drop_endpoint(hcd, udev, ep);
1688 hcd->driver->check_bandwidth(hcd, udev);
1689 return 0;
1691 /* Check if the HCD says there's enough bandwidth. Enable all endpoints
1692 * each interface's alt setting 0 and ask the HCD to check the bandwidth
1693 * of the bus. There will always be bandwidth for endpoint 0, so it's
1694 * ok to exclude it.
1696 if (new_config) {
1697 num_intfs = new_config->desc.bNumInterfaces;
1698 /* Remove endpoints (except endpoint 0, which is always on the
1699 * schedule) from the old config from the schedule
1701 for (i = 1; i < 16; ++i) {
1702 ep = udev->ep_out[i];
1703 if (ep) {
1704 ret = hcd->driver->drop_endpoint(hcd, udev, ep);
1705 if (ret < 0)
1706 goto reset;
1708 ep = udev->ep_in[i];
1709 if (ep) {
1710 ret = hcd->driver->drop_endpoint(hcd, udev, ep);
1711 if (ret < 0)
1712 goto reset;
1715 for (i = 0; i < num_intfs; ++i) {
1716 struct usb_host_interface *first_alt;
1717 int iface_num;
1719 first_alt = &new_config->intf_cache[i]->altsetting[0];
1720 iface_num = first_alt->desc.bInterfaceNumber;
1721 /* Set up endpoints for alternate interface setting 0 */
1722 alt = usb_find_alt_setting(new_config, iface_num, 0);
1723 if (!alt)
1724 /* No alt setting 0? Pick the first setting. */
1725 alt = first_alt;
1727 for (j = 0; j < alt->desc.bNumEndpoints; j++) {
1728 ret = hcd->driver->add_endpoint(hcd, udev, &alt->endpoint[j]);
1729 if (ret < 0)
1730 goto reset;
1734 if (cur_alt && new_alt) {
1735 struct usb_interface *iface = usb_ifnum_to_if(udev,
1736 cur_alt->desc.bInterfaceNumber);
1738 if (iface->resetting_device) {
1740 * The USB core just reset the device, so the xHCI host
1741 * and the device will think alt setting 0 is installed.
1742 * However, the USB core will pass in the alternate
1743 * setting installed before the reset as cur_alt. Dig
1744 * out the alternate setting 0 structure, or the first
1745 * alternate setting if a broken device doesn't have alt
1746 * setting 0.
1748 cur_alt = usb_altnum_to_altsetting(iface, 0);
1749 if (!cur_alt)
1750 cur_alt = &iface->altsetting[0];
1753 /* Drop all the endpoints in the current alt setting */
1754 for (i = 0; i < cur_alt->desc.bNumEndpoints; i++) {
1755 ret = hcd->driver->drop_endpoint(hcd, udev,
1756 &cur_alt->endpoint[i]);
1757 if (ret < 0)
1758 goto reset;
1760 /* Add all the endpoints in the new alt setting */
1761 for (i = 0; i < new_alt->desc.bNumEndpoints; i++) {
1762 ret = hcd->driver->add_endpoint(hcd, udev,
1763 &new_alt->endpoint[i]);
1764 if (ret < 0)
1765 goto reset;
1768 ret = hcd->driver->check_bandwidth(hcd, udev);
1769 reset:
1770 if (ret < 0)
1771 hcd->driver->reset_bandwidth(hcd, udev);
1772 return ret;
1775 /* Disables the endpoint: synchronizes with the hcd to make sure all
1776 * endpoint state is gone from hardware. usb_hcd_flush_endpoint() must
1777 * have been called previously. Use for set_configuration, set_interface,
1778 * driver removal, physical disconnect.
1780 * example: a qh stored in ep->hcpriv, holding state related to endpoint
1781 * type, maxpacket size, toggle, halt status, and scheduling.
1783 void usb_hcd_disable_endpoint(struct usb_device *udev,
1784 struct usb_host_endpoint *ep)
1786 struct usb_hcd *hcd;
1788 might_sleep();
1789 hcd = bus_to_hcd(udev->bus);
1790 if (hcd->driver->endpoint_disable)
1791 hcd->driver->endpoint_disable(hcd, ep);
1795 * usb_hcd_reset_endpoint - reset host endpoint state
1796 * @udev: USB device.
1797 * @ep: the endpoint to reset.
1799 * Resets any host endpoint state such as the toggle bit, sequence
1800 * number and current window.
1802 void usb_hcd_reset_endpoint(struct usb_device *udev,
1803 struct usb_host_endpoint *ep)
1805 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
1807 if (hcd->driver->endpoint_reset)
1808 hcd->driver->endpoint_reset(hcd, ep);
1809 else {
1810 int epnum = usb_endpoint_num(&ep->desc);
1811 int is_out = usb_endpoint_dir_out(&ep->desc);
1812 int is_control = usb_endpoint_xfer_control(&ep->desc);
1814 usb_settoggle(udev, epnum, is_out, 0);
1815 if (is_control)
1816 usb_settoggle(udev, epnum, !is_out, 0);
1820 /* Protect against drivers that try to unlink URBs after the device
1821 * is gone, by waiting until all unlinks for @udev are finished.
1822 * Since we don't currently track URBs by device, simply wait until
1823 * nothing is running in the locked region of usb_hcd_unlink_urb().
1825 void usb_hcd_synchronize_unlinks(struct usb_device *udev)
1827 spin_lock_irq(&hcd_urb_unlink_lock);
1828 spin_unlock_irq(&hcd_urb_unlink_lock);
1831 /*-------------------------------------------------------------------------*/
1833 /* called in any context */
1834 int usb_hcd_get_frame_number (struct usb_device *udev)
1836 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
1838 if (!HC_IS_RUNNING (hcd->state))
1839 return -ESHUTDOWN;
1840 return hcd->driver->get_frame_number (hcd);
1843 /*-------------------------------------------------------------------------*/
1845 #ifdef CONFIG_PM
1847 int hcd_bus_suspend(struct usb_device *rhdev, pm_message_t msg)
1849 struct usb_hcd *hcd = container_of(rhdev->bus, struct usb_hcd, self);
1850 int status;
1851 int old_state = hcd->state;
1853 dev_dbg(&rhdev->dev, "bus %s%s\n",
1854 (msg.event & PM_EVENT_AUTO ? "auto-" : ""), "suspend");
1855 if (!hcd->driver->bus_suspend) {
1856 status = -ENOENT;
1857 } else {
1858 hcd->state = HC_STATE_QUIESCING;
1859 status = hcd->driver->bus_suspend(hcd);
1861 if (status == 0) {
1862 usb_set_device_state(rhdev, USB_STATE_SUSPENDED);
1863 hcd->state = HC_STATE_SUSPENDED;
1864 } else {
1865 hcd->state = old_state;
1866 dev_dbg(&rhdev->dev, "bus %s fail, err %d\n",
1867 "suspend", status);
1869 return status;
1872 int hcd_bus_resume(struct usb_device *rhdev, pm_message_t msg)
1874 struct usb_hcd *hcd = container_of(rhdev->bus, struct usb_hcd, self);
1875 int status;
1876 int old_state = hcd->state;
1878 dev_dbg(&rhdev->dev, "usb %s%s\n",
1879 (msg.event & PM_EVENT_AUTO ? "auto-" : ""), "resume");
1880 if (!hcd->driver->bus_resume)
1881 return -ENOENT;
1882 if (hcd->state == HC_STATE_RUNNING)
1883 return 0;
1885 hcd->state = HC_STATE_RESUMING;
1886 status = hcd->driver->bus_resume(hcd);
1887 if (status == 0) {
1888 /* TRSMRCY = 10 msec */
1889 msleep(10);
1890 usb_set_device_state(rhdev, rhdev->actconfig
1891 ? USB_STATE_CONFIGURED
1892 : USB_STATE_ADDRESS);
1893 hcd->state = HC_STATE_RUNNING;
1894 } else {
1895 hcd->state = old_state;
1896 dev_dbg(&rhdev->dev, "bus %s fail, err %d\n",
1897 "resume", status);
1898 if (status != -ESHUTDOWN)
1899 usb_hc_died(hcd);
1901 return status;
1904 #endif /* CONFIG_PM */
1906 #ifdef CONFIG_USB_SUSPEND
1908 /* Workqueue routine for root-hub remote wakeup */
1909 static void hcd_resume_work(struct work_struct *work)
1911 struct usb_hcd *hcd = container_of(work, struct usb_hcd, wakeup_work);
1912 struct usb_device *udev = hcd->self.root_hub;
1914 usb_lock_device(udev);
1915 usb_remote_wakeup(udev);
1916 usb_unlock_device(udev);
1920 * usb_hcd_resume_root_hub - called by HCD to resume its root hub
1921 * @hcd: host controller for this root hub
1923 * The USB host controller calls this function when its root hub is
1924 * suspended (with the remote wakeup feature enabled) and a remote
1925 * wakeup request is received. The routine submits a workqueue request
1926 * to resume the root hub (that is, manage its downstream ports again).
1928 void usb_hcd_resume_root_hub (struct usb_hcd *hcd)
1930 unsigned long flags;
1932 spin_lock_irqsave (&hcd_root_hub_lock, flags);
1933 if (hcd->rh_registered)
1934 queue_work(pm_wq, &hcd->wakeup_work);
1935 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
1937 EXPORT_SYMBOL_GPL(usb_hcd_resume_root_hub);
1939 #endif /* CONFIG_USB_SUSPEND */
1941 /*-------------------------------------------------------------------------*/
1943 #ifdef CONFIG_USB_OTG
1946 * usb_bus_start_enum - start immediate enumeration (for OTG)
1947 * @bus: the bus (must use hcd framework)
1948 * @port_num: 1-based number of port; usually bus->otg_port
1949 * Context: in_interrupt()
1951 * Starts enumeration, with an immediate reset followed later by
1952 * khubd identifying and possibly configuring the device.
1953 * This is needed by OTG controller drivers, where it helps meet
1954 * HNP protocol timing requirements for starting a port reset.
1956 int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num)
1958 struct usb_hcd *hcd;
1959 int status = -EOPNOTSUPP;
1961 /* NOTE: since HNP can't start by grabbing the bus's address0_sem,
1962 * boards with root hubs hooked up to internal devices (instead of
1963 * just the OTG port) may need more attention to resetting...
1965 hcd = container_of (bus, struct usb_hcd, self);
1966 if (port_num && hcd->driver->start_port_reset)
1967 status = hcd->driver->start_port_reset(hcd, port_num);
1969 /* run khubd shortly after (first) root port reset finishes;
1970 * it may issue others, until at least 50 msecs have passed.
1972 if (status == 0)
1973 mod_timer(&hcd->rh_timer, jiffies + msecs_to_jiffies(10));
1974 return status;
1976 EXPORT_SYMBOL_GPL(usb_bus_start_enum);
1978 #endif
1980 /*-------------------------------------------------------------------------*/
1983 * usb_hcd_irq - hook IRQs to HCD framework (bus glue)
1984 * @irq: the IRQ being raised
1985 * @__hcd: pointer to the HCD whose IRQ is being signaled
1987 * If the controller isn't HALTed, calls the driver's irq handler.
1988 * Checks whether the controller is now dead.
1990 irqreturn_t usb_hcd_irq (int irq, void *__hcd)
1992 struct usb_hcd *hcd = __hcd;
1993 unsigned long flags;
1994 irqreturn_t rc;
1996 /* IRQF_DISABLED doesn't work correctly with shared IRQs
1997 * when the first handler doesn't use it. So let's just
1998 * assume it's never used.
2000 local_irq_save(flags);
2002 if (unlikely(hcd->state == HC_STATE_HALT ||
2003 !test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags))) {
2004 rc = IRQ_NONE;
2005 } else if (hcd->driver->irq(hcd) == IRQ_NONE) {
2006 rc = IRQ_NONE;
2007 } else {
2008 set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
2010 if (unlikely(hcd->state == HC_STATE_HALT))
2011 usb_hc_died(hcd);
2012 rc = IRQ_HANDLED;
2015 local_irq_restore(flags);
2016 return rc;
2019 /*-------------------------------------------------------------------------*/
2022 * usb_hc_died - report abnormal shutdown of a host controller (bus glue)
2023 * @hcd: pointer to the HCD representing the controller
2025 * This is called by bus glue to report a USB host controller that died
2026 * while operations may still have been pending. It's called automatically
2027 * by the PCI glue, so only glue for non-PCI busses should need to call it.
2029 void usb_hc_died (struct usb_hcd *hcd)
2031 unsigned long flags;
2033 dev_err (hcd->self.controller, "HC died; cleaning up\n");
2035 spin_lock_irqsave (&hcd_root_hub_lock, flags);
2036 if (hcd->rh_registered) {
2037 hcd->poll_rh = 0;
2039 /* make khubd clean up old urbs and devices */
2040 usb_set_device_state (hcd->self.root_hub,
2041 USB_STATE_NOTATTACHED);
2042 usb_kick_khubd (hcd->self.root_hub);
2044 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
2046 EXPORT_SYMBOL_GPL (usb_hc_died);
2048 /*-------------------------------------------------------------------------*/
2051 * usb_create_hcd - create and initialize an HCD structure
2052 * @driver: HC driver that will use this hcd
2053 * @dev: device for this HC, stored in hcd->self.controller
2054 * @bus_name: value to store in hcd->self.bus_name
2055 * Context: !in_interrupt()
2057 * Allocate a struct usb_hcd, with extra space at the end for the
2058 * HC driver's private data. Initialize the generic members of the
2059 * hcd structure.
2061 * If memory is unavailable, returns NULL.
2063 struct usb_hcd *usb_create_hcd (const struct hc_driver *driver,
2064 struct device *dev, const char *bus_name)
2066 struct usb_hcd *hcd;
2068 hcd = kzalloc(sizeof(*hcd) + driver->hcd_priv_size, GFP_KERNEL);
2069 if (!hcd) {
2070 dev_dbg (dev, "hcd alloc failed\n");
2071 return NULL;
2073 dev_set_drvdata(dev, hcd);
2074 kref_init(&hcd->kref);
2076 usb_bus_init(&hcd->self);
2077 hcd->self.controller = dev;
2078 hcd->self.bus_name = bus_name;
2079 hcd->self.uses_dma = (dev->dma_mask != NULL);
2081 init_timer(&hcd->rh_timer);
2082 hcd->rh_timer.function = rh_timer_func;
2083 hcd->rh_timer.data = (unsigned long) hcd;
2084 #ifdef CONFIG_USB_SUSPEND
2085 INIT_WORK(&hcd->wakeup_work, hcd_resume_work);
2086 #endif
2087 mutex_init(&hcd->bandwidth_mutex);
2089 hcd->driver = driver;
2090 hcd->product_desc = (driver->product_desc) ? driver->product_desc :
2091 "USB Host Controller";
2092 return hcd;
2094 EXPORT_SYMBOL_GPL(usb_create_hcd);
2096 static void hcd_release (struct kref *kref)
2098 struct usb_hcd *hcd = container_of (kref, struct usb_hcd, kref);
2100 kfree(hcd);
2103 struct usb_hcd *usb_get_hcd (struct usb_hcd *hcd)
2105 if (hcd)
2106 kref_get (&hcd->kref);
2107 return hcd;
2109 EXPORT_SYMBOL_GPL(usb_get_hcd);
2111 void usb_put_hcd (struct usb_hcd *hcd)
2113 if (hcd)
2114 kref_put (&hcd->kref, hcd_release);
2116 EXPORT_SYMBOL_GPL(usb_put_hcd);
2119 * usb_add_hcd - finish generic HCD structure initialization and register
2120 * @hcd: the usb_hcd structure to initialize
2121 * @irqnum: Interrupt line to allocate
2122 * @irqflags: Interrupt type flags
2124 * Finish the remaining parts of generic HCD initialization: allocate the
2125 * buffers of consistent memory, register the bus, request the IRQ line,
2126 * and call the driver's reset() and start() routines.
2128 int usb_add_hcd(struct usb_hcd *hcd,
2129 unsigned int irqnum, unsigned long irqflags)
2131 int retval;
2132 struct usb_device *rhdev;
2134 dev_info(hcd->self.controller, "%s\n", hcd->product_desc);
2136 hcd->authorized_default = hcd->wireless? 0 : 1;
2137 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
2139 /* HC is in reset state, but accessible. Now do the one-time init,
2140 * bottom up so that hcds can customize the root hubs before khubd
2141 * starts talking to them. (Note, bus id is assigned early too.)
2143 if ((retval = hcd_buffer_create(hcd)) != 0) {
2144 dev_dbg(hcd->self.controller, "pool alloc failed\n");
2145 return retval;
2148 if ((retval = usb_register_bus(&hcd->self)) < 0)
2149 goto err_register_bus;
2151 if ((rhdev = usb_alloc_dev(NULL, &hcd->self, 0)) == NULL) {
2152 dev_err(hcd->self.controller, "unable to allocate root hub\n");
2153 retval = -ENOMEM;
2154 goto err_allocate_root_hub;
2157 switch (hcd->driver->flags & HCD_MASK) {
2158 case HCD_USB11:
2159 rhdev->speed = USB_SPEED_FULL;
2160 break;
2161 case HCD_USB2:
2162 rhdev->speed = USB_SPEED_HIGH;
2163 break;
2164 case HCD_USB3:
2165 rhdev->speed = USB_SPEED_SUPER;
2166 break;
2167 default:
2168 goto err_allocate_root_hub;
2170 hcd->self.root_hub = rhdev;
2172 /* wakeup flag init defaults to "everything works" for root hubs,
2173 * but drivers can override it in reset() if needed, along with
2174 * recording the overall controller's system wakeup capability.
2176 device_init_wakeup(&rhdev->dev, 1);
2178 /* "reset" is misnamed; its role is now one-time init. the controller
2179 * should already have been reset (and boot firmware kicked off etc).
2181 if (hcd->driver->reset && (retval = hcd->driver->reset(hcd)) < 0) {
2182 dev_err(hcd->self.controller, "can't setup\n");
2183 goto err_hcd_driver_setup;
2186 /* NOTE: root hub and controller capabilities may not be the same */
2187 if (device_can_wakeup(hcd->self.controller)
2188 && device_can_wakeup(&hcd->self.root_hub->dev))
2189 dev_dbg(hcd->self.controller, "supports USB remote wakeup\n");
2191 /* enable irqs just before we start the controller */
2192 if (hcd->driver->irq) {
2194 /* IRQF_DISABLED doesn't work as advertised when used together
2195 * with IRQF_SHARED. As usb_hcd_irq() will always disable
2196 * interrupts we can remove it here.
2198 if (irqflags & IRQF_SHARED)
2199 irqflags &= ~IRQF_DISABLED;
2201 snprintf(hcd->irq_descr, sizeof(hcd->irq_descr), "%s:usb%d",
2202 hcd->driver->description, hcd->self.busnum);
2203 if ((retval = request_irq(irqnum, &usb_hcd_irq, irqflags,
2204 hcd->irq_descr, hcd)) != 0) {
2205 dev_err(hcd->self.controller,
2206 "request interrupt %d failed\n", irqnum);
2207 goto err_request_irq;
2209 hcd->irq = irqnum;
2210 dev_info(hcd->self.controller, "irq %d, %s 0x%08llx\n", irqnum,
2211 (hcd->driver->flags & HCD_MEMORY) ?
2212 "io mem" : "io base",
2213 (unsigned long long)hcd->rsrc_start);
2214 } else {
2215 hcd->irq = -1;
2216 if (hcd->rsrc_start)
2217 dev_info(hcd->self.controller, "%s 0x%08llx\n",
2218 (hcd->driver->flags & HCD_MEMORY) ?
2219 "io mem" : "io base",
2220 (unsigned long long)hcd->rsrc_start);
2223 if ((retval = hcd->driver->start(hcd)) < 0) {
2224 dev_err(hcd->self.controller, "startup error %d\n", retval);
2225 goto err_hcd_driver_start;
2228 /* starting here, usbcore will pay attention to this root hub */
2229 rhdev->bus_mA = min(500u, hcd->power_budget);
2230 if ((retval = register_root_hub(hcd)) != 0)
2231 goto err_register_root_hub;
2233 retval = sysfs_create_group(&rhdev->dev.kobj, &usb_bus_attr_group);
2234 if (retval < 0) {
2235 printk(KERN_ERR "Cannot register USB bus sysfs attributes: %d\n",
2236 retval);
2237 goto error_create_attr_group;
2239 if (hcd->uses_new_polling && hcd->poll_rh)
2240 usb_hcd_poll_rh_status(hcd);
2241 return retval;
2243 error_create_attr_group:
2244 mutex_lock(&usb_bus_list_lock);
2245 usb_disconnect(&hcd->self.root_hub);
2246 mutex_unlock(&usb_bus_list_lock);
2247 err_register_root_hub:
2248 hcd->driver->stop(hcd);
2249 err_hcd_driver_start:
2250 if (hcd->irq >= 0)
2251 free_irq(irqnum, hcd);
2252 err_request_irq:
2253 err_hcd_driver_setup:
2254 hcd->self.root_hub = NULL;
2255 usb_put_dev(rhdev);
2256 err_allocate_root_hub:
2257 usb_deregister_bus(&hcd->self);
2258 err_register_bus:
2259 hcd_buffer_destroy(hcd);
2260 return retval;
2262 EXPORT_SYMBOL_GPL(usb_add_hcd);
2265 * usb_remove_hcd - shutdown processing for generic HCDs
2266 * @hcd: the usb_hcd structure to remove
2267 * Context: !in_interrupt()
2269 * Disconnects the root hub, then reverses the effects of usb_add_hcd(),
2270 * invoking the HCD's stop() method.
2272 void usb_remove_hcd(struct usb_hcd *hcd)
2274 dev_info(hcd->self.controller, "remove, state %x\n", hcd->state);
2276 if (HC_IS_RUNNING (hcd->state))
2277 hcd->state = HC_STATE_QUIESCING;
2279 dev_dbg(hcd->self.controller, "roothub graceful disconnect\n");
2280 spin_lock_irq (&hcd_root_hub_lock);
2281 hcd->rh_registered = 0;
2282 spin_unlock_irq (&hcd_root_hub_lock);
2284 #ifdef CONFIG_USB_SUSPEND
2285 cancel_work_sync(&hcd->wakeup_work);
2286 #endif
2288 sysfs_remove_group(&hcd->self.root_hub->dev.kobj, &usb_bus_attr_group);
2289 mutex_lock(&usb_bus_list_lock);
2290 usb_disconnect(&hcd->self.root_hub);
2291 mutex_unlock(&usb_bus_list_lock);
2293 hcd->driver->stop(hcd);
2294 hcd->state = HC_STATE_HALT;
2296 hcd->poll_rh = 0;
2297 del_timer_sync(&hcd->rh_timer);
2299 if (hcd->irq >= 0)
2300 free_irq(hcd->irq, hcd);
2301 usb_deregister_bus(&hcd->self);
2302 hcd_buffer_destroy(hcd);
2304 EXPORT_SYMBOL_GPL(usb_remove_hcd);
2306 void
2307 usb_hcd_platform_shutdown(struct platform_device* dev)
2309 struct usb_hcd *hcd = platform_get_drvdata(dev);
2311 if (hcd->driver->shutdown)
2312 hcd->driver->shutdown(hcd);
2314 EXPORT_SYMBOL_GPL(usb_hcd_platform_shutdown);
2316 /*-------------------------------------------------------------------------*/
2318 #if defined(CONFIG_USB_MON) || defined(CONFIG_USB_MON_MODULE)
2320 struct usb_mon_operations *mon_ops;
2323 * The registration is unlocked.
2324 * We do it this way because we do not want to lock in hot paths.
2326 * Notice that the code is minimally error-proof. Because usbmon needs
2327 * symbols from usbcore, usbcore gets referenced and cannot be unloaded first.
2330 int usb_mon_register (struct usb_mon_operations *ops)
2333 if (mon_ops)
2334 return -EBUSY;
2336 mon_ops = ops;
2337 mb();
2338 return 0;
2340 EXPORT_SYMBOL_GPL (usb_mon_register);
2342 void usb_mon_deregister (void)
2345 if (mon_ops == NULL) {
2346 printk(KERN_ERR "USB: monitor was not registered\n");
2347 return;
2349 mon_ops = NULL;
2350 mb();
2352 EXPORT_SYMBOL_GPL (usb_mon_deregister);
2354 #endif /* CONFIG_USB_MON || CONFIG_USB_MON_MODULE */