blob: 7158dbb6e4b4d74863fa4d4bb78ad94d0fbcd8ec [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/device.h>
34#include <linux/dma-mapping.h>
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010035#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/irq.h>
37#include <asm/byteorder.h>
Magnus Dammb3476672008-01-23 15:58:35 +090038#include <asm/unaligned.h>
Aleksey Gorelov64a21d02006-08-08 17:24:08 -070039#include <linux/platform_device.h>
Alan Stern6b157c92007-03-13 16:37:30 -040040#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <linux/usb.h>
43
44#include "usb.h"
45#include "hcd.h"
46#include "hub.h"
47
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/*-------------------------------------------------------------------------*/
50
51/*
52 * USB Host Controller Driver framework
53 *
54 * Plugs into usbcore (usb_bus) and lets HCDs share code, minimizing
55 * HCD-specific behaviors/bugs.
56 *
57 * This does error checks, tracks devices and urbs, and delegates to a
58 * "hc_driver" only for code (and data) that really needs to know about
59 * hardware differences. That includes root hub registers, i/o queues,
60 * and so on ... but as little else as possible.
61 *
62 * Shared code includes most of the "root hub" code (these are emulated,
63 * though each HC's hardware works differently) and PCI glue, plus request
64 * tracking overhead. The HCD code should only block on spinlocks or on
65 * hardware handshaking; blocking on software events (such as other kernel
66 * threads releasing resources, or completing actions) is all generic.
67 *
68 * Happens the USB 2.0 spec says this would be invisible inside the "USBD",
69 * and includes mostly a "HCDI" (HCD Interface) along with some APIs used
70 * only by the hub driver ... and that neither should be seen or used by
71 * usb client device drivers.
72 *
73 * Contributors of ideas or unattributed patches include: David Brownell,
74 * Roman Weissgaerber, Rory Bolt, Greg Kroah-Hartman, ...
75 *
76 * HISTORY:
77 * 2002-02-21 Pull in most of the usb_bus support from usb.c; some
78 * associated cleanup. "usb_hcd" still != "usb_bus".
79 * 2001-12-12 Initial patch version for Linux 2.5.1 kernel.
80 */
81
82/*-------------------------------------------------------------------------*/
83
84/* host controllers we manage */
85LIST_HEAD (usb_bus_list);
86EXPORT_SYMBOL_GPL (usb_bus_list);
87
88/* used when allocating bus numbers */
89#define USB_MAXBUS 64
90struct usb_busmap {
91 unsigned long busmap [USB_MAXBUS / (8*sizeof (unsigned long))];
92};
93static struct usb_busmap busmap;
94
95/* used when updating list of hcds */
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010096DEFINE_MUTEX(usb_bus_list_lock); /* exported only for usbfs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070097EXPORT_SYMBOL_GPL (usb_bus_list_lock);
98
99/* used for controlling access to virtual root hubs */
100static DEFINE_SPINLOCK(hcd_root_hub_lock);
101
Alan Stern809a58b2007-07-18 12:14:24 -0400102/* used when updating an endpoint's URB list */
103static DEFINE_SPINLOCK(hcd_urb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105/* wait queue for synchronous unlinks */
106DECLARE_WAIT_QUEUE_HEAD(usb_kill_urb_queue);
107
Alan Stern809a58b2007-07-18 12:14:24 -0400108static inline int is_root_hub(struct usb_device *udev)
109{
110 return (udev->parent == NULL);
111}
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113/*-------------------------------------------------------------------------*/
114
115/*
116 * Sharable chunks of root hub code.
117 */
118
119/*-------------------------------------------------------------------------*/
120
121#define KERNEL_REL ((LINUX_VERSION_CODE >> 16) & 0x0ff)
122#define KERNEL_VER ((LINUX_VERSION_CODE >> 8) & 0x0ff)
123
124/* usb 2.0 root hub device descriptor */
125static const u8 usb2_rh_dev_descriptor [18] = {
126 0x12, /* __u8 bLength; */
127 0x01, /* __u8 bDescriptorType; Device */
128 0x00, 0x02, /* __le16 bcdUSB; v2.0 */
129
130 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
131 0x00, /* __u8 bDeviceSubClass; */
Alan Stern7329e212008-04-03 18:02:56 -0400132 0x00, /* __u8 bDeviceProtocol; [ usb 2.0 no TT ] */
Alan Stern16f16d12005-10-24 15:41:19 -0400133 0x40, /* __u8 bMaxPacketSize0; 64 Bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Greg Kroah-Hartman667d6912008-01-28 09:50:12 -0800135 0x6b, 0x1d, /* __le16 idVendor; Linux Foundation */
136 0x02, 0x00, /* __le16 idProduct; device 0x0002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
138
139 0x03, /* __u8 iManufacturer; */
140 0x02, /* __u8 iProduct; */
141 0x01, /* __u8 iSerialNumber; */
142 0x01 /* __u8 bNumConfigurations; */
143};
144
145/* no usb 2.0 root hub "device qualifier" descriptor: one speed only */
146
147/* usb 1.1 root hub device descriptor */
148static const u8 usb11_rh_dev_descriptor [18] = {
149 0x12, /* __u8 bLength; */
150 0x01, /* __u8 bDescriptorType; Device */
151 0x10, 0x01, /* __le16 bcdUSB; v1.1 */
152
153 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
154 0x00, /* __u8 bDeviceSubClass; */
155 0x00, /* __u8 bDeviceProtocol; [ low/full speeds only ] */
Alan Stern16f16d12005-10-24 15:41:19 -0400156 0x40, /* __u8 bMaxPacketSize0; 64 Bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Greg Kroah-Hartman667d6912008-01-28 09:50:12 -0800158 0x6b, 0x1d, /* __le16 idVendor; Linux Foundation */
159 0x01, 0x00, /* __le16 idProduct; device 0x0001 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
161
162 0x03, /* __u8 iManufacturer; */
163 0x02, /* __u8 iProduct; */
164 0x01, /* __u8 iSerialNumber; */
165 0x01 /* __u8 bNumConfigurations; */
166};
167
168
169/*-------------------------------------------------------------------------*/
170
171/* Configuration descriptors for our root hubs */
172
173static const u8 fs_rh_config_descriptor [] = {
174
175 /* one configuration */
176 0x09, /* __u8 bLength; */
177 0x02, /* __u8 bDescriptorType; Configuration */
178 0x19, 0x00, /* __le16 wTotalLength; */
179 0x01, /* __u8 bNumInterfaces; (1) */
180 0x01, /* __u8 bConfigurationValue; */
181 0x00, /* __u8 iConfiguration; */
182 0xc0, /* __u8 bmAttributes;
183 Bit 7: must be set,
184 6: Self-powered,
185 5: Remote wakeup,
186 4..0: resvd */
187 0x00, /* __u8 MaxPower; */
188
189 /* USB 1.1:
190 * USB 2.0, single TT organization (mandatory):
191 * one interface, protocol 0
192 *
193 * USB 2.0, multiple TT organization (optional):
194 * two interfaces, protocols 1 (like single TT)
195 * and 2 (multiple TT mode) ... config is
196 * sometimes settable
197 * NOT IMPLEMENTED
198 */
199
200 /* one interface */
201 0x09, /* __u8 if_bLength; */
202 0x04, /* __u8 if_bDescriptorType; Interface */
203 0x00, /* __u8 if_bInterfaceNumber; */
204 0x00, /* __u8 if_bAlternateSetting; */
205 0x01, /* __u8 if_bNumEndpoints; */
206 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
207 0x00, /* __u8 if_bInterfaceSubClass; */
208 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */
209 0x00, /* __u8 if_iInterface; */
210
211 /* one endpoint (status change endpoint) */
212 0x07, /* __u8 ep_bLength; */
213 0x05, /* __u8 ep_bDescriptorType; Endpoint */
214 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
215 0x03, /* __u8 ep_bmAttributes; Interrupt */
216 0x02, 0x00, /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */
217 0xff /* __u8 ep_bInterval; (255ms -- usb 2.0 spec) */
218};
219
220static const u8 hs_rh_config_descriptor [] = {
221
222 /* one configuration */
223 0x09, /* __u8 bLength; */
224 0x02, /* __u8 bDescriptorType; Configuration */
225 0x19, 0x00, /* __le16 wTotalLength; */
226 0x01, /* __u8 bNumInterfaces; (1) */
227 0x01, /* __u8 bConfigurationValue; */
228 0x00, /* __u8 iConfiguration; */
229 0xc0, /* __u8 bmAttributes;
230 Bit 7: must be set,
231 6: Self-powered,
232 5: Remote wakeup,
233 4..0: resvd */
234 0x00, /* __u8 MaxPower; */
235
236 /* USB 1.1:
237 * USB 2.0, single TT organization (mandatory):
238 * one interface, protocol 0
239 *
240 * USB 2.0, multiple TT organization (optional):
241 * two interfaces, protocols 1 (like single TT)
242 * and 2 (multiple TT mode) ... config is
243 * sometimes settable
244 * NOT IMPLEMENTED
245 */
246
247 /* one interface */
248 0x09, /* __u8 if_bLength; */
249 0x04, /* __u8 if_bDescriptorType; Interface */
250 0x00, /* __u8 if_bInterfaceNumber; */
251 0x00, /* __u8 if_bAlternateSetting; */
252 0x01, /* __u8 if_bNumEndpoints; */
253 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
254 0x00, /* __u8 if_bInterfaceSubClass; */
255 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */
256 0x00, /* __u8 if_iInterface; */
257
258 /* one endpoint (status change endpoint) */
259 0x07, /* __u8 ep_bLength; */
260 0x05, /* __u8 ep_bDescriptorType; Endpoint */
261 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
262 0x03, /* __u8 ep_bmAttributes; Interrupt */
inaky@linux.intel.com88fafff2006-10-11 20:05:59 -0700263 /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8)
264 * see hub.c:hub_configure() for details. */
265 (USB_MAXCHILDREN + 1 + 7) / 8, 0x00,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 0x0c /* __u8 ep_bInterval; (256ms -- usb 2.0 spec) */
267};
268
269/*-------------------------------------------------------------------------*/
270
271/*
272 * helper routine for returning string descriptors in UTF-16LE
273 * input can actually be ISO-8859-1; ASCII is its 7-bit subset
274 */
275static int ascii2utf (char *s, u8 *utf, int utfmax)
276{
277 int retval;
278
279 for (retval = 0; *s && utfmax > 1; utfmax -= 2, retval += 2) {
280 *utf++ = *s++;
281 *utf++ = 0;
282 }
283 if (utfmax > 0) {
284 *utf = *s;
285 ++retval;
286 }
287 return retval;
288}
289
290/*
291 * rh_string - provides manufacturer, product and serial strings for root hub
292 * @id: the string ID number (1: serial number, 2: product, 3: vendor)
293 * @hcd: the host controller for this root hub
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 * @data: return packet in UTF-16 LE
295 * @len: length of the return packet
296 *
297 * Produces either a manufacturer, product or serial number string for the
298 * virtual root hub device.
299 */
300static int rh_string (
301 int id,
302 struct usb_hcd *hcd,
303 u8 *data,
304 int len
305) {
306 char buf [100];
307
308 // language ids
309 if (id == 0) {
310 buf[0] = 4; buf[1] = 3; /* 4 bytes string data */
311 buf[2] = 0x09; buf[3] = 0x04; /* MSFT-speak for "en-us" */
312 len = min (len, 4);
313 memcpy (data, buf, len);
314 return len;
315
316 // serial number
317 } else if (id == 1) {
318 strlcpy (buf, hcd->self.bus_name, sizeof buf);
319
320 // product description
321 } else if (id == 2) {
322 strlcpy (buf, hcd->product_desc, sizeof buf);
323
324 // id 3 == vendor description
325 } else if (id == 3) {
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700326 snprintf (buf, sizeof buf, "%s %s %s", init_utsname()->sysname,
327 init_utsname()->release, hcd->driver->description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 // unsupported IDs --> "protocol stall"
330 } else
331 return -EPIPE;
332
333 switch (len) { /* All cases fall through */
334 default:
335 len = 2 + ascii2utf (buf, data + 2, len - 2);
336 case 2:
337 data [1] = 3; /* type == string */
338 case 1:
339 data [0] = 2 * (strlen (buf) + 1);
340 case 0:
341 ; /* Compiler wants a statement here */
342 }
343 return len;
344}
345
346
347/* Root hub control transfers execute synchronously */
348static int rh_call_control (struct usb_hcd *hcd, struct urb *urb)
349{
350 struct usb_ctrlrequest *cmd;
351 u16 typeReq, wValue, wIndex, wLength;
352 u8 *ubuf = urb->transfer_buffer;
Mikael Pettersson54bee6e2006-09-23 17:05:31 -0700353 u8 tbuf [sizeof (struct usb_hub_descriptor)]
354 __attribute__((aligned(4)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 const u8 *bufp = tbuf;
356 int len = 0;
Alan Sterne9df41c2007-08-08 11:48:02 -0400357 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 int n;
Alan Stern7329e212008-04-03 18:02:56 -0400359 u8 patch_wakeup = 0;
360 u8 patch_protocol = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Alan Stern9439eb92007-08-02 15:05:45 -0400362 might_sleep();
363
Alan Sterne9df41c2007-08-08 11:48:02 -0400364 spin_lock_irq(&hcd_root_hub_lock);
365 status = usb_hcd_link_urb_to_ep(hcd, urb);
366 spin_unlock_irq(&hcd_root_hub_lock);
367 if (status)
368 return status;
Alan Sternb0d9efb2007-08-21 15:39:21 -0400369 urb->hcpriv = hcd; /* Indicate it's queued */
Alan Sterne9df41c2007-08-08 11:48:02 -0400370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 cmd = (struct usb_ctrlrequest *) urb->setup_packet;
372 typeReq = (cmd->bRequestType << 8) | cmd->bRequest;
373 wValue = le16_to_cpu (cmd->wValue);
374 wIndex = le16_to_cpu (cmd->wIndex);
375 wLength = le16_to_cpu (cmd->wLength);
376
377 if (wLength > urb->transfer_buffer_length)
378 goto error;
379
380 urb->actual_length = 0;
381 switch (typeReq) {
382
383 /* DEVICE REQUESTS */
384
David Brownellfb669cc2006-01-24 08:40:27 -0800385 /* The root hub's remote wakeup enable bit is implemented using
386 * driver model wakeup flags. If this system supports wakeup
387 * through USB, userspace may change the default "allow wakeup"
388 * policy through sysfs or these calls.
389 *
390 * Most root hubs support wakeup from downstream devices, for
391 * runtime power management (disabling USB clocks and reducing
392 * VBUS power usage). However, not all of them do so; silicon,
393 * board, and BIOS bugs here are not uncommon, so these can't
394 * be treated quite like external hubs.
395 *
396 * Likewise, not all root hubs will pass wakeup events upstream,
397 * to wake up the whole system. So don't assume root hub and
398 * controller capabilities are identical.
399 */
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 case DeviceRequest | USB_REQ_GET_STATUS:
David Brownellfb669cc2006-01-24 08:40:27 -0800402 tbuf [0] = (device_may_wakeup(&hcd->self.root_hub->dev)
403 << USB_DEVICE_REMOTE_WAKEUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 | (1 << USB_DEVICE_SELF_POWERED);
405 tbuf [1] = 0;
406 len = 2;
407 break;
408 case DeviceOutRequest | USB_REQ_CLEAR_FEATURE:
409 if (wValue == USB_DEVICE_REMOTE_WAKEUP)
David Brownellfb669cc2006-01-24 08:40:27 -0800410 device_set_wakeup_enable(&hcd->self.root_hub->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 else
412 goto error;
413 break;
414 case DeviceOutRequest | USB_REQ_SET_FEATURE:
David Brownellfb669cc2006-01-24 08:40:27 -0800415 if (device_can_wakeup(&hcd->self.root_hub->dev)
416 && wValue == USB_DEVICE_REMOTE_WAKEUP)
417 device_set_wakeup_enable(&hcd->self.root_hub->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 else
419 goto error;
420 break;
421 case DeviceRequest | USB_REQ_GET_CONFIGURATION:
422 tbuf [0] = 1;
423 len = 1;
424 /* FALLTHROUGH */
425 case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
426 break;
427 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
428 switch (wValue & 0xff00) {
429 case USB_DT_DEVICE << 8:
430 if (hcd->driver->flags & HCD_USB2)
431 bufp = usb2_rh_dev_descriptor;
432 else if (hcd->driver->flags & HCD_USB11)
433 bufp = usb11_rh_dev_descriptor;
434 else
435 goto error;
436 len = 18;
Alan Stern7329e212008-04-03 18:02:56 -0400437 if (hcd->has_tt)
438 patch_protocol = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 break;
440 case USB_DT_CONFIG << 8:
441 if (hcd->driver->flags & HCD_USB2) {
442 bufp = hs_rh_config_descriptor;
443 len = sizeof hs_rh_config_descriptor;
444 } else {
445 bufp = fs_rh_config_descriptor;
446 len = sizeof fs_rh_config_descriptor;
447 }
David Brownellfb669cc2006-01-24 08:40:27 -0800448 if (device_can_wakeup(&hcd->self.root_hub->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 patch_wakeup = 1;
450 break;
451 case USB_DT_STRING << 8:
452 n = rh_string (wValue & 0xff, hcd, ubuf, wLength);
453 if (n < 0)
454 goto error;
455 urb->actual_length = n;
456 break;
457 default:
458 goto error;
459 }
460 break;
461 case DeviceRequest | USB_REQ_GET_INTERFACE:
462 tbuf [0] = 0;
463 len = 1;
464 /* FALLTHROUGH */
465 case DeviceOutRequest | USB_REQ_SET_INTERFACE:
466 break;
467 case DeviceOutRequest | USB_REQ_SET_ADDRESS:
468 // wValue == urb->dev->devaddr
469 dev_dbg (hcd->self.controller, "root hub device address %d\n",
470 wValue);
471 break;
472
473 /* INTERFACE REQUESTS (no defined feature/status flags) */
474
475 /* ENDPOINT REQUESTS */
476
477 case EndpointRequest | USB_REQ_GET_STATUS:
478 // ENDPOINT_HALT flag
479 tbuf [0] = 0;
480 tbuf [1] = 0;
481 len = 2;
482 /* FALLTHROUGH */
483 case EndpointOutRequest | USB_REQ_CLEAR_FEATURE:
484 case EndpointOutRequest | USB_REQ_SET_FEATURE:
485 dev_dbg (hcd->self.controller, "no endpoint features yet\n");
486 break;
487
488 /* CLASS REQUESTS (and errors) */
489
490 default:
491 /* non-generic request */
David Brownellb13296c2005-09-27 10:38:54 -0700492 switch (typeReq) {
493 case GetHubStatus:
494 case GetPortStatus:
495 len = 4;
496 break;
497 case GetHubDescriptor:
498 len = sizeof (struct usb_hub_descriptor);
499 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
David Brownellb13296c2005-09-27 10:38:54 -0700501 status = hcd->driver->hub_control (hcd,
502 typeReq, wValue, wIndex,
503 tbuf, wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 break;
505error:
506 /* "protocol stall" on error */
507 status = -EPIPE;
508 }
509
510 if (status) {
511 len = 0;
512 if (status != -EPIPE) {
513 dev_dbg (hcd->self.controller,
514 "CTRL: TypeReq=0x%x val=0x%x "
515 "idx=0x%x len=%d ==> %d\n",
516 typeReq, wValue, wIndex,
David Brownellb13296c2005-09-27 10:38:54 -0700517 wLength, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519 }
520 if (len) {
521 if (urb->transfer_buffer_length < len)
522 len = urb->transfer_buffer_length;
523 urb->actual_length = len;
524 // always USB_DIR_IN, toward host
525 memcpy (ubuf, bufp, len);
526
527 /* report whether RH hardware supports remote wakeup */
528 if (patch_wakeup &&
529 len > offsetof (struct usb_config_descriptor,
530 bmAttributes))
531 ((struct usb_config_descriptor *)ubuf)->bmAttributes
532 |= USB_CONFIG_ATT_WAKEUP;
Alan Stern7329e212008-04-03 18:02:56 -0400533
534 /* report whether RH hardware has an integrated TT */
535 if (patch_protocol &&
536 len > offsetof(struct usb_device_descriptor,
537 bDeviceProtocol))
538 ((struct usb_device_descriptor *) ubuf)->
539 bDeviceProtocol = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 }
541
542 /* any errors get returned through the urb completion */
Alan Stern9439eb92007-08-02 15:05:45 -0400543 spin_lock_irq(&hcd_root_hub_lock);
Alan Sterne9df41c2007-08-08 11:48:02 -0400544 usb_hcd_unlink_urb_from_ep(hcd, urb);
Alan Stern9439eb92007-08-02 15:05:45 -0400545
546 /* This peculiar use of spinlocks echoes what real HC drivers do.
547 * Avoiding calls to local_irq_disable/enable makes the code
548 * RT-friendly.
549 */
550 spin_unlock(&hcd_root_hub_lock);
Alan Stern4a000272007-08-24 15:42:24 -0400551 usb_hcd_giveback_urb(hcd, urb, status);
Alan Stern9439eb92007-08-02 15:05:45 -0400552 spin_lock(&hcd_root_hub_lock);
553
554 spin_unlock_irq(&hcd_root_hub_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return 0;
556}
557
558/*-------------------------------------------------------------------------*/
559
560/*
Alan Sternd5926ae72005-04-21 15:56:37 -0400561 * Root Hub interrupt transfers are polled using a timer if the
562 * driver requests it; otherwise the driver is responsible for
563 * calling usb_hcd_poll_rh_status() when an event occurs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 *
Alan Sternd5926ae72005-04-21 15:56:37 -0400565 * Completions are called in_interrupt(), but they may or may not
566 * be in_irq().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 */
Alan Sternd5926ae72005-04-21 15:56:37 -0400568void usb_hcd_poll_rh_status(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
570 struct urb *urb;
Alan Sternd5926ae72005-04-21 15:56:37 -0400571 int length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 unsigned long flags;
Alan Sternd5926ae72005-04-21 15:56:37 -0400573 char buffer[4]; /* Any root hubs with > 31 ports? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Alan Stern1b42ae62007-03-13 11:10:52 -0400575 if (unlikely(!hcd->rh_registered))
576 return;
Alan Sternd5926ae72005-04-21 15:56:37 -0400577 if (!hcd->uses_new_polling && !hcd->status_urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Alan Sternd5926ae72005-04-21 15:56:37 -0400580 length = hcd->driver->hub_status_data(hcd, buffer);
581 if (length > 0) {
582
583 /* try to complete the status urb */
Alan Stern9439eb92007-08-02 15:05:45 -0400584 spin_lock_irqsave(&hcd_root_hub_lock, flags);
Alan Sternd5926ae72005-04-21 15:56:37 -0400585 urb = hcd->status_urb;
586 if (urb) {
Alan Sterne9df41c2007-08-08 11:48:02 -0400587 hcd->poll_pending = 0;
588 hcd->status_urb = NULL;
Alan Sterne9df41c2007-08-08 11:48:02 -0400589 urb->actual_length = length;
590 memcpy(urb->transfer_buffer, buffer, length);
Alan Stern9439eb92007-08-02 15:05:45 -0400591
Alan Sterne9df41c2007-08-08 11:48:02 -0400592 usb_hcd_unlink_urb_from_ep(hcd, urb);
Alan Stern9439eb92007-08-02 15:05:45 -0400593 spin_unlock(&hcd_root_hub_lock);
Alan Stern4a000272007-08-24 15:42:24 -0400594 usb_hcd_giveback_urb(hcd, urb, 0);
Alan Stern9439eb92007-08-02 15:05:45 -0400595 spin_lock(&hcd_root_hub_lock);
Alan Sterne9df41c2007-08-08 11:48:02 -0400596 } else {
Alan Sternd5926ae72005-04-21 15:56:37 -0400597 length = 0;
Alan Sternd5926ae72005-04-21 15:56:37 -0400598 hcd->poll_pending = 1;
Alan Sterne9df41c2007-08-08 11:48:02 -0400599 }
Alan Stern9439eb92007-08-02 15:05:45 -0400600 spin_unlock_irqrestore(&hcd_root_hub_lock, flags);
Alan Sternd5926ae72005-04-21 15:56:37 -0400601 }
602
603 /* The USB 2.0 spec says 256 ms. This is close enough and won't
Arjan van de Ven01cd0812007-05-22 12:42:56 -0700604 * exceed that limit if HZ is 100. The math is more clunky than
605 * maybe expected, this is to make sure that all timers for USB devices
606 * fire at the same time to give the CPU a break inbetween */
Alan Sternd5926ae72005-04-21 15:56:37 -0400607 if (hcd->uses_new_polling ? hcd->poll_rh :
608 (length == 0 && hcd->status_urb != NULL))
Arjan van de Ven01cd0812007-05-22 12:42:56 -0700609 mod_timer (&hcd->rh_timer, (jiffies/(HZ/4) + 1) * (HZ/4));
Alan Sternd5926ae72005-04-21 15:56:37 -0400610}
611EXPORT_SYMBOL_GPL(usb_hcd_poll_rh_status);
612
613/* timer callback */
614static void rh_timer_func (unsigned long _hcd)
615{
616 usb_hcd_poll_rh_status((struct usb_hcd *) _hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
619/*-------------------------------------------------------------------------*/
620
Alan Sternd5926ae72005-04-21 15:56:37 -0400621static int rh_queue_status (struct usb_hcd *hcd, struct urb *urb)
622{
623 int retval;
624 unsigned long flags;
625 int len = 1 + (urb->dev->maxchild / 8);
626
627 spin_lock_irqsave (&hcd_root_hub_lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -0400628 if (hcd->status_urb || urb->transfer_buffer_length < len) {
Alan Sternd5926ae72005-04-21 15:56:37 -0400629 dev_dbg (hcd->self.controller, "not queuing rh status urb\n");
630 retval = -EINVAL;
Alan Sterne9df41c2007-08-08 11:48:02 -0400631 goto done;
Alan Sternd5926ae72005-04-21 15:56:37 -0400632 }
Alan Sterne9df41c2007-08-08 11:48:02 -0400633
634 retval = usb_hcd_link_urb_to_ep(hcd, urb);
635 if (retval)
636 goto done;
637
638 hcd->status_urb = urb;
639 urb->hcpriv = hcd; /* indicate it's queued */
640 if (!hcd->uses_new_polling)
641 mod_timer(&hcd->rh_timer, (jiffies/(HZ/4) + 1) * (HZ/4));
642
643 /* If a status change has already occurred, report it ASAP */
644 else if (hcd->poll_pending)
645 mod_timer(&hcd->rh_timer, jiffies);
646 retval = 0;
647 done:
Alan Sternd5926ae72005-04-21 15:56:37 -0400648 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
649 return retval;
650}
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652static int rh_urb_enqueue (struct usb_hcd *hcd, struct urb *urb)
653{
Alan Stern5e60a162007-07-30 17:07:21 -0400654 if (usb_endpoint_xfer_int(&urb->ep->desc))
Alan Sternd5926ae72005-04-21 15:56:37 -0400655 return rh_queue_status (hcd, urb);
Alan Stern5e60a162007-07-30 17:07:21 -0400656 if (usb_endpoint_xfer_control(&urb->ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return rh_call_control (hcd, urb);
Alan Sternd5926ae72005-04-21 15:56:37 -0400658 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659}
660
661/*-------------------------------------------------------------------------*/
662
Alan Stern455b25f2006-08-11 16:01:45 -0400663/* Unlinks of root-hub control URBs are legal, but they don't do anything
664 * since these URBs always execute synchronously.
Alan Sternd5926ae72005-04-21 15:56:37 -0400665 */
Alan Sterne9df41c2007-08-08 11:48:02 -0400666static int usb_rh_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Alan Stern455b25f2006-08-11 16:01:45 -0400668 unsigned long flags;
Alan Sterne9df41c2007-08-08 11:48:02 -0400669 int rc;
Alan Stern455b25f2006-08-11 16:01:45 -0400670
Alan Stern9439eb92007-08-02 15:05:45 -0400671 spin_lock_irqsave(&hcd_root_hub_lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -0400672 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
673 if (rc)
674 goto done;
675
Alan Stern5e60a162007-07-30 17:07:21 -0400676 if (usb_endpoint_num(&urb->ep->desc) == 0) { /* Control URB */
Alan Stern455b25f2006-08-11 16:01:45 -0400677 ; /* Do nothing */
Alan Sternd5926ae72005-04-21 15:56:37 -0400678
679 } else { /* Status URB */
680 if (!hcd->uses_new_polling)
Alan Stern455b25f2006-08-11 16:01:45 -0400681 del_timer (&hcd->rh_timer);
Alan Sternd5926ae72005-04-21 15:56:37 -0400682 if (urb == hcd->status_urb) {
683 hcd->status_urb = NULL;
Alan Sterne9df41c2007-08-08 11:48:02 -0400684 usb_hcd_unlink_urb_from_ep(hcd, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Alan Stern9439eb92007-08-02 15:05:45 -0400686 spin_unlock(&hcd_root_hub_lock);
Alan Stern4a000272007-08-24 15:42:24 -0400687 usb_hcd_giveback_urb(hcd, urb, status);
Alan Stern9439eb92007-08-02 15:05:45 -0400688 spin_lock(&hcd_root_hub_lock);
689 }
690 }
Alan Sterne9df41c2007-08-08 11:48:02 -0400691 done:
Alan Stern9439eb92007-08-02 15:05:45 -0400692 spin_unlock_irqrestore(&hcd_root_hub_lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -0400693 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694}
695
Inaky Perez-Gonzalez5234ce12007-07-31 20:33:58 -0700696
697
698/*
699 * Show & store the current value of authorized_default
700 */
701static ssize_t usb_host_authorized_default_show(struct device *dev,
702 struct device_attribute *attr,
703 char *buf)
704{
705 struct usb_device *rh_usb_dev = to_usb_device(dev);
706 struct usb_bus *usb_bus = rh_usb_dev->bus;
707 struct usb_hcd *usb_hcd;
708
709 if (usb_bus == NULL) /* FIXME: not sure if this case is possible */
710 return -ENODEV;
711 usb_hcd = bus_to_hcd(usb_bus);
712 return snprintf(buf, PAGE_SIZE, "%u\n", usb_hcd->authorized_default);
713}
714
715static ssize_t usb_host_authorized_default_store(struct device *dev,
716 struct device_attribute *attr,
717 const char *buf, size_t size)
718{
719 ssize_t result;
720 unsigned val;
721 struct usb_device *rh_usb_dev = to_usb_device(dev);
722 struct usb_bus *usb_bus = rh_usb_dev->bus;
723 struct usb_hcd *usb_hcd;
724
725 if (usb_bus == NULL) /* FIXME: not sure if this case is possible */
726 return -ENODEV;
727 usb_hcd = bus_to_hcd(usb_bus);
728 result = sscanf(buf, "%u\n", &val);
729 if (result == 1) {
730 usb_hcd->authorized_default = val? 1 : 0;
731 result = size;
732 }
733 else
734 result = -EINVAL;
735 return result;
736}
737
738static DEVICE_ATTR(authorized_default, 0644,
739 usb_host_authorized_default_show,
740 usb_host_authorized_default_store);
741
742
743/* Group all the USB bus attributes */
744static struct attribute *usb_bus_attrs[] = {
745 &dev_attr_authorized_default.attr,
746 NULL,
747};
748
749static struct attribute_group usb_bus_attr_group = {
750 .name = NULL, /* we want them in the same directory */
751 .attrs = usb_bus_attrs,
752};
753
754
755
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756/*-------------------------------------------------------------------------*/
757
gregkh@suse.de8561b102005-03-15 15:10:13 -0800758static struct class *usb_host_class;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760int usb_host_init(void)
761{
gregkh@suse.de8561b102005-03-15 15:10:13 -0800762 int retval = 0;
763
764 usb_host_class = class_create(THIS_MODULE, "usb_host");
765 if (IS_ERR(usb_host_class))
766 retval = PTR_ERR(usb_host_class);
767 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
770void usb_host_cleanup(void)
771{
gregkh@suse.de8561b102005-03-15 15:10:13 -0800772 class_destroy(usb_host_class);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
775/**
776 * usb_bus_init - shared initialization code
777 * @bus: the bus structure being initialized
778 *
779 * This code is used to initialize a usb_bus structure, memory for which is
780 * separately managed.
781 */
782static void usb_bus_init (struct usb_bus *bus)
783{
784 memset (&bus->devmap, 0, sizeof(struct usb_devmap));
785
786 bus->devnum_next = 1;
787
788 bus->root_hub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 bus->busnum = -1;
790 bus->bandwidth_allocated = 0;
791 bus->bandwidth_int_reqs = 0;
792 bus->bandwidth_isoc_reqs = 0;
793
794 INIT_LIST_HEAD (&bus->bus_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797/*-------------------------------------------------------------------------*/
798
799/**
800 * usb_register_bus - registers the USB host controller with the usb core
801 * @bus: pointer to the bus to register
802 * Context: !in_interrupt()
803 *
804 * Assigns a bus number, and links the controller into usbcore data
805 * structures so that it can be seen by scanning the bus list.
806 */
807static int usb_register_bus(struct usb_bus *bus)
808{
Inaky Perez-Gonzalezeb579f52007-07-31 20:33:59 -0700809 int result = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 int busnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100812 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 busnum = find_next_zero_bit (busmap.busmap, USB_MAXBUS, 1);
Inaky Perez-Gonzalezeb579f52007-07-31 20:33:59 -0700814 if (busnum >= USB_MAXBUS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 printk (KERN_ERR "%s: too many buses\n", usbcore_name);
Inaky Perez-Gonzalezeb579f52007-07-31 20:33:59 -0700816 goto error_find_busnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
Inaky Perez-Gonzalezeb579f52007-07-31 20:33:59 -0700818 set_bit (busnum, busmap.busmap);
819 bus->busnum = busnum;
Tony Jones5a3201b2007-09-11 14:07:31 -0700820
Greg Kroah-Hartmanc013d042008-05-16 17:55:12 -0700821 bus->dev = device_create_drvdata(usb_host_class, bus->controller,
822 MKDEV(0, 0), bus,
823 "usb_host%d", busnum);
Tony Jones5a3201b2007-09-11 14:07:31 -0700824 result = PTR_ERR(bus->dev);
825 if (IS_ERR(bus->dev))
Inaky Perez-Gonzalezeb579f52007-07-31 20:33:59 -0700826 goto error_create_class_dev;
gregkh@suse.de8561b102005-03-15 15:10:13 -0800827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 /* Add it to the local list of buses */
829 list_add (&bus->bus_list, &usb_bus_list);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100830 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -0700832 usb_notify_add_bus(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Inaky Perez-Gonzalezeb579f52007-07-31 20:33:59 -0700834 dev_info (bus->controller, "new USB bus registered, assigned bus "
835 "number %d\n", bus->busnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 return 0;
Inaky Perez-Gonzalezeb579f52007-07-31 20:33:59 -0700837
838error_create_class_dev:
839 clear_bit(busnum, busmap.busmap);
840error_find_busnum:
841 mutex_unlock(&usb_bus_list_lock);
842 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
845/**
846 * usb_deregister_bus - deregisters the USB host controller
847 * @bus: pointer to the bus to deregister
848 * Context: !in_interrupt()
849 *
850 * Recycles the bus number, and unlinks the controller from usbcore data
851 * structures so that it won't be seen by scanning the bus list.
852 */
853static void usb_deregister_bus (struct usb_bus *bus)
854{
855 dev_info (bus->controller, "USB bus %d deregistered\n", bus->busnum);
856
857 /*
858 * NOTE: make sure that all the devices are removed by the
859 * controller code, as well as having it call this when cleaning
860 * itself up
861 */
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100862 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 list_del (&bus->bus_list);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100864 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -0700866 usb_notify_remove_bus(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 clear_bit (bus->busnum, busmap.busmap);
869
Tony Jones5a3201b2007-09-11 14:07:31 -0700870 device_unregister(bus->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
872
873/**
Alan Stern8ec8d202005-04-25 11:25:17 -0400874 * register_root_hub - called by usb_add_hcd() to register a root hub
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 * @hcd: host controller for this root hub
876 *
Alan Stern8ec8d202005-04-25 11:25:17 -0400877 * This function registers the root hub with the USB subsystem. It sets up
David Brownellb1e8f0a2006-01-23 15:25:40 -0800878 * the device properly in the device tree and then calls usb_new_device()
879 * to register the usb device. It also assigns the root hub's USB address
880 * (always 1).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 */
David Brownellb1e8f0a2006-01-23 15:25:40 -0800882static int register_root_hub(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
884 struct device *parent_dev = hcd->self.controller;
David Brownellb1e8f0a2006-01-23 15:25:40 -0800885 struct usb_device *usb_dev = hcd->self.root_hub;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 const int devnum = 1;
887 int retval;
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 usb_dev->devnum = devnum;
890 usb_dev->bus->devnum_next = devnum + 1;
891 memset (&usb_dev->bus->devmap.devicemap, 0,
892 sizeof usb_dev->bus->devmap.devicemap);
893 set_bit (devnum, usb_dev->bus->devmap.devicemap);
894 usb_set_device_state(usb_dev, USB_STATE_ADDRESS);
895
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100896 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898 usb_dev->ep0.desc.wMaxPacketSize = __constant_cpu_to_le16(64);
899 retval = usb_get_device_descriptor(usb_dev, USB_DT_DEVICE_SIZE);
900 if (retval != sizeof usb_dev->descriptor) {
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100901 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 dev_dbg (parent_dev, "can't read %s device descriptor %d\n",
903 usb_dev->dev.bus_id, retval);
904 return (retval < 0) ? retval : -EMSGSIZE;
905 }
906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 retval = usb_new_device (usb_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 dev_err (parent_dev, "can't register root hub for %s, %d\n",
910 usb_dev->dev.bus_id, retval);
911 }
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100912 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 if (retval == 0) {
915 spin_lock_irq (&hcd_root_hub_lock);
916 hcd->rh_registered = 1;
917 spin_unlock_irq (&hcd_root_hub_lock);
918
919 /* Did the HC die before the root hub was registered? */
920 if (hcd->state == HC_STATE_HALT)
921 usb_hc_died (hcd); /* This time clean up */
922 }
923
924 return retval;
925}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927
928/*-------------------------------------------------------------------------*/
929
930/**
931 * usb_calc_bus_time - approximate periodic transaction time in nanoseconds
932 * @speed: from dev->speed; USB_SPEED_{LOW,FULL,HIGH}
933 * @is_input: true iff the transaction sends data to the host
934 * @isoc: true for isochronous transactions, false for interrupt ones
935 * @bytecount: how many bytes in the transaction.
936 *
937 * Returns approximate bus time in nanoseconds for a periodic transaction.
938 * See USB 2.0 spec section 5.11.3; only periodic transfers need to be
939 * scheduled in software, this function is only used for such scheduling.
940 */
941long usb_calc_bus_time (int speed, int is_input, int isoc, int bytecount)
942{
943 unsigned long tmp;
944
945 switch (speed) {
946 case USB_SPEED_LOW: /* INTR only */
947 if (is_input) {
948 tmp = (67667L * (31L + 10L * BitTime (bytecount))) / 1000L;
949 return (64060L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
950 } else {
951 tmp = (66700L * (31L + 10L * BitTime (bytecount))) / 1000L;
952 return (64107L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
953 }
954 case USB_SPEED_FULL: /* ISOC or INTR */
955 if (isoc) {
956 tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
957 return (((is_input) ? 7268L : 6265L) + BW_HOST_DELAY + tmp);
958 } else {
959 tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
960 return (9107L + BW_HOST_DELAY + tmp);
961 }
962 case USB_SPEED_HIGH: /* ISOC or INTR */
963 // FIXME adjust for input vs output
964 if (isoc)
Dan Streetman498f78e2005-07-29 12:18:28 -0700965 tmp = HS_NSECS_ISO (bytecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 else
Dan Streetman498f78e2005-07-29 12:18:28 -0700967 tmp = HS_NSECS (bytecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return tmp;
969 default:
970 pr_debug ("%s: bogus device speed!\n", usbcore_name);
971 return -1;
972 }
973}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -0600974EXPORT_SYMBOL_GPL(usb_calc_bus_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
977/*-------------------------------------------------------------------------*/
978
979/*
980 * Generic HC operations.
981 */
982
983/*-------------------------------------------------------------------------*/
984
Alan Sterne9df41c2007-08-08 11:48:02 -0400985/**
986 * usb_hcd_link_urb_to_ep - add an URB to its endpoint queue
987 * @hcd: host controller to which @urb was submitted
988 * @urb: URB being submitted
989 *
990 * Host controller drivers should call this routine in their enqueue()
991 * method. The HCD's private spinlock must be held and interrupts must
992 * be disabled. The actions carried out here are required for URB
993 * submission, as well as for endpoint shutdown and for usb_kill_urb.
994 *
995 * Returns 0 for no error, otherwise a negative error code (in which case
996 * the enqueue() method must fail). If no error occurs but enqueue() fails
997 * anyway, it must call usb_hcd_unlink_urb_from_ep() before releasing
998 * the private spinlock and returning.
999 */
1000int usb_hcd_link_urb_to_ep(struct usb_hcd *hcd, struct urb *urb)
Alan Stern9a9bf402007-08-02 15:06:54 -04001001{
Alan Stern9a9bf402007-08-02 15:06:54 -04001002 int rc = 0;
1003
Alan Sterne9df41c2007-08-08 11:48:02 -04001004 spin_lock(&hcd_urb_list_lock);
Alan Stern9a9bf402007-08-02 15:06:54 -04001005
1006 /* Check that the URB isn't being killed */
1007 if (unlikely(urb->reject)) {
1008 rc = -EPERM;
1009 goto done;
1010 }
1011
1012 if (unlikely(!urb->ep->enabled)) {
1013 rc = -ENOENT;
1014 goto done;
1015 }
1016
Alan Stern6840d252007-09-10 11:34:26 -04001017 if (unlikely(!urb->dev->can_submit)) {
1018 rc = -EHOSTUNREACH;
1019 goto done;
1020 }
1021
Alan Stern9a9bf402007-08-02 15:06:54 -04001022 /*
1023 * Check the host controller's state and add the URB to the
1024 * endpoint's queue.
1025 */
1026 switch (hcd->state) {
1027 case HC_STATE_RUNNING:
1028 case HC_STATE_RESUMING:
Alan Sterneb231052007-08-21 15:40:36 -04001029 urb->unlinked = 0;
Alan Stern9a9bf402007-08-02 15:06:54 -04001030 list_add_tail(&urb->urb_list, &urb->ep->urb_list);
1031 break;
1032 default:
1033 rc = -ESHUTDOWN;
1034 goto done;
1035 }
1036 done:
Alan Sterne9df41c2007-08-08 11:48:02 -04001037 spin_unlock(&hcd_urb_list_lock);
Alan Stern9a9bf402007-08-02 15:06:54 -04001038 return rc;
1039}
Alan Sterne9df41c2007-08-08 11:48:02 -04001040EXPORT_SYMBOL_GPL(usb_hcd_link_urb_to_ep);
Alan Stern9a9bf402007-08-02 15:06:54 -04001041
Alan Sterne9df41c2007-08-08 11:48:02 -04001042/**
1043 * usb_hcd_check_unlink_urb - check whether an URB may be unlinked
1044 * @hcd: host controller to which @urb was submitted
1045 * @urb: URB being checked for unlinkability
1046 * @status: error code to store in @urb if the unlink succeeds
1047 *
1048 * Host controller drivers should call this routine in their dequeue()
1049 * method. The HCD's private spinlock must be held and interrupts must
1050 * be disabled. The actions carried out here are required for making
1051 * sure than an unlink is valid.
1052 *
1053 * Returns 0 for no error, otherwise a negative error code (in which case
1054 * the dequeue() method must fail). The possible error codes are:
1055 *
1056 * -EIDRM: @urb was not submitted or has already completed.
1057 * The completion function may not have been called yet.
1058 *
1059 * -EBUSY: @urb has already been unlinked.
1060 */
1061int usb_hcd_check_unlink_urb(struct usb_hcd *hcd, struct urb *urb,
Alan Stern9a9bf402007-08-02 15:06:54 -04001062 int status)
1063{
Alan Stern9a9bf402007-08-02 15:06:54 -04001064 struct list_head *tmp;
Alan Stern9a9bf402007-08-02 15:06:54 -04001065
1066 /* insist the urb is still queued */
1067 list_for_each(tmp, &urb->ep->urb_list) {
1068 if (tmp == &urb->urb_list)
1069 break;
1070 }
Alan Sterne9df41c2007-08-08 11:48:02 -04001071 if (tmp != &urb->urb_list)
1072 return -EIDRM;
Alan Stern9a9bf402007-08-02 15:06:54 -04001073
1074 /* Any status except -EINPROGRESS means something already started to
1075 * unlink this URB from the hardware. So there's no more work to do.
1076 */
Alan Sterneb231052007-08-21 15:40:36 -04001077 if (urb->unlinked)
Alan Sterne9df41c2007-08-08 11:48:02 -04001078 return -EBUSY;
Alan Sterneb231052007-08-21 15:40:36 -04001079 urb->unlinked = status;
Alan Stern9a9bf402007-08-02 15:06:54 -04001080
1081 /* IRQ setup can easily be broken so that USB controllers
1082 * never get completion IRQs ... maybe even the ones we need to
1083 * finish unlinking the initial failed usb_set_address()
1084 * or device descriptor fetch.
1085 */
1086 if (!test_bit(HCD_FLAG_SAW_IRQ, &hcd->flags) &&
1087 !is_root_hub(urb->dev)) {
1088 dev_warn(hcd->self.controller, "Unlink after no-IRQ? "
1089 "Controller is probably using the wrong IRQ.\n");
1090 set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
1091 }
1092
Alan Sterne9df41c2007-08-08 11:48:02 -04001093 return 0;
Alan Stern9a9bf402007-08-02 15:06:54 -04001094}
Alan Sterne9df41c2007-08-08 11:48:02 -04001095EXPORT_SYMBOL_GPL(usb_hcd_check_unlink_urb);
Alan Stern9a9bf402007-08-02 15:06:54 -04001096
Alan Sterne9df41c2007-08-08 11:48:02 -04001097/**
1098 * usb_hcd_unlink_urb_from_ep - remove an URB from its endpoint queue
1099 * @hcd: host controller to which @urb was submitted
1100 * @urb: URB being unlinked
1101 *
1102 * Host controller drivers should call this routine before calling
1103 * usb_hcd_giveback_urb(). The HCD's private spinlock must be held and
1104 * interrupts must be disabled. The actions carried out here are required
1105 * for URB completion.
1106 */
1107void usb_hcd_unlink_urb_from_ep(struct usb_hcd *hcd, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 /* clear all state linking urb to this dev (and hcd) */
Alan Sterne9df41c2007-08-08 11:48:02 -04001110 spin_lock(&hcd_urb_list_lock);
Alan Stern9a9bf402007-08-02 15:06:54 -04001111 list_del_init(&urb->urb_list);
Alan Sterne9df41c2007-08-08 11:48:02 -04001112 spin_unlock(&hcd_urb_list_lock);
Pete Zaitcev9f6a93f2007-06-08 13:37:49 -07001113}
Alan Sterne9df41c2007-08-08 11:48:02 -04001114EXPORT_SYMBOL_GPL(usb_hcd_unlink_urb_from_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Magnus Dammb3476672008-01-23 15:58:35 +09001116/*
1117 * Some usb host controllers can only perform dma using a small SRAM area.
1118 * The usb core itself is however optimized for host controllers that can dma
1119 * using regular system memory - like pci devices doing bus mastering.
1120 *
1121 * To support host controllers with limited dma capabilites we provide dma
1122 * bounce buffers. This feature can be enabled using the HCD_LOCAL_MEM flag.
1123 * For this to work properly the host controller code must first use the
1124 * function dma_declare_coherent_memory() to point out which memory area
1125 * that should be used for dma allocations.
1126 *
1127 * The HCD_LOCAL_MEM flag then tells the usb code to allocate all data for
1128 * dma using dma_alloc_coherent() which in turn allocates from the memory
1129 * area pointed out with dma_declare_coherent_memory().
1130 *
1131 * So, to summarize...
1132 *
1133 * - We need "local" memory, canonical example being
1134 * a small SRAM on a discrete controller being the
1135 * only memory that the controller can read ...
1136 * (a) "normal" kernel memory is no good, and
1137 * (b) there's not enough to share
1138 *
1139 * - The only *portable* hook for such stuff in the
1140 * DMA framework is dma_declare_coherent_memory()
1141 *
1142 * - So we use that, even though the primary requirement
1143 * is that the memory be "local" (hence addressible
1144 * by that device), not "coherent".
1145 *
1146 */
1147
1148static int hcd_alloc_coherent(struct usb_bus *bus,
1149 gfp_t mem_flags, dma_addr_t *dma_handle,
1150 void **vaddr_handle, size_t size,
1151 enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
Magnus Dammb3476672008-01-23 15:58:35 +09001153 unsigned char *vaddr;
1154
1155 vaddr = hcd_buffer_alloc(bus, size + sizeof(vaddr),
1156 mem_flags, dma_handle);
1157 if (!vaddr)
1158 return -ENOMEM;
1159
1160 /*
1161 * Store the virtual address of the buffer at the end
1162 * of the allocated dma buffer. The size of the buffer
1163 * may be uneven so use unaligned functions instead
1164 * of just rounding up. It makes sense to optimize for
1165 * memory footprint over access speed since the amount
1166 * of memory available for dma may be limited.
1167 */
1168 put_unaligned((unsigned long)*vaddr_handle,
1169 (unsigned long *)(vaddr + size));
1170
1171 if (dir == DMA_TO_DEVICE)
1172 memcpy(vaddr, *vaddr_handle, size);
1173
1174 *vaddr_handle = vaddr;
1175 return 0;
1176}
1177
1178static void hcd_free_coherent(struct usb_bus *bus, dma_addr_t *dma_handle,
1179 void **vaddr_handle, size_t size,
1180 enum dma_data_direction dir)
1181{
1182 unsigned char *vaddr = *vaddr_handle;
1183
1184 vaddr = (void *)get_unaligned((unsigned long *)(vaddr + size));
1185
1186 if (dir == DMA_FROM_DEVICE)
1187 memcpy(vaddr, *vaddr_handle, size);
1188
1189 hcd_buffer_free(bus, size + sizeof(vaddr), *vaddr_handle, *dma_handle);
1190
1191 *vaddr_handle = vaddr;
1192 *dma_handle = 0;
1193}
1194
1195static int map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
1196 gfp_t mem_flags)
1197{
1198 enum dma_data_direction dir;
1199 int ret = 0;
1200
Alan Stern9a9bf402007-08-02 15:06:54 -04001201 /* Map the URB's buffers for DMA access.
1202 * Lower level HCD code should use *_dma exclusively,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 * unless it uses pio or talks to another transport.
1204 */
Magnus Dammb3476672008-01-23 15:58:35 +09001205 if (is_root_hub(urb->dev))
1206 return 0;
1207
1208 if (usb_endpoint_xfer_control(&urb->ep->desc)
1209 && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP)) {
1210 if (hcd->self.uses_dma)
1211 urb->setup_dma = dma_map_single(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 hcd->self.controller,
1213 urb->setup_packet,
Magnus Dammb3476672008-01-23 15:58:35 +09001214 sizeof(struct usb_ctrlrequest),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 DMA_TO_DEVICE);
Magnus Dammb3476672008-01-23 15:58:35 +09001216 else if (hcd->driver->flags & HCD_LOCAL_MEM)
1217 ret = hcd_alloc_coherent(
1218 urb->dev->bus, mem_flags,
1219 &urb->setup_dma,
1220 (void **)&urb->setup_packet,
1221 sizeof(struct usb_ctrlrequest),
1222 DMA_TO_DEVICE);
1223 }
1224
1225 dir = usb_urb_dir_in(urb) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
1226 if (ret == 0 && urb->transfer_buffer_length != 0
1227 && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)) {
1228 if (hcd->self.uses_dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 urb->transfer_dma = dma_map_single (
1230 hcd->self.controller,
1231 urb->transfer_buffer,
1232 urb->transfer_buffer_length,
Magnus Dammb3476672008-01-23 15:58:35 +09001233 dir);
1234 else if (hcd->driver->flags & HCD_LOCAL_MEM) {
1235 ret = hcd_alloc_coherent(
1236 urb->dev->bus, mem_flags,
1237 &urb->transfer_dma,
1238 &urb->transfer_buffer,
1239 urb->transfer_buffer_length,
1240 dir);
1241
1242 if (ret && usb_endpoint_xfer_control(&urb->ep->desc)
1243 && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP))
1244 hcd_free_coherent(urb->dev->bus,
1245 &urb->setup_dma,
1246 (void **)&urb->setup_packet,
1247 sizeof(struct usb_ctrlrequest),
1248 DMA_TO_DEVICE);
1249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
Magnus Dammb3476672008-01-23 15:58:35 +09001251 return ret;
Alan Stern9a9bf402007-08-02 15:06:54 -04001252}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Alan Stern9a9bf402007-08-02 15:06:54 -04001254static void unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb)
1255{
Magnus Dammb3476672008-01-23 15:58:35 +09001256 enum dma_data_direction dir;
1257
1258 if (is_root_hub(urb->dev))
1259 return;
1260
1261 if (usb_endpoint_xfer_control(&urb->ep->desc)
1262 && !(urb->transfer_flags & URB_NO_SETUP_DMA_MAP)) {
1263 if (hcd->self.uses_dma)
Alan Stern9a9bf402007-08-02 15:06:54 -04001264 dma_unmap_single(hcd->self.controller, urb->setup_dma,
1265 sizeof(struct usb_ctrlrequest),
1266 DMA_TO_DEVICE);
Magnus Dammb3476672008-01-23 15:58:35 +09001267 else if (hcd->driver->flags & HCD_LOCAL_MEM)
1268 hcd_free_coherent(urb->dev->bus, &urb->setup_dma,
1269 (void **)&urb->setup_packet,
1270 sizeof(struct usb_ctrlrequest),
1271 DMA_TO_DEVICE);
1272 }
1273
1274 dir = usb_urb_dir_in(urb) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
1275 if (urb->transfer_buffer_length != 0
1276 && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)) {
1277 if (hcd->self.uses_dma)
Alan Stern9a9bf402007-08-02 15:06:54 -04001278 dma_unmap_single(hcd->self.controller,
1279 urb->transfer_dma,
1280 urb->transfer_buffer_length,
Magnus Dammb3476672008-01-23 15:58:35 +09001281 dir);
1282 else if (hcd->driver->flags & HCD_LOCAL_MEM)
1283 hcd_free_coherent(urb->dev->bus, &urb->transfer_dma,
1284 &urb->transfer_buffer,
1285 urb->transfer_buffer_length,
1286 dir);
Alan Stern9a9bf402007-08-02 15:06:54 -04001287 }
1288}
1289
1290/*-------------------------------------------------------------------------*/
1291
1292/* may be called in any context with a valid urb->dev usecount
1293 * caller surrenders "ownership" of urb
1294 * expects usb_submit_urb() to have sanity checked and conditioned all
1295 * inputs in the urb
1296 */
1297int usb_hcd_submit_urb (struct urb *urb, gfp_t mem_flags)
1298{
1299 int status;
1300 struct usb_hcd *hcd = bus_to_hcd(urb->dev->bus);
1301
1302 /* increment urb's reference count as part of giving it to the HCD
1303 * (which will control it). HCD guarantees that it either returns
1304 * an error or calls giveback(), but not both.
1305 */
1306 usb_get_urb(urb);
1307 atomic_inc(&urb->use_count);
Sarah Sharp4d59d8a2007-10-03 14:56:03 -07001308 atomic_inc(&urb->dev->urbnum);
Alan Stern9a9bf402007-08-02 15:06:54 -04001309 usbmon_urb_submit(&hcd->self, urb);
1310
1311 /* NOTE requirements on root-hub callers (usbfs and the hub
1312 * driver, for now): URBs' urb->transfer_buffer must be
1313 * valid and usb_buffer_{sync,unmap}() not be needed, since
1314 * they could clobber root hub response data. Also, control
1315 * URBs must be submitted in process context with interrupts
1316 * enabled.
1317 */
Magnus Dammb3476672008-01-23 15:58:35 +09001318 status = map_urb_for_dma(hcd, urb, mem_flags);
1319 if (unlikely(status)) {
1320 usbmon_urb_submit_error(&hcd->self, urb, status);
1321 goto error;
1322 }
1323
Alan Sterne9df41c2007-08-08 11:48:02 -04001324 if (is_root_hub(urb->dev))
1325 status = rh_urb_enqueue(hcd, urb);
1326 else
1327 status = hcd->driver->urb_enqueue(hcd, urb, mem_flags);
Alan Stern9a9bf402007-08-02 15:06:54 -04001328
1329 if (unlikely(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 usbmon_urb_submit_error(&hcd->self, urb, status);
Alan Stern9a9bf402007-08-02 15:06:54 -04001331 unmap_urb_for_dma(hcd, urb);
Magnus Dammb3476672008-01-23 15:58:35 +09001332 error:
Alan Sternb0d9efb2007-08-21 15:39:21 -04001333 urb->hcpriv = NULL;
Alan Stern9a9bf402007-08-02 15:06:54 -04001334 INIT_LIST_HEAD(&urb->urb_list);
1335 atomic_dec(&urb->use_count);
Sarah Sharp4d59d8a2007-10-03 14:56:03 -07001336 atomic_dec(&urb->dev->urbnum);
Alan Stern9a9bf402007-08-02 15:06:54 -04001337 if (urb->reject)
1338 wake_up(&usb_kill_urb_queue);
1339 usb_put_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
1341 return status;
1342}
1343
1344/*-------------------------------------------------------------------------*/
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346/* this makes the hcd giveback() the urb more quickly, by kicking it
1347 * off hardware queues (which may take a while) and returning it as
1348 * soon as practical. we've already set up the urb's return status,
1349 * but we can't know if the callback completed already.
1350 */
Alan Sterne9df41c2007-08-08 11:48:02 -04001351static int unlink1(struct usb_hcd *hcd, struct urb *urb, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
1353 int value;
1354
Alan Stern809a58b2007-07-18 12:14:24 -04001355 if (is_root_hub(urb->dev))
Alan Sterne9df41c2007-08-08 11:48:02 -04001356 value = usb_rh_urb_dequeue(hcd, urb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 else {
1358
1359 /* The only reason an HCD might fail this call is if
1360 * it has not yet fully queued the urb to begin with.
1361 * Such failures should be harmless. */
Alan Sterne9df41c2007-08-08 11:48:02 -04001362 value = hcd->driver->urb_dequeue(hcd, urb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 return value;
1365}
1366
1367/*
1368 * called in any context
1369 *
1370 * caller guarantees urb won't be recycled till both unlink()
1371 * and the urb's completion function return
1372 */
Alan Sterna6d2bb92006-08-30 11:27:36 -04001373int usb_hcd_unlink_urb (struct urb *urb, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
Alan Stern9a9bf402007-08-02 15:06:54 -04001375 struct usb_hcd *hcd;
1376 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Alan Stern17200582006-08-30 11:32:52 -04001378 hcd = bus_to_hcd(urb->dev->bus);
Alan Sterne9df41c2007-08-08 11:48:02 -04001379 retval = unlink1(hcd, urb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 if (retval == 0)
1382 retval = -EINPROGRESS;
Alan Sterne9df41c2007-08-08 11:48:02 -04001383 else if (retval != -EIDRM && retval != -EBUSY)
Alan Stern9a9bf402007-08-02 15:06:54 -04001384 dev_dbg(&urb->dev->dev, "hcd_unlink_urb %p fail %d\n",
1385 urb, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 return retval;
1387}
1388
1389/*-------------------------------------------------------------------------*/
1390
Alan Stern32aca562007-07-18 12:08:02 -04001391/**
1392 * usb_hcd_giveback_urb - return URB from HCD to device driver
1393 * @hcd: host controller returning the URB
1394 * @urb: urb being returned to the USB device driver.
Alan Stern4a000272007-08-24 15:42:24 -04001395 * @status: completion status code for the URB.
Alan Stern32aca562007-07-18 12:08:02 -04001396 * Context: in_interrupt()
1397 *
1398 * This hands the URB from HCD to its USB device driver, using its
1399 * completion function. The HCD has freed all per-urb resources
1400 * (and is done using urb->hcpriv). It also released all HCD locks;
1401 * the device driver won't cause problems if it frees, modifies,
1402 * or resubmits this URB.
Alan Sterneb231052007-08-21 15:40:36 -04001403 *
Alan Stern4a000272007-08-24 15:42:24 -04001404 * If @urb was unlinked, the value of @status will be overridden by
Alan Sterneb231052007-08-21 15:40:36 -04001405 * @urb->unlinked. Erroneous short transfers are detected in case
1406 * the HCD hasn't checked for them.
Alan Stern32aca562007-07-18 12:08:02 -04001407 */
Alan Stern4a000272007-08-24 15:42:24 -04001408void usb_hcd_giveback_urb(struct usb_hcd *hcd, struct urb *urb, int status)
Alan Stern32aca562007-07-18 12:08:02 -04001409{
Alan Sternb0d9efb2007-08-21 15:39:21 -04001410 urb->hcpriv = NULL;
Alan Sterneb231052007-08-21 15:40:36 -04001411 if (unlikely(urb->unlinked))
Alan Stern4a000272007-08-24 15:42:24 -04001412 status = urb->unlinked;
Alan Sterneb231052007-08-21 15:40:36 -04001413 else if (unlikely((urb->transfer_flags & URB_SHORT_NOT_OK) &&
Alan Sternb0d9efb2007-08-21 15:39:21 -04001414 urb->actual_length < urb->transfer_buffer_length &&
Alan Stern4a000272007-08-24 15:42:24 -04001415 !status))
1416 status = -EREMOTEIO;
Alan Stern32aca562007-07-18 12:08:02 -04001417
Alan Stern1f5a3d02007-08-22 13:06:53 -04001418 unmap_urb_for_dma(hcd, urb);
Alan Stern4a000272007-08-24 15:42:24 -04001419 usbmon_urb_complete(&hcd->self, urb, status);
Alan Stern1f5a3d02007-08-22 13:06:53 -04001420 usb_unanchor_urb(urb);
1421
Alan Stern32aca562007-07-18 12:08:02 -04001422 /* pass ownership to the completion handler */
Alan Stern4a000272007-08-24 15:42:24 -04001423 urb->status = status;
Alan Stern32aca562007-07-18 12:08:02 -04001424 urb->complete (urb);
1425 atomic_dec (&urb->use_count);
1426 if (unlikely (urb->reject))
1427 wake_up (&usb_kill_urb_queue);
1428 usb_put_urb (urb);
1429}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001430EXPORT_SYMBOL_GPL(usb_hcd_giveback_urb);
Alan Stern32aca562007-07-18 12:08:02 -04001431
1432/*-------------------------------------------------------------------------*/
1433
Alan Stern95cf82f2007-09-10 11:33:05 -04001434/* Cancel all URBs pending on this endpoint and wait for the endpoint's
1435 * queue to drain completely. The caller must first insure that no more
1436 * URBs can be submitted for this endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 */
Alan Stern95cf82f2007-09-10 11:33:05 -04001438void usb_hcd_flush_endpoint(struct usb_device *udev,
Alan Sterna6d2bb92006-08-30 11:27:36 -04001439 struct usb_host_endpoint *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440{
1441 struct usb_hcd *hcd;
1442 struct urb *urb;
1443
Alan Stern95cf82f2007-09-10 11:33:05 -04001444 if (!ep)
1445 return;
Alan Stern9a9bf402007-08-02 15:06:54 -04001446 might_sleep();
Alan Stern17200582006-08-30 11:32:52 -04001447 hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Alan Stern95cf82f2007-09-10 11:33:05 -04001449 /* No more submits can occur */
Alan Stern9a9bf402007-08-02 15:06:54 -04001450 spin_lock_irq(&hcd_urb_list_lock);
Alan Sternddc1fd62007-11-21 15:13:10 -08001451rescan:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 list_for_each_entry (urb, &ep->urb_list, urb_list) {
Alan Stern5e60a162007-07-30 17:07:21 -04001453 int is_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Alan Sterneb231052007-08-21 15:40:36 -04001455 if (urb->unlinked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 continue;
1457 usb_get_urb (urb);
Alan Stern5e60a162007-07-30 17:07:21 -04001458 is_in = usb_urb_dir_in(urb);
Alan Stern809a58b2007-07-18 12:14:24 -04001459 spin_unlock(&hcd_urb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Alan Sterne9df41c2007-08-08 11:48:02 -04001461 /* kick hcd */
1462 unlink1(hcd, urb, -ESHUTDOWN);
1463 dev_dbg (hcd->self.controller,
1464 "shutdown urb %p ep%d%s%s\n",
1465 urb, usb_endpoint_num(&ep->desc),
1466 is_in ? "in" : "out",
1467 ({ char *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Alan Sterne9df41c2007-08-08 11:48:02 -04001469 switch (usb_endpoint_type(&ep->desc)) {
1470 case USB_ENDPOINT_XFER_CONTROL:
1471 s = ""; break;
1472 case USB_ENDPOINT_XFER_BULK:
1473 s = "-bulk"; break;
1474 case USB_ENDPOINT_XFER_INT:
1475 s = "-intr"; break;
1476 default:
1477 s = "-iso"; break;
1478 };
1479 s;
1480 }));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 usb_put_urb (urb);
1482
1483 /* list contents may have changed */
Alan Sternddc1fd62007-11-21 15:13:10 -08001484 spin_lock(&hcd_urb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 goto rescan;
1486 }
Alan Stern9a9bf402007-08-02 15:06:54 -04001487 spin_unlock_irq(&hcd_urb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Alan Stern95cf82f2007-09-10 11:33:05 -04001489 /* Wait until the endpoint queue is completely empty */
Alan Stern455b25f2006-08-11 16:01:45 -04001490 while (!list_empty (&ep->urb_list)) {
Alan Stern809a58b2007-07-18 12:14:24 -04001491 spin_lock_irq(&hcd_urb_list_lock);
Alan Stern455b25f2006-08-11 16:01:45 -04001492
1493 /* The list may have changed while we acquired the spinlock */
1494 urb = NULL;
1495 if (!list_empty (&ep->urb_list)) {
1496 urb = list_entry (ep->urb_list.prev, struct urb,
1497 urb_list);
1498 usb_get_urb (urb);
1499 }
Alan Stern809a58b2007-07-18 12:14:24 -04001500 spin_unlock_irq(&hcd_urb_list_lock);
Alan Stern455b25f2006-08-11 16:01:45 -04001501
1502 if (urb) {
1503 usb_kill_urb (urb);
1504 usb_put_urb (urb);
1505 }
1506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507}
1508
Alan Stern95cf82f2007-09-10 11:33:05 -04001509/* Disables the endpoint: synchronizes with the hcd to make sure all
1510 * endpoint state is gone from hardware. usb_hcd_flush_endpoint() must
1511 * have been called previously. Use for set_configuration, set_interface,
1512 * driver removal, physical disconnect.
1513 *
1514 * example: a qh stored in ep->hcpriv, holding state related to endpoint
1515 * type, maxpacket size, toggle, halt status, and scheduling.
1516 */
1517void usb_hcd_disable_endpoint(struct usb_device *udev,
1518 struct usb_host_endpoint *ep)
1519{
1520 struct usb_hcd *hcd;
1521
1522 might_sleep();
1523 hcd = bus_to_hcd(udev->bus);
1524 if (hcd->driver->endpoint_disable)
1525 hcd->driver->endpoint_disable(hcd, ep);
1526}
1527
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528/*-------------------------------------------------------------------------*/
1529
Alan Stern32aca562007-07-18 12:08:02 -04001530/* called in any context */
1531int usb_hcd_get_frame_number (struct usb_device *udev)
1532{
1533 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
1534
1535 if (!HC_IS_RUNNING (hcd->state))
1536 return -ESHUTDOWN;
1537 return hcd->driver->get_frame_number (hcd);
1538}
1539
1540/*-------------------------------------------------------------------------*/
1541
David Brownell92936772005-09-22 22:32:11 -07001542#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Alan Stern686314c2007-05-30 15:34:36 -04001544int hcd_bus_suspend(struct usb_device *rhdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
Alan Stern686314c2007-05-30 15:34:36 -04001546 struct usb_hcd *hcd = container_of(rhdev->bus, struct usb_hcd, self);
1547 int status;
1548 int old_state = hcd->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Alan Stern686314c2007-05-30 15:34:36 -04001550 dev_dbg(&rhdev->dev, "bus %s%s\n",
1551 rhdev->auto_pm ? "auto-" : "", "suspend");
1552 if (!hcd->driver->bus_suspend) {
1553 status = -ENOENT;
1554 } else {
1555 hcd->state = HC_STATE_QUIESCING;
1556 status = hcd->driver->bus_suspend(hcd);
1557 }
1558 if (status == 0) {
1559 usb_set_device_state(rhdev, USB_STATE_SUSPENDED);
David Brownell92936772005-09-22 22:32:11 -07001560 hcd->state = HC_STATE_SUSPENDED;
Alan Stern686314c2007-05-30 15:34:36 -04001561 } else {
1562 hcd->state = old_state;
1563 dev_dbg(&rhdev->dev, "bus %s fail, err %d\n",
David Brownell92936772005-09-22 22:32:11 -07001564 "suspend", status);
Alan Stern686314c2007-05-30 15:34:36 -04001565 }
David Brownell92936772005-09-22 22:32:11 -07001566 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567}
1568
Alan Stern686314c2007-05-30 15:34:36 -04001569int hcd_bus_resume(struct usb_device *rhdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570{
Alan Stern686314c2007-05-30 15:34:36 -04001571 struct usb_hcd *hcd = container_of(rhdev->bus, struct usb_hcd, self);
1572 int status;
Alan Sterncfa59da2007-06-21 16:25:35 -04001573 int old_state = hcd->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Alan Stern686314c2007-05-30 15:34:36 -04001575 dev_dbg(&rhdev->dev, "usb %s%s\n",
1576 rhdev->auto_pm ? "auto-" : "", "resume");
Alan Stern0c0382e2005-10-13 17:08:02 -04001577 if (!hcd->driver->bus_resume)
David Brownell92936772005-09-22 22:32:11 -07001578 return -ENOENT;
David Brownell979d5192005-09-22 22:32:24 -07001579 if (hcd->state == HC_STATE_RUNNING)
1580 return 0;
Alan Stern686314c2007-05-30 15:34:36 -04001581
David Brownell92936772005-09-22 22:32:11 -07001582 hcd->state = HC_STATE_RESUMING;
Alan Stern686314c2007-05-30 15:34:36 -04001583 status = hcd->driver->bus_resume(hcd);
1584 if (status == 0) {
1585 /* TRSMRCY = 10 msec */
1586 msleep(10);
1587 usb_set_device_state(rhdev, rhdev->actconfig
1588 ? USB_STATE_CONFIGURED
1589 : USB_STATE_ADDRESS);
David Brownell92936772005-09-22 22:32:11 -07001590 hcd->state = HC_STATE_RUNNING;
Alan Stern686314c2007-05-30 15:34:36 -04001591 } else {
Alan Sterncfa59da2007-06-21 16:25:35 -04001592 hcd->state = old_state;
Alan Stern686314c2007-05-30 15:34:36 -04001593 dev_dbg(&rhdev->dev, "bus %s fail, err %d\n",
David Brownell92936772005-09-22 22:32:11 -07001594 "resume", status);
Alan Sterncfa59da2007-06-21 16:25:35 -04001595 if (status != -ESHUTDOWN)
1596 usb_hc_died(hcd);
David Brownell92936772005-09-22 22:32:11 -07001597 }
1598 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599}
1600
Alan Stern6b157c92007-03-13 16:37:30 -04001601/* Workqueue routine for root-hub remote wakeup */
1602static void hcd_resume_work(struct work_struct *work)
1603{
1604 struct usb_hcd *hcd = container_of(work, struct usb_hcd, wakeup_work);
1605 struct usb_device *udev = hcd->self.root_hub;
1606
1607 usb_lock_device(udev);
Alan Stern19410442007-03-27 13:33:59 -04001608 usb_mark_last_busy(udev);
Alan Stern6b157c92007-03-13 16:37:30 -04001609 usb_external_resume_device(udev);
1610 usb_unlock_device(udev);
1611}
1612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613/**
1614 * usb_hcd_resume_root_hub - called by HCD to resume its root hub
1615 * @hcd: host controller for this root hub
1616 *
1617 * The USB host controller calls this function when its root hub is
1618 * suspended (with the remote wakeup feature enabled) and a remote
Alan Stern6b157c92007-03-13 16:37:30 -04001619 * wakeup request is received. The routine submits a workqueue request
1620 * to resume the root hub (that is, manage its downstream ports again).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 */
1622void usb_hcd_resume_root_hub (struct usb_hcd *hcd)
1623{
1624 unsigned long flags;
1625
1626 spin_lock_irqsave (&hcd_root_hub_lock, flags);
1627 if (hcd->rh_registered)
Alan Stern6b157c92007-03-13 16:37:30 -04001628 queue_work(ksuspend_usb_wq, &hcd->wakeup_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
1630}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631EXPORT_SYMBOL_GPL(usb_hcd_resume_root_hub);
1632
David Brownell92936772005-09-22 22:32:11 -07001633#endif
1634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635/*-------------------------------------------------------------------------*/
1636
1637#ifdef CONFIG_USB_OTG
1638
1639/**
1640 * usb_bus_start_enum - start immediate enumeration (for OTG)
1641 * @bus: the bus (must use hcd framework)
1642 * @port_num: 1-based number of port; usually bus->otg_port
1643 * Context: in_interrupt()
1644 *
1645 * Starts enumeration, with an immediate reset followed later by
1646 * khubd identifying and possibly configuring the device.
1647 * This is needed by OTG controller drivers, where it helps meet
1648 * HNP protocol timing requirements for starting a port reset.
1649 */
1650int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num)
1651{
1652 struct usb_hcd *hcd;
1653 int status = -EOPNOTSUPP;
1654
1655 /* NOTE: since HNP can't start by grabbing the bus's address0_sem,
1656 * boards with root hubs hooked up to internal devices (instead of
1657 * just the OTG port) may need more attention to resetting...
1658 */
1659 hcd = container_of (bus, struct usb_hcd, self);
1660 if (port_num && hcd->driver->start_port_reset)
1661 status = hcd->driver->start_port_reset(hcd, port_num);
1662
1663 /* run khubd shortly after (first) root port reset finishes;
1664 * it may issue others, until at least 50 msecs have passed.
1665 */
1666 if (status == 0)
1667 mod_timer(&hcd->rh_timer, jiffies + msecs_to_jiffies(10));
1668 return status;
1669}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001670EXPORT_SYMBOL_GPL(usb_bus_start_enum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
1672#endif
1673
1674/*-------------------------------------------------------------------------*/
1675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 * usb_hcd_irq - hook IRQs to HCD framework (bus glue)
1678 * @irq: the IRQ being raised
1679 * @__hcd: pointer to the HCD whose IRQ is being signaled
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 *
1681 * If the controller isn't HALTed, calls the driver's irq handler.
1682 * Checks whether the controller is now dead.
1683 */
David Howells7d12e782006-10-05 14:55:46 +01001684irqreturn_t usb_hcd_irq (int irq, void *__hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685{
1686 struct usb_hcd *hcd = __hcd;
Stefan Beckerde854222008-07-01 19:19:22 +03001687 unsigned long flags;
1688 irqreturn_t rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Stefan Beckerde854222008-07-01 19:19:22 +03001690 /* IRQF_DISABLED doesn't work correctly with shared IRQs
1691 * when the first handler doesn't use it. So let's just
1692 * assume it's never used.
1693 */
1694 local_irq_save(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Stefan Beckerde854222008-07-01 19:19:22 +03001696 if (unlikely(hcd->state == HC_STATE_HALT ||
1697 !test_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags))) {
1698 rc = IRQ_NONE;
1699 } else if (hcd->driver->irq(hcd) == IRQ_NONE) {
1700 rc = IRQ_NONE;
1701 } else {
1702 set_bit(HCD_FLAG_SAW_IRQ, &hcd->flags);
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001703
Stefan Beckerde854222008-07-01 19:19:22 +03001704 if (unlikely(hcd->state == HC_STATE_HALT))
1705 usb_hc_died(hcd);
1706 rc = IRQ_HANDLED;
1707 }
1708
1709 local_irq_restore(flags);
1710 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711}
1712
1713/*-------------------------------------------------------------------------*/
1714
1715/**
1716 * usb_hc_died - report abnormal shutdown of a host controller (bus glue)
1717 * @hcd: pointer to the HCD representing the controller
1718 *
1719 * This is called by bus glue to report a USB host controller that died
1720 * while operations may still have been pending. It's called automatically
1721 * by the PCI glue, so only glue for non-PCI busses should need to call it.
1722 */
1723void usb_hc_died (struct usb_hcd *hcd)
1724{
1725 unsigned long flags;
1726
1727 dev_err (hcd->self.controller, "HC died; cleaning up\n");
1728
1729 spin_lock_irqsave (&hcd_root_hub_lock, flags);
1730 if (hcd->rh_registered) {
Alan Sternd5926ae72005-04-21 15:56:37 -04001731 hcd->poll_rh = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
1733 /* make khubd clean up old urbs and devices */
1734 usb_set_device_state (hcd->self.root_hub,
1735 USB_STATE_NOTATTACHED);
1736 usb_kick_khubd (hcd->self.root_hub);
1737 }
1738 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
1739}
1740EXPORT_SYMBOL_GPL (usb_hc_died);
1741
1742/*-------------------------------------------------------------------------*/
1743
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744/**
1745 * usb_create_hcd - create and initialize an HCD structure
1746 * @driver: HC driver that will use this hcd
1747 * @dev: device for this HC, stored in hcd->self.controller
1748 * @bus_name: value to store in hcd->self.bus_name
1749 * Context: !in_interrupt()
1750 *
1751 * Allocate a struct usb_hcd, with extra space at the end for the
1752 * HC driver's private data. Initialize the generic members of the
1753 * hcd structure.
1754 *
1755 * If memory is unavailable, returns NULL.
1756 */
1757struct usb_hcd *usb_create_hcd (const struct hc_driver *driver,
1758 struct device *dev, char *bus_name)
1759{
1760 struct usb_hcd *hcd;
1761
Pekka Enberg7b842b62005-09-06 15:18:34 -07001762 hcd = kzalloc(sizeof(*hcd) + driver->hcd_priv_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 if (!hcd) {
1764 dev_dbg (dev, "hcd alloc failed\n");
1765 return NULL;
1766 }
1767 dev_set_drvdata(dev, hcd);
Alan Stern17200582006-08-30 11:32:52 -04001768 kref_init(&hcd->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
1770 usb_bus_init(&hcd->self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 hcd->self.controller = dev;
1772 hcd->self.bus_name = bus_name;
Alan Sterndd990f12006-08-30 11:29:56 -04001773 hcd->self.uses_dma = (dev->dma_mask != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
1775 init_timer(&hcd->rh_timer);
Alan Sternd5926ae72005-04-21 15:56:37 -04001776 hcd->rh_timer.function = rh_timer_func;
1777 hcd->rh_timer.data = (unsigned long) hcd;
Alan Stern6b157c92007-03-13 16:37:30 -04001778#ifdef CONFIG_PM
1779 INIT_WORK(&hcd->wakeup_work, hcd_resume_work);
1780#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
1782 hcd->driver = driver;
1783 hcd->product_desc = (driver->product_desc) ? driver->product_desc :
1784 "USB Host Controller";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 return hcd;
1786}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001787EXPORT_SYMBOL_GPL(usb_create_hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Alan Stern17200582006-08-30 11:32:52 -04001789static void hcd_release (struct kref *kref)
1790{
1791 struct usb_hcd *hcd = container_of (kref, struct usb_hcd, kref);
1792
1793 kfree(hcd);
1794}
1795
1796struct usb_hcd *usb_get_hcd (struct usb_hcd *hcd)
1797{
1798 if (hcd)
1799 kref_get (&hcd->kref);
1800 return hcd;
1801}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001802EXPORT_SYMBOL_GPL(usb_get_hcd);
Alan Stern17200582006-08-30 11:32:52 -04001803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804void usb_put_hcd (struct usb_hcd *hcd)
1805{
Alan Stern17200582006-08-30 11:32:52 -04001806 if (hcd)
1807 kref_put (&hcd->kref, hcd_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001809EXPORT_SYMBOL_GPL(usb_put_hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
1811/**
1812 * usb_add_hcd - finish generic HCD structure initialization and register
1813 * @hcd: the usb_hcd structure to initialize
1814 * @irqnum: Interrupt line to allocate
1815 * @irqflags: Interrupt type flags
1816 *
1817 * Finish the remaining parts of generic HCD initialization: allocate the
1818 * buffers of consistent memory, register the bus, request the IRQ line,
1819 * and call the driver's reset() and start() routines.
1820 */
1821int usb_add_hcd(struct usb_hcd *hcd,
1822 unsigned int irqnum, unsigned long irqflags)
1823{
Alan Stern8ec8d202005-04-25 11:25:17 -04001824 int retval;
1825 struct usb_device *rhdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
1827 dev_info(hcd->self.controller, "%s\n", hcd->product_desc);
1828
Inaky Perez-Gonzalez5234ce12007-07-31 20:33:58 -07001829 hcd->authorized_default = hcd->wireless? 0 : 1;
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11001830 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1831
David Brownellb1e8f0a2006-01-23 15:25:40 -08001832 /* HC is in reset state, but accessible. Now do the one-time init,
1833 * bottom up so that hcds can customize the root hubs before khubd
1834 * starts talking to them. (Note, bus id is assigned early too.)
1835 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 if ((retval = hcd_buffer_create(hcd)) != 0) {
1837 dev_dbg(hcd->self.controller, "pool alloc failed\n");
1838 return retval;
1839 }
1840
1841 if ((retval = usb_register_bus(&hcd->self)) < 0)
Alan Stern8ec8d202005-04-25 11:25:17 -04001842 goto err_register_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
David Brownellb1e8f0a2006-01-23 15:25:40 -08001844 if ((rhdev = usb_alloc_dev(NULL, &hcd->self, 0)) == NULL) {
1845 dev_err(hcd->self.controller, "unable to allocate root hub\n");
1846 retval = -ENOMEM;
1847 goto err_allocate_root_hub;
1848 }
1849 rhdev->speed = (hcd->driver->flags & HCD_USB2) ? USB_SPEED_HIGH :
1850 USB_SPEED_FULL;
1851 hcd->self.root_hub = rhdev;
1852
David Brownelldb4cefa2006-05-01 22:07:13 -07001853 /* wakeup flag init defaults to "everything works" for root hubs,
1854 * but drivers can override it in reset() if needed, along with
1855 * recording the overall controller's system wakeup capability.
1856 */
1857 device_init_wakeup(&rhdev->dev, 1);
1858
David Brownellb1e8f0a2006-01-23 15:25:40 -08001859 /* "reset" is misnamed; its role is now one-time init. the controller
1860 * should already have been reset (and boot firmware kicked off etc).
1861 */
1862 if (hcd->driver->reset && (retval = hcd->driver->reset(hcd)) < 0) {
1863 dev_err(hcd->self.controller, "can't setup\n");
1864 goto err_hcd_driver_setup;
1865 }
1866
David Brownellfb669cc2006-01-24 08:40:27 -08001867 /* NOTE: root hub and controller capabilities may not be the same */
1868 if (device_can_wakeup(hcd->self.controller)
1869 && device_can_wakeup(&hcd->self.root_hub->dev))
David Brownellb1e8f0a2006-01-23 15:25:40 -08001870 dev_dbg(hcd->self.controller, "supports USB remote wakeup\n");
David Brownellb1e8f0a2006-01-23 15:25:40 -08001871
1872 /* enable irqs just before we start the controller */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 if (hcd->driver->irq) {
Stefan Beckerde854222008-07-01 19:19:22 +03001874
1875 /* IRQF_DISABLED doesn't work as advertised when used together
1876 * with IRQF_SHARED. As usb_hcd_irq() will always disable
1877 * interrupts we can remove it here.
1878 */
1879 irqflags &= ~IRQF_DISABLED;
1880
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 snprintf(hcd->irq_descr, sizeof(hcd->irq_descr), "%s:usb%d",
1882 hcd->driver->description, hcd->self.busnum);
1883 if ((retval = request_irq(irqnum, &usb_hcd_irq, irqflags,
1884 hcd->irq_descr, hcd)) != 0) {
1885 dev_err(hcd->self.controller,
David S. Millerc6387a42006-06-20 01:21:29 -07001886 "request interrupt %d failed\n", irqnum);
Alan Stern8ec8d202005-04-25 11:25:17 -04001887 goto err_request_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 }
1889 hcd->irq = irqnum;
David S. Millerc6387a42006-06-20 01:21:29 -07001890 dev_info(hcd->self.controller, "irq %d, %s 0x%08llx\n", irqnum,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 (hcd->driver->flags & HCD_MEMORY) ?
1892 "io mem" : "io base",
1893 (unsigned long long)hcd->rsrc_start);
1894 } else {
1895 hcd->irq = -1;
1896 if (hcd->rsrc_start)
1897 dev_info(hcd->self.controller, "%s 0x%08llx\n",
1898 (hcd->driver->flags & HCD_MEMORY) ?
1899 "io mem" : "io base",
1900 (unsigned long long)hcd->rsrc_start);
1901 }
1902
1903 if ((retval = hcd->driver->start(hcd)) < 0) {
1904 dev_err(hcd->self.controller, "startup error %d\n", retval);
Alan Stern8ec8d202005-04-25 11:25:17 -04001905 goto err_hcd_driver_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 }
1907
David Brownellb1e8f0a2006-01-23 15:25:40 -08001908 /* starting here, usbcore will pay attention to this root hub */
Alan Stern55c52712005-11-23 12:03:12 -05001909 rhdev->bus_mA = min(500u, hcd->power_budget);
David Brownellb1e8f0a2006-01-23 15:25:40 -08001910 if ((retval = register_root_hub(hcd)) != 0)
Alan Stern8ec8d202005-04-25 11:25:17 -04001911 goto err_register_root_hub;
1912
Inaky Perez-Gonzalez5234ce12007-07-31 20:33:58 -07001913 retval = sysfs_create_group(&rhdev->dev.kobj, &usb_bus_attr_group);
1914 if (retval < 0) {
1915 printk(KERN_ERR "Cannot register USB bus sysfs attributes: %d\n",
1916 retval);
1917 goto error_create_attr_group;
1918 }
Alan Sternd5926ae72005-04-21 15:56:37 -04001919 if (hcd->uses_new_polling && hcd->poll_rh)
1920 usb_hcd_poll_rh_status(hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 return retval;
1922
Inaky Perez-Gonzalez5234ce12007-07-31 20:33:58 -07001923error_create_attr_group:
1924 mutex_lock(&usb_bus_list_lock);
1925 usb_disconnect(&hcd->self.root_hub);
1926 mutex_unlock(&usb_bus_list_lock);
David Brownellb1e8f0a2006-01-23 15:25:40 -08001927err_register_root_hub:
Alan Stern8ec8d202005-04-25 11:25:17 -04001928 hcd->driver->stop(hcd);
David Brownellb1e8f0a2006-01-23 15:25:40 -08001929err_hcd_driver_start:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 if (hcd->irq >= 0)
1931 free_irq(irqnum, hcd);
David Brownellb1e8f0a2006-01-23 15:25:40 -08001932err_request_irq:
1933err_hcd_driver_setup:
1934 hcd->self.root_hub = NULL;
1935 usb_put_dev(rhdev);
1936err_allocate_root_hub:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 usb_deregister_bus(&hcd->self);
David Brownellb1e8f0a2006-01-23 15:25:40 -08001938err_register_bus:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 hcd_buffer_destroy(hcd);
1940 return retval;
1941}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001942EXPORT_SYMBOL_GPL(usb_add_hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
1944/**
1945 * usb_remove_hcd - shutdown processing for generic HCDs
1946 * @hcd: the usb_hcd structure to remove
1947 * Context: !in_interrupt()
1948 *
1949 * Disconnects the root hub, then reverses the effects of usb_add_hcd(),
1950 * invoking the HCD's stop() method.
1951 */
1952void usb_remove_hcd(struct usb_hcd *hcd)
1953{
1954 dev_info(hcd->self.controller, "remove, state %x\n", hcd->state);
1955
1956 if (HC_IS_RUNNING (hcd->state))
1957 hcd->state = HC_STATE_QUIESCING;
1958
1959 dev_dbg(hcd->self.controller, "roothub graceful disconnect\n");
1960 spin_lock_irq (&hcd_root_hub_lock);
1961 hcd->rh_registered = 0;
1962 spin_unlock_irq (&hcd_root_hub_lock);
Alan Stern9ad3d6c2005-11-17 17:10:32 -05001963
Alan Stern6b157c92007-03-13 16:37:30 -04001964#ifdef CONFIG_PM
Alan Sternd5d4db72007-05-29 16:34:52 -04001965 cancel_work_sync(&hcd->wakeup_work);
Alan Stern6b157c92007-03-13 16:37:30 -04001966#endif
1967
Inaky Perez-Gonzalez5234ce12007-07-31 20:33:58 -07001968 sysfs_remove_group(&hcd->self.root_hub->dev.kobj, &usb_bus_attr_group);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01001969 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 usb_disconnect(&hcd->self.root_hub);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01001971 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 hcd->driver->stop(hcd);
1974 hcd->state = HC_STATE_HALT;
1975
Alan Stern1b42ae62007-03-13 11:10:52 -04001976 hcd->poll_rh = 0;
1977 del_timer_sync(&hcd->rh_timer);
1978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 if (hcd->irq >= 0)
1980 free_irq(hcd->irq, hcd);
1981 usb_deregister_bus(&hcd->self);
1982 hcd_buffer_destroy(hcd);
1983}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001984EXPORT_SYMBOL_GPL(usb_remove_hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
Aleksey Gorelov64a21d02006-08-08 17:24:08 -07001986void
1987usb_hcd_platform_shutdown(struct platform_device* dev)
1988{
1989 struct usb_hcd *hcd = platform_get_drvdata(dev);
1990
1991 if (hcd->driver->shutdown)
1992 hcd->driver->shutdown(hcd);
1993}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001994EXPORT_SYMBOL_GPL(usb_hcd_platform_shutdown);
Aleksey Gorelov64a21d02006-08-08 17:24:08 -07001995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996/*-------------------------------------------------------------------------*/
1997
Adrian Bunk4749f322005-06-23 11:36:56 +02001998#if defined(CONFIG_USB_MON)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
2000struct usb_mon_operations *mon_ops;
2001
2002/*
2003 * The registration is unlocked.
2004 * We do it this way because we do not want to lock in hot paths.
2005 *
2006 * Notice that the code is minimally error-proof. Because usbmon needs
2007 * symbols from usbcore, usbcore gets referenced and cannot be unloaded first.
2008 */
2009
2010int usb_mon_register (struct usb_mon_operations *ops)
2011{
2012
2013 if (mon_ops)
2014 return -EBUSY;
2015
2016 mon_ops = ops;
2017 mb();
2018 return 0;
2019}
2020EXPORT_SYMBOL_GPL (usb_mon_register);
2021
2022void usb_mon_deregister (void)
2023{
2024
2025 if (mon_ops == NULL) {
2026 printk(KERN_ERR "USB: monitor was not registered\n");
2027 return;
2028 }
2029 mon_ops = NULL;
2030 mb();
2031}
2032EXPORT_SYMBOL_GPL (usb_mon_deregister);
2033
2034#endif /* CONFIG_USB_MON */