blob: 0d5cbf254e5e4880ad39b83f4a3d4f28215c9812 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#include <linux/usb.h>
42
43#include "usb.h"
44#include "hcd.h"
45#include "hub.h"
46
47
48// #define USB_BANDWIDTH_MESSAGES
49
50/*-------------------------------------------------------------------------*/
51
52/*
53 * USB Host Controller Driver framework
54 *
55 * Plugs into usbcore (usb_bus) and lets HCDs share code, minimizing
56 * HCD-specific behaviors/bugs.
57 *
58 * This does error checks, tracks devices and urbs, and delegates to a
59 * "hc_driver" only for code (and data) that really needs to know about
60 * hardware differences. That includes root hub registers, i/o queues,
61 * and so on ... but as little else as possible.
62 *
63 * Shared code includes most of the "root hub" code (these are emulated,
64 * though each HC's hardware works differently) and PCI glue, plus request
65 * tracking overhead. The HCD code should only block on spinlocks or on
66 * hardware handshaking; blocking on software events (such as other kernel
67 * threads releasing resources, or completing actions) is all generic.
68 *
69 * Happens the USB 2.0 spec says this would be invisible inside the "USBD",
70 * and includes mostly a "HCDI" (HCD Interface) along with some APIs used
71 * only by the hub driver ... and that neither should be seen or used by
72 * usb client device drivers.
73 *
74 * Contributors of ideas or unattributed patches include: David Brownell,
75 * Roman Weissgaerber, Rory Bolt, Greg Kroah-Hartman, ...
76 *
77 * HISTORY:
78 * 2002-02-21 Pull in most of the usb_bus support from usb.c; some
79 * associated cleanup. "usb_hcd" still != "usb_bus".
80 * 2001-12-12 Initial patch version for Linux 2.5.1 kernel.
81 */
82
83/*-------------------------------------------------------------------------*/
84
85/* host controllers we manage */
86LIST_HEAD (usb_bus_list);
87EXPORT_SYMBOL_GPL (usb_bus_list);
88
89/* used when allocating bus numbers */
90#define USB_MAXBUS 64
91struct usb_busmap {
92 unsigned long busmap [USB_MAXBUS / (8*sizeof (unsigned long))];
93};
94static struct usb_busmap busmap;
95
96/* used when updating list of hcds */
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010097DEFINE_MUTEX(usb_bus_list_lock); /* exported only for usbfs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070098EXPORT_SYMBOL_GPL (usb_bus_list_lock);
99
100/* used for controlling access to virtual root hubs */
101static DEFINE_SPINLOCK(hcd_root_hub_lock);
102
103/* used when updating hcd data */
104static DEFINE_SPINLOCK(hcd_data_lock);
105
106/* wait queue for synchronous unlinks */
107DECLARE_WAIT_QUEUE_HEAD(usb_kill_urb_queue);
108
109/*-------------------------------------------------------------------------*/
110
111/*
112 * Sharable chunks of root hub code.
113 */
114
115/*-------------------------------------------------------------------------*/
116
117#define KERNEL_REL ((LINUX_VERSION_CODE >> 16) & 0x0ff)
118#define KERNEL_VER ((LINUX_VERSION_CODE >> 8) & 0x0ff)
119
120/* usb 2.0 root hub device descriptor */
121static const u8 usb2_rh_dev_descriptor [18] = {
122 0x12, /* __u8 bLength; */
123 0x01, /* __u8 bDescriptorType; Device */
124 0x00, 0x02, /* __le16 bcdUSB; v2.0 */
125
126 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
127 0x00, /* __u8 bDeviceSubClass; */
128 0x01, /* __u8 bDeviceProtocol; [ usb 2.0 single TT ]*/
Alan Stern16f16d12005-10-24 15:41:19 -0400129 0x40, /* __u8 bMaxPacketSize0; 64 Bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
131 0x00, 0x00, /* __le16 idVendor; */
132 0x00, 0x00, /* __le16 idProduct; */
133 KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
134
135 0x03, /* __u8 iManufacturer; */
136 0x02, /* __u8 iProduct; */
137 0x01, /* __u8 iSerialNumber; */
138 0x01 /* __u8 bNumConfigurations; */
139};
140
141/* no usb 2.0 root hub "device qualifier" descriptor: one speed only */
142
143/* usb 1.1 root hub device descriptor */
144static const u8 usb11_rh_dev_descriptor [18] = {
145 0x12, /* __u8 bLength; */
146 0x01, /* __u8 bDescriptorType; Device */
147 0x10, 0x01, /* __le16 bcdUSB; v1.1 */
148
149 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
150 0x00, /* __u8 bDeviceSubClass; */
151 0x00, /* __u8 bDeviceProtocol; [ low/full speeds only ] */
Alan Stern16f16d12005-10-24 15:41:19 -0400152 0x40, /* __u8 bMaxPacketSize0; 64 Bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 0x00, 0x00, /* __le16 idVendor; */
155 0x00, 0x00, /* __le16 idProduct; */
156 KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
157
158 0x03, /* __u8 iManufacturer; */
159 0x02, /* __u8 iProduct; */
160 0x01, /* __u8 iSerialNumber; */
161 0x01 /* __u8 bNumConfigurations; */
162};
163
164
165/*-------------------------------------------------------------------------*/
166
167/* Configuration descriptors for our root hubs */
168
169static const u8 fs_rh_config_descriptor [] = {
170
171 /* one configuration */
172 0x09, /* __u8 bLength; */
173 0x02, /* __u8 bDescriptorType; Configuration */
174 0x19, 0x00, /* __le16 wTotalLength; */
175 0x01, /* __u8 bNumInterfaces; (1) */
176 0x01, /* __u8 bConfigurationValue; */
177 0x00, /* __u8 iConfiguration; */
178 0xc0, /* __u8 bmAttributes;
179 Bit 7: must be set,
180 6: Self-powered,
181 5: Remote wakeup,
182 4..0: resvd */
183 0x00, /* __u8 MaxPower; */
184
185 /* USB 1.1:
186 * USB 2.0, single TT organization (mandatory):
187 * one interface, protocol 0
188 *
189 * USB 2.0, multiple TT organization (optional):
190 * two interfaces, protocols 1 (like single TT)
191 * and 2 (multiple TT mode) ... config is
192 * sometimes settable
193 * NOT IMPLEMENTED
194 */
195
196 /* one interface */
197 0x09, /* __u8 if_bLength; */
198 0x04, /* __u8 if_bDescriptorType; Interface */
199 0x00, /* __u8 if_bInterfaceNumber; */
200 0x00, /* __u8 if_bAlternateSetting; */
201 0x01, /* __u8 if_bNumEndpoints; */
202 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
203 0x00, /* __u8 if_bInterfaceSubClass; */
204 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */
205 0x00, /* __u8 if_iInterface; */
206
207 /* one endpoint (status change endpoint) */
208 0x07, /* __u8 ep_bLength; */
209 0x05, /* __u8 ep_bDescriptorType; Endpoint */
210 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
211 0x03, /* __u8 ep_bmAttributes; Interrupt */
212 0x02, 0x00, /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */
213 0xff /* __u8 ep_bInterval; (255ms -- usb 2.0 spec) */
214};
215
216static const u8 hs_rh_config_descriptor [] = {
217
218 /* one configuration */
219 0x09, /* __u8 bLength; */
220 0x02, /* __u8 bDescriptorType; Configuration */
221 0x19, 0x00, /* __le16 wTotalLength; */
222 0x01, /* __u8 bNumInterfaces; (1) */
223 0x01, /* __u8 bConfigurationValue; */
224 0x00, /* __u8 iConfiguration; */
225 0xc0, /* __u8 bmAttributes;
226 Bit 7: must be set,
227 6: Self-powered,
228 5: Remote wakeup,
229 4..0: resvd */
230 0x00, /* __u8 MaxPower; */
231
232 /* USB 1.1:
233 * USB 2.0, single TT organization (mandatory):
234 * one interface, protocol 0
235 *
236 * USB 2.0, multiple TT organization (optional):
237 * two interfaces, protocols 1 (like single TT)
238 * and 2 (multiple TT mode) ... config is
239 * sometimes settable
240 * NOT IMPLEMENTED
241 */
242
243 /* one interface */
244 0x09, /* __u8 if_bLength; */
245 0x04, /* __u8 if_bDescriptorType; Interface */
246 0x00, /* __u8 if_bInterfaceNumber; */
247 0x00, /* __u8 if_bAlternateSetting; */
248 0x01, /* __u8 if_bNumEndpoints; */
249 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
250 0x00, /* __u8 if_bInterfaceSubClass; */
251 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */
252 0x00, /* __u8 if_iInterface; */
253
254 /* one endpoint (status change endpoint) */
255 0x07, /* __u8 ep_bLength; */
256 0x05, /* __u8 ep_bDescriptorType; Endpoint */
257 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
258 0x03, /* __u8 ep_bmAttributes; Interrupt */
259 0x02, 0x00, /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */
260 0x0c /* __u8 ep_bInterval; (256ms -- usb 2.0 spec) */
261};
262
263/*-------------------------------------------------------------------------*/
264
265/*
266 * helper routine for returning string descriptors in UTF-16LE
267 * input can actually be ISO-8859-1; ASCII is its 7-bit subset
268 */
269static int ascii2utf (char *s, u8 *utf, int utfmax)
270{
271 int retval;
272
273 for (retval = 0; *s && utfmax > 1; utfmax -= 2, retval += 2) {
274 *utf++ = *s++;
275 *utf++ = 0;
276 }
277 if (utfmax > 0) {
278 *utf = *s;
279 ++retval;
280 }
281 return retval;
282}
283
284/*
285 * rh_string - provides manufacturer, product and serial strings for root hub
286 * @id: the string ID number (1: serial number, 2: product, 3: vendor)
287 * @hcd: the host controller for this root hub
288 * @type: string describing our driver
289 * @data: return packet in UTF-16 LE
290 * @len: length of the return packet
291 *
292 * Produces either a manufacturer, product or serial number string for the
293 * virtual root hub device.
294 */
295static int rh_string (
296 int id,
297 struct usb_hcd *hcd,
298 u8 *data,
299 int len
300) {
301 char buf [100];
302
303 // language ids
304 if (id == 0) {
305 buf[0] = 4; buf[1] = 3; /* 4 bytes string data */
306 buf[2] = 0x09; buf[3] = 0x04; /* MSFT-speak for "en-us" */
307 len = min (len, 4);
308 memcpy (data, buf, len);
309 return len;
310
311 // serial number
312 } else if (id == 1) {
313 strlcpy (buf, hcd->self.bus_name, sizeof buf);
314
315 // product description
316 } else if (id == 2) {
317 strlcpy (buf, hcd->product_desc, sizeof buf);
318
319 // id 3 == vendor description
320 } else if (id == 3) {
321 snprintf (buf, sizeof buf, "%s %s %s", system_utsname.sysname,
322 system_utsname.release, hcd->driver->description);
323
324 // unsupported IDs --> "protocol stall"
325 } else
326 return -EPIPE;
327
328 switch (len) { /* All cases fall through */
329 default:
330 len = 2 + ascii2utf (buf, data + 2, len - 2);
331 case 2:
332 data [1] = 3; /* type == string */
333 case 1:
334 data [0] = 2 * (strlen (buf) + 1);
335 case 0:
336 ; /* Compiler wants a statement here */
337 }
338 return len;
339}
340
341
342/* Root hub control transfers execute synchronously */
343static int rh_call_control (struct usb_hcd *hcd, struct urb *urb)
344{
345 struct usb_ctrlrequest *cmd;
346 u16 typeReq, wValue, wIndex, wLength;
347 u8 *ubuf = urb->transfer_buffer;
Mikael Pettersson54bee6e2006-09-23 17:05:31 -0700348 u8 tbuf [sizeof (struct usb_hub_descriptor)]
349 __attribute__((aligned(4)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 const u8 *bufp = tbuf;
351 int len = 0;
352 int patch_wakeup = 0;
353 unsigned long flags;
354 int status = 0;
355 int n;
356
357 cmd = (struct usb_ctrlrequest *) urb->setup_packet;
358 typeReq = (cmd->bRequestType << 8) | cmd->bRequest;
359 wValue = le16_to_cpu (cmd->wValue);
360 wIndex = le16_to_cpu (cmd->wIndex);
361 wLength = le16_to_cpu (cmd->wLength);
362
363 if (wLength > urb->transfer_buffer_length)
364 goto error;
365
366 urb->actual_length = 0;
367 switch (typeReq) {
368
369 /* DEVICE REQUESTS */
370
David Brownellfb669cc2006-01-24 08:40:27 -0800371 /* The root hub's remote wakeup enable bit is implemented using
372 * driver model wakeup flags. If this system supports wakeup
373 * through USB, userspace may change the default "allow wakeup"
374 * policy through sysfs or these calls.
375 *
376 * Most root hubs support wakeup from downstream devices, for
377 * runtime power management (disabling USB clocks and reducing
378 * VBUS power usage). However, not all of them do so; silicon,
379 * board, and BIOS bugs here are not uncommon, so these can't
380 * be treated quite like external hubs.
381 *
382 * Likewise, not all root hubs will pass wakeup events upstream,
383 * to wake up the whole system. So don't assume root hub and
384 * controller capabilities are identical.
385 */
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 case DeviceRequest | USB_REQ_GET_STATUS:
David Brownellfb669cc2006-01-24 08:40:27 -0800388 tbuf [0] = (device_may_wakeup(&hcd->self.root_hub->dev)
389 << USB_DEVICE_REMOTE_WAKEUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 | (1 << USB_DEVICE_SELF_POWERED);
391 tbuf [1] = 0;
392 len = 2;
393 break;
394 case DeviceOutRequest | USB_REQ_CLEAR_FEATURE:
395 if (wValue == USB_DEVICE_REMOTE_WAKEUP)
David Brownellfb669cc2006-01-24 08:40:27 -0800396 device_set_wakeup_enable(&hcd->self.root_hub->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 else
398 goto error;
399 break;
400 case DeviceOutRequest | USB_REQ_SET_FEATURE:
David Brownellfb669cc2006-01-24 08:40:27 -0800401 if (device_can_wakeup(&hcd->self.root_hub->dev)
402 && wValue == USB_DEVICE_REMOTE_WAKEUP)
403 device_set_wakeup_enable(&hcd->self.root_hub->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 else
405 goto error;
406 break;
407 case DeviceRequest | USB_REQ_GET_CONFIGURATION:
408 tbuf [0] = 1;
409 len = 1;
410 /* FALLTHROUGH */
411 case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
412 break;
413 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
414 switch (wValue & 0xff00) {
415 case USB_DT_DEVICE << 8:
416 if (hcd->driver->flags & HCD_USB2)
417 bufp = usb2_rh_dev_descriptor;
418 else if (hcd->driver->flags & HCD_USB11)
419 bufp = usb11_rh_dev_descriptor;
420 else
421 goto error;
422 len = 18;
423 break;
424 case USB_DT_CONFIG << 8:
425 if (hcd->driver->flags & HCD_USB2) {
426 bufp = hs_rh_config_descriptor;
427 len = sizeof hs_rh_config_descriptor;
428 } else {
429 bufp = fs_rh_config_descriptor;
430 len = sizeof fs_rh_config_descriptor;
431 }
David Brownellfb669cc2006-01-24 08:40:27 -0800432 if (device_can_wakeup(&hcd->self.root_hub->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 patch_wakeup = 1;
434 break;
435 case USB_DT_STRING << 8:
436 n = rh_string (wValue & 0xff, hcd, ubuf, wLength);
437 if (n < 0)
438 goto error;
439 urb->actual_length = n;
440 break;
441 default:
442 goto error;
443 }
444 break;
445 case DeviceRequest | USB_REQ_GET_INTERFACE:
446 tbuf [0] = 0;
447 len = 1;
448 /* FALLTHROUGH */
449 case DeviceOutRequest | USB_REQ_SET_INTERFACE:
450 break;
451 case DeviceOutRequest | USB_REQ_SET_ADDRESS:
452 // wValue == urb->dev->devaddr
453 dev_dbg (hcd->self.controller, "root hub device address %d\n",
454 wValue);
455 break;
456
457 /* INTERFACE REQUESTS (no defined feature/status flags) */
458
459 /* ENDPOINT REQUESTS */
460
461 case EndpointRequest | USB_REQ_GET_STATUS:
462 // ENDPOINT_HALT flag
463 tbuf [0] = 0;
464 tbuf [1] = 0;
465 len = 2;
466 /* FALLTHROUGH */
467 case EndpointOutRequest | USB_REQ_CLEAR_FEATURE:
468 case EndpointOutRequest | USB_REQ_SET_FEATURE:
469 dev_dbg (hcd->self.controller, "no endpoint features yet\n");
470 break;
471
472 /* CLASS REQUESTS (and errors) */
473
474 default:
475 /* non-generic request */
David Brownellb13296c2005-09-27 10:38:54 -0700476 switch (typeReq) {
477 case GetHubStatus:
478 case GetPortStatus:
479 len = 4;
480 break;
481 case GetHubDescriptor:
482 len = sizeof (struct usb_hub_descriptor);
483 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 }
David Brownellb13296c2005-09-27 10:38:54 -0700485 status = hcd->driver->hub_control (hcd,
486 typeReq, wValue, wIndex,
487 tbuf, wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 break;
489error:
490 /* "protocol stall" on error */
491 status = -EPIPE;
492 }
493
494 if (status) {
495 len = 0;
496 if (status != -EPIPE) {
497 dev_dbg (hcd->self.controller,
498 "CTRL: TypeReq=0x%x val=0x%x "
499 "idx=0x%x len=%d ==> %d\n",
500 typeReq, wValue, wIndex,
David Brownellb13296c2005-09-27 10:38:54 -0700501 wLength, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503 }
504 if (len) {
505 if (urb->transfer_buffer_length < len)
506 len = urb->transfer_buffer_length;
507 urb->actual_length = len;
508 // always USB_DIR_IN, toward host
509 memcpy (ubuf, bufp, len);
510
511 /* report whether RH hardware supports remote wakeup */
512 if (patch_wakeup &&
513 len > offsetof (struct usb_config_descriptor,
514 bmAttributes))
515 ((struct usb_config_descriptor *)ubuf)->bmAttributes
516 |= USB_CONFIG_ATT_WAKEUP;
517 }
518
519 /* any errors get returned through the urb completion */
520 local_irq_save (flags);
521 spin_lock (&urb->lock);
522 if (urb->status == -EINPROGRESS)
523 urb->status = status;
524 spin_unlock (&urb->lock);
525 usb_hcd_giveback_urb (hcd, urb, NULL);
526 local_irq_restore (flags);
527 return 0;
528}
529
530/*-------------------------------------------------------------------------*/
531
532/*
Alan Sternd5926ae72005-04-21 15:56:37 -0400533 * Root Hub interrupt transfers are polled using a timer if the
534 * driver requests it; otherwise the driver is responsible for
535 * calling usb_hcd_poll_rh_status() when an event occurs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 *
Alan Sternd5926ae72005-04-21 15:56:37 -0400537 * Completions are called in_interrupt(), but they may or may not
538 * be in_irq().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 */
Alan Sternd5926ae72005-04-21 15:56:37 -0400540void usb_hcd_poll_rh_status(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
542 struct urb *urb;
Alan Sternd5926ae72005-04-21 15:56:37 -0400543 int length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 unsigned long flags;
Alan Sternd5926ae72005-04-21 15:56:37 -0400545 char buffer[4]; /* Any root hubs with > 31 ports? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Alan Sternd5926ae72005-04-21 15:56:37 -0400547 if (!hcd->uses_new_polling && !hcd->status_urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Alan Sternd5926ae72005-04-21 15:56:37 -0400550 length = hcd->driver->hub_status_data(hcd, buffer);
551 if (length > 0) {
552
553 /* try to complete the status urb */
554 local_irq_save (flags);
555 spin_lock(&hcd_root_hub_lock);
556 urb = hcd->status_urb;
557 if (urb) {
558 spin_lock(&urb->lock);
559 if (urb->status == -EINPROGRESS) {
560 hcd->poll_pending = 0;
561 hcd->status_urb = NULL;
562 urb->status = 0;
563 urb->hcpriv = NULL;
564 urb->actual_length = length;
565 memcpy(urb->transfer_buffer, buffer, length);
566 } else /* urb has been unlinked */
567 length = 0;
568 spin_unlock(&urb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 } else
Alan Sternd5926ae72005-04-21 15:56:37 -0400570 length = 0;
571 spin_unlock(&hcd_root_hub_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Alan Sternd5926ae72005-04-21 15:56:37 -0400573 /* local irqs are always blocked in completions */
574 if (length > 0)
575 usb_hcd_giveback_urb (hcd, urb, NULL);
576 else
577 hcd->poll_pending = 1;
578 local_irq_restore (flags);
579 }
580
581 /* The USB 2.0 spec says 256 ms. This is close enough and won't
582 * exceed that limit if HZ is 100. */
583 if (hcd->uses_new_polling ? hcd->poll_rh :
584 (length == 0 && hcd->status_urb != NULL))
585 mod_timer (&hcd->rh_timer, jiffies + msecs_to_jiffies(250));
586}
587EXPORT_SYMBOL_GPL(usb_hcd_poll_rh_status);
588
589/* timer callback */
590static void rh_timer_func (unsigned long _hcd)
591{
592 usb_hcd_poll_rh_status((struct usb_hcd *) _hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
594
595/*-------------------------------------------------------------------------*/
596
Alan Sternd5926ae72005-04-21 15:56:37 -0400597static int rh_queue_status (struct usb_hcd *hcd, struct urb *urb)
598{
599 int retval;
600 unsigned long flags;
601 int len = 1 + (urb->dev->maxchild / 8);
602
603 spin_lock_irqsave (&hcd_root_hub_lock, flags);
604 if (urb->status != -EINPROGRESS) /* already unlinked */
605 retval = urb->status;
606 else if (hcd->status_urb || urb->transfer_buffer_length < len) {
607 dev_dbg (hcd->self.controller, "not queuing rh status urb\n");
608 retval = -EINVAL;
609 } else {
610 hcd->status_urb = urb;
611 urb->hcpriv = hcd; /* indicate it's queued */
612
613 if (!hcd->uses_new_polling)
614 mod_timer (&hcd->rh_timer, jiffies +
615 msecs_to_jiffies(250));
616
617 /* If a status change has already occurred, report it ASAP */
618 else if (hcd->poll_pending)
619 mod_timer (&hcd->rh_timer, jiffies);
620 retval = 0;
621 }
622 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
623 return retval;
624}
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626static int rh_urb_enqueue (struct usb_hcd *hcd, struct urb *urb)
627{
Alan Sternd5926ae72005-04-21 15:56:37 -0400628 if (usb_pipeint (urb->pipe))
629 return rh_queue_status (hcd, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 if (usb_pipecontrol (urb->pipe))
631 return rh_call_control (hcd, urb);
Alan Sternd5926ae72005-04-21 15:56:37 -0400632 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
635/*-------------------------------------------------------------------------*/
636
Alan Stern455b25f2006-08-11 16:01:45 -0400637/* Unlinks of root-hub control URBs are legal, but they don't do anything
638 * since these URBs always execute synchronously.
Alan Sternd5926ae72005-04-21 15:56:37 -0400639 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640static int usb_rh_urb_dequeue (struct usb_hcd *hcd, struct urb *urb)
641{
Alan Stern455b25f2006-08-11 16:01:45 -0400642 unsigned long flags;
643
Alan Sternd5926ae72005-04-21 15:56:37 -0400644 if (usb_pipeendpoint(urb->pipe) == 0) { /* Control URB */
Alan Stern455b25f2006-08-11 16:01:45 -0400645 ; /* Do nothing */
Alan Sternd5926ae72005-04-21 15:56:37 -0400646
647 } else { /* Status URB */
648 if (!hcd->uses_new_polling)
Alan Stern455b25f2006-08-11 16:01:45 -0400649 del_timer (&hcd->rh_timer);
650 local_irq_save (flags);
Alan Sternd5926ae72005-04-21 15:56:37 -0400651 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);
Alan Stern455b25f2006-08-11 16:01:45 -0400660 local_irq_restore (flags);
Alan Sternd5926ae72005-04-21 15:56:37 -0400661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 return 0;
664}
665
666/*-------------------------------------------------------------------------*/
667
gregkh@suse.de8561b102005-03-15 15:10:13 -0800668static struct class *usb_host_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670int usb_host_init(void)
671{
gregkh@suse.de8561b102005-03-15 15:10:13 -0800672 int retval = 0;
673
674 usb_host_class = class_create(THIS_MODULE, "usb_host");
675 if (IS_ERR(usb_host_class))
676 retval = PTR_ERR(usb_host_class);
677 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
680void usb_host_cleanup(void)
681{
gregkh@suse.de8561b102005-03-15 15:10:13 -0800682 class_destroy(usb_host_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684
685/**
686 * usb_bus_init - shared initialization code
687 * @bus: the bus structure being initialized
688 *
689 * This code is used to initialize a usb_bus structure, memory for which is
690 * separately managed.
691 */
692static void usb_bus_init (struct usb_bus *bus)
693{
694 memset (&bus->devmap, 0, sizeof(struct usb_devmap));
695
696 bus->devnum_next = 1;
697
698 bus->root_hub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 bus->busnum = -1;
700 bus->bandwidth_allocated = 0;
701 bus->bandwidth_int_reqs = 0;
702 bus->bandwidth_isoc_reqs = 0;
703
704 INIT_LIST_HEAD (&bus->bus_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707/*-------------------------------------------------------------------------*/
708
709/**
710 * usb_register_bus - registers the USB host controller with the usb core
711 * @bus: pointer to the bus to register
712 * Context: !in_interrupt()
713 *
714 * Assigns a bus number, and links the controller into usbcore data
715 * structures so that it can be seen by scanning the bus list.
716 */
717static int usb_register_bus(struct usb_bus *bus)
718{
719 int busnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100721 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 busnum = find_next_zero_bit (busmap.busmap, USB_MAXBUS, 1);
723 if (busnum < USB_MAXBUS) {
724 set_bit (busnum, busmap.busmap);
725 bus->busnum = busnum;
726 } else {
727 printk (KERN_ERR "%s: too many buses\n", usbcore_name);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100728 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return -E2BIG;
730 }
731
Greg Kroah-Hartman53f46542005-10-27 22:25:43 -0700732 bus->class_dev = class_device_create(usb_host_class, NULL, MKDEV(0,0),
733 bus->controller, "usb_host%d", busnum);
gregkh@suse.de8561b102005-03-15 15:10:13 -0800734 if (IS_ERR(bus->class_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 clear_bit(busnum, busmap.busmap);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100736 mutex_unlock(&usb_bus_list_lock);
gregkh@suse.de8561b102005-03-15 15:10:13 -0800737 return PTR_ERR(bus->class_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
739
gregkh@suse.de8561b102005-03-15 15:10:13 -0800740 class_set_devdata(bus->class_dev, bus);
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 /* Add it to the local list of buses */
743 list_add (&bus->bus_list, &usb_bus_list);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100744 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -0700746 usb_notify_add_bus(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 dev_info (bus->controller, "new USB bus registered, assigned bus number %d\n", bus->busnum);
749 return 0;
750}
751
752/**
753 * usb_deregister_bus - deregisters the USB host controller
754 * @bus: pointer to the bus to deregister
755 * Context: !in_interrupt()
756 *
757 * Recycles the bus number, and unlinks the controller from usbcore data
758 * structures so that it won't be seen by scanning the bus list.
759 */
760static void usb_deregister_bus (struct usb_bus *bus)
761{
762 dev_info (bus->controller, "USB bus %d deregistered\n", bus->busnum);
763
764 /*
765 * NOTE: make sure that all the devices are removed by the
766 * controller code, as well as having it call this when cleaning
767 * itself up
768 */
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100769 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 list_del (&bus->bus_list);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100771 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -0700773 usb_notify_remove_bus(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775 clear_bit (bus->busnum, busmap.busmap);
776
gregkh@suse.de8561b102005-03-15 15:10:13 -0800777 class_device_unregister(bus->class_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779
780/**
Alan Stern8ec8d202005-04-25 11:25:17 -0400781 * register_root_hub - called by usb_add_hcd() to register a root hub
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 * @hcd: host controller for this root hub
783 *
Alan Stern8ec8d202005-04-25 11:25:17 -0400784 * This function registers the root hub with the USB subsystem. It sets up
David Brownellb1e8f0a2006-01-23 15:25:40 -0800785 * the device properly in the device tree and then calls usb_new_device()
786 * to register the usb device. It also assigns the root hub's USB address
787 * (always 1).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 */
David Brownellb1e8f0a2006-01-23 15:25:40 -0800789static int register_root_hub(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
791 struct device *parent_dev = hcd->self.controller;
David Brownellb1e8f0a2006-01-23 15:25:40 -0800792 struct usb_device *usb_dev = hcd->self.root_hub;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 const int devnum = 1;
794 int retval;
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 usb_dev->devnum = devnum;
797 usb_dev->bus->devnum_next = devnum + 1;
798 memset (&usb_dev->bus->devmap.devicemap, 0,
799 sizeof usb_dev->bus->devmap.devicemap);
800 set_bit (devnum, usb_dev->bus->devmap.devicemap);
801 usb_set_device_state(usb_dev, USB_STATE_ADDRESS);
802
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100803 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 usb_dev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
806 retval = usb_get_device_descriptor(usb_dev, USB_DT_DEVICE_SIZE);
807 if (retval != sizeof usb_dev->descriptor) {
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100808 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 dev_dbg (parent_dev, "can't read %s device descriptor %d\n",
810 usb_dev->dev.bus_id, retval);
811 return (retval < 0) ? retval : -EMSGSIZE;
812 }
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 retval = usb_new_device (usb_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 dev_err (parent_dev, "can't register root hub for %s, %d\n",
817 usb_dev->dev.bus_id, retval);
818 }
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100819 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 if (retval == 0) {
822 spin_lock_irq (&hcd_root_hub_lock);
823 hcd->rh_registered = 1;
824 spin_unlock_irq (&hcd_root_hub_lock);
825
826 /* Did the HC die before the root hub was registered? */
827 if (hcd->state == HC_STATE_HALT)
828 usb_hc_died (hcd); /* This time clean up */
829 }
830
831 return retval;
832}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Alan Sternd5926ae72005-04-21 15:56:37 -0400834void usb_enable_root_hub_irq (struct usb_bus *bus)
835{
836 struct usb_hcd *hcd;
837
838 hcd = container_of (bus, struct usb_hcd, self);
839 if (hcd->driver->hub_irq_enable && !hcd->poll_rh &&
840 hcd->state != HC_STATE_HALT)
841 hcd->driver->hub_irq_enable (hcd);
842}
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
845/*-------------------------------------------------------------------------*/
846
847/**
848 * usb_calc_bus_time - approximate periodic transaction time in nanoseconds
849 * @speed: from dev->speed; USB_SPEED_{LOW,FULL,HIGH}
850 * @is_input: true iff the transaction sends data to the host
851 * @isoc: true for isochronous transactions, false for interrupt ones
852 * @bytecount: how many bytes in the transaction.
853 *
854 * Returns approximate bus time in nanoseconds for a periodic transaction.
855 * See USB 2.0 spec section 5.11.3; only periodic transfers need to be
856 * scheduled in software, this function is only used for such scheduling.
857 */
858long usb_calc_bus_time (int speed, int is_input, int isoc, int bytecount)
859{
860 unsigned long tmp;
861
862 switch (speed) {
863 case USB_SPEED_LOW: /* INTR only */
864 if (is_input) {
865 tmp = (67667L * (31L + 10L * BitTime (bytecount))) / 1000L;
866 return (64060L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
867 } else {
868 tmp = (66700L * (31L + 10L * BitTime (bytecount))) / 1000L;
869 return (64107L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
870 }
871 case USB_SPEED_FULL: /* ISOC or INTR */
872 if (isoc) {
873 tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
874 return (((is_input) ? 7268L : 6265L) + BW_HOST_DELAY + tmp);
875 } else {
876 tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
877 return (9107L + BW_HOST_DELAY + tmp);
878 }
879 case USB_SPEED_HIGH: /* ISOC or INTR */
880 // FIXME adjust for input vs output
881 if (isoc)
Dan Streetman498f78e2005-07-29 12:18:28 -0700882 tmp = HS_NSECS_ISO (bytecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 else
Dan Streetman498f78e2005-07-29 12:18:28 -0700884 tmp = HS_NSECS (bytecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 return tmp;
886 default:
887 pr_debug ("%s: bogus device speed!\n", usbcore_name);
888 return -1;
889 }
890}
891EXPORT_SYMBOL (usb_calc_bus_time);
892
893/*
894 * usb_check_bandwidth():
895 *
896 * old_alloc is from host_controller->bandwidth_allocated in microseconds;
897 * bustime is from calc_bus_time(), but converted to microseconds.
898 *
899 * returns <bustime in us> if successful,
900 * or -ENOSPC if bandwidth request fails.
901 *
902 * FIXME:
903 * This initial implementation does not use Endpoint.bInterval
904 * in managing bandwidth allocation.
905 * It probably needs to be expanded to use Endpoint.bInterval.
906 * This can be done as a later enhancement (correction).
907 *
908 * This will also probably require some kind of
909 * frame allocation tracking...meaning, for example,
910 * that if multiple drivers request interrupts every 10 USB frames,
911 * they don't all have to be allocated at
912 * frame numbers N, N+10, N+20, etc. Some of them could be at
913 * N+11, N+21, N+31, etc., and others at
914 * N+12, N+22, N+32, etc.
915 *
916 * Similarly for isochronous transfers...
917 *
918 * Individual HCDs can schedule more directly ... this logic
919 * is not correct for high speed transfers.
920 */
921int usb_check_bandwidth (struct usb_device *dev, struct urb *urb)
922{
923 unsigned int pipe = urb->pipe;
924 long bustime;
925 int is_in = usb_pipein (pipe);
926 int is_iso = usb_pipeisoc (pipe);
927 int old_alloc = dev->bus->bandwidth_allocated;
928 int new_alloc;
929
930
931 bustime = NS_TO_US (usb_calc_bus_time (dev->speed, is_in, is_iso,
932 usb_maxpacket (dev, pipe, !is_in)));
933 if (is_iso)
934 bustime /= urb->number_of_packets;
935
936 new_alloc = old_alloc + (int) bustime;
937 if (new_alloc > FRAME_TIME_MAX_USECS_ALLOC) {
938#ifdef DEBUG
939 char *mode =
940#ifdef CONFIG_USB_BANDWIDTH
941 "";
942#else
943 "would have ";
944#endif
945 dev_dbg (&dev->dev, "usb_check_bandwidth %sFAILED: %d + %ld = %d usec\n",
946 mode, old_alloc, bustime, new_alloc);
947#endif
948#ifdef CONFIG_USB_BANDWIDTH
949 bustime = -ENOSPC; /* report error */
950#endif
951 }
952
953 return bustime;
954}
955EXPORT_SYMBOL (usb_check_bandwidth);
956
957
958/**
959 * usb_claim_bandwidth - records bandwidth for a periodic transfer
960 * @dev: source/target of request
961 * @urb: request (urb->dev == dev)
962 * @bustime: bandwidth consumed, in (average) microseconds per frame
963 * @isoc: true iff the request is isochronous
964 *
965 * Bus bandwidth reservations are recorded purely for diagnostic purposes.
966 * HCDs are expected not to overcommit periodic bandwidth, and to record such
967 * reservations whenever endpoints are added to the periodic schedule.
968 *
969 * FIXME averaging per-frame is suboptimal. Better to sum over the HCD's
970 * entire periodic schedule ... 32 frames for OHCI, 1024 for UHCI, settable
971 * for EHCI (256/512/1024 frames, default 1024) and have the bus expose how
972 * large its periodic schedule is.
973 */
974void usb_claim_bandwidth (struct usb_device *dev, struct urb *urb, int bustime, int isoc)
975{
976 dev->bus->bandwidth_allocated += bustime;
977 if (isoc)
978 dev->bus->bandwidth_isoc_reqs++;
979 else
980 dev->bus->bandwidth_int_reqs++;
981 urb->bandwidth = bustime;
982
983#ifdef USB_BANDWIDTH_MESSAGES
984 dev_dbg (&dev->dev, "bandwidth alloc increased by %d (%s) to %d for %d requesters\n",
985 bustime,
986 isoc ? "ISOC" : "INTR",
987 dev->bus->bandwidth_allocated,
988 dev->bus->bandwidth_int_reqs + dev->bus->bandwidth_isoc_reqs);
989#endif
990}
991EXPORT_SYMBOL (usb_claim_bandwidth);
992
993
994/**
995 * usb_release_bandwidth - reverses effect of usb_claim_bandwidth()
996 * @dev: source/target of request
997 * @urb: request (urb->dev == dev)
998 * @isoc: true iff the request is isochronous
999 *
1000 * This records that previously allocated bandwidth has been released.
1001 * Bandwidth is released when endpoints are removed from the host controller's
1002 * periodic schedule.
1003 */
1004void usb_release_bandwidth (struct usb_device *dev, struct urb *urb, int isoc)
1005{
1006 dev->bus->bandwidth_allocated -= urb->bandwidth;
1007 if (isoc)
1008 dev->bus->bandwidth_isoc_reqs--;
1009 else
1010 dev->bus->bandwidth_int_reqs--;
1011
1012#ifdef USB_BANDWIDTH_MESSAGES
1013 dev_dbg (&dev->dev, "bandwidth alloc reduced by %d (%s) to %d for %d requesters\n",
1014 urb->bandwidth,
1015 isoc ? "ISOC" : "INTR",
1016 dev->bus->bandwidth_allocated,
1017 dev->bus->bandwidth_int_reqs + dev->bus->bandwidth_isoc_reqs);
1018#endif
1019 urb->bandwidth = 0;
1020}
1021EXPORT_SYMBOL (usb_release_bandwidth);
1022
1023
1024/*-------------------------------------------------------------------------*/
1025
1026/*
1027 * Generic HC operations.
1028 */
1029
1030/*-------------------------------------------------------------------------*/
1031
1032static void urb_unlink (struct urb *urb)
1033{
1034 unsigned long flags;
1035
1036 /* Release any periodic transfer bandwidth */
1037 if (urb->bandwidth)
1038 usb_release_bandwidth (urb->dev, urb,
1039 usb_pipeisoc (urb->pipe));
1040
1041 /* clear all state linking urb to this dev (and hcd) */
1042
1043 spin_lock_irqsave (&hcd_data_lock, flags);
1044 list_del_init (&urb->urb_list);
1045 spin_unlock_irqrestore (&hcd_data_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
1048
1049/* may be called in any context with a valid urb->dev usecount
1050 * caller surrenders "ownership" of urb
1051 * expects usb_submit_urb() to have sanity checked and conditioned all
1052 * inputs in the urb
1053 */
Alan Sterna6d2bb92006-08-30 11:27:36 -04001054int usb_hcd_submit_urb (struct urb *urb, gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
1056 int status;
Alan Stern17200582006-08-30 11:32:52 -04001057 struct usb_hcd *hcd = bus_to_hcd(urb->dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 struct usb_host_endpoint *ep;
1059 unsigned long flags;
1060
1061 if (!hcd)
1062 return -ENODEV;
1063
1064 usbmon_urb_submit(&hcd->self, urb);
1065
1066 /*
1067 * Atomically queue the urb, first to our records, then to the HCD.
1068 * Access to urb->status is controlled by urb->lock ... changes on
1069 * i/o completion (normal or fault) or unlinking.
1070 */
1071
1072 // FIXME: verify that quiescing hc works right (RH cleans up)
1073
1074 spin_lock_irqsave (&hcd_data_lock, flags);
1075 ep = (usb_pipein(urb->pipe) ? urb->dev->ep_in : urb->dev->ep_out)
1076 [usb_pipeendpoint(urb->pipe)];
1077 if (unlikely (!ep))
1078 status = -ENOENT;
1079 else if (unlikely (urb->reject))
1080 status = -EPERM;
1081 else switch (hcd->state) {
1082 case HC_STATE_RUNNING:
1083 case HC_STATE_RESUMING:
David Brownell979d5192005-09-22 22:32:24 -07001084doit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 list_add_tail (&urb->urb_list, &ep->urb_list);
1086 status = 0;
1087 break;
David Brownell979d5192005-09-22 22:32:24 -07001088 case HC_STATE_SUSPENDED:
1089 /* HC upstream links (register access, wakeup signaling) can work
1090 * even when the downstream links (and DMA etc) are quiesced; let
1091 * usbcore talk to the root hub.
1092 */
1093 if (hcd->self.controller->power.power_state.event == PM_EVENT_ON
1094 && urb->dev->parent == NULL)
1095 goto doit;
1096 /* FALL THROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 default:
1098 status = -ESHUTDOWN;
1099 break;
1100 }
1101 spin_unlock_irqrestore (&hcd_data_lock, flags);
1102 if (status) {
1103 INIT_LIST_HEAD (&urb->urb_list);
1104 usbmon_urb_submit_error(&hcd->self, urb, status);
1105 return status;
1106 }
1107
1108 /* increment urb's reference count as part of giving it to the HCD
1109 * (which now controls it). HCD guarantees that it either returns
1110 * an error or calls giveback(), but not both.
1111 */
1112 urb = usb_get_urb (urb);
1113 atomic_inc (&urb->use_count);
1114
1115 if (urb->dev == hcd->self.root_hub) {
1116 /* NOTE: requirement on hub callers (usbfs and the hub
1117 * driver, for now) that URBs' urb->transfer_buffer be
1118 * valid and usb_buffer_{sync,unmap}() not be needed, since
1119 * they could clobber root hub response data.
1120 */
1121 status = rh_urb_enqueue (hcd, urb);
1122 goto done;
1123 }
1124
1125 /* lower level hcd code should use *_dma exclusively,
1126 * unless it uses pio or talks to another transport.
1127 */
Alan Sterndd990f12006-08-30 11:29:56 -04001128 if (hcd->self.uses_dma) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 if (usb_pipecontrol (urb->pipe)
1130 && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP))
1131 urb->setup_dma = dma_map_single (
1132 hcd->self.controller,
1133 urb->setup_packet,
1134 sizeof (struct usb_ctrlrequest),
1135 DMA_TO_DEVICE);
1136 if (urb->transfer_buffer_length != 0
1137 && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP))
1138 urb->transfer_dma = dma_map_single (
1139 hcd->self.controller,
1140 urb->transfer_buffer,
1141 urb->transfer_buffer_length,
1142 usb_pipein (urb->pipe)
1143 ? DMA_FROM_DEVICE
1144 : DMA_TO_DEVICE);
1145 }
1146
1147 status = hcd->driver->urb_enqueue (hcd, ep, urb, mem_flags);
1148done:
1149 if (unlikely (status)) {
1150 urb_unlink (urb);
1151 atomic_dec (&urb->use_count);
1152 if (urb->reject)
1153 wake_up (&usb_kill_urb_queue);
1154 usb_put_urb (urb);
1155 usbmon_urb_submit_error(&hcd->self, urb, status);
1156 }
1157 return status;
1158}
1159
1160/*-------------------------------------------------------------------------*/
1161
1162/* called in any context */
Alan Sterna6d2bb92006-08-30 11:27:36 -04001163int usb_hcd_get_frame_number (struct usb_device *udev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164{
Alan Stern17200582006-08-30 11:32:52 -04001165 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 if (!HC_IS_RUNNING (hcd->state))
1168 return -ESHUTDOWN;
1169 return hcd->driver->get_frame_number (hcd);
1170}
1171
1172/*-------------------------------------------------------------------------*/
1173
1174/* this makes the hcd giveback() the urb more quickly, by kicking it
1175 * off hardware queues (which may take a while) and returning it as
1176 * soon as practical. we've already set up the urb's return status,
1177 * but we can't know if the callback completed already.
1178 */
1179static int
1180unlink1 (struct usb_hcd *hcd, struct urb *urb)
1181{
1182 int value;
1183
1184 if (urb->dev == hcd->self.root_hub)
1185 value = usb_rh_urb_dequeue (hcd, urb);
1186 else {
1187
1188 /* The only reason an HCD might fail this call is if
1189 * it has not yet fully queued the urb to begin with.
1190 * Such failures should be harmless. */
1191 value = hcd->driver->urb_dequeue (hcd, urb);
1192 }
1193
1194 if (value != 0)
1195 dev_dbg (hcd->self.controller, "dequeue %p --> %d\n",
1196 urb, value);
1197 return value;
1198}
1199
1200/*
1201 * called in any context
1202 *
1203 * caller guarantees urb won't be recycled till both unlink()
1204 * and the urb's completion function return
1205 */
Alan Sterna6d2bb92006-08-30 11:27:36 -04001206int usb_hcd_unlink_urb (struct urb *urb, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
1208 struct usb_host_endpoint *ep;
1209 struct usb_hcd *hcd = NULL;
1210 struct device *sys = NULL;
1211 unsigned long flags;
1212 struct list_head *tmp;
1213 int retval;
1214
1215 if (!urb)
1216 return -EINVAL;
1217 if (!urb->dev || !urb->dev->bus)
1218 return -ENODEV;
1219 ep = (usb_pipein(urb->pipe) ? urb->dev->ep_in : urb->dev->ep_out)
1220 [usb_pipeendpoint(urb->pipe)];
1221 if (!ep)
1222 return -ENODEV;
1223
1224 /*
1225 * we contend for urb->status with the hcd core,
1226 * which changes it while returning the urb.
1227 *
1228 * Caller guaranteed that the urb pointer hasn't been freed, and
1229 * that it was submitted. But as a rule it can't know whether or
1230 * not it's already been unlinked ... so we respect the reversed
1231 * lock sequence needed for the usb_hcd_giveback_urb() code paths
1232 * (urb lock, then hcd_data_lock) in case some other CPU is now
1233 * unlinking it.
1234 */
1235 spin_lock_irqsave (&urb->lock, flags);
1236 spin_lock (&hcd_data_lock);
1237
1238 sys = &urb->dev->dev;
Alan Stern17200582006-08-30 11:32:52 -04001239 hcd = bus_to_hcd(urb->dev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 if (hcd == NULL) {
1241 retval = -ENODEV;
1242 goto done;
1243 }
1244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 /* insist the urb is still queued */
1246 list_for_each(tmp, &ep->urb_list) {
1247 if (tmp == &urb->urb_list)
1248 break;
1249 }
1250 if (tmp != &urb->urb_list) {
1251 retval = -EIDRM;
1252 goto done;
1253 }
1254
1255 /* Any status except -EINPROGRESS means something already started to
1256 * unlink this URB from the hardware. So there's no more work to do.
1257 */
1258 if (urb->status != -EINPROGRESS) {
1259 retval = -EBUSY;
1260 goto done;
1261 }
1262
1263 /* IRQ setup can easily be broken so that USB controllers
1264 * never get completion IRQs ... maybe even the ones we need to
1265 * finish unlinking the initial failed usb_set_address()
1266 * or device descriptor fetch.
1267 */
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001268 if (!test_bit(HCD_FLAG_SAW_IRQ, &hcd->flags)
1269 && hcd->self.root_hub != urb->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 dev_warn (hcd->self.controller, "Unlink after no-IRQ? "
1271 "Controller is probably using the wrong IRQ."
1272 "\n");
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001273 set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 }
1275
1276 urb->status = status;
1277
1278 spin_unlock (&hcd_data_lock);
1279 spin_unlock_irqrestore (&urb->lock, flags);
1280
1281 retval = unlink1 (hcd, urb);
1282 if (retval == 0)
1283 retval = -EINPROGRESS;
1284 return retval;
1285
1286done:
1287 spin_unlock (&hcd_data_lock);
1288 spin_unlock_irqrestore (&urb->lock, flags);
1289 if (retval != -EIDRM && sys && sys->driver)
1290 dev_dbg (sys, "hcd_unlink_urb %p fail %d\n", urb, retval);
1291 return retval;
1292}
1293
1294/*-------------------------------------------------------------------------*/
1295
1296/* disables the endpoint: cancels any pending urbs, then synchronizes with
Alan Stern455b25f2006-08-11 16:01:45 -04001297 * the hcd to make sure all endpoint state is gone from hardware, and then
1298 * waits until the endpoint's queue is completely drained. use for
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 * set_configuration, set_interface, driver removal, physical disconnect.
1300 *
1301 * example: a qh stored in ep->hcpriv, holding state related to endpoint
1302 * type, maxpacket size, toggle, halt status, and scheduling.
1303 */
Alan Sterna6d2bb92006-08-30 11:27:36 -04001304void usb_hcd_endpoint_disable (struct usb_device *udev,
1305 struct usb_host_endpoint *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
1307 struct usb_hcd *hcd;
1308 struct urb *urb;
1309
Alan Stern17200582006-08-30 11:32:52 -04001310 hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Alan Sternd5926ae72005-04-21 15:56:37 -04001312 WARN_ON (!HC_IS_RUNNING (hcd->state) && hcd->state != HC_STATE_HALT &&
1313 udev->state != USB_STATE_NOTATTACHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
1315 local_irq_disable ();
1316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 /* ep is already gone from udev->ep_{in,out}[]; no more submits */
1318rescan:
1319 spin_lock (&hcd_data_lock);
1320 list_for_each_entry (urb, &ep->urb_list, urb_list) {
1321 int tmp;
1322
Alan Stern455b25f2006-08-11 16:01:45 -04001323 /* the urb may already have been unlinked */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 if (urb->status != -EINPROGRESS)
1325 continue;
1326 usb_get_urb (urb);
1327 spin_unlock (&hcd_data_lock);
1328
1329 spin_lock (&urb->lock);
1330 tmp = urb->status;
1331 if (tmp == -EINPROGRESS)
1332 urb->status = -ESHUTDOWN;
1333 spin_unlock (&urb->lock);
1334
1335 /* kick hcd unless it's already returning this */
1336 if (tmp == -EINPROGRESS) {
1337 tmp = urb->pipe;
1338 unlink1 (hcd, urb);
1339 dev_dbg (hcd->self.controller,
1340 "shutdown urb %p pipe %08x ep%d%s%s\n",
1341 urb, tmp, usb_pipeendpoint (tmp),
1342 (tmp & USB_DIR_IN) ? "in" : "out",
1343 ({ char *s; \
1344 switch (usb_pipetype (tmp)) { \
1345 case PIPE_CONTROL: s = ""; break; \
1346 case PIPE_BULK: s = "-bulk"; break; \
1347 case PIPE_INTERRUPT: s = "-intr"; break; \
1348 default: s = "-iso"; break; \
1349 }; s;}));
1350 }
1351 usb_put_urb (urb);
1352
1353 /* list contents may have changed */
1354 goto rescan;
1355 }
1356 spin_unlock (&hcd_data_lock);
1357 local_irq_enable ();
1358
1359 /* synchronize with the hardware, so old configuration state
1360 * clears out immediately (and will be freed).
1361 */
1362 might_sleep ();
1363 if (hcd->driver->endpoint_disable)
1364 hcd->driver->endpoint_disable (hcd, ep);
Alan Stern455b25f2006-08-11 16:01:45 -04001365
1366 /* Wait until the endpoint queue is completely empty. Most HCDs
1367 * will have done this already in their endpoint_disable method,
1368 * but some might not. And there could be root-hub control URBs
1369 * still pending since they aren't affected by the HCDs'
1370 * endpoint_disable methods.
1371 */
1372 while (!list_empty (&ep->urb_list)) {
1373 spin_lock_irq (&hcd_data_lock);
1374
1375 /* The list may have changed while we acquired the spinlock */
1376 urb = NULL;
1377 if (!list_empty (&ep->urb_list)) {
1378 urb = list_entry (ep->urb_list.prev, struct urb,
1379 urb_list);
1380 usb_get_urb (urb);
1381 }
1382 spin_unlock_irq (&hcd_data_lock);
1383
1384 if (urb) {
1385 usb_kill_urb (urb);
1386 usb_put_urb (urb);
1387 }
1388 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389}
1390
1391/*-------------------------------------------------------------------------*/
1392
David Brownell92936772005-09-22 22:32:11 -07001393#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Alan Stern0c0382e2005-10-13 17:08:02 -04001395int hcd_bus_suspend (struct usb_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
1397 struct usb_hcd *hcd;
David Brownell92936772005-09-22 22:32:11 -07001398 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
1400 hcd = container_of (bus, struct usb_hcd, self);
Alan Stern0c0382e2005-10-13 17:08:02 -04001401 if (!hcd->driver->bus_suspend)
David Brownell92936772005-09-22 22:32:11 -07001402 return -ENOENT;
1403 hcd->state = HC_STATE_QUIESCING;
Alan Stern0c0382e2005-10-13 17:08:02 -04001404 status = hcd->driver->bus_suspend (hcd);
David Brownell92936772005-09-22 22:32:11 -07001405 if (status == 0)
1406 hcd->state = HC_STATE_SUSPENDED;
1407 else
1408 dev_dbg(&bus->root_hub->dev, "%s fail, err %d\n",
1409 "suspend", status);
1410 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411}
1412
Alan Stern0c0382e2005-10-13 17:08:02 -04001413int hcd_bus_resume (struct usb_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
1415 struct usb_hcd *hcd;
David Brownell92936772005-09-22 22:32:11 -07001416 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 hcd = container_of (bus, struct usb_hcd, self);
Alan Stern0c0382e2005-10-13 17:08:02 -04001419 if (!hcd->driver->bus_resume)
David Brownell92936772005-09-22 22:32:11 -07001420 return -ENOENT;
David Brownell979d5192005-09-22 22:32:24 -07001421 if (hcd->state == HC_STATE_RUNNING)
1422 return 0;
David Brownell92936772005-09-22 22:32:11 -07001423 hcd->state = HC_STATE_RESUMING;
Alan Stern0c0382e2005-10-13 17:08:02 -04001424 status = hcd->driver->bus_resume (hcd);
David Brownell92936772005-09-22 22:32:11 -07001425 if (status == 0)
1426 hcd->state = HC_STATE_RUNNING;
1427 else {
1428 dev_dbg(&bus->root_hub->dev, "%s fail, err %d\n",
1429 "resume", status);
1430 usb_hc_died(hcd);
1431 }
1432 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433}
1434
1435/**
1436 * usb_hcd_resume_root_hub - called by HCD to resume its root hub
1437 * @hcd: host controller for this root hub
1438 *
1439 * The USB host controller calls this function when its root hub is
1440 * suspended (with the remote wakeup feature enabled) and a remote
1441 * wakeup request is received. It queues a request for khubd to
David Brownell979d5192005-09-22 22:32:24 -07001442 * resume the root hub (that is, manage its downstream ports again).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 */
1444void usb_hcd_resume_root_hub (struct usb_hcd *hcd)
1445{
1446 unsigned long flags;
1447
1448 spin_lock_irqsave (&hcd_root_hub_lock, flags);
1449 if (hcd->rh_registered)
1450 usb_resume_root_hub (hcd->self.root_hub);
1451 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
1452}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453EXPORT_SYMBOL_GPL(usb_hcd_resume_root_hub);
1454
David Brownell92936772005-09-22 22:32:11 -07001455#endif
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457/*-------------------------------------------------------------------------*/
1458
1459#ifdef CONFIG_USB_OTG
1460
1461/**
1462 * usb_bus_start_enum - start immediate enumeration (for OTG)
1463 * @bus: the bus (must use hcd framework)
1464 * @port_num: 1-based number of port; usually bus->otg_port
1465 * Context: in_interrupt()
1466 *
1467 * Starts enumeration, with an immediate reset followed later by
1468 * khubd identifying and possibly configuring the device.
1469 * This is needed by OTG controller drivers, where it helps meet
1470 * HNP protocol timing requirements for starting a port reset.
1471 */
1472int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num)
1473{
1474 struct usb_hcd *hcd;
1475 int status = -EOPNOTSUPP;
1476
1477 /* NOTE: since HNP can't start by grabbing the bus's address0_sem,
1478 * boards with root hubs hooked up to internal devices (instead of
1479 * just the OTG port) may need more attention to resetting...
1480 */
1481 hcd = container_of (bus, struct usb_hcd, self);
1482 if (port_num && hcd->driver->start_port_reset)
1483 status = hcd->driver->start_port_reset(hcd, port_num);
1484
1485 /* run khubd shortly after (first) root port reset finishes;
1486 * it may issue others, until at least 50 msecs have passed.
1487 */
1488 if (status == 0)
1489 mod_timer(&hcd->rh_timer, jiffies + msecs_to_jiffies(10));
1490 return status;
1491}
1492EXPORT_SYMBOL (usb_bus_start_enum);
1493
1494#endif
1495
1496/*-------------------------------------------------------------------------*/
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498/**
1499 * usb_hcd_giveback_urb - return URB from HCD to device driver
1500 * @hcd: host controller returning the URB
1501 * @urb: urb being returned to the USB device driver.
1502 * @regs: pt_regs, passed down to the URB completion handler
1503 * Context: in_interrupt()
1504 *
1505 * This hands the URB from HCD to its USB device driver, using its
1506 * completion function. The HCD has freed all per-urb resources
1507 * (and is done using urb->hcpriv). It also released all HCD locks;
1508 * the device driver won't cause problems if it frees, modifies,
1509 * or resubmits this URB.
1510 */
1511void usb_hcd_giveback_urb (struct usb_hcd *hcd, struct urb *urb, struct pt_regs *regs)
1512{
1513 int at_root_hub;
1514
1515 at_root_hub = (urb->dev == hcd->self.root_hub);
1516 urb_unlink (urb);
1517
Alan Sterndd990f12006-08-30 11:29:56 -04001518 /* lower level hcd code should use *_dma exclusively if the
1519 * host controller does DMA */
1520 if (hcd->self.uses_dma && !at_root_hub) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 if (usb_pipecontrol (urb->pipe)
1522 && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP))
1523 dma_unmap_single (hcd->self.controller, urb->setup_dma,
1524 sizeof (struct usb_ctrlrequest),
1525 DMA_TO_DEVICE);
1526 if (urb->transfer_buffer_length != 0
1527 && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP))
1528 dma_unmap_single (hcd->self.controller,
1529 urb->transfer_dma,
1530 urb->transfer_buffer_length,
1531 usb_pipein (urb->pipe)
1532 ? DMA_FROM_DEVICE
1533 : DMA_TO_DEVICE);
1534 }
1535
1536 usbmon_urb_complete (&hcd->self, urb);
1537 /* pass ownership to the completion handler */
1538 urb->complete (urb, regs);
1539 atomic_dec (&urb->use_count);
1540 if (unlikely (urb->reject))
1541 wake_up (&usb_kill_urb_queue);
1542 usb_put_urb (urb);
1543}
1544EXPORT_SYMBOL (usb_hcd_giveback_urb);
1545
1546/*-------------------------------------------------------------------------*/
1547
1548/**
1549 * usb_hcd_irq - hook IRQs to HCD framework (bus glue)
1550 * @irq: the IRQ being raised
1551 * @__hcd: pointer to the HCD whose IRQ is being signaled
1552 * @r: saved hardware registers
1553 *
1554 * If the controller isn't HALTed, calls the driver's irq handler.
1555 * Checks whether the controller is now dead.
1556 */
1557irqreturn_t usb_hcd_irq (int irq, void *__hcd, struct pt_regs * r)
1558{
1559 struct usb_hcd *hcd = __hcd;
1560 int start = hcd->state;
1561
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001562 if (unlikely(start == HC_STATE_HALT ||
1563 !test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 return IRQ_NONE;
1565 if (hcd->driver->irq (hcd, r) == IRQ_NONE)
1566 return IRQ_NONE;
1567
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001568 set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
1569
1570 if (unlikely(hcd->state == HC_STATE_HALT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 usb_hc_died (hcd);
1572 return IRQ_HANDLED;
1573}
1574
1575/*-------------------------------------------------------------------------*/
1576
1577/**
1578 * usb_hc_died - report abnormal shutdown of a host controller (bus glue)
1579 * @hcd: pointer to the HCD representing the controller
1580 *
1581 * This is called by bus glue to report a USB host controller that died
1582 * while operations may still have been pending. It's called automatically
1583 * by the PCI glue, so only glue for non-PCI busses should need to call it.
1584 */
1585void usb_hc_died (struct usb_hcd *hcd)
1586{
1587 unsigned long flags;
1588
1589 dev_err (hcd->self.controller, "HC died; cleaning up\n");
1590
1591 spin_lock_irqsave (&hcd_root_hub_lock, flags);
1592 if (hcd->rh_registered) {
Alan Sternd5926ae72005-04-21 15:56:37 -04001593 hcd->poll_rh = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
1595 /* make khubd clean up old urbs and devices */
1596 usb_set_device_state (hcd->self.root_hub,
1597 USB_STATE_NOTATTACHED);
1598 usb_kick_khubd (hcd->self.root_hub);
1599 }
1600 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
1601}
1602EXPORT_SYMBOL_GPL (usb_hc_died);
1603
1604/*-------------------------------------------------------------------------*/
1605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606/**
1607 * usb_create_hcd - create and initialize an HCD structure
1608 * @driver: HC driver that will use this hcd
1609 * @dev: device for this HC, stored in hcd->self.controller
1610 * @bus_name: value to store in hcd->self.bus_name
1611 * Context: !in_interrupt()
1612 *
1613 * Allocate a struct usb_hcd, with extra space at the end for the
1614 * HC driver's private data. Initialize the generic members of the
1615 * hcd structure.
1616 *
1617 * If memory is unavailable, returns NULL.
1618 */
1619struct usb_hcd *usb_create_hcd (const struct hc_driver *driver,
1620 struct device *dev, char *bus_name)
1621{
1622 struct usb_hcd *hcd;
1623
Pekka Enberg7b842b62005-09-06 15:18:34 -07001624 hcd = kzalloc(sizeof(*hcd) + driver->hcd_priv_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 if (!hcd) {
1626 dev_dbg (dev, "hcd alloc failed\n");
1627 return NULL;
1628 }
1629 dev_set_drvdata(dev, hcd);
Alan Stern17200582006-08-30 11:32:52 -04001630 kref_init(&hcd->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
1632 usb_bus_init(&hcd->self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 hcd->self.controller = dev;
1634 hcd->self.bus_name = bus_name;
Alan Sterndd990f12006-08-30 11:29:56 -04001635 hcd->self.uses_dma = (dev->dma_mask != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
1637 init_timer(&hcd->rh_timer);
Alan Sternd5926ae72005-04-21 15:56:37 -04001638 hcd->rh_timer.function = rh_timer_func;
1639 hcd->rh_timer.data = (unsigned long) hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641 hcd->driver = driver;
1642 hcd->product_desc = (driver->product_desc) ? driver->product_desc :
1643 "USB Host Controller";
1644
1645 return hcd;
1646}
1647EXPORT_SYMBOL (usb_create_hcd);
1648
Alan Stern17200582006-08-30 11:32:52 -04001649static void hcd_release (struct kref *kref)
1650{
1651 struct usb_hcd *hcd = container_of (kref, struct usb_hcd, kref);
1652
1653 kfree(hcd);
1654}
1655
1656struct usb_hcd *usb_get_hcd (struct usb_hcd *hcd)
1657{
1658 if (hcd)
1659 kref_get (&hcd->kref);
1660 return hcd;
1661}
1662EXPORT_SYMBOL (usb_get_hcd);
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664void usb_put_hcd (struct usb_hcd *hcd)
1665{
Alan Stern17200582006-08-30 11:32:52 -04001666 if (hcd)
1667 kref_put (&hcd->kref, hcd_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668}
1669EXPORT_SYMBOL (usb_put_hcd);
1670
1671/**
1672 * usb_add_hcd - finish generic HCD structure initialization and register
1673 * @hcd: the usb_hcd structure to initialize
1674 * @irqnum: Interrupt line to allocate
1675 * @irqflags: Interrupt type flags
1676 *
1677 * Finish the remaining parts of generic HCD initialization: allocate the
1678 * buffers of consistent memory, register the bus, request the IRQ line,
1679 * and call the driver's reset() and start() routines.
1680 */
1681int usb_add_hcd(struct usb_hcd *hcd,
1682 unsigned int irqnum, unsigned long irqflags)
1683{
Alan Stern8ec8d202005-04-25 11:25:17 -04001684 int retval;
1685 struct usb_device *rhdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
1687 dev_info(hcd->self.controller, "%s\n", hcd->product_desc);
1688
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001689 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1690
David Brownellb1e8f0a2006-01-23 15:25:40 -08001691 /* HC is in reset state, but accessible. Now do the one-time init,
1692 * bottom up so that hcds can customize the root hubs before khubd
1693 * starts talking to them. (Note, bus id is assigned early too.)
1694 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 if ((retval = hcd_buffer_create(hcd)) != 0) {
1696 dev_dbg(hcd->self.controller, "pool alloc failed\n");
1697 return retval;
1698 }
1699
1700 if ((retval = usb_register_bus(&hcd->self)) < 0)
Alan Stern8ec8d202005-04-25 11:25:17 -04001701 goto err_register_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
David Brownellb1e8f0a2006-01-23 15:25:40 -08001703 if ((rhdev = usb_alloc_dev(NULL, &hcd->self, 0)) == NULL) {
1704 dev_err(hcd->self.controller, "unable to allocate root hub\n");
1705 retval = -ENOMEM;
1706 goto err_allocate_root_hub;
1707 }
1708 rhdev->speed = (hcd->driver->flags & HCD_USB2) ? USB_SPEED_HIGH :
1709 USB_SPEED_FULL;
1710 hcd->self.root_hub = rhdev;
1711
David Brownelldb4cefa2006-05-01 22:07:13 -07001712 /* wakeup flag init defaults to "everything works" for root hubs,
1713 * but drivers can override it in reset() if needed, along with
1714 * recording the overall controller's system wakeup capability.
1715 */
1716 device_init_wakeup(&rhdev->dev, 1);
1717
David Brownellb1e8f0a2006-01-23 15:25:40 -08001718 /* "reset" is misnamed; its role is now one-time init. the controller
1719 * should already have been reset (and boot firmware kicked off etc).
1720 */
1721 if (hcd->driver->reset && (retval = hcd->driver->reset(hcd)) < 0) {
1722 dev_err(hcd->self.controller, "can't setup\n");
1723 goto err_hcd_driver_setup;
1724 }
1725
David Brownellfb669cc2006-01-24 08:40:27 -08001726 /* NOTE: root hub and controller capabilities may not be the same */
1727 if (device_can_wakeup(hcd->self.controller)
1728 && device_can_wakeup(&hcd->self.root_hub->dev))
David Brownellb1e8f0a2006-01-23 15:25:40 -08001729 dev_dbg(hcd->self.controller, "supports USB remote wakeup\n");
David Brownellb1e8f0a2006-01-23 15:25:40 -08001730
1731 /* enable irqs just before we start the controller */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 if (hcd->driver->irq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 snprintf(hcd->irq_descr, sizeof(hcd->irq_descr), "%s:usb%d",
1734 hcd->driver->description, hcd->self.busnum);
1735 if ((retval = request_irq(irqnum, &usb_hcd_irq, irqflags,
1736 hcd->irq_descr, hcd)) != 0) {
1737 dev_err(hcd->self.controller,
David S. Millerc6387a42006-06-20 01:21:29 -07001738 "request interrupt %d failed\n", irqnum);
Alan Stern8ec8d202005-04-25 11:25:17 -04001739 goto err_request_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 }
1741 hcd->irq = irqnum;
David S. Millerc6387a42006-06-20 01:21:29 -07001742 dev_info(hcd->self.controller, "irq %d, %s 0x%08llx\n", irqnum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 (hcd->driver->flags & HCD_MEMORY) ?
1744 "io mem" : "io base",
1745 (unsigned long long)hcd->rsrc_start);
1746 } else {
1747 hcd->irq = -1;
1748 if (hcd->rsrc_start)
1749 dev_info(hcd->self.controller, "%s 0x%08llx\n",
1750 (hcd->driver->flags & HCD_MEMORY) ?
1751 "io mem" : "io base",
1752 (unsigned long long)hcd->rsrc_start);
1753 }
1754
1755 if ((retval = hcd->driver->start(hcd)) < 0) {
1756 dev_err(hcd->self.controller, "startup error %d\n", retval);
Alan Stern8ec8d202005-04-25 11:25:17 -04001757 goto err_hcd_driver_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 }
1759
David Brownellb1e8f0a2006-01-23 15:25:40 -08001760 /* starting here, usbcore will pay attention to this root hub */
Alan Stern55c52712005-11-23 12:03:12 -05001761 rhdev->bus_mA = min(500u, hcd->power_budget);
David Brownellb1e8f0a2006-01-23 15:25:40 -08001762 if ((retval = register_root_hub(hcd)) != 0)
Alan Stern8ec8d202005-04-25 11:25:17 -04001763 goto err_register_root_hub;
1764
Alan Sternd5926ae72005-04-21 15:56:37 -04001765 if (hcd->uses_new_polling && hcd->poll_rh)
1766 usb_hcd_poll_rh_status(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 return retval;
1768
David Brownellb1e8f0a2006-01-23 15:25:40 -08001769err_register_root_hub:
Alan Stern8ec8d202005-04-25 11:25:17 -04001770 hcd->driver->stop(hcd);
David Brownellb1e8f0a2006-01-23 15:25:40 -08001771err_hcd_driver_start:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 if (hcd->irq >= 0)
1773 free_irq(irqnum, hcd);
David Brownellb1e8f0a2006-01-23 15:25:40 -08001774err_request_irq:
1775err_hcd_driver_setup:
1776 hcd->self.root_hub = NULL;
1777 usb_put_dev(rhdev);
1778err_allocate_root_hub:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 usb_deregister_bus(&hcd->self);
David Brownellb1e8f0a2006-01-23 15:25:40 -08001780err_register_bus:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 hcd_buffer_destroy(hcd);
1782 return retval;
1783}
1784EXPORT_SYMBOL (usb_add_hcd);
1785
1786/**
1787 * usb_remove_hcd - shutdown processing for generic HCDs
1788 * @hcd: the usb_hcd structure to remove
1789 * Context: !in_interrupt()
1790 *
1791 * Disconnects the root hub, then reverses the effects of usb_add_hcd(),
1792 * invoking the HCD's stop() method.
1793 */
1794void usb_remove_hcd(struct usb_hcd *hcd)
1795{
1796 dev_info(hcd->self.controller, "remove, state %x\n", hcd->state);
1797
1798 if (HC_IS_RUNNING (hcd->state))
1799 hcd->state = HC_STATE_QUIESCING;
1800
1801 dev_dbg(hcd->self.controller, "roothub graceful disconnect\n");
1802 spin_lock_irq (&hcd_root_hub_lock);
1803 hcd->rh_registered = 0;
1804 spin_unlock_irq (&hcd_root_hub_lock);
Alan Stern9ad3d6c2005-11-17 17:10:32 -05001805
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01001806 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 usb_disconnect(&hcd->self.root_hub);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01001808 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809
Alan Sternd5926ae72005-04-21 15:56:37 -04001810 hcd->poll_rh = 0;
1811 del_timer_sync(&hcd->rh_timer);
1812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 hcd->driver->stop(hcd);
1814 hcd->state = HC_STATE_HALT;
1815
1816 if (hcd->irq >= 0)
1817 free_irq(hcd->irq, hcd);
1818 usb_deregister_bus(&hcd->self);
1819 hcd_buffer_destroy(hcd);
1820}
1821EXPORT_SYMBOL (usb_remove_hcd);
1822
Aleksey Gorelov64a21d02006-08-08 17:24:08 -07001823void
1824usb_hcd_platform_shutdown(struct platform_device* dev)
1825{
1826 struct usb_hcd *hcd = platform_get_drvdata(dev);
1827
1828 if (hcd->driver->shutdown)
1829 hcd->driver->shutdown(hcd);
1830}
1831EXPORT_SYMBOL (usb_hcd_platform_shutdown);
1832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833/*-------------------------------------------------------------------------*/
1834
Adrian Bunk4749f322005-06-23 11:36:56 +02001835#if defined(CONFIG_USB_MON)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
1837struct usb_mon_operations *mon_ops;
1838
1839/*
1840 * The registration is unlocked.
1841 * We do it this way because we do not want to lock in hot paths.
1842 *
1843 * Notice that the code is minimally error-proof. Because usbmon needs
1844 * symbols from usbcore, usbcore gets referenced and cannot be unloaded first.
1845 */
1846
1847int usb_mon_register (struct usb_mon_operations *ops)
1848{
1849
1850 if (mon_ops)
1851 return -EBUSY;
1852
1853 mon_ops = ops;
1854 mb();
1855 return 0;
1856}
1857EXPORT_SYMBOL_GPL (usb_mon_register);
1858
1859void usb_mon_deregister (void)
1860{
1861
1862 if (mon_ops == NULL) {
1863 printk(KERN_ERR "USB: monitor was not registered\n");
1864 return;
1865 }
1866 mon_ops = NULL;
1867 mb();
1868}
1869EXPORT_SYMBOL_GPL (usb_mon_deregister);
1870
1871#endif /* CONFIG_USB_MON */