GNU Linux-libre 4.14.313-gnu1
[releases.git] / drivers / usb / core / hcd.c
1 /*
2  * (C) Copyright Linus Torvalds 1999
3  * (C) Copyright Johannes Erdfelt 1999-2001
4  * (C) Copyright Andreas Gal 1999
5  * (C) Copyright Gregory P. Smith 1999
6  * (C) Copyright Deti Fliegl 1999
7  * (C) Copyright Randy Dunlap 2000
8  * (C) Copyright David Brownell 2000-2002
9  *
10  * This program is free software; you can redistribute it and/or modify it
11  * under the terms of the GNU General Public License as published by the
12  * Free Software Foundation; either version 2 of the License, or (at your
13  * option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful, but
16  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
17  * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
18  * for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software Foundation,
22  * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  */
24
25 #include <linux/bcd.h>
26 #include <linux/module.h>
27 #include <linux/version.h>
28 #include <linux/kernel.h>
29 #include <linux/sched/task_stack.h>
30 #include <linux/slab.h>
31 #include <linux/completion.h>
32 #include <linux/utsname.h>
33 #include <linux/mm.h>
34 #include <asm/io.h>
35 #include <linux/device.h>
36 #include <linux/dma-mapping.h>
37 #include <linux/mutex.h>
38 #include <asm/irq.h>
39 #include <asm/byteorder.h>
40 #include <asm/unaligned.h>
41 #include <linux/platform_device.h>
42 #include <linux/workqueue.h>
43 #include <linux/pm_runtime.h>
44 #include <linux/types.h>
45
46 #include <linux/phy/phy.h>
47 #include <linux/usb.h>
48 #include <linux/usb/hcd.h>
49 #include <linux/usb/phy.h>
50 #include <linux/usb/otg.h>
51
52 #include "usb.h"
53
54
55 /*-------------------------------------------------------------------------*/
56
57 /*
58  * USB Host Controller Driver framework
59  *
60  * Plugs into usbcore (usb_bus) and lets HCDs share code, minimizing
61  * HCD-specific behaviors/bugs.
62  *
63  * This does error checks, tracks devices and urbs, and delegates to a
64  * "hc_driver" only for code (and data) that really needs to know about
65  * hardware differences.  That includes root hub registers, i/o queues,
66  * and so on ... but as little else as possible.
67  *
68  * Shared code includes most of the "root hub" code (these are emulated,
69  * though each HC's hardware works differently) and PCI glue, plus request
70  * tracking overhead.  The HCD code should only block on spinlocks or on
71  * hardware handshaking; blocking on software events (such as other kernel
72  * threads releasing resources, or completing actions) is all generic.
73  *
74  * Happens the USB 2.0 spec says this would be invisible inside the "USBD",
75  * and includes mostly a "HCDI" (HCD Interface) along with some APIs used
76  * only by the hub driver ... and that neither should be seen or used by
77  * usb client device drivers.
78  *
79  * Contributors of ideas or unattributed patches include: David Brownell,
80  * Roman Weissgaerber, Rory Bolt, Greg Kroah-Hartman, ...
81  *
82  * HISTORY:
83  * 2002-02-21   Pull in most of the usb_bus support from usb.c; some
84  *              associated cleanup.  "usb_hcd" still != "usb_bus".
85  * 2001-12-12   Initial patch version for Linux 2.5.1 kernel.
86  */
87
88 /*-------------------------------------------------------------------------*/
89
90 /* Keep track of which host controller drivers are loaded */
91 unsigned long usb_hcds_loaded;
92 EXPORT_SYMBOL_GPL(usb_hcds_loaded);
93
94 /* host controllers we manage */
95 DEFINE_IDR (usb_bus_idr);
96 EXPORT_SYMBOL_GPL (usb_bus_idr);
97
98 /* used when allocating bus numbers */
99 #define USB_MAXBUS              64
100
101 /* used when updating list of hcds */
102 DEFINE_MUTEX(usb_bus_idr_lock); /* exported only for usbfs */
103 EXPORT_SYMBOL_GPL (usb_bus_idr_lock);
104
105 /* used for controlling access to virtual root hubs */
106 static DEFINE_SPINLOCK(hcd_root_hub_lock);
107
108 /* used when updating an endpoint's URB list */
109 static DEFINE_SPINLOCK(hcd_urb_list_lock);
110
111 /* used to protect against unlinking URBs after the device is gone */
112 static DEFINE_SPINLOCK(hcd_urb_unlink_lock);
113
114 /* wait queue for synchronous unlinks */
115 DECLARE_WAIT_QUEUE_HEAD(usb_kill_urb_queue);
116
117 static inline int is_root_hub(struct usb_device *udev)
118 {
119         return (udev->parent == NULL);
120 }
121
122 /*-------------------------------------------------------------------------*/
123
124 /*
125  * Sharable chunks of root hub code.
126  */
127
128 /*-------------------------------------------------------------------------*/
129 #define KERNEL_REL      bin2bcd(((LINUX_VERSION_CODE >> 16) & 0x0ff))
130 #define KERNEL_VER      bin2bcd(((LINUX_VERSION_CODE >> 8) & 0x0ff))
131
132 /* usb 3.1 root hub device descriptor */
133 static const u8 usb31_rh_dev_descriptor[18] = {
134         0x12,       /*  __u8  bLength; */
135         USB_DT_DEVICE, /* __u8 bDescriptorType; Device */
136         0x10, 0x03, /*  __le16 bcdUSB; v3.1 */
137
138         0x09,       /*  __u8  bDeviceClass; HUB_CLASSCODE */
139         0x00,       /*  __u8  bDeviceSubClass; */
140         0x03,       /*  __u8  bDeviceProtocol; USB 3 hub */
141         0x09,       /*  __u8  bMaxPacketSize0; 2^9 = 512 Bytes */
142
143         0x6b, 0x1d, /*  __le16 idVendor; Linux Foundation 0x1d6b */
144         0x03, 0x00, /*  __le16 idProduct; device 0x0003 */
145         KERNEL_VER, KERNEL_REL, /*  __le16 bcdDevice */
146
147         0x03,       /*  __u8  iManufacturer; */
148         0x02,       /*  __u8  iProduct; */
149         0x01,       /*  __u8  iSerialNumber; */
150         0x01        /*  __u8  bNumConfigurations; */
151 };
152
153 /* usb 3.0 root hub device descriptor */
154 static const u8 usb3_rh_dev_descriptor[18] = {
155         0x12,       /*  __u8  bLength; */
156         USB_DT_DEVICE, /* __u8 bDescriptorType; Device */
157         0x00, 0x03, /*  __le16 bcdUSB; v3.0 */
158
159         0x09,       /*  __u8  bDeviceClass; HUB_CLASSCODE */
160         0x00,       /*  __u8  bDeviceSubClass; */
161         0x03,       /*  __u8  bDeviceProtocol; USB 3.0 hub */
162         0x09,       /*  __u8  bMaxPacketSize0; 2^9 = 512 Bytes */
163
164         0x6b, 0x1d, /*  __le16 idVendor; Linux Foundation 0x1d6b */
165         0x03, 0x00, /*  __le16 idProduct; device 0x0003 */
166         KERNEL_VER, KERNEL_REL, /*  __le16 bcdDevice */
167
168         0x03,       /*  __u8  iManufacturer; */
169         0x02,       /*  __u8  iProduct; */
170         0x01,       /*  __u8  iSerialNumber; */
171         0x01        /*  __u8  bNumConfigurations; */
172 };
173
174 /* usb 2.5 (wireless USB 1.0) root hub device descriptor */
175 static const u8 usb25_rh_dev_descriptor[18] = {
176         0x12,       /*  __u8  bLength; */
177         USB_DT_DEVICE, /* __u8 bDescriptorType; Device */
178         0x50, 0x02, /*  __le16 bcdUSB; v2.5 */
179
180         0x09,       /*  __u8  bDeviceClass; HUB_CLASSCODE */
181         0x00,       /*  __u8  bDeviceSubClass; */
182         0x00,       /*  __u8  bDeviceProtocol; [ usb 2.0 no TT ] */
183         0xFF,       /*  __u8  bMaxPacketSize0; always 0xFF (WUSB Spec 7.4.1). */
184
185         0x6b, 0x1d, /*  __le16 idVendor; Linux Foundation 0x1d6b */
186         0x02, 0x00, /*  __le16 idProduct; device 0x0002 */
187         KERNEL_VER, KERNEL_REL, /*  __le16 bcdDevice */
188
189         0x03,       /*  __u8  iManufacturer; */
190         0x02,       /*  __u8  iProduct; */
191         0x01,       /*  __u8  iSerialNumber; */
192         0x01        /*  __u8  bNumConfigurations; */
193 };
194
195 /* usb 2.0 root hub device descriptor */
196 static const u8 usb2_rh_dev_descriptor[18] = {
197         0x12,       /*  __u8  bLength; */
198         USB_DT_DEVICE, /* __u8 bDescriptorType; Device */
199         0x00, 0x02, /*  __le16 bcdUSB; v2.0 */
200
201         0x09,       /*  __u8  bDeviceClass; HUB_CLASSCODE */
202         0x00,       /*  __u8  bDeviceSubClass; */
203         0x00,       /*  __u8  bDeviceProtocol; [ usb 2.0 no TT ] */
204         0x40,       /*  __u8  bMaxPacketSize0; 64 Bytes */
205
206         0x6b, 0x1d, /*  __le16 idVendor; Linux Foundation 0x1d6b */
207         0x02, 0x00, /*  __le16 idProduct; device 0x0002 */
208         KERNEL_VER, KERNEL_REL, /*  __le16 bcdDevice */
209
210         0x03,       /*  __u8  iManufacturer; */
211         0x02,       /*  __u8  iProduct; */
212         0x01,       /*  __u8  iSerialNumber; */
213         0x01        /*  __u8  bNumConfigurations; */
214 };
215
216 /* no usb 2.0 root hub "device qualifier" descriptor: one speed only */
217
218 /* usb 1.1 root hub device descriptor */
219 static const u8 usb11_rh_dev_descriptor[18] = {
220         0x12,       /*  __u8  bLength; */
221         USB_DT_DEVICE, /* __u8 bDescriptorType; Device */
222         0x10, 0x01, /*  __le16 bcdUSB; v1.1 */
223
224         0x09,       /*  __u8  bDeviceClass; HUB_CLASSCODE */
225         0x00,       /*  __u8  bDeviceSubClass; */
226         0x00,       /*  __u8  bDeviceProtocol; [ low/full speeds only ] */
227         0x40,       /*  __u8  bMaxPacketSize0; 64 Bytes */
228
229         0x6b, 0x1d, /*  __le16 idVendor; Linux Foundation 0x1d6b */
230         0x01, 0x00, /*  __le16 idProduct; device 0x0001 */
231         KERNEL_VER, KERNEL_REL, /*  __le16 bcdDevice */
232
233         0x03,       /*  __u8  iManufacturer; */
234         0x02,       /*  __u8  iProduct; */
235         0x01,       /*  __u8  iSerialNumber; */
236         0x01        /*  __u8  bNumConfigurations; */
237 };
238
239
240 /*-------------------------------------------------------------------------*/
241
242 /* Configuration descriptors for our root hubs */
243
244 static const u8 fs_rh_config_descriptor[] = {
245
246         /* one configuration */
247         0x09,       /*  __u8  bLength; */
248         USB_DT_CONFIG, /* __u8 bDescriptorType; Configuration */
249         0x19, 0x00, /*  __le16 wTotalLength; */
250         0x01,       /*  __u8  bNumInterfaces; (1) */
251         0x01,       /*  __u8  bConfigurationValue; */
252         0x00,       /*  __u8  iConfiguration; */
253         0xc0,       /*  __u8  bmAttributes;
254                                  Bit 7: must be set,
255                                      6: Self-powered,
256                                      5: Remote wakeup,
257                                      4..0: resvd */
258         0x00,       /*  __u8  MaxPower; */
259
260         /* USB 1.1:
261          * USB 2.0, single TT organization (mandatory):
262          *      one interface, protocol 0
263          *
264          * USB 2.0, multiple TT organization (optional):
265          *      two interfaces, protocols 1 (like single TT)
266          *      and 2 (multiple TT mode) ... config is
267          *      sometimes settable
268          *      NOT IMPLEMENTED
269          */
270
271         /* one interface */
272         0x09,       /*  __u8  if_bLength; */
273         USB_DT_INTERFACE,  /* __u8 if_bDescriptorType; Interface */
274         0x00,       /*  __u8  if_bInterfaceNumber; */
275         0x00,       /*  __u8  if_bAlternateSetting; */
276         0x01,       /*  __u8  if_bNumEndpoints; */
277         0x09,       /*  __u8  if_bInterfaceClass; HUB_CLASSCODE */
278         0x00,       /*  __u8  if_bInterfaceSubClass; */
279         0x00,       /*  __u8  if_bInterfaceProtocol; [usb1.1 or single tt] */
280         0x00,       /*  __u8  if_iInterface; */
281
282         /* one endpoint (status change endpoint) */
283         0x07,       /*  __u8  ep_bLength; */
284         USB_DT_ENDPOINT, /* __u8 ep_bDescriptorType; Endpoint */
285         0x81,       /*  __u8  ep_bEndpointAddress; IN Endpoint 1 */
286         0x03,       /*  __u8  ep_bmAttributes; Interrupt */
287         0x02, 0x00, /*  __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8) */
288         0xff        /*  __u8  ep_bInterval; (255ms -- usb 2.0 spec) */
289 };
290
291 static const u8 hs_rh_config_descriptor[] = {
292
293         /* one configuration */
294         0x09,       /*  __u8  bLength; */
295         USB_DT_CONFIG, /* __u8 bDescriptorType; Configuration */
296         0x19, 0x00, /*  __le16 wTotalLength; */
297         0x01,       /*  __u8  bNumInterfaces; (1) */
298         0x01,       /*  __u8  bConfigurationValue; */
299         0x00,       /*  __u8  iConfiguration; */
300         0xc0,       /*  __u8  bmAttributes;
301                                  Bit 7: must be set,
302                                      6: Self-powered,
303                                      5: Remote wakeup,
304                                      4..0: resvd */
305         0x00,       /*  __u8  MaxPower; */
306
307         /* USB 1.1:
308          * USB 2.0, single TT organization (mandatory):
309          *      one interface, protocol 0
310          *
311          * USB 2.0, multiple TT organization (optional):
312          *      two interfaces, protocols 1 (like single TT)
313          *      and 2 (multiple TT mode) ... config is
314          *      sometimes settable
315          *      NOT IMPLEMENTED
316          */
317
318         /* one interface */
319         0x09,       /*  __u8  if_bLength; */
320         USB_DT_INTERFACE, /* __u8 if_bDescriptorType; Interface */
321         0x00,       /*  __u8  if_bInterfaceNumber; */
322         0x00,       /*  __u8  if_bAlternateSetting; */
323         0x01,       /*  __u8  if_bNumEndpoints; */
324         0x09,       /*  __u8  if_bInterfaceClass; HUB_CLASSCODE */
325         0x00,       /*  __u8  if_bInterfaceSubClass; */
326         0x00,       /*  __u8  if_bInterfaceProtocol; [usb1.1 or single tt] */
327         0x00,       /*  __u8  if_iInterface; */
328
329         /* one endpoint (status change endpoint) */
330         0x07,       /*  __u8  ep_bLength; */
331         USB_DT_ENDPOINT, /* __u8 ep_bDescriptorType; Endpoint */
332         0x81,       /*  __u8  ep_bEndpointAddress; IN Endpoint 1 */
333         0x03,       /*  __u8  ep_bmAttributes; Interrupt */
334                     /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8)
335                      * see hub.c:hub_configure() for details. */
336         (USB_MAXCHILDREN + 1 + 7) / 8, 0x00,
337         0x0c        /*  __u8  ep_bInterval; (256ms -- usb 2.0 spec) */
338 };
339
340 static const u8 ss_rh_config_descriptor[] = {
341         /* one configuration */
342         0x09,       /*  __u8  bLength; */
343         USB_DT_CONFIG, /* __u8 bDescriptorType; Configuration */
344         0x1f, 0x00, /*  __le16 wTotalLength; */
345         0x01,       /*  __u8  bNumInterfaces; (1) */
346         0x01,       /*  __u8  bConfigurationValue; */
347         0x00,       /*  __u8  iConfiguration; */
348         0xc0,       /*  __u8  bmAttributes;
349                                  Bit 7: must be set,
350                                      6: Self-powered,
351                                      5: Remote wakeup,
352                                      4..0: resvd */
353         0x00,       /*  __u8  MaxPower; */
354
355         /* one interface */
356         0x09,       /*  __u8  if_bLength; */
357         USB_DT_INTERFACE, /* __u8 if_bDescriptorType; Interface */
358         0x00,       /*  __u8  if_bInterfaceNumber; */
359         0x00,       /*  __u8  if_bAlternateSetting; */
360         0x01,       /*  __u8  if_bNumEndpoints; */
361         0x09,       /*  __u8  if_bInterfaceClass; HUB_CLASSCODE */
362         0x00,       /*  __u8  if_bInterfaceSubClass; */
363         0x00,       /*  __u8  if_bInterfaceProtocol; */
364         0x00,       /*  __u8  if_iInterface; */
365
366         /* one endpoint (status change endpoint) */
367         0x07,       /*  __u8  ep_bLength; */
368         USB_DT_ENDPOINT, /* __u8 ep_bDescriptorType; Endpoint */
369         0x81,       /*  __u8  ep_bEndpointAddress; IN Endpoint 1 */
370         0x03,       /*  __u8  ep_bmAttributes; Interrupt */
371                     /* __le16 ep_wMaxPacketSize; 1 + (MAX_ROOT_PORTS / 8)
372                      * see hub.c:hub_configure() for details. */
373         (USB_MAXCHILDREN + 1 + 7) / 8, 0x00,
374         0x0c,       /*  __u8  ep_bInterval; (256ms -- usb 2.0 spec) */
375
376         /* one SuperSpeed endpoint companion descriptor */
377         0x06,        /* __u8 ss_bLength */
378         USB_DT_SS_ENDPOINT_COMP, /* __u8 ss_bDescriptorType; SuperSpeed EP */
379                      /* Companion */
380         0x00,        /* __u8 ss_bMaxBurst; allows 1 TX between ACKs */
381         0x00,        /* __u8 ss_bmAttributes; 1 packet per service interval */
382         0x02, 0x00   /* __le16 ss_wBytesPerInterval; 15 bits for max 15 ports */
383 };
384
385 /* authorized_default behaviour:
386  * -1 is authorized for all devices except wireless (old behaviour)
387  * 0 is unauthorized for all devices
388  * 1 is authorized for all devices
389  */
390 static int authorized_default = -1;
391 module_param(authorized_default, int, S_IRUGO|S_IWUSR);
392 MODULE_PARM_DESC(authorized_default,
393                 "Default USB device authorization: 0 is not authorized, 1 is "
394                 "authorized, -1 is authorized except for wireless USB (default, "
395                 "old behaviour");
396 /*-------------------------------------------------------------------------*/
397
398 /**
399  * ascii2desc() - Helper routine for producing UTF-16LE string descriptors
400  * @s: Null-terminated ASCII (actually ISO-8859-1) string
401  * @buf: Buffer for USB string descriptor (header + UTF-16LE)
402  * @len: Length (in bytes; may be odd) of descriptor buffer.
403  *
404  * Return: The number of bytes filled in: 2 + 2*strlen(s) or @len,
405  * whichever is less.
406  *
407  * Note:
408  * USB String descriptors can contain at most 126 characters; input
409  * strings longer than that are truncated.
410  */
411 static unsigned
412 ascii2desc(char const *s, u8 *buf, unsigned len)
413 {
414         unsigned n, t = 2 + 2*strlen(s);
415
416         if (t > 254)
417                 t = 254;        /* Longest possible UTF string descriptor */
418         if (len > t)
419                 len = t;
420
421         t += USB_DT_STRING << 8;        /* Now t is first 16 bits to store */
422
423         n = len;
424         while (n--) {
425                 *buf++ = t;
426                 if (!n--)
427                         break;
428                 *buf++ = t >> 8;
429                 t = (unsigned char)*s++;
430         }
431         return len;
432 }
433
434 /**
435  * rh_string() - provides string descriptors for root hub
436  * @id: the string ID number (0: langids, 1: serial #, 2: product, 3: vendor)
437  * @hcd: the host controller for this root hub
438  * @data: buffer for output packet
439  * @len: length of the provided buffer
440  *
441  * Produces either a manufacturer, product or serial number string for the
442  * virtual root hub device.
443  *
444  * Return: The number of bytes filled in: the length of the descriptor or
445  * of the provided buffer, whichever is less.
446  */
447 static unsigned
448 rh_string(int id, struct usb_hcd const *hcd, u8 *data, unsigned len)
449 {
450         char buf[100];
451         char const *s;
452         static char const langids[4] = {4, USB_DT_STRING, 0x09, 0x04};
453
454         /* language ids */
455         switch (id) {
456         case 0:
457                 /* Array of LANGID codes (0x0409 is MSFT-speak for "en-us") */
458                 /* See http://www.usb.org/developers/docs/USB_LANGIDs.pdf */
459                 if (len > 4)
460                         len = 4;
461                 memcpy(data, langids, len);
462                 return len;
463         case 1:
464                 /* Serial number */
465                 s = hcd->self.bus_name;
466                 break;
467         case 2:
468                 /* Product name */
469                 s = hcd->product_desc;
470                 break;
471         case 3:
472                 /* Manufacturer */
473                 snprintf (buf, sizeof buf, "%s %s %s", init_utsname()->sysname,
474                         init_utsname()->release, hcd->driver->description);
475                 s = buf;
476                 break;
477         default:
478                 /* Can't happen; caller guarantees it */
479                 return 0;
480         }
481
482         return ascii2desc(s, data, len);
483 }
484
485
486 /* Root hub control transfers execute synchronously */
487 static int rh_call_control (struct usb_hcd *hcd, struct urb *urb)
488 {
489         struct usb_ctrlrequest *cmd;
490         u16             typeReq, wValue, wIndex, wLength;
491         u8              *ubuf = urb->transfer_buffer;
492         unsigned        len = 0;
493         int             status;
494         u8              patch_wakeup = 0;
495         u8              patch_protocol = 0;
496         u16             tbuf_size;
497         u8              *tbuf = NULL;
498         const u8        *bufp;
499
500         might_sleep();
501
502         spin_lock_irq(&hcd_root_hub_lock);
503         status = usb_hcd_link_urb_to_ep(hcd, urb);
504         spin_unlock_irq(&hcd_root_hub_lock);
505         if (status)
506                 return status;
507         urb->hcpriv = hcd;      /* Indicate it's queued */
508
509         cmd = (struct usb_ctrlrequest *) urb->setup_packet;
510         typeReq  = (cmd->bRequestType << 8) | cmd->bRequest;
511         wValue   = le16_to_cpu (cmd->wValue);
512         wIndex   = le16_to_cpu (cmd->wIndex);
513         wLength  = le16_to_cpu (cmd->wLength);
514
515         if (wLength > urb->transfer_buffer_length)
516                 goto error;
517
518         /*
519          * tbuf should be at least as big as the
520          * USB hub descriptor.
521          */
522         tbuf_size =  max_t(u16, sizeof(struct usb_hub_descriptor), wLength);
523         tbuf = kzalloc(tbuf_size, GFP_KERNEL);
524         if (!tbuf) {
525                 status = -ENOMEM;
526                 goto err_alloc;
527         }
528
529         bufp = tbuf;
530
531
532         urb->actual_length = 0;
533         switch (typeReq) {
534
535         /* DEVICE REQUESTS */
536
537         /* The root hub's remote wakeup enable bit is implemented using
538          * driver model wakeup flags.  If this system supports wakeup
539          * through USB, userspace may change the default "allow wakeup"
540          * policy through sysfs or these calls.
541          *
542          * Most root hubs support wakeup from downstream devices, for
543          * runtime power management (disabling USB clocks and reducing
544          * VBUS power usage).  However, not all of them do so; silicon,
545          * board, and BIOS bugs here are not uncommon, so these can't
546          * be treated quite like external hubs.
547          *
548          * Likewise, not all root hubs will pass wakeup events upstream,
549          * to wake up the whole system.  So don't assume root hub and
550          * controller capabilities are identical.
551          */
552
553         case DeviceRequest | USB_REQ_GET_STATUS:
554                 tbuf[0] = (device_may_wakeup(&hcd->self.root_hub->dev)
555                                         << USB_DEVICE_REMOTE_WAKEUP)
556                                 | (1 << USB_DEVICE_SELF_POWERED);
557                 tbuf[1] = 0;
558                 len = 2;
559                 break;
560         case DeviceOutRequest | USB_REQ_CLEAR_FEATURE:
561                 if (wValue == USB_DEVICE_REMOTE_WAKEUP)
562                         device_set_wakeup_enable(&hcd->self.root_hub->dev, 0);
563                 else
564                         goto error;
565                 break;
566         case DeviceOutRequest | USB_REQ_SET_FEATURE:
567                 if (device_can_wakeup(&hcd->self.root_hub->dev)
568                                 && wValue == USB_DEVICE_REMOTE_WAKEUP)
569                         device_set_wakeup_enable(&hcd->self.root_hub->dev, 1);
570                 else
571                         goto error;
572                 break;
573         case DeviceRequest | USB_REQ_GET_CONFIGURATION:
574                 tbuf[0] = 1;
575                 len = 1;
576                         /* FALLTHROUGH */
577         case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
578                 break;
579         case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
580                 switch (wValue & 0xff00) {
581                 case USB_DT_DEVICE << 8:
582                         switch (hcd->speed) {
583                         case HCD_USB31:
584                                 bufp = usb31_rh_dev_descriptor;
585                                 break;
586                         case HCD_USB3:
587                                 bufp = usb3_rh_dev_descriptor;
588                                 break;
589                         case HCD_USB25:
590                                 bufp = usb25_rh_dev_descriptor;
591                                 break;
592                         case HCD_USB2:
593                                 bufp = usb2_rh_dev_descriptor;
594                                 break;
595                         case HCD_USB11:
596                                 bufp = usb11_rh_dev_descriptor;
597                                 break;
598                         default:
599                                 goto error;
600                         }
601                         len = 18;
602                         if (hcd->has_tt)
603                                 patch_protocol = 1;
604                         break;
605                 case USB_DT_CONFIG << 8:
606                         switch (hcd->speed) {
607                         case HCD_USB31:
608                         case HCD_USB3:
609                                 bufp = ss_rh_config_descriptor;
610                                 len = sizeof ss_rh_config_descriptor;
611                                 break;
612                         case HCD_USB25:
613                         case HCD_USB2:
614                                 bufp = hs_rh_config_descriptor;
615                                 len = sizeof hs_rh_config_descriptor;
616                                 break;
617                         case HCD_USB11:
618                                 bufp = fs_rh_config_descriptor;
619                                 len = sizeof fs_rh_config_descriptor;
620                                 break;
621                         default:
622                                 goto error;
623                         }
624                         if (device_can_wakeup(&hcd->self.root_hub->dev))
625                                 patch_wakeup = 1;
626                         break;
627                 case USB_DT_STRING << 8:
628                         if ((wValue & 0xff) < 4)
629                                 urb->actual_length = rh_string(wValue & 0xff,
630                                                 hcd, ubuf, wLength);
631                         else /* unsupported IDs --> "protocol stall" */
632                                 goto error;
633                         break;
634                 case USB_DT_BOS << 8:
635                         goto nongeneric;
636                 default:
637                         goto error;
638                 }
639                 break;
640         case DeviceRequest | USB_REQ_GET_INTERFACE:
641                 tbuf[0] = 0;
642                 len = 1;
643                         /* FALLTHROUGH */
644         case DeviceOutRequest | USB_REQ_SET_INTERFACE:
645                 break;
646         case DeviceOutRequest | USB_REQ_SET_ADDRESS:
647                 /* wValue == urb->dev->devaddr */
648                 dev_dbg (hcd->self.controller, "root hub device address %d\n",
649                         wValue);
650                 break;
651
652         /* INTERFACE REQUESTS (no defined feature/status flags) */
653
654         /* ENDPOINT REQUESTS */
655
656         case EndpointRequest | USB_REQ_GET_STATUS:
657                 /* ENDPOINT_HALT flag */
658                 tbuf[0] = 0;
659                 tbuf[1] = 0;
660                 len = 2;
661                         /* FALLTHROUGH */
662         case EndpointOutRequest | USB_REQ_CLEAR_FEATURE:
663         case EndpointOutRequest | USB_REQ_SET_FEATURE:
664                 dev_dbg (hcd->self.controller, "no endpoint features yet\n");
665                 break;
666
667         /* CLASS REQUESTS (and errors) */
668
669         default:
670 nongeneric:
671                 /* non-generic request */
672                 switch (typeReq) {
673                 case GetHubStatus:
674                         len = 4;
675                         break;
676                 case GetPortStatus:
677                         if (wValue == HUB_PORT_STATUS)
678                                 len = 4;
679                         else
680                                 /* other port status types return 8 bytes */
681                                 len = 8;
682                         break;
683                 case GetHubDescriptor:
684                         len = sizeof (struct usb_hub_descriptor);
685                         break;
686                 case DeviceRequest | USB_REQ_GET_DESCRIPTOR:
687                         /* len is returned by hub_control */
688                         break;
689                 }
690                 status = hcd->driver->hub_control (hcd,
691                         typeReq, wValue, wIndex,
692                         tbuf, wLength);
693
694                 if (typeReq == GetHubDescriptor)
695                         usb_hub_adjust_deviceremovable(hcd->self.root_hub,
696                                 (struct usb_hub_descriptor *)tbuf);
697                 break;
698 error:
699                 /* "protocol stall" on error */
700                 status = -EPIPE;
701         }
702
703         if (status < 0) {
704                 len = 0;
705                 if (status != -EPIPE) {
706                         dev_dbg (hcd->self.controller,
707                                 "CTRL: TypeReq=0x%x val=0x%x "
708                                 "idx=0x%x len=%d ==> %d\n",
709                                 typeReq, wValue, wIndex,
710                                 wLength, status);
711                 }
712         } else if (status > 0) {
713                 /* hub_control may return the length of data copied. */
714                 len = status;
715                 status = 0;
716         }
717         if (len) {
718                 if (urb->transfer_buffer_length < len)
719                         len = urb->transfer_buffer_length;
720                 urb->actual_length = len;
721                 /* always USB_DIR_IN, toward host */
722                 memcpy (ubuf, bufp, len);
723
724                 /* report whether RH hardware supports remote wakeup */
725                 if (patch_wakeup &&
726                                 len > offsetof (struct usb_config_descriptor,
727                                                 bmAttributes))
728                         ((struct usb_config_descriptor *)ubuf)->bmAttributes
729                                 |= USB_CONFIG_ATT_WAKEUP;
730
731                 /* report whether RH hardware has an integrated TT */
732                 if (patch_protocol &&
733                                 len > offsetof(struct usb_device_descriptor,
734                                                 bDeviceProtocol))
735                         ((struct usb_device_descriptor *) ubuf)->
736                                 bDeviceProtocol = USB_HUB_PR_HS_SINGLE_TT;
737         }
738
739         kfree(tbuf);
740  err_alloc:
741
742         /* any errors get returned through the urb completion */
743         spin_lock_irq(&hcd_root_hub_lock);
744         usb_hcd_unlink_urb_from_ep(hcd, urb);
745         usb_hcd_giveback_urb(hcd, urb, status);
746         spin_unlock_irq(&hcd_root_hub_lock);
747         return 0;
748 }
749
750 /*-------------------------------------------------------------------------*/
751
752 /*
753  * Root Hub interrupt transfers are polled using a timer if the
754  * driver requests it; otherwise the driver is responsible for
755  * calling usb_hcd_poll_rh_status() when an event occurs.
756  *
757  * Completions are called in_interrupt(), but they may or may not
758  * be in_irq().
759  */
760 void usb_hcd_poll_rh_status(struct usb_hcd *hcd)
761 {
762         struct urb      *urb;
763         int             length;
764         int             status;
765         unsigned long   flags;
766         char            buffer[6];      /* Any root hubs with > 31 ports? */
767
768         if (unlikely(!hcd->rh_pollable))
769                 return;
770         if (!hcd->uses_new_polling && !hcd->status_urb)
771                 return;
772
773         length = hcd->driver->hub_status_data(hcd, buffer);
774         if (length > 0) {
775
776                 /* try to complete the status urb */
777                 spin_lock_irqsave(&hcd_root_hub_lock, flags);
778                 urb = hcd->status_urb;
779                 if (urb) {
780                         clear_bit(HCD_FLAG_POLL_PENDING, &hcd->flags);
781                         hcd->status_urb = NULL;
782                         if (urb->transfer_buffer_length >= length) {
783                                 status = 0;
784                         } else {
785                                 status = -EOVERFLOW;
786                                 length = urb->transfer_buffer_length;
787                         }
788                         urb->actual_length = length;
789                         memcpy(urb->transfer_buffer, buffer, length);
790
791                         usb_hcd_unlink_urb_from_ep(hcd, urb);
792                         usb_hcd_giveback_urb(hcd, urb, status);
793                 } else {
794                         length = 0;
795                         set_bit(HCD_FLAG_POLL_PENDING, &hcd->flags);
796                 }
797                 spin_unlock_irqrestore(&hcd_root_hub_lock, flags);
798         }
799
800         /* The USB 2.0 spec says 256 ms.  This is close enough and won't
801          * exceed that limit if HZ is 100. The math is more clunky than
802          * maybe expected, this is to make sure that all timers for USB devices
803          * fire at the same time to give the CPU a break in between */
804         if (hcd->uses_new_polling ? HCD_POLL_RH(hcd) :
805                         (length == 0 && hcd->status_urb != NULL))
806                 mod_timer (&hcd->rh_timer, (jiffies/(HZ/4) + 1) * (HZ/4));
807 }
808 EXPORT_SYMBOL_GPL(usb_hcd_poll_rh_status);
809
810 /* timer callback */
811 static void rh_timer_func (unsigned long _hcd)
812 {
813         usb_hcd_poll_rh_status((struct usb_hcd *) _hcd);
814 }
815
816 /*-------------------------------------------------------------------------*/
817
818 static int rh_queue_status (struct usb_hcd *hcd, struct urb *urb)
819 {
820         int             retval;
821         unsigned long   flags;
822         unsigned        len = 1 + (urb->dev->maxchild / 8);
823
824         spin_lock_irqsave (&hcd_root_hub_lock, flags);
825         if (hcd->status_urb || urb->transfer_buffer_length < len) {
826                 dev_dbg (hcd->self.controller, "not queuing rh status urb\n");
827                 retval = -EINVAL;
828                 goto done;
829         }
830
831         retval = usb_hcd_link_urb_to_ep(hcd, urb);
832         if (retval)
833                 goto done;
834
835         hcd->status_urb = urb;
836         urb->hcpriv = hcd;      /* indicate it's queued */
837         if (!hcd->uses_new_polling)
838                 mod_timer(&hcd->rh_timer, (jiffies/(HZ/4) + 1) * (HZ/4));
839
840         /* If a status change has already occurred, report it ASAP */
841         else if (HCD_POLL_PENDING(hcd))
842                 mod_timer(&hcd->rh_timer, jiffies);
843         retval = 0;
844  done:
845         spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
846         return retval;
847 }
848
849 static int rh_urb_enqueue (struct usb_hcd *hcd, struct urb *urb)
850 {
851         if (usb_endpoint_xfer_int(&urb->ep->desc))
852                 return rh_queue_status (hcd, urb);
853         if (usb_endpoint_xfer_control(&urb->ep->desc))
854                 return rh_call_control (hcd, urb);
855         return -EINVAL;
856 }
857
858 /*-------------------------------------------------------------------------*/
859
860 /* Unlinks of root-hub control URBs are legal, but they don't do anything
861  * since these URBs always execute synchronously.
862  */
863 static int usb_rh_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
864 {
865         unsigned long   flags;
866         int             rc;
867
868         spin_lock_irqsave(&hcd_root_hub_lock, flags);
869         rc = usb_hcd_check_unlink_urb(hcd, urb, status);
870         if (rc)
871                 goto done;
872
873         if (usb_endpoint_num(&urb->ep->desc) == 0) {    /* Control URB */
874                 ;       /* Do nothing */
875
876         } else {                                /* Status URB */
877                 if (!hcd->uses_new_polling)
878                         del_timer (&hcd->rh_timer);
879                 if (urb == hcd->status_urb) {
880                         hcd->status_urb = NULL;
881                         usb_hcd_unlink_urb_from_ep(hcd, urb);
882                         usb_hcd_giveback_urb(hcd, urb, status);
883                 }
884         }
885  done:
886         spin_unlock_irqrestore(&hcd_root_hub_lock, flags);
887         return rc;
888 }
889
890
891
892 /*
893  * Show & store the current value of authorized_default
894  */
895 static ssize_t authorized_default_show(struct device *dev,
896                                        struct device_attribute *attr, char *buf)
897 {
898         struct usb_device *rh_usb_dev = to_usb_device(dev);
899         struct usb_bus *usb_bus = rh_usb_dev->bus;
900         struct usb_hcd *hcd;
901
902         hcd = bus_to_hcd(usb_bus);
903         return snprintf(buf, PAGE_SIZE, "%u\n", !!HCD_DEV_AUTHORIZED(hcd));
904 }
905
906 static ssize_t authorized_default_store(struct device *dev,
907                                         struct device_attribute *attr,
908                                         const char *buf, size_t size)
909 {
910         ssize_t result;
911         unsigned val;
912         struct usb_device *rh_usb_dev = to_usb_device(dev);
913         struct usb_bus *usb_bus = rh_usb_dev->bus;
914         struct usb_hcd *hcd;
915
916         hcd = bus_to_hcd(usb_bus);
917         result = sscanf(buf, "%u\n", &val);
918         if (result == 1) {
919                 if (val)
920                         set_bit(HCD_FLAG_DEV_AUTHORIZED, &hcd->flags);
921                 else
922                         clear_bit(HCD_FLAG_DEV_AUTHORIZED, &hcd->flags);
923
924                 result = size;
925         } else {
926                 result = -EINVAL;
927         }
928         return result;
929 }
930 static DEVICE_ATTR_RW(authorized_default);
931
932 /*
933  * interface_authorized_default_show - show default authorization status
934  * for USB interfaces
935  *
936  * note: interface_authorized_default is the default value
937  *       for initializing the authorized attribute of interfaces
938  */
939 static ssize_t interface_authorized_default_show(struct device *dev,
940                 struct device_attribute *attr, char *buf)
941 {
942         struct usb_device *usb_dev = to_usb_device(dev);
943         struct usb_hcd *hcd = bus_to_hcd(usb_dev->bus);
944
945         return sprintf(buf, "%u\n", !!HCD_INTF_AUTHORIZED(hcd));
946 }
947
948 /*
949  * interface_authorized_default_store - store default authorization status
950  * for USB interfaces
951  *
952  * note: interface_authorized_default is the default value
953  *       for initializing the authorized attribute of interfaces
954  */
955 static ssize_t interface_authorized_default_store(struct device *dev,
956                 struct device_attribute *attr, const char *buf, size_t count)
957 {
958         struct usb_device *usb_dev = to_usb_device(dev);
959         struct usb_hcd *hcd = bus_to_hcd(usb_dev->bus);
960         int rc = count;
961         bool val;
962
963         if (strtobool(buf, &val) != 0)
964                 return -EINVAL;
965
966         if (val)
967                 set_bit(HCD_FLAG_INTF_AUTHORIZED, &hcd->flags);
968         else
969                 clear_bit(HCD_FLAG_INTF_AUTHORIZED, &hcd->flags);
970
971         return rc;
972 }
973 static DEVICE_ATTR_RW(interface_authorized_default);
974
975 /* Group all the USB bus attributes */
976 static struct attribute *usb_bus_attrs[] = {
977                 &dev_attr_authorized_default.attr,
978                 &dev_attr_interface_authorized_default.attr,
979                 NULL,
980 };
981
982 static const struct attribute_group usb_bus_attr_group = {
983         .name = NULL,   /* we want them in the same directory */
984         .attrs = usb_bus_attrs,
985 };
986
987
988
989 /*-------------------------------------------------------------------------*/
990
991 /**
992  * usb_bus_init - shared initialization code
993  * @bus: the bus structure being initialized
994  *
995  * This code is used to initialize a usb_bus structure, memory for which is
996  * separately managed.
997  */
998 static void usb_bus_init (struct usb_bus *bus)
999 {
1000         memset (&bus->devmap, 0, sizeof(struct usb_devmap));
1001
1002         bus->devnum_next = 1;
1003
1004         bus->root_hub = NULL;
1005         bus->busnum = -1;
1006         bus->bandwidth_allocated = 0;
1007         bus->bandwidth_int_reqs  = 0;
1008         bus->bandwidth_isoc_reqs = 0;
1009         mutex_init(&bus->devnum_next_mutex);
1010 }
1011
1012 /*-------------------------------------------------------------------------*/
1013
1014 /**
1015  * usb_register_bus - registers the USB host controller with the usb core
1016  * @bus: pointer to the bus to register
1017  * Context: !in_interrupt()
1018  *
1019  * Assigns a bus number, and links the controller into usbcore data
1020  * structures so that it can be seen by scanning the bus list.
1021  *
1022  * Return: 0 if successful. A negative error code otherwise.
1023  */
1024 static int usb_register_bus(struct usb_bus *bus)
1025 {
1026         int result = -E2BIG;
1027         int busnum;
1028
1029         mutex_lock(&usb_bus_idr_lock);
1030         busnum = idr_alloc(&usb_bus_idr, bus, 1, USB_MAXBUS, GFP_KERNEL);
1031         if (busnum < 0) {
1032                 pr_err("%s: failed to get bus number\n", usbcore_name);
1033                 goto error_find_busnum;
1034         }
1035         bus->busnum = busnum;
1036         mutex_unlock(&usb_bus_idr_lock);
1037
1038         usb_notify_add_bus(bus);
1039
1040         dev_info (bus->controller, "new USB bus registered, assigned bus "
1041                   "number %d\n", bus->busnum);
1042         return 0;
1043
1044 error_find_busnum:
1045         mutex_unlock(&usb_bus_idr_lock);
1046         return result;
1047 }
1048
1049 /**
1050  * usb_deregister_bus - deregisters the USB host controller
1051  * @bus: pointer to the bus to deregister
1052  * Context: !in_interrupt()
1053  *
1054  * Recycles the bus number, and unlinks the controller from usbcore data
1055  * structures so that it won't be seen by scanning the bus list.
1056  */
1057 static void usb_deregister_bus (struct usb_bus *bus)
1058 {
1059         dev_info (bus->controller, "USB bus %d deregistered\n", bus->busnum);
1060
1061         /*
1062          * NOTE: make sure that all the devices are removed by the
1063          * controller code, as well as having it call this when cleaning
1064          * itself up
1065          */
1066         mutex_lock(&usb_bus_idr_lock);
1067         idr_remove(&usb_bus_idr, bus->busnum);
1068         mutex_unlock(&usb_bus_idr_lock);
1069
1070         usb_notify_remove_bus(bus);
1071 }
1072
1073 /**
1074  * register_root_hub - called by usb_add_hcd() to register a root hub
1075  * @hcd: host controller for this root hub
1076  *
1077  * This function registers the root hub with the USB subsystem.  It sets up
1078  * the device properly in the device tree and then calls usb_new_device()
1079  * to register the usb device.  It also assigns the root hub's USB address
1080  * (always 1).
1081  *
1082  * Return: 0 if successful. A negative error code otherwise.
1083  */
1084 static int register_root_hub(struct usb_hcd *hcd)
1085 {
1086         struct device *parent_dev = hcd->self.controller;
1087         struct usb_device *usb_dev = hcd->self.root_hub;
1088         const int devnum = 1;
1089         int retval;
1090
1091         usb_dev->devnum = devnum;
1092         usb_dev->bus->devnum_next = devnum + 1;
1093         memset (&usb_dev->bus->devmap.devicemap, 0,
1094                         sizeof usb_dev->bus->devmap.devicemap);
1095         set_bit (devnum, usb_dev->bus->devmap.devicemap);
1096         usb_set_device_state(usb_dev, USB_STATE_ADDRESS);
1097
1098         mutex_lock(&usb_bus_idr_lock);
1099
1100         usb_dev->ep0.desc.wMaxPacketSize = cpu_to_le16(64);
1101         retval = usb_get_device_descriptor(usb_dev, USB_DT_DEVICE_SIZE);
1102         if (retval != sizeof usb_dev->descriptor) {
1103                 mutex_unlock(&usb_bus_idr_lock);
1104                 dev_dbg (parent_dev, "can't read %s device descriptor %d\n",
1105                                 dev_name(&usb_dev->dev), retval);
1106                 return (retval < 0) ? retval : -EMSGSIZE;
1107         }
1108
1109         if (le16_to_cpu(usb_dev->descriptor.bcdUSB) >= 0x0201) {
1110                 retval = usb_get_bos_descriptor(usb_dev);
1111                 if (!retval) {
1112                         usb_dev->lpm_capable = usb_device_supports_lpm(usb_dev);
1113                 } else if (usb_dev->speed >= USB_SPEED_SUPER) {
1114                         mutex_unlock(&usb_bus_idr_lock);
1115                         dev_dbg(parent_dev, "can't read %s bos descriptor %d\n",
1116                                         dev_name(&usb_dev->dev), retval);
1117                         return retval;
1118                 }
1119         }
1120
1121         retval = usb_new_device (usb_dev);
1122         if (retval) {
1123                 dev_err (parent_dev, "can't register root hub for %s, %d\n",
1124                                 dev_name(&usb_dev->dev), retval);
1125         } else {
1126                 spin_lock_irq (&hcd_root_hub_lock);
1127                 hcd->rh_registered = 1;
1128                 spin_unlock_irq (&hcd_root_hub_lock);
1129
1130                 /* Did the HC die before the root hub was registered? */
1131                 if (HCD_DEAD(hcd))
1132                         usb_hc_died (hcd);      /* This time clean up */
1133         }
1134         mutex_unlock(&usb_bus_idr_lock);
1135
1136         return retval;
1137 }
1138
1139 /*
1140  * usb_hcd_start_port_resume - a root-hub port is sending a resume signal
1141  * @bus: the bus which the root hub belongs to
1142  * @portnum: the port which is being resumed
1143  *
1144  * HCDs should call this function when they know that a resume signal is
1145  * being sent to a root-hub port.  The root hub will be prevented from
1146  * going into autosuspend until usb_hcd_end_port_resume() is called.
1147  *
1148  * The bus's private lock must be held by the caller.
1149  */
1150 void usb_hcd_start_port_resume(struct usb_bus *bus, int portnum)
1151 {
1152         unsigned bit = 1 << portnum;
1153
1154         if (!(bus->resuming_ports & bit)) {
1155                 bus->resuming_ports |= bit;
1156                 pm_runtime_get_noresume(&bus->root_hub->dev);
1157         }
1158 }
1159 EXPORT_SYMBOL_GPL(usb_hcd_start_port_resume);
1160
1161 /*
1162  * usb_hcd_end_port_resume - a root-hub port has stopped sending a resume signal
1163  * @bus: the bus which the root hub belongs to
1164  * @portnum: the port which is being resumed
1165  *
1166  * HCDs should call this function when they know that a resume signal has
1167  * stopped being sent to a root-hub port.  The root hub will be allowed to
1168  * autosuspend again.
1169  *
1170  * The bus's private lock must be held by the caller.
1171  */
1172 void usb_hcd_end_port_resume(struct usb_bus *bus, int portnum)
1173 {
1174         unsigned bit = 1 << portnum;
1175
1176         if (bus->resuming_ports & bit) {
1177                 bus->resuming_ports &= ~bit;
1178                 pm_runtime_put_noidle(&bus->root_hub->dev);
1179         }
1180 }
1181 EXPORT_SYMBOL_GPL(usb_hcd_end_port_resume);
1182
1183 /*-------------------------------------------------------------------------*/
1184
1185 /**
1186  * usb_calc_bus_time - approximate periodic transaction time in nanoseconds
1187  * @speed: from dev->speed; USB_SPEED_{LOW,FULL,HIGH}
1188  * @is_input: true iff the transaction sends data to the host
1189  * @isoc: true for isochronous transactions, false for interrupt ones
1190  * @bytecount: how many bytes in the transaction.
1191  *
1192  * Return: Approximate bus time in nanoseconds for a periodic transaction.
1193  *
1194  * Note:
1195  * See USB 2.0 spec section 5.11.3; only periodic transfers need to be
1196  * scheduled in software, this function is only used for such scheduling.
1197  */
1198 long usb_calc_bus_time (int speed, int is_input, int isoc, int bytecount)
1199 {
1200         unsigned long   tmp;
1201
1202         switch (speed) {
1203         case USB_SPEED_LOW:     /* INTR only */
1204                 if (is_input) {
1205                         tmp = (67667L * (31L + 10L * BitTime (bytecount))) / 1000L;
1206                         return 64060L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp;
1207                 } else {
1208                         tmp = (66700L * (31L + 10L * BitTime (bytecount))) / 1000L;
1209                         return 64107L + (2 * BW_HUB_LS_SETUP) + BW_HOST_DELAY + tmp;
1210                 }
1211         case USB_SPEED_FULL:    /* ISOC or INTR */
1212                 if (isoc) {
1213                         tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
1214                         return ((is_input) ? 7268L : 6265L) + BW_HOST_DELAY + tmp;
1215                 } else {
1216                         tmp = (8354L * (31L + 10L * BitTime (bytecount))) / 1000L;
1217                         return 9107L + BW_HOST_DELAY + tmp;
1218                 }
1219         case USB_SPEED_HIGH:    /* ISOC or INTR */
1220                 /* FIXME adjust for input vs output */
1221                 if (isoc)
1222                         tmp = HS_NSECS_ISO (bytecount);
1223                 else
1224                         tmp = HS_NSECS (bytecount);
1225                 return tmp;
1226         default:
1227                 pr_debug ("%s: bogus device speed!\n", usbcore_name);
1228                 return -1;
1229         }
1230 }
1231 EXPORT_SYMBOL_GPL(usb_calc_bus_time);
1232
1233
1234 /*-------------------------------------------------------------------------*/
1235
1236 /*
1237  * Generic HC operations.
1238  */
1239
1240 /*-------------------------------------------------------------------------*/
1241
1242 /**
1243  * usb_hcd_link_urb_to_ep - add an URB to its endpoint queue
1244  * @hcd: host controller to which @urb was submitted
1245  * @urb: URB being submitted
1246  *
1247  * Host controller drivers should call this routine in their enqueue()
1248  * method.  The HCD's private spinlock must be held and interrupts must
1249  * be disabled.  The actions carried out here are required for URB
1250  * submission, as well as for endpoint shutdown and for usb_kill_urb.
1251  *
1252  * Return: 0 for no error, otherwise a negative error code (in which case
1253  * the enqueue() method must fail).  If no error occurs but enqueue() fails
1254  * anyway, it must call usb_hcd_unlink_urb_from_ep() before releasing
1255  * the private spinlock and returning.
1256  */
1257 int usb_hcd_link_urb_to_ep(struct usb_hcd *hcd, struct urb *urb)
1258 {
1259         int             rc = 0;
1260
1261         spin_lock(&hcd_urb_list_lock);
1262
1263         /* Check that the URB isn't being killed */
1264         if (unlikely(atomic_read(&urb->reject))) {
1265                 rc = -EPERM;
1266                 goto done;
1267         }
1268
1269         if (unlikely(!urb->ep->enabled)) {
1270                 rc = -ENOENT;
1271                 goto done;
1272         }
1273
1274         if (unlikely(!urb->dev->can_submit)) {
1275                 rc = -EHOSTUNREACH;
1276                 goto done;
1277         }
1278
1279         /*
1280          * Check the host controller's state and add the URB to the
1281          * endpoint's queue.
1282          */
1283         if (HCD_RH_RUNNING(hcd)) {
1284                 urb->unlinked = 0;
1285                 list_add_tail(&urb->urb_list, &urb->ep->urb_list);
1286         } else {
1287                 rc = -ESHUTDOWN;
1288                 goto done;
1289         }
1290  done:
1291         spin_unlock(&hcd_urb_list_lock);
1292         return rc;
1293 }
1294 EXPORT_SYMBOL_GPL(usb_hcd_link_urb_to_ep);
1295
1296 /**
1297  * usb_hcd_check_unlink_urb - check whether an URB may be unlinked
1298  * @hcd: host controller to which @urb was submitted
1299  * @urb: URB being checked for unlinkability
1300  * @status: error code to store in @urb if the unlink succeeds
1301  *
1302  * Host controller drivers should call this routine in their dequeue()
1303  * method.  The HCD's private spinlock must be held and interrupts must
1304  * be disabled.  The actions carried out here are required for making
1305  * sure than an unlink is valid.
1306  *
1307  * Return: 0 for no error, otherwise a negative error code (in which case
1308  * the dequeue() method must fail).  The possible error codes are:
1309  *
1310  *      -EIDRM: @urb was not submitted or has already completed.
1311  *              The completion function may not have been called yet.
1312  *
1313  *      -EBUSY: @urb has already been unlinked.
1314  */
1315 int usb_hcd_check_unlink_urb(struct usb_hcd *hcd, struct urb *urb,
1316                 int status)
1317 {
1318         struct list_head        *tmp;
1319
1320         /* insist the urb is still queued */
1321         list_for_each(tmp, &urb->ep->urb_list) {
1322                 if (tmp == &urb->urb_list)
1323                         break;
1324         }
1325         if (tmp != &urb->urb_list)
1326                 return -EIDRM;
1327
1328         /* Any status except -EINPROGRESS means something already started to
1329          * unlink this URB from the hardware.  So there's no more work to do.
1330          */
1331         if (urb->unlinked)
1332                 return -EBUSY;
1333         urb->unlinked = status;
1334         return 0;
1335 }
1336 EXPORT_SYMBOL_GPL(usb_hcd_check_unlink_urb);
1337
1338 /**
1339  * usb_hcd_unlink_urb_from_ep - remove an URB from its endpoint queue
1340  * @hcd: host controller to which @urb was submitted
1341  * @urb: URB being unlinked
1342  *
1343  * Host controller drivers should call this routine before calling
1344  * usb_hcd_giveback_urb().  The HCD's private spinlock must be held and
1345  * interrupts must be disabled.  The actions carried out here are required
1346  * for URB completion.
1347  */
1348 void usb_hcd_unlink_urb_from_ep(struct usb_hcd *hcd, struct urb *urb)
1349 {
1350         /* clear all state linking urb to this dev (and hcd) */
1351         spin_lock(&hcd_urb_list_lock);
1352         list_del_init(&urb->urb_list);
1353         spin_unlock(&hcd_urb_list_lock);
1354 }
1355 EXPORT_SYMBOL_GPL(usb_hcd_unlink_urb_from_ep);
1356
1357 /*
1358  * Some usb host controllers can only perform dma using a small SRAM area.
1359  * The usb core itself is however optimized for host controllers that can dma
1360  * using regular system memory - like pci devices doing bus mastering.
1361  *
1362  * To support host controllers with limited dma capabilities we provide dma
1363  * bounce buffers. This feature can be enabled using the HCD_LOCAL_MEM flag.
1364  * For this to work properly the host controller code must first use the
1365  * function dma_declare_coherent_memory() to point out which memory area
1366  * that should be used for dma allocations.
1367  *
1368  * The HCD_LOCAL_MEM flag then tells the usb code to allocate all data for
1369  * dma using dma_alloc_coherent() which in turn allocates from the memory
1370  * area pointed out with dma_declare_coherent_memory().
1371  *
1372  * So, to summarize...
1373  *
1374  * - We need "local" memory, canonical example being
1375  *   a small SRAM on a discrete controller being the
1376  *   only memory that the controller can read ...
1377  *   (a) "normal" kernel memory is no good, and
1378  *   (b) there's not enough to share
1379  *
1380  * - The only *portable* hook for such stuff in the
1381  *   DMA framework is dma_declare_coherent_memory()
1382  *
1383  * - So we use that, even though the primary requirement
1384  *   is that the memory be "local" (hence addressable
1385  *   by that device), not "coherent".
1386  *
1387  */
1388
1389 static int hcd_alloc_coherent(struct usb_bus *bus,
1390                               gfp_t mem_flags, dma_addr_t *dma_handle,
1391                               void **vaddr_handle, size_t size,
1392                               enum dma_data_direction dir)
1393 {
1394         unsigned char *vaddr;
1395
1396         if (*vaddr_handle == NULL) {
1397                 WARN_ON_ONCE(1);
1398                 return -EFAULT;
1399         }
1400
1401         vaddr = hcd_buffer_alloc(bus, size + sizeof(vaddr),
1402                                  mem_flags, dma_handle);
1403         if (!vaddr)
1404                 return -ENOMEM;
1405
1406         /*
1407          * Store the virtual address of the buffer at the end
1408          * of the allocated dma buffer. The size of the buffer
1409          * may be uneven so use unaligned functions instead
1410          * of just rounding up. It makes sense to optimize for
1411          * memory footprint over access speed since the amount
1412          * of memory available for dma may be limited.
1413          */
1414         put_unaligned((unsigned long)*vaddr_handle,
1415                       (unsigned long *)(vaddr + size));
1416
1417         if (dir == DMA_TO_DEVICE)
1418                 memcpy(vaddr, *vaddr_handle, size);
1419
1420         *vaddr_handle = vaddr;
1421         return 0;
1422 }
1423
1424 static void hcd_free_coherent(struct usb_bus *bus, dma_addr_t *dma_handle,
1425                               void **vaddr_handle, size_t size,
1426                               enum dma_data_direction dir)
1427 {
1428         unsigned char *vaddr = *vaddr_handle;
1429
1430         vaddr = (void *)get_unaligned((unsigned long *)(vaddr + size));
1431
1432         if (dir == DMA_FROM_DEVICE)
1433                 memcpy(vaddr, *vaddr_handle, size);
1434
1435         hcd_buffer_free(bus, size + sizeof(vaddr), *vaddr_handle, *dma_handle);
1436
1437         *vaddr_handle = vaddr;
1438         *dma_handle = 0;
1439 }
1440
1441 void usb_hcd_unmap_urb_setup_for_dma(struct usb_hcd *hcd, struct urb *urb)
1442 {
1443         if (IS_ENABLED(CONFIG_HAS_DMA) &&
1444             (urb->transfer_flags & URB_SETUP_MAP_SINGLE))
1445                 dma_unmap_single(hcd->self.sysdev,
1446                                 urb->setup_dma,
1447                                 sizeof(struct usb_ctrlrequest),
1448                                 DMA_TO_DEVICE);
1449         else if (urb->transfer_flags & URB_SETUP_MAP_LOCAL)
1450                 hcd_free_coherent(urb->dev->bus,
1451                                 &urb->setup_dma,
1452                                 (void **) &urb->setup_packet,
1453                                 sizeof(struct usb_ctrlrequest),
1454                                 DMA_TO_DEVICE);
1455
1456         /* Make it safe to call this routine more than once */
1457         urb->transfer_flags &= ~(URB_SETUP_MAP_SINGLE | URB_SETUP_MAP_LOCAL);
1458 }
1459 EXPORT_SYMBOL_GPL(usb_hcd_unmap_urb_setup_for_dma);
1460
1461 static void unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb)
1462 {
1463         if (hcd->driver->unmap_urb_for_dma)
1464                 hcd->driver->unmap_urb_for_dma(hcd, urb);
1465         else
1466                 usb_hcd_unmap_urb_for_dma(hcd, urb);
1467 }
1468
1469 void usb_hcd_unmap_urb_for_dma(struct usb_hcd *hcd, struct urb *urb)
1470 {
1471         enum dma_data_direction dir;
1472
1473         usb_hcd_unmap_urb_setup_for_dma(hcd, urb);
1474
1475         dir = usb_urb_dir_in(urb) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
1476         if (IS_ENABLED(CONFIG_HAS_DMA) &&
1477             (urb->transfer_flags & URB_DMA_MAP_SG))
1478                 dma_unmap_sg(hcd->self.sysdev,
1479                                 urb->sg,
1480                                 urb->num_sgs,
1481                                 dir);
1482         else if (IS_ENABLED(CONFIG_HAS_DMA) &&
1483                  (urb->transfer_flags & URB_DMA_MAP_PAGE))
1484                 dma_unmap_page(hcd->self.sysdev,
1485                                 urb->transfer_dma,
1486                                 urb->transfer_buffer_length,
1487                                 dir);
1488         else if (IS_ENABLED(CONFIG_HAS_DMA) &&
1489                  (urb->transfer_flags & URB_DMA_MAP_SINGLE))
1490                 dma_unmap_single(hcd->self.sysdev,
1491                                 urb->transfer_dma,
1492                                 urb->transfer_buffer_length,
1493                                 dir);
1494         else if (urb->transfer_flags & URB_MAP_LOCAL)
1495                 hcd_free_coherent(urb->dev->bus,
1496                                 &urb->transfer_dma,
1497                                 &urb->transfer_buffer,
1498                                 urb->transfer_buffer_length,
1499                                 dir);
1500
1501         /* Make it safe to call this routine more than once */
1502         urb->transfer_flags &= ~(URB_DMA_MAP_SG | URB_DMA_MAP_PAGE |
1503                         URB_DMA_MAP_SINGLE | URB_MAP_LOCAL);
1504 }
1505 EXPORT_SYMBOL_GPL(usb_hcd_unmap_urb_for_dma);
1506
1507 static int map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
1508                            gfp_t mem_flags)
1509 {
1510         if (hcd->driver->map_urb_for_dma)
1511                 return hcd->driver->map_urb_for_dma(hcd, urb, mem_flags);
1512         else
1513                 return usb_hcd_map_urb_for_dma(hcd, urb, mem_flags);
1514 }
1515
1516 int usb_hcd_map_urb_for_dma(struct usb_hcd *hcd, struct urb *urb,
1517                             gfp_t mem_flags)
1518 {
1519         enum dma_data_direction dir;
1520         int ret = 0;
1521
1522         /* Map the URB's buffers for DMA access.
1523          * Lower level HCD code should use *_dma exclusively,
1524          * unless it uses pio or talks to another transport,
1525          * or uses the provided scatter gather list for bulk.
1526          */
1527
1528         if (usb_endpoint_xfer_control(&urb->ep->desc)) {
1529                 if (hcd->self.uses_pio_for_control)
1530                         return ret;
1531                 if (IS_ENABLED(CONFIG_HAS_DMA) && hcd->self.uses_dma) {
1532                         if (is_vmalloc_addr(urb->setup_packet)) {
1533                                 WARN_ONCE(1, "setup packet is not dma capable\n");
1534                                 return -EAGAIN;
1535                         } else if (object_is_on_stack(urb->setup_packet)) {
1536                                 WARN_ONCE(1, "setup packet is on stack\n");
1537                                 return -EAGAIN;
1538                         }
1539
1540                         urb->setup_dma = dma_map_single(
1541                                         hcd->self.sysdev,
1542                                         urb->setup_packet,
1543                                         sizeof(struct usb_ctrlrequest),
1544                                         DMA_TO_DEVICE);
1545                         if (dma_mapping_error(hcd->self.sysdev,
1546                                                 urb->setup_dma))
1547                                 return -EAGAIN;
1548                         urb->transfer_flags |= URB_SETUP_MAP_SINGLE;
1549                 } else if (hcd->driver->flags & HCD_LOCAL_MEM) {
1550                         ret = hcd_alloc_coherent(
1551                                         urb->dev->bus, mem_flags,
1552                                         &urb->setup_dma,
1553                                         (void **)&urb->setup_packet,
1554                                         sizeof(struct usb_ctrlrequest),
1555                                         DMA_TO_DEVICE);
1556                         if (ret)
1557                                 return ret;
1558                         urb->transfer_flags |= URB_SETUP_MAP_LOCAL;
1559                 }
1560         }
1561
1562         dir = usb_urb_dir_in(urb) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
1563         if (urb->transfer_buffer_length != 0
1564             && !(urb->transfer_flags & URB_NO_TRANSFER_DMA_MAP)) {
1565                 if (IS_ENABLED(CONFIG_HAS_DMA) && hcd->self.uses_dma) {
1566                         if (urb->num_sgs) {
1567                                 int n;
1568
1569                                 /* We don't support sg for isoc transfers ! */
1570                                 if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
1571                                         WARN_ON(1);
1572                                         return -EINVAL;
1573                                 }
1574
1575                                 n = dma_map_sg(
1576                                                 hcd->self.sysdev,
1577                                                 urb->sg,
1578                                                 urb->num_sgs,
1579                                                 dir);
1580                                 if (n <= 0)
1581                                         ret = -EAGAIN;
1582                                 else
1583                                         urb->transfer_flags |= URB_DMA_MAP_SG;
1584                                 urb->num_mapped_sgs = n;
1585                                 if (n != urb->num_sgs)
1586                                         urb->transfer_flags |=
1587                                                         URB_DMA_SG_COMBINED;
1588                         } else if (urb->sg) {
1589                                 struct scatterlist *sg = urb->sg;
1590                                 urb->transfer_dma = dma_map_page(
1591                                                 hcd->self.sysdev,
1592                                                 sg_page(sg),
1593                                                 sg->offset,
1594                                                 urb->transfer_buffer_length,
1595                                                 dir);
1596                                 if (dma_mapping_error(hcd->self.sysdev,
1597                                                 urb->transfer_dma))
1598                                         ret = -EAGAIN;
1599                                 else
1600                                         urb->transfer_flags |= URB_DMA_MAP_PAGE;
1601                         } else if (is_vmalloc_addr(urb->transfer_buffer)) {
1602                                 WARN_ONCE(1, "transfer buffer not dma capable\n");
1603                                 ret = -EAGAIN;
1604                         } else if (object_is_on_stack(urb->transfer_buffer)) {
1605                                 WARN_ONCE(1, "transfer buffer is on stack\n");
1606                                 ret = -EAGAIN;
1607                         } else {
1608                                 urb->transfer_dma = dma_map_single(
1609                                                 hcd->self.sysdev,
1610                                                 urb->transfer_buffer,
1611                                                 urb->transfer_buffer_length,
1612                                                 dir);
1613                                 if (dma_mapping_error(hcd->self.sysdev,
1614                                                 urb->transfer_dma))
1615                                         ret = -EAGAIN;
1616                                 else
1617                                         urb->transfer_flags |= URB_DMA_MAP_SINGLE;
1618                         }
1619                 } else if (hcd->driver->flags & HCD_LOCAL_MEM) {
1620                         ret = hcd_alloc_coherent(
1621                                         urb->dev->bus, mem_flags,
1622                                         &urb->transfer_dma,
1623                                         &urb->transfer_buffer,
1624                                         urb->transfer_buffer_length,
1625                                         dir);
1626                         if (ret == 0)
1627                                 urb->transfer_flags |= URB_MAP_LOCAL;
1628                 }
1629                 if (ret && (urb->transfer_flags & (URB_SETUP_MAP_SINGLE |
1630                                 URB_SETUP_MAP_LOCAL)))
1631                         usb_hcd_unmap_urb_for_dma(hcd, urb);
1632         }
1633         return ret;
1634 }
1635 EXPORT_SYMBOL_GPL(usb_hcd_map_urb_for_dma);
1636
1637 /*-------------------------------------------------------------------------*/
1638
1639 /* may be called in any context with a valid urb->dev usecount
1640  * caller surrenders "ownership" of urb
1641  * expects usb_submit_urb() to have sanity checked and conditioned all
1642  * inputs in the urb
1643  */
1644 int usb_hcd_submit_urb (struct urb *urb, gfp_t mem_flags)
1645 {
1646         int                     status;
1647         struct usb_hcd          *hcd = bus_to_hcd(urb->dev->bus);
1648
1649         /* increment urb's reference count as part of giving it to the HCD
1650          * (which will control it).  HCD guarantees that it either returns
1651          * an error or calls giveback(), but not both.
1652          */
1653         usb_get_urb(urb);
1654         atomic_inc(&urb->use_count);
1655         atomic_inc(&urb->dev->urbnum);
1656         usbmon_urb_submit(&hcd->self, urb);
1657
1658         /* NOTE requirements on root-hub callers (usbfs and the hub
1659          * driver, for now):  URBs' urb->transfer_buffer must be
1660          * valid and usb_buffer_{sync,unmap}() not be needed, since
1661          * they could clobber root hub response data.  Also, control
1662          * URBs must be submitted in process context with interrupts
1663          * enabled.
1664          */
1665
1666         if (is_root_hub(urb->dev)) {
1667                 status = rh_urb_enqueue(hcd, urb);
1668         } else {
1669                 status = map_urb_for_dma(hcd, urb, mem_flags);
1670                 if (likely(status == 0)) {
1671                         status = hcd->driver->urb_enqueue(hcd, urb, mem_flags);
1672                         if (unlikely(status))
1673                                 unmap_urb_for_dma(hcd, urb);
1674                 }
1675         }
1676
1677         if (unlikely(status)) {
1678                 usbmon_urb_submit_error(&hcd->self, urb, status);
1679                 urb->hcpriv = NULL;
1680                 INIT_LIST_HEAD(&urb->urb_list);
1681                 atomic_dec(&urb->use_count);
1682                 /*
1683                  * Order the write of urb->use_count above before the read
1684                  * of urb->reject below.  Pairs with the memory barriers in
1685                  * usb_kill_urb() and usb_poison_urb().
1686                  */
1687                 smp_mb__after_atomic();
1688
1689                 atomic_dec(&urb->dev->urbnum);
1690                 if (atomic_read(&urb->reject))
1691                         wake_up(&usb_kill_urb_queue);
1692                 usb_put_urb(urb);
1693         }
1694         return status;
1695 }
1696
1697 /*-------------------------------------------------------------------------*/
1698
1699 /* this makes the hcd giveback() the urb more quickly, by kicking it
1700  * off hardware queues (which may take a while) and returning it as
1701  * soon as practical.  we've already set up the urb's return status,
1702  * but we can't know if the callback completed already.
1703  */
1704 static int unlink1(struct usb_hcd *hcd, struct urb *urb, int status)
1705 {
1706         int             value;
1707
1708         if (is_root_hub(urb->dev))
1709                 value = usb_rh_urb_dequeue(hcd, urb, status);
1710         else {
1711
1712                 /* The only reason an HCD might fail this call is if
1713                  * it has not yet fully queued the urb to begin with.
1714                  * Such failures should be harmless. */
1715                 value = hcd->driver->urb_dequeue(hcd, urb, status);
1716         }
1717         return value;
1718 }
1719
1720 /*
1721  * called in any context
1722  *
1723  * caller guarantees urb won't be recycled till both unlink()
1724  * and the urb's completion function return
1725  */
1726 int usb_hcd_unlink_urb (struct urb *urb, int status)
1727 {
1728         struct usb_hcd          *hcd;
1729         struct usb_device       *udev = urb->dev;
1730         int                     retval = -EIDRM;
1731         unsigned long           flags;
1732
1733         /* Prevent the device and bus from going away while
1734          * the unlink is carried out.  If they are already gone
1735          * then urb->use_count must be 0, since disconnected
1736          * devices can't have any active URBs.
1737          */
1738         spin_lock_irqsave(&hcd_urb_unlink_lock, flags);
1739         if (atomic_read(&urb->use_count) > 0) {
1740                 retval = 0;
1741                 usb_get_dev(udev);
1742         }
1743         spin_unlock_irqrestore(&hcd_urb_unlink_lock, flags);
1744         if (retval == 0) {
1745                 hcd = bus_to_hcd(urb->dev->bus);
1746                 retval = unlink1(hcd, urb, status);
1747                 if (retval == 0)
1748                         retval = -EINPROGRESS;
1749                 else if (retval != -EIDRM && retval != -EBUSY)
1750                         dev_dbg(&udev->dev, "hcd_unlink_urb %pK fail %d\n",
1751                                         urb, retval);
1752                 usb_put_dev(udev);
1753         }
1754         return retval;
1755 }
1756
1757 /*-------------------------------------------------------------------------*/
1758
1759 static void __usb_hcd_giveback_urb(struct urb *urb)
1760 {
1761         struct usb_hcd *hcd = bus_to_hcd(urb->dev->bus);
1762         struct usb_anchor *anchor = urb->anchor;
1763         int status = urb->unlinked;
1764         unsigned long flags;
1765
1766         urb->hcpriv = NULL;
1767         if (unlikely((urb->transfer_flags & URB_SHORT_NOT_OK) &&
1768             urb->actual_length < urb->transfer_buffer_length &&
1769             !status))
1770                 status = -EREMOTEIO;
1771
1772         unmap_urb_for_dma(hcd, urb);
1773         usbmon_urb_complete(&hcd->self, urb, status);
1774         usb_anchor_suspend_wakeups(anchor);
1775         usb_unanchor_urb(urb);
1776         if (likely(status == 0))
1777                 usb_led_activity(USB_LED_EVENT_HOST);
1778
1779         /* pass ownership to the completion handler */
1780         urb->status = status;
1781
1782         /*
1783          * We disable local IRQs here avoid possible deadlock because
1784          * drivers may call spin_lock() to hold lock which might be
1785          * acquired in one hard interrupt handler.
1786          *
1787          * The local_irq_save()/local_irq_restore() around complete()
1788          * will be removed if current USB drivers have been cleaned up
1789          * and no one may trigger the above deadlock situation when
1790          * running complete() in tasklet.
1791          */
1792         local_irq_save(flags);
1793         urb->complete(urb);
1794         local_irq_restore(flags);
1795
1796         usb_anchor_resume_wakeups(anchor);
1797         atomic_dec(&urb->use_count);
1798         /*
1799          * Order the write of urb->use_count above before the read
1800          * of urb->reject below.  Pairs with the memory barriers in
1801          * usb_kill_urb() and usb_poison_urb().
1802          */
1803         smp_mb__after_atomic();
1804
1805         if (unlikely(atomic_read(&urb->reject)))
1806                 wake_up(&usb_kill_urb_queue);
1807         usb_put_urb(urb);
1808 }
1809
1810 static void usb_giveback_urb_bh(unsigned long param)
1811 {
1812         struct giveback_urb_bh *bh = (struct giveback_urb_bh *)param;
1813         struct list_head local_list;
1814
1815         spin_lock_irq(&bh->lock);
1816         bh->running = true;
1817         list_replace_init(&bh->head, &local_list);
1818         spin_unlock_irq(&bh->lock);
1819
1820         while (!list_empty(&local_list)) {
1821                 struct urb *urb;
1822
1823                 urb = list_entry(local_list.next, struct urb, urb_list);
1824                 list_del_init(&urb->urb_list);
1825                 bh->completing_ep = urb->ep;
1826                 __usb_hcd_giveback_urb(urb);
1827                 bh->completing_ep = NULL;
1828         }
1829
1830         /*
1831          * giveback new URBs next time to prevent this function
1832          * from not exiting for a long time.
1833          */
1834         spin_lock_irq(&bh->lock);
1835         if (!list_empty(&bh->head)) {
1836                 if (bh->high_prio)
1837                         tasklet_hi_schedule(&bh->bh);
1838                 else
1839                         tasklet_schedule(&bh->bh);
1840         }
1841         bh->running = false;
1842         spin_unlock_irq(&bh->lock);
1843 }
1844
1845 /**
1846  * usb_hcd_giveback_urb - return URB from HCD to device driver
1847  * @hcd: host controller returning the URB
1848  * @urb: urb being returned to the USB device driver.
1849  * @status: completion status code for the URB.
1850  * Context: in_interrupt()
1851  *
1852  * This hands the URB from HCD to its USB device driver, using its
1853  * completion function.  The HCD has freed all per-urb resources
1854  * (and is done using urb->hcpriv).  It also released all HCD locks;
1855  * the device driver won't cause problems if it frees, modifies,
1856  * or resubmits this URB.
1857  *
1858  * If @urb was unlinked, the value of @status will be overridden by
1859  * @urb->unlinked.  Erroneous short transfers are detected in case
1860  * the HCD hasn't checked for them.
1861  */
1862 void usb_hcd_giveback_urb(struct usb_hcd *hcd, struct urb *urb, int status)
1863 {
1864         struct giveback_urb_bh *bh;
1865         bool running;
1866
1867         /* pass status to tasklet via unlinked */
1868         if (likely(!urb->unlinked))
1869                 urb->unlinked = status;
1870
1871         if (!hcd_giveback_urb_in_bh(hcd) && !is_root_hub(urb->dev)) {
1872                 __usb_hcd_giveback_urb(urb);
1873                 return;
1874         }
1875
1876         if (usb_pipeisoc(urb->pipe) || usb_pipeint(urb->pipe))
1877                 bh = &hcd->high_prio_bh;
1878         else
1879                 bh = &hcd->low_prio_bh;
1880
1881         spin_lock(&bh->lock);
1882         list_add_tail(&urb->urb_list, &bh->head);
1883         running = bh->running;
1884         spin_unlock(&bh->lock);
1885
1886         if (running)
1887                 ;
1888         else if (bh->high_prio)
1889                 tasklet_hi_schedule(&bh->bh);
1890         else
1891                 tasklet_schedule(&bh->bh);
1892 }
1893 EXPORT_SYMBOL_GPL(usb_hcd_giveback_urb);
1894
1895 /*-------------------------------------------------------------------------*/
1896
1897 /* Cancel all URBs pending on this endpoint and wait for the endpoint's
1898  * queue to drain completely.  The caller must first insure that no more
1899  * URBs can be submitted for this endpoint.
1900  */
1901 void usb_hcd_flush_endpoint(struct usb_device *udev,
1902                 struct usb_host_endpoint *ep)
1903 {
1904         struct usb_hcd          *hcd;
1905         struct urb              *urb;
1906
1907         if (!ep)
1908                 return;
1909         might_sleep();
1910         hcd = bus_to_hcd(udev->bus);
1911
1912         /* No more submits can occur */
1913         spin_lock_irq(&hcd_urb_list_lock);
1914 rescan:
1915         list_for_each_entry_reverse(urb, &ep->urb_list, urb_list) {
1916                 int     is_in;
1917
1918                 if (urb->unlinked)
1919                         continue;
1920                 usb_get_urb (urb);
1921                 is_in = usb_urb_dir_in(urb);
1922                 spin_unlock(&hcd_urb_list_lock);
1923
1924                 /* kick hcd */
1925                 unlink1(hcd, urb, -ESHUTDOWN);
1926                 dev_dbg (hcd->self.controller,
1927                         "shutdown urb %pK ep%d%s%s\n",
1928                         urb, usb_endpoint_num(&ep->desc),
1929                         is_in ? "in" : "out",
1930                         ({      char *s;
1931
1932                                  switch (usb_endpoint_type(&ep->desc)) {
1933                                  case USB_ENDPOINT_XFER_CONTROL:
1934                                         s = ""; break;
1935                                  case USB_ENDPOINT_XFER_BULK:
1936                                         s = "-bulk"; break;
1937                                  case USB_ENDPOINT_XFER_INT:
1938                                         s = "-intr"; break;
1939                                  default:
1940                                         s = "-iso"; break;
1941                                 };
1942                                 s;
1943                         }));
1944                 usb_put_urb (urb);
1945
1946                 /* list contents may have changed */
1947                 spin_lock(&hcd_urb_list_lock);
1948                 goto rescan;
1949         }
1950         spin_unlock_irq(&hcd_urb_list_lock);
1951
1952         /* Wait until the endpoint queue is completely empty */
1953         while (!list_empty (&ep->urb_list)) {
1954                 spin_lock_irq(&hcd_urb_list_lock);
1955
1956                 /* The list may have changed while we acquired the spinlock */
1957                 urb = NULL;
1958                 if (!list_empty (&ep->urb_list)) {
1959                         urb = list_entry (ep->urb_list.prev, struct urb,
1960                                         urb_list);
1961                         usb_get_urb (urb);
1962                 }
1963                 spin_unlock_irq(&hcd_urb_list_lock);
1964
1965                 if (urb) {
1966                         usb_kill_urb (urb);
1967                         usb_put_urb (urb);
1968                 }
1969         }
1970 }
1971
1972 /**
1973  * usb_hcd_alloc_bandwidth - check whether a new bandwidth setting exceeds
1974  *                              the bus bandwidth
1975  * @udev: target &usb_device
1976  * @new_config: new configuration to install
1977  * @cur_alt: the current alternate interface setting
1978  * @new_alt: alternate interface setting that is being installed
1979  *
1980  * To change configurations, pass in the new configuration in new_config,
1981  * and pass NULL for cur_alt and new_alt.
1982  *
1983  * To reset a device's configuration (put the device in the ADDRESSED state),
1984  * pass in NULL for new_config, cur_alt, and new_alt.
1985  *
1986  * To change alternate interface settings, pass in NULL for new_config,
1987  * pass in the current alternate interface setting in cur_alt,
1988  * and pass in the new alternate interface setting in new_alt.
1989  *
1990  * Return: An error if the requested bandwidth change exceeds the
1991  * bus bandwidth or host controller internal resources.
1992  */
1993 int usb_hcd_alloc_bandwidth(struct usb_device *udev,
1994                 struct usb_host_config *new_config,
1995                 struct usb_host_interface *cur_alt,
1996                 struct usb_host_interface *new_alt)
1997 {
1998         int num_intfs, i, j;
1999         struct usb_host_interface *alt = NULL;
2000         int ret = 0;
2001         struct usb_hcd *hcd;
2002         struct usb_host_endpoint *ep;
2003
2004         hcd = bus_to_hcd(udev->bus);
2005         if (!hcd->driver->check_bandwidth)
2006                 return 0;
2007
2008         /* Configuration is being removed - set configuration 0 */
2009         if (!new_config && !cur_alt) {
2010                 for (i = 1; i < 16; ++i) {
2011                         ep = udev->ep_out[i];
2012                         if (ep)
2013                                 hcd->driver->drop_endpoint(hcd, udev, ep);
2014                         ep = udev->ep_in[i];
2015                         if (ep)
2016                                 hcd->driver->drop_endpoint(hcd, udev, ep);
2017                 }
2018                 hcd->driver->check_bandwidth(hcd, udev);
2019                 return 0;
2020         }
2021         /* Check if the HCD says there's enough bandwidth.  Enable all endpoints
2022          * each interface's alt setting 0 and ask the HCD to check the bandwidth
2023          * of the bus.  There will always be bandwidth for endpoint 0, so it's
2024          * ok to exclude it.
2025          */
2026         if (new_config) {
2027                 num_intfs = new_config->desc.bNumInterfaces;
2028                 /* Remove endpoints (except endpoint 0, which is always on the
2029                  * schedule) from the old config from the schedule
2030                  */
2031                 for (i = 1; i < 16; ++i) {
2032                         ep = udev->ep_out[i];
2033                         if (ep) {
2034                                 ret = hcd->driver->drop_endpoint(hcd, udev, ep);
2035                                 if (ret < 0)
2036                                         goto reset;
2037                         }
2038                         ep = udev->ep_in[i];
2039                         if (ep) {
2040                                 ret = hcd->driver->drop_endpoint(hcd, udev, ep);
2041                                 if (ret < 0)
2042                                         goto reset;
2043                         }
2044                 }
2045                 for (i = 0; i < num_intfs; ++i) {
2046                         struct usb_host_interface *first_alt;
2047                         int iface_num;
2048
2049                         first_alt = &new_config->intf_cache[i]->altsetting[0];
2050                         iface_num = first_alt->desc.bInterfaceNumber;
2051                         /* Set up endpoints for alternate interface setting 0 */
2052                         alt = usb_find_alt_setting(new_config, iface_num, 0);
2053                         if (!alt)
2054                                 /* No alt setting 0? Pick the first setting. */
2055                                 alt = first_alt;
2056
2057                         for (j = 0; j < alt->desc.bNumEndpoints; j++) {
2058                                 ret = hcd->driver->add_endpoint(hcd, udev, &alt->endpoint[j]);
2059                                 if (ret < 0)
2060                                         goto reset;
2061                         }
2062                 }
2063         }
2064         if (cur_alt && new_alt) {
2065                 struct usb_interface *iface = usb_ifnum_to_if(udev,
2066                                 cur_alt->desc.bInterfaceNumber);
2067
2068                 if (!iface)
2069                         return -EINVAL;
2070                 if (iface->resetting_device) {
2071                         /*
2072                          * The USB core just reset the device, so the xHCI host
2073                          * and the device will think alt setting 0 is installed.
2074                          * However, the USB core will pass in the alternate
2075                          * setting installed before the reset as cur_alt.  Dig
2076                          * out the alternate setting 0 structure, or the first
2077                          * alternate setting if a broken device doesn't have alt
2078                          * setting 0.
2079                          */
2080                         cur_alt = usb_altnum_to_altsetting(iface, 0);
2081                         if (!cur_alt)
2082                                 cur_alt = &iface->altsetting[0];
2083                 }
2084
2085                 /* Drop all the endpoints in the current alt setting */
2086                 for (i = 0; i < cur_alt->desc.bNumEndpoints; i++) {
2087                         ret = hcd->driver->drop_endpoint(hcd, udev,
2088                                         &cur_alt->endpoint[i]);
2089                         if (ret < 0)
2090                                 goto reset;
2091                 }
2092                 /* Add all the endpoints in the new alt setting */
2093                 for (i = 0; i < new_alt->desc.bNumEndpoints; i++) {
2094                         ret = hcd->driver->add_endpoint(hcd, udev,
2095                                         &new_alt->endpoint[i]);
2096                         if (ret < 0)
2097                                 goto reset;
2098                 }
2099         }
2100         ret = hcd->driver->check_bandwidth(hcd, udev);
2101 reset:
2102         if (ret < 0)
2103                 hcd->driver->reset_bandwidth(hcd, udev);
2104         return ret;
2105 }
2106
2107 /* Disables the endpoint: synchronizes with the hcd to make sure all
2108  * endpoint state is gone from hardware.  usb_hcd_flush_endpoint() must
2109  * have been called previously.  Use for set_configuration, set_interface,
2110  * driver removal, physical disconnect.
2111  *
2112  * example:  a qh stored in ep->hcpriv, holding state related to endpoint
2113  * type, maxpacket size, toggle, halt status, and scheduling.
2114  */
2115 void usb_hcd_disable_endpoint(struct usb_device *udev,
2116                 struct usb_host_endpoint *ep)
2117 {
2118         struct usb_hcd          *hcd;
2119
2120         might_sleep();
2121         hcd = bus_to_hcd(udev->bus);
2122         if (hcd->driver->endpoint_disable)
2123                 hcd->driver->endpoint_disable(hcd, ep);
2124 }
2125
2126 /**
2127  * usb_hcd_reset_endpoint - reset host endpoint state
2128  * @udev: USB device.
2129  * @ep:   the endpoint to reset.
2130  *
2131  * Resets any host endpoint state such as the toggle bit, sequence
2132  * number and current window.
2133  */
2134 void usb_hcd_reset_endpoint(struct usb_device *udev,
2135                             struct usb_host_endpoint *ep)
2136 {
2137         struct usb_hcd *hcd = bus_to_hcd(udev->bus);
2138
2139         if (hcd->driver->endpoint_reset)
2140                 hcd->driver->endpoint_reset(hcd, ep);
2141         else {
2142                 int epnum = usb_endpoint_num(&ep->desc);
2143                 int is_out = usb_endpoint_dir_out(&ep->desc);
2144                 int is_control = usb_endpoint_xfer_control(&ep->desc);
2145
2146                 usb_settoggle(udev, epnum, is_out, 0);
2147                 if (is_control)
2148                         usb_settoggle(udev, epnum, !is_out, 0);
2149         }
2150 }
2151
2152 /**
2153  * usb_alloc_streams - allocate bulk endpoint stream IDs.
2154  * @interface:          alternate setting that includes all endpoints.
2155  * @eps:                array of endpoints that need streams.
2156  * @num_eps:            number of endpoints in the array.
2157  * @num_streams:        number of streams to allocate.
2158  * @mem_flags:          flags hcd should use to allocate memory.
2159  *
2160  * Sets up a group of bulk endpoints to have @num_streams stream IDs available.
2161  * Drivers may queue multiple transfers to different stream IDs, which may
2162  * complete in a different order than they were queued.
2163  *
2164  * Return: On success, the number of allocated streams. On failure, a negative
2165  * error code.
2166  */
2167 int usb_alloc_streams(struct usb_interface *interface,
2168                 struct usb_host_endpoint **eps, unsigned int num_eps,
2169                 unsigned int num_streams, gfp_t mem_flags)
2170 {
2171         struct usb_hcd *hcd;
2172         struct usb_device *dev;
2173         int i, ret;
2174
2175         dev = interface_to_usbdev(interface);
2176         hcd = bus_to_hcd(dev->bus);
2177         if (!hcd->driver->alloc_streams || !hcd->driver->free_streams)
2178                 return -EINVAL;
2179         if (dev->speed < USB_SPEED_SUPER)
2180                 return -EINVAL;
2181         if (dev->state < USB_STATE_CONFIGURED)
2182                 return -ENODEV;
2183
2184         for (i = 0; i < num_eps; i++) {
2185                 /* Streams only apply to bulk endpoints. */
2186                 if (!usb_endpoint_xfer_bulk(&eps[i]->desc))
2187                         return -EINVAL;
2188                 /* Re-alloc is not allowed */
2189                 if (eps[i]->streams)
2190                         return -EINVAL;
2191         }
2192
2193         ret = hcd->driver->alloc_streams(hcd, dev, eps, num_eps,
2194                         num_streams, mem_flags);
2195         if (ret < 0)
2196                 return ret;
2197
2198         for (i = 0; i < num_eps; i++)
2199                 eps[i]->streams = ret;
2200
2201         return ret;
2202 }
2203 EXPORT_SYMBOL_GPL(usb_alloc_streams);
2204
2205 /**
2206  * usb_free_streams - free bulk endpoint stream IDs.
2207  * @interface:  alternate setting that includes all endpoints.
2208  * @eps:        array of endpoints to remove streams from.
2209  * @num_eps:    number of endpoints in the array.
2210  * @mem_flags:  flags hcd should use to allocate memory.
2211  *
2212  * Reverts a group of bulk endpoints back to not using stream IDs.
2213  * Can fail if we are given bad arguments, or HCD is broken.
2214  *
2215  * Return: 0 on success. On failure, a negative error code.
2216  */
2217 int usb_free_streams(struct usb_interface *interface,
2218                 struct usb_host_endpoint **eps, unsigned int num_eps,
2219                 gfp_t mem_flags)
2220 {
2221         struct usb_hcd *hcd;
2222         struct usb_device *dev;
2223         int i, ret;
2224
2225         dev = interface_to_usbdev(interface);
2226         hcd = bus_to_hcd(dev->bus);
2227         if (dev->speed < USB_SPEED_SUPER)
2228                 return -EINVAL;
2229
2230         /* Double-free is not allowed */
2231         for (i = 0; i < num_eps; i++)
2232                 if (!eps[i] || !eps[i]->streams)
2233                         return -EINVAL;
2234
2235         ret = hcd->driver->free_streams(hcd, dev, eps, num_eps, mem_flags);
2236         if (ret < 0)
2237                 return ret;
2238
2239         for (i = 0; i < num_eps; i++)
2240                 eps[i]->streams = 0;
2241
2242         return ret;
2243 }
2244 EXPORT_SYMBOL_GPL(usb_free_streams);
2245
2246 /* Protect against drivers that try to unlink URBs after the device
2247  * is gone, by waiting until all unlinks for @udev are finished.
2248  * Since we don't currently track URBs by device, simply wait until
2249  * nothing is running in the locked region of usb_hcd_unlink_urb().
2250  */
2251 void usb_hcd_synchronize_unlinks(struct usb_device *udev)
2252 {
2253         spin_lock_irq(&hcd_urb_unlink_lock);
2254         spin_unlock_irq(&hcd_urb_unlink_lock);
2255 }
2256
2257 /*-------------------------------------------------------------------------*/
2258
2259 /* called in any context */
2260 int usb_hcd_get_frame_number (struct usb_device *udev)
2261 {
2262         struct usb_hcd  *hcd = bus_to_hcd(udev->bus);
2263
2264         if (!HCD_RH_RUNNING(hcd))
2265                 return -ESHUTDOWN;
2266         return hcd->driver->get_frame_number (hcd);
2267 }
2268
2269 /*-------------------------------------------------------------------------*/
2270
2271 #ifdef  CONFIG_PM
2272
2273 int hcd_bus_suspend(struct usb_device *rhdev, pm_message_t msg)
2274 {
2275         struct usb_hcd  *hcd = bus_to_hcd(rhdev->bus);
2276         int             status;
2277         int             old_state = hcd->state;
2278
2279         dev_dbg(&rhdev->dev, "bus %ssuspend, wakeup %d\n",
2280                         (PMSG_IS_AUTO(msg) ? "auto-" : ""),
2281                         rhdev->do_remote_wakeup);
2282         if (HCD_DEAD(hcd)) {
2283                 dev_dbg(&rhdev->dev, "skipped %s of dead bus\n", "suspend");
2284                 return 0;
2285         }
2286
2287         if (!hcd->driver->bus_suspend) {
2288                 status = -ENOENT;
2289         } else {
2290                 clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
2291                 hcd->state = HC_STATE_QUIESCING;
2292                 status = hcd->driver->bus_suspend(hcd);
2293         }
2294         if (status == 0) {
2295                 usb_set_device_state(rhdev, USB_STATE_SUSPENDED);
2296                 hcd->state = HC_STATE_SUSPENDED;
2297
2298                 /* Did we race with a root-hub wakeup event? */
2299                 if (rhdev->do_remote_wakeup) {
2300                         char    buffer[6];
2301
2302                         status = hcd->driver->hub_status_data(hcd, buffer);
2303                         if (status != 0) {
2304                                 dev_dbg(&rhdev->dev, "suspend raced with wakeup event\n");
2305                                 hcd_bus_resume(rhdev, PMSG_AUTO_RESUME);
2306                                 status = -EBUSY;
2307                         }
2308                 }
2309         } else {
2310                 spin_lock_irq(&hcd_root_hub_lock);
2311                 if (!HCD_DEAD(hcd)) {
2312                         set_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
2313                         hcd->state = old_state;
2314                 }
2315                 spin_unlock_irq(&hcd_root_hub_lock);
2316                 dev_dbg(&rhdev->dev, "bus %s fail, err %d\n",
2317                                 "suspend", status);
2318         }
2319         return status;
2320 }
2321
2322 int hcd_bus_resume(struct usb_device *rhdev, pm_message_t msg)
2323 {
2324         struct usb_hcd  *hcd = bus_to_hcd(rhdev->bus);
2325         int             status;
2326         int             old_state = hcd->state;
2327
2328         dev_dbg(&rhdev->dev, "usb %sresume\n",
2329                         (PMSG_IS_AUTO(msg) ? "auto-" : ""));
2330         if (HCD_DEAD(hcd)) {
2331                 dev_dbg(&rhdev->dev, "skipped %s of dead bus\n", "resume");
2332                 return 0;
2333         }
2334         if (!hcd->driver->bus_resume)
2335                 return -ENOENT;
2336         if (HCD_RH_RUNNING(hcd))
2337                 return 0;
2338
2339         hcd->state = HC_STATE_RESUMING;
2340         status = hcd->driver->bus_resume(hcd);
2341         clear_bit(HCD_FLAG_WAKEUP_PENDING, &hcd->flags);
2342         if (status == 0) {
2343                 struct usb_device *udev;
2344                 int port1;
2345
2346                 spin_lock_irq(&hcd_root_hub_lock);
2347                 if (!HCD_DEAD(hcd)) {
2348                         usb_set_device_state(rhdev, rhdev->actconfig
2349                                         ? USB_STATE_CONFIGURED
2350                                         : USB_STATE_ADDRESS);
2351                         set_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
2352                         hcd->state = HC_STATE_RUNNING;
2353                 }
2354                 spin_unlock_irq(&hcd_root_hub_lock);
2355
2356                 /*
2357                  * Check whether any of the enabled ports on the root hub are
2358                  * unsuspended.  If they are then a TRSMRCY delay is needed
2359                  * (this is what the USB-2 spec calls a "global resume").
2360                  * Otherwise we can skip the delay.
2361                  */
2362                 usb_hub_for_each_child(rhdev, port1, udev) {
2363                         if (udev->state != USB_STATE_NOTATTACHED &&
2364                                         !udev->port_is_suspended) {
2365                                 usleep_range(10000, 11000);     /* TRSMRCY */
2366                                 break;
2367                         }
2368                 }
2369         } else {
2370                 hcd->state = old_state;
2371                 dev_dbg(&rhdev->dev, "bus %s fail, err %d\n",
2372                                 "resume", status);
2373                 if (status != -ESHUTDOWN)
2374                         usb_hc_died(hcd);
2375         }
2376         return status;
2377 }
2378
2379 /* Workqueue routine for root-hub remote wakeup */
2380 static void hcd_resume_work(struct work_struct *work)
2381 {
2382         struct usb_hcd *hcd = container_of(work, struct usb_hcd, wakeup_work);
2383         struct usb_device *udev = hcd->self.root_hub;
2384
2385         usb_remote_wakeup(udev);
2386 }
2387
2388 /**
2389  * usb_hcd_resume_root_hub - called by HCD to resume its root hub
2390  * @hcd: host controller for this root hub
2391  *
2392  * The USB host controller calls this function when its root hub is
2393  * suspended (with the remote wakeup feature enabled) and a remote
2394  * wakeup request is received.  The routine submits a workqueue request
2395  * to resume the root hub (that is, manage its downstream ports again).
2396  */
2397 void usb_hcd_resume_root_hub (struct usb_hcd *hcd)
2398 {
2399         unsigned long flags;
2400
2401         spin_lock_irqsave (&hcd_root_hub_lock, flags);
2402         if (hcd->rh_registered) {
2403                 pm_wakeup_event(&hcd->self.root_hub->dev, 0);
2404                 set_bit(HCD_FLAG_WAKEUP_PENDING, &hcd->flags);
2405                 queue_work(pm_wq, &hcd->wakeup_work);
2406         }
2407         spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
2408 }
2409 EXPORT_SYMBOL_GPL(usb_hcd_resume_root_hub);
2410
2411 #endif  /* CONFIG_PM */
2412
2413 /*-------------------------------------------------------------------------*/
2414
2415 #ifdef  CONFIG_USB_OTG
2416
2417 /**
2418  * usb_bus_start_enum - start immediate enumeration (for OTG)
2419  * @bus: the bus (must use hcd framework)
2420  * @port_num: 1-based number of port; usually bus->otg_port
2421  * Context: in_interrupt()
2422  *
2423  * Starts enumeration, with an immediate reset followed later by
2424  * hub_wq identifying and possibly configuring the device.
2425  * This is needed by OTG controller drivers, where it helps meet
2426  * HNP protocol timing requirements for starting a port reset.
2427  *
2428  * Return: 0 if successful.
2429  */
2430 int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num)
2431 {
2432         struct usb_hcd          *hcd;
2433         int                     status = -EOPNOTSUPP;
2434
2435         /* NOTE: since HNP can't start by grabbing the bus's address0_sem,
2436          * boards with root hubs hooked up to internal devices (instead of
2437          * just the OTG port) may need more attention to resetting...
2438          */
2439         hcd = bus_to_hcd(bus);
2440         if (port_num && hcd->driver->start_port_reset)
2441                 status = hcd->driver->start_port_reset(hcd, port_num);
2442
2443         /* allocate hub_wq shortly after (first) root port reset finishes;
2444          * it may issue others, until at least 50 msecs have passed.
2445          */
2446         if (status == 0)
2447                 mod_timer(&hcd->rh_timer, jiffies + msecs_to_jiffies(10));
2448         return status;
2449 }
2450 EXPORT_SYMBOL_GPL(usb_bus_start_enum);
2451
2452 #endif
2453
2454 /*-------------------------------------------------------------------------*/
2455
2456 /**
2457  * usb_hcd_irq - hook IRQs to HCD framework (bus glue)
2458  * @irq: the IRQ being raised
2459  * @__hcd: pointer to the HCD whose IRQ is being signaled
2460  *
2461  * If the controller isn't HALTed, calls the driver's irq handler.
2462  * Checks whether the controller is now dead.
2463  *
2464  * Return: %IRQ_HANDLED if the IRQ was handled. %IRQ_NONE otherwise.
2465  */
2466 irqreturn_t usb_hcd_irq (int irq, void *__hcd)
2467 {
2468         struct usb_hcd          *hcd = __hcd;
2469         irqreturn_t             rc;
2470
2471         if (unlikely(HCD_DEAD(hcd) || !HCD_HW_ACCESSIBLE(hcd)))
2472                 rc = IRQ_NONE;
2473         else if (hcd->driver->irq(hcd) == IRQ_NONE)
2474                 rc = IRQ_NONE;
2475         else
2476                 rc = IRQ_HANDLED;
2477
2478         return rc;
2479 }
2480 EXPORT_SYMBOL_GPL(usb_hcd_irq);
2481
2482 /*-------------------------------------------------------------------------*/
2483
2484 /**
2485  * usb_hc_died - report abnormal shutdown of a host controller (bus glue)
2486  * @hcd: pointer to the HCD representing the controller
2487  *
2488  * This is called by bus glue to report a USB host controller that died
2489  * while operations may still have been pending.  It's called automatically
2490  * by the PCI glue, so only glue for non-PCI busses should need to call it.
2491  *
2492  * Only call this function with the primary HCD.
2493  */
2494 void usb_hc_died (struct usb_hcd *hcd)
2495 {
2496         unsigned long flags;
2497
2498         dev_err (hcd->self.controller, "HC died; cleaning up\n");
2499
2500         spin_lock_irqsave (&hcd_root_hub_lock, flags);
2501         clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
2502         set_bit(HCD_FLAG_DEAD, &hcd->flags);
2503         if (hcd->rh_registered) {
2504                 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
2505
2506                 /* make hub_wq clean up old urbs and devices */
2507                 usb_set_device_state (hcd->self.root_hub,
2508                                 USB_STATE_NOTATTACHED);
2509                 usb_kick_hub_wq(hcd->self.root_hub);
2510         }
2511         if (usb_hcd_is_primary_hcd(hcd) && hcd->shared_hcd) {
2512                 hcd = hcd->shared_hcd;
2513                 clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
2514                 set_bit(HCD_FLAG_DEAD, &hcd->flags);
2515                 if (hcd->rh_registered) {
2516                         clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
2517
2518                         /* make hub_wq clean up old urbs and devices */
2519                         usb_set_device_state(hcd->self.root_hub,
2520                                         USB_STATE_NOTATTACHED);
2521                         usb_kick_hub_wq(hcd->self.root_hub);
2522                 }
2523         }
2524         spin_unlock_irqrestore (&hcd_root_hub_lock, flags);
2525         /* Make sure that the other roothub is also deallocated. */
2526 }
2527 EXPORT_SYMBOL_GPL (usb_hc_died);
2528
2529 /*-------------------------------------------------------------------------*/
2530
2531 static void init_giveback_urb_bh(struct giveback_urb_bh *bh)
2532 {
2533
2534         spin_lock_init(&bh->lock);
2535         INIT_LIST_HEAD(&bh->head);
2536         tasklet_init(&bh->bh, usb_giveback_urb_bh, (unsigned long)bh);
2537 }
2538
2539 struct usb_hcd *__usb_create_hcd(const struct hc_driver *driver,
2540                 struct device *sysdev, struct device *dev, const char *bus_name,
2541                 struct usb_hcd *primary_hcd)
2542 {
2543         struct usb_hcd *hcd;
2544
2545         hcd = kzalloc(sizeof(*hcd) + driver->hcd_priv_size, GFP_KERNEL);
2546         if (!hcd)
2547                 return NULL;
2548         if (primary_hcd == NULL) {
2549                 hcd->address0_mutex = kmalloc(sizeof(*hcd->address0_mutex),
2550                                 GFP_KERNEL);
2551                 if (!hcd->address0_mutex) {
2552                         kfree(hcd);
2553                         dev_dbg(dev, "hcd address0 mutex alloc failed\n");
2554                         return NULL;
2555                 }
2556                 mutex_init(hcd->address0_mutex);
2557                 hcd->bandwidth_mutex = kmalloc(sizeof(*hcd->bandwidth_mutex),
2558                                 GFP_KERNEL);
2559                 if (!hcd->bandwidth_mutex) {
2560                         kfree(hcd->address0_mutex);
2561                         kfree(hcd);
2562                         dev_dbg(dev, "hcd bandwidth mutex alloc failed\n");
2563                         return NULL;
2564                 }
2565                 mutex_init(hcd->bandwidth_mutex);
2566                 dev_set_drvdata(dev, hcd);
2567         } else {
2568                 mutex_lock(&usb_port_peer_mutex);
2569                 hcd->address0_mutex = primary_hcd->address0_mutex;
2570                 hcd->bandwidth_mutex = primary_hcd->bandwidth_mutex;
2571                 hcd->primary_hcd = primary_hcd;
2572                 primary_hcd->primary_hcd = primary_hcd;
2573                 hcd->shared_hcd = primary_hcd;
2574                 primary_hcd->shared_hcd = hcd;
2575                 mutex_unlock(&usb_port_peer_mutex);
2576         }
2577
2578         kref_init(&hcd->kref);
2579
2580         usb_bus_init(&hcd->self);
2581         hcd->self.controller = dev;
2582         hcd->self.sysdev = sysdev;
2583         hcd->self.bus_name = bus_name;
2584         hcd->self.uses_dma = (sysdev->dma_mask != NULL);
2585
2586         init_timer(&hcd->rh_timer);
2587         hcd->rh_timer.function = rh_timer_func;
2588         hcd->rh_timer.data = (unsigned long) hcd;
2589 #ifdef CONFIG_PM
2590         INIT_WORK(&hcd->wakeup_work, hcd_resume_work);
2591 #endif
2592
2593         hcd->driver = driver;
2594         hcd->speed = driver->flags & HCD_MASK;
2595         hcd->product_desc = (driver->product_desc) ? driver->product_desc :
2596                         "USB Host Controller";
2597         return hcd;
2598 }
2599 EXPORT_SYMBOL_GPL(__usb_create_hcd);
2600
2601 /**
2602  * usb_create_shared_hcd - create and initialize an HCD structure
2603  * @driver: HC driver that will use this hcd
2604  * @dev: device for this HC, stored in hcd->self.controller
2605  * @bus_name: value to store in hcd->self.bus_name
2606  * @primary_hcd: a pointer to the usb_hcd structure that is sharing the
2607  *              PCI device.  Only allocate certain resources for the primary HCD
2608  * Context: !in_interrupt()
2609  *
2610  * Allocate a struct usb_hcd, with extra space at the end for the
2611  * HC driver's private data.  Initialize the generic members of the
2612  * hcd structure.
2613  *
2614  * Return: On success, a pointer to the created and initialized HCD structure.
2615  * On failure (e.g. if memory is unavailable), %NULL.
2616  */
2617 struct usb_hcd *usb_create_shared_hcd(const struct hc_driver *driver,
2618                 struct device *dev, const char *bus_name,
2619                 struct usb_hcd *primary_hcd)
2620 {
2621         return __usb_create_hcd(driver, dev, dev, bus_name, primary_hcd);
2622 }
2623 EXPORT_SYMBOL_GPL(usb_create_shared_hcd);
2624
2625 /**
2626  * usb_create_hcd - create and initialize an HCD structure
2627  * @driver: HC driver that will use this hcd
2628  * @dev: device for this HC, stored in hcd->self.controller
2629  * @bus_name: value to store in hcd->self.bus_name
2630  * Context: !in_interrupt()
2631  *
2632  * Allocate a struct usb_hcd, with extra space at the end for the
2633  * HC driver's private data.  Initialize the generic members of the
2634  * hcd structure.
2635  *
2636  * Return: On success, a pointer to the created and initialized HCD
2637  * structure. On failure (e.g. if memory is unavailable), %NULL.
2638  */
2639 struct usb_hcd *usb_create_hcd(const struct hc_driver *driver,
2640                 struct device *dev, const char *bus_name)
2641 {
2642         return __usb_create_hcd(driver, dev, dev, bus_name, NULL);
2643 }
2644 EXPORT_SYMBOL_GPL(usb_create_hcd);
2645
2646 /*
2647  * Roothubs that share one PCI device must also share the bandwidth mutex.
2648  * Don't deallocate the bandwidth_mutex until the last shared usb_hcd is
2649  * deallocated.
2650  *
2651  * Make sure to deallocate the bandwidth_mutex only when the last HCD is
2652  * freed.  When hcd_release() is called for either hcd in a peer set,
2653  * invalidate the peer's ->shared_hcd and ->primary_hcd pointers.
2654  */
2655 static void hcd_release(struct kref *kref)
2656 {
2657         struct usb_hcd *hcd = container_of (kref, struct usb_hcd, kref);
2658
2659         mutex_lock(&usb_port_peer_mutex);
2660         if (hcd->shared_hcd) {
2661                 struct usb_hcd *peer = hcd->shared_hcd;
2662
2663                 peer->shared_hcd = NULL;
2664                 peer->primary_hcd = NULL;
2665         } else {
2666                 kfree(hcd->address0_mutex);
2667                 kfree(hcd->bandwidth_mutex);
2668         }
2669         mutex_unlock(&usb_port_peer_mutex);
2670         kfree(hcd);
2671 }
2672
2673 struct usb_hcd *usb_get_hcd (struct usb_hcd *hcd)
2674 {
2675         if (hcd)
2676                 kref_get (&hcd->kref);
2677         return hcd;
2678 }
2679 EXPORT_SYMBOL_GPL(usb_get_hcd);
2680
2681 void usb_put_hcd (struct usb_hcd *hcd)
2682 {
2683         if (hcd)
2684                 kref_put (&hcd->kref, hcd_release);
2685 }
2686 EXPORT_SYMBOL_GPL(usb_put_hcd);
2687
2688 int usb_hcd_is_primary_hcd(struct usb_hcd *hcd)
2689 {
2690         if (!hcd->primary_hcd)
2691                 return 1;
2692         return hcd == hcd->primary_hcd;
2693 }
2694 EXPORT_SYMBOL_GPL(usb_hcd_is_primary_hcd);
2695
2696 int usb_hcd_find_raw_port_number(struct usb_hcd *hcd, int port1)
2697 {
2698         if (!hcd->driver->find_raw_port_number)
2699                 return port1;
2700
2701         return hcd->driver->find_raw_port_number(hcd, port1);
2702 }
2703
2704 static int usb_hcd_request_irqs(struct usb_hcd *hcd,
2705                 unsigned int irqnum, unsigned long irqflags)
2706 {
2707         int retval;
2708
2709         if (hcd->driver->irq) {
2710
2711                 snprintf(hcd->irq_descr, sizeof(hcd->irq_descr), "%s:usb%d",
2712                                 hcd->driver->description, hcd->self.busnum);
2713                 retval = request_irq(irqnum, &usb_hcd_irq, irqflags,
2714                                 hcd->irq_descr, hcd);
2715                 if (retval != 0) {
2716                         dev_err(hcd->self.controller,
2717                                         "request interrupt %d failed\n",
2718                                         irqnum);
2719                         return retval;
2720                 }
2721                 hcd->irq = irqnum;
2722                 dev_info(hcd->self.controller, "irq %d, %s 0x%08llx\n", irqnum,
2723                                 (hcd->driver->flags & HCD_MEMORY) ?
2724                                         "io mem" : "io base",
2725                                         (unsigned long long)hcd->rsrc_start);
2726         } else {
2727                 hcd->irq = 0;
2728                 if (hcd->rsrc_start)
2729                         dev_info(hcd->self.controller, "%s 0x%08llx\n",
2730                                         (hcd->driver->flags & HCD_MEMORY) ?
2731                                         "io mem" : "io base",
2732                                         (unsigned long long)hcd->rsrc_start);
2733         }
2734         return 0;
2735 }
2736
2737 /*
2738  * Before we free this root hub, flush in-flight peering attempts
2739  * and disable peer lookups
2740  */
2741 static void usb_put_invalidate_rhdev(struct usb_hcd *hcd)
2742 {
2743         struct usb_device *rhdev;
2744
2745         mutex_lock(&usb_port_peer_mutex);
2746         rhdev = hcd->self.root_hub;
2747         hcd->self.root_hub = NULL;
2748         mutex_unlock(&usb_port_peer_mutex);
2749         usb_put_dev(rhdev);
2750 }
2751
2752 /**
2753  * usb_add_hcd - finish generic HCD structure initialization and register
2754  * @hcd: the usb_hcd structure to initialize
2755  * @irqnum: Interrupt line to allocate
2756  * @irqflags: Interrupt type flags
2757  *
2758  * Finish the remaining parts of generic HCD initialization: allocate the
2759  * buffers of consistent memory, register the bus, request the IRQ line,
2760  * and call the driver's reset() and start() routines.
2761  */
2762 int usb_add_hcd(struct usb_hcd *hcd,
2763                 unsigned int irqnum, unsigned long irqflags)
2764 {
2765         int retval;
2766         struct usb_device *rhdev;
2767
2768         if (IS_ENABLED(CONFIG_USB_PHY) && !hcd->usb_phy) {
2769                 struct usb_phy *phy = usb_get_phy_dev(hcd->self.sysdev, 0);
2770
2771                 if (IS_ERR(phy)) {
2772                         retval = PTR_ERR(phy);
2773                         if (retval == -EPROBE_DEFER)
2774                                 return retval;
2775                 } else {
2776                         retval = usb_phy_init(phy);
2777                         if (retval) {
2778                                 usb_put_phy(phy);
2779                                 return retval;
2780                         }
2781                         hcd->usb_phy = phy;
2782                         hcd->remove_phy = 1;
2783                 }
2784         }
2785
2786         if (IS_ENABLED(CONFIG_GENERIC_PHY) && !hcd->phy) {
2787                 struct phy *phy = phy_get(hcd->self.sysdev, "usb");
2788
2789                 if (IS_ERR(phy)) {
2790                         retval = PTR_ERR(phy);
2791                         if (retval == -EPROBE_DEFER)
2792                                 goto err_phy;
2793                 } else {
2794                         retval = phy_init(phy);
2795                         if (retval) {
2796                                 phy_put(phy);
2797                                 goto err_phy;
2798                         }
2799                         retval = phy_power_on(phy);
2800                         if (retval) {
2801                                 phy_exit(phy);
2802                                 phy_put(phy);
2803                                 goto err_phy;
2804                         }
2805                         hcd->phy = phy;
2806                         hcd->remove_phy = 1;
2807                 }
2808         }
2809
2810         dev_info(hcd->self.controller, "%s\n", hcd->product_desc);
2811
2812         /* Keep old behaviour if authorized_default is not in [0, 1]. */
2813         if (authorized_default < 0 || authorized_default > 1) {
2814                 if (hcd->wireless)
2815                         clear_bit(HCD_FLAG_DEV_AUTHORIZED, &hcd->flags);
2816                 else
2817                         set_bit(HCD_FLAG_DEV_AUTHORIZED, &hcd->flags);
2818         } else {
2819                 if (authorized_default)
2820                         set_bit(HCD_FLAG_DEV_AUTHORIZED, &hcd->flags);
2821                 else
2822                         clear_bit(HCD_FLAG_DEV_AUTHORIZED, &hcd->flags);
2823         }
2824         set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
2825
2826         /* per default all interfaces are authorized */
2827         set_bit(HCD_FLAG_INTF_AUTHORIZED, &hcd->flags);
2828
2829         /* HC is in reset state, but accessible.  Now do the one-time init,
2830          * bottom up so that hcds can customize the root hubs before hub_wq
2831          * starts talking to them.  (Note, bus id is assigned early too.)
2832          */
2833         retval = hcd_buffer_create(hcd);
2834         if (retval != 0) {
2835                 dev_dbg(hcd->self.sysdev, "pool alloc failed\n");
2836                 goto err_create_buf;
2837         }
2838
2839         retval = usb_register_bus(&hcd->self);
2840         if (retval < 0)
2841                 goto err_register_bus;
2842
2843         rhdev = usb_alloc_dev(NULL, &hcd->self, 0);
2844         if (rhdev == NULL) {
2845                 dev_err(hcd->self.sysdev, "unable to allocate root hub\n");
2846                 retval = -ENOMEM;
2847                 goto err_allocate_root_hub;
2848         }
2849         mutex_lock(&usb_port_peer_mutex);
2850         hcd->self.root_hub = rhdev;
2851         mutex_unlock(&usb_port_peer_mutex);
2852
2853         switch (hcd->speed) {
2854         case HCD_USB11:
2855                 rhdev->speed = USB_SPEED_FULL;
2856                 break;
2857         case HCD_USB2:
2858                 rhdev->speed = USB_SPEED_HIGH;
2859                 break;
2860         case HCD_USB25:
2861                 rhdev->speed = USB_SPEED_WIRELESS;
2862                 break;
2863         case HCD_USB3:
2864                 rhdev->speed = USB_SPEED_SUPER;
2865                 break;
2866         case HCD_USB31:
2867                 rhdev->speed = USB_SPEED_SUPER_PLUS;
2868                 break;
2869         default:
2870                 retval = -EINVAL;
2871                 goto err_set_rh_speed;
2872         }
2873
2874         /* wakeup flag init defaults to "everything works" for root hubs,
2875          * but drivers can override it in reset() if needed, along with
2876          * recording the overall controller's system wakeup capability.
2877          */
2878         device_set_wakeup_capable(&rhdev->dev, 1);
2879
2880         /* HCD_FLAG_RH_RUNNING doesn't matter until the root hub is
2881          * registered.  But since the controller can die at any time,
2882          * let's initialize the flag before touching the hardware.
2883          */
2884         set_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
2885
2886         /* "reset" is misnamed; its role is now one-time init. the controller
2887          * should already have been reset (and boot firmware kicked off etc).
2888          */
2889         if (hcd->driver->reset) {
2890                 retval = hcd->driver->reset(hcd);
2891                 if (retval < 0) {
2892                         dev_err(hcd->self.controller, "can't setup: %d\n",
2893                                         retval);
2894                         goto err_hcd_driver_setup;
2895                 }
2896         }
2897         hcd->rh_pollable = 1;
2898
2899         /* NOTE: root hub and controller capabilities may not be the same */
2900         if (device_can_wakeup(hcd->self.controller)
2901                         && device_can_wakeup(&hcd->self.root_hub->dev))
2902                 dev_dbg(hcd->self.controller, "supports USB remote wakeup\n");
2903
2904         /* initialize tasklets */
2905         init_giveback_urb_bh(&hcd->high_prio_bh);
2906         hcd->high_prio_bh.high_prio = true;
2907         init_giveback_urb_bh(&hcd->low_prio_bh);
2908
2909         /* enable irqs just before we start the controller,
2910          * if the BIOS provides legacy PCI irqs.
2911          */
2912         if (usb_hcd_is_primary_hcd(hcd) && irqnum) {
2913                 retval = usb_hcd_request_irqs(hcd, irqnum, irqflags);
2914                 if (retval)
2915                         goto err_request_irq;
2916         }
2917
2918         hcd->state = HC_STATE_RUNNING;
2919         retval = hcd->driver->start(hcd);
2920         if (retval < 0) {
2921                 dev_err(hcd->self.controller, "startup error %d\n", retval);
2922                 goto err_hcd_driver_start;
2923         }
2924
2925         /* starting here, usbcore will pay attention to this root hub */
2926         retval = register_root_hub(hcd);
2927         if (retval != 0)
2928                 goto err_register_root_hub;
2929
2930         retval = sysfs_create_group(&rhdev->dev.kobj, &usb_bus_attr_group);
2931         if (retval < 0) {
2932                 printk(KERN_ERR "Cannot register USB bus sysfs attributes: %d\n",
2933                        retval);
2934                 goto error_create_attr_group;
2935         }
2936         if (hcd->uses_new_polling && HCD_POLL_RH(hcd))
2937                 usb_hcd_poll_rh_status(hcd);
2938
2939         return retval;
2940
2941 error_create_attr_group:
2942         clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
2943         if (HC_IS_RUNNING(hcd->state))
2944                 hcd->state = HC_STATE_QUIESCING;
2945         spin_lock_irq(&hcd_root_hub_lock);
2946         hcd->rh_registered = 0;
2947         spin_unlock_irq(&hcd_root_hub_lock);
2948
2949 #ifdef CONFIG_PM
2950         cancel_work_sync(&hcd->wakeup_work);
2951 #endif
2952         mutex_lock(&usb_bus_idr_lock);
2953         usb_disconnect(&rhdev);         /* Sets rhdev to NULL */
2954         mutex_unlock(&usb_bus_idr_lock);
2955 err_register_root_hub:
2956         hcd->rh_pollable = 0;
2957         clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
2958         del_timer_sync(&hcd->rh_timer);
2959         hcd->driver->stop(hcd);
2960         hcd->state = HC_STATE_HALT;
2961         clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
2962         del_timer_sync(&hcd->rh_timer);
2963 err_hcd_driver_start:
2964         if (usb_hcd_is_primary_hcd(hcd) && hcd->irq > 0)
2965                 free_irq(irqnum, hcd);
2966 err_request_irq:
2967 err_hcd_driver_setup:
2968 err_set_rh_speed:
2969         usb_put_invalidate_rhdev(hcd);
2970 err_allocate_root_hub:
2971         usb_deregister_bus(&hcd->self);
2972 err_register_bus:
2973         hcd_buffer_destroy(hcd);
2974 err_create_buf:
2975         if (IS_ENABLED(CONFIG_GENERIC_PHY) && hcd->remove_phy && hcd->phy) {
2976                 phy_power_off(hcd->phy);
2977                 phy_exit(hcd->phy);
2978                 phy_put(hcd->phy);
2979                 hcd->phy = NULL;
2980         }
2981 err_phy:
2982         if (hcd->remove_phy && hcd->usb_phy) {
2983                 usb_phy_shutdown(hcd->usb_phy);
2984                 usb_put_phy(hcd->usb_phy);
2985                 hcd->usb_phy = NULL;
2986         }
2987         return retval;
2988 }
2989 EXPORT_SYMBOL_GPL(usb_add_hcd);
2990
2991 /**
2992  * usb_remove_hcd - shutdown processing for generic HCDs
2993  * @hcd: the usb_hcd structure to remove
2994  * Context: !in_interrupt()
2995  *
2996  * Disconnects the root hub, then reverses the effects of usb_add_hcd(),
2997  * invoking the HCD's stop() method.
2998  */
2999 void usb_remove_hcd(struct usb_hcd *hcd)
3000 {
3001         struct usb_device *rhdev = hcd->self.root_hub;
3002
3003         dev_info(hcd->self.controller, "remove, state %x\n", hcd->state);
3004
3005         usb_get_dev(rhdev);
3006         sysfs_remove_group(&rhdev->dev.kobj, &usb_bus_attr_group);
3007
3008         clear_bit(HCD_FLAG_RH_RUNNING, &hcd->flags);
3009         if (HC_IS_RUNNING (hcd->state))
3010                 hcd->state = HC_STATE_QUIESCING;
3011
3012         dev_dbg(hcd->self.controller, "roothub graceful disconnect\n");
3013         spin_lock_irq (&hcd_root_hub_lock);
3014         hcd->rh_registered = 0;
3015         spin_unlock_irq (&hcd_root_hub_lock);
3016
3017 #ifdef CONFIG_PM
3018         cancel_work_sync(&hcd->wakeup_work);
3019 #endif
3020
3021         mutex_lock(&usb_bus_idr_lock);
3022         usb_disconnect(&rhdev);         /* Sets rhdev to NULL */
3023         mutex_unlock(&usb_bus_idr_lock);
3024
3025         /*
3026          * tasklet_kill() isn't needed here because:
3027          * - driver's disconnect() called from usb_disconnect() should
3028          *   make sure its URBs are completed during the disconnect()
3029          *   callback
3030          *
3031          * - it is too late to run complete() here since driver may have
3032          *   been removed already now
3033          */
3034
3035         /* Prevent any more root-hub status calls from the timer.
3036          * The HCD might still restart the timer (if a port status change
3037          * interrupt occurs), but usb_hcd_poll_rh_status() won't invoke
3038          * the hub_status_data() callback.
3039          */
3040         hcd->rh_pollable = 0;
3041         clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
3042         del_timer_sync(&hcd->rh_timer);
3043
3044         hcd->driver->stop(hcd);
3045         hcd->state = HC_STATE_HALT;
3046
3047         /* In case the HCD restarted the timer, stop it again. */
3048         clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
3049         del_timer_sync(&hcd->rh_timer);
3050
3051         if (usb_hcd_is_primary_hcd(hcd)) {
3052                 if (hcd->irq > 0)
3053                         free_irq(hcd->irq, hcd);
3054         }
3055
3056         usb_deregister_bus(&hcd->self);
3057         hcd_buffer_destroy(hcd);
3058
3059         if (IS_ENABLED(CONFIG_GENERIC_PHY) && hcd->remove_phy && hcd->phy) {
3060                 phy_power_off(hcd->phy);
3061                 phy_exit(hcd->phy);
3062                 phy_put(hcd->phy);
3063                 hcd->phy = NULL;
3064         }
3065         if (hcd->remove_phy && hcd->usb_phy) {
3066                 usb_phy_shutdown(hcd->usb_phy);
3067                 usb_put_phy(hcd->usb_phy);
3068                 hcd->usb_phy = NULL;
3069         }
3070
3071         usb_put_invalidate_rhdev(hcd);
3072         hcd->flags = 0;
3073 }
3074 EXPORT_SYMBOL_GPL(usb_remove_hcd);
3075
3076 void
3077 usb_hcd_platform_shutdown(struct platform_device *dev)
3078 {
3079         struct usb_hcd *hcd = platform_get_drvdata(dev);
3080
3081         /* No need for pm_runtime_put(), we're shutting down */
3082         pm_runtime_get_sync(&dev->dev);
3083
3084         if (hcd->driver->shutdown)
3085                 hcd->driver->shutdown(hcd);
3086 }
3087 EXPORT_SYMBOL_GPL(usb_hcd_platform_shutdown);
3088
3089 /*-------------------------------------------------------------------------*/
3090
3091 #if IS_ENABLED(CONFIG_USB_MON)
3092
3093 const struct usb_mon_operations *mon_ops;
3094
3095 /*
3096  * The registration is unlocked.
3097  * We do it this way because we do not want to lock in hot paths.
3098  *
3099  * Notice that the code is minimally error-proof. Because usbmon needs
3100  * symbols from usbcore, usbcore gets referenced and cannot be unloaded first.
3101  */
3102
3103 int usb_mon_register(const struct usb_mon_operations *ops)
3104 {
3105
3106         if (mon_ops)
3107                 return -EBUSY;
3108
3109         mon_ops = ops;
3110         mb();
3111         return 0;
3112 }
3113 EXPORT_SYMBOL_GPL (usb_mon_register);
3114
3115 void usb_mon_deregister (void)
3116 {
3117
3118         if (mon_ops == NULL) {
3119                 printk(KERN_ERR "USB: monitor was not registered\n");
3120                 return;
3121         }
3122         mon_ops = NULL;
3123         mb();
3124 }
3125 EXPORT_SYMBOL_GPL (usb_mon_deregister);
3126
3127 #endif /* CONFIG_USB_MON || CONFIG_USB_MON_MODULE */