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
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
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/config.h>
27 #ifdef CONFIG_USB_DEBUG
31 #include <linux/module.h>
32 #include <linux/version.h>
33 #include <linux/kernel.h>
34 #include <linux/slab.h>
35 #include <linux/completion.h>
36 #include <linux/utsname.h>
39 #include <asm/scatterlist.h>
40 #include <linux/device.h>
41 #include <linux/dma-mapping.h>
43 #include <asm/byteorder.h>
45 #include <linux/usb.h>
52 // #define USB_BANDWIDTH_MESSAGES
54 /*-------------------------------------------------------------------------*/
57 * USB Host Controller Driver framework
59 * Plugs into usbcore (usb_bus) and lets HCDs share code, minimizing
60 * HCD-specific behaviors/bugs.
62 * This does error checks, tracks devices and urbs, and delegates to a
63 * "hc_driver" only for code (and data) that really needs to know about
64 * hardware differences. That includes root hub registers, i/o queues,
65 * and so on ... but as little else as possible.
67 * Shared code includes most of the "root hub" code (these are emulated,
68 * though each HC's hardware works differently) and PCI glue, plus request
69 * tracking overhead. The HCD code should only block on spinlocks or on
70 * hardware handshaking; blocking on software events (such as other kernel
71 * threads releasing resources, or completing actions) is all generic.
73 * Happens the USB 2.0 spec says this would be invisible inside the "USBD",
74 * and includes mostly a "HCDI" (HCD Interface) along with some APIs used
75 * only by the hub driver ... and that neither should be seen or used by
76 * usb client device drivers.
78 * Contributors of ideas or unattributed patches include: David Brownell,
79 * Roman Weissgaerber, Rory Bolt, Greg Kroah-Hartman, ...
82 * 2002-02-21 Pull in most of the usb_bus support from usb.c; some
83 * associated cleanup. "usb_hcd" still != "usb_bus".
84 * 2001-12-12 Initial patch version for Linux 2.5.1 kernel.
87 /*-------------------------------------------------------------------------*/
89 /* host controllers we manage */
90 LIST_HEAD (usb_bus_list);
91 EXPORT_SYMBOL_GPL (usb_bus_list);
93 /* used when allocating bus numbers */
96 unsigned long busmap [USB_MAXBUS / (8*sizeof (unsigned long))];
98 static struct usb_busmap busmap;
100 /* used when updating list of hcds */
101 DECLARE_MUTEX (usb_bus_list_lock); /* exported only for usbfs */
102 EXPORT_SYMBOL_GPL (usb_bus_list_lock);
104 /* used for controlling access to virtual root hubs */
105 static DEFINE_SPINLOCK(hcd_root_hub_lock);
107 /* used when updating hcd data */
108 static DEFINE_SPINLOCK(hcd_data_lock);
110 /* wait queue for synchronous unlinks */
111 DECLARE_WAIT_QUEUE_HEAD(usb_kill_urb_queue);
113 /*-------------------------------------------------------------------------*/
116 * Sharable chunks of root hub code.
119 /*-------------------------------------------------------------------------*/
121 #define KERNEL_REL ((LINUX_VERSION_CODE >> 16) & 0x0ff)
122 #define KERNEL_VER ((LINUX_VERSION_CODE >> 8) & 0x0ff)
124 /* usb 2.0 root hub device descriptor */
125 static const u8 usb2_rh_dev_descriptor [18] = {
126 0x12, /* __u8 bLength; */
127 0x01, /* __u8 bDescriptorType; Device */
128 0x00, 0x02, /* __le16 bcdUSB; v2.0 */
130 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
131 0x00, /* __u8 bDeviceSubClass; */
132 0x01, /* __u8 bDeviceProtocol; [ usb 2.0 single TT ]*/
133 0x08, /* __u8 bMaxPacketSize0; 8 Bytes */
135 0x00, 0x00, /* __le16 idVendor; */
136 0x00, 0x00, /* __le16 idProduct; */
137 KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
139 0x03, /* __u8 iManufacturer; */
140 0x02, /* __u8 iProduct; */
141 0x01, /* __u8 iSerialNumber; */
142 0x01 /* __u8 bNumConfigurations; */
145 /* no usb 2.0 root hub "device qualifier" descriptor: one speed only */
147 /* usb 1.1 root hub device descriptor */
148 static const u8 usb11_rh_dev_descriptor [18] = {
149 0x12, /* __u8 bLength; */
150 0x01, /* __u8 bDescriptorType; Device */
151 0x10, 0x01, /* __le16 bcdUSB; v1.1 */
153 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
154 0x00, /* __u8 bDeviceSubClass; */
155 0x00, /* __u8 bDeviceProtocol; [ low/full speeds only ] */
156 0x08, /* __u8 bMaxPacketSize0; 8 Bytes */
158 0x00, 0x00, /* __le16 idVendor; */
159 0x00, 0x00, /* __le16 idProduct; */
160 KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
162 0x03, /* __u8 iManufacturer; */
163 0x02, /* __u8 iProduct; */
164 0x01, /* __u8 iSerialNumber; */
165 0x01 /* __u8 bNumConfigurations; */
169 /*-------------------------------------------------------------------------*/
171 /* Configuration descriptors for our root hubs */
173 static const u8 fs_rh_config_descriptor [] = {
175 /* one configuration */
176 0x09, /* __u8 bLength; */
177 0x02, /* __u8 bDescriptorType; Configuration */
178 0x19, 0x00, /* __le16 wTotalLength; */
179 0x01, /* __u8 bNumInterfaces; (1) */
180 0x01, /* __u8 bConfigurationValue; */
181 0x00, /* __u8 iConfiguration; */
182 0xc0, /* __u8 bmAttributes;
187 0x00, /* __u8 MaxPower; */
190 * USB 2.0, single TT organization (mandatory):
191 * one interface, protocol 0
193 * USB 2.0, multiple TT organization (optional):
194 * two interfaces, protocols 1 (like single TT)
195 * and 2 (multiple TT mode) ... config is
201 0x09, /* __u8 if_bLength; */
202 0x04, /* __u8 if_bDescriptorType; Interface */
203 0x00, /* __u8 if_bInterfaceNumber; */
204 0x00, /* __u8 if_bAlternateSetting; */
205 0x01, /* __u8 if_bNumEndpoints; */
206 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
207 0x00, /* __u8 if_bInterfaceSubClass; */
208 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */
209 0x00, /* __u8 if_iInterface; */
211 /* one endpoint (status change endpoint) */
212 0x07, /* __u8 ep_bLength; */
213 0x05, /* __u8 ep_bDescriptorType; Endpoint */
214 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
215 0x03, /* __u8 ep_bmAttributes; Interrupt */
216 0x02, 0x00, /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */
217 0xff /* __u8 ep_bInterval; (255ms -- usb 2.0 spec) */
220 static const u8 hs_rh_config_descriptor [] = {
222 /* one configuration */
223 0x09, /* __u8 bLength; */
224 0x02, /* __u8 bDescriptorType; Configuration */
225 0x19, 0x00, /* __le16 wTotalLength; */
226 0x01, /* __u8 bNumInterfaces; (1) */
227 0x01, /* __u8 bConfigurationValue; */
228 0x00, /* __u8 iConfiguration; */
229 0xc0, /* __u8 bmAttributes;
234 0x00, /* __u8 MaxPower; */
237 * USB 2.0, single TT organization (mandatory):
238 * one interface, protocol 0
240 * USB 2.0, multiple TT organization (optional):
241 * two interfaces, protocols 1 (like single TT)
242 * and 2 (multiple TT mode) ... config is
248 0x09, /* __u8 if_bLength; */
249 0x04, /* __u8 if_bDescriptorType; Interface */
250 0x00, /* __u8 if_bInterfaceNumber; */
251 0x00, /* __u8 if_bAlternateSetting; */
252 0x01, /* __u8 if_bNumEndpoints; */
253 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
254 0x00, /* __u8 if_bInterfaceSubClass; */
255 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */
256 0x00, /* __u8 if_iInterface; */
258 /* one endpoint (status change endpoint) */
259 0x07, /* __u8 ep_bLength; */
260 0x05, /* __u8 ep_bDescriptorType; Endpoint */
261 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
262 0x03, /* __u8 ep_bmAttributes; Interrupt */
263 0x02, 0x00, /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */
264 0x0c /* __u8 ep_bInterval; (256ms -- usb 2.0 spec) */
267 /*-------------------------------------------------------------------------*/
270 * helper routine for returning string descriptors in UTF-16LE
271 * input can actually be ISO-8859-1; ASCII is its 7-bit subset
273 static int ascii2utf (char *s, u8 *utf, int utfmax)
277 for (retval = 0; *s && utfmax > 1; utfmax -= 2, retval += 2) {
289 * rh_string - provides manufacturer, product and serial strings for root hub
290 * @id: the string ID number (1: serial number, 2: product, 3: vendor)
291 * @hcd: the host controller for this root hub
292 * @type: string describing our driver
293 * @data: return packet in UTF-16 LE
294 * @len: length of the return packet
296 * Produces either a manufacturer, product or serial number string for the
297 * virtual root hub device.
299 static int rh_string (
309 buf[0] = 4; buf[1] = 3; /* 4 bytes string data */
310 buf[2] = 0x09; buf[3] = 0x04; /* MSFT-speak for "en-us" */
312 memcpy (data, buf, len);
316 } else if (id == 1) {
317 strlcpy (buf, hcd->self.bus_name, sizeof buf);
319 // product description
320 } else if (id == 2) {
321 strlcpy (buf, hcd->product_desc, sizeof buf);
323 // id 3 == vendor description
324 } else if (id == 3) {
325 snprintf (buf, sizeof buf, "%s %s %s", system_utsname.sysname,
326 system_utsname.release, hcd->driver->description);
328 // unsupported IDs --> "protocol stall"
332 switch (len) { /* All cases fall through */
334 len = 2 + ascii2utf (buf, data + 2, len - 2);
336 data [1] = 3; /* type == string */
338 data [0] = 2 * (strlen (buf) + 1);
340 ; /* Compiler wants a statement here */
346 /* Root hub control transfers execute synchronously */
347 static int rh_call_control (struct usb_hcd *hcd, struct urb *urb)
349 struct usb_ctrlrequest *cmd;
350 u16 typeReq, wValue, wIndex, wLength;
351 u8 *ubuf = urb->transfer_buffer;
352 u8 tbuf [sizeof (struct usb_hub_descriptor)];
353 const u8 *bufp = tbuf;
355 int patch_wakeup = 0;
360 cmd = (struct usb_ctrlrequest *) urb->setup_packet;
361 typeReq = (cmd->bRequestType << 8) | cmd->bRequest;
362 wValue = le16_to_cpu (cmd->wValue);
363 wIndex = le16_to_cpu (cmd->wIndex);
364 wLength = le16_to_cpu (cmd->wLength);
366 if (wLength > urb->transfer_buffer_length)
369 urb->actual_length = 0;
372 /* DEVICE REQUESTS */
374 case DeviceRequest | USB_REQ_GET_STATUS:
375 tbuf [0] = (hcd->remote_wakeup << USB_DEVICE_REMOTE_WAKEUP)
376 | (1 << USB_DEVICE_SELF_POWERED);
380 case DeviceOutRequest | USB_REQ_CLEAR_FEATURE:
381 if (wValue == USB_DEVICE_REMOTE_WAKEUP)
382 hcd->remote_wakeup = 0;
386 case DeviceOutRequest | USB_REQ_SET_FEATURE:
387 if (hcd->can_wakeup && wValue == USB_DEVICE_REMOTE_WAKEUP)
388 hcd->remote_wakeup = 1;
392 case DeviceRequest | USB_REQ_GET_CONFIGURATION:
396 case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
398 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
399 switch (wValue & 0xff00) {
400 case USB_DT_DEVICE << 8:
401 if (hcd->driver->flags & HCD_USB2)
402 bufp = usb2_rh_dev_descriptor;
403 else if (hcd->driver->flags & HCD_USB11)
404 bufp = usb11_rh_dev_descriptor;
409 case USB_DT_CONFIG << 8:
410 if (hcd->driver->flags & HCD_USB2) {
411 bufp = hs_rh_config_descriptor;
412 len = sizeof hs_rh_config_descriptor;
414 bufp = fs_rh_config_descriptor;
415 len = sizeof fs_rh_config_descriptor;
420 case USB_DT_STRING << 8:
421 n = rh_string (wValue & 0xff, hcd, ubuf, wLength);
424 urb->actual_length = n;
430 case DeviceRequest | USB_REQ_GET_INTERFACE:
434 case DeviceOutRequest | USB_REQ_SET_INTERFACE:
436 case DeviceOutRequest | USB_REQ_SET_ADDRESS:
437 // wValue == urb->dev->devaddr
438 dev_dbg (hcd->self.controller, "root hub device address %d\n",
442 /* INTERFACE REQUESTS (no defined feature/status flags) */
444 /* ENDPOINT REQUESTS */
446 case EndpointRequest | USB_REQ_GET_STATUS:
447 // ENDPOINT_HALT flag
452 case EndpointOutRequest | USB_REQ_CLEAR_FEATURE:
453 case EndpointOutRequest | USB_REQ_SET_FEATURE:
454 dev_dbg (hcd->self.controller, "no endpoint features yet\n");
457 /* CLASS REQUESTS (and errors) */
460 /* non-generic request */
466 case GetHubDescriptor:
467 len = sizeof (struct usb_hub_descriptor);
470 status = hcd->driver->hub_control (hcd,
471 typeReq, wValue, wIndex,
475 /* "protocol stall" on error */
481 if (status != -EPIPE) {
482 dev_dbg (hcd->self.controller,
483 "CTRL: TypeReq=0x%x val=0x%x "
484 "idx=0x%x len=%d ==> %d\n",
485 typeReq, wValue, wIndex,
490 if (urb->transfer_buffer_length < len)
491 len = urb->transfer_buffer_length;
492 urb->actual_length = len;
493 // always USB_DIR_IN, toward host
494 memcpy (ubuf, bufp, len);
496 /* report whether RH hardware supports remote wakeup */
498 len > offsetof (struct usb_config_descriptor,
500 ((struct usb_config_descriptor *)ubuf)->bmAttributes
501 |= USB_CONFIG_ATT_WAKEUP;
504 /* any errors get returned through the urb completion */
505 local_irq_save (flags);
506 spin_lock (&urb->lock);
507 if (urb->status == -EINPROGRESS)
508 urb->status = status;
509 spin_unlock (&urb->lock);
510 usb_hcd_giveback_urb (hcd, urb, NULL);
511 local_irq_restore (flags);
515 /*-------------------------------------------------------------------------*/
518 * Root Hub interrupt transfers are polled using a timer if the
519 * driver requests it; otherwise the driver is responsible for
520 * calling usb_hcd_poll_rh_status() when an event occurs.
522 * Completions are called in_interrupt(), but they may or may not
525 void usb_hcd_poll_rh_status(struct usb_hcd *hcd)
530 char buffer[4]; /* Any root hubs with > 31 ports? */
532 if (!hcd->uses_new_polling && !hcd->status_urb)
535 length = hcd->driver->hub_status_data(hcd, buffer);
538 /* try to complete the status urb */
539 local_irq_save (flags);
540 spin_lock(&hcd_root_hub_lock);
541 urb = hcd->status_urb;
543 spin_lock(&urb->lock);
544 if (urb->status == -EINPROGRESS) {
545 hcd->poll_pending = 0;
546 hcd->status_urb = NULL;
549 urb->actual_length = length;
550 memcpy(urb->transfer_buffer, buffer, length);
551 } else /* urb has been unlinked */
553 spin_unlock(&urb->lock);
556 spin_unlock(&hcd_root_hub_lock);
558 /* local irqs are always blocked in completions */
560 usb_hcd_giveback_urb (hcd, urb, NULL);
562 hcd->poll_pending = 1;
563 local_irq_restore (flags);
566 /* The USB 2.0 spec says 256 ms. This is close enough and won't
567 * exceed that limit if HZ is 100. */
568 if (hcd->uses_new_polling ? hcd->poll_rh :
569 (length == 0 && hcd->status_urb != NULL))
570 mod_timer (&hcd->rh_timer, jiffies + msecs_to_jiffies(250));
572 EXPORT_SYMBOL_GPL(usb_hcd_poll_rh_status);
575 static void rh_timer_func (unsigned long _hcd)
577 usb_hcd_poll_rh_status((struct usb_hcd *) _hcd);
580 /*-------------------------------------------------------------------------*/
582 static int rh_queue_status (struct usb_hcd *hcd, struct urb *urb)
586 int len = 1 + (urb->dev->maxchild / 8);
588 spin_lock_irqsave (&hcd_root_hub_lock, flags);
589 if (urb->status != -EINPROGRESS) /* already unlinked */
590 retval = urb->status;
591 else if (hcd->status_urb || urb->transfer_buffer_length < len) {
592 dev_dbg (hcd->self.controller, "not queuing rh status urb\n");
595 hcd->status_urb = urb;
596 urb->hcpriv = hcd; /* indicate it's queued */
598 if (!hcd->uses_new_polling)
599 mod_timer (&hcd->rh_timer, jiffies +
600 msecs_to_jiffies(250));
602 /* If a status change has already occurred, report it ASAP */
603 else if (hcd->poll_pending)
604 mod_timer (&hcd->rh_timer, jiffies);
607 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
611 static int rh_urb_enqueue (struct usb_hcd *hcd, struct urb *urb)
613 if (usb_pipeint (urb->pipe))
614 return rh_queue_status (hcd, urb);
615 if (usb_pipecontrol (urb->pipe))
616 return rh_call_control (hcd, urb);
620 /*-------------------------------------------------------------------------*/
622 /* Asynchronous unlinks of root-hub control URBs are legal, but they
623 * don't do anything. Status URB unlinks must be made in process context
624 * with interrupts enabled.
626 static int usb_rh_urb_dequeue (struct usb_hcd *hcd, struct urb *urb)
628 if (usb_pipeendpoint(urb->pipe) == 0) { /* Control URB */
630 return 0; /* nothing to do */
632 spin_lock_irq(&urb->lock); /* from usb_kill_urb */
634 spin_unlock_irq(&urb->lock);
636 wait_event(usb_kill_urb_queue,
637 atomic_read(&urb->use_count) == 0);
639 spin_lock_irq(&urb->lock);
641 spin_unlock_irq(&urb->lock);
643 } else { /* Status URB */
644 if (!hcd->uses_new_polling)
645 del_timer_sync (&hcd->rh_timer);
646 local_irq_disable ();
647 spin_lock (&hcd_root_hub_lock);
648 if (urb == hcd->status_urb) {
649 hcd->status_urb = NULL;
652 urb = NULL; /* wasn't fully queued */
653 spin_unlock (&hcd_root_hub_lock);
655 usb_hcd_giveback_urb (hcd, urb, NULL);
662 /*-------------------------------------------------------------------------*/
664 /* exported only within usbcore */
665 struct usb_bus *usb_bus_get(struct usb_bus *bus)
668 kref_get(&bus->kref);
672 static void usb_host_release(struct kref *kref)
674 struct usb_bus *bus = container_of(kref, struct usb_bus, kref);
680 /* exported only within usbcore */
681 void usb_bus_put(struct usb_bus *bus)
684 kref_put(&bus->kref, usb_host_release);
687 /*-------------------------------------------------------------------------*/
689 static struct class *usb_host_class;
691 int usb_host_init(void)
695 usb_host_class = class_create(THIS_MODULE, "usb_host");
696 if (IS_ERR(usb_host_class))
697 retval = PTR_ERR(usb_host_class);
701 void usb_host_cleanup(void)
703 class_destroy(usb_host_class);
707 * usb_bus_init - shared initialization code
708 * @bus: the bus structure being initialized
710 * This code is used to initialize a usb_bus structure, memory for which is
711 * separately managed.
713 static void usb_bus_init (struct usb_bus *bus)
715 memset (&bus->devmap, 0, sizeof(struct usb_devmap));
717 bus->devnum_next = 1;
719 bus->root_hub = NULL;
722 bus->bandwidth_allocated = 0;
723 bus->bandwidth_int_reqs = 0;
724 bus->bandwidth_isoc_reqs = 0;
726 INIT_LIST_HEAD (&bus->bus_list);
728 kref_init(&bus->kref);
732 * usb_alloc_bus - creates a new USB host controller structure
733 * @op: pointer to a struct usb_operations that this bus structure should use
734 * Context: !in_interrupt()
736 * Creates a USB host controller bus structure with the specified
737 * usb_operations and initializes all the necessary internal objects.
739 * If no memory is available, NULL is returned.
741 * The caller should call usb_put_bus() when it is finished with the structure.
743 struct usb_bus *usb_alloc_bus (struct usb_operations *op)
747 bus = kmalloc (sizeof *bus, GFP_KERNEL);
750 memset(bus, 0, sizeof(struct usb_bus));
756 /*-------------------------------------------------------------------------*/
759 * usb_register_bus - registers the USB host controller with the usb core
760 * @bus: pointer to the bus to register
761 * Context: !in_interrupt()
763 * Assigns a bus number, and links the controller into usbcore data
764 * structures so that it can be seen by scanning the bus list.
766 static int usb_register_bus(struct usb_bus *bus)
770 down (&usb_bus_list_lock);
771 busnum = find_next_zero_bit (busmap.busmap, USB_MAXBUS, 1);
772 if (busnum < USB_MAXBUS) {
773 set_bit (busnum, busmap.busmap);
774 bus->busnum = busnum;
776 printk (KERN_ERR "%s: too many buses\n", usbcore_name);
777 up(&usb_bus_list_lock);
781 bus->class_dev = class_device_create(usb_host_class, NULL, MKDEV(0,0),
782 bus->controller, "usb_host%d", busnum);
783 if (IS_ERR(bus->class_dev)) {
784 clear_bit(busnum, busmap.busmap);
785 up(&usb_bus_list_lock);
786 return PTR_ERR(bus->class_dev);
789 class_set_devdata(bus->class_dev, bus);
791 /* Add it to the local list of buses */
792 list_add (&bus->bus_list, &usb_bus_list);
793 up (&usb_bus_list_lock);
795 usb_notify_add_bus(bus);
797 dev_info (bus->controller, "new USB bus registered, assigned bus number %d\n", bus->busnum);
802 * usb_deregister_bus - deregisters the USB host controller
803 * @bus: pointer to the bus to deregister
804 * Context: !in_interrupt()
806 * Recycles the bus number, and unlinks the controller from usbcore data
807 * structures so that it won't be seen by scanning the bus list.
809 static void usb_deregister_bus (struct usb_bus *bus)
811 dev_info (bus->controller, "USB bus %d deregistered\n", bus->busnum);
814 * NOTE: make sure that all the devices are removed by the
815 * controller code, as well as having it call this when cleaning
818 down (&usb_bus_list_lock);
819 list_del (&bus->bus_list);
820 up (&usb_bus_list_lock);
822 usb_notify_remove_bus(bus);
824 clear_bit (bus->busnum, busmap.busmap);
826 class_device_unregister(bus->class_dev);
830 * register_root_hub - called by usb_add_hcd() to register a root hub
831 * @usb_dev: the usb root hub device to be registered.
832 * @hcd: host controller for this root hub
834 * This function registers the root hub with the USB subsystem. It sets up
835 * the device properly in the device tree and stores the root_hub pointer
836 * in the bus structure, then calls usb_new_device() to register the usb
837 * device. It also assigns the root hub's USB address (always 1).
839 static int register_root_hub (struct usb_device *usb_dev,
842 struct device *parent_dev = hcd->self.controller;
843 const int devnum = 1;
846 usb_dev->devnum = devnum;
847 usb_dev->bus->devnum_next = devnum + 1;
848 memset (&usb_dev->bus->devmap.devicemap, 0,
849 sizeof usb_dev->bus->devmap.devicemap);
850 set_bit (devnum, usb_dev->bus->devmap.devicemap);
851 usb_set_device_state(usb_dev, USB_STATE_ADDRESS);
853 down (&usb_bus_list_lock);
854 usb_dev->bus->root_hub = usb_dev;
856 usb_dev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
857 retval = usb_get_device_descriptor(usb_dev, USB_DT_DEVICE_SIZE);
858 if (retval != sizeof usb_dev->descriptor) {
859 usb_dev->bus->root_hub = NULL;
860 up (&usb_bus_list_lock);
861 dev_dbg (parent_dev, "can't read %s device descriptor %d\n",
862 usb_dev->dev.bus_id, retval);
863 return (retval < 0) ? retval : -EMSGSIZE;
866 usb_lock_device (usb_dev);
867 retval = usb_new_device (usb_dev);
868 usb_unlock_device (usb_dev);
870 usb_dev->bus->root_hub = NULL;
871 dev_err (parent_dev, "can't register root hub for %s, %d\n",
872 usb_dev->dev.bus_id, retval);
874 up (&usb_bus_list_lock);
877 spin_lock_irq (&hcd_root_hub_lock);
878 hcd->rh_registered = 1;
879 spin_unlock_irq (&hcd_root_hub_lock);
881 /* Did the HC die before the root hub was registered? */
882 if (hcd->state == HC_STATE_HALT)
883 usb_hc_died (hcd); /* This time clean up */
889 void usb_enable_root_hub_irq (struct usb_bus *bus)
893 hcd = container_of (bus, struct usb_hcd, self);
894 if (hcd->driver->hub_irq_enable && !hcd->poll_rh &&
895 hcd->state != HC_STATE_HALT)
896 hcd->driver->hub_irq_enable (hcd);
900 /*-------------------------------------------------------------------------*/
903 * usb_calc_bus_time - approximate periodic transaction time in nanoseconds
904 * @speed: from dev->speed; USB_SPEED_{LOW,FULL,HIGH}
905 * @is_input: true iff the transaction sends data to the host
906 * @isoc: true for isochronous transactions, false for interrupt ones
907 * @bytecount: how many bytes in the transaction.
909 * Returns approximate bus time in nanoseconds for a periodic transaction.
910 * See USB 2.0 spec section 5.11.3; only periodic transfers need to be
911 * scheduled in software, this function is only used for such scheduling.
913 long usb_calc_bus_time (int speed, int is_input, int isoc, int bytecount)
918 case USB_SPEED_LOW: /* INTR only */
920 tmp = (67667L * (31L + 10L * BitTime (bytecount))) / 1000L;
921 return (64060L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
923 tmp = (66700L * (31L + 10L * BitTime (bytecount))) / 1000L;
924 return (64107L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
926 case USB_SPEED_FULL: /* ISOC or INTR */
928 tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
929 return (((is_input) ? 7268L : 6265L) + BW_HOST_DELAY + tmp);
931 tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
932 return (9107L + BW_HOST_DELAY + tmp);
934 case USB_SPEED_HIGH: /* ISOC or INTR */
935 // FIXME adjust for input vs output
937 tmp = HS_NSECS_ISO (bytecount);
939 tmp = HS_NSECS (bytecount);
942 pr_debug ("%s: bogus device speed!\n", usbcore_name);
946 EXPORT_SYMBOL (usb_calc_bus_time);
949 * usb_check_bandwidth():
951 * old_alloc is from host_controller->bandwidth_allocated in microseconds;
952 * bustime is from calc_bus_time(), but converted to microseconds.
954 * returns <bustime in us> if successful,
955 * or -ENOSPC if bandwidth request fails.
958 * This initial implementation does not use Endpoint.bInterval
959 * in managing bandwidth allocation.
960 * It probably needs to be expanded to use Endpoint.bInterval.
961 * This can be done as a later enhancement (correction).
963 * This will also probably require some kind of
964 * frame allocation tracking...meaning, for example,
965 * that if multiple drivers request interrupts every 10 USB frames,
966 * they don't all have to be allocated at
967 * frame numbers N, N+10, N+20, etc. Some of them could be at
968 * N+11, N+21, N+31, etc., and others at
969 * N+12, N+22, N+32, etc.
971 * Similarly for isochronous transfers...
973 * Individual HCDs can schedule more directly ... this logic
974 * is not correct for high speed transfers.
976 int usb_check_bandwidth (struct usb_device *dev, struct urb *urb)
978 unsigned int pipe = urb->pipe;
980 int is_in = usb_pipein (pipe);
981 int is_iso = usb_pipeisoc (pipe);
982 int old_alloc = dev->bus->bandwidth_allocated;
986 bustime = NS_TO_US (usb_calc_bus_time (dev->speed, is_in, is_iso,
987 usb_maxpacket (dev, pipe, !is_in)));
989 bustime /= urb->number_of_packets;
991 new_alloc = old_alloc + (int) bustime;
992 if (new_alloc > FRAME_TIME_MAX_USECS_ALLOC) {
995 #ifdef CONFIG_USB_BANDWIDTH
1000 dev_dbg (&dev->dev, "usb_check_bandwidth %sFAILED: %d + %ld = %d usec\n",
1001 mode, old_alloc, bustime, new_alloc);
1003 #ifdef CONFIG_USB_BANDWIDTH
1004 bustime = -ENOSPC; /* report error */
1010 EXPORT_SYMBOL (usb_check_bandwidth);
1014 * usb_claim_bandwidth - records bandwidth for a periodic transfer
1015 * @dev: source/target of request
1016 * @urb: request (urb->dev == dev)
1017 * @bustime: bandwidth consumed, in (average) microseconds per frame
1018 * @isoc: true iff the request is isochronous
1020 * Bus bandwidth reservations are recorded purely for diagnostic purposes.
1021 * HCDs are expected not to overcommit periodic bandwidth, and to record such
1022 * reservations whenever endpoints are added to the periodic schedule.
1024 * FIXME averaging per-frame is suboptimal. Better to sum over the HCD's
1025 * entire periodic schedule ... 32 frames for OHCI, 1024 for UHCI, settable
1026 * for EHCI (256/512/1024 frames, default 1024) and have the bus expose how
1027 * large its periodic schedule is.
1029 void usb_claim_bandwidth (struct usb_device *dev, struct urb *urb, int bustime, int isoc)
1031 dev->bus->bandwidth_allocated += bustime;
1033 dev->bus->bandwidth_isoc_reqs++;
1035 dev->bus->bandwidth_int_reqs++;
1036 urb->bandwidth = bustime;
1038 #ifdef USB_BANDWIDTH_MESSAGES
1039 dev_dbg (&dev->dev, "bandwidth alloc increased by %d (%s) to %d for %d requesters\n",
1041 isoc ? "ISOC" : "INTR",
1042 dev->bus->bandwidth_allocated,
1043 dev->bus->bandwidth_int_reqs + dev->bus->bandwidth_isoc_reqs);
1046 EXPORT_SYMBOL (usb_claim_bandwidth);
1050 * usb_release_bandwidth - reverses effect of usb_claim_bandwidth()
1051 * @dev: source/target of request
1052 * @urb: request (urb->dev == dev)
1053 * @isoc: true iff the request is isochronous
1055 * This records that previously allocated bandwidth has been released.
1056 * Bandwidth is released when endpoints are removed from the host controller's
1057 * periodic schedule.
1059 void usb_release_bandwidth (struct usb_device *dev, struct urb *urb, int isoc)
1061 dev->bus->bandwidth_allocated -= urb->bandwidth;
1063 dev->bus->bandwidth_isoc_reqs--;
1065 dev->bus->bandwidth_int_reqs--;
1067 #ifdef USB_BANDWIDTH_MESSAGES
1068 dev_dbg (&dev->dev, "bandwidth alloc reduced by %d (%s) to %d for %d requesters\n",
1070 isoc ? "ISOC" : "INTR",
1071 dev->bus->bandwidth_allocated,
1072 dev->bus->bandwidth_int_reqs + dev->bus->bandwidth_isoc_reqs);
1076 EXPORT_SYMBOL (usb_release_bandwidth);
1079 /*-------------------------------------------------------------------------*/
1082 * Generic HC operations.
1085 /*-------------------------------------------------------------------------*/
1087 static void urb_unlink (struct urb *urb)
1089 unsigned long flags;
1091 /* Release any periodic transfer bandwidth */
1093 usb_release_bandwidth (urb->dev, urb,
1094 usb_pipeisoc (urb->pipe));
1096 /* clear all state linking urb to this dev (and hcd) */
1098 spin_lock_irqsave (&hcd_data_lock, flags);
1099 list_del_init (&urb->urb_list);
1100 spin_unlock_irqrestore (&hcd_data_lock, flags);
1101 usb_put_dev (urb->dev);
1105 /* may be called in any context with a valid urb->dev usecount
1106 * caller surrenders "ownership" of urb
1107 * expects usb_submit_urb() to have sanity checked and conditioned all
1110 static int hcd_submit_urb (struct urb *urb, gfp_t mem_flags)
1113 struct usb_hcd *hcd = urb->dev->bus->hcpriv;
1114 struct usb_host_endpoint *ep;
1115 unsigned long flags;
1120 usbmon_urb_submit(&hcd->self, urb);
1123 * Atomically queue the urb, first to our records, then to the HCD.
1124 * Access to urb->status is controlled by urb->lock ... changes on
1125 * i/o completion (normal or fault) or unlinking.
1128 // FIXME: verify that quiescing hc works right (RH cleans up)
1130 spin_lock_irqsave (&hcd_data_lock, flags);
1131 ep = (usb_pipein(urb->pipe) ? urb->dev->ep_in : urb->dev->ep_out)
1132 [usb_pipeendpoint(urb->pipe)];
1135 else if (unlikely (urb->reject))
1137 else switch (hcd->state) {
1138 case HC_STATE_RUNNING:
1139 case HC_STATE_RESUMING:
1141 usb_get_dev (urb->dev);
1142 list_add_tail (&urb->urb_list, &ep->urb_list);
1145 case HC_STATE_SUSPENDED:
1146 /* HC upstream links (register access, wakeup signaling) can work
1147 * even when the downstream links (and DMA etc) are quiesced; let
1148 * usbcore talk to the root hub.
1150 if (hcd->self.controller->power.power_state.event == PM_EVENT_ON
1151 && urb->dev->parent == NULL)
1155 status = -ESHUTDOWN;
1158 spin_unlock_irqrestore (&hcd_data_lock, flags);
1160 INIT_LIST_HEAD (&urb->urb_list);
1161 usbmon_urb_submit_error(&hcd->self, urb, status);
1165 /* increment urb's reference count as part of giving it to the HCD
1166 * (which now controls it). HCD guarantees that it either returns
1167 * an error or calls giveback(), but not both.
1169 urb = usb_get_urb (urb);
1170 atomic_inc (&urb->use_count);
1172 if (urb->dev == hcd->self.root_hub) {
1173 /* NOTE: requirement on hub callers (usbfs and the hub
1174 * driver, for now) that URBs' urb->transfer_buffer be
1175 * valid and usb_buffer_{sync,unmap}() not be needed, since
1176 * they could clobber root hub response data.
1178 status = rh_urb_enqueue (hcd, urb);
1182 /* lower level hcd code should use *_dma exclusively,
1183 * unless it uses pio or talks to another transport.
1185 if (hcd->self.controller->dma_mask) {
1186 if (usb_pipecontrol (urb->pipe)
1187 && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP))
1188 urb->setup_dma = dma_map_single (
1189 hcd->self.controller,
1191 sizeof (struct usb_ctrlrequest),
1193 if (urb->transfer_buffer_length != 0
1194 && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP))
1195 urb->transfer_dma = dma_map_single (
1196 hcd->self.controller,
1197 urb->transfer_buffer,
1198 urb->transfer_buffer_length,
1199 usb_pipein (urb->pipe)
1204 status = hcd->driver->urb_enqueue (hcd, ep, urb, mem_flags);
1206 if (unlikely (status)) {
1208 atomic_dec (&urb->use_count);
1210 wake_up (&usb_kill_urb_queue);
1212 usbmon_urb_submit_error(&hcd->self, urb, status);
1217 /*-------------------------------------------------------------------------*/
1219 /* called in any context */
1220 static int hcd_get_frame_number (struct usb_device *udev)
1222 struct usb_hcd *hcd = (struct usb_hcd *)udev->bus->hcpriv;
1223 if (!HC_IS_RUNNING (hcd->state))
1225 return hcd->driver->get_frame_number (hcd);
1228 /*-------------------------------------------------------------------------*/
1230 /* this makes the hcd giveback() the urb more quickly, by kicking it
1231 * off hardware queues (which may take a while) and returning it as
1232 * soon as practical. we've already set up the urb's return status,
1233 * but we can't know if the callback completed already.
1236 unlink1 (struct usb_hcd *hcd, struct urb *urb)
1240 if (urb->dev == hcd->self.root_hub)
1241 value = usb_rh_urb_dequeue (hcd, urb);
1244 /* The only reason an HCD might fail this call is if
1245 * it has not yet fully queued the urb to begin with.
1246 * Such failures should be harmless. */
1247 value = hcd->driver->urb_dequeue (hcd, urb);
1251 dev_dbg (hcd->self.controller, "dequeue %p --> %d\n",
1257 * called in any context
1259 * caller guarantees urb won't be recycled till both unlink()
1260 * and the urb's completion function return
1262 static int hcd_unlink_urb (struct urb *urb, int status)
1264 struct usb_host_endpoint *ep;
1265 struct usb_hcd *hcd = NULL;
1266 struct device *sys = NULL;
1267 unsigned long flags;
1268 struct list_head *tmp;
1273 if (!urb->dev || !urb->dev->bus)
1275 ep = (usb_pipein(urb->pipe) ? urb->dev->ep_in : urb->dev->ep_out)
1276 [usb_pipeendpoint(urb->pipe)];
1281 * we contend for urb->status with the hcd core,
1282 * which changes it while returning the urb.
1284 * Caller guaranteed that the urb pointer hasn't been freed, and
1285 * that it was submitted. But as a rule it can't know whether or
1286 * not it's already been unlinked ... so we respect the reversed
1287 * lock sequence needed for the usb_hcd_giveback_urb() code paths
1288 * (urb lock, then hcd_data_lock) in case some other CPU is now
1291 spin_lock_irqsave (&urb->lock, flags);
1292 spin_lock (&hcd_data_lock);
1294 sys = &urb->dev->dev;
1295 hcd = urb->dev->bus->hcpriv;
1301 /* insist the urb is still queued */
1302 list_for_each(tmp, &ep->urb_list) {
1303 if (tmp == &urb->urb_list)
1306 if (tmp != &urb->urb_list) {
1311 /* Any status except -EINPROGRESS means something already started to
1312 * unlink this URB from the hardware. So there's no more work to do.
1314 if (urb->status != -EINPROGRESS) {
1319 /* IRQ setup can easily be broken so that USB controllers
1320 * never get completion IRQs ... maybe even the ones we need to
1321 * finish unlinking the initial failed usb_set_address()
1322 * or device descriptor fetch.
1324 if (!hcd->saw_irq && hcd->self.root_hub != urb->dev) {
1325 dev_warn (hcd->self.controller, "Unlink after no-IRQ? "
1326 "Controller is probably using the wrong IRQ."
1331 urb->status = status;
1333 spin_unlock (&hcd_data_lock);
1334 spin_unlock_irqrestore (&urb->lock, flags);
1336 retval = unlink1 (hcd, urb);
1338 retval = -EINPROGRESS;
1342 spin_unlock (&hcd_data_lock);
1343 spin_unlock_irqrestore (&urb->lock, flags);
1344 if (retval != -EIDRM && sys && sys->driver)
1345 dev_dbg (sys, "hcd_unlink_urb %p fail %d\n", urb, retval);
1349 /*-------------------------------------------------------------------------*/
1351 /* disables the endpoint: cancels any pending urbs, then synchronizes with
1352 * the hcd to make sure all endpoint state is gone from hardware. use for
1353 * set_configuration, set_interface, driver removal, physical disconnect.
1355 * example: a qh stored in ep->hcpriv, holding state related to endpoint
1356 * type, maxpacket size, toggle, halt status, and scheduling.
1359 hcd_endpoint_disable (struct usb_device *udev, struct usb_host_endpoint *ep)
1361 struct usb_hcd *hcd;
1364 hcd = udev->bus->hcpriv;
1366 WARN_ON (!HC_IS_RUNNING (hcd->state) && hcd->state != HC_STATE_HALT &&
1367 udev->state != USB_STATE_NOTATTACHED);
1369 local_irq_disable ();
1371 /* FIXME move most of this into message.c as part of its
1372 * endpoint disable logic
1375 /* ep is already gone from udev->ep_{in,out}[]; no more submits */
1377 spin_lock (&hcd_data_lock);
1378 list_for_each_entry (urb, &ep->urb_list, urb_list) {
1381 /* another cpu may be in hcd, spinning on hcd_data_lock
1382 * to giveback() this urb. the races here should be
1383 * small, but a full fix needs a new "can't submit"
1385 * FIXME urb->reject should allow that...
1387 if (urb->status != -EINPROGRESS)
1390 spin_unlock (&hcd_data_lock);
1392 spin_lock (&urb->lock);
1394 if (tmp == -EINPROGRESS)
1395 urb->status = -ESHUTDOWN;
1396 spin_unlock (&urb->lock);
1398 /* kick hcd unless it's already returning this */
1399 if (tmp == -EINPROGRESS) {
1402 dev_dbg (hcd->self.controller,
1403 "shutdown urb %p pipe %08x ep%d%s%s\n",
1404 urb, tmp, usb_pipeendpoint (tmp),
1405 (tmp & USB_DIR_IN) ? "in" : "out",
1407 switch (usb_pipetype (tmp)) { \
1408 case PIPE_CONTROL: s = ""; break; \
1409 case PIPE_BULK: s = "-bulk"; break; \
1410 case PIPE_INTERRUPT: s = "-intr"; break; \
1411 default: s = "-iso"; break; \
1416 /* list contents may have changed */
1419 spin_unlock (&hcd_data_lock);
1420 local_irq_enable ();
1422 /* synchronize with the hardware, so old configuration state
1423 * clears out immediately (and will be freed).
1426 if (hcd->driver->endpoint_disable)
1427 hcd->driver->endpoint_disable (hcd, ep);
1430 /*-------------------------------------------------------------------------*/
1434 int hcd_bus_suspend (struct usb_bus *bus)
1436 struct usb_hcd *hcd;
1439 hcd = container_of (bus, struct usb_hcd, self);
1440 if (!hcd->driver->bus_suspend)
1442 hcd->state = HC_STATE_QUIESCING;
1443 status = hcd->driver->bus_suspend (hcd);
1445 hcd->state = HC_STATE_SUSPENDED;
1447 dev_dbg(&bus->root_hub->dev, "%s fail, err %d\n",
1452 int hcd_bus_resume (struct usb_bus *bus)
1454 struct usb_hcd *hcd;
1457 hcd = container_of (bus, struct usb_hcd, self);
1458 if (!hcd->driver->bus_resume)
1460 if (hcd->state == HC_STATE_RUNNING)
1462 hcd->state = HC_STATE_RESUMING;
1463 status = hcd->driver->bus_resume (hcd);
1465 hcd->state = HC_STATE_RUNNING;
1467 dev_dbg(&bus->root_hub->dev, "%s fail, err %d\n",
1475 * usb_hcd_suspend_root_hub - HCD autosuspends downstream ports
1476 * @hcd: host controller for this root hub
1478 * This call arranges that usb_hcd_resume_root_hub() is safe to call later;
1479 * that the HCD's root hub polling is deactivated; and that the root's hub
1480 * driver is suspended. HCDs may call this to autosuspend when their root
1481 * hub's downstream ports are all inactive: unpowered, disconnected,
1482 * disabled, or suspended.
1484 * The HCD will autoresume on device connect change detection (using SRP
1485 * or a D+/D- pullup). The HCD also autoresumes on remote wakeup signaling
1486 * from any ports that are suspended (if that is enabled). In most cases,
1487 * overcurrent signaling (on powered ports) will also start autoresume.
1489 * Always called with IRQs blocked.
1491 void usb_hcd_suspend_root_hub (struct usb_hcd *hcd)
1495 spin_lock (&hcd_root_hub_lock);
1496 usb_suspend_root_hub (hcd->self.root_hub);
1498 /* force status urb to complete/unlink while suspended */
1499 if (hcd->status_urb) {
1500 urb = hcd->status_urb;
1501 urb->status = -ECONNRESET;
1503 urb->actual_length = 0;
1505 del_timer (&hcd->rh_timer);
1506 hcd->poll_pending = 0;
1507 hcd->status_urb = NULL;
1510 spin_unlock (&hcd_root_hub_lock);
1511 hcd->state = HC_STATE_SUSPENDED;
1514 usb_hcd_giveback_urb (hcd, urb, NULL);
1516 EXPORT_SYMBOL_GPL(usb_hcd_suspend_root_hub);
1519 * usb_hcd_resume_root_hub - called by HCD to resume its root hub
1520 * @hcd: host controller for this root hub
1522 * The USB host controller calls this function when its root hub is
1523 * suspended (with the remote wakeup feature enabled) and a remote
1524 * wakeup request is received. It queues a request for khubd to
1525 * resume the root hub (that is, manage its downstream ports again).
1527 void usb_hcd_resume_root_hub (struct usb_hcd *hcd)
1529 unsigned long flags;
1531 spin_lock_irqsave (&hcd_root_hub_lock, flags);
1532 if (hcd->rh_registered)
1533 usb_resume_root_hub (hcd->self.root_hub);
1534 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
1536 EXPORT_SYMBOL_GPL(usb_hcd_resume_root_hub);
1540 /*-------------------------------------------------------------------------*/
1542 #ifdef CONFIG_USB_OTG
1545 * usb_bus_start_enum - start immediate enumeration (for OTG)
1546 * @bus: the bus (must use hcd framework)
1547 * @port_num: 1-based number of port; usually bus->otg_port
1548 * Context: in_interrupt()
1550 * Starts enumeration, with an immediate reset followed later by
1551 * khubd identifying and possibly configuring the device.
1552 * This is needed by OTG controller drivers, where it helps meet
1553 * HNP protocol timing requirements for starting a port reset.
1555 int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num)
1557 struct usb_hcd *hcd;
1558 int status = -EOPNOTSUPP;
1560 /* NOTE: since HNP can't start by grabbing the bus's address0_sem,
1561 * boards with root hubs hooked up to internal devices (instead of
1562 * just the OTG port) may need more attention to resetting...
1564 hcd = container_of (bus, struct usb_hcd, self);
1565 if (port_num && hcd->driver->start_port_reset)
1566 status = hcd->driver->start_port_reset(hcd, port_num);
1568 /* run khubd shortly after (first) root port reset finishes;
1569 * it may issue others, until at least 50 msecs have passed.
1572 mod_timer(&hcd->rh_timer, jiffies + msecs_to_jiffies(10));
1575 EXPORT_SYMBOL (usb_bus_start_enum);
1579 /*-------------------------------------------------------------------------*/
1582 * usb_hcd_operations - adapts usb_bus framework to HCD framework (bus glue)
1584 static struct usb_operations usb_hcd_operations = {
1585 .get_frame_number = hcd_get_frame_number,
1586 .submit_urb = hcd_submit_urb,
1587 .unlink_urb = hcd_unlink_urb,
1588 .buffer_alloc = hcd_buffer_alloc,
1589 .buffer_free = hcd_buffer_free,
1590 .disable = hcd_endpoint_disable,
1593 /*-------------------------------------------------------------------------*/
1596 * usb_hcd_giveback_urb - return URB from HCD to device driver
1597 * @hcd: host controller returning the URB
1598 * @urb: urb being returned to the USB device driver.
1599 * @regs: pt_regs, passed down to the URB completion handler
1600 * Context: in_interrupt()
1602 * This hands the URB from HCD to its USB device driver, using its
1603 * completion function. The HCD has freed all per-urb resources
1604 * (and is done using urb->hcpriv). It also released all HCD locks;
1605 * the device driver won't cause problems if it frees, modifies,
1606 * or resubmits this URB.
1608 void usb_hcd_giveback_urb (struct usb_hcd *hcd, struct urb *urb, struct pt_regs *regs)
1612 at_root_hub = (urb->dev == hcd->self.root_hub);
1615 /* lower level hcd code should use *_dma exclusively */
1616 if (hcd->self.controller->dma_mask && !at_root_hub) {
1617 if (usb_pipecontrol (urb->pipe)
1618 && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP))
1619 dma_unmap_single (hcd->self.controller, urb->setup_dma,
1620 sizeof (struct usb_ctrlrequest),
1622 if (urb->transfer_buffer_length != 0
1623 && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP))
1624 dma_unmap_single (hcd->self.controller,
1626 urb->transfer_buffer_length,
1627 usb_pipein (urb->pipe)
1632 usbmon_urb_complete (&hcd->self, urb);
1633 /* pass ownership to the completion handler */
1634 urb->complete (urb, regs);
1635 atomic_dec (&urb->use_count);
1636 if (unlikely (urb->reject))
1637 wake_up (&usb_kill_urb_queue);
1640 EXPORT_SYMBOL (usb_hcd_giveback_urb);
1642 /*-------------------------------------------------------------------------*/
1645 * usb_hcd_irq - hook IRQs to HCD framework (bus glue)
1646 * @irq: the IRQ being raised
1647 * @__hcd: pointer to the HCD whose IRQ is being signaled
1648 * @r: saved hardware registers
1650 * If the controller isn't HALTed, calls the driver's irq handler.
1651 * Checks whether the controller is now dead.
1653 irqreturn_t usb_hcd_irq (int irq, void *__hcd, struct pt_regs * r)
1655 struct usb_hcd *hcd = __hcd;
1656 int start = hcd->state;
1658 if (start == HC_STATE_HALT)
1660 if (hcd->driver->irq (hcd, r) == IRQ_NONE)
1664 if (hcd->state == HC_STATE_HALT)
1669 /*-------------------------------------------------------------------------*/
1672 * usb_hc_died - report abnormal shutdown of a host controller (bus glue)
1673 * @hcd: pointer to the HCD representing the controller
1675 * This is called by bus glue to report a USB host controller that died
1676 * while operations may still have been pending. It's called automatically
1677 * by the PCI glue, so only glue for non-PCI busses should need to call it.
1679 void usb_hc_died (struct usb_hcd *hcd)
1681 unsigned long flags;
1683 dev_err (hcd->self.controller, "HC died; cleaning up\n");
1685 spin_lock_irqsave (&hcd_root_hub_lock, flags);
1686 if (hcd->rh_registered) {
1689 /* make khubd clean up old urbs and devices */
1690 usb_set_device_state (hcd->self.root_hub,
1691 USB_STATE_NOTATTACHED);
1692 usb_kick_khubd (hcd->self.root_hub);
1694 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
1696 EXPORT_SYMBOL_GPL (usb_hc_died);
1698 /*-------------------------------------------------------------------------*/
1700 static void hcd_release (struct usb_bus *bus)
1702 struct usb_hcd *hcd;
1704 hcd = container_of(bus, struct usb_hcd, self);
1709 * usb_create_hcd - create and initialize an HCD structure
1710 * @driver: HC driver that will use this hcd
1711 * @dev: device for this HC, stored in hcd->self.controller
1712 * @bus_name: value to store in hcd->self.bus_name
1713 * Context: !in_interrupt()
1715 * Allocate a struct usb_hcd, with extra space at the end for the
1716 * HC driver's private data. Initialize the generic members of the
1719 * If memory is unavailable, returns NULL.
1721 struct usb_hcd *usb_create_hcd (const struct hc_driver *driver,
1722 struct device *dev, char *bus_name)
1724 struct usb_hcd *hcd;
1726 hcd = kzalloc(sizeof(*hcd) + driver->hcd_priv_size, GFP_KERNEL);
1728 dev_dbg (dev, "hcd alloc failed\n");
1731 dev_set_drvdata(dev, hcd);
1733 usb_bus_init(&hcd->self);
1734 hcd->self.op = &usb_hcd_operations;
1735 hcd->self.hcpriv = hcd;
1736 hcd->self.release = &hcd_release;
1737 hcd->self.controller = dev;
1738 hcd->self.bus_name = bus_name;
1740 init_timer(&hcd->rh_timer);
1741 hcd->rh_timer.function = rh_timer_func;
1742 hcd->rh_timer.data = (unsigned long) hcd;
1744 hcd->driver = driver;
1745 hcd->product_desc = (driver->product_desc) ? driver->product_desc :
1746 "USB Host Controller";
1750 EXPORT_SYMBOL (usb_create_hcd);
1752 void usb_put_hcd (struct usb_hcd *hcd)
1754 dev_set_drvdata(hcd->self.controller, NULL);
1755 usb_bus_put(&hcd->self);
1757 EXPORT_SYMBOL (usb_put_hcd);
1760 * usb_add_hcd - finish generic HCD structure initialization and register
1761 * @hcd: the usb_hcd structure to initialize
1762 * @irqnum: Interrupt line to allocate
1763 * @irqflags: Interrupt type flags
1765 * Finish the remaining parts of generic HCD initialization: allocate the
1766 * buffers of consistent memory, register the bus, request the IRQ line,
1767 * and call the driver's reset() and start() routines.
1769 int usb_add_hcd(struct usb_hcd *hcd,
1770 unsigned int irqnum, unsigned long irqflags)
1773 struct usb_device *rhdev;
1775 dev_info(hcd->self.controller, "%s\n", hcd->product_desc);
1777 /* till now HC has been in an indeterminate state ... */
1778 if (hcd->driver->reset && (retval = hcd->driver->reset(hcd)) < 0) {
1779 dev_err(hcd->self.controller, "can't reset\n");
1783 if ((retval = hcd_buffer_create(hcd)) != 0) {
1784 dev_dbg(hcd->self.controller, "pool alloc failed\n");
1788 if ((retval = usb_register_bus(&hcd->self)) < 0)
1789 goto err_register_bus;
1791 if (hcd->driver->irq) {
1792 char buf[8], *bufp = buf;
1795 bufp = __irq_itoa(irqnum);
1797 sprintf(buf, "%d", irqnum);
1800 snprintf(hcd->irq_descr, sizeof(hcd->irq_descr), "%s:usb%d",
1801 hcd->driver->description, hcd->self.busnum);
1802 if ((retval = request_irq(irqnum, &usb_hcd_irq, irqflags,
1803 hcd->irq_descr, hcd)) != 0) {
1804 dev_err(hcd->self.controller,
1805 "request interrupt %s failed\n", bufp);
1806 goto err_request_irq;
1809 dev_info(hcd->self.controller, "irq %s, %s 0x%08llx\n", bufp,
1810 (hcd->driver->flags & HCD_MEMORY) ?
1811 "io mem" : "io base",
1812 (unsigned long long)hcd->rsrc_start);
1815 if (hcd->rsrc_start)
1816 dev_info(hcd->self.controller, "%s 0x%08llx\n",
1817 (hcd->driver->flags & HCD_MEMORY) ?
1818 "io mem" : "io base",
1819 (unsigned long long)hcd->rsrc_start);
1822 /* Allocate the root hub before calling hcd->driver->start(),
1823 * but don't register it until afterward so that the hardware
1826 if ((rhdev = usb_alloc_dev(NULL, &hcd->self, 0)) == NULL) {
1827 dev_err(hcd->self.controller, "unable to allocate root hub\n");
1829 goto err_allocate_root_hub;
1831 rhdev->speed = (hcd->driver->flags & HCD_USB2) ? USB_SPEED_HIGH :
1834 /* Although in principle hcd->driver->start() might need to use rhdev,
1835 * none of the current drivers do.
1837 if ((retval = hcd->driver->start(hcd)) < 0) {
1838 dev_err(hcd->self.controller, "startup error %d\n", retval);
1839 goto err_hcd_driver_start;
1842 /* hcd->driver->start() reported can_wakeup, probably with
1843 * assistance from board's boot firmware.
1844 * NOTE: normal devices won't enable wakeup by default.
1846 if (hcd->can_wakeup)
1847 dev_dbg(hcd->self.controller, "supports USB remote wakeup\n");
1848 hcd->remote_wakeup = hcd->can_wakeup;
1850 if ((retval = register_root_hub(rhdev, hcd)) != 0)
1851 goto err_register_root_hub;
1853 if (hcd->uses_new_polling && hcd->poll_rh)
1854 usb_hcd_poll_rh_status(hcd);
1857 err_register_root_hub:
1858 hcd->driver->stop(hcd);
1860 err_hcd_driver_start:
1863 err_allocate_root_hub:
1865 free_irq(irqnum, hcd);
1868 usb_deregister_bus(&hcd->self);
1871 hcd_buffer_destroy(hcd);
1874 EXPORT_SYMBOL (usb_add_hcd);
1877 * usb_remove_hcd - shutdown processing for generic HCDs
1878 * @hcd: the usb_hcd structure to remove
1879 * Context: !in_interrupt()
1881 * Disconnects the root hub, then reverses the effects of usb_add_hcd(),
1882 * invoking the HCD's stop() method.
1884 void usb_remove_hcd(struct usb_hcd *hcd)
1886 dev_info(hcd->self.controller, "remove, state %x\n", hcd->state);
1888 if (HC_IS_RUNNING (hcd->state))
1889 hcd->state = HC_STATE_QUIESCING;
1891 dev_dbg(hcd->self.controller, "roothub graceful disconnect\n");
1892 spin_lock_irq (&hcd_root_hub_lock);
1893 hcd->rh_registered = 0;
1894 spin_unlock_irq (&hcd_root_hub_lock);
1895 usb_disconnect(&hcd->self.root_hub);
1898 del_timer_sync(&hcd->rh_timer);
1900 hcd->driver->stop(hcd);
1901 hcd->state = HC_STATE_HALT;
1904 free_irq(hcd->irq, hcd);
1905 usb_deregister_bus(&hcd->self);
1906 hcd_buffer_destroy(hcd);
1908 EXPORT_SYMBOL (usb_remove_hcd);
1910 /*-------------------------------------------------------------------------*/
1912 #if defined(CONFIG_USB_MON)
1914 struct usb_mon_operations *mon_ops;
1917 * The registration is unlocked.
1918 * We do it this way because we do not want to lock in hot paths.
1920 * Notice that the code is minimally error-proof. Because usbmon needs
1921 * symbols from usbcore, usbcore gets referenced and cannot be unloaded first.
1924 int usb_mon_register (struct usb_mon_operations *ops)
1934 EXPORT_SYMBOL_GPL (usb_mon_register);
1936 void usb_mon_deregister (void)
1939 if (mon_ops == NULL) {
1940 printk(KERN_ERR "USB: monitor was not registered\n");
1946 EXPORT_SYMBOL_GPL (usb_mon_deregister);
1948 #endif /* CONFIG_USB_MON */