VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / drivers / usb / core / hcd.c
1 /*
2  * (C) Copyright Linus Torvalds 1999
3  * (C) Copyright Johannes Erdfelt 1999-2001
4  * (C) Copyright Andreas Gal 1999
5  * (C) Copyright Gregory P. Smith 1999
6  * (C) Copyright Deti Fliegl 1999
7  * (C) Copyright Randy Dunlap 2000
8  * (C) Copyright David Brownell 2000-2002
9  * 
10  * This program is free software; you can redistribute it and/or modify it
11  * under the terms of the GNU General Public License as published by the
12  * Free Software Foundation; either version 2 of the License, or (at your
13  * option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful, but
16  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
17  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
18  * for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software Foundation,
22  * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  */
24
25 #include <linux/config.h>
26
27 #ifdef CONFIG_USB_DEBUG
28 #define DEBUG
29 #endif
30
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/uts.h>                  /* for UTS_SYSNAME */
37 #include <linux/mm.h>
38 #include <asm/io.h>
39 #include <asm/scatterlist.h>
40 #include <linux/device.h>
41 #include <linux/dma-mapping.h>
42 #include <asm/byteorder.h>
43
44 #include <linux/usb.h>
45
46 #include "usb.h"
47 #include "hcd.h"
48
49
50 // #define USB_BANDWIDTH_MESSAGES
51
52 /*-------------------------------------------------------------------------*/
53
54 /*
55  * USB Host Controller Driver framework
56  *
57  * Plugs into usbcore (usb_bus) and lets HCDs share code, minimizing
58  * HCD-specific behaviors/bugs.
59  *
60  * This does error checks, tracks devices and urbs, and delegates to a
61  * "hc_driver" only for code (and data) that really needs to know about
62  * hardware differences.  That includes root hub registers, i/o queues,
63  * and so on ... but as little else as possible.
64  *
65  * Shared code includes most of the "root hub" code (these are emulated,
66  * though each HC's hardware works differently) and PCI glue, plus request
67  * tracking overhead.  The HCD code should only block on spinlocks or on
68  * hardware handshaking; blocking on software events (such as other kernel
69  * threads releasing resources, or completing actions) is all generic.
70  *
71  * Happens the USB 2.0 spec says this would be invisible inside the "USBD",
72  * and includes mostly a "HCDI" (HCD Interface) along with some APIs used
73  * only by the hub driver ... and that neither should be seen or used by
74  * usb client device drivers.
75  *
76  * Contributors of ideas or unattributed patches include: David Brownell,
77  * Roman Weissgaerber, Rory Bolt, Greg Kroah-Hartman, ...
78  *
79  * HISTORY:
80  * 2002-02-21   Pull in most of the usb_bus support from usb.c; some
81  *              associated cleanup.  "usb_hcd" still != "usb_bus".
82  * 2001-12-12   Initial patch version for Linux 2.5.1 kernel.
83  */
84
85 /*-------------------------------------------------------------------------*/
86
87 /* host controllers we manage */
88 LIST_HEAD (usb_bus_list);
89 EXPORT_SYMBOL_GPL (usb_bus_list);
90
91 /* used when allocating bus numbers */
92 #define USB_MAXBUS              64
93 struct usb_busmap {
94         unsigned long busmap [USB_MAXBUS / (8*sizeof (unsigned long))];
95 };
96 static struct usb_busmap busmap;
97
98 /* used when updating list of hcds */
99 DECLARE_MUTEX (usb_bus_list_lock);      /* exported only for usbfs */
100 EXPORT_SYMBOL_GPL (usb_bus_list_lock);
101
102 /* used when updating hcd data */
103 static spinlock_t hcd_data_lock = SPIN_LOCK_UNLOCKED;
104
105 /* wait queue for synchronous unlinks */
106 DECLARE_WAIT_QUEUE_HEAD(usb_kill_urb_queue);
107
108 /*-------------------------------------------------------------------------*/
109
110 /*
111  * Sharable chunks of root hub code.
112  */
113
114 /*-------------------------------------------------------------------------*/
115
116 #define KERNEL_REL      ((LINUX_VERSION_CODE >> 16) & 0x0ff)
117 #define KERNEL_VER      ((LINUX_VERSION_CODE >> 8) & 0x0ff)
118
119 /* usb 2.0 root hub device descriptor */
120 static const u8 usb2_rh_dev_descriptor [18] = {
121         0x12,       /*  __u8  bLength; */
122         0x01,       /*  __u8  bDescriptorType; Device */
123         0x00, 0x02, /*  __u16 bcdUSB; v2.0 */
124
125         0x09,       /*  __u8  bDeviceClass; HUB_CLASSCODE */
126         0x00,       /*  __u8  bDeviceSubClass; */
127         0x01,       /*  __u8  bDeviceProtocol; [ usb 2.0 single TT ]*/
128         0x08,       /*  __u8  bMaxPacketSize0; 8 Bytes */
129
130         0x00, 0x00, /*  __u16 idVendor; */
131         0x00, 0x00, /*  __u16 idProduct; */
132         KERNEL_VER, KERNEL_REL, /*  __u16 bcdDevice */
133
134         0x03,       /*  __u8  iManufacturer; */
135         0x02,       /*  __u8  iProduct; */
136         0x01,       /*  __u8  iSerialNumber; */
137         0x01        /*  __u8  bNumConfigurations; */
138 };
139
140 /* no usb 2.0 root hub "device qualifier" descriptor: one speed only */
141
142 /* usb 1.1 root hub device descriptor */
143 static const u8 usb11_rh_dev_descriptor [18] = {
144         0x12,       /*  __u8  bLength; */
145         0x01,       /*  __u8  bDescriptorType; Device */
146         0x10, 0x01, /*  __u16 bcdUSB; v1.1 */
147
148         0x09,       /*  __u8  bDeviceClass; HUB_CLASSCODE */
149         0x00,       /*  __u8  bDeviceSubClass; */
150         0x00,       /*  __u8  bDeviceProtocol; [ low/full speeds only ] */
151         0x08,       /*  __u8  bMaxPacketSize0; 8 Bytes */
152
153         0x00, 0x00, /*  __u16 idVendor; */
154         0x00, 0x00, /*  __u16 idProduct; */
155         KERNEL_VER, KERNEL_REL, /*  __u16 bcdDevice */
156
157         0x03,       /*  __u8  iManufacturer; */
158         0x02,       /*  __u8  iProduct; */
159         0x01,       /*  __u8  iSerialNumber; */
160         0x01        /*  __u8  bNumConfigurations; */
161 };
162
163
164 /*-------------------------------------------------------------------------*/
165
166 /* Configuration descriptors for our root hubs */
167
168 static const u8 fs_rh_config_descriptor [] = {
169
170         /* one configuration */
171         0x09,       /*  __u8  bLength; */
172         0x02,       /*  __u8  bDescriptorType; Configuration */
173         0x19, 0x00, /*  __u16 wTotalLength; */
174         0x01,       /*  __u8  bNumInterfaces; (1) */
175         0x01,       /*  __u8  bConfigurationValue; */
176         0x00,       /*  __u8  iConfiguration; */
177         0xc0,       /*  __u8  bmAttributes; 
178                                  Bit 7: must be set,
179                                      6: Self-powered,
180                                      5: Remote wakeup,
181                                      4..0: resvd */
182         0x00,       /*  __u8  MaxPower; */
183       
184         /* USB 1.1:
185          * USB 2.0, single TT organization (mandatory):
186          *      one interface, protocol 0
187          *
188          * USB 2.0, multiple TT organization (optional):
189          *      two interfaces, protocols 1 (like single TT)
190          *      and 2 (multiple TT mode) ... config is
191          *      sometimes settable
192          *      NOT IMPLEMENTED
193          */
194
195         /* one interface */
196         0x09,       /*  __u8  if_bLength; */
197         0x04,       /*  __u8  if_bDescriptorType; Interface */
198         0x00,       /*  __u8  if_bInterfaceNumber; */
199         0x00,       /*  __u8  if_bAlternateSetting; */
200         0x01,       /*  __u8  if_bNumEndpoints; */
201         0x09,       /*  __u8  if_bInterfaceClass; HUB_CLASSCODE */
202         0x00,       /*  __u8  if_bInterfaceSubClass; */
203         0x00,       /*  __u8  if_bInterfaceProtocol; [usb1.1 or single tt] */
204         0x00,       /*  __u8  if_iInterface; */
205      
206         /* one endpoint (status change endpoint) */
207         0x07,       /*  __u8  ep_bLength; */
208         0x05,       /*  __u8  ep_bDescriptorType; Endpoint */
209         0x81,       /*  __u8  ep_bEndpointAddress; IN Endpoint 1 */
210         0x03,       /*  __u8  ep_bmAttributes; Interrupt */
211         0x02, 0x00, /*  __u16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */
212         0xff        /*  __u8  ep_bInterval; (255ms -- usb 2.0 spec) */
213 };
214
215 static const u8 hs_rh_config_descriptor [] = {
216
217         /* one configuration */
218         0x09,       /*  __u8  bLength; */
219         0x02,       /*  __u8  bDescriptorType; Configuration */
220         0x19, 0x00, /*  __u16 wTotalLength; */
221         0x01,       /*  __u8  bNumInterfaces; (1) */
222         0x01,       /*  __u8  bConfigurationValue; */
223         0x00,       /*  __u8  iConfiguration; */
224         0xc0,       /*  __u8  bmAttributes; 
225                                  Bit 7: must be set,
226                                      6: Self-powered,
227                                      5: Remote wakeup,
228                                      4..0: resvd */
229         0x00,       /*  __u8  MaxPower; */
230       
231         /* USB 1.1:
232          * USB 2.0, single TT organization (mandatory):
233          *      one interface, protocol 0
234          *
235          * USB 2.0, multiple TT organization (optional):
236          *      two interfaces, protocols 1 (like single TT)
237          *      and 2 (multiple TT mode) ... config is
238          *      sometimes settable
239          *      NOT IMPLEMENTED
240          */
241
242         /* one interface */
243         0x09,       /*  __u8  if_bLength; */
244         0x04,       /*  __u8  if_bDescriptorType; Interface */
245         0x00,       /*  __u8  if_bInterfaceNumber; */
246         0x00,       /*  __u8  if_bAlternateSetting; */
247         0x01,       /*  __u8  if_bNumEndpoints; */
248         0x09,       /*  __u8  if_bInterfaceClass; HUB_CLASSCODE */
249         0x00,       /*  __u8  if_bInterfaceSubClass; */
250         0x00,       /*  __u8  if_bInterfaceProtocol; [usb1.1 or single tt] */
251         0x00,       /*  __u8  if_iInterface; */
252      
253         /* one endpoint (status change endpoint) */
254         0x07,       /*  __u8  ep_bLength; */
255         0x05,       /*  __u8  ep_bDescriptorType; Endpoint */
256         0x81,       /*  __u8  ep_bEndpointAddress; IN Endpoint 1 */
257         0x03,       /*  __u8  ep_bmAttributes; Interrupt */
258         0x02, 0x00, /*  __u16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */
259         0x0c        /*  __u8  ep_bInterval; (256ms -- usb 2.0 spec) */
260 };
261
262 /*-------------------------------------------------------------------------*/
263
264 /*
265  * helper routine for returning string descriptors in UTF-16LE
266  * input can actually be ISO-8859-1; ASCII is its 7-bit subset
267  */
268 static int ascii2utf (char *s, u8 *utf, int utfmax)
269 {
270         int retval;
271
272         for (retval = 0; *s && utfmax > 1; utfmax -= 2, retval += 2) {
273                 *utf++ = *s++;
274                 *utf++ = 0;
275         }
276         return retval;
277 }
278
279 /*
280  * rh_string - provides manufacturer, product and serial strings for root hub
281  * @id: the string ID number (1: serial number, 2: product, 3: vendor)
282  * @hcd: the host controller for this root hub
283  * @type: string describing our driver 
284  * @data: return packet in UTF-16 LE
285  * @len: length of the return packet
286  *
287  * Produces either a manufacturer, product or serial number string for the
288  * virtual root hub device.
289  */
290 static int rh_string (
291         int             id,
292         struct usb_hcd  *hcd,
293         u8              *data,
294         int             len
295 ) {
296         char buf [100];
297
298         // language ids
299         if (id == 0) {
300                 *data++ = 4; *data++ = 3;       /* 4 bytes string data */
301                 *data++ = 0x09; *data++ = 0x04; /* MSFT-speak for "en-us" */
302                 return 4;
303
304         // serial number
305         } else if (id == 1) {
306                 strcpy (buf, hcd->self.bus_name);
307
308         // product description
309         } else if (id == 2) {
310                 strcpy (buf, hcd->product_desc);
311
312         // id 3 == vendor description
313         } else if (id == 3) {
314                 sprintf (buf, "%s %s %s", UTS_SYSNAME, UTS_RELEASE,
315                         hcd->description);
316
317         // unsupported IDs --> "protocol stall"
318         } else
319             return 0;
320
321         data [0] = 2 * (strlen (buf) + 1);
322         data [1] = 3;   /* type == string */
323         return 2 + ascii2utf (buf, data + 2, len - 2);
324 }
325
326
327 /* Root hub control transfers execute synchronously */
328 static int rh_call_control (struct usb_hcd *hcd, struct urb *urb)
329 {
330         struct usb_ctrlrequest *cmd;
331         u16             typeReq, wValue, wIndex, wLength;
332         const u8        *bufp = NULL;
333         u8              *ubuf = urb->transfer_buffer;
334         int             len = 0;
335         int             patch_wakeup = 0;
336         unsigned long   flags;
337
338         cmd = (struct usb_ctrlrequest *) urb->setup_packet;
339         typeReq  = (cmd->bRequestType << 8) | cmd->bRequest;
340         wValue   = le16_to_cpu (cmd->wValue);
341         wIndex   = le16_to_cpu (cmd->wIndex);
342         wLength  = le16_to_cpu (cmd->wLength);
343
344         if (wLength > urb->transfer_buffer_length)
345                 goto error;
346
347         /* set up for success */
348         urb->status = 0;
349         urb->actual_length = wLength;
350         switch (typeReq) {
351
352         /* DEVICE REQUESTS */
353
354         case DeviceRequest | USB_REQ_GET_STATUS:
355                 ubuf [0] = (hcd->remote_wakeup << USB_DEVICE_REMOTE_WAKEUP)
356                                 | (1 << USB_DEVICE_SELF_POWERED);
357                 ubuf [1] = 0;
358                 break;
359         case DeviceOutRequest | USB_REQ_CLEAR_FEATURE:
360                 if (wValue == USB_DEVICE_REMOTE_WAKEUP)
361                         hcd->remote_wakeup = 0;
362                 else
363                         goto error;
364                 break;
365         case DeviceOutRequest | USB_REQ_SET_FEATURE:
366                 if (hcd->can_wakeup && wValue == USB_DEVICE_REMOTE_WAKEUP)
367                         hcd->remote_wakeup = 1;
368                 else
369                         goto error;
370                 break;
371         case DeviceRequest | USB_REQ_GET_CONFIGURATION:
372                 ubuf [0] = 1;
373                         /* FALLTHROUGH */
374         case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
375                 break;
376         case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
377                 switch (wValue & 0xff00) {
378                 case USB_DT_DEVICE << 8:
379                         if (hcd->driver->flags & HCD_USB2)
380                                 bufp = usb2_rh_dev_descriptor;
381                         else if (hcd->driver->flags & HCD_USB11)
382                                 bufp = usb11_rh_dev_descriptor;
383                         else
384                                 goto error;
385                         len = 18;
386                         break;
387                 case USB_DT_CONFIG << 8:
388                         if (hcd->driver->flags & HCD_USB2) {
389                                 bufp = hs_rh_config_descriptor;
390                                 len = sizeof hs_rh_config_descriptor;
391                         } else {
392                                 bufp = fs_rh_config_descriptor;
393                                 len = sizeof fs_rh_config_descriptor;
394                         }
395                         if (hcd->can_wakeup)
396                                 patch_wakeup = 1;
397                         break;
398                 case USB_DT_STRING << 8:
399                         urb->actual_length = rh_string (
400                                 wValue & 0xff, hcd,
401                                 ubuf, wLength);
402                         break;
403                 default:
404                         goto error;
405                 }
406                 break;
407         case DeviceRequest | USB_REQ_GET_INTERFACE:
408                 ubuf [0] = 0;
409                         /* FALLTHROUGH */
410         case DeviceOutRequest | USB_REQ_SET_INTERFACE:
411                 break;
412         case DeviceOutRequest | USB_REQ_SET_ADDRESS:
413                 // wValue == urb->dev->devaddr
414                 dev_dbg (hcd->self.controller, "root hub device address %d\n",
415                         wValue);
416                 break;
417
418         /* INTERFACE REQUESTS (no defined feature/status flags) */
419
420         /* ENDPOINT REQUESTS */
421
422         case EndpointRequest | USB_REQ_GET_STATUS:
423                 // ENDPOINT_HALT flag
424                 ubuf [0] = 0;
425                 ubuf [1] = 0;
426                         /* FALLTHROUGH */
427         case EndpointOutRequest | USB_REQ_CLEAR_FEATURE:
428         case EndpointOutRequest | USB_REQ_SET_FEATURE:
429                 dev_dbg (hcd->self.controller, "no endpoint features yet\n");
430                 break;
431
432         /* CLASS REQUESTS (and errors) */
433
434         default:
435                 /* non-generic request */
436                 if (HCD_IS_SUSPENDED (hcd->state))
437                         urb->status = -EAGAIN;
438                 else if (!HCD_IS_RUNNING (hcd->state))
439                         urb->status = -ENODEV;
440                 else
441                         urb->status = hcd->driver->hub_control (hcd,
442                                 typeReq, wValue, wIndex,
443                                 ubuf, wLength);
444                 break;
445 error:
446                 /* "protocol stall" on error */
447                 urb->status = -EPIPE;
448                 dev_dbg (hcd->self.controller, "unsupported hub control message (maxchild %d)\n",
449                                 urb->dev->maxchild);
450         }
451         if (urb->status) {
452                 urb->actual_length = 0;
453                 dev_dbg (hcd->self.controller, "CTRL: TypeReq=0x%x val=0x%x idx=0x%x len=%d ==> %d\n",
454                         typeReq, wValue, wIndex, wLength, urb->status);
455         }
456         if (bufp) {
457                 if (urb->transfer_buffer_length < len)
458                         len = urb->transfer_buffer_length;
459                 urb->actual_length = len;
460                 // always USB_DIR_IN, toward host
461                 memcpy (ubuf, bufp, len);
462
463                 /* report whether RH hardware supports remote wakeup */
464                 if (patch_wakeup)
465                         ((struct usb_config_descriptor *)ubuf)->bmAttributes
466                                 |= USB_CONFIG_ATT_WAKEUP;
467         }
468
469         /* any errors get returned through the urb completion */
470         local_irq_save (flags);
471         usb_hcd_giveback_urb (hcd, urb, NULL);
472         local_irq_restore (flags);
473         return 0;
474 }
475
476 /*-------------------------------------------------------------------------*/
477
478 /*
479  * Root Hub interrupt transfers are synthesized with a timer.
480  * Completions are called in_interrupt() but not in_irq().
481  */
482
483 static void rh_report_status (unsigned long ptr);
484
485 static int rh_status_urb (struct usb_hcd *hcd, struct urb *urb) 
486 {
487         int     len = 1 + (urb->dev->maxchild / 8);
488
489         /* rh_timer protected by hcd_data_lock */
490         if (hcd->rh_timer.data
491                         || urb->status != -EINPROGRESS
492                         || urb->transfer_buffer_length < len
493                         || !HCD_IS_RUNNING (hcd->state)) {
494                 dev_dbg (hcd->self.controller,
495                                 "not queuing rh status urb, stat %d\n",
496                                 urb->status);
497                 return -EINVAL;
498         }
499
500         init_timer (&hcd->rh_timer);
501         hcd->rh_timer.function = rh_report_status;
502         hcd->rh_timer.data = (unsigned long) urb;
503         /* USB 2.0 spec says 256msec; this is close enough */
504         hcd->rh_timer.expires = jiffies + HZ/4;
505         add_timer (&hcd->rh_timer);
506         urb->hcpriv = hcd;      /* nonzero to indicate it's queued */
507         return 0;
508 }
509
510 /* timer callback */
511
512 static void rh_report_status (unsigned long ptr)
513 {
514         struct urb      *urb;
515         struct usb_hcd  *hcd;
516         int             length = 0;
517         unsigned long   flags;
518
519         urb = (struct urb *) ptr;
520         local_irq_save (flags);
521         spin_lock (&urb->lock);
522
523         /* do nothing if the urb's been unlinked */
524         if (!urb->dev
525                         || urb->status != -EINPROGRESS
526                         || (hcd = urb->dev->bus->hcpriv) == 0) {
527                 spin_unlock (&urb->lock);
528                 local_irq_restore (flags);
529                 return;
530         }
531
532         if (!HCD_IS_SUSPENDED (hcd->state))
533                 length = hcd->driver->hub_status_data (
534                                         hcd, urb->transfer_buffer);
535
536         /* complete the status urb, or retrigger the timer */
537         spin_lock (&hcd_data_lock);
538         if (length > 0) {
539                 hcd->rh_timer.data = 0;
540                 urb->actual_length = length;
541                 urb->status = 0;
542                 urb->hcpriv = NULL;
543         } else
544                 mod_timer (&hcd->rh_timer, jiffies + HZ/4);
545         spin_unlock (&hcd_data_lock);
546         spin_unlock (&urb->lock);
547
548         /* local irqs are always blocked in completions */
549         if (length > 0)
550                 usb_hcd_giveback_urb (hcd, urb, NULL);
551         local_irq_restore (flags);
552 }
553
554 /*-------------------------------------------------------------------------*/
555
556 static int rh_urb_enqueue (struct usb_hcd *hcd, struct urb *urb)
557 {
558         if (usb_pipeint (urb->pipe)) {
559                 int             retval;
560                 unsigned long   flags;
561
562                 spin_lock_irqsave (&hcd_data_lock, flags);
563                 retval = rh_status_urb (hcd, urb);
564                 spin_unlock_irqrestore (&hcd_data_lock, flags);
565                 return retval;
566         }
567         if (usb_pipecontrol (urb->pipe))
568                 return rh_call_control (hcd, urb);
569         else
570                 return -EINVAL;
571 }
572
573 /*-------------------------------------------------------------------------*/
574
575 int usb_rh_status_dequeue (struct usb_hcd *hcd, struct urb *urb)
576 {
577         unsigned long   flags;
578
579         /* note:  always a synchronous unlink */
580         del_timer_sync (&hcd->rh_timer);
581         hcd->rh_timer.data = 0;
582
583         local_irq_save (flags);
584         urb->hcpriv = NULL;
585         usb_hcd_giveback_urb (hcd, urb, NULL);
586         local_irq_restore (flags);
587         return 0;
588 }
589
590 /*-------------------------------------------------------------------------*/
591
592 /* exported only within usbcore */
593 struct usb_bus *usb_bus_get (struct usb_bus *bus)
594 {
595         struct class_device *tmp;
596
597         if (!bus)
598                 return NULL;
599
600         tmp = class_device_get(&bus->class_dev);
601         if (tmp)        
602                 return to_usb_bus(tmp);
603         else
604                 return NULL;
605 }
606
607 /* exported only within usbcore */
608 void usb_bus_put (struct usb_bus *bus)
609 {
610         if (bus)
611                 class_device_put(&bus->class_dev);
612 }
613
614 /*-------------------------------------------------------------------------*/
615
616 static void usb_host_release(struct class_device *class_dev)
617 {
618         struct usb_bus *bus = to_usb_bus(class_dev);
619
620         if (bus->release)
621                 bus->release(bus);
622 }
623
624 static struct class usb_host_class = {
625         .name           = "usb_host",
626         .release        = &usb_host_release,
627 };
628
629 int usb_host_init(void)
630 {
631         return class_register(&usb_host_class);
632 }
633
634 void usb_host_cleanup(void)
635 {
636         class_unregister(&usb_host_class);
637 }
638
639 /**
640  * usb_bus_init - shared initialization code
641  * @bus: the bus structure being initialized
642  *
643  * This code is used to initialize a usb_bus structure, memory for which is
644  * separately managed.
645  */
646 void usb_bus_init (struct usb_bus *bus)
647 {
648         memset (&bus->devmap, 0, sizeof(struct usb_devmap));
649
650         bus->devnum_next = 1;
651
652         bus->root_hub = NULL;
653         bus->hcpriv = NULL;
654         bus->busnum = -1;
655         bus->bandwidth_allocated = 0;
656         bus->bandwidth_int_reqs  = 0;
657         bus->bandwidth_isoc_reqs = 0;
658
659         INIT_LIST_HEAD (&bus->bus_list);
660 }
661 EXPORT_SYMBOL (usb_bus_init);
662
663 /**
664  * usb_alloc_bus - creates a new USB host controller structure
665  * @op: pointer to a struct usb_operations that this bus structure should use
666  * Context: !in_interrupt()
667  *
668  * Creates a USB host controller bus structure with the specified 
669  * usb_operations and initializes all the necessary internal objects.
670  *
671  * If no memory is available, NULL is returned.
672  *
673  * The caller should call usb_put_bus() when it is finished with the structure.
674  */
675 struct usb_bus *usb_alloc_bus (struct usb_operations *op)
676 {
677         struct usb_bus *bus;
678
679         bus = kmalloc (sizeof *bus, GFP_KERNEL);
680         if (!bus)
681                 return NULL;
682         memset(bus, 0, sizeof(struct usb_bus));
683         usb_bus_init (bus);
684         bus->op = op;
685         return bus;
686 }
687 EXPORT_SYMBOL (usb_alloc_bus);
688
689 /*-------------------------------------------------------------------------*/
690
691 /**
692  * usb_register_bus - registers the USB host controller with the usb core
693  * @bus: pointer to the bus to register
694  * Context: !in_interrupt()
695  *
696  * Assigns a bus number, and links the controller into usbcore data
697  * structures so that it can be seen by scanning the bus list.
698  */
699 int usb_register_bus(struct usb_bus *bus)
700 {
701         int busnum;
702         int retval;
703
704         down (&usb_bus_list_lock);
705         busnum = find_next_zero_bit (busmap.busmap, USB_MAXBUS, 1);
706         if (busnum < USB_MAXBUS) {
707                 set_bit (busnum, busmap.busmap);
708                 bus->busnum = busnum;
709         } else {
710                 printk (KERN_ERR "%s: too many buses\n", usbcore_name);
711                 return -E2BIG;
712         }
713
714         snprintf(bus->class_dev.class_id, BUS_ID_SIZE, "usb%d", busnum);
715         bus->class_dev.class = &usb_host_class;
716         bus->class_dev.dev = bus->controller;
717         retval = class_device_register(&bus->class_dev);
718         if (retval) {
719                 clear_bit(busnum, busmap.busmap);
720                 up(&usb_bus_list_lock);
721                 return retval;
722         }
723
724         /* Add it to the local list of buses */
725         list_add (&bus->bus_list, &usb_bus_list);
726         up (&usb_bus_list_lock);
727
728         usbfs_add_bus (bus);
729
730         dev_info (bus->controller, "new USB bus registered, assigned bus number %d\n", bus->busnum);
731         return 0;
732 }
733 EXPORT_SYMBOL (usb_register_bus);
734
735 /**
736  * usb_deregister_bus - deregisters the USB host controller
737  * @bus: pointer to the bus to deregister
738  * Context: !in_interrupt()
739  *
740  * Recycles the bus number, and unlinks the controller from usbcore data
741  * structures so that it won't be seen by scanning the bus list.
742  */
743 void usb_deregister_bus (struct usb_bus *bus)
744 {
745         dev_info (bus->controller, "USB bus %d deregistered\n", bus->busnum);
746
747         /*
748          * NOTE: make sure that all the devices are removed by the
749          * controller code, as well as having it call this when cleaning
750          * itself up
751          */
752         down (&usb_bus_list_lock);
753         list_del (&bus->bus_list);
754         up (&usb_bus_list_lock);
755
756         usbfs_remove_bus (bus);
757
758         clear_bit (bus->busnum, busmap.busmap);
759
760         class_device_unregister(&bus->class_dev);
761 }
762 EXPORT_SYMBOL (usb_deregister_bus);
763
764 /**
765  * usb_register_root_hub - called by HCD to register its root hub 
766  * @usb_dev: the usb root hub device to be registered.
767  * @parent_dev: the parent device of this root hub.
768  *
769  * The USB host controller calls this function to register the root hub
770  * properly with the USB subsystem.  It sets up the device properly in
771  * the device tree and stores the root_hub pointer in the bus structure,
772  * then calls usb_new_device() to register the usb device.  It also
773  * assigns the root hub's USB address (always 1).
774  */
775 int usb_register_root_hub (struct usb_device *usb_dev, struct device *parent_dev)
776 {
777         const int devnum = 1;
778         int retval;
779
780         usb_dev->devnum = devnum;
781         usb_dev->bus->devnum_next = devnum + 1;
782         memset (&usb_dev->bus->devmap.devicemap, 0,
783                         sizeof usb_dev->bus->devmap.devicemap);
784         set_bit (devnum, usb_dev->bus->devmap.devicemap);
785         usb_set_device_state(usb_dev, USB_STATE_ADDRESS);
786
787         down (&usb_bus_list_lock);
788         usb_dev->bus->root_hub = usb_dev;
789
790         usb_dev->epmaxpacketin[0] = usb_dev->epmaxpacketout[0] = 64;
791         retval = usb_get_device_descriptor(usb_dev, USB_DT_DEVICE_SIZE);
792         if (retval != sizeof usb_dev->descriptor) {
793                 dev_dbg (parent_dev, "can't read %s device descriptor %d\n",
794                                 usb_dev->dev.bus_id, retval);
795                 return (retval < 0) ? retval : -EMSGSIZE;
796         }
797
798         down (&usb_dev->serialize);
799         retval = usb_new_device (usb_dev);
800         up (&usb_dev->serialize);
801         if (retval) {
802                 usb_dev->bus->root_hub = NULL;
803                 dev_err (parent_dev, "can't register root hub for %s, %d\n",
804                                 usb_dev->dev.bus_id, retval);
805         }
806         up (&usb_bus_list_lock);
807         return retval;
808 }
809 EXPORT_SYMBOL (usb_register_root_hub);
810
811
812 /*-------------------------------------------------------------------------*/
813
814 /**
815  * usb_calc_bus_time - approximate periodic transaction time in nanoseconds
816  * @speed: from dev->speed; USB_SPEED_{LOW,FULL,HIGH}
817  * @is_input: true iff the transaction sends data to the host
818  * @isoc: true for isochronous transactions, false for interrupt ones
819  * @bytecount: how many bytes in the transaction.
820  *
821  * Returns approximate bus time in nanoseconds for a periodic transaction.
822  * See USB 2.0 spec section 5.11.3; only periodic transfers need to be
823  * scheduled in software, this function is only used for such scheduling.
824  */
825 long usb_calc_bus_time (int speed, int is_input, int isoc, int bytecount)
826 {
827         unsigned long   tmp;
828
829         switch (speed) {
830         case USB_SPEED_LOW:     /* INTR only */
831                 if (is_input) {
832                         tmp = (67667L * (31L + 10L * BitTime (bytecount))) / 1000L;
833                         return (64060L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
834                 } else {
835                         tmp = (66700L * (31L + 10L * BitTime (bytecount))) / 1000L;
836                         return (64107L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
837                 }
838         case USB_SPEED_FULL:    /* ISOC or INTR */
839                 if (isoc) {
840                         tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
841                         return (((is_input) ? 7268L : 6265L) + BW_HOST_DELAY + tmp);
842                 } else {
843                         tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
844                         return (9107L + BW_HOST_DELAY + tmp);
845                 }
846         case USB_SPEED_HIGH:    /* ISOC or INTR */
847                 // FIXME adjust for input vs output
848                 if (isoc)
849                         tmp = HS_USECS (bytecount);
850                 else
851                         tmp = HS_USECS_ISO (bytecount);
852                 return tmp;
853         default:
854                 pr_debug ("%s: bogus device speed!\n", usbcore_name);
855                 return -1;
856         }
857 }
858 EXPORT_SYMBOL (usb_calc_bus_time);
859
860 /*
861  * usb_check_bandwidth():
862  *
863  * old_alloc is from host_controller->bandwidth_allocated in microseconds;
864  * bustime is from calc_bus_time(), but converted to microseconds.
865  *
866  * returns <bustime in us> if successful,
867  * or -ENOSPC if bandwidth request fails.
868  *
869  * FIXME:
870  * This initial implementation does not use Endpoint.bInterval
871  * in managing bandwidth allocation.
872  * It probably needs to be expanded to use Endpoint.bInterval.
873  * This can be done as a later enhancement (correction).
874  *
875  * This will also probably require some kind of
876  * frame allocation tracking...meaning, for example,
877  * that if multiple drivers request interrupts every 10 USB frames,
878  * they don't all have to be allocated at
879  * frame numbers N, N+10, N+20, etc.  Some of them could be at
880  * N+11, N+21, N+31, etc., and others at
881  * N+12, N+22, N+32, etc.
882  *
883  * Similarly for isochronous transfers...
884  *
885  * Individual HCDs can schedule more directly ... this logic
886  * is not correct for high speed transfers.
887  */
888 int usb_check_bandwidth (struct usb_device *dev, struct urb *urb)
889 {
890         unsigned int    pipe = urb->pipe;
891         long            bustime;
892         int             is_in = usb_pipein (pipe);
893         int             is_iso = usb_pipeisoc (pipe);
894         int             old_alloc = dev->bus->bandwidth_allocated;
895         int             new_alloc;
896
897
898         bustime = NS_TO_US (usb_calc_bus_time (dev->speed, is_in, is_iso,
899                         usb_maxpacket (dev, pipe, !is_in)));
900         if (is_iso)
901                 bustime /= urb->number_of_packets;
902
903         new_alloc = old_alloc + (int) bustime;
904         if (new_alloc > FRAME_TIME_MAX_USECS_ALLOC) {
905 #ifdef  DEBUG
906                 char    *mode = 
907 #ifdef CONFIG_USB_BANDWIDTH
908                         "";
909 #else
910                         "would have ";
911 #endif
912                 dev_dbg (&dev->dev, "usb_check_bandwidth %sFAILED: %d + %ld = %d usec\n",
913                         mode, old_alloc, bustime, new_alloc);
914 #endif
915 #ifdef CONFIG_USB_BANDWIDTH
916                 bustime = -ENOSPC;      /* report error */
917 #endif
918         }
919
920         return bustime;
921 }
922 EXPORT_SYMBOL (usb_check_bandwidth);
923
924
925 /**
926  * usb_claim_bandwidth - records bandwidth for a periodic transfer
927  * @dev: source/target of request
928  * @urb: request (urb->dev == dev)
929  * @bustime: bandwidth consumed, in (average) microseconds per frame
930  * @isoc: true iff the request is isochronous
931  *
932  * Bus bandwidth reservations are recorded purely for diagnostic purposes.
933  * HCDs are expected not to overcommit periodic bandwidth, and to record such
934  * reservations whenever endpoints are added to the periodic schedule.
935  *
936  * FIXME averaging per-frame is suboptimal.  Better to sum over the HCD's
937  * entire periodic schedule ... 32 frames for OHCI, 1024 for UHCI, settable
938  * for EHCI (256/512/1024 frames, default 1024) and have the bus expose how
939  * large its periodic schedule is.
940  */
941 void usb_claim_bandwidth (struct usb_device *dev, struct urb *urb, int bustime, int isoc)
942 {
943         dev->bus->bandwidth_allocated += bustime;
944         if (isoc)
945                 dev->bus->bandwidth_isoc_reqs++;
946         else
947                 dev->bus->bandwidth_int_reqs++;
948         urb->bandwidth = bustime;
949
950 #ifdef USB_BANDWIDTH_MESSAGES
951         dev_dbg (&dev->dev, "bandwidth alloc increased by %d (%s) to %d for %d requesters\n",
952                 bustime,
953                 isoc ? "ISOC" : "INTR",
954                 dev->bus->bandwidth_allocated,
955                 dev->bus->bandwidth_int_reqs + dev->bus->bandwidth_isoc_reqs);
956 #endif
957 }
958 EXPORT_SYMBOL (usb_claim_bandwidth);
959
960
961 /**
962  * usb_release_bandwidth - reverses effect of usb_claim_bandwidth()
963  * @dev: source/target of request
964  * @urb: request (urb->dev == dev)
965  * @isoc: true iff the request is isochronous
966  *
967  * This records that previously allocated bandwidth has been released.
968  * Bandwidth is released when endpoints are removed from the host controller's
969  * periodic schedule.
970  */
971 void usb_release_bandwidth (struct usb_device *dev, struct urb *urb, int isoc)
972 {
973         dev->bus->bandwidth_allocated -= urb->bandwidth;
974         if (isoc)
975                 dev->bus->bandwidth_isoc_reqs--;
976         else
977                 dev->bus->bandwidth_int_reqs--;
978
979 #ifdef USB_BANDWIDTH_MESSAGES
980         dev_dbg (&dev->dev, "bandwidth alloc reduced by %d (%s) to %d for %d requesters\n",
981                 urb->bandwidth,
982                 isoc ? "ISOC" : "INTR",
983                 dev->bus->bandwidth_allocated,
984                 dev->bus->bandwidth_int_reqs + dev->bus->bandwidth_isoc_reqs);
985 #endif
986         urb->bandwidth = 0;
987 }
988 EXPORT_SYMBOL (usb_release_bandwidth);
989
990
991 /*-------------------------------------------------------------------------*/
992
993 /*
994  * Generic HC operations.
995  */
996
997 /*-------------------------------------------------------------------------*/
998
999 /* called from khubd, or root hub init threads for hcd-private init */
1000 static int hcd_alloc_dev (struct usb_device *udev)
1001 {
1002         struct hcd_dev          *dev;
1003         struct usb_hcd          *hcd;
1004         unsigned long           flags;
1005
1006         if (!udev || udev->hcpriv)
1007                 return -EINVAL;
1008         if (!udev->bus || !udev->bus->hcpriv)
1009                 return -ENODEV;
1010         hcd = udev->bus->hcpriv;
1011         if (hcd->state == USB_STATE_QUIESCING)
1012                 return -ENOLINK;
1013
1014         dev = (struct hcd_dev *) kmalloc (sizeof *dev, GFP_KERNEL);
1015         if (dev == NULL)
1016                 return -ENOMEM;
1017         memset (dev, 0, sizeof *dev);
1018
1019         INIT_LIST_HEAD (&dev->dev_list);
1020         INIT_LIST_HEAD (&dev->urb_list);
1021
1022         spin_lock_irqsave (&hcd_data_lock, flags);
1023         list_add (&dev->dev_list, &hcd->dev_list);
1024         // refcount is implicit
1025         udev->hcpriv = dev;
1026         spin_unlock_irqrestore (&hcd_data_lock, flags);
1027
1028         return 0;
1029 }
1030
1031 /*-------------------------------------------------------------------------*/
1032
1033 static void urb_unlink (struct urb *urb)
1034 {
1035         unsigned long           flags;
1036
1037         /* Release any periodic transfer bandwidth */
1038         if (urb->bandwidth)
1039                 usb_release_bandwidth (urb->dev, urb,
1040                         usb_pipeisoc (urb->pipe));
1041
1042         /* clear all state linking urb to this dev (and hcd) */
1043
1044         spin_lock_irqsave (&hcd_data_lock, flags);
1045         list_del_init (&urb->urb_list);
1046         spin_unlock_irqrestore (&hcd_data_lock, flags);
1047         usb_put_dev (urb->dev);
1048 }
1049
1050
1051 /* may be called in any context with a valid urb->dev usecount
1052  * caller surrenders "ownership" of urb
1053  * expects usb_submit_urb() to have sanity checked and conditioned all
1054  * inputs in the urb
1055  */
1056 static int hcd_submit_urb (struct urb *urb, int mem_flags)
1057 {
1058         int                     status;
1059         struct usb_hcd          *hcd = urb->dev->bus->hcpriv;
1060         struct hcd_dev          *dev = urb->dev->hcpriv;
1061         unsigned long           flags;
1062
1063         if (!hcd || !dev)
1064                 return -ENODEV;
1065
1066         /*
1067          * FIXME:  make urb timeouts be generic, keeping the HCD cores
1068          * as simple as possible.
1069          */
1070
1071         // NOTE:  a generic device/urb monitoring hook would go here.
1072         // hcd_monitor_hook(MONITOR_URB_SUBMIT, urb)
1073         // It would catch submission paths for all urbs.
1074
1075         /*
1076          * Atomically queue the urb,  first to our records, then to the HCD.
1077          * Access to urb->status is controlled by urb->lock ... changes on
1078          * i/o completion (normal or fault) or unlinking.
1079          */
1080
1081         // FIXME:  verify that quiescing hc works right (RH cleans up)
1082
1083         spin_lock_irqsave (&hcd_data_lock, flags);
1084         if (unlikely (urb->reject))
1085                 status = -EPERM;
1086         else if (HCD_IS_RUNNING (hcd->state) &&
1087                         hcd->state != USB_STATE_QUIESCING) {
1088                 usb_get_dev (urb->dev);
1089                 list_add_tail (&urb->urb_list, &dev->urb_list);
1090                 status = 0;
1091         } else
1092                 status = -ESHUTDOWN;
1093         spin_unlock_irqrestore (&hcd_data_lock, flags);
1094         if (status) {
1095                 INIT_LIST_HEAD (&urb->urb_list);
1096                 return status;
1097         }
1098
1099         /* increment urb's reference count as part of giving it to the HCD
1100          * (which now controls it).  HCD guarantees that it either returns
1101          * an error or calls giveback(), but not both.
1102          */
1103         urb = usb_get_urb (urb);
1104         atomic_inc (&urb->use_count);
1105
1106         if (urb->dev == hcd->self.root_hub) {
1107                 /* NOTE:  requirement on hub callers (usbfs and the hub
1108                  * driver, for now) that URBs' urb->transfer_buffer be
1109                  * valid and usb_buffer_{sync,unmap}() not be needed, since
1110                  * they could clobber root hub response data.
1111                  */
1112                 urb->transfer_flags |= (URB_NO_TRANSFER_DMA_MAP
1113                                         | URB_NO_SETUP_DMA_MAP);
1114                 status = rh_urb_enqueue (hcd, urb);
1115                 goto done;
1116         }
1117
1118         /* lower level hcd code should use *_dma exclusively,
1119          * unless it uses pio or talks to another transport.
1120          */
1121         if (hcd->self.controller->dma_mask) {
1122                 if (usb_pipecontrol (urb->pipe)
1123                         && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP))
1124                         urb->setup_dma = dma_map_single (
1125                                         hcd->self.controller,
1126                                         urb->setup_packet,
1127                                         sizeof (struct usb_ctrlrequest),
1128                                         DMA_TO_DEVICE);
1129                 if (urb->transfer_buffer_length != 0
1130                         && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP))
1131                         urb->transfer_dma = dma_map_single (
1132                                         hcd->self.controller,
1133                                         urb->transfer_buffer,
1134                                         urb->transfer_buffer_length,
1135                                         usb_pipein (urb->pipe)
1136                                             ? DMA_FROM_DEVICE
1137                                             : DMA_TO_DEVICE);
1138         }
1139
1140         status = hcd->driver->urb_enqueue (hcd, urb, mem_flags);
1141 done:
1142         if (unlikely (status)) {
1143                 urb_unlink (urb);
1144                 atomic_dec (&urb->use_count);
1145                 if (urb->reject)
1146                         wake_up (&usb_kill_urb_queue);
1147                 usb_put_urb (urb);
1148         }
1149         return status;
1150 }
1151
1152 /*-------------------------------------------------------------------------*/
1153
1154 /* called in any context */
1155 static int hcd_get_frame_number (struct usb_device *udev)
1156 {
1157         struct usb_hcd  *hcd = (struct usb_hcd *)udev->bus->hcpriv;
1158         if (!HCD_IS_RUNNING (hcd->state))
1159                 return -ESHUTDOWN;
1160         return hcd->driver->get_frame_number (hcd);
1161 }
1162
1163 /*-------------------------------------------------------------------------*/
1164
1165 /* this makes the hcd giveback() the urb more quickly, by kicking it
1166  * off hardware queues (which may take a while) and returning it as
1167  * soon as practical.  we've already set up the urb's return status,
1168  * but we can't know if the callback completed already.
1169  */
1170 static int
1171 unlink1 (struct usb_hcd *hcd, struct urb *urb)
1172 {
1173         int             value;
1174
1175         if (urb == (struct urb *) hcd->rh_timer.data)
1176                 value = usb_rh_status_dequeue (hcd, urb);
1177         else {
1178
1179                 /* The only reason an HCD might fail this call is if
1180                  * it has not yet fully queued the urb to begin with.
1181                  * Such failures should be harmless. */
1182                 value = hcd->driver->urb_dequeue (hcd, urb);
1183         }
1184
1185         if (value != 0)
1186                 dev_dbg (hcd->self.controller, "dequeue %p --> %d\n",
1187                                 urb, value);
1188         return value;
1189 }
1190
1191 /*
1192  * called in any context
1193  *
1194  * caller guarantees urb won't be recycled till both unlink()
1195  * and the urb's completion function return
1196  */
1197 static int hcd_unlink_urb (struct urb *urb, int status)
1198 {
1199         struct hcd_dev                  *dev;
1200         struct usb_hcd                  *hcd = NULL;
1201         struct device                   *sys = NULL;
1202         unsigned long                   flags;
1203         struct list_head                *tmp;
1204         int                             retval;
1205
1206         if (!urb)
1207                 return -EINVAL;
1208
1209         /*
1210          * we contend for urb->status with the hcd core,
1211          * which changes it while returning the urb.
1212          *
1213          * Caller guaranteed that the urb pointer hasn't been freed, and
1214          * that it was submitted.  But as a rule it can't know whether or
1215          * not it's already been unlinked ... so we respect the reversed
1216          * lock sequence needed for the usb_hcd_giveback_urb() code paths
1217          * (urb lock, then hcd_data_lock) in case some other CPU is now
1218          * unlinking it.
1219          */
1220         spin_lock_irqsave (&urb->lock, flags);
1221         spin_lock (&hcd_data_lock);
1222
1223         if (!urb->dev || !urb->dev->bus) {
1224                 retval = -ENODEV;
1225                 goto done;
1226         }
1227
1228         dev = urb->dev->hcpriv;
1229         sys = &urb->dev->dev;
1230         hcd = urb->dev->bus->hcpriv;
1231         if (!dev || !hcd) {
1232                 retval = -ENODEV;
1233                 goto done;
1234         }
1235
1236         /* running ~= hc unlink handshake works (irq, timer, etc)
1237          * halted ~= no unlink handshake is needed
1238          * suspended, resuming == should never happen
1239          */
1240         WARN_ON (!HCD_IS_RUNNING (hcd->state) && hcd->state != USB_STATE_HALT);
1241
1242         /* insist the urb is still queued */
1243         list_for_each(tmp, &dev->urb_list) {
1244                 if (tmp == &urb->urb_list)
1245                         break;
1246         }
1247         if (tmp != &urb->urb_list) {
1248                 retval = -EIDRM;
1249                 goto done;
1250         }
1251
1252         /* Any status except -EINPROGRESS means something already started to
1253          * unlink this URB from the hardware.  So there's no more work to do.
1254          */
1255         if (urb->status != -EINPROGRESS) {
1256                 retval = -EBUSY;
1257                 goto done;
1258         }
1259
1260         /* PCI IRQ setup can easily be broken so that USB controllers
1261          * never get completion IRQs ... maybe even the ones we need to
1262          * finish unlinking the initial failed usb_set_address().
1263          */
1264         if (!hcd->saw_irq) {
1265                 dev_warn (hcd->self.controller, "Unlink after no-IRQ?  "
1266                         "Different ACPI or APIC settings may help."
1267                         "\n");
1268                 hcd->saw_irq = 1;
1269         }
1270
1271         urb->status = status;
1272
1273         spin_unlock (&hcd_data_lock);
1274         spin_unlock_irqrestore (&urb->lock, flags);
1275
1276         retval = unlink1 (hcd, urb);
1277         if (retval == 0)
1278                 retval = -EINPROGRESS;
1279         return retval;
1280
1281 done:
1282         spin_unlock (&hcd_data_lock);
1283         spin_unlock_irqrestore (&urb->lock, flags);
1284         if (retval != -EIDRM && sys && sys->driver)
1285                 dev_dbg (sys, "hcd_unlink_urb %p fail %d\n", urb, retval);
1286         return retval;
1287 }
1288
1289 /*-------------------------------------------------------------------------*/
1290
1291 /* disables the endpoint: cancels any pending urbs, then synchronizes with
1292  * the hcd to make sure all endpoint state is gone from hardware. use for
1293  * set_configuration, set_interface, driver removal, physical disconnect.
1294  *
1295  * example:  a qh stored in hcd_dev.ep[], holding state related to endpoint
1296  * type, maxpacket size, toggle, halt status, and scheduling.
1297  */
1298 static void hcd_endpoint_disable (struct usb_device *udev, int endpoint)
1299 {
1300         struct hcd_dev  *dev;
1301         struct usb_hcd  *hcd;
1302         struct urb      *urb;
1303         unsigned        epnum = endpoint & USB_ENDPOINT_NUMBER_MASK;
1304
1305         dev = udev->hcpriv;
1306         hcd = udev->bus->hcpriv;
1307
1308         WARN_ON (!HCD_IS_RUNNING (hcd->state) && hcd->state != USB_STATE_HALT);
1309
1310         local_irq_disable ();
1311
1312 rescan:
1313         /* (re)block new requests, as best we can */
1314         if (endpoint & USB_DIR_IN) {
1315                 usb_endpoint_halt (udev, epnum, 0);
1316                 udev->epmaxpacketin [epnum] = 0;
1317         } else {
1318                 usb_endpoint_halt (udev, epnum, 1);
1319                 udev->epmaxpacketout [epnum] = 0;
1320         }
1321
1322         /* then kill any current requests */
1323         spin_lock (&hcd_data_lock);
1324         list_for_each_entry (urb, &dev->urb_list, urb_list) {
1325                 int     tmp = urb->pipe;
1326
1327                 /* ignore urbs for other endpoints */
1328                 if (usb_pipeendpoint (tmp) != epnum)
1329                         continue;
1330                 /* NOTE assumption that only ep0 is a control endpoint */
1331                 if (epnum != 0 && ((tmp ^ endpoint) & USB_DIR_IN))
1332                         continue;
1333
1334                 /* another cpu may be in hcd, spinning on hcd_data_lock
1335                  * to giveback() this urb.  the races here should be
1336                  * small, but a full fix needs a new "can't submit"
1337                  * urb state.
1338                  */
1339                 if (urb->status != -EINPROGRESS)
1340                         continue;
1341                 usb_get_urb (urb);
1342                 spin_unlock (&hcd_data_lock);
1343
1344                 spin_lock (&urb->lock);
1345                 tmp = urb->status;
1346                 if (tmp == -EINPROGRESS)
1347                         urb->status = -ESHUTDOWN;
1348                 spin_unlock (&urb->lock);
1349
1350                 /* kick hcd unless it's already returning this */
1351                 if (tmp == -EINPROGRESS) {
1352                         tmp = urb->pipe;
1353                         unlink1 (hcd, urb);
1354                         dev_dbg (hcd->self.controller,
1355                                 "shutdown urb %p pipe %08x ep%d%s%s\n",
1356                                 urb, tmp, usb_pipeendpoint (tmp),
1357                                 (tmp & USB_DIR_IN) ? "in" : "out",
1358                                 ({ char *s; \
1359                                  switch (usb_pipetype (tmp)) { \
1360                                  case PIPE_CONTROL:     s = ""; break; \
1361                                  case PIPE_BULK:        s = "-bulk"; break; \
1362                                  case PIPE_INTERRUPT:   s = "-intr"; break; \
1363                                  default:               s = "-iso"; break; \
1364                                 }; s;}));
1365                 }
1366                 usb_put_urb (urb);
1367
1368                 /* list contents may have changed */
1369                 goto rescan;
1370         }
1371         spin_unlock (&hcd_data_lock);
1372         local_irq_enable ();
1373
1374         /* synchronize with the hardware, so old configuration state
1375          * clears out immediately (and will be freed).
1376          */
1377         might_sleep ();
1378         if (hcd->driver->endpoint_disable)
1379                 hcd->driver->endpoint_disable (hcd, dev, endpoint);
1380 }
1381
1382 /*-------------------------------------------------------------------------*/
1383
1384 #ifdef  CONFIG_USB_SUSPEND
1385
1386 static int hcd_hub_suspend (struct usb_bus *bus)
1387 {
1388         struct usb_hcd          *hcd;
1389
1390         hcd = container_of (bus, struct usb_hcd, self);
1391         if (hcd->driver->hub_suspend)
1392                 return hcd->driver->hub_suspend (hcd);
1393         return 0;
1394 }
1395
1396 static int hcd_hub_resume (struct usb_bus *bus)
1397 {
1398         struct usb_hcd          *hcd;
1399
1400         hcd = container_of (bus, struct usb_hcd, self);
1401         if (hcd->driver->hub_resume)
1402                 return hcd->driver->hub_resume (hcd);
1403         return 0;
1404 }
1405
1406 #endif
1407
1408 /*-------------------------------------------------------------------------*/
1409
1410 /* called by khubd, rmmod, apmd, or other thread for hcd-private cleanup.
1411  * we're guaranteed that the device is fully quiesced.  also, that each
1412  * endpoint has been hcd_endpoint_disabled.
1413  */
1414
1415 static int hcd_free_dev (struct usb_device *udev)
1416 {
1417         struct hcd_dev          *dev;
1418         struct usb_hcd          *hcd;
1419         unsigned long           flags;
1420
1421         if (!udev || !udev->hcpriv)
1422                 return -EINVAL;
1423
1424         if (!udev->bus || !udev->bus->hcpriv)
1425                 return -ENODEV;
1426
1427         // should udev->devnum == -1 ??
1428
1429         dev = udev->hcpriv;
1430         hcd = udev->bus->hcpriv;
1431
1432         /* device driver problem with refcounts? */
1433         if (!list_empty (&dev->urb_list)) {
1434                 dev_dbg (hcd->self.controller, "free busy dev, %s devnum %d (bug!)\n",
1435                         hcd->self.bus_name, udev->devnum);
1436                 return -EINVAL;
1437         }
1438
1439         spin_lock_irqsave (&hcd_data_lock, flags);
1440         list_del (&dev->dev_list);
1441         udev->hcpriv = NULL;
1442         spin_unlock_irqrestore (&hcd_data_lock, flags);
1443
1444         kfree (dev);
1445         return 0;
1446 }
1447
1448 /*
1449  * usb_hcd_operations - adapts usb_bus framework to HCD framework (bus glue)
1450  *
1451  * When registering a USB bus through the HCD framework code, use this
1452  * usb_operations vector.  The PCI glue layer does so automatically; only
1453  * bus glue for non-PCI system busses will need to use this.
1454  */
1455 struct usb_operations usb_hcd_operations = {
1456         .allocate =             hcd_alloc_dev,
1457         .get_frame_number =     hcd_get_frame_number,
1458         .submit_urb =           hcd_submit_urb,
1459         .unlink_urb =           hcd_unlink_urb,
1460         .deallocate =           hcd_free_dev,
1461         .buffer_alloc =         hcd_buffer_alloc,
1462         .buffer_free =          hcd_buffer_free,
1463         .disable =              hcd_endpoint_disable,
1464 #ifdef  CONFIG_USB_SUSPEND
1465         .hub_suspend =          hcd_hub_suspend,
1466         .hub_resume =           hcd_hub_resume,
1467 #endif
1468 };
1469 EXPORT_SYMBOL (usb_hcd_operations);
1470
1471 /*-------------------------------------------------------------------------*/
1472
1473 /**
1474  * usb_hcd_giveback_urb - return URB from HCD to device driver
1475  * @hcd: host controller returning the URB
1476  * @urb: urb being returned to the USB device driver.
1477  * @regs: pt_regs, passed down to the URB completion handler
1478  * Context: in_interrupt()
1479  *
1480  * This hands the URB from HCD to its USB device driver, using its
1481  * completion function.  The HCD has freed all per-urb resources
1482  * (and is done using urb->hcpriv).  It also released all HCD locks;
1483  * the device driver won't cause problems if it frees, modifies,
1484  * or resubmits this URB.
1485  */
1486 void usb_hcd_giveback_urb (struct usb_hcd *hcd, struct urb *urb, struct pt_regs *regs)
1487 {
1488         urb_unlink (urb);
1489
1490         // NOTE:  a generic device/urb monitoring hook would go here.
1491         // hcd_monitor_hook(MONITOR_URB_FINISH, urb, dev)
1492         // It would catch exit/unlink paths for all urbs.
1493
1494         /* lower level hcd code should use *_dma exclusively */
1495         if (hcd->self.controller->dma_mask) {
1496                 if (usb_pipecontrol (urb->pipe)
1497                         && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP))
1498                         dma_unmap_single (hcd->self.controller, urb->setup_dma,
1499                                         sizeof (struct usb_ctrlrequest),
1500                                         DMA_TO_DEVICE);
1501                 if (urb->transfer_buffer_length != 0
1502                         && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP))
1503                         dma_unmap_single (hcd->self.controller, 
1504                                         urb->transfer_dma,
1505                                         urb->transfer_buffer_length,
1506                                         usb_pipein (urb->pipe)
1507                                             ? DMA_FROM_DEVICE
1508                                             : DMA_TO_DEVICE);
1509         }
1510
1511         /* pass ownership to the completion handler */
1512         urb->complete (urb, regs);
1513         atomic_dec (&urb->use_count);
1514         if (unlikely (urb->reject))
1515                 wake_up (&usb_kill_urb_queue);
1516         usb_put_urb (urb);
1517 }
1518 EXPORT_SYMBOL (usb_hcd_giveback_urb);
1519
1520 /*-------------------------------------------------------------------------*/
1521
1522 /**
1523  * usb_hcd_irq - hook IRQs to HCD framework (bus glue)
1524  * @irq: the IRQ being raised
1525  * @__hcd: pointer to the HCD whose IRQ is beinng signaled
1526  * @r: saved hardware registers
1527  *
1528  * When registering a USB bus through the HCD framework code, use this
1529  * to handle interrupts.  The PCI glue layer does so automatically; only
1530  * bus glue for non-PCI system busses will need to use this.
1531  */
1532 irqreturn_t usb_hcd_irq (int irq, void *__hcd, struct pt_regs * r)
1533 {
1534         struct usb_hcd          *hcd = __hcd;
1535         int                     start = hcd->state;
1536
1537         if (unlikely (hcd->state == USB_STATE_HALT))    /* irq sharing? */
1538                 return IRQ_NONE;
1539
1540         hcd->saw_irq = 1;
1541         if (hcd->driver->irq (hcd, r) == IRQ_NONE)
1542                 return IRQ_NONE;
1543
1544         if (hcd->state != start && hcd->state == USB_STATE_HALT)
1545                 usb_hc_died (hcd);
1546         return IRQ_HANDLED;
1547 }
1548 EXPORT_SYMBOL (usb_hcd_irq);
1549
1550 /*-------------------------------------------------------------------------*/
1551
1552 static void hcd_panic (void *_hcd)
1553 {
1554         struct usb_hcd          *hcd = _hcd;
1555         struct usb_device       *hub = hcd->self.root_hub;
1556         unsigned                i;
1557
1558         /* hc's root hub is removed later removed in hcd->stop() */
1559         down (&hub->serialize);
1560         usb_set_device_state(hub, USB_STATE_NOTATTACHED);
1561         for (i = 0; i < hub->maxchild; i++) {
1562                 if (hub->children [i])
1563                         usb_disconnect (&hub->children [i]);
1564         }
1565         up (&hub->serialize);
1566 }
1567
1568 /**
1569  * usb_hc_died - report abnormal shutdown of a host controller (bus glue)
1570  * @hcd: pointer to the HCD representing the controller
1571  *
1572  * This is called by bus glue to report a USB host controller that died
1573  * while operations may still have been pending.  It's called automatically
1574  * by the PCI glue, so only glue for non-PCI busses should need to call it. 
1575  */
1576 void usb_hc_died (struct usb_hcd *hcd)
1577 {
1578         dev_err (hcd->self.controller, "HC died; cleaning up\n");
1579
1580         /* clean up old urbs and devices; needs a task context */
1581         INIT_WORK (&hcd->work, hcd_panic, hcd);
1582         (void) schedule_work (&hcd->work);
1583 }
1584 EXPORT_SYMBOL (usb_hc_died);
1585