blob: a98d978d76e2bbec2c2e7089ee6689bdca6feedb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * (C) Copyright Linus Torvalds 1999
3 * (C) Copyright Johannes Erdfelt 1999-2001
4 * (C) Copyright Andreas Gal 1999
5 * (C) Copyright Gregory P. Smith 1999
6 * (C) Copyright Deti Fliegl 1999
7 * (C) Copyright Randy Dunlap 2000
8 * (C) Copyright David Brownell 2000-2002
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the
12 * Free Software Foundation; either version 2 of the License, or (at your
13 * option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
17 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 * for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
24
25#include <linux/config.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
27#include <linux/version.h>
28#include <linux/kernel.h>
29#include <linux/slab.h>
30#include <linux/completion.h>
31#include <linux/utsname.h>
32#include <linux/mm.h>
33#include <asm/io.h>
34#include <asm/scatterlist.h>
35#include <linux/device.h>
36#include <linux/dma-mapping.h>
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010037#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/irq.h>
39#include <asm/byteorder.h>
40
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;
348 u8 tbuf [sizeof (struct usb_hub_descriptor)];
349 const u8 *bufp = tbuf;
350 int len = 0;
351 int patch_wakeup = 0;
352 unsigned long flags;
353 int status = 0;
354 int n;
355
356 cmd = (struct usb_ctrlrequest *) urb->setup_packet;
357 typeReq = (cmd->bRequestType << 8) | cmd->bRequest;
358 wValue = le16_to_cpu (cmd->wValue);
359 wIndex = le16_to_cpu (cmd->wIndex);
360 wLength = le16_to_cpu (cmd->wLength);
361
362 if (wLength > urb->transfer_buffer_length)
363 goto error;
364
365 urb->actual_length = 0;
366 switch (typeReq) {
367
368 /* DEVICE REQUESTS */
369
David Brownellfb669cc2006-01-24 08:40:27 -0800370 /* The root hub's remote wakeup enable bit is implemented using
371 * driver model wakeup flags. If this system supports wakeup
372 * through USB, userspace may change the default "allow wakeup"
373 * policy through sysfs or these calls.
374 *
375 * Most root hubs support wakeup from downstream devices, for
376 * runtime power management (disabling USB clocks and reducing
377 * VBUS power usage). However, not all of them do so; silicon,
378 * board, and BIOS bugs here are not uncommon, so these can't
379 * be treated quite like external hubs.
380 *
381 * Likewise, not all root hubs will pass wakeup events upstream,
382 * to wake up the whole system. So don't assume root hub and
383 * controller capabilities are identical.
384 */
385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 case DeviceRequest | USB_REQ_GET_STATUS:
David Brownellfb669cc2006-01-24 08:40:27 -0800387 tbuf [0] = (device_may_wakeup(&hcd->self.root_hub->dev)
388 << USB_DEVICE_REMOTE_WAKEUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 | (1 << USB_DEVICE_SELF_POWERED);
390 tbuf [1] = 0;
391 len = 2;
392 break;
393 case DeviceOutRequest | USB_REQ_CLEAR_FEATURE:
394 if (wValue == USB_DEVICE_REMOTE_WAKEUP)
David Brownellfb669cc2006-01-24 08:40:27 -0800395 device_set_wakeup_enable(&hcd->self.root_hub->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 else
397 goto error;
398 break;
399 case DeviceOutRequest | USB_REQ_SET_FEATURE:
David Brownellfb669cc2006-01-24 08:40:27 -0800400 if (device_can_wakeup(&hcd->self.root_hub->dev)
401 && wValue == USB_DEVICE_REMOTE_WAKEUP)
402 device_set_wakeup_enable(&hcd->self.root_hub->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 else
404 goto error;
405 break;
406 case DeviceRequest | USB_REQ_GET_CONFIGURATION:
407 tbuf [0] = 1;
408 len = 1;
409 /* FALLTHROUGH */
410 case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
411 break;
412 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
413 switch (wValue & 0xff00) {
414 case USB_DT_DEVICE << 8:
415 if (hcd->driver->flags & HCD_USB2)
416 bufp = usb2_rh_dev_descriptor;
417 else if (hcd->driver->flags & HCD_USB11)
418 bufp = usb11_rh_dev_descriptor;
419 else
420 goto error;
421 len = 18;
422 break;
423 case USB_DT_CONFIG << 8:
424 if (hcd->driver->flags & HCD_USB2) {
425 bufp = hs_rh_config_descriptor;
426 len = sizeof hs_rh_config_descriptor;
427 } else {
428 bufp = fs_rh_config_descriptor;
429 len = sizeof fs_rh_config_descriptor;
430 }
David Brownellfb669cc2006-01-24 08:40:27 -0800431 if (device_can_wakeup(&hcd->self.root_hub->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 patch_wakeup = 1;
433 break;
434 case USB_DT_STRING << 8:
435 n = rh_string (wValue & 0xff, hcd, ubuf, wLength);
436 if (n < 0)
437 goto error;
438 urb->actual_length = n;
439 break;
440 default:
441 goto error;
442 }
443 break;
444 case DeviceRequest | USB_REQ_GET_INTERFACE:
445 tbuf [0] = 0;
446 len = 1;
447 /* FALLTHROUGH */
448 case DeviceOutRequest | USB_REQ_SET_INTERFACE:
449 break;
450 case DeviceOutRequest | USB_REQ_SET_ADDRESS:
451 // wValue == urb->dev->devaddr
452 dev_dbg (hcd->self.controller, "root hub device address %d\n",
453 wValue);
454 break;
455
456 /* INTERFACE REQUESTS (no defined feature/status flags) */
457
458 /* ENDPOINT REQUESTS */
459
460 case EndpointRequest | USB_REQ_GET_STATUS:
461 // ENDPOINT_HALT flag
462 tbuf [0] = 0;
463 tbuf [1] = 0;
464 len = 2;
465 /* FALLTHROUGH */
466 case EndpointOutRequest | USB_REQ_CLEAR_FEATURE:
467 case EndpointOutRequest | USB_REQ_SET_FEATURE:
468 dev_dbg (hcd->self.controller, "no endpoint features yet\n");
469 break;
470
471 /* CLASS REQUESTS (and errors) */
472
473 default:
474 /* non-generic request */
David Brownellb13296c2005-09-27 10:38:54 -0700475 switch (typeReq) {
476 case GetHubStatus:
477 case GetPortStatus:
478 len = 4;
479 break;
480 case GetHubDescriptor:
481 len = sizeof (struct usb_hub_descriptor);
482 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
David Brownellb13296c2005-09-27 10:38:54 -0700484 status = hcd->driver->hub_control (hcd,
485 typeReq, wValue, wIndex,
486 tbuf, wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 break;
488error:
489 /* "protocol stall" on error */
490 status = -EPIPE;
491 }
492
493 if (status) {
494 len = 0;
495 if (status != -EPIPE) {
496 dev_dbg (hcd->self.controller,
497 "CTRL: TypeReq=0x%x val=0x%x "
498 "idx=0x%x len=%d ==> %d\n",
499 typeReq, wValue, wIndex,
David Brownellb13296c2005-09-27 10:38:54 -0700500 wLength, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 }
502 }
503 if (len) {
504 if (urb->transfer_buffer_length < len)
505 len = urb->transfer_buffer_length;
506 urb->actual_length = len;
507 // always USB_DIR_IN, toward host
508 memcpy (ubuf, bufp, len);
509
510 /* report whether RH hardware supports remote wakeup */
511 if (patch_wakeup &&
512 len > offsetof (struct usb_config_descriptor,
513 bmAttributes))
514 ((struct usb_config_descriptor *)ubuf)->bmAttributes
515 |= USB_CONFIG_ATT_WAKEUP;
516 }
517
518 /* any errors get returned through the urb completion */
519 local_irq_save (flags);
520 spin_lock (&urb->lock);
521 if (urb->status == -EINPROGRESS)
522 urb->status = status;
523 spin_unlock (&urb->lock);
524 usb_hcd_giveback_urb (hcd, urb, NULL);
525 local_irq_restore (flags);
526 return 0;
527}
528
529/*-------------------------------------------------------------------------*/
530
531/*
Alan Sternd5926ae72005-04-21 15:56:37 -0400532 * Root Hub interrupt transfers are polled using a timer if the
533 * driver requests it; otherwise the driver is responsible for
534 * calling usb_hcd_poll_rh_status() when an event occurs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 *
Alan Sternd5926ae72005-04-21 15:56:37 -0400536 * Completions are called in_interrupt(), but they may or may not
537 * be in_irq().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 */
Alan Sternd5926ae72005-04-21 15:56:37 -0400539void usb_hcd_poll_rh_status(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 struct urb *urb;
Alan Sternd5926ae72005-04-21 15:56:37 -0400542 int length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 unsigned long flags;
Alan Sternd5926ae72005-04-21 15:56:37 -0400544 char buffer[4]; /* Any root hubs with > 31 ports? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
Alan Sternd5926ae72005-04-21 15:56:37 -0400546 if (!hcd->uses_new_polling && !hcd->status_urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
Alan Sternd5926ae72005-04-21 15:56:37 -0400549 length = hcd->driver->hub_status_data(hcd, buffer);
550 if (length > 0) {
551
552 /* try to complete the status urb */
553 local_irq_save (flags);
554 spin_lock(&hcd_root_hub_lock);
555 urb = hcd->status_urb;
556 if (urb) {
557 spin_lock(&urb->lock);
558 if (urb->status == -EINPROGRESS) {
559 hcd->poll_pending = 0;
560 hcd->status_urb = NULL;
561 urb->status = 0;
562 urb->hcpriv = NULL;
563 urb->actual_length = length;
564 memcpy(urb->transfer_buffer, buffer, length);
565 } else /* urb has been unlinked */
566 length = 0;
567 spin_unlock(&urb->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 } else
Alan Sternd5926ae72005-04-21 15:56:37 -0400569 length = 0;
570 spin_unlock(&hcd_root_hub_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Alan Sternd5926ae72005-04-21 15:56:37 -0400572 /* local irqs are always blocked in completions */
573 if (length > 0)
574 usb_hcd_giveback_urb (hcd, urb, NULL);
575 else
576 hcd->poll_pending = 1;
577 local_irq_restore (flags);
578 }
579
580 /* The USB 2.0 spec says 256 ms. This is close enough and won't
581 * exceed that limit if HZ is 100. */
582 if (hcd->uses_new_polling ? hcd->poll_rh :
583 (length == 0 && hcd->status_urb != NULL))
584 mod_timer (&hcd->rh_timer, jiffies + msecs_to_jiffies(250));
585}
586EXPORT_SYMBOL_GPL(usb_hcd_poll_rh_status);
587
588/* timer callback */
589static void rh_timer_func (unsigned long _hcd)
590{
591 usb_hcd_poll_rh_status((struct usb_hcd *) _hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
594/*-------------------------------------------------------------------------*/
595
Alan Sternd5926ae72005-04-21 15:56:37 -0400596static int rh_queue_status (struct usb_hcd *hcd, struct urb *urb)
597{
598 int retval;
599 unsigned long flags;
600 int len = 1 + (urb->dev->maxchild / 8);
601
602 spin_lock_irqsave (&hcd_root_hub_lock, flags);
603 if (urb->status != -EINPROGRESS) /* already unlinked */
604 retval = urb->status;
605 else if (hcd->status_urb || urb->transfer_buffer_length < len) {
606 dev_dbg (hcd->self.controller, "not queuing rh status urb\n");
607 retval = -EINVAL;
608 } else {
609 hcd->status_urb = urb;
610 urb->hcpriv = hcd; /* indicate it's queued */
611
612 if (!hcd->uses_new_polling)
613 mod_timer (&hcd->rh_timer, jiffies +
614 msecs_to_jiffies(250));
615
616 /* If a status change has already occurred, report it ASAP */
617 else if (hcd->poll_pending)
618 mod_timer (&hcd->rh_timer, jiffies);
619 retval = 0;
620 }
621 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
622 return retval;
623}
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625static int rh_urb_enqueue (struct usb_hcd *hcd, struct urb *urb)
626{
Alan Sternd5926ae72005-04-21 15:56:37 -0400627 if (usb_pipeint (urb->pipe))
628 return rh_queue_status (hcd, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 if (usb_pipecontrol (urb->pipe))
630 return rh_call_control (hcd, urb);
Alan Sternd5926ae72005-04-21 15:56:37 -0400631 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632}
633
634/*-------------------------------------------------------------------------*/
635
Alan Sternd5926ae72005-04-21 15:56:37 -0400636/* Asynchronous unlinks of root-hub control URBs are legal, but they
637 * don't do anything. Status URB unlinks must be made in process context
638 * with interrupts enabled.
639 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640static int usb_rh_urb_dequeue (struct usb_hcd *hcd, struct urb *urb)
641{
Alan Sternd5926ae72005-04-21 15:56:37 -0400642 if (usb_pipeendpoint(urb->pipe) == 0) { /* Control URB */
643 if (in_interrupt())
644 return 0; /* nothing to do */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 spin_lock_irq(&urb->lock); /* from usb_kill_urb */
647 ++urb->reject;
648 spin_unlock_irq(&urb->lock);
649
650 wait_event(usb_kill_urb_queue,
651 atomic_read(&urb->use_count) == 0);
652
653 spin_lock_irq(&urb->lock);
654 --urb->reject;
655 spin_unlock_irq(&urb->lock);
Alan Sternd5926ae72005-04-21 15:56:37 -0400656
657 } else { /* Status URB */
658 if (!hcd->uses_new_polling)
659 del_timer_sync (&hcd->rh_timer);
660 local_irq_disable ();
661 spin_lock (&hcd_root_hub_lock);
662 if (urb == hcd->status_urb) {
663 hcd->status_urb = NULL;
664 urb->hcpriv = NULL;
665 } else
666 urb = NULL; /* wasn't fully queued */
667 spin_unlock (&hcd_root_hub_lock);
668 if (urb)
669 usb_hcd_giveback_urb (hcd, urb, NULL);
670 local_irq_enable ();
671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
673 return 0;
674}
675
676/*-------------------------------------------------------------------------*/
677
678/* exported only within usbcore */
gregkh@suse.de8561b102005-03-15 15:10:13 -0800679struct usb_bus *usb_bus_get(struct usb_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
681 if (bus)
gregkh@suse.de8561b102005-03-15 15:10:13 -0800682 kref_get(&bus->kref);
683 return bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684}
685
gregkh@suse.de8561b102005-03-15 15:10:13 -0800686static void usb_host_release(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
gregkh@suse.de8561b102005-03-15 15:10:13 -0800688 struct usb_bus *bus = container_of(kref, struct usb_bus, kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 if (bus->release)
691 bus->release(bus);
692}
693
gregkh@suse.de8561b102005-03-15 15:10:13 -0800694/* exported only within usbcore */
695void usb_bus_put(struct usb_bus *bus)
696{
697 if (bus)
698 kref_put(&bus->kref, usb_host_release);
699}
700
701/*-------------------------------------------------------------------------*/
702
703static struct class *usb_host_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705int usb_host_init(void)
706{
gregkh@suse.de8561b102005-03-15 15:10:13 -0800707 int retval = 0;
708
709 usb_host_class = class_create(THIS_MODULE, "usb_host");
710 if (IS_ERR(usb_host_class))
711 retval = PTR_ERR(usb_host_class);
712 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
715void usb_host_cleanup(void)
716{
gregkh@suse.de8561b102005-03-15 15:10:13 -0800717 class_destroy(usb_host_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719
720/**
721 * usb_bus_init - shared initialization code
722 * @bus: the bus structure being initialized
723 *
724 * This code is used to initialize a usb_bus structure, memory for which is
725 * separately managed.
726 */
727static void usb_bus_init (struct usb_bus *bus)
728{
729 memset (&bus->devmap, 0, sizeof(struct usb_devmap));
730
731 bus->devnum_next = 1;
732
733 bus->root_hub = NULL;
734 bus->hcpriv = NULL;
735 bus->busnum = -1;
736 bus->bandwidth_allocated = 0;
737 bus->bandwidth_int_reqs = 0;
738 bus->bandwidth_isoc_reqs = 0;
739
740 INIT_LIST_HEAD (&bus->bus_list);
741
gregkh@suse.de8561b102005-03-15 15:10:13 -0800742 kref_init(&bus->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
745/**
746 * usb_alloc_bus - creates a new USB host controller structure
747 * @op: pointer to a struct usb_operations that this bus structure should use
748 * Context: !in_interrupt()
749 *
750 * Creates a USB host controller bus structure with the specified
751 * usb_operations and initializes all the necessary internal objects.
752 *
753 * If no memory is available, NULL is returned.
754 *
755 * The caller should call usb_put_bus() when it is finished with the structure.
756 */
757struct usb_bus *usb_alloc_bus (struct usb_operations *op)
758{
759 struct usb_bus *bus;
760
Alan Stern0a1ef3b2005-10-24 15:38:24 -0400761 bus = kzalloc (sizeof *bus, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 if (!bus)
763 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 usb_bus_init (bus);
765 bus->op = op;
766 return bus;
767}
768
769/*-------------------------------------------------------------------------*/
770
771/**
772 * usb_register_bus - registers the USB host controller with the usb core
773 * @bus: pointer to the bus to register
774 * Context: !in_interrupt()
775 *
776 * Assigns a bus number, and links the controller into usbcore data
777 * structures so that it can be seen by scanning the bus list.
778 */
779static int usb_register_bus(struct usb_bus *bus)
780{
781 int busnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100783 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 busnum = find_next_zero_bit (busmap.busmap, USB_MAXBUS, 1);
785 if (busnum < USB_MAXBUS) {
786 set_bit (busnum, busmap.busmap);
787 bus->busnum = busnum;
788 } else {
789 printk (KERN_ERR "%s: too many buses\n", usbcore_name);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100790 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 return -E2BIG;
792 }
793
Greg Kroah-Hartman53f46542005-10-27 22:25:43 -0700794 bus->class_dev = class_device_create(usb_host_class, NULL, MKDEV(0,0),
795 bus->controller, "usb_host%d", busnum);
gregkh@suse.de8561b102005-03-15 15:10:13 -0800796 if (IS_ERR(bus->class_dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 clear_bit(busnum, busmap.busmap);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100798 mutex_unlock(&usb_bus_list_lock);
gregkh@suse.de8561b102005-03-15 15:10:13 -0800799 return PTR_ERR(bus->class_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
801
gregkh@suse.de8561b102005-03-15 15:10:13 -0800802 class_set_devdata(bus->class_dev, bus);
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 /* Add it to the local list of buses */
805 list_add (&bus->bus_list, &usb_bus_list);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100806 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -0700808 usb_notify_add_bus(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 dev_info (bus->controller, "new USB bus registered, assigned bus number %d\n", bus->busnum);
811 return 0;
812}
813
814/**
815 * usb_deregister_bus - deregisters the USB host controller
816 * @bus: pointer to the bus to deregister
817 * Context: !in_interrupt()
818 *
819 * Recycles the bus number, and unlinks the controller from usbcore data
820 * structures so that it won't be seen by scanning the bus list.
821 */
822static void usb_deregister_bus (struct usb_bus *bus)
823{
824 dev_info (bus->controller, "USB bus %d deregistered\n", bus->busnum);
825
826 /*
827 * NOTE: make sure that all the devices are removed by the
828 * controller code, as well as having it call this when cleaning
829 * itself up
830 */
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100831 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 list_del (&bus->bus_list);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100833 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -0700835 usb_notify_remove_bus(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837 clear_bit (bus->busnum, busmap.busmap);
838
gregkh@suse.de8561b102005-03-15 15:10:13 -0800839 class_device_unregister(bus->class_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840}
841
842/**
Alan Stern8ec8d202005-04-25 11:25:17 -0400843 * register_root_hub - called by usb_add_hcd() to register a root hub
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 * @hcd: host controller for this root hub
845 *
Alan Stern8ec8d202005-04-25 11:25:17 -0400846 * This function registers the root hub with the USB subsystem. It sets up
David Brownellb1e8f0a2006-01-23 15:25:40 -0800847 * the device properly in the device tree and then calls usb_new_device()
848 * to register the usb device. It also assigns the root hub's USB address
849 * (always 1).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 */
David Brownellb1e8f0a2006-01-23 15:25:40 -0800851static int register_root_hub(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
853 struct device *parent_dev = hcd->self.controller;
David Brownellb1e8f0a2006-01-23 15:25:40 -0800854 struct usb_device *usb_dev = hcd->self.root_hub;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 const int devnum = 1;
856 int retval;
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 usb_dev->devnum = devnum;
859 usb_dev->bus->devnum_next = devnum + 1;
860 memset (&usb_dev->bus->devmap.devicemap, 0,
861 sizeof usb_dev->bus->devmap.devicemap);
862 set_bit (devnum, usb_dev->bus->devmap.devicemap);
863 usb_set_device_state(usb_dev, USB_STATE_ADDRESS);
864
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100865 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867 usb_dev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
868 retval = usb_get_device_descriptor(usb_dev, USB_DT_DEVICE_SIZE);
869 if (retval != sizeof usb_dev->descriptor) {
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100870 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 dev_dbg (parent_dev, "can't read %s device descriptor %d\n",
872 usb_dev->dev.bus_id, retval);
873 return (retval < 0) ? retval : -EMSGSIZE;
874 }
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 retval = usb_new_device (usb_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 dev_err (parent_dev, "can't register root hub for %s, %d\n",
879 usb_dev->dev.bus_id, retval);
880 }
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100881 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 if (retval == 0) {
884 spin_lock_irq (&hcd_root_hub_lock);
885 hcd->rh_registered = 1;
886 spin_unlock_irq (&hcd_root_hub_lock);
887
888 /* Did the HC die before the root hub was registered? */
889 if (hcd->state == HC_STATE_HALT)
890 usb_hc_died (hcd); /* This time clean up */
891 }
892
893 return retval;
894}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Alan Sternd5926ae72005-04-21 15:56:37 -0400896void usb_enable_root_hub_irq (struct usb_bus *bus)
897{
898 struct usb_hcd *hcd;
899
900 hcd = container_of (bus, struct usb_hcd, self);
901 if (hcd->driver->hub_irq_enable && !hcd->poll_rh &&
902 hcd->state != HC_STATE_HALT)
903 hcd->driver->hub_irq_enable (hcd);
904}
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907/*-------------------------------------------------------------------------*/
908
909/**
910 * usb_calc_bus_time - approximate periodic transaction time in nanoseconds
911 * @speed: from dev->speed; USB_SPEED_{LOW,FULL,HIGH}
912 * @is_input: true iff the transaction sends data to the host
913 * @isoc: true for isochronous transactions, false for interrupt ones
914 * @bytecount: how many bytes in the transaction.
915 *
916 * Returns approximate bus time in nanoseconds for a periodic transaction.
917 * See USB 2.0 spec section 5.11.3; only periodic transfers need to be
918 * scheduled in software, this function is only used for such scheduling.
919 */
920long usb_calc_bus_time (int speed, int is_input, int isoc, int bytecount)
921{
922 unsigned long tmp;
923
924 switch (speed) {
925 case USB_SPEED_LOW: /* INTR only */
926 if (is_input) {
927 tmp = (67667L * (31L + 10L * BitTime (bytecount))) / 1000L;
928 return (64060L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
929 } else {
930 tmp = (66700L * (31L + 10L * BitTime (bytecount))) / 1000L;
931 return (64107L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
932 }
933 case USB_SPEED_FULL: /* ISOC or INTR */
934 if (isoc) {
935 tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
936 return (((is_input) ? 7268L : 6265L) + BW_HOST_DELAY + tmp);
937 } else {
938 tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
939 return (9107L + BW_HOST_DELAY + tmp);
940 }
941 case USB_SPEED_HIGH: /* ISOC or INTR */
942 // FIXME adjust for input vs output
943 if (isoc)
Dan Streetman498f78e2005-07-29 12:18:28 -0700944 tmp = HS_NSECS_ISO (bytecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 else
Dan Streetman498f78e2005-07-29 12:18:28 -0700946 tmp = HS_NSECS (bytecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 return tmp;
948 default:
949 pr_debug ("%s: bogus device speed!\n", usbcore_name);
950 return -1;
951 }
952}
953EXPORT_SYMBOL (usb_calc_bus_time);
954
955/*
956 * usb_check_bandwidth():
957 *
958 * old_alloc is from host_controller->bandwidth_allocated in microseconds;
959 * bustime is from calc_bus_time(), but converted to microseconds.
960 *
961 * returns <bustime in us> if successful,
962 * or -ENOSPC if bandwidth request fails.
963 *
964 * FIXME:
965 * This initial implementation does not use Endpoint.bInterval
966 * in managing bandwidth allocation.
967 * It probably needs to be expanded to use Endpoint.bInterval.
968 * This can be done as a later enhancement (correction).
969 *
970 * This will also probably require some kind of
971 * frame allocation tracking...meaning, for example,
972 * that if multiple drivers request interrupts every 10 USB frames,
973 * they don't all have to be allocated at
974 * frame numbers N, N+10, N+20, etc. Some of them could be at
975 * N+11, N+21, N+31, etc., and others at
976 * N+12, N+22, N+32, etc.
977 *
978 * Similarly for isochronous transfers...
979 *
980 * Individual HCDs can schedule more directly ... this logic
981 * is not correct for high speed transfers.
982 */
983int usb_check_bandwidth (struct usb_device *dev, struct urb *urb)
984{
985 unsigned int pipe = urb->pipe;
986 long bustime;
987 int is_in = usb_pipein (pipe);
988 int is_iso = usb_pipeisoc (pipe);
989 int old_alloc = dev->bus->bandwidth_allocated;
990 int new_alloc;
991
992
993 bustime = NS_TO_US (usb_calc_bus_time (dev->speed, is_in, is_iso,
994 usb_maxpacket (dev, pipe, !is_in)));
995 if (is_iso)
996 bustime /= urb->number_of_packets;
997
998 new_alloc = old_alloc + (int) bustime;
999 if (new_alloc > FRAME_TIME_MAX_USECS_ALLOC) {
1000#ifdef DEBUG
1001 char *mode =
1002#ifdef CONFIG_USB_BANDWIDTH
1003 "";
1004#else
1005 "would have ";
1006#endif
1007 dev_dbg (&dev->dev, "usb_check_bandwidth %sFAILED: %d + %ld = %d usec\n",
1008 mode, old_alloc, bustime, new_alloc);
1009#endif
1010#ifdef CONFIG_USB_BANDWIDTH
1011 bustime = -ENOSPC; /* report error */
1012#endif
1013 }
1014
1015 return bustime;
1016}
1017EXPORT_SYMBOL (usb_check_bandwidth);
1018
1019
1020/**
1021 * usb_claim_bandwidth - records bandwidth for a periodic transfer
1022 * @dev: source/target of request
1023 * @urb: request (urb->dev == dev)
1024 * @bustime: bandwidth consumed, in (average) microseconds per frame
1025 * @isoc: true iff the request is isochronous
1026 *
1027 * Bus bandwidth reservations are recorded purely for diagnostic purposes.
1028 * HCDs are expected not to overcommit periodic bandwidth, and to record such
1029 * reservations whenever endpoints are added to the periodic schedule.
1030 *
1031 * FIXME averaging per-frame is suboptimal. Better to sum over the HCD's
1032 * entire periodic schedule ... 32 frames for OHCI, 1024 for UHCI, settable
1033 * for EHCI (256/512/1024 frames, default 1024) and have the bus expose how
1034 * large its periodic schedule is.
1035 */
1036void usb_claim_bandwidth (struct usb_device *dev, struct urb *urb, int bustime, int isoc)
1037{
1038 dev->bus->bandwidth_allocated += bustime;
1039 if (isoc)
1040 dev->bus->bandwidth_isoc_reqs++;
1041 else
1042 dev->bus->bandwidth_int_reqs++;
1043 urb->bandwidth = bustime;
1044
1045#ifdef USB_BANDWIDTH_MESSAGES
1046 dev_dbg (&dev->dev, "bandwidth alloc increased by %d (%s) to %d for %d requesters\n",
1047 bustime,
1048 isoc ? "ISOC" : "INTR",
1049 dev->bus->bandwidth_allocated,
1050 dev->bus->bandwidth_int_reqs + dev->bus->bandwidth_isoc_reqs);
1051#endif
1052}
1053EXPORT_SYMBOL (usb_claim_bandwidth);
1054
1055
1056/**
1057 * usb_release_bandwidth - reverses effect of usb_claim_bandwidth()
1058 * @dev: source/target of request
1059 * @urb: request (urb->dev == dev)
1060 * @isoc: true iff the request is isochronous
1061 *
1062 * This records that previously allocated bandwidth has been released.
1063 * Bandwidth is released when endpoints are removed from the host controller's
1064 * periodic schedule.
1065 */
1066void usb_release_bandwidth (struct usb_device *dev, struct urb *urb, int isoc)
1067{
1068 dev->bus->bandwidth_allocated -= urb->bandwidth;
1069 if (isoc)
1070 dev->bus->bandwidth_isoc_reqs--;
1071 else
1072 dev->bus->bandwidth_int_reqs--;
1073
1074#ifdef USB_BANDWIDTH_MESSAGES
1075 dev_dbg (&dev->dev, "bandwidth alloc reduced by %d (%s) to %d for %d requesters\n",
1076 urb->bandwidth,
1077 isoc ? "ISOC" : "INTR",
1078 dev->bus->bandwidth_allocated,
1079 dev->bus->bandwidth_int_reqs + dev->bus->bandwidth_isoc_reqs);
1080#endif
1081 urb->bandwidth = 0;
1082}
1083EXPORT_SYMBOL (usb_release_bandwidth);
1084
1085
1086/*-------------------------------------------------------------------------*/
1087
1088/*
1089 * Generic HC operations.
1090 */
1091
1092/*-------------------------------------------------------------------------*/
1093
1094static void urb_unlink (struct urb *urb)
1095{
1096 unsigned long flags;
1097
1098 /* Release any periodic transfer bandwidth */
1099 if (urb->bandwidth)
1100 usb_release_bandwidth (urb->dev, urb,
1101 usb_pipeisoc (urb->pipe));
1102
1103 /* clear all state linking urb to this dev (and hcd) */
1104
1105 spin_lock_irqsave (&hcd_data_lock, flags);
1106 list_del_init (&urb->urb_list);
1107 spin_unlock_irqrestore (&hcd_data_lock, flags);
1108 usb_put_dev (urb->dev);
1109}
1110
1111
1112/* may be called in any context with a valid urb->dev usecount
1113 * caller surrenders "ownership" of urb
1114 * expects usb_submit_urb() to have sanity checked and conditioned all
1115 * inputs in the urb
1116 */
Al Viro55016f12005-10-21 03:21:58 -04001117static int hcd_submit_urb (struct urb *urb, gfp_t mem_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
1119 int status;
1120 struct usb_hcd *hcd = urb->dev->bus->hcpriv;
1121 struct usb_host_endpoint *ep;
1122 unsigned long flags;
1123
1124 if (!hcd)
1125 return -ENODEV;
1126
1127 usbmon_urb_submit(&hcd->self, urb);
1128
1129 /*
1130 * Atomically queue the urb, first to our records, then to the HCD.
1131 * Access to urb->status is controlled by urb->lock ... changes on
1132 * i/o completion (normal or fault) or unlinking.
1133 */
1134
1135 // FIXME: verify that quiescing hc works right (RH cleans up)
1136
1137 spin_lock_irqsave (&hcd_data_lock, flags);
1138 ep = (usb_pipein(urb->pipe) ? urb->dev->ep_in : urb->dev->ep_out)
1139 [usb_pipeendpoint(urb->pipe)];
1140 if (unlikely (!ep))
1141 status = -ENOENT;
1142 else if (unlikely (urb->reject))
1143 status = -EPERM;
1144 else switch (hcd->state) {
1145 case HC_STATE_RUNNING:
1146 case HC_STATE_RESUMING:
David Brownell979d5192005-09-22 22:32:24 -07001147doit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 usb_get_dev (urb->dev);
1149 list_add_tail (&urb->urb_list, &ep->urb_list);
1150 status = 0;
1151 break;
David Brownell979d5192005-09-22 22:32:24 -07001152 case HC_STATE_SUSPENDED:
1153 /* HC upstream links (register access, wakeup signaling) can work
1154 * even when the downstream links (and DMA etc) are quiesced; let
1155 * usbcore talk to the root hub.
1156 */
1157 if (hcd->self.controller->power.power_state.event == PM_EVENT_ON
1158 && urb->dev->parent == NULL)
1159 goto doit;
1160 /* FALL THROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 default:
1162 status = -ESHUTDOWN;
1163 break;
1164 }
1165 spin_unlock_irqrestore (&hcd_data_lock, flags);
1166 if (status) {
1167 INIT_LIST_HEAD (&urb->urb_list);
1168 usbmon_urb_submit_error(&hcd->self, urb, status);
1169 return status;
1170 }
1171
1172 /* increment urb's reference count as part of giving it to the HCD
1173 * (which now controls it). HCD guarantees that it either returns
1174 * an error or calls giveback(), but not both.
1175 */
1176 urb = usb_get_urb (urb);
1177 atomic_inc (&urb->use_count);
1178
1179 if (urb->dev == hcd->self.root_hub) {
1180 /* NOTE: requirement on hub callers (usbfs and the hub
1181 * driver, for now) that URBs' urb->transfer_buffer be
1182 * valid and usb_buffer_{sync,unmap}() not be needed, since
1183 * they could clobber root hub response data.
1184 */
1185 status = rh_urb_enqueue (hcd, urb);
1186 goto done;
1187 }
1188
1189 /* lower level hcd code should use *_dma exclusively,
1190 * unless it uses pio or talks to another transport.
1191 */
1192 if (hcd->self.controller->dma_mask) {
1193 if (usb_pipecontrol (urb->pipe)
1194 && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP))
1195 urb->setup_dma = dma_map_single (
1196 hcd->self.controller,
1197 urb->setup_packet,
1198 sizeof (struct usb_ctrlrequest),
1199 DMA_TO_DEVICE);
1200 if (urb->transfer_buffer_length != 0
1201 && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP))
1202 urb->transfer_dma = dma_map_single (
1203 hcd->self.controller,
1204 urb->transfer_buffer,
1205 urb->transfer_buffer_length,
1206 usb_pipein (urb->pipe)
1207 ? DMA_FROM_DEVICE
1208 : DMA_TO_DEVICE);
1209 }
1210
1211 status = hcd->driver->urb_enqueue (hcd, ep, urb, mem_flags);
1212done:
1213 if (unlikely (status)) {
1214 urb_unlink (urb);
1215 atomic_dec (&urb->use_count);
1216 if (urb->reject)
1217 wake_up (&usb_kill_urb_queue);
1218 usb_put_urb (urb);
1219 usbmon_urb_submit_error(&hcd->self, urb, status);
1220 }
1221 return status;
1222}
1223
1224/*-------------------------------------------------------------------------*/
1225
1226/* called in any context */
1227static int hcd_get_frame_number (struct usb_device *udev)
1228{
1229 struct usb_hcd *hcd = (struct usb_hcd *)udev->bus->hcpriv;
1230 if (!HC_IS_RUNNING (hcd->state))
1231 return -ESHUTDOWN;
1232 return hcd->driver->get_frame_number (hcd);
1233}
1234
1235/*-------------------------------------------------------------------------*/
1236
1237/* this makes the hcd giveback() the urb more quickly, by kicking it
1238 * off hardware queues (which may take a while) and returning it as
1239 * soon as practical. we've already set up the urb's return status,
1240 * but we can't know if the callback completed already.
1241 */
1242static int
1243unlink1 (struct usb_hcd *hcd, struct urb *urb)
1244{
1245 int value;
1246
1247 if (urb->dev == hcd->self.root_hub)
1248 value = usb_rh_urb_dequeue (hcd, urb);
1249 else {
1250
1251 /* The only reason an HCD might fail this call is if
1252 * it has not yet fully queued the urb to begin with.
1253 * Such failures should be harmless. */
1254 value = hcd->driver->urb_dequeue (hcd, urb);
1255 }
1256
1257 if (value != 0)
1258 dev_dbg (hcd->self.controller, "dequeue %p --> %d\n",
1259 urb, value);
1260 return value;
1261}
1262
1263/*
1264 * called in any context
1265 *
1266 * caller guarantees urb won't be recycled till both unlink()
1267 * and the urb's completion function return
1268 */
1269static int hcd_unlink_urb (struct urb *urb, int status)
1270{
1271 struct usb_host_endpoint *ep;
1272 struct usb_hcd *hcd = NULL;
1273 struct device *sys = NULL;
1274 unsigned long flags;
1275 struct list_head *tmp;
1276 int retval;
1277
1278 if (!urb)
1279 return -EINVAL;
1280 if (!urb->dev || !urb->dev->bus)
1281 return -ENODEV;
1282 ep = (usb_pipein(urb->pipe) ? urb->dev->ep_in : urb->dev->ep_out)
1283 [usb_pipeendpoint(urb->pipe)];
1284 if (!ep)
1285 return -ENODEV;
1286
1287 /*
1288 * we contend for urb->status with the hcd core,
1289 * which changes it while returning the urb.
1290 *
1291 * Caller guaranteed that the urb pointer hasn't been freed, and
1292 * that it was submitted. But as a rule it can't know whether or
1293 * not it's already been unlinked ... so we respect the reversed
1294 * lock sequence needed for the usb_hcd_giveback_urb() code paths
1295 * (urb lock, then hcd_data_lock) in case some other CPU is now
1296 * unlinking it.
1297 */
1298 spin_lock_irqsave (&urb->lock, flags);
1299 spin_lock (&hcd_data_lock);
1300
1301 sys = &urb->dev->dev;
1302 hcd = urb->dev->bus->hcpriv;
1303 if (hcd == NULL) {
1304 retval = -ENODEV;
1305 goto done;
1306 }
1307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 /* insist the urb is still queued */
1309 list_for_each(tmp, &ep->urb_list) {
1310 if (tmp == &urb->urb_list)
1311 break;
1312 }
1313 if (tmp != &urb->urb_list) {
1314 retval = -EIDRM;
1315 goto done;
1316 }
1317
1318 /* Any status except -EINPROGRESS means something already started to
1319 * unlink this URB from the hardware. So there's no more work to do.
1320 */
1321 if (urb->status != -EINPROGRESS) {
1322 retval = -EBUSY;
1323 goto done;
1324 }
1325
1326 /* IRQ setup can easily be broken so that USB controllers
1327 * never get completion IRQs ... maybe even the ones we need to
1328 * finish unlinking the initial failed usb_set_address()
1329 * or device descriptor fetch.
1330 */
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001331 if (!test_bit(HCD_FLAG_SAW_IRQ, &hcd->flags)
1332 && hcd->self.root_hub != urb->dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 dev_warn (hcd->self.controller, "Unlink after no-IRQ? "
1334 "Controller is probably using the wrong IRQ."
1335 "\n");
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001336 set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 }
1338
1339 urb->status = status;
1340
1341 spin_unlock (&hcd_data_lock);
1342 spin_unlock_irqrestore (&urb->lock, flags);
1343
1344 retval = unlink1 (hcd, urb);
1345 if (retval == 0)
1346 retval = -EINPROGRESS;
1347 return retval;
1348
1349done:
1350 spin_unlock (&hcd_data_lock);
1351 spin_unlock_irqrestore (&urb->lock, flags);
1352 if (retval != -EIDRM && sys && sys->driver)
1353 dev_dbg (sys, "hcd_unlink_urb %p fail %d\n", urb, retval);
1354 return retval;
1355}
1356
1357/*-------------------------------------------------------------------------*/
1358
1359/* disables the endpoint: cancels any pending urbs, then synchronizes with
1360 * the hcd to make sure all endpoint state is gone from hardware. use for
1361 * set_configuration, set_interface, driver removal, physical disconnect.
1362 *
1363 * example: a qh stored in ep->hcpriv, holding state related to endpoint
1364 * type, maxpacket size, toggle, halt status, and scheduling.
1365 */
1366static void
1367hcd_endpoint_disable (struct usb_device *udev, struct usb_host_endpoint *ep)
1368{
1369 struct usb_hcd *hcd;
1370 struct urb *urb;
1371
1372 hcd = udev->bus->hcpriv;
1373
Alan Sternd5926ae72005-04-21 15:56:37 -04001374 WARN_ON (!HC_IS_RUNNING (hcd->state) && hcd->state != HC_STATE_HALT &&
1375 udev->state != USB_STATE_NOTATTACHED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376
1377 local_irq_disable ();
1378
1379 /* FIXME move most of this into message.c as part of its
1380 * endpoint disable logic
1381 */
1382
1383 /* ep is already gone from udev->ep_{in,out}[]; no more submits */
1384rescan:
1385 spin_lock (&hcd_data_lock);
1386 list_for_each_entry (urb, &ep->urb_list, urb_list) {
1387 int tmp;
1388
1389 /* another cpu may be in hcd, spinning on hcd_data_lock
1390 * to giveback() this urb. the races here should be
1391 * small, but a full fix needs a new "can't submit"
1392 * urb state.
1393 * FIXME urb->reject should allow that...
1394 */
1395 if (urb->status != -EINPROGRESS)
1396 continue;
1397 usb_get_urb (urb);
1398 spin_unlock (&hcd_data_lock);
1399
1400 spin_lock (&urb->lock);
1401 tmp = urb->status;
1402 if (tmp == -EINPROGRESS)
1403 urb->status = -ESHUTDOWN;
1404 spin_unlock (&urb->lock);
1405
1406 /* kick hcd unless it's already returning this */
1407 if (tmp == -EINPROGRESS) {
1408 tmp = urb->pipe;
1409 unlink1 (hcd, urb);
1410 dev_dbg (hcd->self.controller,
1411 "shutdown urb %p pipe %08x ep%d%s%s\n",
1412 urb, tmp, usb_pipeendpoint (tmp),
1413 (tmp & USB_DIR_IN) ? "in" : "out",
1414 ({ char *s; \
1415 switch (usb_pipetype (tmp)) { \
1416 case PIPE_CONTROL: s = ""; break; \
1417 case PIPE_BULK: s = "-bulk"; break; \
1418 case PIPE_INTERRUPT: s = "-intr"; break; \
1419 default: s = "-iso"; break; \
1420 }; s;}));
1421 }
1422 usb_put_urb (urb);
1423
1424 /* list contents may have changed */
1425 goto rescan;
1426 }
1427 spin_unlock (&hcd_data_lock);
1428 local_irq_enable ();
1429
1430 /* synchronize with the hardware, so old configuration state
1431 * clears out immediately (and will be freed).
1432 */
1433 might_sleep ();
1434 if (hcd->driver->endpoint_disable)
1435 hcd->driver->endpoint_disable (hcd, ep);
1436}
1437
1438/*-------------------------------------------------------------------------*/
1439
David Brownell92936772005-09-22 22:32:11 -07001440#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Alan Stern0c0382e2005-10-13 17:08:02 -04001442int hcd_bus_suspend (struct usb_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
1444 struct usb_hcd *hcd;
David Brownell92936772005-09-22 22:32:11 -07001445 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 hcd = container_of (bus, struct usb_hcd, self);
Alan Stern0c0382e2005-10-13 17:08:02 -04001448 if (!hcd->driver->bus_suspend)
David Brownell92936772005-09-22 22:32:11 -07001449 return -ENOENT;
1450 hcd->state = HC_STATE_QUIESCING;
Alan Stern0c0382e2005-10-13 17:08:02 -04001451 status = hcd->driver->bus_suspend (hcd);
David Brownell92936772005-09-22 22:32:11 -07001452 if (status == 0)
1453 hcd->state = HC_STATE_SUSPENDED;
1454 else
1455 dev_dbg(&bus->root_hub->dev, "%s fail, err %d\n",
1456 "suspend", status);
1457 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458}
1459
Alan Stern0c0382e2005-10-13 17:08:02 -04001460int hcd_bus_resume (struct usb_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461{
1462 struct usb_hcd *hcd;
David Brownell92936772005-09-22 22:32:11 -07001463 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
1465 hcd = container_of (bus, struct usb_hcd, self);
Alan Stern0c0382e2005-10-13 17:08:02 -04001466 if (!hcd->driver->bus_resume)
David Brownell92936772005-09-22 22:32:11 -07001467 return -ENOENT;
David Brownell979d5192005-09-22 22:32:24 -07001468 if (hcd->state == HC_STATE_RUNNING)
1469 return 0;
David Brownell92936772005-09-22 22:32:11 -07001470 hcd->state = HC_STATE_RESUMING;
Alan Stern0c0382e2005-10-13 17:08:02 -04001471 status = hcd->driver->bus_resume (hcd);
David Brownell92936772005-09-22 22:32:11 -07001472 if (status == 0)
1473 hcd->state = HC_STATE_RUNNING;
1474 else {
1475 dev_dbg(&bus->root_hub->dev, "%s fail, err %d\n",
1476 "resume", status);
1477 usb_hc_died(hcd);
1478 }
1479 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480}
1481
David Brownell979d5192005-09-22 22:32:24 -07001482/*
1483 * usb_hcd_suspend_root_hub - HCD autosuspends downstream ports
1484 * @hcd: host controller for this root hub
1485 *
1486 * This call arranges that usb_hcd_resume_root_hub() is safe to call later;
1487 * that the HCD's root hub polling is deactivated; and that the root's hub
1488 * driver is suspended. HCDs may call this to autosuspend when their root
1489 * hub's downstream ports are all inactive: unpowered, disconnected,
1490 * disabled, or suspended.
1491 *
1492 * The HCD will autoresume on device connect change detection (using SRP
1493 * or a D+/D- pullup). The HCD also autoresumes on remote wakeup signaling
1494 * from any ports that are suspended (if that is enabled). In most cases,
1495 * overcurrent signaling (on powered ports) will also start autoresume.
1496 *
1497 * Always called with IRQs blocked.
1498 */
1499void usb_hcd_suspend_root_hub (struct usb_hcd *hcd)
1500{
1501 struct urb *urb;
1502
1503 spin_lock (&hcd_root_hub_lock);
1504 usb_suspend_root_hub (hcd->self.root_hub);
1505
1506 /* force status urb to complete/unlink while suspended */
1507 if (hcd->status_urb) {
1508 urb = hcd->status_urb;
1509 urb->status = -ECONNRESET;
1510 urb->hcpriv = NULL;
1511 urb->actual_length = 0;
1512
1513 del_timer (&hcd->rh_timer);
1514 hcd->poll_pending = 0;
1515 hcd->status_urb = NULL;
1516 } else
1517 urb = NULL;
1518 spin_unlock (&hcd_root_hub_lock);
1519 hcd->state = HC_STATE_SUSPENDED;
1520
1521 if (urb)
1522 usb_hcd_giveback_urb (hcd, urb, NULL);
1523}
1524EXPORT_SYMBOL_GPL(usb_hcd_suspend_root_hub);
1525
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526/**
1527 * usb_hcd_resume_root_hub - called by HCD to resume its root hub
1528 * @hcd: host controller for this root hub
1529 *
1530 * The USB host controller calls this function when its root hub is
1531 * suspended (with the remote wakeup feature enabled) and a remote
1532 * wakeup request is received. It queues a request for khubd to
David Brownell979d5192005-09-22 22:32:24 -07001533 * resume the root hub (that is, manage its downstream ports again).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 */
1535void usb_hcd_resume_root_hub (struct usb_hcd *hcd)
1536{
1537 unsigned long flags;
1538
1539 spin_lock_irqsave (&hcd_root_hub_lock, flags);
1540 if (hcd->rh_registered)
1541 usb_resume_root_hub (hcd->self.root_hub);
1542 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
1543}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544EXPORT_SYMBOL_GPL(usb_hcd_resume_root_hub);
1545
David Brownell92936772005-09-22 22:32:11 -07001546#endif
1547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548/*-------------------------------------------------------------------------*/
1549
1550#ifdef CONFIG_USB_OTG
1551
1552/**
1553 * usb_bus_start_enum - start immediate enumeration (for OTG)
1554 * @bus: the bus (must use hcd framework)
1555 * @port_num: 1-based number of port; usually bus->otg_port
1556 * Context: in_interrupt()
1557 *
1558 * Starts enumeration, with an immediate reset followed later by
1559 * khubd identifying and possibly configuring the device.
1560 * This is needed by OTG controller drivers, where it helps meet
1561 * HNP protocol timing requirements for starting a port reset.
1562 */
1563int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num)
1564{
1565 struct usb_hcd *hcd;
1566 int status = -EOPNOTSUPP;
1567
1568 /* NOTE: since HNP can't start by grabbing the bus's address0_sem,
1569 * boards with root hubs hooked up to internal devices (instead of
1570 * just the OTG port) may need more attention to resetting...
1571 */
1572 hcd = container_of (bus, struct usb_hcd, self);
1573 if (port_num && hcd->driver->start_port_reset)
1574 status = hcd->driver->start_port_reset(hcd, port_num);
1575
1576 /* run khubd shortly after (first) root port reset finishes;
1577 * it may issue others, until at least 50 msecs have passed.
1578 */
1579 if (status == 0)
1580 mod_timer(&hcd->rh_timer, jiffies + msecs_to_jiffies(10));
1581 return status;
1582}
1583EXPORT_SYMBOL (usb_bus_start_enum);
1584
1585#endif
1586
1587/*-------------------------------------------------------------------------*/
1588
1589/*
1590 * usb_hcd_operations - adapts usb_bus framework to HCD framework (bus glue)
1591 */
1592static struct usb_operations usb_hcd_operations = {
1593 .get_frame_number = hcd_get_frame_number,
1594 .submit_urb = hcd_submit_urb,
1595 .unlink_urb = hcd_unlink_urb,
1596 .buffer_alloc = hcd_buffer_alloc,
1597 .buffer_free = hcd_buffer_free,
1598 .disable = hcd_endpoint_disable,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599};
1600
1601/*-------------------------------------------------------------------------*/
1602
1603/**
1604 * usb_hcd_giveback_urb - return URB from HCD to device driver
1605 * @hcd: host controller returning the URB
1606 * @urb: urb being returned to the USB device driver.
1607 * @regs: pt_regs, passed down to the URB completion handler
1608 * Context: in_interrupt()
1609 *
1610 * This hands the URB from HCD to its USB device driver, using its
1611 * completion function. The HCD has freed all per-urb resources
1612 * (and is done using urb->hcpriv). It also released all HCD locks;
1613 * the device driver won't cause problems if it frees, modifies,
1614 * or resubmits this URB.
1615 */
1616void usb_hcd_giveback_urb (struct usb_hcd *hcd, struct urb *urb, struct pt_regs *regs)
1617{
1618 int at_root_hub;
1619
1620 at_root_hub = (urb->dev == hcd->self.root_hub);
1621 urb_unlink (urb);
1622
1623 /* lower level hcd code should use *_dma exclusively */
1624 if (hcd->self.controller->dma_mask && !at_root_hub) {
1625 if (usb_pipecontrol (urb->pipe)
1626 && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP))
1627 dma_unmap_single (hcd->self.controller, urb->setup_dma,
1628 sizeof (struct usb_ctrlrequest),
1629 DMA_TO_DEVICE);
1630 if (urb->transfer_buffer_length != 0
1631 && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP))
1632 dma_unmap_single (hcd->self.controller,
1633 urb->transfer_dma,
1634 urb->transfer_buffer_length,
1635 usb_pipein (urb->pipe)
1636 ? DMA_FROM_DEVICE
1637 : DMA_TO_DEVICE);
1638 }
1639
1640 usbmon_urb_complete (&hcd->self, urb);
1641 /* pass ownership to the completion handler */
1642 urb->complete (urb, regs);
1643 atomic_dec (&urb->use_count);
1644 if (unlikely (urb->reject))
1645 wake_up (&usb_kill_urb_queue);
1646 usb_put_urb (urb);
1647}
1648EXPORT_SYMBOL (usb_hcd_giveback_urb);
1649
1650/*-------------------------------------------------------------------------*/
1651
1652/**
1653 * usb_hcd_irq - hook IRQs to HCD framework (bus glue)
1654 * @irq: the IRQ being raised
1655 * @__hcd: pointer to the HCD whose IRQ is being signaled
1656 * @r: saved hardware registers
1657 *
1658 * If the controller isn't HALTed, calls the driver's irq handler.
1659 * Checks whether the controller is now dead.
1660 */
1661irqreturn_t usb_hcd_irq (int irq, void *__hcd, struct pt_regs * r)
1662{
1663 struct usb_hcd *hcd = __hcd;
1664 int start = hcd->state;
1665
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001666 if (unlikely(start == HC_STATE_HALT ||
1667 !test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 return IRQ_NONE;
1669 if (hcd->driver->irq (hcd, r) == IRQ_NONE)
1670 return IRQ_NONE;
1671
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001672 set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
1673
1674 if (unlikely(hcd->state == HC_STATE_HALT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 usb_hc_died (hcd);
1676 return IRQ_HANDLED;
1677}
1678
1679/*-------------------------------------------------------------------------*/
1680
1681/**
1682 * usb_hc_died - report abnormal shutdown of a host controller (bus glue)
1683 * @hcd: pointer to the HCD representing the controller
1684 *
1685 * This is called by bus glue to report a USB host controller that died
1686 * while operations may still have been pending. It's called automatically
1687 * by the PCI glue, so only glue for non-PCI busses should need to call it.
1688 */
1689void usb_hc_died (struct usb_hcd *hcd)
1690{
1691 unsigned long flags;
1692
1693 dev_err (hcd->self.controller, "HC died; cleaning up\n");
1694
1695 spin_lock_irqsave (&hcd_root_hub_lock, flags);
1696 if (hcd->rh_registered) {
Alan Sternd5926ae72005-04-21 15:56:37 -04001697 hcd->poll_rh = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
1699 /* make khubd clean up old urbs and devices */
1700 usb_set_device_state (hcd->self.root_hub,
1701 USB_STATE_NOTATTACHED);
1702 usb_kick_khubd (hcd->self.root_hub);
1703 }
1704 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
1705}
1706EXPORT_SYMBOL_GPL (usb_hc_died);
1707
1708/*-------------------------------------------------------------------------*/
1709
1710static void hcd_release (struct usb_bus *bus)
1711{
1712 struct usb_hcd *hcd;
1713
1714 hcd = container_of(bus, struct usb_hcd, self);
1715 kfree(hcd);
1716}
1717
1718/**
1719 * usb_create_hcd - create and initialize an HCD structure
1720 * @driver: HC driver that will use this hcd
1721 * @dev: device for this HC, stored in hcd->self.controller
1722 * @bus_name: value to store in hcd->self.bus_name
1723 * Context: !in_interrupt()
1724 *
1725 * Allocate a struct usb_hcd, with extra space at the end for the
1726 * HC driver's private data. Initialize the generic members of the
1727 * hcd structure.
1728 *
1729 * If memory is unavailable, returns NULL.
1730 */
1731struct usb_hcd *usb_create_hcd (const struct hc_driver *driver,
1732 struct device *dev, char *bus_name)
1733{
1734 struct usb_hcd *hcd;
1735
Pekka Enberg7b842b62005-09-06 15:18:34 -07001736 hcd = kzalloc(sizeof(*hcd) + driver->hcd_priv_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 if (!hcd) {
1738 dev_dbg (dev, "hcd alloc failed\n");
1739 return NULL;
1740 }
1741 dev_set_drvdata(dev, hcd);
1742
1743 usb_bus_init(&hcd->self);
1744 hcd->self.op = &usb_hcd_operations;
1745 hcd->self.hcpriv = hcd;
1746 hcd->self.release = &hcd_release;
1747 hcd->self.controller = dev;
1748 hcd->self.bus_name = bus_name;
1749
1750 init_timer(&hcd->rh_timer);
Alan Sternd5926ae72005-04-21 15:56:37 -04001751 hcd->rh_timer.function = rh_timer_func;
1752 hcd->rh_timer.data = (unsigned long) hcd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
1754 hcd->driver = driver;
1755 hcd->product_desc = (driver->product_desc) ? driver->product_desc :
1756 "USB Host Controller";
1757
1758 return hcd;
1759}
1760EXPORT_SYMBOL (usb_create_hcd);
1761
1762void usb_put_hcd (struct usb_hcd *hcd)
1763{
1764 dev_set_drvdata(hcd->self.controller, NULL);
1765 usb_bus_put(&hcd->self);
1766}
1767EXPORT_SYMBOL (usb_put_hcd);
1768
1769/**
1770 * usb_add_hcd - finish generic HCD structure initialization and register
1771 * @hcd: the usb_hcd structure to initialize
1772 * @irqnum: Interrupt line to allocate
1773 * @irqflags: Interrupt type flags
1774 *
1775 * Finish the remaining parts of generic HCD initialization: allocate the
1776 * buffers of consistent memory, register the bus, request the IRQ line,
1777 * and call the driver's reset() and start() routines.
1778 */
1779int usb_add_hcd(struct usb_hcd *hcd,
1780 unsigned int irqnum, unsigned long irqflags)
1781{
Alan Stern8ec8d202005-04-25 11:25:17 -04001782 int retval;
1783 struct usb_device *rhdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
1785 dev_info(hcd->self.controller, "%s\n", hcd->product_desc);
1786
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001787 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1788
David Brownellb1e8f0a2006-01-23 15:25:40 -08001789 /* HC is in reset state, but accessible. Now do the one-time init,
1790 * bottom up so that hcds can customize the root hubs before khubd
1791 * starts talking to them. (Note, bus id is assigned early too.)
1792 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 if ((retval = hcd_buffer_create(hcd)) != 0) {
1794 dev_dbg(hcd->self.controller, "pool alloc failed\n");
1795 return retval;
1796 }
1797
1798 if ((retval = usb_register_bus(&hcd->self)) < 0)
Alan Stern8ec8d202005-04-25 11:25:17 -04001799 goto err_register_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
David Brownellb1e8f0a2006-01-23 15:25:40 -08001801 if ((rhdev = usb_alloc_dev(NULL, &hcd->self, 0)) == NULL) {
1802 dev_err(hcd->self.controller, "unable to allocate root hub\n");
1803 retval = -ENOMEM;
1804 goto err_allocate_root_hub;
1805 }
1806 rhdev->speed = (hcd->driver->flags & HCD_USB2) ? USB_SPEED_HIGH :
1807 USB_SPEED_FULL;
1808 hcd->self.root_hub = rhdev;
1809
1810 /* "reset" is misnamed; its role is now one-time init. the controller
1811 * should already have been reset (and boot firmware kicked off etc).
1812 */
1813 if (hcd->driver->reset && (retval = hcd->driver->reset(hcd)) < 0) {
1814 dev_err(hcd->self.controller, "can't setup\n");
1815 goto err_hcd_driver_setup;
1816 }
1817
1818 /* wakeup flag init is in transition; for now we can't rely on PCI to
1819 * initialize these bits properly, so we let reset() override it.
1820 * This init should _precede_ the reset() once PCI behaves.
1821 */
1822 device_init_wakeup(&rhdev->dev,
1823 device_can_wakeup(hcd->self.controller));
1824
David Brownellfb669cc2006-01-24 08:40:27 -08001825 /* NOTE: root hub and controller capabilities may not be the same */
1826 if (device_can_wakeup(hcd->self.controller)
1827 && device_can_wakeup(&hcd->self.root_hub->dev))
David Brownellb1e8f0a2006-01-23 15:25:40 -08001828 dev_dbg(hcd->self.controller, "supports USB remote wakeup\n");
David Brownellb1e8f0a2006-01-23 15:25:40 -08001829
1830 /* enable irqs just before we start the controller */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 if (hcd->driver->irq) {
1832 char buf[8], *bufp = buf;
1833
1834#ifdef __sparc__
1835 bufp = __irq_itoa(irqnum);
1836#else
1837 sprintf(buf, "%d", irqnum);
1838#endif
1839
1840 snprintf(hcd->irq_descr, sizeof(hcd->irq_descr), "%s:usb%d",
1841 hcd->driver->description, hcd->self.busnum);
1842 if ((retval = request_irq(irqnum, &usb_hcd_irq, irqflags,
1843 hcd->irq_descr, hcd)) != 0) {
1844 dev_err(hcd->self.controller,
1845 "request interrupt %s failed\n", bufp);
Alan Stern8ec8d202005-04-25 11:25:17 -04001846 goto err_request_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
1848 hcd->irq = irqnum;
1849 dev_info(hcd->self.controller, "irq %s, %s 0x%08llx\n", bufp,
1850 (hcd->driver->flags & HCD_MEMORY) ?
1851 "io mem" : "io base",
1852 (unsigned long long)hcd->rsrc_start);
1853 } else {
1854 hcd->irq = -1;
1855 if (hcd->rsrc_start)
1856 dev_info(hcd->self.controller, "%s 0x%08llx\n",
1857 (hcd->driver->flags & HCD_MEMORY) ?
1858 "io mem" : "io base",
1859 (unsigned long long)hcd->rsrc_start);
1860 }
1861
1862 if ((retval = hcd->driver->start(hcd)) < 0) {
1863 dev_err(hcd->self.controller, "startup error %d\n", retval);
Alan Stern8ec8d202005-04-25 11:25:17 -04001864 goto err_hcd_driver_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 }
1866
David Brownellb1e8f0a2006-01-23 15:25:40 -08001867 /* starting here, usbcore will pay attention to this root hub */
Alan Stern55c52712005-11-23 12:03:12 -05001868 rhdev->bus_mA = min(500u, hcd->power_budget);
David Brownellb1e8f0a2006-01-23 15:25:40 -08001869 if ((retval = register_root_hub(hcd)) != 0)
Alan Stern8ec8d202005-04-25 11:25:17 -04001870 goto err_register_root_hub;
1871
Alan Sternd5926ae72005-04-21 15:56:37 -04001872 if (hcd->uses_new_polling && hcd->poll_rh)
1873 usb_hcd_poll_rh_status(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 return retval;
1875
David Brownellb1e8f0a2006-01-23 15:25:40 -08001876err_register_root_hub:
Alan Stern8ec8d202005-04-25 11:25:17 -04001877 hcd->driver->stop(hcd);
David Brownellb1e8f0a2006-01-23 15:25:40 -08001878err_hcd_driver_start:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 if (hcd->irq >= 0)
1880 free_irq(irqnum, hcd);
David Brownellb1e8f0a2006-01-23 15:25:40 -08001881err_request_irq:
1882err_hcd_driver_setup:
1883 hcd->self.root_hub = NULL;
1884 usb_put_dev(rhdev);
1885err_allocate_root_hub:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 usb_deregister_bus(&hcd->self);
David Brownellb1e8f0a2006-01-23 15:25:40 -08001887err_register_bus:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 hcd_buffer_destroy(hcd);
1889 return retval;
1890}
1891EXPORT_SYMBOL (usb_add_hcd);
1892
1893/**
1894 * usb_remove_hcd - shutdown processing for generic HCDs
1895 * @hcd: the usb_hcd structure to remove
1896 * Context: !in_interrupt()
1897 *
1898 * Disconnects the root hub, then reverses the effects of usb_add_hcd(),
1899 * invoking the HCD's stop() method.
1900 */
1901void usb_remove_hcd(struct usb_hcd *hcd)
1902{
1903 dev_info(hcd->self.controller, "remove, state %x\n", hcd->state);
1904
1905 if (HC_IS_RUNNING (hcd->state))
1906 hcd->state = HC_STATE_QUIESCING;
1907
1908 dev_dbg(hcd->self.controller, "roothub graceful disconnect\n");
1909 spin_lock_irq (&hcd_root_hub_lock);
1910 hcd->rh_registered = 0;
1911 spin_unlock_irq (&hcd_root_hub_lock);
Alan Stern9ad3d6c2005-11-17 17:10:32 -05001912
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01001913 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 usb_disconnect(&hcd->self.root_hub);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01001915 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Alan Sternd5926ae72005-04-21 15:56:37 -04001917 hcd->poll_rh = 0;
1918 del_timer_sync(&hcd->rh_timer);
1919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 hcd->driver->stop(hcd);
1921 hcd->state = HC_STATE_HALT;
1922
1923 if (hcd->irq >= 0)
1924 free_irq(hcd->irq, hcd);
1925 usb_deregister_bus(&hcd->self);
1926 hcd_buffer_destroy(hcd);
1927}
1928EXPORT_SYMBOL (usb_remove_hcd);
1929
1930/*-------------------------------------------------------------------------*/
1931
Adrian Bunk4749f322005-06-23 11:36:56 +02001932#if defined(CONFIG_USB_MON)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
1934struct usb_mon_operations *mon_ops;
1935
1936/*
1937 * The registration is unlocked.
1938 * We do it this way because we do not want to lock in hot paths.
1939 *
1940 * Notice that the code is minimally error-proof. Because usbmon needs
1941 * symbols from usbcore, usbcore gets referenced and cannot be unloaded first.
1942 */
1943
1944int usb_mon_register (struct usb_mon_operations *ops)
1945{
1946
1947 if (mon_ops)
1948 return -EBUSY;
1949
1950 mon_ops = ops;
1951 mb();
1952 return 0;
1953}
1954EXPORT_SYMBOL_GPL (usb_mon_register);
1955
1956void usb_mon_deregister (void)
1957{
1958
1959 if (mon_ops == NULL) {
1960 printk(KERN_ERR "USB: monitor was not registered\n");
1961 return;
1962 }
1963 mon_ops = NULL;
1964 mb();
1965}
1966EXPORT_SYMBOL_GPL (usb_mon_deregister);
1967
1968#endif /* CONFIG_USB_MON */