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