blob: 963520fbef9061db3a42f12d624840bab9976e92 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#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 <asm/scatterlist.h>
34#include <linux/device.h>
35#include <linux/dma-mapping.h>
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010036#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/irq.h>
38#include <asm/byteorder.h>
Aleksey Gorelov64a21d02006-08-08 17:24:08 -070039#include <linux/platform_device.h>
Alan Stern6b157c92007-03-13 16:37:30 -040040#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <linux/usb.h>
43
44#include "usb.h"
45#include "hcd.h"
46#include "hub.h"
47
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/*-------------------------------------------------------------------------*/
50
51/*
52 * USB Host Controller Driver framework
53 *
54 * Plugs into usbcore (usb_bus) and lets HCDs share code, minimizing
55 * HCD-specific behaviors/bugs.
56 *
57 * This does error checks, tracks devices and urbs, and delegates to a
58 * "hc_driver" only for code (and data) that really needs to know about
59 * hardware differences. That includes root hub registers, i/o queues,
60 * and so on ... but as little else as possible.
61 *
62 * Shared code includes most of the "root hub" code (these are emulated,
63 * though each HC's hardware works differently) and PCI glue, plus request
64 * tracking overhead. The HCD code should only block on spinlocks or on
65 * hardware handshaking; blocking on software events (such as other kernel
66 * threads releasing resources, or completing actions) is all generic.
67 *
68 * Happens the USB 2.0 spec says this would be invisible inside the "USBD",
69 * and includes mostly a "HCDI" (HCD Interface) along with some APIs used
70 * only by the hub driver ... and that neither should be seen or used by
71 * usb client device drivers.
72 *
73 * Contributors of ideas or unattributed patches include: David Brownell,
74 * Roman Weissgaerber, Rory Bolt, Greg Kroah-Hartman, ...
75 *
76 * HISTORY:
77 * 2002-02-21 Pull in most of the usb_bus support from usb.c; some
78 * associated cleanup. "usb_hcd" still != "usb_bus".
79 * 2001-12-12 Initial patch version for Linux 2.5.1 kernel.
80 */
81
82/*-------------------------------------------------------------------------*/
83
84/* host controllers we manage */
85LIST_HEAD (usb_bus_list);
86EXPORT_SYMBOL_GPL (usb_bus_list);
87
88/* used when allocating bus numbers */
89#define USB_MAXBUS 64
90struct usb_busmap {
91 unsigned long busmap [USB_MAXBUS / (8*sizeof (unsigned long))];
92};
93static struct usb_busmap busmap;
94
95/* used when updating list of hcds */
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010096DEFINE_MUTEX(usb_bus_list_lock); /* exported only for usbfs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070097EXPORT_SYMBOL_GPL (usb_bus_list_lock);
98
99/* used for controlling access to virtual root hubs */
100static DEFINE_SPINLOCK(hcd_root_hub_lock);
101
102/* used when updating hcd data */
103static DEFINE_SPINLOCK(hcd_data_lock);
104
105/* wait queue for synchronous unlinks */
106DECLARE_WAIT_QUEUE_HEAD(usb_kill_urb_queue);
107
108/*-------------------------------------------------------------------------*/
109
110/*
111 * Sharable chunks of root hub code.
112 */
113
114/*-------------------------------------------------------------------------*/
115
116#define KERNEL_REL ((LINUX_VERSION_CODE >> 16) & 0x0ff)
117#define KERNEL_VER ((LINUX_VERSION_CODE >> 8) & 0x0ff)
118
119/* usb 2.0 root hub device descriptor */
120static const u8 usb2_rh_dev_descriptor [18] = {
121 0x12, /* __u8 bLength; */
122 0x01, /* __u8 bDescriptorType; Device */
123 0x00, 0x02, /* __le16 bcdUSB; v2.0 */
124
125 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
126 0x00, /* __u8 bDeviceSubClass; */
127 0x01, /* __u8 bDeviceProtocol; [ usb 2.0 single TT ]*/
Alan Stern16f16d12005-10-24 15:41:19 -0400128 0x40, /* __u8 bMaxPacketSize0; 64 Bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
130 0x00, 0x00, /* __le16 idVendor; */
131 0x00, 0x00, /* __le16 idProduct; */
132 KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
133
134 0x03, /* __u8 iManufacturer; */
135 0x02, /* __u8 iProduct; */
136 0x01, /* __u8 iSerialNumber; */
137 0x01 /* __u8 bNumConfigurations; */
138};
139
140/* no usb 2.0 root hub "device qualifier" descriptor: one speed only */
141
142/* usb 1.1 root hub device descriptor */
143static const u8 usb11_rh_dev_descriptor [18] = {
144 0x12, /* __u8 bLength; */
145 0x01, /* __u8 bDescriptorType; Device */
146 0x10, 0x01, /* __le16 bcdUSB; v1.1 */
147
148 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
149 0x00, /* __u8 bDeviceSubClass; */
150 0x00, /* __u8 bDeviceProtocol; [ low/full speeds only ] */
Alan Stern16f16d12005-10-24 15:41:19 -0400151 0x40, /* __u8 bMaxPacketSize0; 64 Bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153 0x00, 0x00, /* __le16 idVendor; */
154 0x00, 0x00, /* __le16 idProduct; */
155 KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
156
157 0x03, /* __u8 iManufacturer; */
158 0x02, /* __u8 iProduct; */
159 0x01, /* __u8 iSerialNumber; */
160 0x01 /* __u8 bNumConfigurations; */
161};
162
163
164/*-------------------------------------------------------------------------*/
165
166/* Configuration descriptors for our root hubs */
167
168static const u8 fs_rh_config_descriptor [] = {
169
170 /* one configuration */
171 0x09, /* __u8 bLength; */
172 0x02, /* __u8 bDescriptorType; Configuration */
173 0x19, 0x00, /* __le16 wTotalLength; */
174 0x01, /* __u8 bNumInterfaces; (1) */
175 0x01, /* __u8 bConfigurationValue; */
176 0x00, /* __u8 iConfiguration; */
177 0xc0, /* __u8 bmAttributes;
178 Bit 7: must be set,
179 6: Self-powered,
180 5: Remote wakeup,
181 4..0: resvd */
182 0x00, /* __u8 MaxPower; */
183
184 /* USB 1.1:
185 * USB 2.0, single TT organization (mandatory):
186 * one interface, protocol 0
187 *
188 * USB 2.0, multiple TT organization (optional):
189 * two interfaces, protocols 1 (like single TT)
190 * and 2 (multiple TT mode) ... config is
191 * sometimes settable
192 * NOT IMPLEMENTED
193 */
194
195 /* one interface */
196 0x09, /* __u8 if_bLength; */
197 0x04, /* __u8 if_bDescriptorType; Interface */
198 0x00, /* __u8 if_bInterfaceNumber; */
199 0x00, /* __u8 if_bAlternateSetting; */
200 0x01, /* __u8 if_bNumEndpoints; */
201 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
202 0x00, /* __u8 if_bInterfaceSubClass; */
203 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */
204 0x00, /* __u8 if_iInterface; */
205
206 /* one endpoint (status change endpoint) */
207 0x07, /* __u8 ep_bLength; */
208 0x05, /* __u8 ep_bDescriptorType; Endpoint */
209 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
210 0x03, /* __u8 ep_bmAttributes; Interrupt */
211 0x02, 0x00, /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */
212 0xff /* __u8 ep_bInterval; (255ms -- usb 2.0 spec) */
213};
214
215static const u8 hs_rh_config_descriptor [] = {
216
217 /* one configuration */
218 0x09, /* __u8 bLength; */
219 0x02, /* __u8 bDescriptorType; Configuration */
220 0x19, 0x00, /* __le16 wTotalLength; */
221 0x01, /* __u8 bNumInterfaces; (1) */
222 0x01, /* __u8 bConfigurationValue; */
223 0x00, /* __u8 iConfiguration; */
224 0xc0, /* __u8 bmAttributes;
225 Bit 7: must be set,
226 6: Self-powered,
227 5: Remote wakeup,
228 4..0: resvd */
229 0x00, /* __u8 MaxPower; */
230
231 /* USB 1.1:
232 * USB 2.0, single TT organization (mandatory):
233 * one interface, protocol 0
234 *
235 * USB 2.0, multiple TT organization (optional):
236 * two interfaces, protocols 1 (like single TT)
237 * and 2 (multiple TT mode) ... config is
238 * sometimes settable
239 * NOT IMPLEMENTED
240 */
241
242 /* one interface */
243 0x09, /* __u8 if_bLength; */
244 0x04, /* __u8 if_bDescriptorType; Interface */
245 0x00, /* __u8 if_bInterfaceNumber; */
246 0x00, /* __u8 if_bAlternateSetting; */
247 0x01, /* __u8 if_bNumEndpoints; */
248 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
249 0x00, /* __u8 if_bInterfaceSubClass; */
250 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */
251 0x00, /* __u8 if_iInterface; */
252
253 /* one endpoint (status change endpoint) */
254 0x07, /* __u8 ep_bLength; */
255 0x05, /* __u8 ep_bDescriptorType; Endpoint */
256 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
257 0x03, /* __u8 ep_bmAttributes; Interrupt */
inaky@linux.intel.com88fafff2006-10-11 20:05:59 -0700258 /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8)
259 * see hub.c:hub_configure() for details. */
260 (USB_MAXCHILDREN + 1 + 7) / 8, 0x00,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 0x0c /* __u8 ep_bInterval; (256ms -- usb 2.0 spec) */
262};
263
264/*-------------------------------------------------------------------------*/
265
266/*
267 * helper routine for returning string descriptors in UTF-16LE
268 * input can actually be ISO-8859-1; ASCII is its 7-bit subset
269 */
270static int ascii2utf (char *s, u8 *utf, int utfmax)
271{
272 int retval;
273
274 for (retval = 0; *s && utfmax > 1; utfmax -= 2, retval += 2) {
275 *utf++ = *s++;
276 *utf++ = 0;
277 }
278 if (utfmax > 0) {
279 *utf = *s;
280 ++retval;
281 }
282 return retval;
283}
284
285/*
286 * rh_string - provides manufacturer, product and serial strings for root hub
287 * @id: the string ID number (1: serial number, 2: product, 3: vendor)
288 * @hcd: the host controller for this root hub
289 * @type: string describing our driver
290 * @data: return packet in UTF-16 LE
291 * @len: length of the return packet
292 *
293 * Produces either a manufacturer, product or serial number string for the
294 * virtual root hub device.
295 */
296static int rh_string (
297 int id,
298 struct usb_hcd *hcd,
299 u8 *data,
300 int len
301) {
302 char buf [100];
303
304 // language ids
305 if (id == 0) {
306 buf[0] = 4; buf[1] = 3; /* 4 bytes string data */
307 buf[2] = 0x09; buf[3] = 0x04; /* MSFT-speak for "en-us" */
308 len = min (len, 4);
309 memcpy (data, buf, len);
310 return len;
311
312 // serial number
313 } else if (id == 1) {
314 strlcpy (buf, hcd->self.bus_name, sizeof buf);
315
316 // product description
317 } else if (id == 2) {
318 strlcpy (buf, hcd->product_desc, sizeof buf);
319
320 // id 3 == vendor description
321 } else if (id == 3) {
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700322 snprintf (buf, sizeof buf, "%s %s %s", init_utsname()->sysname,
323 init_utsname()->release, hcd->driver->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 // unsupported IDs --> "protocol stall"
326 } else
327 return -EPIPE;
328
329 switch (len) { /* All cases fall through */
330 default:
331 len = 2 + ascii2utf (buf, data + 2, len - 2);
332 case 2:
333 data [1] = 3; /* type == string */
334 case 1:
335 data [0] = 2 * (strlen (buf) + 1);
336 case 0:
337 ; /* Compiler wants a statement here */
338 }
339 return len;
340}
341
342
343/* Root hub control transfers execute synchronously */
344static int rh_call_control (struct usb_hcd *hcd, struct urb *urb)
345{
346 struct usb_ctrlrequest *cmd;
347 u16 typeReq, wValue, wIndex, wLength;
348 u8 *ubuf = urb->transfer_buffer;
Mikael Pettersson54bee6e2006-09-23 17:05:31 -0700349 u8 tbuf [sizeof (struct usb_hub_descriptor)]
350 __attribute__((aligned(4)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 const u8 *bufp = tbuf;
352 int len = 0;
353 int patch_wakeup = 0;
354 unsigned long flags;
355 int status = 0;
356 int n;
357
358 cmd = (struct usb_ctrlrequest *) urb->setup_packet;
359 typeReq = (cmd->bRequestType << 8) | cmd->bRequest;
360 wValue = le16_to_cpu (cmd->wValue);
361 wIndex = le16_to_cpu (cmd->wIndex);
362 wLength = le16_to_cpu (cmd->wLength);
363
364 if (wLength > urb->transfer_buffer_length)
365 goto error;
366
367 urb->actual_length = 0;
368 switch (typeReq) {
369
370 /* DEVICE REQUESTS */
371
David Brownellfb669cc2006-01-24 08:40:27 -0800372 /* The root hub's remote wakeup enable bit is implemented using
373 * driver model wakeup flags. If this system supports wakeup
374 * through USB, userspace may change the default "allow wakeup"
375 * policy through sysfs or these calls.
376 *
377 * Most root hubs support wakeup from downstream devices, for
378 * runtime power management (disabling USB clocks and reducing
379 * VBUS power usage). However, not all of them do so; silicon,
380 * board, and BIOS bugs here are not uncommon, so these can't
381 * be treated quite like external hubs.
382 *
383 * Likewise, not all root hubs will pass wakeup events upstream,
384 * to wake up the whole system. So don't assume root hub and
385 * controller capabilities are identical.
386 */
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 case DeviceRequest | USB_REQ_GET_STATUS:
David Brownellfb669cc2006-01-24 08:40:27 -0800389 tbuf [0] = (device_may_wakeup(&hcd->self.root_hub->dev)
390 << USB_DEVICE_REMOTE_WAKEUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 | (1 << USB_DEVICE_SELF_POWERED);
392 tbuf [1] = 0;
393 len = 2;
394 break;
395 case DeviceOutRequest | USB_REQ_CLEAR_FEATURE:
396 if (wValue == USB_DEVICE_REMOTE_WAKEUP)
David Brownellfb669cc2006-01-24 08:40:27 -0800397 device_set_wakeup_enable(&hcd->self.root_hub->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 else
399 goto error;
400 break;
401 case DeviceOutRequest | USB_REQ_SET_FEATURE:
David Brownellfb669cc2006-01-24 08:40:27 -0800402 if (device_can_wakeup(&hcd->self.root_hub->dev)
403 && wValue == USB_DEVICE_REMOTE_WAKEUP)
404 device_set_wakeup_enable(&hcd->self.root_hub->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 else
406 goto error;
407 break;
408 case DeviceRequest | USB_REQ_GET_CONFIGURATION:
409 tbuf [0] = 1;
410 len = 1;
411 /* FALLTHROUGH */
412 case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
413 break;
414 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
415 switch (wValue & 0xff00) {
416 case USB_DT_DEVICE << 8:
417 if (hcd->driver->flags & HCD_USB2)
418 bufp = usb2_rh_dev_descriptor;
419 else if (hcd->driver->flags & HCD_USB11)
420 bufp = usb11_rh_dev_descriptor;
421 else
422 goto error;
423 len = 18;
424 break;
425 case USB_DT_CONFIG << 8:
426 if (hcd->driver->flags & HCD_USB2) {
427 bufp = hs_rh_config_descriptor;
428 len = sizeof hs_rh_config_descriptor;
429 } else {
430 bufp = fs_rh_config_descriptor;
431 len = sizeof fs_rh_config_descriptor;
432 }
David Brownellfb669cc2006-01-24 08:40:27 -0800433 if (device_can_wakeup(&hcd->self.root_hub->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 patch_wakeup = 1;
435 break;
436 case USB_DT_STRING << 8:
437 n = rh_string (wValue & 0xff, hcd, ubuf, wLength);
438 if (n < 0)
439 goto error;
440 urb->actual_length = n;
441 break;
442 default:
443 goto error;
444 }
445 break;
446 case DeviceRequest | USB_REQ_GET_INTERFACE:
447 tbuf [0] = 0;
448 len = 1;
449 /* FALLTHROUGH */
450 case DeviceOutRequest | USB_REQ_SET_INTERFACE:
451 break;
452 case DeviceOutRequest | USB_REQ_SET_ADDRESS:
453 // wValue == urb->dev->devaddr
454 dev_dbg (hcd->self.controller, "root hub device address %d\n",
455 wValue);
456 break;
457
458 /* INTERFACE REQUESTS (no defined feature/status flags) */
459
460 /* ENDPOINT REQUESTS */
461
462 case EndpointRequest | USB_REQ_GET_STATUS:
463 // ENDPOINT_HALT flag
464 tbuf [0] = 0;
465 tbuf [1] = 0;
466 len = 2;
467 /* FALLTHROUGH */
468 case EndpointOutRequest | USB_REQ_CLEAR_FEATURE:
469 case EndpointOutRequest | USB_REQ_SET_FEATURE:
470 dev_dbg (hcd->self.controller, "no endpoint features yet\n");
471 break;
472
473 /* CLASS REQUESTS (and errors) */
474
475 default:
476 /* non-generic request */
David Brownellb13296c2005-09-27 10:38:54 -0700477 switch (typeReq) {
478 case GetHubStatus:
479 case GetPortStatus:
480 len = 4;
481 break;
482 case GetHubDescriptor:
483 len = sizeof (struct usb_hub_descriptor);
484 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
David Brownellb13296c2005-09-27 10:38:54 -0700486 status = hcd->driver->hub_control (hcd,
487 typeReq, wValue, wIndex,
488 tbuf, wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 break;
490error:
491 /* "protocol stall" on error */
492 status = -EPIPE;
493 }
494
495 if (status) {
496 len = 0;
497 if (status != -EPIPE) {
498 dev_dbg (hcd->self.controller,
499 "CTRL: TypeReq=0x%x val=0x%x "
500 "idx=0x%x len=%d ==> %d\n",
501 typeReq, wValue, wIndex,
David Brownellb13296c2005-09-27 10:38:54 -0700502 wLength, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504 }
505 if (len) {
506 if (urb->transfer_buffer_length < len)
507 len = urb->transfer_buffer_length;
508 urb->actual_length = len;
509 // always USB_DIR_IN, toward host
510 memcpy (ubuf, bufp, len);
511
512 /* report whether RH hardware supports remote wakeup */
513 if (patch_wakeup &&
514 len > offsetof (struct usb_config_descriptor,
515 bmAttributes))
516 ((struct usb_config_descriptor *)ubuf)->bmAttributes
517 |= USB_CONFIG_ATT_WAKEUP;
518 }
519
520 /* any errors get returned through the urb completion */
521 local_irq_save (flags);
522 spin_lock (&urb->lock);
523 if (urb->status == -EINPROGRESS)
524 urb->status = status;
525 spin_unlock (&urb->lock);
David Howells7d12e782006-10-05 14:55:46 +0100526 usb_hcd_giveback_urb (hcd, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 local_irq_restore (flags);
528 return 0;
529}
530
531/*-------------------------------------------------------------------------*/
532
533/*
Alan Sternd5926ae72005-04-21 15:56:37 -0400534 * Root Hub interrupt transfers are polled using a timer if the
535 * driver requests it; otherwise the driver is responsible for
536 * calling usb_hcd_poll_rh_status() when an event occurs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 *
Alan Sternd5926ae72005-04-21 15:56:37 -0400538 * Completions are called in_interrupt(), but they may or may not
539 * be in_irq().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 */
Alan Sternd5926ae72005-04-21 15:56:37 -0400541void usb_hcd_poll_rh_status(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
543 struct urb *urb;
Alan Sternd5926ae72005-04-21 15:56:37 -0400544 int length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 unsigned long flags;
Alan Sternd5926ae72005-04-21 15:56:37 -0400546 char buffer[4]; /* Any root hubs with > 31 ports? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Alan Stern1b42ae62007-03-13 11:10:52 -0400548 if (unlikely(!hcd->rh_registered))
549 return;
Alan Sternd5926ae72005-04-21 15:56:37 -0400550 if (!hcd->uses_new_polling && !hcd->status_urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
Alan Sternd5926ae72005-04-21 15:56:37 -0400553 length = hcd->driver->hub_status_data(hcd, buffer);
554 if (length > 0) {
555
556 /* try to complete the status urb */
557 local_irq_save (flags);
558 spin_lock(&hcd_root_hub_lock);
559 urb = hcd->status_urb;
560 if (urb) {
561 spin_lock(&urb->lock);
562 if (urb->status == -EINPROGRESS) {
563 hcd->poll_pending = 0;
564 hcd->status_urb = NULL;
565 urb->status = 0;
566 urb->hcpriv = NULL;
567 urb->actual_length = length;
568 memcpy(urb->transfer_buffer, buffer, length);
569 } else /* urb has been unlinked */
570 length = 0;
571 spin_unlock(&urb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 } else
Alan Sternd5926ae72005-04-21 15:56:37 -0400573 length = 0;
574 spin_unlock(&hcd_root_hub_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Alan Sternd5926ae72005-04-21 15:56:37 -0400576 /* local irqs are always blocked in completions */
577 if (length > 0)
David Howells7d12e782006-10-05 14:55:46 +0100578 usb_hcd_giveback_urb (hcd, urb);
Alan Sternd5926ae72005-04-21 15:56:37 -0400579 else
580 hcd->poll_pending = 1;
581 local_irq_restore (flags);
582 }
583
584 /* The USB 2.0 spec says 256 ms. This is close enough and won't
Arjan van de Ven01cd0812007-05-22 12:42:56 -0700585 * exceed that limit if HZ is 100. The math is more clunky than
586 * maybe expected, this is to make sure that all timers for USB devices
587 * fire at the same time to give the CPU a break inbetween */
Alan Sternd5926ae72005-04-21 15:56:37 -0400588 if (hcd->uses_new_polling ? hcd->poll_rh :
589 (length == 0 && hcd->status_urb != NULL))
Arjan van de Ven01cd0812007-05-22 12:42:56 -0700590 mod_timer (&hcd->rh_timer, (jiffies/(HZ/4) + 1) * (HZ/4));
Alan Sternd5926ae72005-04-21 15:56:37 -0400591}
592EXPORT_SYMBOL_GPL(usb_hcd_poll_rh_status);
593
594/* timer callback */
595static void rh_timer_func (unsigned long _hcd)
596{
597 usb_hcd_poll_rh_status((struct usb_hcd *) _hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
600/*-------------------------------------------------------------------------*/
601
Alan Sternd5926ae72005-04-21 15:56:37 -0400602static int rh_queue_status (struct usb_hcd *hcd, struct urb *urb)
603{
604 int retval;
605 unsigned long flags;
606 int len = 1 + (urb->dev->maxchild / 8);
607
608 spin_lock_irqsave (&hcd_root_hub_lock, flags);
609 if (urb->status != -EINPROGRESS) /* already unlinked */
610 retval = urb->status;
611 else if (hcd->status_urb || urb->transfer_buffer_length < len) {
612 dev_dbg (hcd->self.controller, "not queuing rh status urb\n");
613 retval = -EINVAL;
614 } else {
615 hcd->status_urb = urb;
616 urb->hcpriv = hcd; /* indicate it's queued */
617
618 if (!hcd->uses_new_polling)
Arjan van de Ven01cd0812007-05-22 12:42:56 -0700619 mod_timer (&hcd->rh_timer,
620 (jiffies/(HZ/4) + 1) * (HZ/4));
Alan Sternd5926ae72005-04-21 15:56:37 -0400621
622 /* If a status change has already occurred, report it ASAP */
623 else if (hcd->poll_pending)
624 mod_timer (&hcd->rh_timer, jiffies);
625 retval = 0;
626 }
627 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
628 return retval;
629}
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631static int rh_urb_enqueue (struct usb_hcd *hcd, struct urb *urb)
632{
Alan Sternd5926ae72005-04-21 15:56:37 -0400633 if (usb_pipeint (urb->pipe))
634 return rh_queue_status (hcd, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (usb_pipecontrol (urb->pipe))
636 return rh_call_control (hcd, urb);
Alan Sternd5926ae72005-04-21 15:56:37 -0400637 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
640/*-------------------------------------------------------------------------*/
641
Alan Stern455b25f2006-08-11 16:01:45 -0400642/* Unlinks of root-hub control URBs are legal, but they don't do anything
643 * since these URBs always execute synchronously.
Alan Sternd5926ae72005-04-21 15:56:37 -0400644 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645static int usb_rh_urb_dequeue (struct usb_hcd *hcd, struct urb *urb)
646{
Alan Stern455b25f2006-08-11 16:01:45 -0400647 unsigned long flags;
648
Alan Sternd5926ae72005-04-21 15:56:37 -0400649 if (usb_pipeendpoint(urb->pipe) == 0) { /* Control URB */
Alan Stern455b25f2006-08-11 16:01:45 -0400650 ; /* Do nothing */
Alan Sternd5926ae72005-04-21 15:56:37 -0400651
652 } else { /* Status URB */
653 if (!hcd->uses_new_polling)
Alan Stern455b25f2006-08-11 16:01:45 -0400654 del_timer (&hcd->rh_timer);
655 local_irq_save (flags);
Alan Sternd5926ae72005-04-21 15:56:37 -0400656 spin_lock (&hcd_root_hub_lock);
657 if (urb == hcd->status_urb) {
658 hcd->status_urb = NULL;
659 urb->hcpriv = NULL;
660 } else
661 urb = NULL; /* wasn't fully queued */
662 spin_unlock (&hcd_root_hub_lock);
663 if (urb)
David Howells7d12e782006-10-05 14:55:46 +0100664 usb_hcd_giveback_urb (hcd, urb);
Alan Stern455b25f2006-08-11 16:01:45 -0400665 local_irq_restore (flags);
Alan Sternd5926ae72005-04-21 15:56:37 -0400666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 return 0;
669}
670
671/*-------------------------------------------------------------------------*/
672
gregkh@suse.de8561b102005-03-15 15:10:13 -0800673static struct class *usb_host_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675int usb_host_init(void)
676{
gregkh@suse.de8561b102005-03-15 15:10:13 -0800677 int retval = 0;
678
679 usb_host_class = class_create(THIS_MODULE, "usb_host");
680 if (IS_ERR(usb_host_class))
681 retval = PTR_ERR(usb_host_class);
682 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
685void usb_host_cleanup(void)
686{
gregkh@suse.de8561b102005-03-15 15:10:13 -0800687 class_destroy(usb_host_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
690/**
691 * usb_bus_init - shared initialization code
692 * @bus: the bus structure being initialized
693 *
694 * This code is used to initialize a usb_bus structure, memory for which is
695 * separately managed.
696 */
697static void usb_bus_init (struct usb_bus *bus)
698{
699 memset (&bus->devmap, 0, sizeof(struct usb_devmap));
700
701 bus->devnum_next = 1;
702
703 bus->root_hub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 bus->busnum = -1;
705 bus->bandwidth_allocated = 0;
706 bus->bandwidth_int_reqs = 0;
707 bus->bandwidth_isoc_reqs = 0;
708
709 INIT_LIST_HEAD (&bus->bus_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712/*-------------------------------------------------------------------------*/
713
714/**
715 * usb_register_bus - registers the USB host controller with the usb core
716 * @bus: pointer to the bus to register
717 * Context: !in_interrupt()
718 *
719 * Assigns a bus number, and links the controller into usbcore data
720 * structures so that it can be seen by scanning the bus list.
721 */
722static int usb_register_bus(struct usb_bus *bus)
723{
724 int busnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100726 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 busnum = find_next_zero_bit (busmap.busmap, USB_MAXBUS, 1);
728 if (busnum < USB_MAXBUS) {
729 set_bit (busnum, busmap.busmap);
730 bus->busnum = busnum;
731 } else {
732 printk (KERN_ERR "%s: too many buses\n", usbcore_name);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100733 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return -E2BIG;
735 }
736
Greg Kroah-Hartman53f46542005-10-27 22:25:43 -0700737 bus->class_dev = class_device_create(usb_host_class, NULL, MKDEV(0,0),
738 bus->controller, "usb_host%d", busnum);
gregkh@suse.de8561b102005-03-15 15:10:13 -0800739 if (IS_ERR(bus->class_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 clear_bit(busnum, busmap.busmap);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100741 mutex_unlock(&usb_bus_list_lock);
gregkh@suse.de8561b102005-03-15 15:10:13 -0800742 return PTR_ERR(bus->class_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
744
gregkh@suse.de8561b102005-03-15 15:10:13 -0800745 class_set_devdata(bus->class_dev, bus);
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 /* Add it to the local list of buses */
748 list_add (&bus->bus_list, &usb_bus_list);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100749 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -0700751 usb_notify_add_bus(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
753 dev_info (bus->controller, "new USB bus registered, assigned bus number %d\n", bus->busnum);
754 return 0;
755}
756
757/**
758 * usb_deregister_bus - deregisters the USB host controller
759 * @bus: pointer to the bus to deregister
760 * Context: !in_interrupt()
761 *
762 * Recycles the bus number, and unlinks the controller from usbcore data
763 * structures so that it won't be seen by scanning the bus list.
764 */
765static void usb_deregister_bus (struct usb_bus *bus)
766{
767 dev_info (bus->controller, "USB bus %d deregistered\n", bus->busnum);
768
769 /*
770 * NOTE: make sure that all the devices are removed by the
771 * controller code, as well as having it call this when cleaning
772 * itself up
773 */
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100774 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 list_del (&bus->bus_list);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100776 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -0700778 usb_notify_remove_bus(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 clear_bit (bus->busnum, busmap.busmap);
781
gregkh@suse.de8561b102005-03-15 15:10:13 -0800782 class_device_unregister(bus->class_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
785/**
Alan Stern8ec8d202005-04-25 11:25:17 -0400786 * register_root_hub - called by usb_add_hcd() to register a root hub
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 * @hcd: host controller for this root hub
788 *
Alan Stern8ec8d202005-04-25 11:25:17 -0400789 * This function registers the root hub with the USB subsystem. It sets up
David Brownellb1e8f0a2006-01-23 15:25:40 -0800790 * the device properly in the device tree and then calls usb_new_device()
791 * to register the usb device. It also assigns the root hub's USB address
792 * (always 1).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 */
David Brownellb1e8f0a2006-01-23 15:25:40 -0800794static int register_root_hub(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
796 struct device *parent_dev = hcd->self.controller;
David Brownellb1e8f0a2006-01-23 15:25:40 -0800797 struct usb_device *usb_dev = hcd->self.root_hub;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 const int devnum = 1;
799 int retval;
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 usb_dev->devnum = devnum;
802 usb_dev->bus->devnum_next = devnum + 1;
803 memset (&usb_dev->bus->devmap.devicemap, 0,
804 sizeof usb_dev->bus->devmap.devicemap);
805 set_bit (devnum, usb_dev->bus->devmap.devicemap);
806 usb_set_device_state(usb_dev, USB_STATE_ADDRESS);
807
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100808 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 usb_dev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
811 retval = usb_get_device_descriptor(usb_dev, USB_DT_DEVICE_SIZE);
812 if (retval != sizeof usb_dev->descriptor) {
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100813 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 dev_dbg (parent_dev, "can't read %s device descriptor %d\n",
815 usb_dev->dev.bus_id, retval);
816 return (retval < 0) ? retval : -EMSGSIZE;
817 }
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 retval = usb_new_device (usb_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 dev_err (parent_dev, "can't register root hub for %s, %d\n",
822 usb_dev->dev.bus_id, retval);
823 }
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100824 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 if (retval == 0) {
827 spin_lock_irq (&hcd_root_hub_lock);
828 hcd->rh_registered = 1;
829 spin_unlock_irq (&hcd_root_hub_lock);
830
831 /* Did the HC die before the root hub was registered? */
832 if (hcd->state == HC_STATE_HALT)
833 usb_hc_died (hcd); /* This time clean up */
834 }
835
836 return retval;
837}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Alan Sternd5926ae72005-04-21 15:56:37 -0400839void usb_enable_root_hub_irq (struct usb_bus *bus)
840{
841 struct usb_hcd *hcd;
842
843 hcd = container_of (bus, struct usb_hcd, self);
Alan Sternd19ac7d2006-09-25 15:41:12 -0400844 if (hcd->driver->hub_irq_enable && hcd->state != HC_STATE_HALT)
Alan Sternd5926ae72005-04-21 15:56:37 -0400845 hcd->driver->hub_irq_enable (hcd);
846}
847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849/*-------------------------------------------------------------------------*/
850
851/**
852 * usb_calc_bus_time - approximate periodic transaction time in nanoseconds
853 * @speed: from dev->speed; USB_SPEED_{LOW,FULL,HIGH}
854 * @is_input: true iff the transaction sends data to the host
855 * @isoc: true for isochronous transactions, false for interrupt ones
856 * @bytecount: how many bytes in the transaction.
857 *
858 * Returns approximate bus time in nanoseconds for a periodic transaction.
859 * See USB 2.0 spec section 5.11.3; only periodic transfers need to be
860 * scheduled in software, this function is only used for such scheduling.
861 */
862long usb_calc_bus_time (int speed, int is_input, int isoc, int bytecount)
863{
864 unsigned long tmp;
865
866 switch (speed) {
867 case USB_SPEED_LOW: /* INTR only */
868 if (is_input) {
869 tmp = (67667L * (31L + 10L * BitTime (bytecount))) / 1000L;
870 return (64060L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
871 } else {
872 tmp = (66700L * (31L + 10L * BitTime (bytecount))) / 1000L;
873 return (64107L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
874 }
875 case USB_SPEED_FULL: /* ISOC or INTR */
876 if (isoc) {
877 tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
878 return (((is_input) ? 7268L : 6265L) + BW_HOST_DELAY + tmp);
879 } else {
880 tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
881 return (9107L + BW_HOST_DELAY + tmp);
882 }
883 case USB_SPEED_HIGH: /* ISOC or INTR */
884 // FIXME adjust for input vs output
885 if (isoc)
Dan Streetman498f78e2005-07-29 12:18:28 -0700886 tmp = HS_NSECS_ISO (bytecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 else
Dan Streetman498f78e2005-07-29 12:18:28 -0700888 tmp = HS_NSECS (bytecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return tmp;
890 default:
891 pr_debug ("%s: bogus device speed!\n", usbcore_name);
892 return -1;
893 }
894}
895EXPORT_SYMBOL (usb_calc_bus_time);
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898/*-------------------------------------------------------------------------*/
899
900/*
901 * Generic HC operations.
902 */
903
904/*-------------------------------------------------------------------------*/
905
Pete Zaitcev9f6a93f2007-06-08 13:37:49 -0700906static void urb_unlink(struct usb_hcd *hcd, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
908 unsigned long flags;
Pete Zaitcev9f6a93f2007-06-08 13:37:49 -0700909 int at_root_hub = (urb->dev == hcd->self.root_hub);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 /* clear all state linking urb to this dev (and hcd) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 spin_lock_irqsave (&hcd_data_lock, flags);
913 list_del_init (&urb->urb_list);
914 spin_unlock_irqrestore (&hcd_data_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Pete Zaitcev9f6a93f2007-06-08 13:37:49 -0700916 if (hcd->self.uses_dma && !at_root_hub) {
917 if (usb_pipecontrol (urb->pipe)
918 && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP))
919 dma_unmap_single (hcd->self.controller, urb->setup_dma,
920 sizeof (struct usb_ctrlrequest),
921 DMA_TO_DEVICE);
922 if (urb->transfer_buffer_length != 0
923 && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP))
924 dma_unmap_single (hcd->self.controller,
925 urb->transfer_dma,
926 urb->transfer_buffer_length,
927 usb_pipein (urb->pipe)
928 ? DMA_FROM_DEVICE
929 : DMA_TO_DEVICE);
930 }
931}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933/* may be called in any context with a valid urb->dev usecount
934 * caller surrenders "ownership" of urb
935 * expects usb_submit_urb() to have sanity checked and conditioned all
936 * inputs in the urb
937 */
Alan Sterna6d2bb92006-08-30 11:27:36 -0400938int usb_hcd_submit_urb (struct urb *urb, gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
940 int status;
Alan Stern17200582006-08-30 11:32:52 -0400941 struct usb_hcd *hcd = bus_to_hcd(urb->dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 struct usb_host_endpoint *ep;
943 unsigned long flags;
944
945 if (!hcd)
946 return -ENODEV;
947
948 usbmon_urb_submit(&hcd->self, urb);
949
950 /*
951 * Atomically queue the urb, first to our records, then to the HCD.
952 * Access to urb->status is controlled by urb->lock ... changes on
953 * i/o completion (normal or fault) or unlinking.
954 */
955
956 // FIXME: verify that quiescing hc works right (RH cleans up)
957
958 spin_lock_irqsave (&hcd_data_lock, flags);
959 ep = (usb_pipein(urb->pipe) ? urb->dev->ep_in : urb->dev->ep_out)
960 [usb_pipeendpoint(urb->pipe)];
961 if (unlikely (!ep))
962 status = -ENOENT;
963 else if (unlikely (urb->reject))
964 status = -EPERM;
965 else switch (hcd->state) {
966 case HC_STATE_RUNNING:
967 case HC_STATE_RESUMING:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 list_add_tail (&urb->urb_list, &ep->urb_list);
969 status = 0;
970 break;
971 default:
972 status = -ESHUTDOWN;
973 break;
974 }
975 spin_unlock_irqrestore (&hcd_data_lock, flags);
976 if (status) {
977 INIT_LIST_HEAD (&urb->urb_list);
978 usbmon_urb_submit_error(&hcd->self, urb, status);
979 return status;
980 }
981
982 /* increment urb's reference count as part of giving it to the HCD
983 * (which now controls it). HCD guarantees that it either returns
984 * an error or calls giveback(), but not both.
985 */
986 urb = usb_get_urb (urb);
987 atomic_inc (&urb->use_count);
988
989 if (urb->dev == hcd->self.root_hub) {
990 /* NOTE: requirement on hub callers (usbfs and the hub
991 * driver, for now) that URBs' urb->transfer_buffer be
992 * valid and usb_buffer_{sync,unmap}() not be needed, since
993 * they could clobber root hub response data.
994 */
995 status = rh_urb_enqueue (hcd, urb);
996 goto done;
997 }
998
999 /* lower level hcd code should use *_dma exclusively,
1000 * unless it uses pio or talks to another transport.
1001 */
Alan Sterndd990f12006-08-30 11:29:56 -04001002 if (hcd->self.uses_dma) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (usb_pipecontrol (urb->pipe)
1004 && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP))
1005 urb->setup_dma = dma_map_single (
1006 hcd->self.controller,
1007 urb->setup_packet,
1008 sizeof (struct usb_ctrlrequest),
1009 DMA_TO_DEVICE);
1010 if (urb->transfer_buffer_length != 0
1011 && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP))
1012 urb->transfer_dma = dma_map_single (
1013 hcd->self.controller,
1014 urb->transfer_buffer,
1015 urb->transfer_buffer_length,
1016 usb_pipein (urb->pipe)
1017 ? DMA_FROM_DEVICE
1018 : DMA_TO_DEVICE);
1019 }
1020
1021 status = hcd->driver->urb_enqueue (hcd, ep, urb, mem_flags);
1022done:
1023 if (unlikely (status)) {
Pete Zaitcev9f6a93f2007-06-08 13:37:49 -07001024 urb_unlink(hcd, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 atomic_dec (&urb->use_count);
1026 if (urb->reject)
1027 wake_up (&usb_kill_urb_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 usbmon_urb_submit_error(&hcd->self, urb, status);
Pete Zaitcevd984abc2007-05-11 22:00:29 -07001029 usb_put_urb (urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031 return status;
1032}
1033
1034/*-------------------------------------------------------------------------*/
1035
1036/* called in any context */
Alan Sterna6d2bb92006-08-30 11:27:36 -04001037int usb_hcd_get_frame_number (struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
Alan Stern17200582006-08-30 11:32:52 -04001039 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (!HC_IS_RUNNING (hcd->state))
1042 return -ESHUTDOWN;
1043 return hcd->driver->get_frame_number (hcd);
1044}
1045
1046/*-------------------------------------------------------------------------*/
1047
1048/* this makes the hcd giveback() the urb more quickly, by kicking it
1049 * off hardware queues (which may take a while) and returning it as
1050 * soon as practical. we've already set up the urb's return status,
1051 * but we can't know if the callback completed already.
1052 */
1053static int
1054unlink1 (struct usb_hcd *hcd, struct urb *urb)
1055{
1056 int value;
1057
1058 if (urb->dev == hcd->self.root_hub)
1059 value = usb_rh_urb_dequeue (hcd, urb);
1060 else {
1061
1062 /* The only reason an HCD might fail this call is if
1063 * it has not yet fully queued the urb to begin with.
1064 * Such failures should be harmless. */
1065 value = hcd->driver->urb_dequeue (hcd, urb);
1066 }
1067
1068 if (value != 0)
1069 dev_dbg (hcd->self.controller, "dequeue %p --> %d\n",
1070 urb, value);
1071 return value;
1072}
1073
1074/*
1075 * called in any context
1076 *
1077 * caller guarantees urb won't be recycled till both unlink()
1078 * and the urb's completion function return
1079 */
Alan Sterna6d2bb92006-08-30 11:27:36 -04001080int usb_hcd_unlink_urb (struct urb *urb, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081{
1082 struct usb_host_endpoint *ep;
1083 struct usb_hcd *hcd = NULL;
1084 struct device *sys = NULL;
1085 unsigned long flags;
1086 struct list_head *tmp;
1087 int retval;
1088
1089 if (!urb)
1090 return -EINVAL;
1091 if (!urb->dev || !urb->dev->bus)
1092 return -ENODEV;
1093 ep = (usb_pipein(urb->pipe) ? urb->dev->ep_in : urb->dev->ep_out)
1094 [usb_pipeendpoint(urb->pipe)];
1095 if (!ep)
1096 return -ENODEV;
1097
1098 /*
1099 * we contend for urb->status with the hcd core,
1100 * which changes it while returning the urb.
1101 *
1102 * Caller guaranteed that the urb pointer hasn't been freed, and
1103 * that it was submitted. But as a rule it can't know whether or
1104 * not it's already been unlinked ... so we respect the reversed
1105 * lock sequence needed for the usb_hcd_giveback_urb() code paths
1106 * (urb lock, then hcd_data_lock) in case some other CPU is now
1107 * unlinking it.
1108 */
1109 spin_lock_irqsave (&urb->lock, flags);
1110 spin_lock (&hcd_data_lock);
1111
1112 sys = &urb->dev->dev;
Alan Stern17200582006-08-30 11:32:52 -04001113 hcd = bus_to_hcd(urb->dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 if (hcd == NULL) {
1115 retval = -ENODEV;
1116 goto done;
1117 }
1118
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 /* insist the urb is still queued */
1120 list_for_each(tmp, &ep->urb_list) {
1121 if (tmp == &urb->urb_list)
1122 break;
1123 }
1124 if (tmp != &urb->urb_list) {
1125 retval = -EIDRM;
1126 goto done;
1127 }
1128
1129 /* Any status except -EINPROGRESS means something already started to
1130 * unlink this URB from the hardware. So there's no more work to do.
1131 */
1132 if (urb->status != -EINPROGRESS) {
1133 retval = -EBUSY;
1134 goto done;
1135 }
1136
1137 /* IRQ setup can easily be broken so that USB controllers
1138 * never get completion IRQs ... maybe even the ones we need to
1139 * finish unlinking the initial failed usb_set_address()
1140 * or device descriptor fetch.
1141 */
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001142 if (!test_bit(HCD_FLAG_SAW_IRQ, &hcd->flags)
1143 && hcd->self.root_hub != urb->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 dev_warn (hcd->self.controller, "Unlink after no-IRQ? "
1145 "Controller is probably using the wrong IRQ."
1146 "\n");
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001147 set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 }
1149
1150 urb->status = status;
1151
1152 spin_unlock (&hcd_data_lock);
1153 spin_unlock_irqrestore (&urb->lock, flags);
1154
1155 retval = unlink1 (hcd, urb);
1156 if (retval == 0)
1157 retval = -EINPROGRESS;
1158 return retval;
1159
1160done:
1161 spin_unlock (&hcd_data_lock);
1162 spin_unlock_irqrestore (&urb->lock, flags);
1163 if (retval != -EIDRM && sys && sys->driver)
1164 dev_dbg (sys, "hcd_unlink_urb %p fail %d\n", urb, retval);
1165 return retval;
1166}
1167
1168/*-------------------------------------------------------------------------*/
1169
1170/* disables the endpoint: cancels any pending urbs, then synchronizes with
Alan Stern455b25f2006-08-11 16:01:45 -04001171 * the hcd to make sure all endpoint state is gone from hardware, and then
1172 * waits until the endpoint's queue is completely drained. use for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 * set_configuration, set_interface, driver removal, physical disconnect.
1174 *
1175 * example: a qh stored in ep->hcpriv, holding state related to endpoint
1176 * type, maxpacket size, toggle, halt status, and scheduling.
1177 */
Alan Sterna6d2bb92006-08-30 11:27:36 -04001178void usb_hcd_endpoint_disable (struct usb_device *udev,
1179 struct usb_host_endpoint *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
1181 struct usb_hcd *hcd;
1182 struct urb *urb;
1183
Alan Stern17200582006-08-30 11:32:52 -04001184 hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 local_irq_disable ();
1186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 /* ep is already gone from udev->ep_{in,out}[]; no more submits */
1188rescan:
1189 spin_lock (&hcd_data_lock);
1190 list_for_each_entry (urb, &ep->urb_list, urb_list) {
1191 int tmp;
1192
Alan Stern455b25f2006-08-11 16:01:45 -04001193 /* the urb may already have been unlinked */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (urb->status != -EINPROGRESS)
1195 continue;
1196 usb_get_urb (urb);
1197 spin_unlock (&hcd_data_lock);
1198
1199 spin_lock (&urb->lock);
1200 tmp = urb->status;
1201 if (tmp == -EINPROGRESS)
1202 urb->status = -ESHUTDOWN;
1203 spin_unlock (&urb->lock);
1204
1205 /* kick hcd unless it's already returning this */
1206 if (tmp == -EINPROGRESS) {
1207 tmp = urb->pipe;
1208 unlink1 (hcd, urb);
1209 dev_dbg (hcd->self.controller,
1210 "shutdown urb %p pipe %08x ep%d%s%s\n",
1211 urb, tmp, usb_pipeendpoint (tmp),
1212 (tmp & USB_DIR_IN) ? "in" : "out",
1213 ({ char *s; \
1214 switch (usb_pipetype (tmp)) { \
1215 case PIPE_CONTROL: s = ""; break; \
1216 case PIPE_BULK: s = "-bulk"; break; \
1217 case PIPE_INTERRUPT: s = "-intr"; break; \
1218 default: s = "-iso"; break; \
1219 }; s;}));
1220 }
1221 usb_put_urb (urb);
1222
1223 /* list contents may have changed */
1224 goto rescan;
1225 }
1226 spin_unlock (&hcd_data_lock);
1227 local_irq_enable ();
1228
1229 /* synchronize with the hardware, so old configuration state
1230 * clears out immediately (and will be freed).
1231 */
1232 might_sleep ();
1233 if (hcd->driver->endpoint_disable)
1234 hcd->driver->endpoint_disable (hcd, ep);
Alan Stern455b25f2006-08-11 16:01:45 -04001235
1236 /* Wait until the endpoint queue is completely empty. Most HCDs
1237 * will have done this already in their endpoint_disable method,
1238 * but some might not. And there could be root-hub control URBs
1239 * still pending since they aren't affected by the HCDs'
1240 * endpoint_disable methods.
1241 */
1242 while (!list_empty (&ep->urb_list)) {
1243 spin_lock_irq (&hcd_data_lock);
1244
1245 /* The list may have changed while we acquired the spinlock */
1246 urb = NULL;
1247 if (!list_empty (&ep->urb_list)) {
1248 urb = list_entry (ep->urb_list.prev, struct urb,
1249 urb_list);
1250 usb_get_urb (urb);
1251 }
1252 spin_unlock_irq (&hcd_data_lock);
1253
1254 if (urb) {
1255 usb_kill_urb (urb);
1256 usb_put_urb (urb);
1257 }
1258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259}
1260
1261/*-------------------------------------------------------------------------*/
1262
David Brownell92936772005-09-22 22:32:11 -07001263#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Alan Stern686314c2007-05-30 15:34:36 -04001265int hcd_bus_suspend(struct usb_device *rhdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266{
Alan Stern686314c2007-05-30 15:34:36 -04001267 struct usb_hcd *hcd = container_of(rhdev->bus, struct usb_hcd, self);
1268 int status;
1269 int old_state = hcd->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
Alan Stern686314c2007-05-30 15:34:36 -04001271 dev_dbg(&rhdev->dev, "bus %s%s\n",
1272 rhdev->auto_pm ? "auto-" : "", "suspend");
1273 if (!hcd->driver->bus_suspend) {
1274 status = -ENOENT;
1275 } else {
1276 hcd->state = HC_STATE_QUIESCING;
1277 status = hcd->driver->bus_suspend(hcd);
1278 }
1279 if (status == 0) {
1280 usb_set_device_state(rhdev, USB_STATE_SUSPENDED);
David Brownell92936772005-09-22 22:32:11 -07001281 hcd->state = HC_STATE_SUSPENDED;
Alan Stern686314c2007-05-30 15:34:36 -04001282 } else {
1283 hcd->state = old_state;
1284 dev_dbg(&rhdev->dev, "bus %s fail, err %d\n",
David Brownell92936772005-09-22 22:32:11 -07001285 "suspend", status);
Alan Stern686314c2007-05-30 15:34:36 -04001286 }
David Brownell92936772005-09-22 22:32:11 -07001287 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
1289
Alan Stern686314c2007-05-30 15:34:36 -04001290int hcd_bus_resume(struct usb_device *rhdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
Alan Stern686314c2007-05-30 15:34:36 -04001292 struct usb_hcd *hcd = container_of(rhdev->bus, struct usb_hcd, self);
1293 int status;
Alan Sterncfa59da2007-06-21 16:25:35 -04001294 int old_state = hcd->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Alan Stern686314c2007-05-30 15:34:36 -04001296 dev_dbg(&rhdev->dev, "usb %s%s\n",
1297 rhdev->auto_pm ? "auto-" : "", "resume");
Alan Stern0c0382e2005-10-13 17:08:02 -04001298 if (!hcd->driver->bus_resume)
David Brownell92936772005-09-22 22:32:11 -07001299 return -ENOENT;
David Brownell979d5192005-09-22 22:32:24 -07001300 if (hcd->state == HC_STATE_RUNNING)
1301 return 0;
Alan Stern686314c2007-05-30 15:34:36 -04001302
David Brownell92936772005-09-22 22:32:11 -07001303 hcd->state = HC_STATE_RESUMING;
Alan Stern686314c2007-05-30 15:34:36 -04001304 status = hcd->driver->bus_resume(hcd);
1305 if (status == 0) {
1306 /* TRSMRCY = 10 msec */
1307 msleep(10);
1308 usb_set_device_state(rhdev, rhdev->actconfig
1309 ? USB_STATE_CONFIGURED
1310 : USB_STATE_ADDRESS);
David Brownell92936772005-09-22 22:32:11 -07001311 hcd->state = HC_STATE_RUNNING;
Alan Stern686314c2007-05-30 15:34:36 -04001312 } else {
Alan Sterncfa59da2007-06-21 16:25:35 -04001313 hcd->state = old_state;
Alan Stern686314c2007-05-30 15:34:36 -04001314 dev_dbg(&rhdev->dev, "bus %s fail, err %d\n",
David Brownell92936772005-09-22 22:32:11 -07001315 "resume", status);
Alan Sterncfa59da2007-06-21 16:25:35 -04001316 if (status != -ESHUTDOWN)
1317 usb_hc_died(hcd);
David Brownell92936772005-09-22 22:32:11 -07001318 }
1319 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320}
1321
Alan Stern6b157c92007-03-13 16:37:30 -04001322/* Workqueue routine for root-hub remote wakeup */
1323static void hcd_resume_work(struct work_struct *work)
1324{
1325 struct usb_hcd *hcd = container_of(work, struct usb_hcd, wakeup_work);
1326 struct usb_device *udev = hcd->self.root_hub;
1327
1328 usb_lock_device(udev);
Alan Stern19410442007-03-27 13:33:59 -04001329 usb_mark_last_busy(udev);
Alan Stern6b157c92007-03-13 16:37:30 -04001330 usb_external_resume_device(udev);
1331 usb_unlock_device(udev);
1332}
1333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334/**
1335 * usb_hcd_resume_root_hub - called by HCD to resume its root hub
1336 * @hcd: host controller for this root hub
1337 *
1338 * The USB host controller calls this function when its root hub is
1339 * suspended (with the remote wakeup feature enabled) and a remote
Alan Stern6b157c92007-03-13 16:37:30 -04001340 * wakeup request is received. The routine submits a workqueue request
1341 * to resume the root hub (that is, manage its downstream ports again).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 */
1343void usb_hcd_resume_root_hub (struct usb_hcd *hcd)
1344{
1345 unsigned long flags;
1346
1347 spin_lock_irqsave (&hcd_root_hub_lock, flags);
1348 if (hcd->rh_registered)
Alan Stern6b157c92007-03-13 16:37:30 -04001349 queue_work(ksuspend_usb_wq, &hcd->wakeup_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
1351}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352EXPORT_SYMBOL_GPL(usb_hcd_resume_root_hub);
1353
David Brownell92936772005-09-22 22:32:11 -07001354#endif
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356/*-------------------------------------------------------------------------*/
1357
1358#ifdef CONFIG_USB_OTG
1359
1360/**
1361 * usb_bus_start_enum - start immediate enumeration (for OTG)
1362 * @bus: the bus (must use hcd framework)
1363 * @port_num: 1-based number of port; usually bus->otg_port
1364 * Context: in_interrupt()
1365 *
1366 * Starts enumeration, with an immediate reset followed later by
1367 * khubd identifying and possibly configuring the device.
1368 * This is needed by OTG controller drivers, where it helps meet
1369 * HNP protocol timing requirements for starting a port reset.
1370 */
1371int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num)
1372{
1373 struct usb_hcd *hcd;
1374 int status = -EOPNOTSUPP;
1375
1376 /* NOTE: since HNP can't start by grabbing the bus's address0_sem,
1377 * boards with root hubs hooked up to internal devices (instead of
1378 * just the OTG port) may need more attention to resetting...
1379 */
1380 hcd = container_of (bus, struct usb_hcd, self);
1381 if (port_num && hcd->driver->start_port_reset)
1382 status = hcd->driver->start_port_reset(hcd, port_num);
1383
1384 /* run khubd shortly after (first) root port reset finishes;
1385 * it may issue others, until at least 50 msecs have passed.
1386 */
1387 if (status == 0)
1388 mod_timer(&hcd->rh_timer, jiffies + msecs_to_jiffies(10));
1389 return status;
1390}
1391EXPORT_SYMBOL (usb_bus_start_enum);
1392
1393#endif
1394
1395/*-------------------------------------------------------------------------*/
1396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397/**
1398 * usb_hcd_giveback_urb - return URB from HCD to device driver
1399 * @hcd: host controller returning the URB
1400 * @urb: urb being returned to the USB device driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 * Context: in_interrupt()
1402 *
1403 * This hands the URB from HCD to its USB device driver, using its
1404 * completion function. The HCD has freed all per-urb resources
1405 * (and is done using urb->hcpriv). It also released all HCD locks;
1406 * the device driver won't cause problems if it frees, modifies,
1407 * or resubmits this URB.
1408 */
David Howells7d12e782006-10-05 14:55:46 +01001409void usb_hcd_giveback_urb (struct usb_hcd *hcd, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410{
Pete Zaitcev9f6a93f2007-06-08 13:37:49 -07001411 urb_unlink(hcd, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 usbmon_urb_complete (&hcd->self, urb);
Oliver Neukum51a2f072007-05-25 13:40:56 +02001413 usb_unanchor_urb(urb);
1414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 /* pass ownership to the completion handler */
David Howells7d12e782006-10-05 14:55:46 +01001416 urb->complete (urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 atomic_dec (&urb->use_count);
1418 if (unlikely (urb->reject))
1419 wake_up (&usb_kill_urb_queue);
1420 usb_put_urb (urb);
1421}
1422EXPORT_SYMBOL (usb_hcd_giveback_urb);
1423
1424/*-------------------------------------------------------------------------*/
1425
1426/**
1427 * usb_hcd_irq - hook IRQs to HCD framework (bus glue)
1428 * @irq: the IRQ being raised
1429 * @__hcd: pointer to the HCD whose IRQ is being signaled
1430 * @r: saved hardware registers
1431 *
1432 * If the controller isn't HALTed, calls the driver's irq handler.
1433 * Checks whether the controller is now dead.
1434 */
David Howells7d12e782006-10-05 14:55:46 +01001435irqreturn_t usb_hcd_irq (int irq, void *__hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
1437 struct usb_hcd *hcd = __hcd;
1438 int start = hcd->state;
1439
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001440 if (unlikely(start == HC_STATE_HALT ||
1441 !test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 return IRQ_NONE;
David Howells7d12e782006-10-05 14:55:46 +01001443 if (hcd->driver->irq (hcd) == IRQ_NONE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 return IRQ_NONE;
1445
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001446 set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
1447
1448 if (unlikely(hcd->state == HC_STATE_HALT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 usb_hc_died (hcd);
1450 return IRQ_HANDLED;
1451}
1452
1453/*-------------------------------------------------------------------------*/
1454
1455/**
1456 * usb_hc_died - report abnormal shutdown of a host controller (bus glue)
1457 * @hcd: pointer to the HCD representing the controller
1458 *
1459 * This is called by bus glue to report a USB host controller that died
1460 * while operations may still have been pending. It's called automatically
1461 * by the PCI glue, so only glue for non-PCI busses should need to call it.
1462 */
1463void usb_hc_died (struct usb_hcd *hcd)
1464{
1465 unsigned long flags;
1466
1467 dev_err (hcd->self.controller, "HC died; cleaning up\n");
1468
1469 spin_lock_irqsave (&hcd_root_hub_lock, flags);
1470 if (hcd->rh_registered) {
Alan Sternd5926ae72005-04-21 15:56:37 -04001471 hcd->poll_rh = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 /* make khubd clean up old urbs and devices */
1474 usb_set_device_state (hcd->self.root_hub,
1475 USB_STATE_NOTATTACHED);
1476 usb_kick_khubd (hcd->self.root_hub);
1477 }
1478 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
1479}
1480EXPORT_SYMBOL_GPL (usb_hc_died);
1481
1482/*-------------------------------------------------------------------------*/
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484/**
1485 * usb_create_hcd - create and initialize an HCD structure
1486 * @driver: HC driver that will use this hcd
1487 * @dev: device for this HC, stored in hcd->self.controller
1488 * @bus_name: value to store in hcd->self.bus_name
1489 * Context: !in_interrupt()
1490 *
1491 * Allocate a struct usb_hcd, with extra space at the end for the
1492 * HC driver's private data. Initialize the generic members of the
1493 * hcd structure.
1494 *
1495 * If memory is unavailable, returns NULL.
1496 */
1497struct usb_hcd *usb_create_hcd (const struct hc_driver *driver,
1498 struct device *dev, char *bus_name)
1499{
1500 struct usb_hcd *hcd;
1501
Pekka Enberg7b842b62005-09-06 15:18:34 -07001502 hcd = kzalloc(sizeof(*hcd) + driver->hcd_priv_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 if (!hcd) {
1504 dev_dbg (dev, "hcd alloc failed\n");
1505 return NULL;
1506 }
1507 dev_set_drvdata(dev, hcd);
Alan Stern17200582006-08-30 11:32:52 -04001508 kref_init(&hcd->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
1510 usb_bus_init(&hcd->self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 hcd->self.controller = dev;
1512 hcd->self.bus_name = bus_name;
Alan Sterndd990f12006-08-30 11:29:56 -04001513 hcd->self.uses_dma = (dev->dma_mask != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
1515 init_timer(&hcd->rh_timer);
Alan Sternd5926ae72005-04-21 15:56:37 -04001516 hcd->rh_timer.function = rh_timer_func;
1517 hcd->rh_timer.data = (unsigned long) hcd;
Alan Stern6b157c92007-03-13 16:37:30 -04001518#ifdef CONFIG_PM
1519 INIT_WORK(&hcd->wakeup_work, hcd_resume_work);
1520#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
1522 hcd->driver = driver;
1523 hcd->product_desc = (driver->product_desc) ? driver->product_desc :
1524 "USB Host Controller";
1525
1526 return hcd;
1527}
1528EXPORT_SYMBOL (usb_create_hcd);
1529
Alan Stern17200582006-08-30 11:32:52 -04001530static void hcd_release (struct kref *kref)
1531{
1532 struct usb_hcd *hcd = container_of (kref, struct usb_hcd, kref);
1533
1534 kfree(hcd);
1535}
1536
1537struct usb_hcd *usb_get_hcd (struct usb_hcd *hcd)
1538{
1539 if (hcd)
1540 kref_get (&hcd->kref);
1541 return hcd;
1542}
1543EXPORT_SYMBOL (usb_get_hcd);
1544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545void usb_put_hcd (struct usb_hcd *hcd)
1546{
Alan Stern17200582006-08-30 11:32:52 -04001547 if (hcd)
1548 kref_put (&hcd->kref, hcd_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549}
1550EXPORT_SYMBOL (usb_put_hcd);
1551
1552/**
1553 * usb_add_hcd - finish generic HCD structure initialization and register
1554 * @hcd: the usb_hcd structure to initialize
1555 * @irqnum: Interrupt line to allocate
1556 * @irqflags: Interrupt type flags
1557 *
1558 * Finish the remaining parts of generic HCD initialization: allocate the
1559 * buffers of consistent memory, register the bus, request the IRQ line,
1560 * and call the driver's reset() and start() routines.
1561 */
1562int usb_add_hcd(struct usb_hcd *hcd,
1563 unsigned int irqnum, unsigned long irqflags)
1564{
Alan Stern8ec8d202005-04-25 11:25:17 -04001565 int retval;
1566 struct usb_device *rhdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
1568 dev_info(hcd->self.controller, "%s\n", hcd->product_desc);
1569
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001570 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1571
David Brownellb1e8f0a2006-01-23 15:25:40 -08001572 /* HC is in reset state, but accessible. Now do the one-time init,
1573 * bottom up so that hcds can customize the root hubs before khubd
1574 * starts talking to them. (Note, bus id is assigned early too.)
1575 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 if ((retval = hcd_buffer_create(hcd)) != 0) {
1577 dev_dbg(hcd->self.controller, "pool alloc failed\n");
1578 return retval;
1579 }
1580
1581 if ((retval = usb_register_bus(&hcd->self)) < 0)
Alan Stern8ec8d202005-04-25 11:25:17 -04001582 goto err_register_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
David Brownellb1e8f0a2006-01-23 15:25:40 -08001584 if ((rhdev = usb_alloc_dev(NULL, &hcd->self, 0)) == NULL) {
1585 dev_err(hcd->self.controller, "unable to allocate root hub\n");
1586 retval = -ENOMEM;
1587 goto err_allocate_root_hub;
1588 }
1589 rhdev->speed = (hcd->driver->flags & HCD_USB2) ? USB_SPEED_HIGH :
1590 USB_SPEED_FULL;
1591 hcd->self.root_hub = rhdev;
1592
David Brownelldb4cefa2006-05-01 22:07:13 -07001593 /* wakeup flag init defaults to "everything works" for root hubs,
1594 * but drivers can override it in reset() if needed, along with
1595 * recording the overall controller's system wakeup capability.
1596 */
1597 device_init_wakeup(&rhdev->dev, 1);
1598
David Brownellb1e8f0a2006-01-23 15:25:40 -08001599 /* "reset" is misnamed; its role is now one-time init. the controller
1600 * should already have been reset (and boot firmware kicked off etc).
1601 */
1602 if (hcd->driver->reset && (retval = hcd->driver->reset(hcd)) < 0) {
1603 dev_err(hcd->self.controller, "can't setup\n");
1604 goto err_hcd_driver_setup;
1605 }
1606
David Brownellfb669cc2006-01-24 08:40:27 -08001607 /* NOTE: root hub and controller capabilities may not be the same */
1608 if (device_can_wakeup(hcd->self.controller)
1609 && device_can_wakeup(&hcd->self.root_hub->dev))
David Brownellb1e8f0a2006-01-23 15:25:40 -08001610 dev_dbg(hcd->self.controller, "supports USB remote wakeup\n");
David Brownellb1e8f0a2006-01-23 15:25:40 -08001611
1612 /* enable irqs just before we start the controller */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 if (hcd->driver->irq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 snprintf(hcd->irq_descr, sizeof(hcd->irq_descr), "%s:usb%d",
1615 hcd->driver->description, hcd->self.busnum);
1616 if ((retval = request_irq(irqnum, &usb_hcd_irq, irqflags,
1617 hcd->irq_descr, hcd)) != 0) {
1618 dev_err(hcd->self.controller,
David S. Millerc6387a42006-06-20 01:21:29 -07001619 "request interrupt %d failed\n", irqnum);
Alan Stern8ec8d202005-04-25 11:25:17 -04001620 goto err_request_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 }
1622 hcd->irq = irqnum;
David S. Millerc6387a42006-06-20 01:21:29 -07001623 dev_info(hcd->self.controller, "irq %d, %s 0x%08llx\n", irqnum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 (hcd->driver->flags & HCD_MEMORY) ?
1625 "io mem" : "io base",
1626 (unsigned long long)hcd->rsrc_start);
1627 } else {
1628 hcd->irq = -1;
1629 if (hcd->rsrc_start)
1630 dev_info(hcd->self.controller, "%s 0x%08llx\n",
1631 (hcd->driver->flags & HCD_MEMORY) ?
1632 "io mem" : "io base",
1633 (unsigned long long)hcd->rsrc_start);
1634 }
1635
1636 if ((retval = hcd->driver->start(hcd)) < 0) {
1637 dev_err(hcd->self.controller, "startup error %d\n", retval);
Alan Stern8ec8d202005-04-25 11:25:17 -04001638 goto err_hcd_driver_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 }
1640
David Brownellb1e8f0a2006-01-23 15:25:40 -08001641 /* starting here, usbcore will pay attention to this root hub */
Alan Stern55c52712005-11-23 12:03:12 -05001642 rhdev->bus_mA = min(500u, hcd->power_budget);
David Brownellb1e8f0a2006-01-23 15:25:40 -08001643 if ((retval = register_root_hub(hcd)) != 0)
Alan Stern8ec8d202005-04-25 11:25:17 -04001644 goto err_register_root_hub;
1645
Alan Sternd5926ae72005-04-21 15:56:37 -04001646 if (hcd->uses_new_polling && hcd->poll_rh)
1647 usb_hcd_poll_rh_status(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 return retval;
1649
David Brownellb1e8f0a2006-01-23 15:25:40 -08001650err_register_root_hub:
Alan Stern8ec8d202005-04-25 11:25:17 -04001651 hcd->driver->stop(hcd);
David Brownellb1e8f0a2006-01-23 15:25:40 -08001652err_hcd_driver_start:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 if (hcd->irq >= 0)
1654 free_irq(irqnum, hcd);
David Brownellb1e8f0a2006-01-23 15:25:40 -08001655err_request_irq:
1656err_hcd_driver_setup:
1657 hcd->self.root_hub = NULL;
1658 usb_put_dev(rhdev);
1659err_allocate_root_hub:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 usb_deregister_bus(&hcd->self);
David Brownellb1e8f0a2006-01-23 15:25:40 -08001661err_register_bus:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 hcd_buffer_destroy(hcd);
1663 return retval;
1664}
1665EXPORT_SYMBOL (usb_add_hcd);
1666
1667/**
1668 * usb_remove_hcd - shutdown processing for generic HCDs
1669 * @hcd: the usb_hcd structure to remove
1670 * Context: !in_interrupt()
1671 *
1672 * Disconnects the root hub, then reverses the effects of usb_add_hcd(),
1673 * invoking the HCD's stop() method.
1674 */
1675void usb_remove_hcd(struct usb_hcd *hcd)
1676{
1677 dev_info(hcd->self.controller, "remove, state %x\n", hcd->state);
1678
1679 if (HC_IS_RUNNING (hcd->state))
1680 hcd->state = HC_STATE_QUIESCING;
1681
1682 dev_dbg(hcd->self.controller, "roothub graceful disconnect\n");
1683 spin_lock_irq (&hcd_root_hub_lock);
1684 hcd->rh_registered = 0;
1685 spin_unlock_irq (&hcd_root_hub_lock);
Alan Stern9ad3d6c2005-11-17 17:10:32 -05001686
Alan Stern6b157c92007-03-13 16:37:30 -04001687#ifdef CONFIG_PM
Alan Sternd5d4db72007-05-29 16:34:52 -04001688 cancel_work_sync(&hcd->wakeup_work);
Alan Stern6b157c92007-03-13 16:37:30 -04001689#endif
1690
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01001691 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 usb_disconnect(&hcd->self.root_hub);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01001693 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
1695 hcd->driver->stop(hcd);
1696 hcd->state = HC_STATE_HALT;
1697
Alan Stern1b42ae62007-03-13 11:10:52 -04001698 hcd->poll_rh = 0;
1699 del_timer_sync(&hcd->rh_timer);
1700
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 if (hcd->irq >= 0)
1702 free_irq(hcd->irq, hcd);
1703 usb_deregister_bus(&hcd->self);
1704 hcd_buffer_destroy(hcd);
1705}
1706EXPORT_SYMBOL (usb_remove_hcd);
1707
Aleksey Gorelov64a21d02006-08-08 17:24:08 -07001708void
1709usb_hcd_platform_shutdown(struct platform_device* dev)
1710{
1711 struct usb_hcd *hcd = platform_get_drvdata(dev);
1712
1713 if (hcd->driver->shutdown)
1714 hcd->driver->shutdown(hcd);
1715}
1716EXPORT_SYMBOL (usb_hcd_platform_shutdown);
1717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718/*-------------------------------------------------------------------------*/
1719
Adrian Bunk4749f322005-06-23 11:36:56 +02001720#if defined(CONFIG_USB_MON)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
1722struct usb_mon_operations *mon_ops;
1723
1724/*
1725 * The registration is unlocked.
1726 * We do it this way because we do not want to lock in hot paths.
1727 *
1728 * Notice that the code is minimally error-proof. Because usbmon needs
1729 * symbols from usbcore, usbcore gets referenced and cannot be unloaded first.
1730 */
1731
1732int usb_mon_register (struct usb_mon_operations *ops)
1733{
1734
1735 if (mon_ops)
1736 return -EBUSY;
1737
1738 mon_ops = ops;
1739 mb();
1740 return 0;
1741}
1742EXPORT_SYMBOL_GPL (usb_mon_register);
1743
1744void usb_mon_deregister (void)
1745{
1746
1747 if (mon_ops == NULL) {
1748 printk(KERN_ERR "USB: monitor was not registered\n");
1749 return;
1750 }
1751 mon_ops = NULL;
1752 mb();
1753}
1754EXPORT_SYMBOL_GPL (usb_mon_deregister);
1755
1756#endif /* CONFIG_USB_MON */