USB: move usbcore away from hcd->state
[linux-flexiantxendom0-natty.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/module.h>
26 #include <linux/version.h>
27 #include <linux/kernel.h>
28 #include <linux/slab.h>
29 #include <linux/completion.h>
30 #include <linux/utsname.h>
31 #include <linux/mm.h>
32 #include <asm/io.h>
33 #include <linux/device.h>
34 #include <linux/dma-mapping.h>
35 #include <linux/mutex.h>
36 #include <asm/irq.h>
37 #include <asm/byteorder.h>
38 #include <asm/unaligned.h>
39 #include <linux/platform_device.h>
40 #include <linux/workqueue.h>
41
42 #include <linux/usb.h>
43 #include <linux/usb/hcd.h>
44
45 #include "usb.h"
46
47
48 /*-------------------------------------------------------------------------*/
49
50 /*
51  * USB Host Controller Driver framework
52  *
53  * Plugs into usbcore (usb_bus) and lets HCDs share code, minimizing
54  * HCD-specific behaviors/bugs.
55  *
56  * This does error checks, tracks devices and urbs, and delegates to a
57  * "hc_driver" only for code (and data) that really needs to know about
58  * hardware differences.  That includes root hub registers, i/o queues,
59  * and so on ... but as little else as possible.
60  *
61  * Shared code includes most of the "root hub" code (these are emulated,
62  * though each HC's hardware works differently) and PCI glue, plus request
63  * tracking overhead.  The HCD code should only block on spinlocks or on
64  * hardware handshaking; blocking on software events (such as other kernel
65  * threads releasing resources, or completing actions) is all generic.
66  *
67  * Happens the USB 2.0 spec says this would be invisible inside the "USBD",
68  * and includes mostly a "HCDI" (HCD Interface) along with some APIs used
69  * only by the hub driver ... and that neither should be seen or used by
70  * usb client device drivers.
71  *
72  * Contributors of ideas or unattributed patches include: David Brownell,
73  * Roman Weissgaerber, Rory Bolt, Greg Kroah-Hartman, ...
74  *
75  * HISTORY:
76  * 2002-02-21   Pull in most of the usb_bus support from usb.c; some
77  *              associated cleanup.  "usb_hcd" still != "usb_bus".
78  * 2001-12-12   Initial patch version for Linux 2.5.1 kernel.
79  */
80
81 /*-------------------------------------------------------------------------*/
82
83 /* Keep track of which host controller drivers are loaded */
84 unsigned long usb_hcds_loaded;
85 EXPORT_SYMBOL_GPL(usb_hcds_loaded);
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 DEFINE_MUTEX(usb_bus_list_lock);        /* exported only for usbfs */
100 EXPORT_SYMBOL_GPL (usb_bus_list_lock);
101
102 /* used for controlling access to virtual root hubs */
103 static DEFINE_SPINLOCK(hcd_root_hub_lock);
104
105 /* used when updating an endpoint's URB list */
106 static DEFINE_SPINLOCK(hcd_urb_list_lock);
107
108 /* used to protect against unlinking URBs after the device is gone */
109 static DEFINE_SPINLOCK(hcd_urb_unlink_lock);
110
111 /* wait queue for synchronous unlinks */
112 DECLARE_WAIT_QUEUE_HEAD(usb_kill_urb_queue);
113
114 static inline int is_root_hub(struct usb_device *udev)
115 {
116         return (udev->parent == NULL);
117 }
118
119 /*-------------------------------------------------------------------------*/
120
121 /*
122  * Sharable chunks of root hub code.
123  */
124
125 /*-------------------------------------------------------------------------*/
126
127 #define KERNEL_REL      ((LINUX_VERSION_CODE >> 16) & 0x0ff)
128 #define KERNEL_VER      ((LINUX_VERSION_CODE >> 8) & 0x0ff)
129
130 /* usb 3.0 root hub device descriptor */
131 static const u8 usb3_rh_dev_descriptor[18] = {
132         0x12,       /*  __u8  bLength; */
133         0x01,       /*  __u8  bDescriptorType; Device */
134         0x00, 0x03, /*  __le16 bcdUSB; v3.0 */
135
136         0x09,       /*  __u8  bDeviceClass; HUB_CLASSCODE */
137         0x00,       /*  __u8  bDeviceSubClass; */
138         0x03,       /*  __u8  bDeviceProtocol; USB 3.0 hub */
139         0x09,       /*  __u8  bMaxPacketSize0; 2^9 = 512 Bytes */
140
141         0x6b, 0x1d, /*  __le16 idVendor; Linux Foundation */
142         0x03, 0x00, /*  __le16 idProduct; device 0x0003 */
143         KERNEL_VER, KERNEL_REL, /*  __le16 bcdDevice */
144
145         0x03,       /*  __u8  iManufacturer; */
146         0x02,       /*  __u8  iProduct; */
147         0x01,       /*  __u8  iSerialNumber; */
148         0x01        /*  __u8  bNumConfigurations; */
149 };
150
151 /* usb 2.0 root hub device descriptor */
152 static const u8 usb2_rh_dev_descriptor [18] = {
153         0x12,       /*  __u8  bLength; */
154         0x01,       /*  __u8  bDescriptorType; Device */
155         0x00, 0x02, /*  __le16 bcdUSB; v2.0 */
156
157         0x09,       /*  __u8  bDeviceClass; HUB_CLASSCODE */
158         0x00,       /*  __u8  bDeviceSubClass; */
159         0x00,       /*  __u8  bDeviceProtocol; [ usb 2.0 no TT ] */
160         0x40,       /*  __u8  bMaxPacketSize0; 64 Bytes */
161
162         0x6b, 0x1d, /*  __le16 idVendor; Linux Foundation */
163         0x02, 0x00, /*  __le16 idProduct; device 0x0002 */
164         KERNEL_VER, KERNEL_REL, /*  __le16 bcdDevice */
165
166         0x03,       /*  __u8  iManufacturer; */
167         0x02,       /*  __u8  iProduct; */
168         0x01,       /*  __u8  iSerialNumber; */
169         0x01        /*  __u8  bNumConfigurations; */
170 };
171
172 /* no usb 2.0 root hub "device qualifier" descriptor: one speed only */
173
174 /* usb 1.1 root hub device descriptor */
175 static const u8 usb11_rh_dev_descriptor [18] = {
176         0x12,       /*  __u8  bLength; */
177         0x01,       /*  __u8  bDescriptorType; Device */
178         0x10, 0x01, /*  __le16 bcdUSB; v1.1 */
179
180         0x09,       /*  __u8  bDeviceClass; HUB_CLASSCODE */
181         0x00,       /*  __u8  bDeviceSubClass; */
182         0x00,       /*  __u8  bDeviceProtocol; [ low/full speeds only ] */
183         0x40,       /*  __u8  bMaxPacketSize0; 64 Bytes */
184
185         0x6b, 0x1d, /*  __le16 idVendor; Linux Foundation */
186         0x01, 0x00, /*  __le16 idProduct; device 0x0001 */
187         KERNEL_VER, KERNEL_REL, /*  __le16 bcdDevice */
188
189         0x03,       /*  __u8  iManufacturer; */
190         0x02,       /*  __u8  iProduct; */
191         0x01,       /*  __u8  iSerialNumber; */
192         0x01        /*  __u8  bNumConfigurations; */
193 };
194
195
196 /*-------------------------------------------------------------------------*/
197
198 /* Configuration descriptors for our root hubs */
199
200 static const u8 fs_rh_config_descriptor [] = {
201
202         /* one configuration */
203         0x09,       /*  __u8  bLength; */
204         0x02,       /*  __u8  bDescriptorType; Configuration */
205         0x19, 0x00, /*  __le16 wTotalLength; */
206         0x01,       /*  __u8  bNumInterfaces; (1) */
207         0x01,       /*  __u8  bConfigurationValue; */
208         0x00,       /*  __u8  iConfiguration; */
209         0xc0,       /*  __u8  bmAttributes; 
210                                  Bit 7: must be set,
211                                      6: Self-powered,
212                                      5: Remote wakeup,
213                                      4..0: resvd */
214         0x00,       /*  __u8  MaxPower; */
215       
216         /* USB 1.1:
217          * USB 2.0, single TT organization (mandatory):
218          *      one interface, protocol 0
219          *
220          * USB 2.0, multiple TT organization (optional):
221          *      two interfaces, protocols 1 (like single TT)
222          *      and 2 (multiple TT mode) ... config is
223          *      sometimes settable
224          *      NOT IMPLEMENTED
225          */
226
227         /* one interface */
228         0x09,       /*  __u8  if_bLength; */
229         0x04,       /*  __u8  if_bDescriptorType; Interface */
230         0x00,       /*  __u8  if_bInterfaceNumber; */
231         0x00,       /*  __u8  if_bAlternateSetting; */
232         0x01,       /*  __u8  if_bNumEndpoints; */
233         0x09,       /*  __u8  if_bInterfaceClass; HUB_CLASSCODE */
234         0x00,       /*  __u8  if_bInterfaceSubClass; */
235         0x00,       /*  __u8  if_bInterfaceProtocol; [usb1.1 or single tt] */
236         0x00,       /*  __u8  if_iInterface; */
237      
238         /* one endpoint (status change endpoint) */
239         0x07,       /*  __u8  ep_bLength; */
240         0x05,       /*  __u8  ep_bDescriptorType; Endpoint */
241         0x81,       /*  __u8  ep_bEndpointAddress; IN Endpoint 1 */
242         0x03,       /*  __u8  ep_bmAttributes; Interrupt */
243         0x02, 0x00, /*  __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */
244         0xff        /*  __u8  ep_bInterval; (255ms -- usb 2.0 spec) */
245 };
246
247 static const u8 hs_rh_config_descriptor [] = {
248
249         /* one configuration */
250         0x09,       /*  __u8  bLength; */
251         0x02,       /*  __u8  bDescriptorType; Configuration */
252         0x19, 0x00, /*  __le16 wTotalLength; */
253         0x01,       /*  __u8  bNumInterfaces; (1) */
254         0x01,       /*  __u8  bConfigurationValue; */
255         0x00,       /*  __u8  iConfiguration; */
256         0xc0,       /*  __u8  bmAttributes; 
257                                  Bit 7: must be set,
258                                      6: Self-powered,
259                                      5: Remote wakeup,
260                                      4..0: resvd */
261         0x00,       /*  __u8  MaxPower; */
262       
263         /* USB 1.1:
264          * USB 2.0, single TT organization (mandatory):
265          *      one interface, protocol 0
266          *
267          * USB 2.0, multiple TT organization (optional):
268          *      two interfaces, protocols 1 (like single TT)
269          *      and 2 (multiple TT mode) ... config is
270          *      sometimes settable
271          *      NOT IMPLEMENTED
272          */
273
274         /* one interface */
275         0x09,       /*  __u8  if_bLength; */
276         0x04,       /*  __u8  if_bDescriptorType; Interface */
277         0x00,       /*  __u8  if_bInterfaceNumber; */
278         0x00,       /*  __u8  if_bAlternateSetting; */
279         0x01,       /*  __u8  if_bNumEndpoints; */
280         0x09,       /*  __u8  if_bInterfaceClass; HUB_CLASSCODE */
281         0x00,       /*  __u8  if_bInterfaceSubClass; */
282         0x00,       /*  __u8  if_bInterfaceProtocol; [usb1.1 or single tt] */
283         0x00,       /*  __u8  if_iInterface; */
284      
285         /* one endpoint (status change endpoint) */
286         0x07,       /*  __u8  ep_bLength; */
287         0x05,       /*  __u8  ep_bDescriptorType; Endpoint */
288         0x81,       /*  __u8  ep_bEndpointAddress; IN Endpoint 1 */
289         0x03,       /*  __u8  ep_bmAttributes; Interrupt */
290                     /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8)
291                      * see hub.c:hub_configure() for details. */
292         (USB_MAXCHILDREN + 1 + 7) / 8, 0x00,
293         0x0c        /*  __u8  ep_bInterval; (256ms -- usb 2.0 spec) */
294 };
295
296 static const u8 ss_rh_config_descriptor[] = {
297         /* one configuration */
298         0x09,       /*  __u8  bLength; */
299         0x02,       /*  __u8  bDescriptorType; Configuration */
300         0x19, 0x00, /*  __le16 wTotalLength; FIXME */
301         0x01,       /*  __u8  bNumInterfaces; (1) */
302         0x01,       /*  __u8  bConfigurationValue; */
303         0x00,       /*  __u8  iConfiguration; */
304         0xc0,       /*  __u8  bmAttributes;
305                                  Bit 7: must be set,
306                                      6: Self-powered,
307                                      5: Remote wakeup,
308                                      4..0: resvd */
309         0x00,       /*  __u8  MaxPower; */
310
311         /* one interface */
312         0x09,       /*  __u8  if_bLength; */
313         0x04,       /*  __u8  if_bDescriptorType; Interface */
314         0x00,       /*  __u8  if_bInterfaceNumber; */
315         0x00,       /*  __u8  if_bAlternateSetting; */
316         0x01,       /*  __u8  if_bNumEndpoints; */
317         0x09,       /*  __u8  if_bInterfaceClass; HUB_CLASSCODE */
318         0x00,       /*  __u8  if_bInterfaceSubClass; */
319         0x00,       /*  __u8  if_bInterfaceProtocol; */
320         0x00,       /*  __u8  if_iInterface; */
321
322         /* one endpoint (status change endpoint) */
323         0x07,       /*  __u8  ep_bLength; */
324         0x05,       /*  __u8  ep_bDescriptorType; Endpoint */
325         0x81,       /*  __u8  ep_bEndpointAddress; IN Endpoint 1 */
326         0x03,       /*  __u8  ep_bmAttributes; Interrupt */
327                     /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8)
328                      * see hub.c:hub_configure() for details. */
329         (USB_MAXCHILDREN + 1 + 7) / 8, 0x00,
330         0x0c        /*  __u8  ep_bInterval; (256ms -- usb 2.0 spec) */
331         /*
332          * All 3.0 hubs should have an endpoint companion descriptor,
333          * but we're ignoring that for now.  FIXME?
334          */
335 };
336
337 /*-------------------------------------------------------------------------*/
338
339 /**
340  * ascii2desc() - Helper routine for producing UTF-16LE string descriptors
341  * @s: Null-terminated ASCII (actually ISO-8859-1) string
342  * @buf: Buffer for USB string descriptor (header + UTF-16LE)
343  * @len: Length (in bytes; may be odd) of descriptor buffer.
344  *
345  * The return value is the number of bytes filled in: 2 + 2*strlen(s) or
346  * buflen, whichever is less.
347  *
348  * USB String descriptors can contain at most 126 characters; input
349  * strings longer than that are truncated.
350  */
351 static unsigned
352 ascii2desc(char const *s, u8 *buf, unsigned len)
353 {
354         unsigned n, t = 2 + 2*strlen(s);
355
356         if (t > 254)
357                 t = 254;        /* Longest possible UTF string descriptor */
358         if (len > t)
359                 len = t;
360
361         t += USB_DT_STRING << 8;        /* Now t is first 16 bits to store */
362
363         n = len;
364         while (n--) {
365                 *buf++ = t;
366                 if (!n--)
367                         break;
368                 *buf++ = t >> 8;
369                 t = (unsigned char)*s++;
370         }
371         return len;
372 }
373
374 /**
375  * rh_string() - provides string descriptors for root hub
376  * @id: the string ID number (0: langids, 1: serial #, 2: product, 3: vendor)
377  * @hcd: the host controller for this root hub
378  * @data: buffer for output packet
379  * @len: length of the provided buffer
380  *
381  * Produces either a manufacturer, product or serial number string for the
382  * virtual root hub device.
383  * Returns the number of bytes filled in: the length of the descriptor or
384  * of the provided buffer, whichever is less.
385  */
386 static unsigned
387 rh_string(int id, struct usb_hcd const *hcd, u8 *data, unsigned len)
388 {
389         char buf[100];
390         char const *s;
391         static char const langids[4] = {4, USB_DT_STRING, 0x09, 0x04};
392
393         // language ids
394         switch (id) {
395         case 0:
396                 /* Array of LANGID codes (0x0409 is MSFT-speak for "en-us") */
397                 /* See http://www.usb.org/developers/docs/USB_LANGIDs.pdf */
398                 if (len > 4)
399                         len = 4;
400                 memcpy(data, langids, len);
401                 return len;
402         case 1:
403                 /* Serial number */
404                 s = hcd->self.bus_name;
405                 break;
406         case 2:
407                 /* Product name */
408                 s = hcd->product_desc;
409                 break;
410         case 3:
411                 /* Manufacturer */
412                 snprintf (buf, sizeof buf, "%s %s %s", init_utsname()->sysname,
413                         init_utsname()->release, hcd->driver->description);
414                 s = buf;
415                 break;
416         default:
417                 /* Can't happen; caller guarantees it */
418                 return 0;
419         }
420
421         return ascii2desc(s, data, len);
422 }
423
424
425 /* Root hub control transfers execute synchronously */
426 static int rh_call_control (struct usb_hcd *hcd, struct urb *urb)
427 {
428         struct usb_ctrlrequest *cmd;
429         u16             typeReq, wValue, wIndex, wLength;
430         u8              *ubuf = urb->transfer_buffer;
431         u8              tbuf [sizeof (struct usb_hub_descriptor)]
432                 __attribute__((aligned(4)));
433         const u8        *bufp = tbuf;
434         unsigned        len = 0;
435         int             status;
436         u8              patch_wakeup = 0;
437         u8              patch_protocol = 0;
438
439         might_sleep();
440
441         spin_lock_irq(&hcd_root_hub_lock);
442         status = usb_hcd_link_urb_to_ep(hcd, urb);
443         spin_unlock_irq(&hcd_root_hub_lock);
444         if (status)
445                 return status;
446         urb->hcpriv = hcd;      /* Indicate it's queued */
447
448         cmd = (struct usb_ctrlrequest *) urb->setup_packet;
449         typeReq  = (cmd->bRequestType << 8) | cmd->bRequest;
450         wValue   = le16_to_cpu (cmd->wValue);
451         wIndex   = le16_to_cpu (cmd->wIndex);
452         wLength  = le16_to_cpu (cmd->wLength);
453
454         if (wLength > urb->transfer_buffer_length)
455                 goto error;
456
457         urb->actual_length = 0;
458         switch (typeReq) {
459
460         /* DEVICE REQUESTS */
461
462         /* The root hub's remote wakeup enable bit is implemented using
463          * driver model wakeup flags.  If this system supports wakeup
464          * through USB, userspace may change the default "allow wakeup"
465          * policy through sysfs or these calls.
466          *
467          * Most root hubs support wakeup from downstream devices, for
468          * runtime power management (disabling USB clocks and reducing
469          * VBUS power usage).  However, not all of them do so; silicon,
470          * board, and BIOS bugs here are not uncommon, so these can't
471          * be treated quite like external hubs.
472          *
473          * Likewise, not all root hubs will pass wakeup events upstream,
474          * to wake up the whole system.  So don't assume root hub and
475          * controller capabilities are identical.
476          */
477
478         case DeviceRequest | USB_REQ_GET_STATUS:
479                 tbuf [0] = (device_may_wakeup(&hcd->self.root_hub->dev)
480                                         << USB_DEVICE_REMOTE_WAKEUP)
481                                 | (1 << USB_DEVICE_SELF_POWERED);
482                 tbuf [1] = 0;
483                 len = 2;
484                 break;
485         case DeviceOutRequest | USB_REQ_CLEAR_FEATURE:
486                 if (wValue == USB_DEVICE_REMOTE_WAKEUP)
487                         device_set_wakeup_enable(&hcd->self.root_hub->dev, 0);
488                 else
489                         goto error;
490                 break;
491         case DeviceOutRequest | USB_REQ_SET_FEATURE:
492                 if (device_can_wakeup(&hcd->self.root_hub->dev)
493                                 && wValue == USB_DEVICE_REMOTE_WAKEUP)
494                         device_set_wakeup_enable(&hcd->self.root_hub->dev, 1);
495                 else
496                         goto error;
497                 break;
498         case DeviceRequest | USB_REQ_GET_CONFIGURATION:
499                 tbuf [0] = 1;
500                 len = 1;
501                         /* FALLTHROUGH */
502         case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
503                 break;
504         case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
505                 switch (wValue & 0xff00) {
506                 case USB_DT_DEVICE << 8:
507                         switch (hcd->driver->flags & HCD_MASK) {
508                         case HCD_USB3:
509                                 bufp = usb3_rh_dev_descriptor;
510                                 break;
511                         case HCD_USB2:
512                                 bufp = usb2_rh_dev_descriptor;
513                                 break;
514                         case HCD_USB11:
515                                 bufp = usb11_rh_dev_descriptor;
516                                 break;
517                         default:
518                                 goto error;
519                         }
520                         len = 18;
521                         if (hcd->has_tt)
522                                 patch_protocol = 1;
523                         break;
524                 case USB_DT_CONFIG << 8:
525                         switch (hcd->driver->flags & HCD_MASK) {
526                         case HCD_USB3:
527                                 bufp = ss_rh_config_descriptor;
528                                 len = sizeof ss_rh_config_descriptor;
529                                 break;
530                         case HCD_USB2:
531                                 bufp = hs_rh_config_descriptor;
532                                 len = sizeof hs_rh_config_descriptor;
533                                 break;
534                         case HCD_USB11:
535                                 bufp = fs_rh_config_descriptor;
536                                 len = sizeof fs_rh_config_descriptor;
537                                 break;
538                         default:
539                                 goto error;
540                         }
541                         if (device_can_wakeup(&hcd->self.root_hub->dev))
542                                 patch_wakeup = 1;
543                         break;
544                 case USB_DT_STRING << 8:
545                         if ((wValue & 0xff) < 4)
546                                 urb->actual_length = rh_string(wValue & 0xff,
547                                                 hcd, ubuf, wLength);
548                         else /* unsupported IDs --> "protocol stall" */
549                                 goto error;
550                         break;
551                 default:
552                         goto error;
553                 }
554                 break;
555         case DeviceRequest | USB_REQ_GET_INTERFACE:
556                 tbuf [0] = 0;
557                 len = 1;
558                         /* FALLTHROUGH */
559         case DeviceOutRequest | USB_REQ_SET_INTERFACE:
560                 break;
561         case DeviceOutRequest | USB_REQ_SET_ADDRESS:
562                 // wValue == urb->dev->devaddr
563                 dev_dbg (hcd->self.controller, "root hub device address %d\n",
564                         wValue);
565                 break;
566
567         /* INTERFACE REQUESTS (no defined feature/status flags) */
568
569         /* ENDPOINT REQUESTS */
570
571         case EndpointRequest | USB_REQ_GET_STATUS:
572                 // ENDPOINT_HALT flag
573                 tbuf [0] = 0;
574                 tbuf [1] = 0;
575                 len = 2;
576                         /* FALLTHROUGH */
577         case EndpointOutRequest | USB_REQ_CLEAR_FEATURE:
578         case EndpointOutRequest | USB_REQ_SET_FEATURE:
579                 dev_dbg (hcd->self.controller, "no endpoint features yet\n");
580                 break;
581
582         /* CLASS REQUESTS (and errors) */
583
584         default:
585                 /* non-generic request */
586                 switch (typeReq) {
587                 case GetHubStatus:
588                 case GetPortStatus:
589                         len = 4;
590                         break;
591                 case GetHubDescriptor:
592                         len = sizeof (struct usb_hub_descriptor);
593                         break;
594                 }
595                 status = hcd->driver->hub_control (hcd,
596                         typeReq, wValue, wIndex,
597                         tbuf, wLength);
598                 break;
599 error:
600                 /* "protocol stall" on error */
601                 status = -EPIPE;
602         }
603
604         if (status) {
605                 len = 0;
606                 if (status != -EPIPE) {
607                         dev_dbg (hcd->self.controller,
608                                 "CTRL: TypeReq=0x%x val=0x%x "
609                                 "idx=0x%x len=%d ==> %d\n",
610                                 typeReq, wValue, wIndex,
611                                 wLength, status);
612                 }
613         }
614         if (len) {
615                 if (urb->transfer_buffer_length < len)
616                         len = urb->transfer_buffer_length;
617                 urb->actual_length = len;
618                 // always USB_DIR_IN, toward host
619                 memcpy (ubuf, bufp, len);
620
621                 /* report whether RH hardware supports remote wakeup */
622                 if (patch_wakeup &&
623                                 len > offsetof (struct usb_config_descriptor,
624                                                 bmAttributes))
625                         ((struct usb_config_descriptor *)ubuf)->bmAttributes
626                                 |= USB_CONFIG_ATT_WAKEUP;
627
628                 /* report whether RH hardware has an integrated TT */
629                 if (patch_protocol &&
630                                 len > offsetof(struct usb_device_descriptor,
631                                                 bDeviceProtocol))
632                         ((struct usb_device_descriptor *) ubuf)->
633                                         bDeviceProtocol = 1;
634         }
635
636         /* any errors get returned through the urb completion */
637         spin_lock_irq(&hcd_root_hub_lock);
638         usb_hcd_unlink_urb_from_ep(hcd, urb);
639
640         /* This peculiar use of spinlocks echoes what real HC drivers do.
641          * Avoiding calls to local_irq_disable/enable makes the code
642          * RT-friendly.
643          */
644         spin_unlock(&hcd_root_hub_lock);
645         usb_hcd_giveback_urb(hcd, urb, status);
646         spin_lock(&hcd_root_hub_lock);
647
648         spin_unlock_irq(&hcd_root_hub_lock);
649         return 0;
650 }
651
652 /*-------------------------------------------------------------------------*/
653
654 /*
655  * Root Hub interrupt transfers are polled using a timer if the
656  * driver requests it; otherwise the driver is responsible for
657  * calling usb_hcd_poll_rh_status() when an event occurs.
658  *
659  * Completions are called in_interrupt(), but they may or may not
660  * be in_irq().
661  */
662 void usb_hcd_poll_rh_status(struct usb_hcd *hcd)
663 {
664         struct urb      *urb;
665         int             length;
666         unsigned long   flags;
667         char            buffer[6];      /* Any root hubs with > 31 ports? */
668
669         if (unlikely(!hcd->rh_pollable))
670                 return;
671         if (!hcd->uses_new_polling && !hcd->status_urb)
672                 return;
673
674         length = hcd->driver->hub_status_data(hcd, buffer);
675         if (length > 0) {
676
677                 /* try to complete the status urb */
678                 spin_lock_irqsave(&hcd_root_hub_lock, flags);
679                 urb = hcd->status_urb;
680                 if (urb) {
681                         clear_bit(HCD_FLAG_POLL_PENDING, &hcd->flags);
682                         hcd->status_urb = NULL;
683                         urb->actual_length = length;
684                         memcpy(urb->transfer_buffer, buffer, length);
685
686                         usb_hcd_unlink_urb_from_ep(hcd, urb);
687                         spin_unlock(&hcd_root_hub_lock);
688                         usb_hcd_giveback_urb(hcd, urb, 0);
689                         spin_lock(&hcd_root_hub_lock);
690                 } else {
691                         length = 0;
692                         set_bit(HCD_FLAG_POLL_PENDING, &hcd->flags);
693                 }
694                 spin_unlock_irqrestore(&hcd_root_hub_lock, flags);
695         }
696
697         /* The USB 2.0 spec says 256 ms.  This is close enough and won't
698          * exceed that limit if HZ is 100. The math is more clunky than
699          * maybe expected, this is to make sure that all timers for USB devices
700          * fire at the same time to give the CPU a break inbetween */
701         if (hcd->uses_new_polling ? HCD_POLL_RH(hcd) :
702                         (length == 0 && hcd->status_urb != NULL))
703                 mod_timer (&hcd->rh_timer, (jiffies/(HZ/4) + 1) * (HZ/4));
704 }
705 EXPORT_SYMBOL_GPL(usb_hcd_poll_rh_status);
706
707 /* timer callback */
708 static void rh_timer_func (unsigned long _hcd)
709 {
710         usb_hcd_poll_rh_status((struct usb_hcd *) _hcd);
711 }
712
713 /*-------------------------------------------------------------------------*/
714
715 static int rh_queue_status (struct usb_hcd *hcd, struct urb *urb)
716 {
717         int             retval;
718         unsigned long   flags;
719         unsigned        len = 1 + (urb->dev->maxchild / 8);
720
721         spin_lock_irqsave (&hcd_root_hub_lock, flags);
722         if (hcd->status_urb || urb->transfer_buffer_length < len) {
723                 dev_dbg (hcd->self.controller, "not queuing rh status urb\n");
724                 retval = -EINVAL;
725                 goto done;
726         }
727
728         retval = usb_hcd_link_urb_to_ep(hcd, urb);
729         if (retval)
730                 goto done;
731
732         hcd->status_urb = urb;
733         urb->hcpriv = hcd;      /* indicate it's queued */
734         if (!hcd->uses_new_polling)
735                 mod_timer(&hcd->rh_timer, (jiffies/(HZ/4) + 1) * (HZ/4));
736
737         /* If a status change has already occurred, report it ASAP */
738         else if (HCD_POLL_PENDING(hcd))
739                 mod_timer(&hcd->rh_timer, jiffies);
740         retval = 0;
741  done:
742         spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
743         return retval;
744 }
745
746 static int rh_urb_enqueue (struct usb_hcd *hcd, struct urb *urb)
747 {
748         if (usb_endpoint_xfer_int(&urb->ep->desc))
749                 return rh_queue_status (hcd, urb);
750         if (usb_endpoint_xfer_control(&urb->ep->desc))
751                 return rh_call_control (hcd, urb);
752         return -EINVAL;
753 }
754
755 /*-------------------------------------------------------------------------*/
756
757 /* Unlinks of root-hub control URBs are legal, but they don't do anything
758  * since these URBs always execute synchronously.
759  */
760 static int usb_rh_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
761 {
762         unsigned long   flags;
763         int             rc;
764
765         spin_lock_irqsave(&hcd_root_hub_lock, flags);
766         rc = usb_hcd_check_unlink_urb(hcd, urb, status);
767         if (rc)
768                 goto done;
769
770         if (usb_endpoint_num(&urb->ep->desc) == 0) {    /* Control URB */
771                 ;       /* Do nothing */
772
773         } else {                                /* Status URB */
774                 if (!hcd->uses_new_polling)
775                         del_timer (&hcd->rh_timer);
776                 if (urb == hcd->status_urb) {
777                         hcd->status_urb = NULL;
778                         usb_hcd_unlink_urb_from_ep(hcd, urb);
779
780                         spin_unlock(&hcd_root_hub_lock);
781                         usb_hcd_giveback_urb(hcd, urb, status);
782                         spin_lock(&hcd_root_hub_lock);
783                 }
784         }
785  done:
786         spin_unlock_irqrestore(&hcd_root_hub_lock, flags);
787         return rc;
788 }
789
790
791
792 /*
793  * Show & store the current value of authorized_default
794  */
795 static ssize_t usb_host_authorized_default_show(struct device *dev,
796                                                 struct device_attribute *attr,
797                                                 char *buf)
798 {
799         struct usb_device *rh_usb_dev = to_usb_device(dev);
800         struct usb_bus *usb_bus = rh_usb_dev->bus;
801         struct usb_hcd *usb_hcd;
802
803         if (usb_bus == NULL)    /* FIXME: not sure if this case is possible */
804                 return -ENODEV;
805         usb_hcd = bus_to_hcd(usb_bus);
806         return snprintf(buf, PAGE_SIZE, "%u\n", usb_hcd->authorized_default);
807 }
808
809 static ssize_t usb_host_authorized_default_store(struct device *dev,
810                                                  struct device_attribute *attr,
811                                                  const char *buf, size_t size)
812 {
813         ssize_t result;
814         unsigned val;
815         struct usb_device *rh_usb_dev = to_usb_device(dev);
816         struct usb_bus *usb_bus = rh_usb_dev->bus;
817         struct usb_hcd *usb_hcd;
818
819         if (usb_bus == NULL)    /* FIXME: not sure if this case is possible */
820                 return -ENODEV;
821         usb_hcd = bus_to_hcd(usb_bus);
822         result = sscanf(buf, "%u\n", &val);
823         if (result == 1) {
824                 usb_hcd->authorized_default = val? 1 : 0;
825                 result = size;
826         }
827         else
828                 result = -EINVAL;
829         return result;
830 }
831
832 static DEVICE_ATTR(authorized_default, 0644,
833             usb_host_authorized_default_show,
834             usb_host_authorized_default_store);
835
836
837 /* Group all the USB bus attributes */
838 static struct attribute *usb_bus_attrs[] = {
839                 &dev_attr_authorized_default.attr,
840                 NULL,
841 };
842
843 static struct attribute_group usb_bus_attr_group = {
844         .name = NULL,   /* we want them in the same directory */
845         .attrs = usb_bus_attrs,
846 };
847
848
849
850 /*-------------------------------------------------------------------------*/
851
852 /**
853  * usb_bus_init - shared initialization code
854  * @bus: the bus structure being initialized
855  *
856  * This code is used to initialize a usb_bus structure, memory for which is
857  * separately managed.
858  */
859 static void usb_bus_init (struct usb_bus *bus)
860 {
861         memset (&bus->devmap, 0, sizeof(struct usb_devmap));
862
863         bus->devnum_next = 1;
864
865         bus->root_hub = NULL;
866         bus->busnum = -1;
867         bus->bandwidth_allocated = 0;
868         bus->bandwidth_int_reqs  = 0;
869         bus->bandwidth_isoc_reqs = 0;
870
871         INIT_LIST_HEAD (&bus->bus_list);
872 }
873
874 /*-------------------------------------------------------------------------*/
875
876 /**
877  * usb_register_bus - registers the USB host controller with the usb core
878  * @bus: pointer to the bus to register
879  * Context: !in_interrupt()
880  *
881  * Assigns a bus number, and links the controller into usbcore data
882  * structures so that it can be seen by scanning the bus list.
883  */
884 static int usb_register_bus(struct usb_bus *bus)
885 {
886         int result = -E2BIG;
887         int busnum;
888
889         mutex_lock(&usb_bus_list_lock);
890         busnum = find_next_zero_bit (busmap.busmap, USB_MAXBUS, 1);
891         if (busnum >= USB_MAXBUS) {
892                 printk (KERN_ERR "%s: too many buses\n", usbcore_name);
893                 goto error_find_busnum;
894         }
895         set_bit (busnum, busmap.busmap);
896         bus->busnum = busnum;
897
898         /* Add it to the local list of buses */
899         list_add (&bus->bus_list, &usb_bus_list);
900         mutex_unlock(&usb_bus_list_lock);
901
902         usb_notify_add_bus(bus);
903
904         dev_info (bus->controller, "new USB bus registered, assigned bus "
905                   "number %d\n", bus->busnum);
906         return 0;
907
908 error_find_busnum:
909         mutex_unlock(&usb_bus_list_lock);
910         return result;
911 }
912
913 /**
914  * usb_deregister_bus - deregisters the USB host controller
915  * @bus: pointer to the bus to deregister
916  * Context: !in_interrupt()
917  *
918  * Recycles the bus number, and unlinks the controller from usbcore data
919  * structures so that it won't be seen by scanning the bus list.
920  */
921 static void usb_deregister_bus (struct usb_bus *bus)
922 {
923         dev_info (bus->controller, "USB bus %d deregistered\n", bus->busnum);
924
925         /*
926          * NOTE: make sure that all the devices are removed by the
927          * controller code, as well as having it call this when cleaning
928          * itself up
929          */
930         mutex_lock(&usb_bus_list_lock);
931         list_del (&bus->bus_list);
932         mutex_unlock(&usb_bus_list_lock);
933
934         usb_notify_remove_bus(bus);
935
936         clear_bit (bus->busnum, busmap.busmap);
937 }
938
939 /**
940  * register_root_hub - called by usb_add_hcd() to register a root hub
941  * @hcd: host controller for this root hub
942  *
943  * This function registers the root hub with the USB subsystem.  It sets up
944  * the device properly in the device tree and then calls usb_new_device()
945  * to register the usb device.  It also assigns the root hub's USB address
946  * (always 1).
947  */
948 static int register_root_hub(struct usb_hcd *hcd)
949 {
950         struct device *parent_dev = hcd->self.controller;
951         struct usb_device *usb_dev = hcd->self.root_hub;
952         const int devnum = 1;
953         int retval;
954
955         usb_dev->devnum = devnum;
956         usb_dev->bus->devnum_next = devnum + 1;
957         memset (&usb_dev->bus->devmap.devicemap, 0,
958                         sizeof usb_dev->bus->devmap.devicemap);
959         set_bit (devnum, usb_dev->bus->devmap.devicemap);
960         usb_set_device_state(usb_dev, USB_STATE_ADDRESS);
961
962         mutex_lock(&usb_bus_list_lock);
963
964         usb_dev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
965         retval = usb_get_device_descriptor(usb_dev, USB_DT_DEVICE_SIZE);
966         if (retval != sizeof usb_dev->descriptor) {
967                 mutex_unlock(&usb_bus_list_lock);
968                 dev_dbg (parent_dev, "can't read %s device descriptor %d\n",
969                                 dev_name(&usb_dev->dev), retval);
970                 return (retval < 0) ? retval : -EMSGSIZE;
971         }
972
973         retval = usb_new_device (usb_dev);
974         if (retval) {
975                 dev_err (parent_dev, "can't register root hub for %s, %d\n",
976                                 dev_name(&usb_dev->dev), retval);
977         }
978         mutex_unlock(&usb_bus_list_lock);
979
980         if (retval == 0) {
981                 spin_lock_irq (&hcd_root_hub_lock);
982                 hcd->rh_registered = 1;
983                 spin_unlock_irq (&hcd_root_hub_lock);
984
985                 /* Did the HC die before the root hub was registered? */
986                 if (HCD_DEAD(hcd) || hcd->state == HC_STATE_HALT)
987                         usb_hc_died (hcd);      /* This time clean up */
988         }
989
990         return retval;
991 }
992
993
994 /*-------------------------------------------------------------------------*/
995
996 /**
997  * usb_calc_bus_time - approximate periodic transaction time in nanoseconds
998  * @speed: from dev->speed; USB_SPEED_{LOW,FULL,HIGH}
999  * @is_input: true iff the transaction sends data to the host
1000  * @isoc: true for isochronous transactions, false for interrupt ones
1001  * @bytecount: how many bytes in the transaction.
1002  *
1003  * Returns approximate bus time in nanoseconds for a periodic transaction.
1004  * See USB 2.0 spec section 5.11.3; only periodic transfers need to be
1005  * scheduled in software, this function is only used for such scheduling.
1006  */
1007 long usb_calc_bus_time (int speed, int is_input, int isoc, int bytecount)
1008 {
1009         unsigned long   tmp;
1010
1011         switch (speed) {
1012         case USB_SPEED_LOW:     /* INTR only */
1013                 if (is_input) {
1014                         tmp = (67667L * (31L + 10L * BitTime (bytecount))) / 1000L;
1015                         return (64060L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
1016                 } else {
1017                         tmp = (66700L * (31L + 10L * BitTime (bytecount))) / 1000L;
1018                         return (64107L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
1019                 }
1020         case USB_SPEED_FULL:    /* ISOC or INTR */
1021                 if (isoc) {
1022                         tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
1023                         return (((is_input) ? 7268L : 6265L) + BW_HOST_DELAY + tmp);
1024                 } else {
1025                         tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
1026                         return (9107L + BW_HOST_DELAY + tmp);
1027                 }
1028         case USB_SPEED_HIGH:    /* ISOC or INTR */
1029                 // FIXME adjust for input vs output
1030                 if (isoc)
1031                         tmp = HS_NSECS_ISO (bytecount);
1032                 else
1033                         tmp = HS_NSECS (bytecount);
1034                 return tmp;
1035         default:
1036                 pr_debug ("%s: bogus device speed!\n", usbcore_name);
1037                 return -1;
1038         }
1039 }
1040 EXPORT_SYMBOL_GPL(usb_calc_bus_time);
1041
1042
1043 /*-------------------------------------------------------------------------*/
1044
1045 /*
1046  * Generic HC operations.
1047  */
1048
1049 /*-------------------------------------------------------------------------*/
1050
1051 /**
1052  * usb_hcd_link_urb_to_ep - add an URB to its endpoint queue
1053  * @hcd: host controller to which @urb was submitted
1054  * @urb: URB being submitted
1055  *
1056  * Host controller drivers should call this routine in their enqueue()
1057  * method.  The HCD's private spinlock must be held and interrupts must
1058  * be disabled.  The actions carried out here are required for URB
1059  * submission, as well as for endpoint shutdown and for usb_kill_urb.
1060  *
1061  * Returns 0 for no error, otherwise a negative error code (in which case
1062  * the enqueue() method must fail).  If no error occurs but enqueue() fails
1063  * anyway, it must call usb_hcd_unlink_urb_from_ep() before releasing
1064  * the private spinlock and returning.
1065  */
1066 int usb_hcd_link_urb_to_ep(struct usb_hcd *hcd, struct urb *urb)
1067 {
1068         int             rc = 0;
1069
1070         spin_lock(&hcd_urb_list_lock);
1071
1072         /* Check that the URB isn't being killed */
1073         if (unlikely(atomic_read(&urb->reject))) {
1074                 rc = -EPERM;
1075                 goto done;
1076         }
1077
1078         if (unlikely(!urb->ep->enabled)) {
1079                 rc = -ENOENT;
1080                 goto done;
1081         }
1082
1083         if (unlikely(!urb->dev->can_submit)) {
1084                 rc = -EHOSTUNREACH;
1085                 goto done;
1086         }
1087
1088         /*
1089          * Check the host controller's state and add the URB to the
1090          * endpoint's queue.
1091          */
1092         if (HCD_RH_RUNNING(hcd)) {
1093                 urb->unlinked = 0;
1094                 list_add_tail(&urb->urb_list, &urb->ep->urb_list);
1095         } else {
1096                 rc = -ESHUTDOWN;
1097                 goto done;
1098         }
1099  done:
1100         spin_unlock(&hcd_urb_list_lock);
1101         return rc;
1102 }
1103 EXPORT_SYMBOL_GPL(usb_hcd_link_urb_to_ep);
1104
1105 /**
1106  * usb_hcd_check_unlink_urb - check whether an URB may be unlinked
1107  * @hcd: host controller to which @urb was submitted
1108  * @urb: URB being checked for unlinkability
1109  * @status: error code to store in @urb if the unlink succeeds
1110  *
1111  * Host controller drivers should call this routine in their dequeue()
1112  * method.  The HCD's private spinlock must be held and interrupts must
1113  * be disabled.  The actions carried out here are required for making
1114  * sure than an unlink is valid.
1115  *
1116  * Returns 0 for no error, otherwise a negative error code (in which case
1117  * the dequeue() method must fail).  The possible error codes are:
1118  *
1119  *      -EIDRM: @urb was not submitted or has already completed.
1120  *              The completion function may not have been called yet.
1121  *
1122  *      -EBUSY: @urb has already been unlinked.
1123  */
1124 int usb_hcd_check_unlink_urb(struct usb_hcd *hcd, struct urb *urb,
1125                 int status)
1126 {
1127         struct list_head        *tmp;
1128
1129         /* insist the urb is still queued */
1130         list_for_each(tmp, &urb->ep->urb_list) {
1131                 if (tmp == &urb->urb_list)
1132                         break;
1133         }
1134         if (tmp != &urb->urb_list)
1135                 return -EIDRM;
1136
1137         /* Any status except -EINPROGRESS means something already started to
1138          * unlink this URB from the hardware.  So there's no more work to do.
1139          */
1140         if (urb->unlinked)
1141                 return -EBUSY;
1142         urb->unlinked = status;
1143
1144         /* IRQ setup can easily be broken so that USB controllers
1145          * never get completion IRQs ... maybe even the ones we need to
1146          * finish unlinking the initial failed usb_set_address()
1147          * or device descriptor fetch.
1148          */
1149         if (!HCD_SAW_IRQ(hcd) && !is_root_hub(urb->dev)) {
1150                 dev_warn(hcd->self.controller, "Unlink after no-IRQ?  "
1151                         "Controller is probably using the wrong IRQ.\n");
1152                 set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
1153         }
1154
1155         return 0;
1156 }
1157 EXPORT_SYMBOL_GPL(usb_hcd_check_unlink_urb);
1158
1159 /**
1160  * usb_hcd_unlink_urb_from_ep - remove an URB from its endpoint queue
1161  * @hcd: host controller to which @urb was submitted
1162  * @urb: URB being unlinked
1163  *
1164  * Host controller drivers should call this routine before calling
1165  * usb_hcd_giveback_urb().  The HCD's private spinlock must be held and
1166  * interrupts must be disabled.  The actions carried out here are required
1167  * for URB completion.
1168  */
1169 void usb_hcd_unlink_urb_from_ep(struct usb_hcd *hcd, struct urb *urb)
1170 {
1171         /* clear all state linking urb to this dev (and hcd) */
1172         spin_lock(&hcd_urb_list_lock);
1173         list_del_init(&urb->urb_list);
1174         spin_unlock(&hcd_urb_list_lock);
1175 }
1176 EXPORT_SYMBOL_GPL(usb_hcd_unlink_urb_from_ep);
1177
1178 /*
1179  * Some usb host controllers can only perform dma using a small SRAM area.
1180  * The usb core itself is however optimized for host controllers that can dma
1181  * using regular system memory - like pci devices doing bus mastering.
1182  *
1183  * To support host controllers with limited dma capabilites we provide dma
1184  * bounce buffers. This feature can be enabled using the HCD_LOCAL_MEM flag.
1185  * For this to work properly the host controller code must first use the
1186  * function dma_declare_coherent_memory() to point out which memory area
1187  * that should be used for dma allocations.
1188  *
1189  * The HCD_LOCAL_MEM flag then tells the usb code to allocate all data for
1190  * dma using dma_alloc_coherent() which in turn allocates from the memory
1191  * area pointed out with dma_declare_coherent_memory().
1192  *
1193  * So, to summarize...
1194  *
1195  * - We need "local" memory, canonical example being
1196  *   a small SRAM on a discrete controller being the
1197  *   only memory that the controller can read ...
1198  *   (a) "normal" kernel memory is no good, and
1199  *   (b) there's not enough to share
1200  *
1201  * - The only *portable* hook for such stuff in the
1202  *   DMA framework is dma_declare_coherent_memory()
1203  *
1204  * - So we use that, even though the primary requirement
1205  *   is that the memory be "local" (hence addressible
1206  *   by that device), not "coherent".
1207  *
1208  */
1209
1210 static int hcd_alloc_coherent(struct usb_bus *bus,
1211                               gfp_t mem_flags, dma_addr_t *dma_handle,
1212                               void **vaddr_handle, size_t size,
1213                               enum dma_data_direction dir)
1214 {
1215         unsigned char *vaddr;
1216
1217         if (*vaddr_handle == NULL) {
1218                 WARN_ON_ONCE(1);
1219                 return -EFAULT;
1220         }
1221
1222         vaddr = hcd_buffer_alloc(bus, size + sizeof(vaddr),
1223                                  mem_flags, dma_handle);
1224         if (!vaddr)
1225                 return -ENOMEM;
1226
1227         /*
1228          * Store the virtual address of the buffer at the end
1229          * of the allocated dma buffer. The size of the buffer
1230          * may be uneven so use unaligned functions instead
1231          * of just rounding up. It makes sense to optimize for
1232          * memory footprint over access speed since the amount
1233          * of memory available for dma may be limited.
1234          */
1235         put_unaligned((unsigned long)*vaddr_handle,
1236                       (unsigned long *)(vaddr + size));
1237
1238         if (dir == DMA_TO_DEVICE)
1239                 memcpy(vaddr, *vaddr_handle, size);
1240
1241         *vaddr_handle = vaddr;
1242         return 0;
1243 }
1244
1245 static void hcd_free_coherent(struct usb_bus *bus, dma_addr_t *dma_handle,
1246                               void **vaddr_handle, size_t size,
1247                               enum dma_data_direction dir)
1248 {
1249         unsigned char *vaddr = *vaddr_handle;
1250
1251         vaddr = (void *)get_unaligned((unsigned long *)(vaddr + size));
1252
1253         if (dir == DMA_FROM_DEVICE)
1254                 memcpy(vaddr, *vaddr_handle, size);
1255
1256         hcd_buffer_free(bus, size + sizeof(vaddr), *vaddr_handle, *dma_handle);
1257
1258         *vaddr_handle = vaddr;
1259         *dma_handle = 0;
1260 }
1261
1262 void unmap_urb_setup_for_dma(struct usb_hcd *hcd, struct urb *urb)
1263 {
1264         if (urb->transfer_flags & URB_SETUP_MAP_SINGLE)
1265                 dma_unmap_single(hcd->self.controller,
1266                                 urb->setup_dma,
1267                                 sizeof(struct usb_ctrlrequest),
1268                                 DMA_TO_DEVICE);
1269         else if (urb->transfer_flags & URB_SETUP_MAP_LOCAL)
1270                 hcd_free_coherent(urb->dev->bus,
1271                                 &urb->setup_dma,
1272                                 (void **) &urb->setup_packet,
1273                                 sizeof(struct usb_ctrlrequest),
1274                                 DMA_TO_DEVICE);
1275
1276         /* Make it safe to call this routine more than once */
1277         urb->transfer_flags &= ~(URB_SETUP_MAP_SINGLE | URB_SETUP_MAP_LOCAL);
1278 }
1279 EXPORT_SYMBOL_GPL(unmap_urb_setup_for_dma);
1280
1281 void unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb)
1282 {
1283         enum dma_data_direction dir;
1284
1285         unmap_urb_setup_for_dma(hcd, urb);
1286
1287         dir = usb_urb_dir_in(urb) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
1288         if (urb->transfer_flags & URB_DMA_MAP_SG)
1289                 dma_unmap_sg(hcd->self.controller,
1290                                 urb->sg,
1291                                 urb->num_sgs,
1292                                 dir);
1293         else if (urb->transfer_flags & URB_DMA_MAP_PAGE)
1294                 dma_unmap_page(hcd->self.controller,
1295                                 urb->transfer_dma,
1296                                 urb->transfer_buffer_length,
1297                                 dir);
1298         else if (urb->transfer_flags & URB_DMA_MAP_SINGLE)
1299                 dma_unmap_single(hcd->self.controller,
1300                                 urb->transfer_dma,
1301                                 urb->transfer_buffer_length,
1302                                 dir);
1303         else if (urb->transfer_flags & URB_MAP_LOCAL)
1304                 hcd_free_coherent(urb->dev->bus,
1305                                 &urb->transfer_dma,
1306                                 &urb->transfer_buffer,
1307                                 urb->transfer_buffer_length,
1308                                 dir);
1309
1310         /* Make it safe to call this routine more than once */
1311         urb->transfer_flags &= ~(URB_DMA_MAP_SG | URB_DMA_MAP_PAGE |
1312                         URB_DMA_MAP_SINGLE | URB_MAP_LOCAL);
1313 }
1314 EXPORT_SYMBOL_GPL(unmap_urb_for_dma);
1315
1316 static int map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
1317                            gfp_t mem_flags)
1318 {
1319         enum dma_data_direction dir;
1320         int ret = 0;
1321
1322         /* Map the URB's buffers for DMA access.
1323          * Lower level HCD code should use *_dma exclusively,
1324          * unless it uses pio or talks to another transport,
1325          * or uses the provided scatter gather list for bulk.
1326          */
1327
1328         if (usb_endpoint_xfer_control(&urb->ep->desc)) {
1329                 if (hcd->self.uses_pio_for_control)
1330                         return ret;
1331                 if (hcd->self.uses_dma) {
1332                         urb->setup_dma = dma_map_single(
1333                                         hcd->self.controller,
1334                                         urb->setup_packet,
1335                                         sizeof(struct usb_ctrlrequest),
1336                                         DMA_TO_DEVICE);
1337                         if (dma_mapping_error(hcd->self.controller,
1338                                                 urb->setup_dma))
1339                                 return -EAGAIN;
1340                         urb->transfer_flags |= URB_SETUP_MAP_SINGLE;
1341                 } else if (hcd->driver->flags & HCD_LOCAL_MEM) {
1342                         ret = hcd_alloc_coherent(
1343                                         urb->dev->bus, mem_flags,
1344                                         &urb->setup_dma,
1345                                         (void **)&urb->setup_packet,
1346                                         sizeof(struct usb_ctrlrequest),
1347                                         DMA_TO_DEVICE);
1348                         if (ret)
1349                                 return ret;
1350                         urb->transfer_flags |= URB_SETUP_MAP_LOCAL;
1351                 }
1352         }
1353
1354         dir = usb_urb_dir_in(urb) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
1355         if (urb->transfer_buffer_length != 0
1356             && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)) {
1357                 if (hcd->self.uses_dma) {
1358                         if (urb->num_sgs) {
1359                                 int n = dma_map_sg(
1360                                                 hcd->self.controller,
1361                                                 urb->sg,
1362                                                 urb->num_sgs,
1363                                                 dir);
1364                                 if (n <= 0)
1365                                         ret = -EAGAIN;
1366                                 else
1367                                         urb->transfer_flags |= URB_DMA_MAP_SG;
1368                                 if (n != urb->num_sgs) {
1369                                         urb->num_sgs = n;
1370                                         urb->transfer_flags |=
1371                                                         URB_DMA_SG_COMBINED;
1372                                 }
1373                         } else if (urb->sg) {
1374                                 struct scatterlist *sg = urb->sg;
1375                                 urb->transfer_dma = dma_map_page(
1376                                                 hcd->self.controller,
1377                                                 sg_page(sg),
1378                                                 sg->offset,
1379                                                 urb->transfer_buffer_length,
1380                                                 dir);
1381                                 if (dma_mapping_error(hcd->self.controller,
1382                                                 urb->transfer_dma))
1383                                         ret = -EAGAIN;
1384                                 else
1385                                         urb->transfer_flags |= URB_DMA_MAP_PAGE;
1386                         } else {
1387                                 urb->transfer_dma = dma_map_single(
1388                                                 hcd->self.controller,
1389                                                 urb->transfer_buffer,
1390                                                 urb->transfer_buffer_length,
1391                                                 dir);
1392                                 if (dma_mapping_error(hcd->self.controller,
1393                                                 urb->transfer_dma))
1394                                         ret = -EAGAIN;
1395                                 else
1396                                         urb->transfer_flags |= URB_DMA_MAP_SINGLE;
1397                         }
1398                 } else if (hcd->driver->flags & HCD_LOCAL_MEM) {
1399                         ret = hcd_alloc_coherent(
1400                                         urb->dev->bus, mem_flags,
1401                                         &urb->transfer_dma,
1402                                         &urb->transfer_buffer,
1403                                         urb->transfer_buffer_length,
1404                                         dir);
1405                         if (ret == 0)
1406                                 urb->transfer_flags |= URB_MAP_LOCAL;
1407                 }
1408                 if (ret && (urb->transfer_flags & (URB_SETUP_MAP_SINGLE |
1409                                 URB_SETUP_MAP_LOCAL)))
1410                         unmap_urb_for_dma(hcd, urb);
1411         }
1412         return ret;
1413 }
1414
1415 /*-------------------------------------------------------------------------*/
1416
1417 /* may be called in any context with a valid urb->dev usecount
1418  * caller surrenders "ownership" of urb
1419  * expects usb_submit_urb() to have sanity checked and conditioned all
1420  * inputs in the urb
1421  */
1422 int usb_hcd_submit_urb (struct urb *urb, gfp_t mem_flags)
1423 {
1424         int                     status;
1425         struct usb_hcd          *hcd = bus_to_hcd(urb->dev->bus);
1426
1427         /* increment urb's reference count as part of giving it to the HCD
1428          * (which will control it).  HCD guarantees that it either returns
1429          * an error or calls giveback(), but not both.
1430          */
1431         usb_get_urb(urb);
1432         atomic_inc(&urb->use_count);
1433         atomic_inc(&urb->dev->urbnum);
1434         usbmon_urb_submit(&hcd->self, urb);
1435
1436         /* NOTE requirements on root-hub callers (usbfs and the hub
1437          * driver, for now):  URBs' urb->transfer_buffer must be
1438          * valid and usb_buffer_{sync,unmap}() not be needed, since
1439          * they could clobber root hub response data.  Also, control
1440          * URBs must be submitted in process context with interrupts
1441          * enabled.
1442          */
1443
1444         if (is_root_hub(urb->dev)) {
1445                 status = rh_urb_enqueue(hcd, urb);
1446         } else {
1447                 status = map_urb_for_dma(hcd, urb, mem_flags);
1448                 if (likely(status == 0)) {
1449                         status = hcd->driver->urb_enqueue(hcd, urb, mem_flags);
1450                         if (unlikely(status))
1451                                 unmap_urb_for_dma(hcd, urb);
1452                 }
1453         }
1454
1455         if (unlikely(status)) {
1456                 usbmon_urb_submit_error(&hcd->self, urb, status);
1457                 urb->hcpriv = NULL;
1458                 INIT_LIST_HEAD(&urb->urb_list);
1459                 atomic_dec(&urb->use_count);
1460                 atomic_dec(&urb->dev->urbnum);
1461                 if (atomic_read(&urb->reject))
1462                         wake_up(&usb_kill_urb_queue);
1463                 usb_put_urb(urb);
1464         }
1465         return status;
1466 }
1467
1468 /*-------------------------------------------------------------------------*/
1469
1470 /* this makes the hcd giveback() the urb more quickly, by kicking it
1471  * off hardware queues (which may take a while) and returning it as
1472  * soon as practical.  we've already set up the urb's return status,
1473  * but we can't know if the callback completed already.
1474  */
1475 static int unlink1(struct usb_hcd *hcd, struct urb *urb, int status)
1476 {
1477         int             value;
1478
1479         if (is_root_hub(urb->dev))
1480                 value = usb_rh_urb_dequeue(hcd, urb, status);
1481         else {
1482
1483                 /* The only reason an HCD might fail this call is if
1484                  * it has not yet fully queued the urb to begin with.
1485                  * Such failures should be harmless. */
1486                 value = hcd->driver->urb_dequeue(hcd, urb, status);
1487         }
1488         return value;
1489 }
1490
1491 /*
1492  * called in any context
1493  *
1494  * caller guarantees urb won't be recycled till both unlink()
1495  * and the urb's completion function return
1496  */
1497 int usb_hcd_unlink_urb (struct urb *urb, int status)
1498 {
1499         struct usb_hcd          *hcd;
1500         int                     retval = -EIDRM;
1501         unsigned long           flags;
1502
1503         /* Prevent the device and bus from going away while
1504          * the unlink is carried out.  If they are already gone
1505          * then urb->use_count must be 0, since disconnected
1506          * devices can't have any active URBs.
1507          */
1508         spin_lock_irqsave(&hcd_urb_unlink_lock, flags);
1509         if (atomic_read(&urb->use_count) > 0) {
1510                 retval = 0;
1511                 usb_get_dev(urb->dev);
1512         }
1513         spin_unlock_irqrestore(&hcd_urb_unlink_lock, flags);
1514         if (retval == 0) {
1515                 hcd = bus_to_hcd(urb->dev->bus);
1516                 retval = unlink1(hcd, urb, status);
1517                 usb_put_dev(urb->dev);
1518         }
1519
1520         if (retval == 0)
1521                 retval = -EINPROGRESS;
1522         else if (retval != -EIDRM && retval != -EBUSY)
1523                 dev_dbg(&urb->dev->dev, "hcd_unlink_urb %p fail %d\n",
1524                                 urb, retval);
1525         return retval;
1526 }
1527
1528 /*-------------------------------------------------------------------------*/
1529
1530 /**
1531  * usb_hcd_giveback_urb - return URB from HCD to device driver
1532  * @hcd: host controller returning the URB
1533  * @urb: urb being returned to the USB device driver.
1534  * @status: completion status code for the URB.
1535  * Context: in_interrupt()
1536  *
1537  * This hands the URB from HCD to its USB device driver, using its
1538  * completion function.  The HCD has freed all per-urb resources
1539  * (and is done using urb->hcpriv).  It also released all HCD locks;
1540  * the device driver won't cause problems if it frees, modifies,
1541  * or resubmits this URB.
1542  *
1543  * If @urb was unlinked, the value of @status will be overridden by
1544  * @urb->unlinked.  Erroneous short transfers are detected in case
1545  * the HCD hasn't checked for them.
1546  */
1547 void usb_hcd_giveback_urb(struct usb_hcd *hcd, struct urb *urb, int status)
1548 {
1549         urb->hcpriv = NULL;
1550         if (unlikely(urb->unlinked))
1551                 status = urb->unlinked;
1552         else if (unlikely((urb->transfer_flags & URB_SHORT_NOT_OK) &&
1553                         urb->actual_length < urb->transfer_buffer_length &&
1554                         !status))
1555                 status = -EREMOTEIO;
1556
1557         unmap_urb_for_dma(hcd, urb);
1558         usbmon_urb_complete(&hcd->self, urb, status);
1559         usb_unanchor_urb(urb);
1560
1561         /* pass ownership to the completion handler */
1562         urb->status = status;
1563         urb->complete (urb);
1564         atomic_dec (&urb->use_count);
1565         if (unlikely(atomic_read(&urb->reject)))
1566                 wake_up (&usb_kill_urb_queue);
1567         usb_put_urb (urb);
1568 }
1569 EXPORT_SYMBOL_GPL(usb_hcd_giveback_urb);
1570
1571 /*-------------------------------------------------------------------------*/
1572
1573 /* Cancel all URBs pending on this endpoint and wait for the endpoint's
1574  * queue to drain completely.  The caller must first insure that no more
1575  * URBs can be submitted for this endpoint.
1576  */
1577 void usb_hcd_flush_endpoint(struct usb_device *udev,
1578                 struct usb_host_endpoint *ep)
1579 {
1580         struct usb_hcd          *hcd;
1581         struct urb              *urb;
1582
1583         if (!ep)
1584                 return;
1585         might_sleep();
1586         hcd = bus_to_hcd(udev->bus);
1587
1588         /* No more submits can occur */
1589         spin_lock_irq(&hcd_urb_list_lock);
1590 rescan:
1591         list_for_each_entry (urb, &ep->urb_list, urb_list) {
1592                 int     is_in;
1593
1594                 if (urb->unlinked)
1595                         continue;
1596                 usb_get_urb (urb);
1597                 is_in = usb_urb_dir_in(urb);
1598                 spin_unlock(&hcd_urb_list_lock);
1599
1600                 /* kick hcd */
1601                 unlink1(hcd, urb, -ESHUTDOWN);
1602                 dev_dbg (hcd->self.controller,
1603                         "shutdown urb %p ep%d%s%s\n",
1604                         urb, usb_endpoint_num(&ep->desc),
1605                         is_in ? "in" : "out",
1606                         ({      char *s;
1607
1608                                  switch (usb_endpoint_type(&ep->desc)) {
1609                                  case USB_ENDPOINT_XFER_CONTROL:
1610                                         s = ""; break;
1611                                  case USB_ENDPOINT_XFER_BULK:
1612                                         s = "-bulk"; break;
1613                                  case USB_ENDPOINT_XFER_INT:
1614                                         s = "-intr"; break;
1615                                  default:
1616                                         s = "-iso"; break;
1617                                 };
1618                                 s;
1619                         }));
1620                 usb_put_urb (urb);
1621
1622                 /* list contents may have changed */
1623                 spin_lock(&hcd_urb_list_lock);
1624                 goto rescan;
1625         }
1626         spin_unlock_irq(&hcd_urb_list_lock);
1627
1628         /* Wait until the endpoint queue is completely empty */
1629         while (!list_empty (&ep->urb_list)) {
1630                 spin_lock_irq(&hcd_urb_list_lock);
1631
1632                 /* The list may have changed while we acquired the spinlock */
1633                 urb = NULL;
1634                 if (!list_empty (&ep->urb_list)) {
1635                         urb = list_entry (ep->urb_list.prev, struct urb,
1636                                         urb_list);
1637                         usb_get_urb (urb);
1638                 }
1639                 spin_unlock_irq(&hcd_urb_list_lock);
1640
1641                 if (urb) {
1642                         usb_kill_urb (urb);
1643                         usb_put_urb (urb);
1644                 }
1645         }
1646 }
1647
1648 /**
1649  * usb_hcd_alloc_bandwidth - check whether a new bandwidth setting exceeds
1650  *                              the bus bandwidth
1651  * @udev: target &usb_device
1652  * @new_config: new configuration to install
1653  * @cur_alt: the current alternate interface setting
1654  * @new_alt: alternate interface setting that is being installed
1655  *
1656  * To change configurations, pass in the new configuration in new_config,
1657  * and pass NULL for cur_alt and new_alt.
1658  *
1659  * To reset a device's configuration (put the device in the ADDRESSED state),
1660  * pass in NULL for new_config, cur_alt, and new_alt.
1661  *
1662  * To change alternate interface settings, pass in NULL for new_config,
1663  * pass in the current alternate interface setting in cur_alt,
1664  * and pass in the new alternate interface setting in new_alt.
1665  *
1666  * Returns an error if the requested bandwidth change exceeds the
1667  * bus bandwidth or host controller internal resources.
1668  */
1669 int usb_hcd_alloc_bandwidth(struct usb_device *udev,
1670                 struct usb_host_config *new_config,
1671                 struct usb_host_interface *cur_alt,
1672                 struct usb_host_interface *new_alt)
1673 {
1674         int num_intfs, i, j;
1675         struct usb_host_interface *alt = NULL;
1676         int ret = 0;
1677         struct usb_hcd *hcd;
1678         struct usb_host_endpoint *ep;
1679
1680         hcd = bus_to_hcd(udev->bus);
1681         if (!hcd->driver->check_bandwidth)
1682                 return 0;
1683
1684         /* Configuration is being removed - set configuration 0 */
1685         if (!new_config && !cur_alt) {
1686                 for (i = 1; i < 16; ++i) {
1687                         ep = udev->ep_out[i];
1688                         if (ep)
1689                                 hcd->driver->drop_endpoint(hcd, udev, ep);
1690                         ep = udev->ep_in[i];
1691                         if (ep)
1692                                 hcd->driver->drop_endpoint(hcd, udev, ep);
1693                 }
1694                 hcd->driver->check_bandwidth(hcd, udev);
1695                 return 0;
1696         }
1697         /* Check if the HCD says there's enough bandwidth.  Enable all endpoints
1698          * each interface's alt setting 0 and ask the HCD to check the bandwidth
1699          * of the bus.  There will always be bandwidth for endpoint 0, so it's
1700          * ok to exclude it.
1701          */
1702         if (new_config) {
1703                 num_intfs = new_config->desc.bNumInterfaces;
1704                 /* Remove endpoints (except endpoint 0, which is always on the
1705                  * schedule) from the old config from the schedule
1706                  */
1707                 for (i = 1; i < 16; ++i) {
1708                         ep = udev->ep_out[i];
1709                         if (ep) {
1710                                 ret = hcd->driver->drop_endpoint(hcd, udev, ep);
1711                                 if (ret < 0)
1712                                         goto reset;
1713                         }
1714                         ep = udev->ep_in[i];
1715                         if (ep) {
1716                                 ret = hcd->driver->drop_endpoint(hcd, udev, ep);
1717                                 if (ret < 0)
1718                                         goto reset;
1719                         }
1720                 }
1721                 for (i = 0; i < num_intfs; ++i) {
1722                         struct usb_host_interface *first_alt;
1723                         int iface_num;
1724
1725                         first_alt = &new_config->intf_cache[i]->altsetting[0];
1726                         iface_num = first_alt->desc.bInterfaceNumber;
1727                         /* Set up endpoints for alternate interface setting 0 */
1728                         alt = usb_find_alt_setting(new_config, iface_num, 0);
1729                         if (!alt)
1730                                 /* No alt setting 0? Pick the first setting. */
1731                                 alt = first_alt;
1732
1733                         for (j = 0; j < alt->desc.bNumEndpoints; j++) {
1734                                 ret = hcd->driver->add_endpoint(hcd, udev, &alt->endpoint[j]);
1735                                 if (ret < 0)
1736                                         goto reset;
1737                         }
1738                 }
1739         }
1740         if (cur_alt && new_alt) {
1741                 struct usb_interface *iface = usb_ifnum_to_if(udev,
1742                                 cur_alt->desc.bInterfaceNumber);
1743
1744                 if (iface->resetting_device) {
1745                         /*
1746                          * The USB core just reset the device, so the xHCI host
1747                          * and the device will think alt setting 0 is installed.
1748                          * However, the USB core will pass in the alternate
1749                          * setting installed before the reset as cur_alt.  Dig
1750                          * out the alternate setting 0 structure, or the first
1751                          * alternate setting if a broken device doesn't have alt
1752                          * setting 0.
1753                          */
1754                         cur_alt = usb_altnum_to_altsetting(iface, 0);
1755                         if (!cur_alt)
1756                                 cur_alt = &iface->altsetting[0];
1757                 }
1758
1759                 /* Drop all the endpoints in the current alt setting */
1760                 for (i = 0; i < cur_alt->desc.bNumEndpoints; i++) {
1761                         ret = hcd->driver->drop_endpoint(hcd, udev,
1762                                         &cur_alt->endpoint[i]);
1763                         if (ret < 0)
1764                                 goto reset;
1765                 }
1766                 /* Add all the endpoints in the new alt setting */
1767                 for (i = 0; i < new_alt->desc.bNumEndpoints; i++) {
1768                         ret = hcd->driver->add_endpoint(hcd, udev,
1769                                         &new_alt->endpoint[i]);
1770                         if (ret < 0)
1771                                 goto reset;
1772                 }
1773         }
1774         ret = hcd->driver->check_bandwidth(hcd, udev);
1775 reset:
1776         if (ret < 0)
1777                 hcd->driver->reset_bandwidth(hcd, udev);
1778         return ret;
1779 }
1780
1781 /* Disables the endpoint: synchronizes with the hcd to make sure all
1782  * endpoint state is gone from hardware.  usb_hcd_flush_endpoint() must
1783  * have been called previously.  Use for set_configuration, set_interface,
1784  * driver removal, physical disconnect.
1785  *
1786  * example:  a qh stored in ep->hcpriv, holding state related to endpoint
1787  * type, maxpacket size, toggle, halt status, and scheduling.
1788  */
1789 void usb_hcd_disable_endpoint(struct usb_device *udev,
1790                 struct usb_host_endpoint *ep)
1791 {
1792         struct usb_hcd          *hcd;
1793
1794         might_sleep();
1795         hcd = bus_to_hcd(udev->bus);
1796         if (hcd->driver->endpoint_disable)
1797                 hcd->driver->endpoint_disable(hcd, ep);
1798 }
1799
1800 /**
1801  * usb_hcd_reset_endpoint - reset host endpoint state
1802  * @udev: USB device.
1803  * @ep:   the endpoint to reset.
1804  *
1805  * Resets any host endpoint state such as the toggle bit, sequence
1806  * number and current window.
1807  */
1808 void usb_hcd_reset_endpoint(struct usb_device *udev,
1809                             struct usb_host_endpoint *ep)
1810 {
1811         struct usb_hcd *hcd = bus_to_hcd(udev->bus);
1812
1813         if (hcd->driver->endpoint_reset)
1814                 hcd->driver->endpoint_reset(hcd, ep);
1815         else {
1816                 int epnum = usb_endpoint_num(&ep->desc);
1817                 int is_out = usb_endpoint_dir_out(&ep->desc);
1818                 int is_control = usb_endpoint_xfer_control(&ep->desc);
1819
1820                 usb_settoggle(udev, epnum, is_out, 0);
1821                 if (is_control)
1822                         usb_settoggle(udev, epnum, !is_out, 0);
1823         }
1824 }
1825
1826 /**
1827  * usb_alloc_streams - allocate bulk endpoint stream IDs.
1828  * @interface:          alternate setting that includes all endpoints.
1829  * @eps:                array of endpoints that need streams.
1830  * @num_eps:            number of endpoints in the array.
1831  * @num_streams:        number of streams to allocate.
1832  * @mem_flags:          flags hcd should use to allocate memory.
1833  *
1834  * Sets up a group of bulk endpoints to have num_streams stream IDs available.
1835  * Drivers may queue multiple transfers to different stream IDs, which may
1836  * complete in a different order than they were queued.
1837  */
1838 int usb_alloc_streams(struct usb_interface *interface,
1839                 struct usb_host_endpoint **eps, unsigned int num_eps,
1840                 unsigned int num_streams, gfp_t mem_flags)
1841 {
1842         struct usb_hcd *hcd;
1843         struct usb_device *dev;
1844         int i;
1845
1846         dev = interface_to_usbdev(interface);
1847         hcd = bus_to_hcd(dev->bus);
1848         if (!hcd->driver->alloc_streams || !hcd->driver->free_streams)
1849                 return -EINVAL;
1850         if (dev->speed != USB_SPEED_SUPER)
1851                 return -EINVAL;
1852
1853         /* Streams only apply to bulk endpoints. */
1854         for (i = 0; i < num_eps; i++)
1855                 if (!usb_endpoint_xfer_bulk(&eps[i]->desc))
1856                         return -EINVAL;
1857
1858         return hcd->driver->alloc_streams(hcd, dev, eps, num_eps,
1859                         num_streams, mem_flags);
1860 }
1861 EXPORT_SYMBOL_GPL(usb_alloc_streams);
1862
1863 /**
1864  * usb_free_streams - free bulk endpoint stream IDs.
1865  * @interface:  alternate setting that includes all endpoints.
1866  * @eps:        array of endpoints to remove streams from.
1867  * @num_eps:    number of endpoints in the array.
1868  * @mem_flags:  flags hcd should use to allocate memory.
1869  *
1870  * Reverts a group of bulk endpoints back to not using stream IDs.
1871  * Can fail if we are given bad arguments, or HCD is broken.
1872  */
1873 void usb_free_streams(struct usb_interface *interface,
1874                 struct usb_host_endpoint **eps, unsigned int num_eps,
1875                 gfp_t mem_flags)
1876 {
1877         struct usb_hcd *hcd;
1878         struct usb_device *dev;
1879         int i;
1880
1881         dev = interface_to_usbdev(interface);
1882         hcd = bus_to_hcd(dev->bus);
1883         if (dev->speed != USB_SPEED_SUPER)
1884                 return;
1885
1886         /* Streams only apply to bulk endpoints. */
1887         for (i = 0; i < num_eps; i++)
1888                 if (!usb_endpoint_xfer_bulk(&eps[i]->desc))
1889                         return;
1890
1891         hcd->driver->free_streams(hcd, dev, eps, num_eps, mem_flags);
1892 }
1893 EXPORT_SYMBOL_GPL(usb_free_streams);
1894
1895 /* Protect against drivers that try to unlink URBs after the device
1896  * is gone, by waiting until all unlinks for @udev are finished.
1897  * Since we don't currently track URBs by device, simply wait until
1898  * nothing is running in the locked region of usb_hcd_unlink_urb().
1899  */
1900 void usb_hcd_synchronize_unlinks(struct usb_device *udev)
1901 {
1902         spin_lock_irq(&hcd_urb_unlink_lock);
1903         spin_unlock_irq(&hcd_urb_unlink_lock);
1904 }
1905
1906 /*-------------------------------------------------------------------------*/
1907
1908 /* called in any context */
1909 int usb_hcd_get_frame_number (struct usb_device *udev)
1910 {
1911         struct usb_hcd  *hcd = bus_to_hcd(udev->bus);
1912
1913         if (!HCD_RH_RUNNING(hcd))
1914                 return -ESHUTDOWN;
1915         return hcd->driver->get_frame_number (hcd);
1916 }
1917
1918 /*-------------------------------------------------------------------------*/
1919
1920 #ifdef  CONFIG_PM
1921
1922 int hcd_bus_suspend(struct usb_device *rhdev, pm_message_t msg)
1923 {
1924         struct usb_hcd  *hcd = container_of(rhdev->bus, struct usb_hcd, self);
1925         int             status;
1926         int             old_state = hcd->state;
1927
1928         dev_dbg(&rhdev->dev, "bus %s%s\n",
1929                         (msg.event & PM_EVENT_AUTO ? "auto-" : ""), "suspend");
1930         if (HCD_DEAD(hcd)) {
1931                 dev_dbg(&rhdev->dev, "skipped %s of dead bus\n", "suspend");
1932                 return 0;
1933         }
1934
1935         if (!hcd->driver->bus_suspend) {
1936                 status = -ENOENT;
1937         } else {
1938                 clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
1939                 hcd->state = HC_STATE_QUIESCING;
1940                 status = hcd->driver->bus_suspend(hcd);
1941         }
1942         if (status == 0) {
1943                 usb_set_device_state(rhdev, USB_STATE_SUSPENDED);
1944                 hcd->state = HC_STATE_SUSPENDED;
1945         } else {
1946                 spin_lock_irq(&hcd_root_hub_lock);
1947                 if (!HCD_DEAD(hcd)) {
1948                         set_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
1949                         hcd->state = old_state;
1950                 }
1951                 spin_unlock_irq(&hcd_root_hub_lock);
1952                 dev_dbg(&rhdev->dev, "bus %s fail, err %d\n",
1953                                 "suspend", status);
1954         }
1955         return status;
1956 }
1957
1958 int hcd_bus_resume(struct usb_device *rhdev, pm_message_t msg)
1959 {
1960         struct usb_hcd  *hcd = container_of(rhdev->bus, struct usb_hcd, self);
1961         int             status;
1962         int             old_state = hcd->state;
1963
1964         dev_dbg(&rhdev->dev, "usb %s%s\n",
1965                         (msg.event & PM_EVENT_AUTO ? "auto-" : ""), "resume");
1966         if (HCD_DEAD(hcd)) {
1967                 dev_dbg(&rhdev->dev, "skipped %s of dead bus\n", "resume");
1968                 return 0;
1969         }
1970         if (!hcd->driver->bus_resume)
1971                 return -ENOENT;
1972         if (HCD_RH_RUNNING(hcd))
1973                 return 0;
1974
1975         hcd->state = HC_STATE_RESUMING;
1976         status = hcd->driver->bus_resume(hcd);
1977         clear_bit(HCD_FLAG_WAKEUP_PENDING, &hcd->flags);
1978         if (status == 0) {
1979                 /* TRSMRCY = 10 msec */
1980                 msleep(10);
1981                 spin_lock_irq(&hcd_root_hub_lock);
1982                 if (!HCD_DEAD(hcd)) {
1983                         usb_set_device_state(rhdev, rhdev->actconfig
1984                                         ? USB_STATE_CONFIGURED
1985                                         : USB_STATE_ADDRESS);
1986                         set_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
1987                         hcd->state = HC_STATE_RUNNING;
1988                 }
1989                 spin_unlock_irq(&hcd_root_hub_lock);
1990         } else {
1991                 hcd->state = old_state;
1992                 dev_dbg(&rhdev->dev, "bus %s fail, err %d\n",
1993                                 "resume", status);
1994                 if (status != -ESHUTDOWN)
1995                         usb_hc_died(hcd);
1996         }
1997         return status;
1998 }
1999
2000 #endif  /* CONFIG_PM */
2001
2002 #ifdef  CONFIG_USB_SUSPEND
2003
2004 /* Workqueue routine for root-hub remote wakeup */
2005 static void hcd_resume_work(struct work_struct *work)
2006 {
2007         struct usb_hcd *hcd = container_of(work, struct usb_hcd, wakeup_work);
2008         struct usb_device *udev = hcd->self.root_hub;
2009
2010         usb_lock_device(udev);
2011         usb_remote_wakeup(udev);
2012         usb_unlock_device(udev);
2013 }
2014
2015 /**
2016  * usb_hcd_resume_root_hub - called by HCD to resume its root hub 
2017  * @hcd: host controller for this root hub
2018  *
2019  * The USB host controller calls this function when its root hub is
2020  * suspended (with the remote wakeup feature enabled) and a remote
2021  * wakeup request is received.  The routine submits a workqueue request
2022  * to resume the root hub (that is, manage its downstream ports again).
2023  */
2024 void usb_hcd_resume_root_hub (struct usb_hcd *hcd)
2025 {
2026         unsigned long flags;
2027
2028         spin_lock_irqsave (&hcd_root_hub_lock, flags);
2029         if (hcd->rh_registered) {
2030                 set_bit(HCD_FLAG_WAKEUP_PENDING, &hcd->flags);
2031                 queue_work(pm_wq, &hcd->wakeup_work);
2032         }
2033         spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
2034 }
2035 EXPORT_SYMBOL_GPL(usb_hcd_resume_root_hub);
2036
2037 #endif  /* CONFIG_USB_SUSPEND */
2038
2039 /*-------------------------------------------------------------------------*/
2040
2041 #ifdef  CONFIG_USB_OTG
2042
2043 /**
2044  * usb_bus_start_enum - start immediate enumeration (for OTG)
2045  * @bus: the bus (must use hcd framework)
2046  * @port_num: 1-based number of port; usually bus->otg_port
2047  * Context: in_interrupt()
2048  *
2049  * Starts enumeration, with an immediate reset followed later by
2050  * khubd identifying and possibly configuring the device.
2051  * This is needed by OTG controller drivers, where it helps meet
2052  * HNP protocol timing requirements for starting a port reset.
2053  */
2054 int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num)
2055 {
2056         struct usb_hcd          *hcd;
2057         int                     status = -EOPNOTSUPP;
2058
2059         /* NOTE: since HNP can't start by grabbing the bus's address0_sem,
2060          * boards with root hubs hooked up to internal devices (instead of
2061          * just the OTG port) may need more attention to resetting...
2062          */
2063         hcd = container_of (bus, struct usb_hcd, self);
2064         if (port_num && hcd->driver->start_port_reset)
2065                 status = hcd->driver->start_port_reset(hcd, port_num);
2066
2067         /* run khubd shortly after (first) root port reset finishes;
2068          * it may issue others, until at least 50 msecs have passed.
2069          */
2070         if (status == 0)
2071                 mod_timer(&hcd->rh_timer, jiffies + msecs_to_jiffies(10));
2072         return status;
2073 }
2074 EXPORT_SYMBOL_GPL(usb_bus_start_enum);
2075
2076 #endif
2077
2078 /*-------------------------------------------------------------------------*/
2079
2080 /**
2081  * usb_hcd_irq - hook IRQs to HCD framework (bus glue)
2082  * @irq: the IRQ being raised
2083  * @__hcd: pointer to the HCD whose IRQ is being signaled
2084  *
2085  * If the controller isn't HALTed, calls the driver's irq handler.
2086  * Checks whether the controller is now dead.
2087  */
2088 irqreturn_t usb_hcd_irq (int irq, void *__hcd)
2089 {
2090         struct usb_hcd          *hcd = __hcd;
2091         unsigned long           flags;
2092         irqreturn_t             rc;
2093
2094         /* IRQF_DISABLED doesn't work correctly with shared IRQs
2095          * when the first handler doesn't use it.  So let's just
2096          * assume it's never used.
2097          */
2098         local_irq_save(flags);
2099
2100         if (unlikely(HCD_DEAD(hcd) || !HCD_HW_ACCESSIBLE(hcd))) {
2101                 rc = IRQ_NONE;
2102         } else if (hcd->driver->irq(hcd) == IRQ_NONE) {
2103                 rc = IRQ_NONE;
2104         } else {
2105                 set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
2106
2107                 if (unlikely(hcd->state == HC_STATE_HALT))
2108                         usb_hc_died(hcd);
2109                 rc = IRQ_HANDLED;
2110         }
2111
2112         local_irq_restore(flags);
2113         return rc;
2114 }
2115 EXPORT_SYMBOL_GPL(usb_hcd_irq);
2116
2117 /*-------------------------------------------------------------------------*/
2118
2119 /**
2120  * usb_hc_died - report abnormal shutdown of a host controller (bus glue)
2121  * @hcd: pointer to the HCD representing the controller
2122  *
2123  * This is called by bus glue to report a USB host controller that died
2124  * while operations may still have been pending.  It's called automatically
2125  * by the PCI glue, so only glue for non-PCI busses should need to call it. 
2126  */
2127 void usb_hc_died (struct usb_hcd *hcd)
2128 {
2129         unsigned long flags;
2130
2131         dev_err (hcd->self.controller, "HC died; cleaning up\n");
2132
2133         spin_lock_irqsave (&hcd_root_hub_lock, flags);
2134         clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
2135         set_bit(HCD_FLAG_DEAD, &hcd->flags);
2136         if (hcd->rh_registered) {
2137                 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
2138
2139                 /* make khubd clean up old urbs and devices */
2140                 usb_set_device_state (hcd->self.root_hub,
2141                                 USB_STATE_NOTATTACHED);
2142                 usb_kick_khubd (hcd->self.root_hub);
2143         }
2144         spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
2145 }
2146 EXPORT_SYMBOL_GPL (usb_hc_died);
2147
2148 /*-------------------------------------------------------------------------*/
2149
2150 /**
2151  * usb_create_hcd - create and initialize an HCD structure
2152  * @driver: HC driver that will use this hcd
2153  * @dev: device for this HC, stored in hcd->self.controller
2154  * @bus_name: value to store in hcd->self.bus_name
2155  * Context: !in_interrupt()
2156  *
2157  * Allocate a struct usb_hcd, with extra space at the end for the
2158  * HC driver's private data.  Initialize the generic members of the
2159  * hcd structure.
2160  *
2161  * If memory is unavailable, returns NULL.
2162  */
2163 struct usb_hcd *usb_create_hcd (const struct hc_driver *driver,
2164                 struct device *dev, const char *bus_name)
2165 {
2166         struct usb_hcd *hcd;
2167
2168         hcd = kzalloc(sizeof(*hcd) + driver->hcd_priv_size, GFP_KERNEL);
2169         if (!hcd) {
2170                 dev_dbg (dev, "hcd alloc failed\n");
2171                 return NULL;
2172         }
2173         dev_set_drvdata(dev, hcd);
2174         kref_init(&hcd->kref);
2175
2176         usb_bus_init(&hcd->self);
2177         hcd->self.controller = dev;
2178         hcd->self.bus_name = bus_name;
2179         hcd->self.uses_dma = (dev->dma_mask != NULL);
2180
2181         init_timer(&hcd->rh_timer);
2182         hcd->rh_timer.function = rh_timer_func;
2183         hcd->rh_timer.data = (unsigned long) hcd;
2184 #ifdef CONFIG_USB_SUSPEND
2185         INIT_WORK(&hcd->wakeup_work, hcd_resume_work);
2186 #endif
2187         mutex_init(&hcd->bandwidth_mutex);
2188
2189         hcd->driver = driver;
2190         hcd->product_desc = (driver->product_desc) ? driver->product_desc :
2191                         "USB Host Controller";
2192         return hcd;
2193 }
2194 EXPORT_SYMBOL_GPL(usb_create_hcd);
2195
2196 static void hcd_release (struct kref *kref)
2197 {
2198         struct usb_hcd *hcd = container_of (kref, struct usb_hcd, kref);
2199
2200         kfree(hcd);
2201 }
2202
2203 struct usb_hcd *usb_get_hcd (struct usb_hcd *hcd)
2204 {
2205         if (hcd)
2206                 kref_get (&hcd->kref);
2207         return hcd;
2208 }
2209 EXPORT_SYMBOL_GPL(usb_get_hcd);
2210
2211 void usb_put_hcd (struct usb_hcd *hcd)
2212 {
2213         if (hcd)
2214                 kref_put (&hcd->kref, hcd_release);
2215 }
2216 EXPORT_SYMBOL_GPL(usb_put_hcd);
2217
2218 /**
2219  * usb_add_hcd - finish generic HCD structure initialization and register
2220  * @hcd: the usb_hcd structure to initialize
2221  * @irqnum: Interrupt line to allocate
2222  * @irqflags: Interrupt type flags
2223  *
2224  * Finish the remaining parts of generic HCD initialization: allocate the
2225  * buffers of consistent memory, register the bus, request the IRQ line,
2226  * and call the driver's reset() and start() routines.
2227  */
2228 int usb_add_hcd(struct usb_hcd *hcd,
2229                 unsigned int irqnum, unsigned long irqflags)
2230 {
2231         int retval;
2232         struct usb_device *rhdev;
2233
2234         dev_info(hcd->self.controller, "%s\n", hcd->product_desc);
2235
2236         hcd->authorized_default = hcd->wireless? 0 : 1;
2237         set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
2238
2239         /* HC is in reset state, but accessible.  Now do the one-time init,
2240          * bottom up so that hcds can customize the root hubs before khubd
2241          * starts talking to them.  (Note, bus id is assigned early too.)
2242          */
2243         if ((retval = hcd_buffer_create(hcd)) != 0) {
2244                 dev_dbg(hcd->self.controller, "pool alloc failed\n");
2245                 return retval;
2246         }
2247
2248         if ((retval = usb_register_bus(&hcd->self)) < 0)
2249                 goto err_register_bus;
2250
2251         if ((rhdev = usb_alloc_dev(NULL, &hcd->self, 0)) == NULL) {
2252                 dev_err(hcd->self.controller, "unable to allocate root hub\n");
2253                 retval = -ENOMEM;
2254                 goto err_allocate_root_hub;
2255         }
2256         hcd->self.root_hub = rhdev;
2257
2258         switch (hcd->driver->flags & HCD_MASK) {
2259         case HCD_USB11:
2260                 rhdev->speed = USB_SPEED_FULL;
2261                 break;
2262         case HCD_USB2:
2263                 rhdev->speed = USB_SPEED_HIGH;
2264                 break;
2265         case HCD_USB3:
2266                 rhdev->speed = USB_SPEED_SUPER;
2267                 break;
2268         default:
2269                 goto err_set_rh_speed;
2270         }
2271
2272         /* wakeup flag init defaults to "everything works" for root hubs,
2273          * but drivers can override it in reset() if needed, along with
2274          * recording the overall controller's system wakeup capability.
2275          */
2276         device_init_wakeup(&rhdev->dev, 1);
2277
2278         /* HCD_FLAG_RH_RUNNING doesn't matter until the root hub is
2279          * registered.  But since the controller can die at any time,
2280          * let's initialize the flag before touching the hardware.
2281          */
2282         set_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
2283
2284         /* "reset" is misnamed; its role is now one-time init. the controller
2285          * should already have been reset (and boot firmware kicked off etc).
2286          */
2287         if (hcd->driver->reset && (retval = hcd->driver->reset(hcd)) < 0) {
2288                 dev_err(hcd->self.controller, "can't setup\n");
2289                 goto err_hcd_driver_setup;
2290         }
2291         hcd->rh_pollable = 1;
2292
2293         /* NOTE: root hub and controller capabilities may not be the same */
2294         if (device_can_wakeup(hcd->self.controller)
2295                         && device_can_wakeup(&hcd->self.root_hub->dev))
2296                 dev_dbg(hcd->self.controller, "supports USB remote wakeup\n");
2297
2298         /* enable irqs just before we start the controller */
2299         if (hcd->driver->irq) {
2300
2301                 /* IRQF_DISABLED doesn't work as advertised when used together
2302                  * with IRQF_SHARED. As usb_hcd_irq() will always disable
2303                  * interrupts we can remove it here.
2304                  */
2305                 if (irqflags & IRQF_SHARED)
2306                         irqflags &= ~IRQF_DISABLED;
2307
2308                 snprintf(hcd->irq_descr, sizeof(hcd->irq_descr), "%s:usb%d",
2309                                 hcd->driver->description, hcd->self.busnum);
2310                 if ((retval = request_irq(irqnum, &usb_hcd_irq, irqflags,
2311                                 hcd->irq_descr, hcd)) != 0) {
2312                         dev_err(hcd->self.controller,
2313                                         "request interrupt %d failed\n", irqnum);
2314                         goto err_request_irq;
2315                 }
2316                 hcd->irq = irqnum;
2317                 dev_info(hcd->self.controller, "irq %d, %s 0x%08llx\n", irqnum,
2318                                 (hcd->driver->flags & HCD_MEMORY) ?
2319                                         "io mem" : "io base",
2320                                         (unsigned long long)hcd->rsrc_start);
2321         } else {
2322                 hcd->irq = -1;
2323                 if (hcd->rsrc_start)
2324                         dev_info(hcd->self.controller, "%s 0x%08llx\n",
2325                                         (hcd->driver->flags & HCD_MEMORY) ?
2326                                         "io mem" : "io base",
2327                                         (unsigned long long)hcd->rsrc_start);
2328         }
2329
2330         if ((retval = hcd->driver->start(hcd)) < 0) {
2331                 dev_err(hcd->self.controller, "startup error %d\n", retval);
2332                 goto err_hcd_driver_start;
2333         }
2334
2335         /* starting here, usbcore will pay attention to this root hub */
2336         rhdev->bus_mA = min(500u, hcd->power_budget);
2337         if ((retval = register_root_hub(hcd)) != 0)
2338                 goto err_register_root_hub;
2339
2340         retval = sysfs_create_group(&rhdev->dev.kobj, &usb_bus_attr_group);
2341         if (retval < 0) {
2342                 printk(KERN_ERR "Cannot register USB bus sysfs attributes: %d\n",
2343                        retval);
2344                 goto error_create_attr_group;
2345         }
2346         if (hcd->uses_new_polling && HCD_POLL_RH(hcd))
2347                 usb_hcd_poll_rh_status(hcd);
2348         return retval;
2349
2350 error_create_attr_group:
2351         clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
2352         if (HC_IS_RUNNING(hcd->state))
2353                 hcd->state = HC_STATE_QUIESCING;
2354         spin_lock_irq(&hcd_root_hub_lock);
2355         hcd->rh_registered = 0;
2356         spin_unlock_irq(&hcd_root_hub_lock);
2357
2358 #ifdef CONFIG_USB_SUSPEND
2359         cancel_work_sync(&hcd->wakeup_work);
2360 #endif
2361         mutex_lock(&usb_bus_list_lock);
2362         usb_disconnect(&rhdev);         /* Sets rhdev to NULL */
2363         mutex_unlock(&usb_bus_list_lock);
2364 err_register_root_hub:
2365         hcd->rh_pollable = 0;
2366         clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
2367         del_timer_sync(&hcd->rh_timer);
2368         hcd->driver->stop(hcd);
2369         hcd->state = HC_STATE_HALT;
2370         clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
2371         del_timer_sync(&hcd->rh_timer);
2372 err_hcd_driver_start:
2373         if (hcd->irq >= 0)
2374                 free_irq(irqnum, hcd);
2375 err_request_irq:
2376 err_hcd_driver_setup:
2377 err_set_rh_speed:
2378         usb_put_dev(hcd->self.root_hub);
2379 err_allocate_root_hub:
2380         usb_deregister_bus(&hcd->self);
2381 err_register_bus:
2382         hcd_buffer_destroy(hcd);
2383         return retval;
2384
2385 EXPORT_SYMBOL_GPL(usb_add_hcd);
2386
2387 /**
2388  * usb_remove_hcd - shutdown processing for generic HCDs
2389  * @hcd: the usb_hcd structure to remove
2390  * Context: !in_interrupt()
2391  *
2392  * Disconnects the root hub, then reverses the effects of usb_add_hcd(),
2393  * invoking the HCD's stop() method.
2394  */
2395 void usb_remove_hcd(struct usb_hcd *hcd)
2396 {
2397         struct usb_device *rhdev = hcd->self.root_hub;
2398
2399         dev_info(hcd->self.controller, "remove, state %x\n", hcd->state);
2400
2401         usb_get_dev(rhdev);
2402         sysfs_remove_group(&rhdev->dev.kobj, &usb_bus_attr_group);
2403
2404         clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
2405         if (HC_IS_RUNNING (hcd->state))
2406                 hcd->state = HC_STATE_QUIESCING;
2407
2408         dev_dbg(hcd->self.controller, "roothub graceful disconnect\n");
2409         spin_lock_irq (&hcd_root_hub_lock);
2410         hcd->rh_registered = 0;
2411         spin_unlock_irq (&hcd_root_hub_lock);
2412
2413 #ifdef CONFIG_USB_SUSPEND
2414         cancel_work_sync(&hcd->wakeup_work);
2415 #endif
2416
2417         mutex_lock(&usb_bus_list_lock);
2418         usb_disconnect(&rhdev);         /* Sets rhdev to NULL */
2419         mutex_unlock(&usb_bus_list_lock);
2420
2421         /* Prevent any more root-hub status calls from the timer.
2422          * The HCD might still restart the timer (if a port status change
2423          * interrupt occurs), but usb_hcd_poll_rh_status() won't invoke
2424          * the hub_status_data() callback.
2425          */
2426         hcd->rh_pollable = 0;
2427         clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
2428         del_timer_sync(&hcd->rh_timer);
2429
2430         hcd->driver->stop(hcd);
2431         hcd->state = HC_STATE_HALT;
2432
2433         /* In case the HCD restarted the timer, stop it again. */
2434         clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
2435         del_timer_sync(&hcd->rh_timer);
2436
2437         if (hcd->irq >= 0)
2438                 free_irq(hcd->irq, hcd);
2439
2440         usb_put_dev(hcd->self.root_hub);
2441         usb_deregister_bus(&hcd->self);
2442         hcd_buffer_destroy(hcd);
2443 }
2444 EXPORT_SYMBOL_GPL(usb_remove_hcd);
2445
2446 void
2447 usb_hcd_platform_shutdown(struct platform_device* dev)
2448 {
2449         struct usb_hcd *hcd = platform_get_drvdata(dev);
2450
2451         if (hcd->driver->shutdown)
2452                 hcd->driver->shutdown(hcd);
2453 }
2454 EXPORT_SYMBOL_GPL(usb_hcd_platform_shutdown);
2455
2456 /*-------------------------------------------------------------------------*/
2457
2458 #if defined(CONFIG_USB_MON) || defined(CONFIG_USB_MON_MODULE)
2459
2460 struct usb_mon_operations *mon_ops;
2461
2462 /*
2463  * The registration is unlocked.
2464  * We do it this way because we do not want to lock in hot paths.
2465  *
2466  * Notice that the code is minimally error-proof. Because usbmon needs
2467  * symbols from usbcore, usbcore gets referenced and cannot be unloaded first.
2468  */
2469  
2470 int usb_mon_register (struct usb_mon_operations *ops)
2471 {
2472
2473         if (mon_ops)
2474                 return -EBUSY;
2475
2476         mon_ops = ops;
2477         mb();
2478         return 0;
2479 }
2480 EXPORT_SYMBOL_GPL (usb_mon_register);
2481
2482 void usb_mon_deregister (void)
2483 {
2484
2485         if (mon_ops == NULL) {
2486                 printk(KERN_ERR "USB: monitor was not registered\n");
2487                 return;
2488         }
2489         mon_ops = NULL;
2490         mb();
2491 }
2492 EXPORT_SYMBOL_GPL (usb_mon_deregister);
2493
2494 #endif /* CONFIG_USB_MON || CONFIG_USB_MON_MODULE */