blob: 8e64adf8e4d56de0409909dd143e9de52f4fefb0 [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
Sebastian Andrzej Siewiorb53d6572012-09-07 14:31:45 +020025#include <linux/bcd.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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/device.h>
35#include <linux/dma-mapping.h>
Arjan van de Ven4186ecf2006-01-11 15:55:29 +010036#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/irq.h>
38#include <asm/byteorder.h>
Magnus Dammb3476672008-01-23 15:58:35 +090039#include <asm/unaligned.h>
Aleksey Gorelov64a21d02006-08-08 17:24:08 -070040#include <linux/platform_device.h>
Alan Stern6b157c92007-03-13 16:37:30 -040041#include <linux/workqueue.h>
Alan Sternda0aa712013-01-25 17:09:42 -050042#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include <linux/usb.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020045#include <linux/usb/hcd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#include "usb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/*-------------------------------------------------------------------------*/
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
Alan Stern9beeee62008-10-02 11:48:13 -040085/* Keep track of which host controller drivers are loaded */
86unsigned long usb_hcds_loaded;
87EXPORT_SYMBOL_GPL(usb_hcds_loaded);
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/* host controllers we manage */
90LIST_HEAD (usb_bus_list);
91EXPORT_SYMBOL_GPL (usb_bus_list);
92
93/* used when allocating bus numbers */
94#define USB_MAXBUS 64
95struct usb_busmap {
96 unsigned long busmap [USB_MAXBUS / (8*sizeof (unsigned long))];
97};
98static struct usb_busmap busmap;
99
100/* used when updating list of hcds */
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100101DEFINE_MUTEX(usb_bus_list_lock); /* exported only for usbfs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102EXPORT_SYMBOL_GPL (usb_bus_list_lock);
103
104/* used for controlling access to virtual root hubs */
105static DEFINE_SPINLOCK(hcd_root_hub_lock);
106
Alan Stern809a58b2007-07-18 12:14:24 -0400107/* used when updating an endpoint's URB list */
108static DEFINE_SPINLOCK(hcd_urb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Alan Sterncde217a2008-10-21 15:28:46 -0400110/* used to protect against unlinking URBs after the device is gone */
111static DEFINE_SPINLOCK(hcd_urb_unlink_lock);
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113/* wait queue for synchronous unlinks */
114DECLARE_WAIT_QUEUE_HEAD(usb_kill_urb_queue);
115
Alan Stern809a58b2007-07-18 12:14:24 -0400116static inline int is_root_hub(struct usb_device *udev)
117{
118 return (udev->parent == NULL);
119}
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121/*-------------------------------------------------------------------------*/
122
123/*
124 * Sharable chunks of root hub code.
125 */
126
127/*-------------------------------------------------------------------------*/
Sebastian Andrzej Siewiorb53d6572012-09-07 14:31:45 +0200128#define KERNEL_REL bin2bcd(((LINUX_VERSION_CODE >> 16) & 0x0ff))
129#define KERNEL_VER bin2bcd(((LINUX_VERSION_CODE >> 8) & 0x0ff))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Sarah Sharpd2e9b4d2009-04-27 19:55:01 -0700131/* usb 3.0 root hub device descriptor */
132static const u8 usb3_rh_dev_descriptor[18] = {
133 0x12, /* __u8 bLength; */
134 0x01, /* __u8 bDescriptorType; Device */
135 0x00, 0x03, /* __le16 bcdUSB; v3.0 */
136
137 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
138 0x00, /* __u8 bDeviceSubClass; */
139 0x03, /* __u8 bDeviceProtocol; USB 3.0 hub */
140 0x09, /* __u8 bMaxPacketSize0; 2^9 = 512 Bytes */
141
Paul Bollebfb8bfa2012-05-05 13:16:51 +0200142 0x6b, 0x1d, /* __le16 idVendor; Linux Foundation 0x1d6b */
Alan Sterncd780692010-02-25 13:19:37 -0500143 0x03, 0x00, /* __le16 idProduct; device 0x0003 */
Sarah Sharpd2e9b4d2009-04-27 19:55:01 -0700144 KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
145
146 0x03, /* __u8 iManufacturer; */
147 0x02, /* __u8 iProduct; */
148 0x01, /* __u8 iSerialNumber; */
149 0x01 /* __u8 bNumConfigurations; */
150};
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/* usb 2.0 root hub device descriptor */
153static const u8 usb2_rh_dev_descriptor [18] = {
154 0x12, /* __u8 bLength; */
155 0x01, /* __u8 bDescriptorType; Device */
156 0x00, 0x02, /* __le16 bcdUSB; v2.0 */
157
158 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
159 0x00, /* __u8 bDeviceSubClass; */
Alan Stern7329e212008-04-03 18:02:56 -0400160 0x00, /* __u8 bDeviceProtocol; [ usb 2.0 no TT ] */
Alan Stern16f16d12005-10-24 15:41:19 -0400161 0x40, /* __u8 bMaxPacketSize0; 64 Bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Paul Bollebfb8bfa2012-05-05 13:16:51 +0200163 0x6b, 0x1d, /* __le16 idVendor; Linux Foundation 0x1d6b */
Greg Kroah-Hartman667d6912008-01-28 09:50:12 -0800164 0x02, 0x00, /* __le16 idProduct; device 0x0002 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
166
167 0x03, /* __u8 iManufacturer; */
168 0x02, /* __u8 iProduct; */
169 0x01, /* __u8 iSerialNumber; */
170 0x01 /* __u8 bNumConfigurations; */
171};
172
173/* no usb 2.0 root hub "device qualifier" descriptor: one speed only */
174
175/* usb 1.1 root hub device descriptor */
176static const u8 usb11_rh_dev_descriptor [18] = {
177 0x12, /* __u8 bLength; */
178 0x01, /* __u8 bDescriptorType; Device */
179 0x10, 0x01, /* __le16 bcdUSB; v1.1 */
180
181 0x09, /* __u8 bDeviceClass; HUB_CLASSCODE */
182 0x00, /* __u8 bDeviceSubClass; */
183 0x00, /* __u8 bDeviceProtocol; [ low/full speeds only ] */
Alan Stern16f16d12005-10-24 15:41:19 -0400184 0x40, /* __u8 bMaxPacketSize0; 64 Bytes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
Paul Bollebfb8bfa2012-05-05 13:16:51 +0200186 0x6b, 0x1d, /* __le16 idVendor; Linux Foundation 0x1d6b */
Greg Kroah-Hartman667d6912008-01-28 09:50:12 -0800187 0x01, 0x00, /* __le16 idProduct; device 0x0001 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 KERNEL_VER, KERNEL_REL, /* __le16 bcdDevice */
189
190 0x03, /* __u8 iManufacturer; */
191 0x02, /* __u8 iProduct; */
192 0x01, /* __u8 iSerialNumber; */
193 0x01 /* __u8 bNumConfigurations; */
194};
195
196
197/*-------------------------------------------------------------------------*/
198
199/* Configuration descriptors for our root hubs */
200
201static const u8 fs_rh_config_descriptor [] = {
202
203 /* one configuration */
204 0x09, /* __u8 bLength; */
205 0x02, /* __u8 bDescriptorType; Configuration */
206 0x19, 0x00, /* __le16 wTotalLength; */
207 0x01, /* __u8 bNumInterfaces; (1) */
208 0x01, /* __u8 bConfigurationValue; */
209 0x00, /* __u8 iConfiguration; */
210 0xc0, /* __u8 bmAttributes;
211 Bit 7: must be set,
212 6: Self-powered,
213 5: Remote wakeup,
214 4..0: resvd */
215 0x00, /* __u8 MaxPower; */
216
217 /* USB 1.1:
218 * USB 2.0, single TT organization (mandatory):
219 * one interface, protocol 0
220 *
221 * USB 2.0, multiple TT organization (optional):
222 * two interfaces, protocols 1 (like single TT)
223 * and 2 (multiple TT mode) ... config is
224 * sometimes settable
225 * NOT IMPLEMENTED
226 */
227
228 /* one interface */
229 0x09, /* __u8 if_bLength; */
230 0x04, /* __u8 if_bDescriptorType; Interface */
231 0x00, /* __u8 if_bInterfaceNumber; */
232 0x00, /* __u8 if_bAlternateSetting; */
233 0x01, /* __u8 if_bNumEndpoints; */
234 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
235 0x00, /* __u8 if_bInterfaceSubClass; */
236 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */
237 0x00, /* __u8 if_iInterface; */
238
239 /* one endpoint (status change endpoint) */
240 0x07, /* __u8 ep_bLength; */
241 0x05, /* __u8 ep_bDescriptorType; Endpoint */
242 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
243 0x03, /* __u8 ep_bmAttributes; Interrupt */
244 0x02, 0x00, /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */
245 0xff /* __u8 ep_bInterval; (255ms -- usb 2.0 spec) */
246};
247
248static const u8 hs_rh_config_descriptor [] = {
249
250 /* one configuration */
251 0x09, /* __u8 bLength; */
252 0x02, /* __u8 bDescriptorType; Configuration */
253 0x19, 0x00, /* __le16 wTotalLength; */
254 0x01, /* __u8 bNumInterfaces; (1) */
255 0x01, /* __u8 bConfigurationValue; */
256 0x00, /* __u8 iConfiguration; */
257 0xc0, /* __u8 bmAttributes;
258 Bit 7: must be set,
259 6: Self-powered,
260 5: Remote wakeup,
261 4..0: resvd */
262 0x00, /* __u8 MaxPower; */
263
264 /* USB 1.1:
265 * USB 2.0, single TT organization (mandatory):
266 * one interface, protocol 0
267 *
268 * USB 2.0, multiple TT organization (optional):
269 * two interfaces, protocols 1 (like single TT)
270 * and 2 (multiple TT mode) ... config is
271 * sometimes settable
272 * NOT IMPLEMENTED
273 */
274
275 /* one interface */
276 0x09, /* __u8 if_bLength; */
277 0x04, /* __u8 if_bDescriptorType; Interface */
278 0x00, /* __u8 if_bInterfaceNumber; */
279 0x00, /* __u8 if_bAlternateSetting; */
280 0x01, /* __u8 if_bNumEndpoints; */
281 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
282 0x00, /* __u8 if_bInterfaceSubClass; */
283 0x00, /* __u8 if_bInterfaceProtocol; [usb1.1 or single tt] */
284 0x00, /* __u8 if_iInterface; */
285
286 /* one endpoint (status change endpoint) */
287 0x07, /* __u8 ep_bLength; */
288 0x05, /* __u8 ep_bDescriptorType; Endpoint */
289 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
290 0x03, /* __u8 ep_bmAttributes; Interrupt */
inaky@linux.intel.com88fafff2006-10-11 20:05:59 -0700291 /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8)
292 * see hub.c:hub_configure() for details. */
293 (USB_MAXCHILDREN + 1 + 7) / 8, 0x00,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 0x0c /* __u8 ep_bInterval; (256ms -- usb 2.0 spec) */
295};
296
Sarah Sharpd2e9b4d2009-04-27 19:55:01 -0700297static const u8 ss_rh_config_descriptor[] = {
298 /* one configuration */
299 0x09, /* __u8 bLength; */
300 0x02, /* __u8 bDescriptorType; Configuration */
Sarah Sharp22c6a352010-09-13 12:01:02 -0700301 0x1f, 0x00, /* __le16 wTotalLength; */
Sarah Sharpd2e9b4d2009-04-27 19:55:01 -0700302 0x01, /* __u8 bNumInterfaces; (1) */
303 0x01, /* __u8 bConfigurationValue; */
304 0x00, /* __u8 iConfiguration; */
305 0xc0, /* __u8 bmAttributes;
306 Bit 7: must be set,
307 6: Self-powered,
308 5: Remote wakeup,
309 4..0: resvd */
310 0x00, /* __u8 MaxPower; */
311
312 /* one interface */
313 0x09, /* __u8 if_bLength; */
314 0x04, /* __u8 if_bDescriptorType; Interface */
315 0x00, /* __u8 if_bInterfaceNumber; */
316 0x00, /* __u8 if_bAlternateSetting; */
317 0x01, /* __u8 if_bNumEndpoints; */
318 0x09, /* __u8 if_bInterfaceClass; HUB_CLASSCODE */
319 0x00, /* __u8 if_bInterfaceSubClass; */
320 0x00, /* __u8 if_bInterfaceProtocol; */
321 0x00, /* __u8 if_iInterface; */
322
323 /* one endpoint (status change endpoint) */
324 0x07, /* __u8 ep_bLength; */
325 0x05, /* __u8 ep_bDescriptorType; Endpoint */
326 0x81, /* __u8 ep_bEndpointAddress; IN Endpoint 1 */
327 0x03, /* __u8 ep_bmAttributes; Interrupt */
328 /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8)
329 * see hub.c:hub_configure() for details. */
330 (USB_MAXCHILDREN + 1 + 7) / 8, 0x00,
Sarah Sharp22c6a352010-09-13 12:01:02 -0700331 0x0c, /* __u8 ep_bInterval; (256ms -- usb 2.0 spec) */
332
333 /* one SuperSpeed endpoint companion descriptor */
334 0x06, /* __u8 ss_bLength */
335 0x30, /* __u8 ss_bDescriptorType; SuperSpeed EP Companion */
336 0x00, /* __u8 ss_bMaxBurst; allows 1 TX between ACKs */
337 0x00, /* __u8 ss_bmAttributes; 1 packet per service interval */
338 0x02, 0x00 /* __le16 ss_wBytesPerInterval; 15 bits for max 15 ports */
Sarah Sharpd2e9b4d2009-04-27 19:55:01 -0700339};
340
Carl-Daniel Hailfingerc4fc2342011-05-31 21:31:08 +0200341/* authorized_default behaviour:
342 * -1 is authorized for all devices except wireless (old behaviour)
343 * 0 is unauthorized for all devices
344 * 1 is authorized for all devices
345 */
346static int authorized_default = -1;
347module_param(authorized_default, int, S_IRUGO|S_IWUSR);
348MODULE_PARM_DESC(authorized_default,
349 "Default USB device authorization: 0 is not authorized, 1 is "
350 "authorized, -1 is authorized except for wireless USB (default, "
351 "old behaviour");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352/*-------------------------------------------------------------------------*/
353
George Spelvin392ca682009-08-24 22:06:41 -0400354/**
355 * ascii2desc() - Helper routine for producing UTF-16LE string descriptors
356 * @s: Null-terminated ASCII (actually ISO-8859-1) string
357 * @buf: Buffer for USB string descriptor (header + UTF-16LE)
358 * @len: Length (in bytes; may be odd) of descriptor buffer.
359 *
360 * The return value is the number of bytes filled in: 2 + 2*strlen(s) or
361 * buflen, whichever is less.
362 *
363 * USB String descriptors can contain at most 126 characters; input
364 * strings longer than that are truncated.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 */
George Spelvin392ca682009-08-24 22:06:41 -0400366static unsigned
367ascii2desc(char const *s, u8 *buf, unsigned len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
George Spelvin392ca682009-08-24 22:06:41 -0400369 unsigned n, t = 2 + 2*strlen(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
George Spelvin392ca682009-08-24 22:06:41 -0400371 if (t > 254)
372 t = 254; /* Longest possible UTF string descriptor */
373 if (len > t)
374 len = t;
375
376 t += USB_DT_STRING << 8; /* Now t is first 16 bits to store */
377
378 n = len;
379 while (n--) {
380 *buf++ = t;
381 if (!n--)
382 break;
383 *buf++ = t >> 8;
384 t = (unsigned char)*s++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 }
George Spelvin392ca682009-08-24 22:06:41 -0400386 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
George Spelvin392ca682009-08-24 22:06:41 -0400389/**
390 * rh_string() - provides string descriptors for root hub
391 * @id: the string ID number (0: langids, 1: serial #, 2: product, 3: vendor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 * @hcd: the host controller for this root hub
George Spelvin392ca682009-08-24 22:06:41 -0400393 * @data: buffer for output packet
394 * @len: length of the provided buffer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 *
396 * Produces either a manufacturer, product or serial number string for the
397 * virtual root hub device.
George Spelvin392ca682009-08-24 22:06:41 -0400398 * Returns the number of bytes filled in: the length of the descriptor or
399 * of the provided buffer, whichever is less.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 */
George Spelvin392ca682009-08-24 22:06:41 -0400401static unsigned
402rh_string(int id, struct usb_hcd const *hcd, u8 *data, unsigned len)
Roel Kluin71d27182009-03-13 12:19:18 +0100403{
George Spelvin392ca682009-08-24 22:06:41 -0400404 char buf[100];
405 char const *s;
406 static char const langids[4] = {4, USB_DT_STRING, 0x09, 0x04};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 // language ids
George Spelvin392ca682009-08-24 22:06:41 -0400409 switch (id) {
410 case 0:
411 /* Array of LANGID codes (0x0409 is MSFT-speak for "en-us") */
412 /* See http://www.usb.org/developers/docs/USB_LANGIDs.pdf */
413 if (len > 4)
414 len = 4;
415 memcpy(data, langids, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return len;
George Spelvin392ca682009-08-24 22:06:41 -0400417 case 1:
418 /* Serial number */
419 s = hcd->self.bus_name;
420 break;
421 case 2:
422 /* Product name */
423 s = hcd->product_desc;
424 break;
425 case 3:
426 /* Manufacturer */
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700427 snprintf (buf, sizeof buf, "%s %s %s", init_utsname()->sysname,
428 init_utsname()->release, hcd->driver->description);
George Spelvin392ca682009-08-24 22:06:41 -0400429 s = buf;
430 break;
431 default:
432 /* Can't happen; caller guarantees it */
433 return 0;
Roel Kluin71d27182009-03-13 12:19:18 +0100434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
George Spelvin392ca682009-08-24 22:06:41 -0400436 return ascii2desc(s, data, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
439
440/* Root hub control transfers execute synchronously */
441static int rh_call_control (struct usb_hcd *hcd, struct urb *urb)
442{
443 struct usb_ctrlrequest *cmd;
444 u16 typeReq, wValue, wIndex, wLength;
445 u8 *ubuf = urb->transfer_buffer;
Sarah Sharp48e82362011-10-06 11:54:23 -0700446 /*
447 * tbuf should be as big as the BOS descriptor and
448 * the USB hub descriptor.
449 */
450 u8 tbuf[USB_DT_BOS_SIZE + USB_DT_USB_SS_CAP_SIZE]
Mikael Pettersson54bee6e2006-09-23 17:05:31 -0700451 __attribute__((aligned(4)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 const u8 *bufp = tbuf;
Roel Kluin71d27182009-03-13 12:19:18 +0100453 unsigned len = 0;
Alan Sterne9df41c2007-08-08 11:48:02 -0400454 int status;
Alan Stern7329e212008-04-03 18:02:56 -0400455 u8 patch_wakeup = 0;
456 u8 patch_protocol = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Alan Stern9439eb92007-08-02 15:05:45 -0400458 might_sleep();
459
Alan Sterne9df41c2007-08-08 11:48:02 -0400460 spin_lock_irq(&hcd_root_hub_lock);
461 status = usb_hcd_link_urb_to_ep(hcd, urb);
462 spin_unlock_irq(&hcd_root_hub_lock);
463 if (status)
464 return status;
Alan Sternb0d9efb2007-08-21 15:39:21 -0400465 urb->hcpriv = hcd; /* Indicate it's queued */
Alan Sterne9df41c2007-08-08 11:48:02 -0400466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 cmd = (struct usb_ctrlrequest *) urb->setup_packet;
468 typeReq = (cmd->bRequestType << 8) | cmd->bRequest;
469 wValue = le16_to_cpu (cmd->wValue);
470 wIndex = le16_to_cpu (cmd->wIndex);
471 wLength = le16_to_cpu (cmd->wLength);
472
473 if (wLength > urb->transfer_buffer_length)
474 goto error;
475
476 urb->actual_length = 0;
477 switch (typeReq) {
478
479 /* DEVICE REQUESTS */
480
David Brownellfb669cc2006-01-24 08:40:27 -0800481 /* The root hub's remote wakeup enable bit is implemented using
482 * driver model wakeup flags. If this system supports wakeup
483 * through USB, userspace may change the default "allow wakeup"
484 * policy through sysfs or these calls.
485 *
486 * Most root hubs support wakeup from downstream devices, for
487 * runtime power management (disabling USB clocks and reducing
488 * VBUS power usage). However, not all of them do so; silicon,
489 * board, and BIOS bugs here are not uncommon, so these can't
490 * be treated quite like external hubs.
491 *
492 * Likewise, not all root hubs will pass wakeup events upstream,
493 * to wake up the whole system. So don't assume root hub and
494 * controller capabilities are identical.
495 */
496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 case DeviceRequest | USB_REQ_GET_STATUS:
David Brownellfb669cc2006-01-24 08:40:27 -0800498 tbuf [0] = (device_may_wakeup(&hcd->self.root_hub->dev)
499 << USB_DEVICE_REMOTE_WAKEUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 | (1 << USB_DEVICE_SELF_POWERED);
501 tbuf [1] = 0;
502 len = 2;
503 break;
504 case DeviceOutRequest | USB_REQ_CLEAR_FEATURE:
505 if (wValue == USB_DEVICE_REMOTE_WAKEUP)
David Brownellfb669cc2006-01-24 08:40:27 -0800506 device_set_wakeup_enable(&hcd->self.root_hub->dev, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 else
508 goto error;
509 break;
510 case DeviceOutRequest | USB_REQ_SET_FEATURE:
David Brownellfb669cc2006-01-24 08:40:27 -0800511 if (device_can_wakeup(&hcd->self.root_hub->dev)
512 && wValue == USB_DEVICE_REMOTE_WAKEUP)
513 device_set_wakeup_enable(&hcd->self.root_hub->dev, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 else
515 goto error;
516 break;
517 case DeviceRequest | USB_REQ_GET_CONFIGURATION:
518 tbuf [0] = 1;
519 len = 1;
520 /* FALLTHROUGH */
521 case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
522 break;
523 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
524 switch (wValue & 0xff00) {
525 case USB_DT_DEVICE << 8:
Sarah Sharp83de4b22010-12-02 14:45:18 -0800526 switch (hcd->speed) {
Viral Mehta7dd19e62009-05-05 15:54:23 +0530527 case HCD_USB3:
Sarah Sharpd2e9b4d2009-04-27 19:55:01 -0700528 bufp = usb3_rh_dev_descriptor;
Viral Mehta7dd19e62009-05-05 15:54:23 +0530529 break;
530 case HCD_USB2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 bufp = usb2_rh_dev_descriptor;
Viral Mehta7dd19e62009-05-05 15:54:23 +0530532 break;
533 case HCD_USB11:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 bufp = usb11_rh_dev_descriptor;
Viral Mehta7dd19e62009-05-05 15:54:23 +0530535 break;
536 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 goto error;
Viral Mehta7dd19e62009-05-05 15:54:23 +0530538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 len = 18;
Alan Stern7329e212008-04-03 18:02:56 -0400540 if (hcd->has_tt)
541 patch_protocol = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 break;
543 case USB_DT_CONFIG << 8:
Sarah Sharp83de4b22010-12-02 14:45:18 -0800544 switch (hcd->speed) {
Viral Mehta7dd19e62009-05-05 15:54:23 +0530545 case HCD_USB3:
Sarah Sharpd2e9b4d2009-04-27 19:55:01 -0700546 bufp = ss_rh_config_descriptor;
547 len = sizeof ss_rh_config_descriptor;
Viral Mehta7dd19e62009-05-05 15:54:23 +0530548 break;
549 case HCD_USB2:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 bufp = hs_rh_config_descriptor;
551 len = sizeof hs_rh_config_descriptor;
Viral Mehta7dd19e62009-05-05 15:54:23 +0530552 break;
553 case HCD_USB11:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 bufp = fs_rh_config_descriptor;
555 len = sizeof fs_rh_config_descriptor;
Viral Mehta7dd19e62009-05-05 15:54:23 +0530556 break;
557 default:
558 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
David Brownellfb669cc2006-01-24 08:40:27 -0800560 if (device_can_wakeup(&hcd->self.root_hub->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 patch_wakeup = 1;
562 break;
563 case USB_DT_STRING << 8:
Roel Kluin71d27182009-03-13 12:19:18 +0100564 if ((wValue & 0xff) < 4)
565 urb->actual_length = rh_string(wValue & 0xff,
566 hcd, ubuf, wLength);
567 else /* unsupported IDs --> "protocol stall" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 break;
Sarah Sharp48e82362011-10-06 11:54:23 -0700570 case USB_DT_BOS << 8:
571 goto nongeneric;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 default:
573 goto error;
574 }
575 break;
576 case DeviceRequest | USB_REQ_GET_INTERFACE:
577 tbuf [0] = 0;
578 len = 1;
579 /* FALLTHROUGH */
580 case DeviceOutRequest | USB_REQ_SET_INTERFACE:
581 break;
582 case DeviceOutRequest | USB_REQ_SET_ADDRESS:
583 // wValue == urb->dev->devaddr
584 dev_dbg (hcd->self.controller, "root hub device address %d\n",
585 wValue);
586 break;
587
588 /* INTERFACE REQUESTS (no defined feature/status flags) */
589
590 /* ENDPOINT REQUESTS */
591
592 case EndpointRequest | USB_REQ_GET_STATUS:
593 // ENDPOINT_HALT flag
594 tbuf [0] = 0;
595 tbuf [1] = 0;
596 len = 2;
597 /* FALLTHROUGH */
598 case EndpointOutRequest | USB_REQ_CLEAR_FEATURE:
599 case EndpointOutRequest | USB_REQ_SET_FEATURE:
600 dev_dbg (hcd->self.controller, "no endpoint features yet\n");
601 break;
602
603 /* CLASS REQUESTS (and errors) */
604
605 default:
Sarah Sharp48e82362011-10-06 11:54:23 -0700606nongeneric:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 /* non-generic request */
David Brownellb13296c2005-09-27 10:38:54 -0700608 switch (typeReq) {
609 case GetHubStatus:
610 case GetPortStatus:
611 len = 4;
612 break;
613 case GetHubDescriptor:
614 len = sizeof (struct usb_hub_descriptor);
615 break;
Sarah Sharp48e82362011-10-06 11:54:23 -0700616 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
617 /* len is returned by hub_control */
618 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 }
David Brownellb13296c2005-09-27 10:38:54 -0700620 status = hcd->driver->hub_control (hcd,
621 typeReq, wValue, wIndex,
622 tbuf, wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 break;
624error:
625 /* "protocol stall" on error */
626 status = -EPIPE;
627 }
628
Sarah Sharp48e82362011-10-06 11:54:23 -0700629 if (status < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 len = 0;
631 if (status != -EPIPE) {
632 dev_dbg (hcd->self.controller,
633 "CTRL: TypeReq=0x%x val=0x%x "
634 "idx=0x%x len=%d ==> %d\n",
635 typeReq, wValue, wIndex,
David Brownellb13296c2005-09-27 10:38:54 -0700636 wLength, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
Sarah Sharp48e82362011-10-06 11:54:23 -0700638 } else if (status > 0) {
639 /* hub_control may return the length of data copied. */
640 len = status;
641 status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
643 if (len) {
644 if (urb->transfer_buffer_length < len)
645 len = urb->transfer_buffer_length;
646 urb->actual_length = len;
647 // always USB_DIR_IN, toward host
648 memcpy (ubuf, bufp, len);
649
650 /* report whether RH hardware supports remote wakeup */
651 if (patch_wakeup &&
652 len > offsetof (struct usb_config_descriptor,
653 bmAttributes))
654 ((struct usb_config_descriptor *)ubuf)->bmAttributes
655 |= USB_CONFIG_ATT_WAKEUP;
Alan Stern7329e212008-04-03 18:02:56 -0400656
657 /* report whether RH hardware has an integrated TT */
658 if (patch_protocol &&
659 len > offsetof(struct usb_device_descriptor,
660 bDeviceProtocol))
661 ((struct usb_device_descriptor *) ubuf)->
Aman Deep7bf01182011-12-08 12:05:22 +0530662 bDeviceProtocol = USB_HUB_PR_HS_SINGLE_TT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664
665 /* any errors get returned through the urb completion */
Alan Stern9439eb92007-08-02 15:05:45 -0400666 spin_lock_irq(&hcd_root_hub_lock);
Alan Sterne9df41c2007-08-08 11:48:02 -0400667 usb_hcd_unlink_urb_from_ep(hcd, urb);
Alan Stern9439eb92007-08-02 15:05:45 -0400668
669 /* This peculiar use of spinlocks echoes what real HC drivers do.
670 * Avoiding calls to local_irq_disable/enable makes the code
671 * RT-friendly.
672 */
673 spin_unlock(&hcd_root_hub_lock);
Alan Stern4a000272007-08-24 15:42:24 -0400674 usb_hcd_giveback_urb(hcd, urb, status);
Alan Stern9439eb92007-08-02 15:05:45 -0400675 spin_lock(&hcd_root_hub_lock);
676
677 spin_unlock_irq(&hcd_root_hub_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return 0;
679}
680
681/*-------------------------------------------------------------------------*/
682
683/*
Alan Sternd5926ae72005-04-21 15:56:37 -0400684 * Root Hub interrupt transfers are polled using a timer if the
685 * driver requests it; otherwise the driver is responsible for
686 * calling usb_hcd_poll_rh_status() when an event occurs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 *
Alan Sternd5926ae72005-04-21 15:56:37 -0400688 * Completions are called in_interrupt(), but they may or may not
689 * be in_irq().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 */
Alan Sternd5926ae72005-04-21 15:56:37 -0400691void usb_hcd_poll_rh_status(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
693 struct urb *urb;
Alan Sternd5926ae72005-04-21 15:56:37 -0400694 int length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 unsigned long flags;
Joe Perchesad361c92009-07-06 13:05:40 -0700696 char buffer[6]; /* Any root hubs with > 31 ports? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Alan Stern6d88e672010-06-09 17:34:17 -0400698 if (unlikely(!hcd->rh_pollable))
Alan Stern1b42ae62007-03-13 11:10:52 -0400699 return;
Alan Sternd5926ae72005-04-21 15:56:37 -0400700 if (!hcd->uses_new_polling && !hcd->status_urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Alan Sternd5926ae72005-04-21 15:56:37 -0400703 length = hcd->driver->hub_status_data(hcd, buffer);
704 if (length > 0) {
705
706 /* try to complete the status urb */
Alan Stern9439eb92007-08-02 15:05:45 -0400707 spin_lock_irqsave(&hcd_root_hub_lock, flags);
Alan Sternd5926ae72005-04-21 15:56:37 -0400708 urb = hcd->status_urb;
709 if (urb) {
Alan Stern541c7d42010-06-22 16:39:10 -0400710 clear_bit(HCD_FLAG_POLL_PENDING, &hcd->flags);
Alan Sterne9df41c2007-08-08 11:48:02 -0400711 hcd->status_urb = NULL;
Alan Sterne9df41c2007-08-08 11:48:02 -0400712 urb->actual_length = length;
713 memcpy(urb->transfer_buffer, buffer, length);
Alan Stern9439eb92007-08-02 15:05:45 -0400714
Alan Sterne9df41c2007-08-08 11:48:02 -0400715 usb_hcd_unlink_urb_from_ep(hcd, urb);
Alan Stern9439eb92007-08-02 15:05:45 -0400716 spin_unlock(&hcd_root_hub_lock);
Alan Stern4a000272007-08-24 15:42:24 -0400717 usb_hcd_giveback_urb(hcd, urb, 0);
Alan Stern9439eb92007-08-02 15:05:45 -0400718 spin_lock(&hcd_root_hub_lock);
Alan Sterne9df41c2007-08-08 11:48:02 -0400719 } else {
Alan Sternd5926ae72005-04-21 15:56:37 -0400720 length = 0;
Alan Stern541c7d42010-06-22 16:39:10 -0400721 set_bit(HCD_FLAG_POLL_PENDING, &hcd->flags);
Alan Sterne9df41c2007-08-08 11:48:02 -0400722 }
Alan Stern9439eb92007-08-02 15:05:45 -0400723 spin_unlock_irqrestore(&hcd_root_hub_lock, flags);
Alan Sternd5926ae72005-04-21 15:56:37 -0400724 }
725
726 /* The USB 2.0 spec says 256 ms. This is close enough and won't
Arjan van de Ven01cd0812007-05-22 12:42:56 -0700727 * exceed that limit if HZ is 100. The math is more clunky than
728 * maybe expected, this is to make sure that all timers for USB devices
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300729 * fire at the same time to give the CPU a break in between */
Alan Stern541c7d42010-06-22 16:39:10 -0400730 if (hcd->uses_new_polling ? HCD_POLL_RH(hcd) :
Alan Sternd5926ae72005-04-21 15:56:37 -0400731 (length == 0 && hcd->status_urb != NULL))
Arjan van de Ven01cd0812007-05-22 12:42:56 -0700732 mod_timer (&hcd->rh_timer, (jiffies/(HZ/4) + 1) * (HZ/4));
Alan Sternd5926ae72005-04-21 15:56:37 -0400733}
734EXPORT_SYMBOL_GPL(usb_hcd_poll_rh_status);
735
736/* timer callback */
737static void rh_timer_func (unsigned long _hcd)
738{
739 usb_hcd_poll_rh_status((struct usb_hcd *) _hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
742/*-------------------------------------------------------------------------*/
743
Alan Sternd5926ae72005-04-21 15:56:37 -0400744static int rh_queue_status (struct usb_hcd *hcd, struct urb *urb)
745{
746 int retval;
747 unsigned long flags;
Roel Kluin71d27182009-03-13 12:19:18 +0100748 unsigned len = 1 + (urb->dev->maxchild / 8);
Alan Sternd5926ae72005-04-21 15:56:37 -0400749
750 spin_lock_irqsave (&hcd_root_hub_lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -0400751 if (hcd->status_urb || urb->transfer_buffer_length < len) {
Alan Sternd5926ae72005-04-21 15:56:37 -0400752 dev_dbg (hcd->self.controller, "not queuing rh status urb\n");
753 retval = -EINVAL;
Alan Sterne9df41c2007-08-08 11:48:02 -0400754 goto done;
Alan Sternd5926ae72005-04-21 15:56:37 -0400755 }
Alan Sterne9df41c2007-08-08 11:48:02 -0400756
757 retval = usb_hcd_link_urb_to_ep(hcd, urb);
758 if (retval)
759 goto done;
760
761 hcd->status_urb = urb;
762 urb->hcpriv = hcd; /* indicate it's queued */
763 if (!hcd->uses_new_polling)
764 mod_timer(&hcd->rh_timer, (jiffies/(HZ/4) + 1) * (HZ/4));
765
766 /* If a status change has already occurred, report it ASAP */
Alan Stern541c7d42010-06-22 16:39:10 -0400767 else if (HCD_POLL_PENDING(hcd))
Alan Sterne9df41c2007-08-08 11:48:02 -0400768 mod_timer(&hcd->rh_timer, jiffies);
769 retval = 0;
770 done:
Alan Sternd5926ae72005-04-21 15:56:37 -0400771 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
772 return retval;
773}
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775static int rh_urb_enqueue (struct usb_hcd *hcd, struct urb *urb)
776{
Alan Stern5e60a162007-07-30 17:07:21 -0400777 if (usb_endpoint_xfer_int(&urb->ep->desc))
Alan Sternd5926ae72005-04-21 15:56:37 -0400778 return rh_queue_status (hcd, urb);
Alan Stern5e60a162007-07-30 17:07:21 -0400779 if (usb_endpoint_xfer_control(&urb->ep->desc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return rh_call_control (hcd, urb);
Alan Sternd5926ae72005-04-21 15:56:37 -0400781 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
784/*-------------------------------------------------------------------------*/
785
Alan Stern455b25f2006-08-11 16:01:45 -0400786/* Unlinks of root-hub control URBs are legal, but they don't do anything
787 * since these URBs always execute synchronously.
Alan Sternd5926ae72005-04-21 15:56:37 -0400788 */
Alan Sterne9df41c2007-08-08 11:48:02 -0400789static int usb_rh_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Alan Stern455b25f2006-08-11 16:01:45 -0400791 unsigned long flags;
Alan Sterne9df41c2007-08-08 11:48:02 -0400792 int rc;
Alan Stern455b25f2006-08-11 16:01:45 -0400793
Alan Stern9439eb92007-08-02 15:05:45 -0400794 spin_lock_irqsave(&hcd_root_hub_lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -0400795 rc = usb_hcd_check_unlink_urb(hcd, urb, status);
796 if (rc)
797 goto done;
798
Alan Stern5e60a162007-07-30 17:07:21 -0400799 if (usb_endpoint_num(&urb->ep->desc) == 0) { /* Control URB */
Alan Stern455b25f2006-08-11 16:01:45 -0400800 ; /* Do nothing */
Alan Sternd5926ae72005-04-21 15:56:37 -0400801
802 } else { /* Status URB */
803 if (!hcd->uses_new_polling)
Alan Stern455b25f2006-08-11 16:01:45 -0400804 del_timer (&hcd->rh_timer);
Alan Sternd5926ae72005-04-21 15:56:37 -0400805 if (urb == hcd->status_urb) {
806 hcd->status_urb = NULL;
Alan Sterne9df41c2007-08-08 11:48:02 -0400807 usb_hcd_unlink_urb_from_ep(hcd, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Alan Stern9439eb92007-08-02 15:05:45 -0400809 spin_unlock(&hcd_root_hub_lock);
Alan Stern4a000272007-08-24 15:42:24 -0400810 usb_hcd_giveback_urb(hcd, urb, status);
Alan Stern9439eb92007-08-02 15:05:45 -0400811 spin_lock(&hcd_root_hub_lock);
812 }
813 }
Alan Sterne9df41c2007-08-08 11:48:02 -0400814 done:
Alan Stern9439eb92007-08-02 15:05:45 -0400815 spin_unlock_irqrestore(&hcd_root_hub_lock, flags);
Alan Sterne9df41c2007-08-08 11:48:02 -0400816 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
Inaky Perez-Gonzalez5234ce12007-07-31 20:33:58 -0700819
820
821/*
822 * Show & store the current value of authorized_default
823 */
824static ssize_t usb_host_authorized_default_show(struct device *dev,
825 struct device_attribute *attr,
826 char *buf)
827{
828 struct usb_device *rh_usb_dev = to_usb_device(dev);
829 struct usb_bus *usb_bus = rh_usb_dev->bus;
830 struct usb_hcd *usb_hcd;
831
832 if (usb_bus == NULL) /* FIXME: not sure if this case is possible */
833 return -ENODEV;
834 usb_hcd = bus_to_hcd(usb_bus);
835 return snprintf(buf, PAGE_SIZE, "%u\n", usb_hcd->authorized_default);
836}
837
838static ssize_t usb_host_authorized_default_store(struct device *dev,
839 struct device_attribute *attr,
840 const char *buf, size_t size)
841{
842 ssize_t result;
843 unsigned val;
844 struct usb_device *rh_usb_dev = to_usb_device(dev);
845 struct usb_bus *usb_bus = rh_usb_dev->bus;
846 struct usb_hcd *usb_hcd;
847
848 if (usb_bus == NULL) /* FIXME: not sure if this case is possible */
849 return -ENODEV;
850 usb_hcd = bus_to_hcd(usb_bus);
851 result = sscanf(buf, "%u\n", &val);
852 if (result == 1) {
853 usb_hcd->authorized_default = val? 1 : 0;
854 result = size;
855 }
856 else
857 result = -EINVAL;
858 return result;
859}
860
861static DEVICE_ATTR(authorized_default, 0644,
862 usb_host_authorized_default_show,
863 usb_host_authorized_default_store);
864
865
866/* Group all the USB bus attributes */
867static struct attribute *usb_bus_attrs[] = {
868 &dev_attr_authorized_default.attr,
869 NULL,
870};
871
872static struct attribute_group usb_bus_attr_group = {
873 .name = NULL, /* we want them in the same directory */
874 .attrs = usb_bus_attrs,
875};
876
877
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879/*-------------------------------------------------------------------------*/
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881/**
882 * usb_bus_init - shared initialization code
883 * @bus: the bus structure being initialized
884 *
885 * This code is used to initialize a usb_bus structure, memory for which is
886 * separately managed.
887 */
888static void usb_bus_init (struct usb_bus *bus)
889{
890 memset (&bus->devmap, 0, sizeof(struct usb_devmap));
891
892 bus->devnum_next = 1;
893
894 bus->root_hub = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 bus->busnum = -1;
896 bus->bandwidth_allocated = 0;
897 bus->bandwidth_int_reqs = 0;
898 bus->bandwidth_isoc_reqs = 0;
899
900 INIT_LIST_HEAD (&bus->bus_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903/*-------------------------------------------------------------------------*/
904
905/**
906 * usb_register_bus - registers the USB host controller with the usb core
907 * @bus: pointer to the bus to register
908 * Context: !in_interrupt()
909 *
910 * Assigns a bus number, and links the controller into usbcore data
911 * structures so that it can be seen by scanning the bus list.
912 */
913static int usb_register_bus(struct usb_bus *bus)
914{
Inaky Perez-Gonzalezeb579f52007-07-31 20:33:59 -0700915 int result = -E2BIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 int busnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100918 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 busnum = find_next_zero_bit (busmap.busmap, USB_MAXBUS, 1);
Inaky Perez-Gonzalezeb579f52007-07-31 20:33:59 -0700920 if (busnum >= USB_MAXBUS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 printk (KERN_ERR "%s: too many buses\n", usbcore_name);
Inaky Perez-Gonzalezeb579f52007-07-31 20:33:59 -0700922 goto error_find_busnum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 }
Inaky Perez-Gonzalezeb579f52007-07-31 20:33:59 -0700924 set_bit (busnum, busmap.busmap);
925 bus->busnum = busnum;
Tony Jones5a3201b2007-09-11 14:07:31 -0700926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 /* Add it to the local list of buses */
928 list_add (&bus->bus_list, &usb_bus_list);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100929 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -0700931 usb_notify_add_bus(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Inaky Perez-Gonzalezeb579f52007-07-31 20:33:59 -0700933 dev_info (bus->controller, "new USB bus registered, assigned bus "
934 "number %d\n", bus->busnum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return 0;
Inaky Perez-Gonzalezeb579f52007-07-31 20:33:59 -0700936
Inaky Perez-Gonzalezeb579f52007-07-31 20:33:59 -0700937error_find_busnum:
938 mutex_unlock(&usb_bus_list_lock);
939 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940}
941
942/**
943 * usb_deregister_bus - deregisters the USB host controller
944 * @bus: pointer to the bus to deregister
945 * Context: !in_interrupt()
946 *
947 * Recycles the bus number, and unlinks the controller from usbcore data
948 * structures so that it won't be seen by scanning the bus list.
949 */
950static void usb_deregister_bus (struct usb_bus *bus)
951{
952 dev_info (bus->controller, "USB bus %d deregistered\n", bus->busnum);
953
954 /*
955 * NOTE: make sure that all the devices are removed by the
956 * controller code, as well as having it call this when cleaning
957 * itself up
958 */
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100959 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 list_del (&bus->bus_list);
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100961 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -0700963 usb_notify_remove_bus(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
965 clear_bit (bus->busnum, busmap.busmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966}
967
968/**
Alan Stern8ec8d202005-04-25 11:25:17 -0400969 * register_root_hub - called by usb_add_hcd() to register a root hub
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 * @hcd: host controller for this root hub
971 *
Alan Stern8ec8d202005-04-25 11:25:17 -0400972 * This function registers the root hub with the USB subsystem. It sets up
David Brownellb1e8f0a2006-01-23 15:25:40 -0800973 * the device properly in the device tree and then calls usb_new_device()
974 * to register the usb device. It also assigns the root hub's USB address
975 * (always 1).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 */
David Brownellb1e8f0a2006-01-23 15:25:40 -0800977static int register_root_hub(struct usb_hcd *hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
979 struct device *parent_dev = hcd->self.controller;
David Brownellb1e8f0a2006-01-23 15:25:40 -0800980 struct usb_device *usb_dev = hcd->self.root_hub;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 const int devnum = 1;
982 int retval;
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 usb_dev->devnum = devnum;
985 usb_dev->bus->devnum_next = devnum + 1;
986 memset (&usb_dev->bus->devmap.devicemap, 0,
987 sizeof usb_dev->bus->devmap.devicemap);
988 set_bit (devnum, usb_dev->bus->devmap.devicemap);
989 usb_set_device_state(usb_dev, USB_STATE_ADDRESS);
990
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100991 mutex_lock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Harvey Harrison551509d2009-02-11 14:11:36 -0800993 usb_dev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 retval = usb_get_device_descriptor(usb_dev, USB_DT_DEVICE_SIZE);
995 if (retval != sizeof usb_dev->descriptor) {
Arjan van de Ven4186ecf2006-01-11 15:55:29 +0100996 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 dev_dbg (parent_dev, "can't read %s device descriptor %d\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +0200998 dev_name(&usb_dev->dev), retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 return (retval < 0) ? retval : -EMSGSIZE;
1000 }
Sarah Sharp448b6eb2012-05-15 16:58:45 -07001001 if (usb_dev->speed == USB_SPEED_SUPER) {
1002 retval = usb_get_bos_descriptor(usb_dev);
1003 if (retval < 0) {
1004 mutex_unlock(&usb_bus_list_lock);
1005 dev_dbg(parent_dev, "can't read %s bos descriptor %d\n",
1006 dev_name(&usb_dev->dev), retval);
1007 return retval;
1008 }
1009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 retval = usb_new_device (usb_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (retval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 dev_err (parent_dev, "can't register root hub for %s, %d\n",
Kay Sievers7071a3c2008-05-02 06:02:41 +02001014 dev_name(&usb_dev->dev), retval);
Alan Stern0a231402012-09-26 13:09:53 -04001015 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 spin_lock_irq (&hcd_root_hub_lock);
1017 hcd->rh_registered = 1;
1018 spin_unlock_irq (&hcd_root_hub_lock);
1019
1020 /* Did the HC die before the root hub was registered? */
Alan Stern69fff592011-05-17 17:27:12 -04001021 if (HCD_DEAD(hcd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 usb_hc_died (hcd); /* This time clean up */
1023 }
Alan Stern0a231402012-09-26 13:09:53 -04001024 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 return retval;
1027}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Alan Sternda0aa712013-01-25 17:09:42 -05001029/*
1030 * usb_hcd_start_port_resume - a root-hub port is sending a resume signal
1031 * @bus: the bus which the root hub belongs to
1032 * @portnum: the port which is being resumed
1033 *
1034 * HCDs should call this function when they know that a resume signal is
1035 * being sent to a root-hub port. The root hub will be prevented from
1036 * going into autosuspend until usb_hcd_end_port_resume() is called.
1037 *
1038 * The bus's private lock must be held by the caller.
1039 */
1040void usb_hcd_start_port_resume(struct usb_bus *bus, int portnum)
1041{
1042 unsigned bit = 1 << portnum;
1043
1044 if (!(bus->resuming_ports & bit)) {
1045 bus->resuming_ports |= bit;
1046 pm_runtime_get_noresume(&bus->root_hub->dev);
1047 }
1048}
1049EXPORT_SYMBOL_GPL(usb_hcd_start_port_resume);
1050
1051/*
1052 * usb_hcd_end_port_resume - a root-hub port has stopped sending a resume signal
1053 * @bus: the bus which the root hub belongs to
1054 * @portnum: the port which is being resumed
1055 *
1056 * HCDs should call this function when they know that a resume signal has
1057 * stopped being sent to a root-hub port. The root hub will be allowed to
1058 * autosuspend again.
1059 *
1060 * The bus's private lock must be held by the caller.
1061 */
1062void usb_hcd_end_port_resume(struct usb_bus *bus, int portnum)
1063{
1064 unsigned bit = 1 << portnum;
1065
1066 if (bus->resuming_ports & bit) {
1067 bus->resuming_ports &= ~bit;
1068 pm_runtime_put_noidle(&bus->root_hub->dev);
1069 }
1070}
1071EXPORT_SYMBOL_GPL(usb_hcd_end_port_resume);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073/*-------------------------------------------------------------------------*/
1074
1075/**
1076 * usb_calc_bus_time - approximate periodic transaction time in nanoseconds
1077 * @speed: from dev->speed; USB_SPEED_{LOW,FULL,HIGH}
1078 * @is_input: true iff the transaction sends data to the host
1079 * @isoc: true for isochronous transactions, false for interrupt ones
1080 * @bytecount: how many bytes in the transaction.
1081 *
1082 * Returns approximate bus time in nanoseconds for a periodic transaction.
1083 * See USB 2.0 spec section 5.11.3; only periodic transfers need to be
1084 * scheduled in software, this function is only used for such scheduling.
1085 */
1086long usb_calc_bus_time (int speed, int is_input, int isoc, int bytecount)
1087{
1088 unsigned long tmp;
1089
1090 switch (speed) {
1091 case USB_SPEED_LOW: /* INTR only */
1092 if (is_input) {
1093 tmp = (67667L * (31L + 10L * BitTime (bytecount))) / 1000L;
1094 return (64060L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
1095 } else {
1096 tmp = (66700L * (31L + 10L * BitTime (bytecount))) / 1000L;
1097 return (64107L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp);
1098 }
1099 case USB_SPEED_FULL: /* ISOC or INTR */
1100 if (isoc) {
1101 tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
1102 return (((is_input) ? 7268L : 6265L) + BW_HOST_DELAY + tmp);
1103 } else {
1104 tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
1105 return (9107L + BW_HOST_DELAY + tmp);
1106 }
1107 case USB_SPEED_HIGH: /* ISOC or INTR */
1108 // FIXME adjust for input vs output
1109 if (isoc)
Dan Streetman498f78e2005-07-29 12:18:28 -07001110 tmp = HS_NSECS_ISO (bytecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 else
Dan Streetman498f78e2005-07-29 12:18:28 -07001112 tmp = HS_NSECS (bytecount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 return tmp;
1114 default:
1115 pr_debug ("%s: bogus device speed!\n", usbcore_name);
1116 return -1;
1117 }
1118}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001119EXPORT_SYMBOL_GPL(usb_calc_bus_time);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122/*-------------------------------------------------------------------------*/
1123
1124/*
1125 * Generic HC operations.
1126 */
1127
1128/*-------------------------------------------------------------------------*/
1129
Alan Sterne9df41c2007-08-08 11:48:02 -04001130/**
1131 * usb_hcd_link_urb_to_ep - add an URB to its endpoint queue
1132 * @hcd: host controller to which @urb was submitted
1133 * @urb: URB being submitted
1134 *
1135 * Host controller drivers should call this routine in their enqueue()
1136 * method. The HCD's private spinlock must be held and interrupts must
1137 * be disabled. The actions carried out here are required for URB
1138 * submission, as well as for endpoint shutdown and for usb_kill_urb.
1139 *
1140 * Returns 0 for no error, otherwise a negative error code (in which case
1141 * the enqueue() method must fail). If no error occurs but enqueue() fails
1142 * anyway, it must call usb_hcd_unlink_urb_from_ep() before releasing
1143 * the private spinlock and returning.
1144 */
1145int usb_hcd_link_urb_to_ep(struct usb_hcd *hcd, struct urb *urb)
Alan Stern9a9bf402007-08-02 15:06:54 -04001146{
Alan Stern9a9bf402007-08-02 15:06:54 -04001147 int rc = 0;
1148
Alan Sterne9df41c2007-08-08 11:48:02 -04001149 spin_lock(&hcd_urb_list_lock);
Alan Stern9a9bf402007-08-02 15:06:54 -04001150
1151 /* Check that the URB isn't being killed */
Ming Lei49367d82008-12-12 21:38:45 +08001152 if (unlikely(atomic_read(&urb->reject))) {
Alan Stern9a9bf402007-08-02 15:06:54 -04001153 rc = -EPERM;
1154 goto done;
1155 }
1156
1157 if (unlikely(!urb->ep->enabled)) {
1158 rc = -ENOENT;
1159 goto done;
1160 }
1161
Alan Stern6840d252007-09-10 11:34:26 -04001162 if (unlikely(!urb->dev->can_submit)) {
1163 rc = -EHOSTUNREACH;
1164 goto done;
1165 }
1166
Alan Stern9a9bf402007-08-02 15:06:54 -04001167 /*
1168 * Check the host controller's state and add the URB to the
1169 * endpoint's queue.
1170 */
Alan Stern9b375962011-03-07 11:11:52 -05001171 if (HCD_RH_RUNNING(hcd)) {
Alan Sterneb231052007-08-21 15:40:36 -04001172 urb->unlinked = 0;
Alan Stern9a9bf402007-08-02 15:06:54 -04001173 list_add_tail(&urb->urb_list, &urb->ep->urb_list);
Alan Stern9b375962011-03-07 11:11:52 -05001174 } else {
Alan Stern9a9bf402007-08-02 15:06:54 -04001175 rc = -ESHUTDOWN;
1176 goto done;
1177 }
1178 done:
Alan Sterne9df41c2007-08-08 11:48:02 -04001179 spin_unlock(&hcd_urb_list_lock);
Alan Stern9a9bf402007-08-02 15:06:54 -04001180 return rc;
1181}
Alan Sterne9df41c2007-08-08 11:48:02 -04001182EXPORT_SYMBOL_GPL(usb_hcd_link_urb_to_ep);
Alan Stern9a9bf402007-08-02 15:06:54 -04001183
Alan Sterne9df41c2007-08-08 11:48:02 -04001184/**
1185 * usb_hcd_check_unlink_urb - check whether an URB may be unlinked
1186 * @hcd: host controller to which @urb was submitted
1187 * @urb: URB being checked for unlinkability
1188 * @status: error code to store in @urb if the unlink succeeds
1189 *
1190 * Host controller drivers should call this routine in their dequeue()
1191 * method. The HCD's private spinlock must be held and interrupts must
1192 * be disabled. The actions carried out here are required for making
1193 * sure than an unlink is valid.
1194 *
1195 * Returns 0 for no error, otherwise a negative error code (in which case
1196 * the dequeue() method must fail). The possible error codes are:
1197 *
1198 * -EIDRM: @urb was not submitted or has already completed.
1199 * The completion function may not have been called yet.
1200 *
1201 * -EBUSY: @urb has already been unlinked.
1202 */
1203int usb_hcd_check_unlink_urb(struct usb_hcd *hcd, struct urb *urb,
Alan Stern9a9bf402007-08-02 15:06:54 -04001204 int status)
1205{
Alan Stern9a9bf402007-08-02 15:06:54 -04001206 struct list_head *tmp;
Alan Stern9a9bf402007-08-02 15:06:54 -04001207
1208 /* insist the urb is still queued */
1209 list_for_each(tmp, &urb->ep->urb_list) {
1210 if (tmp == &urb->urb_list)
1211 break;
1212 }
Alan Sterne9df41c2007-08-08 11:48:02 -04001213 if (tmp != &urb->urb_list)
1214 return -EIDRM;
Alan Stern9a9bf402007-08-02 15:06:54 -04001215
1216 /* Any status except -EINPROGRESS means something already started to
1217 * unlink this URB from the hardware. So there's no more work to do.
1218 */
Alan Sterneb231052007-08-21 15:40:36 -04001219 if (urb->unlinked)
Alan Sterne9df41c2007-08-08 11:48:02 -04001220 return -EBUSY;
Alan Sterneb231052007-08-21 15:40:36 -04001221 urb->unlinked = status;
Alan Sterne9df41c2007-08-08 11:48:02 -04001222 return 0;
Alan Stern9a9bf402007-08-02 15:06:54 -04001223}
Alan Sterne9df41c2007-08-08 11:48:02 -04001224EXPORT_SYMBOL_GPL(usb_hcd_check_unlink_urb);
Alan Stern9a9bf402007-08-02 15:06:54 -04001225
Alan Sterne9df41c2007-08-08 11:48:02 -04001226/**
1227 * usb_hcd_unlink_urb_from_ep - remove an URB from its endpoint queue
1228 * @hcd: host controller to which @urb was submitted
1229 * @urb: URB being unlinked
1230 *
1231 * Host controller drivers should call this routine before calling
1232 * usb_hcd_giveback_urb(). The HCD's private spinlock must be held and
1233 * interrupts must be disabled. The actions carried out here are required
1234 * for URB completion.
1235 */
1236void usb_hcd_unlink_urb_from_ep(struct usb_hcd *hcd, struct urb *urb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 /* clear all state linking urb to this dev (and hcd) */
Alan Sterne9df41c2007-08-08 11:48:02 -04001239 spin_lock(&hcd_urb_list_lock);
Alan Stern9a9bf402007-08-02 15:06:54 -04001240 list_del_init(&urb->urb_list);
Alan Sterne9df41c2007-08-08 11:48:02 -04001241 spin_unlock(&hcd_urb_list_lock);
Pete Zaitcev9f6a93f2007-06-08 13:37:49 -07001242}
Alan Sterne9df41c2007-08-08 11:48:02 -04001243EXPORT_SYMBOL_GPL(usb_hcd_unlink_urb_from_ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Magnus Dammb3476672008-01-23 15:58:35 +09001245/*
1246 * Some usb host controllers can only perform dma using a small SRAM area.
1247 * The usb core itself is however optimized for host controllers that can dma
1248 * using regular system memory - like pci devices doing bus mastering.
1249 *
1250 * To support host controllers with limited dma capabilites we provide dma
1251 * bounce buffers. This feature can be enabled using the HCD_LOCAL_MEM flag.
1252 * For this to work properly the host controller code must first use the
1253 * function dma_declare_coherent_memory() to point out which memory area
1254 * that should be used for dma allocations.
1255 *
1256 * The HCD_LOCAL_MEM flag then tells the usb code to allocate all data for
1257 * dma using dma_alloc_coherent() which in turn allocates from the memory
1258 * area pointed out with dma_declare_coherent_memory().
1259 *
1260 * So, to summarize...
1261 *
1262 * - We need "local" memory, canonical example being
1263 * a small SRAM on a discrete controller being the
1264 * only memory that the controller can read ...
1265 * (a) "normal" kernel memory is no good, and
1266 * (b) there's not enough to share
1267 *
1268 * - The only *portable* hook for such stuff in the
1269 * DMA framework is dma_declare_coherent_memory()
1270 *
1271 * - So we use that, even though the primary requirement
1272 * is that the memory be "local" (hence addressible
1273 * by that device), not "coherent".
1274 *
1275 */
1276
1277static int hcd_alloc_coherent(struct usb_bus *bus,
1278 gfp_t mem_flags, dma_addr_t *dma_handle,
1279 void **vaddr_handle, size_t size,
1280 enum dma_data_direction dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Magnus Dammb3476672008-01-23 15:58:35 +09001282 unsigned char *vaddr;
1283
Andrea Righi4307a282010-06-28 16:56:45 +02001284 if (*vaddr_handle == NULL) {
1285 WARN_ON_ONCE(1);
1286 return -EFAULT;
1287 }
1288
Magnus Dammb3476672008-01-23 15:58:35 +09001289 vaddr = hcd_buffer_alloc(bus, size + sizeof(vaddr),
1290 mem_flags, dma_handle);
1291 if (!vaddr)
1292 return -ENOMEM;
1293
1294 /*
1295 * Store the virtual address of the buffer at the end
1296 * of the allocated dma buffer. The size of the buffer
1297 * may be uneven so use unaligned functions instead
1298 * of just rounding up. It makes sense to optimize for
1299 * memory footprint over access speed since the amount
1300 * of memory available for dma may be limited.
1301 */
1302 put_unaligned((unsigned long)*vaddr_handle,
1303 (unsigned long *)(vaddr + size));
1304
1305 if (dir == DMA_TO_DEVICE)
1306 memcpy(vaddr, *vaddr_handle, size);
1307
1308 *vaddr_handle = vaddr;
1309 return 0;
1310}
1311
1312static void hcd_free_coherent(struct usb_bus *bus, dma_addr_t *dma_handle,
1313 void **vaddr_handle, size_t size,
1314 enum dma_data_direction dir)
1315{
1316 unsigned char *vaddr = *vaddr_handle;
1317
1318 vaddr = (void *)get_unaligned((unsigned long *)(vaddr + size));
1319
1320 if (dir == DMA_FROM_DEVICE)
1321 memcpy(vaddr, *vaddr_handle, size);
1322
1323 hcd_buffer_free(bus, size + sizeof(vaddr), *vaddr_handle, *dma_handle);
1324
1325 *vaddr_handle = vaddr;
1326 *dma_handle = 0;
1327}
1328
Robert Morellc8cf2032011-01-26 19:06:47 -08001329void usb_hcd_unmap_urb_setup_for_dma(struct usb_hcd *hcd, struct urb *urb)
Alan Sternff9c8952010-04-02 13:27:28 -04001330{
Alan Sternff9c8952010-04-02 13:27:28 -04001331 if (urb->transfer_flags & URB_SETUP_MAP_SINGLE)
1332 dma_unmap_single(hcd->self.controller,
1333 urb->setup_dma,
1334 sizeof(struct usb_ctrlrequest),
1335 DMA_TO_DEVICE);
1336 else if (urb->transfer_flags & URB_SETUP_MAP_LOCAL)
1337 hcd_free_coherent(urb->dev->bus,
1338 &urb->setup_dma,
1339 (void **) &urb->setup_packet,
1340 sizeof(struct usb_ctrlrequest),
1341 DMA_TO_DEVICE);
1342
Martin Fuzzey1dae4232010-10-01 00:21:55 +02001343 /* Make it safe to call this routine more than once */
1344 urb->transfer_flags &= ~(URB_SETUP_MAP_SINGLE | URB_SETUP_MAP_LOCAL);
1345}
Robert Morellc8cf2032011-01-26 19:06:47 -08001346EXPORT_SYMBOL_GPL(usb_hcd_unmap_urb_setup_for_dma);
Martin Fuzzey1dae4232010-10-01 00:21:55 +02001347
Robert Morell2694a482011-01-26 19:06:48 -08001348static void unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb)
1349{
1350 if (hcd->driver->unmap_urb_for_dma)
1351 hcd->driver->unmap_urb_for_dma(hcd, urb);
1352 else
1353 usb_hcd_unmap_urb_for_dma(hcd, urb);
1354}
1355
Robert Morellc8cf2032011-01-26 19:06:47 -08001356void usb_hcd_unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb)
Martin Fuzzey1dae4232010-10-01 00:21:55 +02001357{
1358 enum dma_data_direction dir;
1359
Robert Morellc8cf2032011-01-26 19:06:47 -08001360 usb_hcd_unmap_urb_setup_for_dma(hcd, urb);
Martin Fuzzey1dae4232010-10-01 00:21:55 +02001361
Alan Sternff9c8952010-04-02 13:27:28 -04001362 dir = usb_urb_dir_in(urb) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
1363 if (urb->transfer_flags & URB_DMA_MAP_SG)
1364 dma_unmap_sg(hcd->self.controller,
Matthew Wilcox910f8d02010-05-01 12:20:01 -06001365 urb->sg,
Alan Sternff9c8952010-04-02 13:27:28 -04001366 urb->num_sgs,
1367 dir);
1368 else if (urb->transfer_flags & URB_DMA_MAP_PAGE)
1369 dma_unmap_page(hcd->self.controller,
1370 urb->transfer_dma,
1371 urb->transfer_buffer_length,
1372 dir);
1373 else if (urb->transfer_flags & URB_DMA_MAP_SINGLE)
1374 dma_unmap_single(hcd->self.controller,
1375 urb->transfer_dma,
1376 urb->transfer_buffer_length,
1377 dir);
1378 else if (urb->transfer_flags & URB_MAP_LOCAL)
1379 hcd_free_coherent(urb->dev->bus,
1380 &urb->transfer_dma,
1381 &urb->transfer_buffer,
1382 urb->transfer_buffer_length,
1383 dir);
1384
1385 /* Make it safe to call this routine more than once */
Martin Fuzzey1dae4232010-10-01 00:21:55 +02001386 urb->transfer_flags &= ~(URB_DMA_MAP_SG | URB_DMA_MAP_PAGE |
Alan Sternff9c8952010-04-02 13:27:28 -04001387 URB_DMA_MAP_SINGLE | URB_MAP_LOCAL);
1388}
Robert Morellc8cf2032011-01-26 19:06:47 -08001389EXPORT_SYMBOL_GPL(usb_hcd_unmap_urb_for_dma);
Alan Sternff9c8952010-04-02 13:27:28 -04001390
Magnus Dammb3476672008-01-23 15:58:35 +09001391static int map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
1392 gfp_t mem_flags)
1393{
Robert Morell2694a482011-01-26 19:06:48 -08001394 if (hcd->driver->map_urb_for_dma)
1395 return hcd->driver->map_urb_for_dma(hcd, urb, mem_flags);
1396 else
1397 return usb_hcd_map_urb_for_dma(hcd, urb, mem_flags);
1398}
1399
1400int usb_hcd_map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
1401 gfp_t mem_flags)
1402{
Magnus Dammb3476672008-01-23 15:58:35 +09001403 enum dma_data_direction dir;
1404 int ret = 0;
1405
Alan Stern9a9bf402007-08-02 15:06:54 -04001406 /* Map the URB's buffers for DMA access.
1407 * Lower level HCD code should use *_dma exclusively,
Sarah Sharpe04748e2009-04-27 19:59:01 -07001408 * unless it uses pio or talks to another transport,
1409 * or uses the provided scatter gather list for bulk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 */
Magnus Dammb3476672008-01-23 15:58:35 +09001411
Alan Stern85bcb5e2010-04-30 16:35:37 -04001412 if (usb_endpoint_xfer_control(&urb->ep->desc)) {
Anand Gadiyar07a8cdd2010-11-18 18:54:17 +05301413 if (hcd->self.uses_pio_for_control)
1414 return ret;
Larry Finger85e034f2009-11-05 10:37:03 -06001415 if (hcd->self.uses_dma) {
Magnus Dammb3476672008-01-23 15:58:35 +09001416 urb->setup_dma = dma_map_single(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 hcd->self.controller,
1418 urb->setup_packet,
Magnus Dammb3476672008-01-23 15:58:35 +09001419 sizeof(struct usb_ctrlrequest),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 DMA_TO_DEVICE);
Larry Finger85e034f2009-11-05 10:37:03 -06001421 if (dma_mapping_error(hcd->self.controller,
1422 urb->setup_dma))
1423 return -EAGAIN;
Alan Sternff9c8952010-04-02 13:27:28 -04001424 urb->transfer_flags |= URB_SETUP_MAP_SINGLE;
Ming Leif537da62010-05-12 23:38:12 +08001425 } else if (hcd->driver->flags & HCD_LOCAL_MEM) {
Magnus Dammb3476672008-01-23 15:58:35 +09001426 ret = hcd_alloc_coherent(
1427 urb->dev->bus, mem_flags,
1428 &urb->setup_dma,
1429 (void **)&urb->setup_packet,
1430 sizeof(struct usb_ctrlrequest),
1431 DMA_TO_DEVICE);
Alan Sternff9c8952010-04-02 13:27:28 -04001432 if (ret)
1433 return ret;
1434 urb->transfer_flags |= URB_SETUP_MAP_LOCAL;
Ming Leif537da62010-05-12 23:38:12 +08001435 }
Magnus Dammb3476672008-01-23 15:58:35 +09001436 }
1437
1438 dir = usb_urb_dir_in(urb) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
Alan Sternff9c8952010-04-02 13:27:28 -04001439 if (urb->transfer_buffer_length != 0
Magnus Dammb3476672008-01-23 15:58:35 +09001440 && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)) {
Larry Finger85e034f2009-11-05 10:37:03 -06001441 if (hcd->self.uses_dma) {
Alan Sternff9c8952010-04-02 13:27:28 -04001442 if (urb->num_sgs) {
Hans de Goedefe2072c2012-07-09 15:57:00 +02001443 int n;
1444
1445 /* We don't support sg for isoc transfers ! */
1446 if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
1447 WARN_ON(1);
1448 return -EINVAL;
1449 }
1450
1451 n = dma_map_sg(
Alan Sternff9c8952010-04-02 13:27:28 -04001452 hcd->self.controller,
Matthew Wilcox910f8d02010-05-01 12:20:01 -06001453 urb->sg,
Alan Sternff9c8952010-04-02 13:27:28 -04001454 urb->num_sgs,
1455 dir);
1456 if (n <= 0)
1457 ret = -EAGAIN;
1458 else
1459 urb->transfer_flags |= URB_DMA_MAP_SG;
Clemens Ladischbc677d52011-12-03 23:41:31 +01001460 urb->num_mapped_sgs = n;
1461 if (n != urb->num_sgs)
Alan Sternff9c8952010-04-02 13:27:28 -04001462 urb->transfer_flags |=
1463 URB_DMA_SG_COMBINED;
Alan Sternff9c8952010-04-02 13:27:28 -04001464 } else if (urb->sg) {
Matthew Wilcox910f8d02010-05-01 12:20:01 -06001465 struct scatterlist *sg = urb->sg;
Alan Sternff9c8952010-04-02 13:27:28 -04001466 urb->transfer_dma = dma_map_page(
1467 hcd->self.controller,
1468 sg_page(sg),
1469 sg->offset,
1470 urb->transfer_buffer_length,
1471 dir);
1472 if (dma_mapping_error(hcd->self.controller,
Larry Finger85e034f2009-11-05 10:37:03 -06001473 urb->transfer_dma))
Alan Sternff9c8952010-04-02 13:27:28 -04001474 ret = -EAGAIN;
1475 else
1476 urb->transfer_flags |= URB_DMA_MAP_PAGE;
1477 } else {
1478 urb->transfer_dma = dma_map_single(
1479 hcd->self.controller,
1480 urb->transfer_buffer,
1481 urb->transfer_buffer_length,
1482 dir);
1483 if (dma_mapping_error(hcd->self.controller,
1484 urb->transfer_dma))
1485 ret = -EAGAIN;
1486 else
1487 urb->transfer_flags |= URB_DMA_MAP_SINGLE;
1488 }
Larry Finger85e034f2009-11-05 10:37:03 -06001489 } else if (hcd->driver->flags & HCD_LOCAL_MEM) {
Magnus Dammb3476672008-01-23 15:58:35 +09001490 ret = hcd_alloc_coherent(
1491 urb->dev->bus, mem_flags,
1492 &urb->transfer_dma,
1493 &urb->transfer_buffer,
1494 urb->transfer_buffer_length,
1495 dir);
Alan Sternff9c8952010-04-02 13:27:28 -04001496 if (ret == 0)
1497 urb->transfer_flags |= URB_MAP_LOCAL;
Magnus Dammb3476672008-01-23 15:58:35 +09001498 }
Alan Sternff9c8952010-04-02 13:27:28 -04001499 if (ret && (urb->transfer_flags & (URB_SETUP_MAP_SINGLE |
1500 URB_SETUP_MAP_LOCAL)))
Robert Morellc8cf2032011-01-26 19:06:47 -08001501 usb_hcd_unmap_urb_for_dma(hcd, urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
Magnus Dammb3476672008-01-23 15:58:35 +09001503 return ret;
Alan Stern9a9bf402007-08-02 15:06:54 -04001504}
Robert Morell2694a482011-01-26 19:06:48 -08001505EXPORT_SYMBOL_GPL(usb_hcd_map_urb_for_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Alan Stern9a9bf402007-08-02 15:06:54 -04001507/*-------------------------------------------------------------------------*/
1508
1509/* may be called in any context with a valid urb->dev usecount
1510 * caller surrenders "ownership" of urb
1511 * expects usb_submit_urb() to have sanity checked and conditioned all
1512 * inputs in the urb
1513 */
1514int usb_hcd_submit_urb (struct urb *urb, gfp_t mem_flags)
1515{
1516 int status;
1517 struct usb_hcd *hcd = bus_to_hcd(urb->dev->bus);
1518
1519 /* increment urb's reference count as part of giving it to the HCD
1520 * (which will control it). HCD guarantees that it either returns
1521 * an error or calls giveback(), but not both.
1522 */
1523 usb_get_urb(urb);
1524 atomic_inc(&urb->use_count);
Sarah Sharp4d59d8a2007-10-03 14:56:03 -07001525 atomic_inc(&urb->dev->urbnum);
Alan Stern9a9bf402007-08-02 15:06:54 -04001526 usbmon_urb_submit(&hcd->self, urb);
1527
1528 /* NOTE requirements on root-hub callers (usbfs and the hub
1529 * driver, for now): URBs' urb->transfer_buffer must be
1530 * valid and usb_buffer_{sync,unmap}() not be needed, since
1531 * they could clobber root hub response data. Also, control
1532 * URBs must be submitted in process context with interrupts
1533 * enabled.
1534 */
Alan Sternff9c8952010-04-02 13:27:28 -04001535
1536 if (is_root_hub(urb->dev)) {
1537 status = rh_urb_enqueue(hcd, urb);
1538 } else {
1539 status = map_urb_for_dma(hcd, urb, mem_flags);
1540 if (likely(status == 0)) {
1541 status = hcd->driver->urb_enqueue(hcd, urb, mem_flags);
1542 if (unlikely(status))
Robert Morell2694a482011-01-26 19:06:48 -08001543 unmap_urb_for_dma(hcd, urb);
Alan Sternff9c8952010-04-02 13:27:28 -04001544 }
Magnus Dammb3476672008-01-23 15:58:35 +09001545 }
1546
Alan Stern9a9bf402007-08-02 15:06:54 -04001547 if (unlikely(status)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 usbmon_urb_submit_error(&hcd->self, urb, status);
Alan Sternb0d9efb2007-08-21 15:39:21 -04001549 urb->hcpriv = NULL;
Alan Stern9a9bf402007-08-02 15:06:54 -04001550 INIT_LIST_HEAD(&urb->urb_list);
1551 atomic_dec(&urb->use_count);
Sarah Sharp4d59d8a2007-10-03 14:56:03 -07001552 atomic_dec(&urb->dev->urbnum);
Ming Lei49367d82008-12-12 21:38:45 +08001553 if (atomic_read(&urb->reject))
Alan Stern9a9bf402007-08-02 15:06:54 -04001554 wake_up(&usb_kill_urb_queue);
1555 usb_put_urb(urb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
1557 return status;
1558}
1559
1560/*-------------------------------------------------------------------------*/
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562/* this makes the hcd giveback() the urb more quickly, by kicking it
1563 * off hardware queues (which may take a while) and returning it as
1564 * soon as practical. we've already set up the urb's return status,
1565 * but we can't know if the callback completed already.
1566 */
Alan Sterne9df41c2007-08-08 11:48:02 -04001567static int unlink1(struct usb_hcd *hcd, struct urb *urb, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568{
1569 int value;
1570
Alan Stern809a58b2007-07-18 12:14:24 -04001571 if (is_root_hub(urb->dev))
Alan Sterne9df41c2007-08-08 11:48:02 -04001572 value = usb_rh_urb_dequeue(hcd, urb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 else {
1574
1575 /* The only reason an HCD might fail this call is if
1576 * it has not yet fully queued the urb to begin with.
1577 * Such failures should be harmless. */
Alan Sterne9df41c2007-08-08 11:48:02 -04001578 value = hcd->driver->urb_dequeue(hcd, urb, status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 return value;
1581}
1582
1583/*
1584 * called in any context
1585 *
1586 * caller guarantees urb won't be recycled till both unlink()
1587 * and the urb's completion function return
1588 */
Alan Sterna6d2bb92006-08-30 11:27:36 -04001589int usb_hcd_unlink_urb (struct urb *urb, int status)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
Alan Stern9a9bf402007-08-02 15:06:54 -04001591 struct usb_hcd *hcd;
Alan Sterncde217a2008-10-21 15:28:46 -04001592 int retval = -EIDRM;
1593 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Alan Sterncde217a2008-10-21 15:28:46 -04001595 /* Prevent the device and bus from going away while
1596 * the unlink is carried out. If they are already gone
1597 * then urb->use_count must be 0, since disconnected
1598 * devices can't have any active URBs.
1599 */
1600 spin_lock_irqsave(&hcd_urb_unlink_lock, flags);
1601 if (atomic_read(&urb->use_count) > 0) {
1602 retval = 0;
1603 usb_get_dev(urb->dev);
1604 }
1605 spin_unlock_irqrestore(&hcd_urb_unlink_lock, flags);
1606 if (retval == 0) {
1607 hcd = bus_to_hcd(urb->dev->bus);
1608 retval = unlink1(hcd, urb, status);
1609 usb_put_dev(urb->dev);
1610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 if (retval == 0)
1613 retval = -EINPROGRESS;
Alan Sterne9df41c2007-08-08 11:48:02 -04001614 else if (retval != -EIDRM && retval != -EBUSY)
Alan Stern9a9bf402007-08-02 15:06:54 -04001615 dev_dbg(&urb->dev->dev, "hcd_unlink_urb %p fail %d\n",
1616 urb, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 return retval;
1618}
1619
1620/*-------------------------------------------------------------------------*/
1621
Alan Stern32aca562007-07-18 12:08:02 -04001622/**
1623 * usb_hcd_giveback_urb - return URB from HCD to device driver
1624 * @hcd: host controller returning the URB
1625 * @urb: urb being returned to the USB device driver.
Alan Stern4a000272007-08-24 15:42:24 -04001626 * @status: completion status code for the URB.
Alan Stern32aca562007-07-18 12:08:02 -04001627 * Context: in_interrupt()
1628 *
1629 * This hands the URB from HCD to its USB device driver, using its
1630 * completion function. The HCD has freed all per-urb resources
1631 * (and is done using urb->hcpriv). It also released all HCD locks;
1632 * the device driver won't cause problems if it frees, modifies,
1633 * or resubmits this URB.
Alan Sterneb231052007-08-21 15:40:36 -04001634 *
Alan Stern4a000272007-08-24 15:42:24 -04001635 * If @urb was unlinked, the value of @status will be overridden by
Alan Sterneb231052007-08-21 15:40:36 -04001636 * @urb->unlinked. Erroneous short transfers are detected in case
1637 * the HCD hasn't checked for them.
Alan Stern32aca562007-07-18 12:08:02 -04001638 */
Alan Stern4a000272007-08-24 15:42:24 -04001639void usb_hcd_giveback_urb(struct usb_hcd *hcd, struct urb *urb, int status)
Alan Stern32aca562007-07-18 12:08:02 -04001640{
Alan Sternb0d9efb2007-08-21 15:39:21 -04001641 urb->hcpriv = NULL;
Alan Sterneb231052007-08-21 15:40:36 -04001642 if (unlikely(urb->unlinked))
Alan Stern4a000272007-08-24 15:42:24 -04001643 status = urb->unlinked;
Alan Sterneb231052007-08-21 15:40:36 -04001644 else if (unlikely((urb->transfer_flags & URB_SHORT_NOT_OK) &&
Alan Sternb0d9efb2007-08-21 15:39:21 -04001645 urb->actual_length < urb->transfer_buffer_length &&
Alan Stern4a000272007-08-24 15:42:24 -04001646 !status))
1647 status = -EREMOTEIO;
Alan Stern32aca562007-07-18 12:08:02 -04001648
Robert Morell2694a482011-01-26 19:06:48 -08001649 unmap_urb_for_dma(hcd, urb);
Alan Stern4a000272007-08-24 15:42:24 -04001650 usbmon_urb_complete(&hcd->self, urb, status);
Alan Stern1f5a3d02007-08-22 13:06:53 -04001651 usb_unanchor_urb(urb);
1652
Alan Stern32aca562007-07-18 12:08:02 -04001653 /* pass ownership to the completion handler */
Alan Stern4a000272007-08-24 15:42:24 -04001654 urb->status = status;
Alan Stern32aca562007-07-18 12:08:02 -04001655 urb->complete (urb);
1656 atomic_dec (&urb->use_count);
Ming Lei49367d82008-12-12 21:38:45 +08001657 if (unlikely(atomic_read(&urb->reject)))
Alan Stern32aca562007-07-18 12:08:02 -04001658 wake_up (&usb_kill_urb_queue);
1659 usb_put_urb (urb);
1660}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06001661EXPORT_SYMBOL_GPL(usb_hcd_giveback_urb);
Alan Stern32aca562007-07-18 12:08:02 -04001662
1663/*-------------------------------------------------------------------------*/
1664
Alan Stern95cf82f2007-09-10 11:33:05 -04001665/* Cancel all URBs pending on this endpoint and wait for the endpoint's
1666 * queue to drain completely. The caller must first insure that no more
1667 * URBs can be submitted for this endpoint.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 */
Alan Stern95cf82f2007-09-10 11:33:05 -04001669void usb_hcd_flush_endpoint(struct usb_device *udev,
Alan Sterna6d2bb92006-08-30 11:27:36 -04001670 struct usb_host_endpoint *ep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671{
1672 struct usb_hcd *hcd;
1673 struct urb *urb;
1674
Alan Stern95cf82f2007-09-10 11:33:05 -04001675 if (!ep)
1676 return;
Alan Stern9a9bf402007-08-02 15:06:54 -04001677 might_sleep();
Alan Stern17200582006-08-30 11:32:52 -04001678 hcd = bus_to_hcd(udev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Alan Stern95cf82f2007-09-10 11:33:05 -04001680 /* No more submits can occur */
Alan Stern9a9bf402007-08-02 15:06:54 -04001681 spin_lock_irq(&hcd_urb_list_lock);
Alan Sternddc1fd62007-11-21 15:13:10 -08001682rescan:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 list_for_each_entry (urb, &ep->urb_list, urb_list) {
Alan Stern5e60a162007-07-30 17:07:21 -04001684 int is_in;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Alan Sterneb231052007-08-21 15:40:36 -04001686 if (urb->unlinked)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 continue;
1688 usb_get_urb (urb);
Alan Stern5e60a162007-07-30 17:07:21 -04001689 is_in = usb_urb_dir_in(urb);
Alan Stern809a58b2007-07-18 12:14:24 -04001690 spin_unlock(&hcd_urb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Alan Sterne9df41c2007-08-08 11:48:02 -04001692 /* kick hcd */
1693 unlink1(hcd, urb, -ESHUTDOWN);
1694 dev_dbg (hcd->self.controller,
1695 "shutdown urb %p ep%d%s%s\n",
1696 urb, usb_endpoint_num(&ep->desc),
1697 is_in ? "in" : "out",
1698 ({ char *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Alan Sterne9df41c2007-08-08 11:48:02 -04001700 switch (usb_endpoint_type(&ep->desc)) {
1701 case USB_ENDPOINT_XFER_CONTROL:
1702 s = ""; break;
1703 case USB_ENDPOINT_XFER_BULK:
1704 s = "-bulk"; break;
1705 case USB_ENDPOINT_XFER_INT:
1706 s = "-intr"; break;
1707 default:
1708 s = "-iso"; break;
1709 };
1710 s;
1711 }));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 usb_put_urb (urb);
1713
1714 /* list contents may have changed */
Alan Sternddc1fd62007-11-21 15:13:10 -08001715 spin_lock(&hcd_urb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 goto rescan;
1717 }
Alan Stern9a9bf402007-08-02 15:06:54 -04001718 spin_unlock_irq(&hcd_urb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
Alan Stern95cf82f2007-09-10 11:33:05 -04001720 /* Wait until the endpoint queue is completely empty */
Alan Stern455b25f2006-08-11 16:01:45 -04001721 while (!list_empty (&ep->urb_list)) {
Alan Stern809a58b2007-07-18 12:14:24 -04001722 spin_lock_irq(&hcd_urb_list_lock);
Alan Stern455b25f2006-08-11 16:01:45 -04001723
1724 /* The list may have changed while we acquired the spinlock */
1725 urb = NULL;
1726 if (!list_empty (&ep->urb_list)) {
1727 urb = list_entry (ep->urb_list.prev, struct urb,
1728 urb_list);
1729 usb_get_urb (urb);
1730 }
Alan Stern809a58b2007-07-18 12:14:24 -04001731 spin_unlock_irq(&hcd_urb_list_lock);
Alan Stern455b25f2006-08-11 16:01:45 -04001732
1733 if (urb) {
1734 usb_kill_urb (urb);
1735 usb_put_urb (urb);
1736 }
1737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738}
1739
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001740/**
Randy Dunlap70445ae2009-12-13 10:17:16 -08001741 * usb_hcd_alloc_bandwidth - check whether a new bandwidth setting exceeds
1742 * the bus bandwidth
1743 * @udev: target &usb_device
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001744 * @new_config: new configuration to install
1745 * @cur_alt: the current alternate interface setting
1746 * @new_alt: alternate interface setting that is being installed
1747 *
1748 * To change configurations, pass in the new configuration in new_config,
1749 * and pass NULL for cur_alt and new_alt.
1750 *
1751 * To reset a device's configuration (put the device in the ADDRESSED state),
1752 * pass in NULL for new_config, cur_alt, and new_alt.
1753 *
1754 * To change alternate interface settings, pass in NULL for new_config,
1755 * pass in the current alternate interface setting in cur_alt,
1756 * and pass in the new alternate interface setting in new_alt.
1757 *
1758 * Returns an error if the requested bandwidth change exceeds the
1759 * bus bandwidth or host controller internal resources.
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001760 */
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001761int usb_hcd_alloc_bandwidth(struct usb_device *udev,
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001762 struct usb_host_config *new_config,
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001763 struct usb_host_interface *cur_alt,
1764 struct usb_host_interface *new_alt)
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001765{
1766 int num_intfs, i, j;
H Hartley Sweeten576a3622009-11-17 14:53:41 -08001767 struct usb_host_interface *alt = NULL;
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001768 int ret = 0;
1769 struct usb_hcd *hcd;
1770 struct usb_host_endpoint *ep;
1771
1772 hcd = bus_to_hcd(udev->bus);
1773 if (!hcd->driver->check_bandwidth)
1774 return 0;
1775
1776 /* Configuration is being removed - set configuration 0 */
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001777 if (!new_config && !cur_alt) {
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001778 for (i = 1; i < 16; ++i) {
1779 ep = udev->ep_out[i];
1780 if (ep)
1781 hcd->driver->drop_endpoint(hcd, udev, ep);
1782 ep = udev->ep_in[i];
1783 if (ep)
1784 hcd->driver->drop_endpoint(hcd, udev, ep);
1785 }
1786 hcd->driver->check_bandwidth(hcd, udev);
1787 return 0;
1788 }
1789 /* Check if the HCD says there's enough bandwidth. Enable all endpoints
1790 * each interface's alt setting 0 and ask the HCD to check the bandwidth
1791 * of the bus. There will always be bandwidth for endpoint 0, so it's
1792 * ok to exclude it.
1793 */
1794 if (new_config) {
1795 num_intfs = new_config->desc.bNumInterfaces;
1796 /* Remove endpoints (except endpoint 0, which is always on the
1797 * schedule) from the old config from the schedule
1798 */
1799 for (i = 1; i < 16; ++i) {
1800 ep = udev->ep_out[i];
1801 if (ep) {
1802 ret = hcd->driver->drop_endpoint(hcd, udev, ep);
1803 if (ret < 0)
1804 goto reset;
1805 }
1806 ep = udev->ep_in[i];
1807 if (ep) {
1808 ret = hcd->driver->drop_endpoint(hcd, udev, ep);
1809 if (ret < 0)
1810 goto reset;
1811 }
1812 }
1813 for (i = 0; i < num_intfs; ++i) {
Sarah Sharpd837e212010-01-05 14:33:29 -08001814 struct usb_host_interface *first_alt;
1815 int iface_num;
1816
1817 first_alt = &new_config->intf_cache[i]->altsetting[0];
1818 iface_num = first_alt->desc.bInterfaceNumber;
Sarah Sharp91017f92009-12-03 09:44:34 -08001819 /* Set up endpoints for alternate interface setting 0 */
Sarah Sharpd837e212010-01-05 14:33:29 -08001820 alt = usb_find_alt_setting(new_config, iface_num, 0);
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001821 if (!alt)
1822 /* No alt setting 0? Pick the first setting. */
Sarah Sharpd837e212010-01-05 14:33:29 -08001823 alt = first_alt;
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001824
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001825 for (j = 0; j < alt->desc.bNumEndpoints; j++) {
1826 ret = hcd->driver->add_endpoint(hcd, udev, &alt->endpoint[j]);
1827 if (ret < 0)
1828 goto reset;
1829 }
1830 }
1831 }
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001832 if (cur_alt && new_alt) {
Sarah Sharp04a723e2010-01-06 10:16:51 -08001833 struct usb_interface *iface = usb_ifnum_to_if(udev,
1834 cur_alt->desc.bInterfaceNumber);
1835
Sarah Sharp8a9af4f2011-08-09 16:31:54 -07001836 if (!iface)
1837 return -EINVAL;
Sarah Sharp04a723e2010-01-06 10:16:51 -08001838 if (iface->resetting_device) {
1839 /*
1840 * The USB core just reset the device, so the xHCI host
1841 * and the device will think alt setting 0 is installed.
1842 * However, the USB core will pass in the alternate
1843 * setting installed before the reset as cur_alt. Dig
1844 * out the alternate setting 0 structure, or the first
1845 * alternate setting if a broken device doesn't have alt
1846 * setting 0.
1847 */
1848 cur_alt = usb_altnum_to_altsetting(iface, 0);
1849 if (!cur_alt)
1850 cur_alt = &iface->altsetting[0];
1851 }
1852
Sarah Sharp3f0479e2009-12-03 09:44:36 -08001853 /* Drop all the endpoints in the current alt setting */
1854 for (i = 0; i < cur_alt->desc.bNumEndpoints; i++) {
1855 ret = hcd->driver->drop_endpoint(hcd, udev,
1856 &cur_alt->endpoint[i]);
1857 if (ret < 0)
1858 goto reset;
1859 }
1860 /* Add all the endpoints in the new alt setting */
1861 for (i = 0; i < new_alt->desc.bNumEndpoints; i++) {
1862 ret = hcd->driver->add_endpoint(hcd, udev,
1863 &new_alt->endpoint[i]);
1864 if (ret < 0)
1865 goto reset;
1866 }
1867 }
Sarah Sharp79abb1a2009-04-27 19:58:26 -07001868 ret = hcd->driver->check_bandwidth(hcd, udev);
1869reset:
1870 if (ret < 0)
1871 hcd->driver->reset_bandwidth(hcd, udev);
1872 return ret;
1873}
1874
Alan Stern95cf82f2007-09-10 11:33:05 -04001875/* Disables the endpoint: synchronizes with the hcd to make sure all
1876 * endpoint state is gone from hardware. usb_hcd_flush_endpoint() must
1877 * have been called previously. Use for set_configuration, set_interface,
1878 * driver removal, physical disconnect.
1879 *
1880 * example: a qh stored in ep->hcpriv, holding state related to endpoint
1881 * type, maxpacket size, toggle, halt status, and scheduling.
1882 */
1883void usb_hcd_disable_endpoint(struct usb_device *udev,
1884 struct usb_host_endpoint *ep)
1885{
1886 struct usb_hcd *hcd;
1887
1888 might_sleep();
1889 hcd = bus_to_hcd(udev->bus);
1890 if (hcd->driver->endpoint_disable)
1891 hcd->driver->endpoint_disable(hcd, ep);
1892}
1893
David Vrabel3444b262009-04-08 17:36:28 +00001894/**
1895 * usb_hcd_reset_endpoint - reset host endpoint state
1896 * @udev: USB device.
1897 * @ep: the endpoint to reset.
1898 *
1899 * Resets any host endpoint state such as the toggle bit, sequence
1900 * number and current window.
1901 */
1902void usb_hcd_reset_endpoint(struct usb_device *udev,
1903 struct usb_host_endpoint *ep)
1904{
1905 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
1906
1907 if (hcd->driver->endpoint_reset)
1908 hcd->driver->endpoint_reset(hcd, ep);
1909 else {
1910 int epnum = usb_endpoint_num(&ep->desc);
1911 int is_out = usb_endpoint_dir_out(&ep->desc);
1912 int is_control = usb_endpoint_xfer_control(&ep->desc);
1913
1914 usb_settoggle(udev, epnum, is_out, 0);
1915 if (is_control)
1916 usb_settoggle(udev, epnum, !is_out, 0);
1917 }
1918}
1919
Sarah Sharpeab1caf2010-04-05 10:55:58 -07001920/**
1921 * usb_alloc_streams - allocate bulk endpoint stream IDs.
1922 * @interface: alternate setting that includes all endpoints.
1923 * @eps: array of endpoints that need streams.
1924 * @num_eps: number of endpoints in the array.
1925 * @num_streams: number of streams to allocate.
1926 * @mem_flags: flags hcd should use to allocate memory.
1927 *
1928 * Sets up a group of bulk endpoints to have num_streams stream IDs available.
1929 * Drivers may queue multiple transfers to different stream IDs, which may
1930 * complete in a different order than they were queued.
1931 */
1932int usb_alloc_streams(struct usb_interface *interface,
1933 struct usb_host_endpoint **eps, unsigned int num_eps,
1934 unsigned int num_streams, gfp_t mem_flags)
1935{
1936 struct usb_hcd *hcd;
1937 struct usb_device *dev;
1938 int i;
1939
1940 dev = interface_to_usbdev(interface);
1941 hcd = bus_to_hcd(dev->bus);
1942 if (!hcd->driver->alloc_streams || !hcd->driver->free_streams)
1943 return -EINVAL;
1944 if (dev->speed != USB_SPEED_SUPER)
1945 return -EINVAL;
1946
1947 /* Streams only apply to bulk endpoints. */
1948 for (i = 0; i < num_eps; i++)
1949 if (!usb_endpoint_xfer_bulk(&eps[i]->desc))
1950 return -EINVAL;
1951
1952 return hcd->driver->alloc_streams(hcd, dev, eps, num_eps,
1953 num_streams, mem_flags);
1954}
1955EXPORT_SYMBOL_GPL(usb_alloc_streams);
1956
1957/**
1958 * usb_free_streams - free bulk endpoint stream IDs.
1959 * @interface: alternate setting that includes all endpoints.
1960 * @eps: array of endpoints to remove streams from.
1961 * @num_eps: number of endpoints in the array.
1962 * @mem_flags: flags hcd should use to allocate memory.
1963 *
1964 * Reverts a group of bulk endpoints back to not using stream IDs.
1965 * Can fail if we are given bad arguments, or HCD is broken.
1966 */
1967void usb_free_streams(struct usb_interface *interface,
1968 struct usb_host_endpoint **eps, unsigned int num_eps,
1969 gfp_t mem_flags)
1970{
1971 struct usb_hcd *hcd;
1972 struct usb_device *dev;
1973 int i;
1974
1975 dev = interface_to_usbdev(interface);
1976 hcd = bus_to_hcd(dev->bus);
1977 if (dev->speed != USB_SPEED_SUPER)
1978 return;
1979
1980 /* Streams only apply to bulk endpoints. */
1981 for (i = 0; i < num_eps; i++)
Matthew Wilcoxb214f192010-09-28 00:57:32 -04001982 if (!eps[i] || !usb_endpoint_xfer_bulk(&eps[i]->desc))
Sarah Sharpeab1caf2010-04-05 10:55:58 -07001983 return;
1984
1985 hcd->driver->free_streams(hcd, dev, eps, num_eps, mem_flags);
1986}
1987EXPORT_SYMBOL_GPL(usb_free_streams);
1988
Alan Sterncde217a2008-10-21 15:28:46 -04001989/* Protect against drivers that try to unlink URBs after the device
1990 * is gone, by waiting until all unlinks for @udev are finished.
1991 * Since we don't currently track URBs by device, simply wait until
1992 * nothing is running in the locked region of usb_hcd_unlink_urb().
1993 */
1994void usb_hcd_synchronize_unlinks(struct usb_device *udev)
1995{
1996 spin_lock_irq(&hcd_urb_unlink_lock);
1997 spin_unlock_irq(&hcd_urb_unlink_lock);
1998}
1999
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000/*-------------------------------------------------------------------------*/
2001
Alan Stern32aca562007-07-18 12:08:02 -04002002/* called in any context */
2003int usb_hcd_get_frame_number (struct usb_device *udev)
2004{
2005 struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2006
Alan Stern9b375962011-03-07 11:11:52 -05002007 if (!HCD_RH_RUNNING(hcd))
Alan Stern32aca562007-07-18 12:08:02 -04002008 return -ESHUTDOWN;
2009 return hcd->driver->get_frame_number (hcd);
2010}
2011
2012/*-------------------------------------------------------------------------*/
2013
David Brownell92936772005-09-22 22:32:11 -07002014#ifdef CONFIG_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015
Alan Stern65bfd292008-11-25 16:39:18 -05002016int hcd_bus_suspend(struct usb_device *rhdev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
Alan Stern686314c2007-05-30 15:34:36 -04002018 struct usb_hcd *hcd = container_of(rhdev->bus, struct usb_hcd, self);
2019 int status;
2020 int old_state = hcd->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Alan Stern30b1a7a2011-09-27 21:54:22 +02002022 dev_dbg(&rhdev->dev, "bus %ssuspend, wakeup %d\n",
2023 (PMSG_IS_AUTO(msg) ? "auto-" : ""),
2024 rhdev->do_remote_wakeup);
Alan Stern9b375962011-03-07 11:11:52 -05002025 if (HCD_DEAD(hcd)) {
2026 dev_dbg(&rhdev->dev, "skipped %s of dead bus\n", "suspend");
2027 return 0;
2028 }
2029
Alan Stern686314c2007-05-30 15:34:36 -04002030 if (!hcd->driver->bus_suspend) {
2031 status = -ENOENT;
2032 } else {
Alan Stern9b375962011-03-07 11:11:52 -05002033 clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
Alan Stern686314c2007-05-30 15:34:36 -04002034 hcd->state = HC_STATE_QUIESCING;
2035 status = hcd->driver->bus_suspend(hcd);
2036 }
2037 if (status == 0) {
2038 usb_set_device_state(rhdev, USB_STATE_SUSPENDED);
David Brownell92936772005-09-22 22:32:11 -07002039 hcd->state = HC_STATE_SUSPENDED;
Alan Stern879d38e2012-04-03 15:24:18 -04002040
2041 /* Did we race with a root-hub wakeup event? */
2042 if (rhdev->do_remote_wakeup) {
2043 char buffer[6];
2044
2045 status = hcd->driver->hub_status_data(hcd, buffer);
2046 if (status != 0) {
2047 dev_dbg(&rhdev->dev, "suspend raced with wakeup event\n");
2048 hcd_bus_resume(rhdev, PMSG_AUTO_RESUME);
2049 status = -EBUSY;
2050 }
2051 }
Alan Stern686314c2007-05-30 15:34:36 -04002052 } else {
Alan Stern9b375962011-03-07 11:11:52 -05002053 spin_lock_irq(&hcd_root_hub_lock);
2054 if (!HCD_DEAD(hcd)) {
2055 set_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
2056 hcd->state = old_state;
2057 }
2058 spin_unlock_irq(&hcd_root_hub_lock);
Alan Stern686314c2007-05-30 15:34:36 -04002059 dev_dbg(&rhdev->dev, "bus %s fail, err %d\n",
David Brownell92936772005-09-22 22:32:11 -07002060 "suspend", status);
Alan Stern686314c2007-05-30 15:34:36 -04002061 }
David Brownell92936772005-09-22 22:32:11 -07002062 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063}
2064
Alan Stern65bfd292008-11-25 16:39:18 -05002065int hcd_bus_resume(struct usb_device *rhdev, pm_message_t msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066{
Alan Stern686314c2007-05-30 15:34:36 -04002067 struct usb_hcd *hcd = container_of(rhdev->bus, struct usb_hcd, self);
2068 int status;
Alan Sterncfa59da2007-06-21 16:25:35 -04002069 int old_state = hcd->state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
Alan Stern30b1a7a2011-09-27 21:54:22 +02002071 dev_dbg(&rhdev->dev, "usb %sresume\n",
2072 (PMSG_IS_AUTO(msg) ? "auto-" : ""));
Alan Stern9b375962011-03-07 11:11:52 -05002073 if (HCD_DEAD(hcd)) {
2074 dev_dbg(&rhdev->dev, "skipped %s of dead bus\n", "resume");
2075 return 0;
2076 }
Alan Stern0c0382e2005-10-13 17:08:02 -04002077 if (!hcd->driver->bus_resume)
David Brownell92936772005-09-22 22:32:11 -07002078 return -ENOENT;
Alan Stern9b375962011-03-07 11:11:52 -05002079 if (HCD_RH_RUNNING(hcd))
David Brownell979d5192005-09-22 22:32:24 -07002080 return 0;
Alan Stern686314c2007-05-30 15:34:36 -04002081
David Brownell92936772005-09-22 22:32:11 -07002082 hcd->state = HC_STATE_RESUMING;
Alan Stern686314c2007-05-30 15:34:36 -04002083 status = hcd->driver->bus_resume(hcd);
Alan Sternbf3d7d42011-02-02 13:59:33 -05002084 clear_bit(HCD_FLAG_WAKEUP_PENDING, &hcd->flags);
Alan Stern686314c2007-05-30 15:34:36 -04002085 if (status == 0) {
Alan Sternbfd1e912012-10-19 11:03:39 -04002086 struct usb_device *udev;
2087 int port1;
2088
Alan Stern9b375962011-03-07 11:11:52 -05002089 spin_lock_irq(&hcd_root_hub_lock);
2090 if (!HCD_DEAD(hcd)) {
2091 usb_set_device_state(rhdev, rhdev->actconfig
2092 ? USB_STATE_CONFIGURED
2093 : USB_STATE_ADDRESS);
2094 set_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
2095 hcd->state = HC_STATE_RUNNING;
2096 }
2097 spin_unlock_irq(&hcd_root_hub_lock);
Alan Sternbfd1e912012-10-19 11:03:39 -04002098
2099 /*
2100 * Check whether any of the enabled ports on the root hub are
2101 * unsuspended. If they are then a TRSMRCY delay is needed
2102 * (this is what the USB-2 spec calls a "global resume").
2103 * Otherwise we can skip the delay.
2104 */
2105 usb_hub_for_each_child(rhdev, port1, udev) {
2106 if (udev->state != USB_STATE_NOTATTACHED &&
2107 !udev->port_is_suspended) {
2108 usleep_range(10000, 11000); /* TRSMRCY */
2109 break;
2110 }
2111 }
Alan Stern686314c2007-05-30 15:34:36 -04002112 } else {
Alan Sterncfa59da2007-06-21 16:25:35 -04002113 hcd->state = old_state;
Alan Stern686314c2007-05-30 15:34:36 -04002114 dev_dbg(&rhdev->dev, "bus %s fail, err %d\n",
David Brownell92936772005-09-22 22:32:11 -07002115 "resume", status);
Alan Sterncfa59da2007-06-21 16:25:35 -04002116 if (status != -ESHUTDOWN)
2117 usb_hc_died(hcd);
David Brownell92936772005-09-22 22:32:11 -07002118 }
2119 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120}
2121
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002122#endif /* CONFIG_PM */
2123
2124#ifdef CONFIG_USB_SUSPEND
2125
Alan Stern6b157c92007-03-13 16:37:30 -04002126/* Workqueue routine for root-hub remote wakeup */
2127static void hcd_resume_work(struct work_struct *work)
2128{
2129 struct usb_hcd *hcd = container_of(work, struct usb_hcd, wakeup_work);
2130 struct usb_device *udev = hcd->self.root_hub;
2131
2132 usb_lock_device(udev);
Alan Stern0534d462010-01-08 12:56:30 -05002133 usb_remote_wakeup(udev);
Alan Stern6b157c92007-03-13 16:37:30 -04002134 usb_unlock_device(udev);
2135}
2136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137/**
2138 * usb_hcd_resume_root_hub - called by HCD to resume its root hub
2139 * @hcd: host controller for this root hub
2140 *
2141 * The USB host controller calls this function when its root hub is
2142 * suspended (with the remote wakeup feature enabled) and a remote
Alan Stern6b157c92007-03-13 16:37:30 -04002143 * wakeup request is received. The routine submits a workqueue request
2144 * to resume the root hub (that is, manage its downstream ports again).
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 */
2146void usb_hcd_resume_root_hub (struct usb_hcd *hcd)
2147{
2148 unsigned long flags;
2149
2150 spin_lock_irqsave (&hcd_root_hub_lock, flags);
Alan Sternff2f0782010-06-25 14:02:35 -04002151 if (hcd->rh_registered) {
2152 set_bit(HCD_FLAG_WAKEUP_PENDING, &hcd->flags);
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002153 queue_work(pm_wq, &hcd->wakeup_work);
Alan Sternff2f0782010-06-25 14:02:35 -04002154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
2156}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157EXPORT_SYMBOL_GPL(usb_hcd_resume_root_hub);
2158
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002159#endif /* CONFIG_USB_SUSPEND */
David Brownell92936772005-09-22 22:32:11 -07002160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161/*-------------------------------------------------------------------------*/
2162
2163#ifdef CONFIG_USB_OTG
2164
2165/**
2166 * usb_bus_start_enum - start immediate enumeration (for OTG)
2167 * @bus: the bus (must use hcd framework)
2168 * @port_num: 1-based number of port; usually bus->otg_port
2169 * Context: in_interrupt()
2170 *
2171 * Starts enumeration, with an immediate reset followed later by
2172 * khubd identifying and possibly configuring the device.
2173 * This is needed by OTG controller drivers, where it helps meet
2174 * HNP protocol timing requirements for starting a port reset.
2175 */
2176int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num)
2177{
2178 struct usb_hcd *hcd;
2179 int status = -EOPNOTSUPP;
2180
2181 /* NOTE: since HNP can't start by grabbing the bus's address0_sem,
2182 * boards with root hubs hooked up to internal devices (instead of
2183 * just the OTG port) may need more attention to resetting...
2184 */
2185 hcd = container_of (bus, struct usb_hcd, self);
2186 if (port_num && hcd->driver->start_port_reset)
2187 status = hcd->driver->start_port_reset(hcd, port_num);
2188
2189 /* run khubd shortly after (first) root port reset finishes;
2190 * it may issue others, until at least 50 msecs have passed.
2191 */
2192 if (status == 0)
2193 mod_timer(&hcd->rh_timer, jiffies + msecs_to_jiffies(10));
2194 return status;
2195}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06002196EXPORT_SYMBOL_GPL(usb_bus_start_enum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198#endif
2199
2200/*-------------------------------------------------------------------------*/
2201
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 * usb_hcd_irq - hook IRQs to HCD framework (bus glue)
2204 * @irq: the IRQ being raised
2205 * @__hcd: pointer to the HCD whose IRQ is being signaled
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 *
2207 * If the controller isn't HALTed, calls the driver's irq handler.
2208 * Checks whether the controller is now dead.
2209 */
David Howells7d12e782006-10-05 14:55:46 +01002210irqreturn_t usb_hcd_irq (int irq, void *__hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211{
2212 struct usb_hcd *hcd = __hcd;
Greg Kroah-Hartmane592c5d2012-11-13 10:52:52 -08002213 unsigned long flags;
Stefan Beckerde854222008-07-01 19:19:22 +03002214 irqreturn_t rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Greg Kroah-Hartmane592c5d2012-11-13 10:52:52 -08002216 /* IRQF_DISABLED doesn't work correctly with shared IRQs
2217 * when the first handler doesn't use it. So let's just
2218 * assume it's never used.
2219 */
2220 local_irq_save(flags);
2221
Alan Stern968b8222011-11-03 12:03:38 -04002222 if (unlikely(HCD_DEAD(hcd) || !HCD_HW_ACCESSIBLE(hcd)))
Stefan Beckerde854222008-07-01 19:19:22 +03002223 rc = IRQ_NONE;
Alan Stern968b8222011-11-03 12:03:38 -04002224 else if (hcd->driver->irq(hcd) == IRQ_NONE)
Stefan Beckerde854222008-07-01 19:19:22 +03002225 rc = IRQ_NONE;
Alan Stern968b8222011-11-03 12:03:38 -04002226 else
Stefan Beckerde854222008-07-01 19:19:22 +03002227 rc = IRQ_HANDLED;
Stefan Beckerde854222008-07-01 19:19:22 +03002228
Greg Kroah-Hartmane592c5d2012-11-13 10:52:52 -08002229 local_irq_restore(flags);
Stefan Beckerde854222008-07-01 19:19:22 +03002230 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231}
Dong Nguyen43b86af2010-07-21 16:56:08 -07002232EXPORT_SYMBOL_GPL(usb_hcd_irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
2234/*-------------------------------------------------------------------------*/
2235
2236/**
2237 * usb_hc_died - report abnormal shutdown of a host controller (bus glue)
2238 * @hcd: pointer to the HCD representing the controller
2239 *
2240 * This is called by bus glue to report a USB host controller that died
2241 * while operations may still have been pending. It's called automatically
Sarah Sharpc5635432010-10-28 15:40:26 -07002242 * by the PCI glue, so only glue for non-PCI busses should need to call it.
2243 *
2244 * Only call this function with the primary HCD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 */
2246void usb_hc_died (struct usb_hcd *hcd)
2247{
2248 unsigned long flags;
2249
2250 dev_err (hcd->self.controller, "HC died; cleaning up\n");
2251
2252 spin_lock_irqsave (&hcd_root_hub_lock, flags);
Alan Stern9b375962011-03-07 11:11:52 -05002253 clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
2254 set_bit(HCD_FLAG_DEAD, &hcd->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 if (hcd->rh_registered) {
Alan Stern541c7d42010-06-22 16:39:10 -04002256 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258 /* make khubd clean up old urbs and devices */
2259 usb_set_device_state (hcd->self.root_hub,
2260 USB_STATE_NOTATTACHED);
2261 usb_kick_khubd (hcd->self.root_hub);
2262 }
Sarah Sharpc5635432010-10-28 15:40:26 -07002263 if (usb_hcd_is_primary_hcd(hcd) && hcd->shared_hcd) {
2264 hcd = hcd->shared_hcd;
2265 if (hcd->rh_registered) {
2266 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
2267
2268 /* make khubd clean up old urbs and devices */
2269 usb_set_device_state(hcd->self.root_hub,
2270 USB_STATE_NOTATTACHED);
2271 usb_kick_khubd(hcd->self.root_hub);
2272 }
2273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
Sarah Sharpc5635432010-10-28 15:40:26 -07002275 /* Make sure that the other roothub is also deallocated. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276}
2277EXPORT_SYMBOL_GPL (usb_hc_died);
2278
2279/*-------------------------------------------------------------------------*/
2280
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281/**
Sarah Sharpc5635432010-10-28 15:40:26 -07002282 * usb_create_shared_hcd - create and initialize an HCD structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 * @driver: HC driver that will use this hcd
2284 * @dev: device for this HC, stored in hcd->self.controller
2285 * @bus_name: value to store in hcd->self.bus_name
Sarah Sharpc5635432010-10-28 15:40:26 -07002286 * @primary_hcd: a pointer to the usb_hcd structure that is sharing the
2287 * PCI device. Only allocate certain resources for the primary HCD
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 * Context: !in_interrupt()
2289 *
2290 * Allocate a struct usb_hcd, with extra space at the end for the
2291 * HC driver's private data. Initialize the generic members of the
2292 * hcd structure.
2293 *
2294 * If memory is unavailable, returns NULL.
2295 */
Sarah Sharpc5635432010-10-28 15:40:26 -07002296struct usb_hcd *usb_create_shared_hcd(const struct hc_driver *driver,
2297 struct device *dev, const char *bus_name,
2298 struct usb_hcd *primary_hcd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299{
2300 struct usb_hcd *hcd;
2301
Pekka Enberg7b842b62005-09-06 15:18:34 -07002302 hcd = kzalloc(sizeof(*hcd) + driver->hcd_priv_size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 if (!hcd) {
2304 dev_dbg (dev, "hcd alloc failed\n");
2305 return NULL;
2306 }
Sarah Sharpc5635432010-10-28 15:40:26 -07002307 if (primary_hcd == NULL) {
2308 hcd->bandwidth_mutex = kmalloc(sizeof(*hcd->bandwidth_mutex),
2309 GFP_KERNEL);
2310 if (!hcd->bandwidth_mutex) {
2311 kfree(hcd);
2312 dev_dbg(dev, "hcd bandwidth mutex alloc failed\n");
2313 return NULL;
2314 }
2315 mutex_init(hcd->bandwidth_mutex);
2316 dev_set_drvdata(dev, hcd);
2317 } else {
2318 hcd->bandwidth_mutex = primary_hcd->bandwidth_mutex;
2319 hcd->primary_hcd = primary_hcd;
2320 primary_hcd->primary_hcd = primary_hcd;
2321 hcd->shared_hcd = primary_hcd;
2322 primary_hcd->shared_hcd = hcd;
Sarah Sharpd673bfc2010-10-15 08:55:24 -07002323 }
Sarah Sharpd673bfc2010-10-15 08:55:24 -07002324
Alan Stern17200582006-08-30 11:32:52 -04002325 kref_init(&hcd->kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326
2327 usb_bus_init(&hcd->self);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 hcd->self.controller = dev;
2329 hcd->self.bus_name = bus_name;
Alan Sterndd990f12006-08-30 11:29:56 -04002330 hcd->self.uses_dma = (dev->dma_mask != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
2332 init_timer(&hcd->rh_timer);
Alan Sternd5926ae72005-04-21 15:56:37 -04002333 hcd->rh_timer.function = rh_timer_func;
2334 hcd->rh_timer.data = (unsigned long) hcd;
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002335#ifdef CONFIG_USB_SUSPEND
Alan Stern6b157c92007-03-13 16:37:30 -04002336 INIT_WORK(&hcd->wakeup_work, hcd_resume_work);
2337#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
2339 hcd->driver = driver;
Sarah Sharp83de4b22010-12-02 14:45:18 -08002340 hcd->speed = driver->flags & HCD_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 hcd->product_desc = (driver->product_desc) ? driver->product_desc :
2342 "USB Host Controller";
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 return hcd;
2344}
Sarah Sharpc5635432010-10-28 15:40:26 -07002345EXPORT_SYMBOL_GPL(usb_create_shared_hcd);
2346
2347/**
2348 * usb_create_hcd - create and initialize an HCD structure
2349 * @driver: HC driver that will use this hcd
2350 * @dev: device for this HC, stored in hcd->self.controller
2351 * @bus_name: value to store in hcd->self.bus_name
2352 * Context: !in_interrupt()
2353 *
2354 * Allocate a struct usb_hcd, with extra space at the end for the
2355 * HC driver's private data. Initialize the generic members of the
2356 * hcd structure.
2357 *
2358 * If memory is unavailable, returns NULL.
2359 */
2360struct usb_hcd *usb_create_hcd(const struct hc_driver *driver,
2361 struct device *dev, const char *bus_name)
2362{
2363 return usb_create_shared_hcd(driver, dev, bus_name, NULL);
2364}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06002365EXPORT_SYMBOL_GPL(usb_create_hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
Sarah Sharpc5635432010-10-28 15:40:26 -07002367/*
2368 * Roothubs that share one PCI device must also share the bandwidth mutex.
2369 * Don't deallocate the bandwidth_mutex until the last shared usb_hcd is
2370 * deallocated.
2371 *
2372 * Make sure to only deallocate the bandwidth_mutex when the primary HCD is
2373 * freed. When hcd_release() is called for the non-primary HCD, set the
2374 * primary_hcd's shared_hcd pointer to null (since the non-primary HCD will be
2375 * freed shortly).
2376 */
Alan Stern17200582006-08-30 11:32:52 -04002377static void hcd_release (struct kref *kref)
2378{
2379 struct usb_hcd *hcd = container_of (kref, struct usb_hcd, kref);
2380
Sarah Sharpc5635432010-10-28 15:40:26 -07002381 if (usb_hcd_is_primary_hcd(hcd))
2382 kfree(hcd->bandwidth_mutex);
2383 else
2384 hcd->shared_hcd->shared_hcd = NULL;
Alan Stern17200582006-08-30 11:32:52 -04002385 kfree(hcd);
2386}
2387
2388struct usb_hcd *usb_get_hcd (struct usb_hcd *hcd)
2389{
2390 if (hcd)
2391 kref_get (&hcd->kref);
2392 return hcd;
2393}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06002394EXPORT_SYMBOL_GPL(usb_get_hcd);
Alan Stern17200582006-08-30 11:32:52 -04002395
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396void usb_put_hcd (struct usb_hcd *hcd)
2397{
Alan Stern17200582006-08-30 11:32:52 -04002398 if (hcd)
2399 kref_put (&hcd->kref, hcd_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06002401EXPORT_SYMBOL_GPL(usb_put_hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
Sarah Sharpc5635432010-10-28 15:40:26 -07002403int usb_hcd_is_primary_hcd(struct usb_hcd *hcd)
2404{
2405 if (!hcd->primary_hcd)
2406 return 1;
2407 return hcd == hcd->primary_hcd;
2408}
2409EXPORT_SYMBOL_GPL(usb_hcd_is_primary_hcd);
2410
Sarah Sharp23e0d102010-10-21 11:14:54 -07002411static int usb_hcd_request_irqs(struct usb_hcd *hcd,
2412 unsigned int irqnum, unsigned long irqflags)
2413{
2414 int retval;
2415
2416 if (hcd->driver->irq) {
Greg Kroah-Hartmane592c5d2012-11-13 10:52:52 -08002417
2418 /* IRQF_DISABLED doesn't work as advertised when used together
2419 * with IRQF_SHARED. As usb_hcd_irq() will always disable
2420 * interrupts we can remove it here.
2421 */
2422 if (irqflags & IRQF_SHARED)
2423 irqflags &= ~IRQF_DISABLED;
2424
Sarah Sharp23e0d102010-10-21 11:14:54 -07002425 snprintf(hcd->irq_descr, sizeof(hcd->irq_descr), "%s:usb%d",
2426 hcd->driver->description, hcd->self.busnum);
2427 retval = request_irq(irqnum, &usb_hcd_irq, irqflags,
2428 hcd->irq_descr, hcd);
2429 if (retval != 0) {
2430 dev_err(hcd->self.controller,
2431 "request interrupt %d failed\n",
2432 irqnum);
2433 return retval;
2434 }
2435 hcd->irq = irqnum;
2436 dev_info(hcd->self.controller, "irq %d, %s 0x%08llx\n", irqnum,
2437 (hcd->driver->flags & HCD_MEMORY) ?
2438 "io mem" : "io base",
2439 (unsigned long long)hcd->rsrc_start);
2440 } else {
Felipe Balbicd704692012-02-29 16:46:23 +02002441 hcd->irq = 0;
Sarah Sharp23e0d102010-10-21 11:14:54 -07002442 if (hcd->rsrc_start)
2443 dev_info(hcd->self.controller, "%s 0x%08llx\n",
2444 (hcd->driver->flags & HCD_MEMORY) ?
2445 "io mem" : "io base",
2446 (unsigned long long)hcd->rsrc_start);
2447 }
2448 return 0;
2449}
2450
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451/**
2452 * usb_add_hcd - finish generic HCD structure initialization and register
2453 * @hcd: the usb_hcd structure to initialize
2454 * @irqnum: Interrupt line to allocate
2455 * @irqflags: Interrupt type flags
2456 *
2457 * Finish the remaining parts of generic HCD initialization: allocate the
2458 * buffers of consistent memory, register the bus, request the IRQ line,
2459 * and call the driver's reset() and start() routines.
2460 */
2461int usb_add_hcd(struct usb_hcd *hcd,
2462 unsigned int irqnum, unsigned long irqflags)
2463{
Alan Stern8ec8d202005-04-25 11:25:17 -04002464 int retval;
2465 struct usb_device *rhdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
2467 dev_info(hcd->self.controller, "%s\n", hcd->product_desc);
2468
Carl-Daniel Hailfingerc4fc2342011-05-31 21:31:08 +02002469 /* Keep old behaviour if authorized_default is not in [0, 1]. */
2470 if (authorized_default < 0 || authorized_default > 1)
2471 hcd->authorized_default = hcd->wireless? 0 : 1;
2472 else
2473 hcd->authorized_default = authorized_default;
Benjamin Herrenschmidt8de98402005-11-25 09:59:46 +11002474 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
2475
David Brownellb1e8f0a2006-01-23 15:25:40 -08002476 /* HC is in reset state, but accessible. Now do the one-time init,
2477 * bottom up so that hcds can customize the root hubs before khubd
2478 * starts talking to them. (Note, bus id is assigned early too.)
2479 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 if ((retval = hcd_buffer_create(hcd)) != 0) {
2481 dev_dbg(hcd->self.controller, "pool alloc failed\n");
2482 return retval;
2483 }
2484
2485 if ((retval = usb_register_bus(&hcd->self)) < 0)
Alan Stern8ec8d202005-04-25 11:25:17 -04002486 goto err_register_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
David Brownellb1e8f0a2006-01-23 15:25:40 -08002488 if ((rhdev = usb_alloc_dev(NULL, &hcd->self, 0)) == NULL) {
2489 dev_err(hcd->self.controller, "unable to allocate root hub\n");
2490 retval = -ENOMEM;
2491 goto err_allocate_root_hub;
2492 }
Alan Stern6d88e672010-06-09 17:34:17 -04002493 hcd->self.root_hub = rhdev;
Sarah Sharp6b403b02009-04-27 19:54:10 -07002494
Sarah Sharp83de4b22010-12-02 14:45:18 -08002495 switch (hcd->speed) {
Sarah Sharp6b403b02009-04-27 19:54:10 -07002496 case HCD_USB11:
2497 rhdev->speed = USB_SPEED_FULL;
2498 break;
2499 case HCD_USB2:
2500 rhdev->speed = USB_SPEED_HIGH;
2501 break;
2502 case HCD_USB3:
2503 rhdev->speed = USB_SPEED_SUPER;
2504 break;
2505 default:
Sebastian Andrzej Siewior1d15ee42011-04-14 11:22:32 +02002506 retval = -EINVAL;
Alan Stern96e077a2010-06-09 17:34:05 -04002507 goto err_set_rh_speed;
Sarah Sharp6b403b02009-04-27 19:54:10 -07002508 }
David Brownellb1e8f0a2006-01-23 15:25:40 -08002509
David Brownelldb4cefa2006-05-01 22:07:13 -07002510 /* wakeup flag init defaults to "everything works" for root hubs,
2511 * but drivers can override it in reset() if needed, along with
2512 * recording the overall controller's system wakeup capability.
2513 */
Alan Sterna6eeeb92011-09-26 11:23:38 -04002514 device_set_wakeup_capable(&rhdev->dev, 1);
David Brownelldb4cefa2006-05-01 22:07:13 -07002515
Alan Stern9b375962011-03-07 11:11:52 -05002516 /* HCD_FLAG_RH_RUNNING doesn't matter until the root hub is
2517 * registered. But since the controller can die at any time,
2518 * let's initialize the flag before touching the hardware.
2519 */
2520 set_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
2521
David Brownellb1e8f0a2006-01-23 15:25:40 -08002522 /* "reset" is misnamed; its role is now one-time init. the controller
2523 * should already have been reset (and boot firmware kicked off etc).
2524 */
2525 if (hcd->driver->reset && (retval = hcd->driver->reset(hcd)) < 0) {
2526 dev_err(hcd->self.controller, "can't setup\n");
2527 goto err_hcd_driver_setup;
2528 }
Alan Stern6d88e672010-06-09 17:34:17 -04002529 hcd->rh_pollable = 1;
David Brownellb1e8f0a2006-01-23 15:25:40 -08002530
David Brownellfb669cc2006-01-24 08:40:27 -08002531 /* NOTE: root hub and controller capabilities may not be the same */
2532 if (device_can_wakeup(hcd->self.controller)
2533 && device_can_wakeup(&hcd->self.root_hub->dev))
David Brownellb1e8f0a2006-01-23 15:25:40 -08002534 dev_dbg(hcd->self.controller, "supports USB remote wakeup\n");
David Brownellb1e8f0a2006-01-23 15:25:40 -08002535
Sarah Sharp68d07f62012-02-13 16:25:57 -08002536 /* enable irqs just before we start the controller,
2537 * if the BIOS provides legacy PCI irqs.
2538 */
2539 if (usb_hcd_is_primary_hcd(hcd) && irqnum) {
Sarah Sharpc5635432010-10-28 15:40:26 -07002540 retval = usb_hcd_request_irqs(hcd, irqnum, irqflags);
2541 if (retval)
2542 goto err_request_irq;
2543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
Sarah Sharp48140302011-03-11 13:46:17 -08002545 hcd->state = HC_STATE_RUNNING;
Sarah Sharpabc4f9b2010-12-01 09:22:05 -08002546 retval = hcd->driver->start(hcd);
2547 if (retval < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 dev_err(hcd->self.controller, "startup error %d\n", retval);
Alan Stern8ec8d202005-04-25 11:25:17 -04002549 goto err_hcd_driver_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 }
2551
David Brownellb1e8f0a2006-01-23 15:25:40 -08002552 /* starting here, usbcore will pay attention to this root hub */
Alan Stern55c52712005-11-23 12:03:12 -05002553 rhdev->bus_mA = min(500u, hcd->power_budget);
David Brownellb1e8f0a2006-01-23 15:25:40 -08002554 if ((retval = register_root_hub(hcd)) != 0)
Alan Stern8ec8d202005-04-25 11:25:17 -04002555 goto err_register_root_hub;
2556
Inaky Perez-Gonzalez5234ce12007-07-31 20:33:58 -07002557 retval = sysfs_create_group(&rhdev->dev.kobj, &usb_bus_attr_group);
2558 if (retval < 0) {
2559 printk(KERN_ERR "Cannot register USB bus sysfs attributes: %d\n",
2560 retval);
2561 goto error_create_attr_group;
2562 }
Alan Stern541c7d42010-06-22 16:39:10 -04002563 if (hcd->uses_new_polling && HCD_POLL_RH(hcd))
Alan Sternd5926ae72005-04-21 15:56:37 -04002564 usb_hcd_poll_rh_status(hcd);
Alan Sterna6eeeb92011-09-26 11:23:38 -04002565
2566 /*
2567 * Host controllers don't generate their own wakeup requests;
2568 * they only forward requests from the root hub. Therefore
2569 * controllers should always be enabled for remote wakeup.
2570 */
2571 device_wakeup_enable(hcd->self.controller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 return retval;
2573
Inaky Perez-Gonzalez5234ce12007-07-31 20:33:58 -07002574error_create_attr_group:
Alan Stern9b375962011-03-07 11:11:52 -05002575 clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
Alan Stern96e077a2010-06-09 17:34:05 -04002576 if (HC_IS_RUNNING(hcd->state))
2577 hcd->state = HC_STATE_QUIESCING;
2578 spin_lock_irq(&hcd_root_hub_lock);
2579 hcd->rh_registered = 0;
2580 spin_unlock_irq(&hcd_root_hub_lock);
2581
2582#ifdef CONFIG_USB_SUSPEND
2583 cancel_work_sync(&hcd->wakeup_work);
2584#endif
Inaky Perez-Gonzalez5234ce12007-07-31 20:33:58 -07002585 mutex_lock(&usb_bus_list_lock);
Alan Stern6d88e672010-06-09 17:34:17 -04002586 usb_disconnect(&rhdev); /* Sets rhdev to NULL */
Inaky Perez-Gonzalez5234ce12007-07-31 20:33:58 -07002587 mutex_unlock(&usb_bus_list_lock);
David Brownellb1e8f0a2006-01-23 15:25:40 -08002588err_register_root_hub:
Alan Stern6d88e672010-06-09 17:34:17 -04002589 hcd->rh_pollable = 0;
Alan Stern541c7d42010-06-22 16:39:10 -04002590 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
Alan Stern6d88e672010-06-09 17:34:17 -04002591 del_timer_sync(&hcd->rh_timer);
Alan Stern8ec8d202005-04-25 11:25:17 -04002592 hcd->driver->stop(hcd);
Alan Stern96e077a2010-06-09 17:34:05 -04002593 hcd->state = HC_STATE_HALT;
Alan Stern541c7d42010-06-22 16:39:10 -04002594 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
Alan Stern96e077a2010-06-09 17:34:05 -04002595 del_timer_sync(&hcd->rh_timer);
David Brownellb1e8f0a2006-01-23 15:25:40 -08002596err_hcd_driver_start:
Felipe Balbicd704692012-02-29 16:46:23 +02002597 if (usb_hcd_is_primary_hcd(hcd) && hcd->irq > 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 free_irq(irqnum, hcd);
David Brownellb1e8f0a2006-01-23 15:25:40 -08002599err_request_irq:
2600err_hcd_driver_setup:
Alan Stern96e077a2010-06-09 17:34:05 -04002601err_set_rh_speed:
Alan Stern6d88e672010-06-09 17:34:17 -04002602 usb_put_dev(hcd->self.root_hub);
David Brownellb1e8f0a2006-01-23 15:25:40 -08002603err_allocate_root_hub:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 usb_deregister_bus(&hcd->self);
David Brownellb1e8f0a2006-01-23 15:25:40 -08002605err_register_bus:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 hcd_buffer_destroy(hcd);
2607 return retval;
2608}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06002609EXPORT_SYMBOL_GPL(usb_add_hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
2611/**
2612 * usb_remove_hcd - shutdown processing for generic HCDs
2613 * @hcd: the usb_hcd structure to remove
2614 * Context: !in_interrupt()
2615 *
2616 * Disconnects the root hub, then reverses the effects of usb_add_hcd(),
2617 * invoking the HCD's stop() method.
2618 */
2619void usb_remove_hcd(struct usb_hcd *hcd)
2620{
Alan Stern6d88e672010-06-09 17:34:17 -04002621 struct usb_device *rhdev = hcd->self.root_hub;
2622
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 dev_info(hcd->self.controller, "remove, state %x\n", hcd->state);
2624
Alan Stern6d88e672010-06-09 17:34:17 -04002625 usb_get_dev(rhdev);
2626 sysfs_remove_group(&rhdev->dev.kobj, &usb_bus_attr_group);
Alan Stern96e077a2010-06-09 17:34:05 -04002627
Alan Stern9b375962011-03-07 11:11:52 -05002628 clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 if (HC_IS_RUNNING (hcd->state))
2630 hcd->state = HC_STATE_QUIESCING;
2631
2632 dev_dbg(hcd->self.controller, "roothub graceful disconnect\n");
2633 spin_lock_irq (&hcd_root_hub_lock);
2634 hcd->rh_registered = 0;
2635 spin_unlock_irq (&hcd_root_hub_lock);
Alan Stern9ad3d6c2005-11-17 17:10:32 -05002636
Alan Stern9bbdf1e2010-01-08 12:57:28 -05002637#ifdef CONFIG_USB_SUSPEND
Alan Sternd5d4db72007-05-29 16:34:52 -04002638 cancel_work_sync(&hcd->wakeup_work);
Alan Stern6b157c92007-03-13 16:37:30 -04002639#endif
2640
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01002641 mutex_lock(&usb_bus_list_lock);
Alan Stern6d88e672010-06-09 17:34:17 -04002642 usb_disconnect(&rhdev); /* Sets rhdev to NULL */
Arjan van de Ven4186ecf2006-01-11 15:55:29 +01002643 mutex_unlock(&usb_bus_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Alan Stern6d88e672010-06-09 17:34:17 -04002645 /* Prevent any more root-hub status calls from the timer.
2646 * The HCD might still restart the timer (if a port status change
2647 * interrupt occurs), but usb_hcd_poll_rh_status() won't invoke
2648 * the hub_status_data() callback.
2649 */
2650 hcd->rh_pollable = 0;
Alan Stern541c7d42010-06-22 16:39:10 -04002651 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
Alan Stern6d88e672010-06-09 17:34:17 -04002652 del_timer_sync(&hcd->rh_timer);
2653
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 hcd->driver->stop(hcd);
2655 hcd->state = HC_STATE_HALT;
2656
Alan Stern6d88e672010-06-09 17:34:17 -04002657 /* In case the HCD restarted the timer, stop it again. */
Alan Stern541c7d42010-06-22 16:39:10 -04002658 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
Alan Stern1b42ae62007-03-13 11:10:52 -04002659 del_timer_sync(&hcd->rh_timer);
2660
Sarah Sharpc5635432010-10-28 15:40:26 -07002661 if (usb_hcd_is_primary_hcd(hcd)) {
Felipe Balbicd704692012-02-29 16:46:23 +02002662 if (hcd->irq > 0)
Sarah Sharpc5635432010-10-28 15:40:26 -07002663 free_irq(hcd->irq, hcd);
2664 }
Alan Stern6d88e672010-06-09 17:34:17 -04002665
2666 usb_put_dev(hcd->self.root_hub);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 usb_deregister_bus(&hcd->self);
2668 hcd_buffer_destroy(hcd);
2669}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06002670EXPORT_SYMBOL_GPL(usb_remove_hcd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
Aleksey Gorelov64a21d02006-08-08 17:24:08 -07002672void
2673usb_hcd_platform_shutdown(struct platform_device* dev)
2674{
2675 struct usb_hcd *hcd = platform_get_drvdata(dev);
2676
2677 if (hcd->driver->shutdown)
2678 hcd->driver->shutdown(hcd);
2679}
Greg Kroah-Hartman782e70c2008-01-25 11:12:21 -06002680EXPORT_SYMBOL_GPL(usb_hcd_platform_shutdown);
Aleksey Gorelov64a21d02006-08-08 17:24:08 -07002681
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682/*-------------------------------------------------------------------------*/
2683
Pete Zaitcevf150fa12008-11-13 21:31:21 -07002684#if defined(CONFIG_USB_MON) || defined(CONFIG_USB_MON_MODULE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
2686struct usb_mon_operations *mon_ops;
2687
2688/*
2689 * The registration is unlocked.
2690 * We do it this way because we do not want to lock in hot paths.
2691 *
2692 * Notice that the code is minimally error-proof. Because usbmon needs
2693 * symbols from usbcore, usbcore gets referenced and cannot be unloaded first.
2694 */
2695
2696int usb_mon_register (struct usb_mon_operations *ops)
2697{
2698
2699 if (mon_ops)
2700 return -EBUSY;
2701
2702 mon_ops = ops;
2703 mb();
2704 return 0;
2705}
2706EXPORT_SYMBOL_GPL (usb_mon_register);
2707
2708void usb_mon_deregister (void)
2709{
2710
2711 if (mon_ops == NULL) {
2712 printk(KERN_ERR "USB: monitor was not registered\n");
2713 return;
2714 }
2715 mon_ops = NULL;
2716 mb();
2717}
2718EXPORT_SYMBOL_GPL (usb_mon_deregister);
2719
Pete Zaitcevf150fa12008-11-13 21:31:21 -07002720#endif /* CONFIG_USB_MON || CONFIG_USB_MON_MODULE */