Merge tag 'v3.10.97' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / usb / host / xhci.c
CommitLineData
66d4eadd
SS
1/*
2 * xHCI host controller driver
3 *
4 * Copyright (C) 2008 Intel Corp.
5 *
6 * Author: Sarah Sharp
7 * Some code borrowed from the Linux EHCI driver.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 * for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
43b86af8 23#include <linux/pci.h>
66d4eadd 24#include <linux/irq.h>
8df75f42 25#include <linux/log2.h>
66d4eadd 26#include <linux/module.h>
b0567b3f 27#include <linux/moduleparam.h>
5a0e3ad6 28#include <linux/slab.h>
71c731a2 29#include <linux/dmi.h>
66d4eadd
SS
30
31#include "xhci.h"
32
6fa3eb70
S
33#ifdef CONFIG_MTK_XHCI
34#include <asm/uaccess.h>
35#include <linux/dma-mapping.h>
36#include <linux/platform_device.h>
37#include <linux/xhci/xhci-mtk-scheduler.h>
38#include <linux/xhci/xhci-mtk-power.h>
39#include <linux/xhci/xhci-mtk.h>
40
41#ifdef CONFIG_USBIF_COMPLIANCE
42#include <linux/proc_fs.h>
43#include <asm/uaccess.h>
44#include <linux/seq_file.h>
45#include <linux/kobject.h>
46#include <linux/miscdevice.h>
47
48static struct miscdevice mu3h_uevent_device = {
49 .minor = MISC_DYNAMIC_MINOR,
50 .name = "usbif_u3h_uevent",
51 .fops = NULL,
52};
53#endif
54#endif
55
66d4eadd
SS
56#define DRIVER_AUTHOR "Sarah Sharp"
57#define DRIVER_DESC "'eXtensible' Host Controller (xHC) Driver"
58
b0567b3f
SS
59/* Some 0.95 hardware can't handle the chain bit on a Link TRB being cleared */
60static int link_quirk;
61module_param(link_quirk, int, S_IRUGO | S_IWUSR);
62MODULE_PARM_DESC(link_quirk, "Don't clear the chain bit on a link TRB");
63
6fa3eb70
S
64#ifdef CONFIG_USBIF_COMPLIANCE
65int usbif_u3h_send_event(char* event)
66{
67 char udev_event[128];
68 char *envp[] = {udev_event, NULL };
69 int ret ;
70
71 snprintf(udev_event, 128, "USBIF_EVENT=%s",event);
72 printk("usbif_u3h_send_event - sending event - %s in %s\n", udev_event, kobject_get_path(&mu3h_uevent_device.this_device->kobj, GFP_KERNEL));
73 ret = kobject_uevent_env(&mu3h_uevent_device.this_device->kobj, KOBJ_CHANGE, envp);
74 if (ret < 0)
75 printk("usbif_u3h_send_event sending failed with ret = %d, \n", ret);
76
77 return ret;
78}
79#endif
80
66d4eadd
SS
81/* TODO: copied from ehci-hcd.c - can this be refactored? */
82/*
2611bd18 83 * xhci_handshake - spin reading hc until handshake completes or fails
66d4eadd
SS
84 * @ptr: address of hc register to be read
85 * @mask: bits to look at in result of read
86 * @done: value of those bits when handshake succeeds
87 * @usec: timeout in microseconds
88 *
89 * Returns negative errno, or zero on success
90 *
91 * Success happens when the "mask" bits have the specified value (hardware
92 * handshake done). There are two failure modes: "usec" have passed (major
93 * hardware flakeout), or the register reads as all-ones (hardware removed).
94 */
2611bd18 95int xhci_handshake(struct xhci_hcd *xhci, void __iomem *ptr,
66d4eadd
SS
96 u32 mask, u32 done, int usec)
97{
98 u32 result;
99
100 do {
101 result = xhci_readl(xhci, ptr);
102 if (result == ~(u32)0) /* card removed */
103 return -ENODEV;
104 result &= mask;
105 if (result == done)
106 return 0;
107 udelay(1);
108 usec--;
109 } while (usec > 0);
110 return -ETIMEDOUT;
111}
112
113/*
4f0f0bae 114 * Disable interrupts and begin the xHCI halting process.
66d4eadd 115 */
4f0f0bae 116void xhci_quiesce(struct xhci_hcd *xhci)
66d4eadd
SS
117{
118 u32 halted;
119 u32 cmd;
120 u32 mask;
121
66d4eadd
SS
122 mask = ~(XHCI_IRQS);
123 halted = xhci_readl(xhci, &xhci->op_regs->status) & STS_HALT;
124 if (!halted)
125 mask &= ~CMD_RUN;
126
127 cmd = xhci_readl(xhci, &xhci->op_regs->command);
128 cmd &= mask;
129 xhci_writel(xhci, cmd, &xhci->op_regs->command);
4f0f0bae
SS
130}
131
132/*
133 * Force HC into halt state.
134 *
135 * Disable any IRQs and clear the run/stop bit.
136 * HC will complete any current and actively pipelined transactions, and
bdfca502 137 * should halt within 16 ms of the run/stop bit being cleared.
4f0f0bae 138 * Read HC Halted bit in the status register to see when the HC is finished.
4f0f0bae
SS
139 */
140int xhci_halt(struct xhci_hcd *xhci)
141{
c6cc27c7 142 int ret;
4f0f0bae
SS
143 xhci_dbg(xhci, "// Halt the HC\n");
144 xhci_quiesce(xhci);
66d4eadd 145
2611bd18 146 ret = xhci_handshake(xhci, &xhci->op_regs->status,
66d4eadd 147 STS_HALT, STS_HALT, XHCI_MAX_HALT_USEC);
c181bc5b 148 if (!ret) {
c6cc27c7 149 xhci->xhc_state |= XHCI_STATE_HALTED;
c181bc5b
EF
150 xhci->cmd_ring_state = CMD_RING_STATE_STOPPED;
151 } else
5af98bb0
SS
152 xhci_warn(xhci, "Host not halted after %u microseconds.\n",
153 XHCI_MAX_HALT_USEC);
c6cc27c7 154 return ret;
66d4eadd
SS
155}
156
ed07453f
SS
157/*
158 * Set the run bit and wait for the host to be running.
159 */
8212a49d 160static int xhci_start(struct xhci_hcd *xhci)
ed07453f
SS
161{
162 u32 temp;
163 int ret;
164
165 temp = xhci_readl(xhci, &xhci->op_regs->command);
166 temp |= (CMD_RUN);
167 xhci_dbg(xhci, "// Turn on HC, cmd = 0x%x.\n",
168 temp);
169 xhci_writel(xhci, temp, &xhci->op_regs->command);
170
171 /*
172 * Wait for the HCHalted Status bit to be 0 to indicate the host is
173 * running.
174 */
2611bd18 175 ret = xhci_handshake(xhci, &xhci->op_regs->status,
ed07453f
SS
176 STS_HALT, 0, XHCI_MAX_HALT_USEC);
177 if (ret == -ETIMEDOUT)
178 xhci_err(xhci, "Host took too long to start, "
179 "waited %u microseconds.\n",
180 XHCI_MAX_HALT_USEC);
c6cc27c7 181 if (!ret)
5eaec968 182 xhci->xhc_state &= ~(XHCI_STATE_HALTED | XHCI_STATE_DYING);
6fa3eb70 183
ed07453f
SS
184 return ret;
185}
186
66d4eadd 187/*
ac04e6ff 188 * Reset a halted HC.
66d4eadd
SS
189 *
190 * This resets pipelines, timers, counters, state machines, etc.
191 * Transactions will be terminated immediately, and operational registers
192 * will be set to their defaults.
193 */
194int xhci_reset(struct xhci_hcd *xhci)
195{
196 u32 command;
197 u32 state;
f370b996 198 int ret, i;
66d4eadd
SS
199
200 state = xhci_readl(xhci, &xhci->op_regs->status);
d3512f63
SS
201 if ((state & STS_HALT) == 0) {
202 xhci_warn(xhci, "Host controller not halted, aborting reset.\n");
203 return 0;
204 }
66d4eadd
SS
205
206 xhci_dbg(xhci, "// Reset the HC\n");
207 command = xhci_readl(xhci, &xhci->op_regs->command);
208 command |= CMD_RESET;
209 xhci_writel(xhci, command, &xhci->op_regs->command);
66d4eadd 210
2611bd18 211 ret = xhci_handshake(xhci, &xhci->op_regs->command,
22ceac19 212 CMD_RESET, 0, 10 * 1000 * 1000);
2d62f3ee
SS
213 if (ret)
214 return ret;
215
216 xhci_dbg(xhci, "Wait for controller to be ready for doorbell rings\n");
217 /*
218 * xHCI cannot write to any doorbells or operational registers other
219 * than status until the "Controller Not Ready" flag is cleared.
220 */
2611bd18 221 ret = xhci_handshake(xhci, &xhci->op_regs->status,
22ceac19 222 STS_CNR, 0, 10 * 1000 * 1000);
f370b996
AX
223
224 for (i = 0; i < 2; ++i) {
225 xhci->bus_state[i].port_c_suspend = 0;
226 xhci->bus_state[i].suspended_ports = 0;
227 xhci->bus_state[i].resuming_ports = 0;
228 }
229
230 return ret;
66d4eadd
SS
231}
232
421aa841
SAS
233#ifdef CONFIG_PCI
234static int xhci_free_msi(struct xhci_hcd *xhci)
43b86af8
DN
235{
236 int i;
43b86af8 237
421aa841
SAS
238 if (!xhci->msix_entries)
239 return -EINVAL;
43b86af8 240
421aa841
SAS
241 for (i = 0; i < xhci->msix_count; i++)
242 if (xhci->msix_entries[i].vector)
243 free_irq(xhci->msix_entries[i].vector,
244 xhci_to_hcd(xhci));
245 return 0;
43b86af8
DN
246}
247
248/*
249 * Set up MSI
250 */
251static int xhci_setup_msi(struct xhci_hcd *xhci)
66d4eadd
SS
252{
253 int ret;
43b86af8
DN
254 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
255
256 ret = pci_enable_msi(pdev);
257 if (ret) {
3b9783b2 258 xhci_dbg(xhci, "failed to allocate MSI entry\n");
43b86af8
DN
259 return ret;
260 }
261
262 ret = request_irq(pdev->irq, (irq_handler_t)xhci_msi_irq,
263 0, "xhci_hcd", xhci_to_hcd(xhci));
264 if (ret) {
3b9783b2 265 xhci_dbg(xhci, "disable MSI interrupt\n");
43b86af8
DN
266 pci_disable_msi(pdev);
267 }
268
269 return ret;
270}
271
421aa841
SAS
272/*
273 * Free IRQs
274 * free all IRQs request
275 */
276static void xhci_free_irq(struct xhci_hcd *xhci)
277{
278 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
279 int ret;
280
281 /* return if using legacy interrupt */
cd70469d 282 if (xhci_to_hcd(xhci)->irq > 0)
421aa841
SAS
283 return;
284
285 ret = xhci_free_msi(xhci);
286 if (!ret)
287 return;
cd70469d 288 if (pdev->irq > 0)
421aa841
SAS
289 free_irq(pdev->irq, xhci_to_hcd(xhci));
290
291 return;
292}
293
43b86af8
DN
294/*
295 * Set up MSI-X
296 */
297static int xhci_setup_msix(struct xhci_hcd *xhci)
298{
299 int i, ret = 0;
0029227f
AX
300 struct usb_hcd *hcd = xhci_to_hcd(xhci);
301 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
66d4eadd 302
43b86af8
DN
303 /*
304 * calculate number of msi-x vectors supported.
305 * - HCS_MAX_INTRS: the max number of interrupts the host can handle,
306 * with max number of interrupters based on the xhci HCSPARAMS1.
307 * - num_online_cpus: maximum msi-x vectors per CPUs core.
308 * Add additional 1 vector to ensure always available interrupt.
309 */
310 xhci->msix_count = min(num_online_cpus() + 1,
311 HCS_MAX_INTRS(xhci->hcs_params1));
312
313 xhci->msix_entries =
314 kmalloc((sizeof(struct msix_entry))*xhci->msix_count,
86871975 315 GFP_KERNEL);
66d4eadd
SS
316 if (!xhci->msix_entries) {
317 xhci_err(xhci, "Failed to allocate MSI-X entries\n");
318 return -ENOMEM;
319 }
43b86af8
DN
320
321 for (i = 0; i < xhci->msix_count; i++) {
322 xhci->msix_entries[i].entry = i;
323 xhci->msix_entries[i].vector = 0;
324 }
66d4eadd
SS
325
326 ret = pci_enable_msix(pdev, xhci->msix_entries, xhci->msix_count);
327 if (ret) {
3b9783b2 328 xhci_dbg(xhci, "Failed to enable MSI-X\n");
66d4eadd
SS
329 goto free_entries;
330 }
331
43b86af8
DN
332 for (i = 0; i < xhci->msix_count; i++) {
333 ret = request_irq(xhci->msix_entries[i].vector,
334 (irq_handler_t)xhci_msi_irq,
335 0, "xhci_hcd", xhci_to_hcd(xhci));
336 if (ret)
337 goto disable_msix;
66d4eadd 338 }
43b86af8 339
0029227f 340 hcd->msix_enabled = 1;
43b86af8 341 return ret;
66d4eadd
SS
342
343disable_msix:
3b9783b2 344 xhci_dbg(xhci, "disable MSI-X interrupt\n");
43b86af8 345 xhci_free_irq(xhci);
66d4eadd
SS
346 pci_disable_msix(pdev);
347free_entries:
348 kfree(xhci->msix_entries);
349 xhci->msix_entries = NULL;
350 return ret;
351}
352
66d4eadd
SS
353/* Free any IRQs and disable MSI-X */
354static void xhci_cleanup_msix(struct xhci_hcd *xhci)
355{
0029227f
AX
356 struct usb_hcd *hcd = xhci_to_hcd(xhci);
357 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
66d4eadd 358
01aca4a7
JP
359 if (xhci->quirks & XHCI_PLAT)
360 return;
361
43b86af8
DN
362 xhci_free_irq(xhci);
363
364 if (xhci->msix_entries) {
365 pci_disable_msix(pdev);
366 kfree(xhci->msix_entries);
367 xhci->msix_entries = NULL;
368 } else {
369 pci_disable_msi(pdev);
370 }
371
0029227f 372 hcd->msix_enabled = 0;
43b86af8 373 return;
66d4eadd 374}
66d4eadd 375
421aa841
SAS
376static void xhci_msix_sync_irqs(struct xhci_hcd *xhci)
377{
378 int i;
379
380 if (xhci->msix_entries) {
381 for (i = 0; i < xhci->msix_count; i++)
382 synchronize_irq(xhci->msix_entries[i].vector);
383 }
384}
385
386static int xhci_try_enable_msi(struct usb_hcd *hcd)
387{
388 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
a6025b95 389 struct pci_dev *pdev;
421aa841
SAS
390 int ret;
391
a6025b95
SS
392 /* The xhci platform device has set up IRQs through usb_add_hcd. */
393 if (xhci->quirks & XHCI_PLAT)
394 return 0;
395
396 pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
421aa841
SAS
397 /*
398 * Some Fresco Logic host controllers advertise MSI, but fail to
399 * generate interrupts. Don't even try to enable MSI.
400 */
401 if (xhci->quirks & XHCI_BROKEN_MSI)
00eed9c8 402 goto legacy_irq;
421aa841
SAS
403
404 /* unregister the legacy interrupt */
405 if (hcd->irq)
406 free_irq(hcd->irq, hcd);
cd70469d 407 hcd->irq = 0;
421aa841
SAS
408
409 ret = xhci_setup_msix(xhci);
410 if (ret)
411 /* fall back to msi*/
412 ret = xhci_setup_msi(xhci);
413
414 if (!ret)
cd70469d 415 /* hcd->irq is 0, we have MSI */
421aa841
SAS
416 return 0;
417
68d07f64
SS
418 if (!pdev->irq) {
419 xhci_err(xhci, "No msi-x/msi found and no IRQ in BIOS\n");
420 return -EINVAL;
421 }
422
00eed9c8 423 legacy_irq:
421aa841
SAS
424 /* fall back to legacy interrupt*/
425 ret = request_irq(pdev->irq, &usb_hcd_irq, IRQF_SHARED,
426 hcd->irq_descr, hcd);
427 if (ret) {
428 xhci_err(xhci, "request interrupt %d failed\n",
429 pdev->irq);
430 return ret;
431 }
432 hcd->irq = pdev->irq;
433 return 0;
434}
435
436#else
437
65cadc88 438static inline int xhci_try_enable_msi(struct usb_hcd *hcd)
421aa841
SAS
439{
440 return 0;
441}
442
65cadc88 443static inline void xhci_cleanup_msix(struct xhci_hcd *xhci)
421aa841
SAS
444{
445}
446
65cadc88 447static inline void xhci_msix_sync_irqs(struct xhci_hcd *xhci)
421aa841
SAS
448{
449}
450
451#endif
452
71c731a2
AC
453static void compliance_mode_recovery(unsigned long arg)
454{
455 struct xhci_hcd *xhci;
456 struct usb_hcd *hcd;
457 u32 temp;
458 int i;
459
460 xhci = (struct xhci_hcd *)arg;
461
462 for (i = 0; i < xhci->num_usb3_ports; i++) {
463 temp = xhci_readl(xhci, xhci->usb3_ports[i]);
464 if ((temp & PORT_PLS_MASK) == USB_SS_PORT_LS_COMP_MOD) {
465 /*
466 * Compliance Mode Detected. Letting USB Core
467 * handle the Warm Reset
468 */
58b1d799 469 xhci_dbg(xhci, "Compliance mode detected->port %d\n",
71c731a2 470 i + 1);
58b1d799 471 xhci_dbg(xhci, "Attempting compliance mode recovery\n");
71c731a2
AC
472 hcd = xhci->shared_hcd;
473
474 if (hcd->state == HC_STATE_SUSPENDED)
475 usb_hcd_resume_root_hub(hcd);
476
477 usb_hcd_poll_rh_status(hcd);
478 }
479 }
480
481 if (xhci->port_status_u0 != ((1 << xhci->num_usb3_ports)-1))
482 mod_timer(&xhci->comp_mode_recovery_timer,
483 jiffies + msecs_to_jiffies(COMP_MODE_RCVRY_MSECS));
484}
485
486/*
487 * Quirk to work around issue generated by the SN65LVPE502CP USB3.0 re-driver
488 * that causes ports behind that hardware to enter compliance mode sometimes.
489 * The quirk creates a timer that polls every 2 seconds the link state of
490 * each host controller's port and recovers it by issuing a Warm reset
491 * if Compliance mode is detected, otherwise the port will become "dead" (no
492 * device connections or disconnections will be detected anymore). Becasue no
493 * status event is generated when entering compliance mode (per xhci spec),
494 * this quirk is needed on systems that have the failing hardware installed.
495 */
496static void compliance_mode_recovery_timer_init(struct xhci_hcd *xhci)
497{
498 xhci->port_status_u0 = 0;
499 init_timer(&xhci->comp_mode_recovery_timer);
500
501 xhci->comp_mode_recovery_timer.data = (unsigned long) xhci;
502 xhci->comp_mode_recovery_timer.function = compliance_mode_recovery;
503 xhci->comp_mode_recovery_timer.expires = jiffies +
504 msecs_to_jiffies(COMP_MODE_RCVRY_MSECS);
505
506 set_timer_slack(&xhci->comp_mode_recovery_timer,
507 msecs_to_jiffies(COMP_MODE_RCVRY_MSECS));
508 add_timer(&xhci->comp_mode_recovery_timer);
58b1d799 509 xhci_dbg(xhci, "Compliance mode recovery timer initialized\n");
71c731a2
AC
510}
511
512/*
513 * This function identifies the systems that have installed the SN65LVPE502CP
514 * USB3.0 re-driver and that need the Compliance Mode Quirk.
515 * Systems:
516 * Vendor: Hewlett-Packard -> System Models: Z420, Z620 and Z820
517 */
c3897aa5 518bool xhci_compliance_mode_recovery_timer_quirk_check(void)
71c731a2
AC
519{
520 const char *dmi_product_name, *dmi_sys_vendor;
521
522 dmi_product_name = dmi_get_system_info(DMI_PRODUCT_NAME);
523 dmi_sys_vendor = dmi_get_system_info(DMI_SYS_VENDOR);
457a73d3
VG
524 if (!dmi_product_name || !dmi_sys_vendor)
525 return false;
71c731a2
AC
526
527 if (!(strstr(dmi_sys_vendor, "Hewlett-Packard")))
528 return false;
529
530 if (strstr(dmi_product_name, "Z420") ||
531 strstr(dmi_product_name, "Z620") ||
47080974 532 strstr(dmi_product_name, "Z820") ||
b0e4e606 533 strstr(dmi_product_name, "Z1 Workstation"))
71c731a2
AC
534 return true;
535
536 return false;
537}
538
539static int xhci_all_ports_seen_u0(struct xhci_hcd *xhci)
540{
541 return (xhci->port_status_u0 == ((1 << xhci->num_usb3_ports)-1));
542}
543
544
66d4eadd
SS
545/*
546 * Initialize memory for HCD and xHC (one-time init).
547 *
548 * Program the PAGESIZE register, initialize the device context array, create
549 * device contexts (?), set up a command ring segment (or two?), create event
550 * ring (one for now).
551 */
552int xhci_init(struct usb_hcd *hcd)
553{
554 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
555 int retval = 0;
556
557 xhci_dbg(xhci, "xhci_init\n");
558 spin_lock_init(&xhci->lock);
d7826599 559 if (xhci->hci_version == 0x95 && link_quirk) {
b0567b3f
SS
560 xhci_dbg(xhci, "QUIRK: Not clearing Link TRB chain bits.\n");
561 xhci->quirks |= XHCI_LINK_TRB_QUIRK;
562 } else {
ac9d8fe7 563 xhci_dbg(xhci, "xHCI doesn't need link TRB QUIRK\n");
b0567b3f 564 }
6fa3eb70 565
66d4eadd
SS
566 retval = xhci_mem_init(xhci, GFP_KERNEL);
567 xhci_dbg(xhci, "Finished xhci_init\n");
568
71c731a2 569 /* Initializing Compliance Mode Recovery Data If Needed */
c3897aa5 570 if (xhci_compliance_mode_recovery_timer_quirk_check()) {
71c731a2
AC
571 xhci->quirks |= XHCI_COMP_MODE_QUIRK;
572 compliance_mode_recovery_timer_init(xhci);
573 }
574
66d4eadd
SS
575 return retval;
576}
577
7f84eef0
SS
578/*-------------------------------------------------------------------------*/
579
7f84eef0
SS
580
581#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
8212a49d 582static void xhci_event_ring_work(unsigned long arg)
7f84eef0
SS
583{
584 unsigned long flags;
585 int temp;
8e595a5d 586 u64 temp_64;
7f84eef0
SS
587 struct xhci_hcd *xhci = (struct xhci_hcd *) arg;
588 int i, j;
589
590 xhci_dbg(xhci, "Poll event ring: %lu\n", jiffies);
591
592 spin_lock_irqsave(&xhci->lock, flags);
593 temp = xhci_readl(xhci, &xhci->op_regs->status);
594 xhci_dbg(xhci, "op reg status = 0x%x\n", temp);
7bd89b40
SS
595 if (temp == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING) ||
596 (xhci->xhc_state & XHCI_STATE_HALTED)) {
e4ab05df
SS
597 xhci_dbg(xhci, "HW died, polling stopped.\n");
598 spin_unlock_irqrestore(&xhci->lock, flags);
599 return;
600 }
601
7f84eef0
SS
602 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
603 xhci_dbg(xhci, "ir_set 0 pending = 0x%x\n", temp);
7f84eef0
SS
604 xhci_dbg(xhci, "HC error bitmask = 0x%x\n", xhci->error_bitmask);
605 xhci->error_bitmask = 0;
606 xhci_dbg(xhci, "Event ring:\n");
607 xhci_debug_segment(xhci, xhci->event_ring->deq_seg);
608 xhci_dbg_ring_ptrs(xhci, xhci->event_ring);
8e595a5d
SS
609 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
610 temp_64 &= ~ERST_PTR_MASK;
611 xhci_dbg(xhci, "ERST deq = 64'h%0lx\n", (long unsigned int) temp_64);
7f84eef0
SS
612 xhci_dbg(xhci, "Command ring:\n");
613 xhci_debug_segment(xhci, xhci->cmd_ring->deq_seg);
614 xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring);
615 xhci_dbg_cmd_ptrs(xhci);
3ffbba95 616 for (i = 0; i < MAX_HC_SLOTS; ++i) {
63a0d9ab
SS
617 if (!xhci->devs[i])
618 continue;
619 for (j = 0; j < 31; ++j) {
e9df17eb 620 xhci_dbg_ep_rings(xhci, i, j, &xhci->devs[i]->eps[j]);
3ffbba95
SS
621 }
622 }
7f84eef0
SS
623 spin_unlock_irqrestore(&xhci->lock, flags);
624
625 if (!xhci->zombie)
626 mod_timer(&xhci->event_ring_timer, jiffies + POLL_TIMEOUT * HZ);
627 else
628 xhci_dbg(xhci, "Quit polling the event ring.\n");
629}
630#endif
631
f6ff0ac8
SS
632static int xhci_run_finished(struct xhci_hcd *xhci)
633{
634 if (xhci_start(xhci)) {
635 xhci_halt(xhci);
636 return -ENODEV;
637 }
6fa3eb70 638
f6ff0ac8 639 xhci->shared_hcd->state = HC_STATE_RUNNING;
c181bc5b 640 xhci->cmd_ring_state = CMD_RING_STATE_RUNNING;
f6ff0ac8
SS
641
642 if (xhci->quirks & XHCI_NEC_HOST)
643 xhci_ring_cmd_db(xhci);
644
645 xhci_dbg(xhci, "Finished xhci_run for USB3 roothub\n");
6fa3eb70 646
f6ff0ac8
SS
647 return 0;
648}
649
66d4eadd
SS
650/*
651 * Start the HC after it was halted.
652 *
653 * This function is called by the USB core when the HC driver is added.
654 * Its opposite is xhci_stop().
655 *
656 * xhci_init() must be called once before this function can be called.
657 * Reset the HC, enable device slot contexts, program DCBAAP, and
658 * set command ring pointer and event ring pointer.
659 *
660 * Setup MSI-X vectors and enable interrupts.
661 */
662int xhci_run(struct usb_hcd *hcd)
663{
664 u32 temp;
8e595a5d 665 u64 temp_64;
3fd1ec58 666 int ret;
66d4eadd 667 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
66d4eadd 668
f6ff0ac8
SS
669 /* Start the xHCI host controller running only after the USB 2.0 roothub
670 * is setup.
671 */
66d4eadd 672
0f2a7930 673 hcd->uses_new_polling = 1;
f6ff0ac8
SS
674 if (!usb_hcd_is_primary_hcd(hcd))
675 return xhci_run_finished(xhci);
0f2a7930 676
7f84eef0 677 xhci_dbg(xhci, "xhci_run\n");
43b86af8 678
3fd1ec58 679 ret = xhci_try_enable_msi(hcd);
43b86af8 680 if (ret)
3fd1ec58 681 return ret;
66d4eadd 682
7f84eef0
SS
683#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
684 init_timer(&xhci->event_ring_timer);
685 xhci->event_ring_timer.data = (unsigned long) xhci;
23e3be11 686 xhci->event_ring_timer.function = xhci_event_ring_work;
7f84eef0
SS
687 /* Poll the event ring */
688 xhci->event_ring_timer.expires = jiffies + POLL_TIMEOUT * HZ;
689 xhci->zombie = 0;
690 xhci_dbg(xhci, "Setting event ring polling timer\n");
691 add_timer(&xhci->event_ring_timer);
692#endif
693
66e49d87
SS
694 xhci_dbg(xhci, "Command ring memory map follows:\n");
695 xhci_debug_ring(xhci, xhci->cmd_ring);
696 xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring);
697 xhci_dbg_cmd_ptrs(xhci);
698
699 xhci_dbg(xhci, "ERST memory map follows:\n");
700 xhci_dbg_erst(xhci, &xhci->erst);
701 xhci_dbg(xhci, "Event ring:\n");
702 xhci_debug_ring(xhci, xhci->event_ring);
703 xhci_dbg_ring_ptrs(xhci, xhci->event_ring);
704 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
705 temp_64 &= ~ERST_PTR_MASK;
706 xhci_dbg(xhci, "ERST deq = 64'h%0lx\n", (long unsigned int) temp_64);
707
66d4eadd
SS
708 xhci_dbg(xhci, "// Set the interrupt modulation register\n");
709 temp = xhci_readl(xhci, &xhci->ir_set->irq_control);
a4d88302 710 temp &= ~ER_IRQ_INTERVAL_MASK;
66d4eadd
SS
711 temp |= (u32) 160;
712 xhci_writel(xhci, temp, &xhci->ir_set->irq_control);
713
714 /* Set the HCD state before we enable the irqs */
66d4eadd
SS
715 temp = xhci_readl(xhci, &xhci->op_regs->command);
716 temp |= (CMD_EIE);
717 xhci_dbg(xhci, "// Enable interrupts, cmd = 0x%x.\n",
718 temp);
719 xhci_writel(xhci, temp, &xhci->op_regs->command);
720
721 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
700e2052
GKH
722 xhci_dbg(xhci, "// Enabling event ring interrupter %p by writing 0x%x to irq_pending\n",
723 xhci->ir_set, (unsigned int) ER_IRQ_ENABLE(temp));
66d4eadd
SS
724 xhci_writel(xhci, ER_IRQ_ENABLE(temp),
725 &xhci->ir_set->irq_pending);
09ece30e 726 xhci_print_ir_set(xhci, 0);
66d4eadd 727
0238634d
SS
728 if (xhci->quirks & XHCI_NEC_HOST)
729 xhci_queue_vendor_command(xhci, 0, 0, 0,
730 TRB_TYPE(TRB_NEC_GET_FW));
7f84eef0 731
f6ff0ac8
SS
732 xhci_dbg(xhci, "Finished xhci_run for USB2 roothub\n");
733 return 0;
734}
ed07453f 735
f6ff0ac8
SS
736static void xhci_only_stop_hcd(struct usb_hcd *hcd)
737{
738 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
66d4eadd 739
f6ff0ac8
SS
740 spin_lock_irq(&xhci->lock);
741 xhci_halt(xhci);
742
743 /* The shared_hcd is going to be deallocated shortly (the USB core only
744 * calls this function when allocation fails in usb_add_hcd(), or
745 * usb_remove_hcd() is called). So we need to unset xHCI's pointer.
746 */
747 xhci->shared_hcd = NULL;
748 spin_unlock_irq(&xhci->lock);
66d4eadd
SS
749}
750
751/*
752 * Stop xHCI driver.
753 *
754 * This function is called by the USB core when the HC driver is removed.
755 * Its opposite is xhci_run().
756 *
757 * Disable device contexts, disable IRQs, and quiesce the HC.
758 * Reset the HC, finish any completed transactions, and cleanup memory.
759 */
760void xhci_stop(struct usb_hcd *hcd)
761{
762 u32 temp;
763 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
764
f6ff0ac8
SS
765 if (!usb_hcd_is_primary_hcd(hcd)) {
766 xhci_only_stop_hcd(xhci->shared_hcd);
767 return;
768 }
769
66d4eadd 770 spin_lock_irq(&xhci->lock);
f6ff0ac8
SS
771 /* Make sure the xHC is halted for a USB3 roothub
772 * (xhci_stop() could be called as part of failed init).
773 */
66d4eadd
SS
774 xhci_halt(xhci);
775 xhci_reset(xhci);
776 spin_unlock_irq(&xhci->lock);
777
40a9fb17
ZR
778 xhci_cleanup_msix(xhci);
779
7f84eef0
SS
780#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
781 /* Tell the event ring poll function not to reschedule */
782 xhci->zombie = 1;
783 del_timer_sync(&xhci->event_ring_timer);
784#endif
785
71c731a2
AC
786 /* Deleting Compliance Mode Recovery Timer */
787 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
58b1d799 788 (!(xhci_all_ports_seen_u0(xhci)))) {
71c731a2 789 del_timer_sync(&xhci->comp_mode_recovery_timer);
58b1d799
TC
790 xhci_dbg(xhci, "%s: compliance mode recovery timer deleted\n",
791 __func__);
792 }
6fa3eb70 793#ifndef CONFIG_MTK_XHCI
c41136b0
AX
794 if (xhci->quirks & XHCI_AMD_PLL_FIX)
795 usb_amd_dev_put();
6fa3eb70 796#endif
66d4eadd
SS
797 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
798 temp = xhci_readl(xhci, &xhci->op_regs->status);
799 xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status);
800 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
801 xhci_writel(xhci, ER_IRQ_DISABLE(temp),
802 &xhci->ir_set->irq_pending);
09ece30e 803 xhci_print_ir_set(xhci, 0);
66d4eadd
SS
804
805 xhci_dbg(xhci, "cleaning up memory\n");
806 xhci_mem_cleanup(xhci);
807 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
808 xhci_readl(xhci, &xhci->op_regs->status));
809}
810
811/*
812 * Shutdown HC (not bus-specific)
813 *
814 * This is called when the machine is rebooting or halting. We assume that the
815 * machine will be powered off, and the HC's internal state will be reset.
816 * Don't bother to free memory.
f6ff0ac8
SS
817 *
818 * This will only ever be called with the main usb_hcd (the USB3 roothub).
66d4eadd
SS
819 */
820void xhci_shutdown(struct usb_hcd *hcd)
821{
822 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
823
052c7f9f 824 if (xhci->quirks & XHCI_SPURIOUS_REBOOT)
e95829f4
SS
825 usb_disable_xhci_ports(to_pci_dev(hcd->self.controller));
826
66d4eadd
SS
827 spin_lock_irq(&xhci->lock);
828 xhci_halt(xhci);
43b86af8 829 spin_unlock_irq(&xhci->lock);
66d4eadd 830
40a9fb17
ZR
831 xhci_cleanup_msix(xhci);
832
66d4eadd
SS
833 xhci_dbg(xhci, "xhci_shutdown completed - status = %x\n",
834 xhci_readl(xhci, &xhci->op_regs->status));
835}
836
b5b5c3ac 837#ifdef CONFIG_PM
5535b1d5
AX
838static void xhci_save_registers(struct xhci_hcd *xhci)
839{
840 xhci->s3.command = xhci_readl(xhci, &xhci->op_regs->command);
841 xhci->s3.dev_nt = xhci_readl(xhci, &xhci->op_regs->dev_notification);
842 xhci->s3.dcbaa_ptr = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
843 xhci->s3.config_reg = xhci_readl(xhci, &xhci->op_regs->config_reg);
5535b1d5
AX
844 xhci->s3.erst_size = xhci_readl(xhci, &xhci->ir_set->erst_size);
845 xhci->s3.erst_base = xhci_read_64(xhci, &xhci->ir_set->erst_base);
846 xhci->s3.erst_dequeue = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
c7713e73
SS
847 xhci->s3.irq_pending = xhci_readl(xhci, &xhci->ir_set->irq_pending);
848 xhci->s3.irq_control = xhci_readl(xhci, &xhci->ir_set->irq_control);
5535b1d5
AX
849}
850
851static void xhci_restore_registers(struct xhci_hcd *xhci)
852{
853 xhci_writel(xhci, xhci->s3.command, &xhci->op_regs->command);
854 xhci_writel(xhci, xhci->s3.dev_nt, &xhci->op_regs->dev_notification);
855 xhci_write_64(xhci, xhci->s3.dcbaa_ptr, &xhci->op_regs->dcbaa_ptr);
856 xhci_writel(xhci, xhci->s3.config_reg, &xhci->op_regs->config_reg);
5535b1d5
AX
857 xhci_writel(xhci, xhci->s3.erst_size, &xhci->ir_set->erst_size);
858 xhci_write_64(xhci, xhci->s3.erst_base, &xhci->ir_set->erst_base);
fb3d85bc 859 xhci_write_64(xhci, xhci->s3.erst_dequeue, &xhci->ir_set->erst_dequeue);
c7713e73
SS
860 xhci_writel(xhci, xhci->s3.irq_pending, &xhci->ir_set->irq_pending);
861 xhci_writel(xhci, xhci->s3.irq_control, &xhci->ir_set->irq_control);
5535b1d5
AX
862}
863
89821320
SS
864static void xhci_set_cmd_ring_deq(struct xhci_hcd *xhci)
865{
866 u64 val_64;
867
868 /* step 2: initialize command ring buffer */
869 val_64 = xhci_read_64(xhci, &xhci->op_regs->cmd_ring);
870 val_64 = (val_64 & (u64) CMD_RING_RSVD_BITS) |
871 (xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
872 xhci->cmd_ring->dequeue) &
873 (u64) ~CMD_RING_RSVD_BITS) |
874 xhci->cmd_ring->cycle_state;
875 xhci_dbg(xhci, "// Setting command ring address to 0x%llx\n",
876 (long unsigned long) val_64);
877 xhci_write_64(xhci, val_64, &xhci->op_regs->cmd_ring);
878}
879
880/*
881 * The whole command ring must be cleared to zero when we suspend the host.
882 *
883 * The host doesn't save the command ring pointer in the suspend well, so we
884 * need to re-program it on resume. Unfortunately, the pointer must be 64-byte
885 * aligned, because of the reserved bits in the command ring dequeue pointer
886 * register. Therefore, we can't just set the dequeue pointer back in the
887 * middle of the ring (TRBs are 16-byte aligned).
888 */
889static void xhci_clear_command_ring(struct xhci_hcd *xhci)
890{
891 struct xhci_ring *ring;
892 struct xhci_segment *seg;
893
894 ring = xhci->cmd_ring;
895 seg = ring->deq_seg;
896 do {
158886cd
AX
897 memset(seg->trbs, 0,
898 sizeof(union xhci_trb) * (TRBS_PER_SEGMENT - 1));
899 seg->trbs[TRBS_PER_SEGMENT - 1].link.control &=
900 cpu_to_le32(~TRB_CYCLE);
89821320
SS
901 seg = seg->next;
902 } while (seg != ring->deq_seg);
903
904 /* Reset the software enqueue and dequeue pointers */
905 ring->deq_seg = ring->first_seg;
906 ring->dequeue = ring->first_seg->trbs;
907 ring->enq_seg = ring->deq_seg;
908 ring->enqueue = ring->dequeue;
909
b008df60 910 ring->num_trbs_free = ring->num_segs * (TRBS_PER_SEGMENT - 1) - 1;
89821320
SS
911 /*
912 * Ring is now zeroed, so the HW should look for change of ownership
913 * when the cycle bit is set to 1.
914 */
915 ring->cycle_state = 1;
916
917 /*
918 * Reset the hardware dequeue pointer.
919 * Yes, this will need to be re-written after resume, but we're paranoid
920 * and want to make sure the hardware doesn't access bogus memory
921 * because, say, the BIOS or an SMI started the host without changing
922 * the command ring pointers.
923 */
924 xhci_set_cmd_ring_deq(xhci);
925}
926
5535b1d5
AX
927/*
928 * Stop HC (not bus-specific)
929 *
930 * This is called when the machine transition into S3/S4 mode.
931 *
932 */
933int xhci_suspend(struct xhci_hcd *xhci)
934{
935 int rc = 0;
936 struct usb_hcd *hcd = xhci_to_hcd(xhci);
937 u32 command;
938
77b84767
FB
939 if (hcd->state != HC_STATE_SUSPENDED ||
940 xhci->shared_hcd->state != HC_STATE_SUSPENDED)
941 return -EINVAL;
942
c52804a4
SS
943 /* Don't poll the roothubs on bus suspend. */
944 xhci_dbg(xhci, "%s: stopping port polling.\n", __func__);
945 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
946 del_timer_sync(&hcd->rh_timer);
947
5535b1d5
AX
948 spin_lock_irq(&xhci->lock);
949 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
b3209379 950 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
5535b1d5
AX
951 /* step 1: stop endpoint */
952 /* skipped assuming that port suspend has done */
953
954 /* step 2: clear Run/Stop bit */
955 command = xhci_readl(xhci, &xhci->op_regs->command);
956 command &= ~CMD_RUN;
957 xhci_writel(xhci, command, &xhci->op_regs->command);
2611bd18 958 if (xhci_handshake(xhci, &xhci->op_regs->status,
a6e097df 959 STS_HALT, STS_HALT, XHCI_MAX_HALT_USEC)) {
5535b1d5
AX
960 xhci_warn(xhci, "WARN: xHC CMD_RUN timeout\n");
961 spin_unlock_irq(&xhci->lock);
962 return -ETIMEDOUT;
963 }
89821320 964 xhci_clear_command_ring(xhci);
5535b1d5
AX
965
966 /* step 3: save registers */
967 xhci_save_registers(xhci);
968
969 /* step 4: set CSS flag */
970 command = xhci_readl(xhci, &xhci->op_regs->command);
971 command |= CMD_CSS;
972 xhci_writel(xhci, command, &xhci->op_regs->command);
2611bd18
SS
973 if (xhci_handshake(xhci, &xhci->op_regs->status,
974 STS_SAVE, 0, 10 * 1000)) {
622eb783 975 xhci_warn(xhci, "WARN: xHC save state timeout\n");
5535b1d5
AX
976 spin_unlock_irq(&xhci->lock);
977 return -ETIMEDOUT;
978 }
5535b1d5
AX
979 spin_unlock_irq(&xhci->lock);
980
71c731a2
AC
981 /*
982 * Deleting Compliance Mode Recovery Timer because the xHCI Host
983 * is about to be suspended.
984 */
985 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
986 (!(xhci_all_ports_seen_u0(xhci)))) {
987 del_timer_sync(&xhci->comp_mode_recovery_timer);
58b1d799
TC
988 xhci_dbg(xhci, "%s: compliance mode recovery timer deleted\n",
989 __func__);
71c731a2
AC
990 }
991
0029227f
AX
992 /* step 5: remove core well power */
993 /* synchronize irq when using MSI-X */
421aa841 994 xhci_msix_sync_irqs(xhci);
0029227f 995
5535b1d5
AX
996 return rc;
997}
998
999/*
1000 * start xHC (not bus-specific)
1001 *
1002 * This is called when the machine transition from S3/S4 mode.
1003 *
1004 */
1005int xhci_resume(struct xhci_hcd *xhci, bool hibernated)
1006{
96c734b9 1007 u32 command, temp = 0, status;
5535b1d5 1008 struct usb_hcd *hcd = xhci_to_hcd(xhci);
65b22f93 1009 struct usb_hcd *secondary_hcd;
f69e3120 1010 int retval = 0;
77df9e0b 1011 bool comp_timer_running = false;
5535b1d5 1012
f6ff0ac8 1013 /* Wait a bit if either of the roothubs need to settle from the
25985edc 1014 * transition into bus suspend.
20b67cf5 1015 */
f6ff0ac8
SS
1016 if (time_before(jiffies, xhci->bus_state[0].next_statechange) ||
1017 time_before(jiffies,
1018 xhci->bus_state[1].next_statechange))
5535b1d5
AX
1019 msleep(100);
1020
f69e3120
AS
1021 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
1022 set_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
1023
5535b1d5 1024 spin_lock_irq(&xhci->lock);
c877b3b2
ML
1025 if (xhci->quirks & XHCI_RESET_ON_RESUME)
1026 hibernated = true;
5535b1d5
AX
1027
1028 if (!hibernated) {
1029 /* step 1: restore register */
1030 xhci_restore_registers(xhci);
1031 /* step 2: initialize command ring buffer */
89821320 1032 xhci_set_cmd_ring_deq(xhci);
5535b1d5
AX
1033 /* step 3: restore state and start state*/
1034 /* step 3: set CRS flag */
1035 command = xhci_readl(xhci, &xhci->op_regs->command);
1036 command |= CMD_CRS;
1037 xhci_writel(xhci, command, &xhci->op_regs->command);
2611bd18 1038 if (xhci_handshake(xhci, &xhci->op_regs->status,
622eb783
AX
1039 STS_RESTORE, 0, 10 * 1000)) {
1040 xhci_warn(xhci, "WARN: xHC restore state timeout\n");
5535b1d5
AX
1041 spin_unlock_irq(&xhci->lock);
1042 return -ETIMEDOUT;
1043 }
1044 temp = xhci_readl(xhci, &xhci->op_regs->status);
1045 }
1046
1047 /* If restore operation fails, re-initialize the HC during resume */
1048 if ((temp & STS_SRE) || hibernated) {
77df9e0b
TC
1049
1050 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
1051 !(xhci_all_ports_seen_u0(xhci))) {
1052 del_timer_sync(&xhci->comp_mode_recovery_timer);
1053 xhci_dbg(xhci, "Compliance Mode Recovery Timer deleted!\n");
1054 }
1055
fedd383e
SS
1056 /* Let the USB core know _both_ roothubs lost power. */
1057 usb_root_hub_lost_power(xhci->main_hcd->self.root_hub);
1058 usb_root_hub_lost_power(xhci->shared_hcd->self.root_hub);
5535b1d5
AX
1059
1060 xhci_dbg(xhci, "Stop HCD\n");
1061 xhci_halt(xhci);
1062 xhci_reset(xhci);
5535b1d5 1063 spin_unlock_irq(&xhci->lock);
0029227f 1064 xhci_cleanup_msix(xhci);
5535b1d5
AX
1065
1066#ifdef CONFIG_USB_XHCI_HCD_DEBUGGING
1067 /* Tell the event ring poll function not to reschedule */
1068 xhci->zombie = 1;
1069 del_timer_sync(&xhci->event_ring_timer);
1070#endif
1071
1072 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
1073 temp = xhci_readl(xhci, &xhci->op_regs->status);
1074 xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status);
1075 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
1076 xhci_writel(xhci, ER_IRQ_DISABLE(temp),
1077 &xhci->ir_set->irq_pending);
09ece30e 1078 xhci_print_ir_set(xhci, 0);
5535b1d5
AX
1079
1080 xhci_dbg(xhci, "cleaning up memory\n");
1081 xhci_mem_cleanup(xhci);
1082 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
1083 xhci_readl(xhci, &xhci->op_regs->status));
1084
65b22f93
SS
1085 /* USB core calls the PCI reinit and start functions twice:
1086 * first with the primary HCD, and then with the secondary HCD.
1087 * If we don't do the same, the host will never be started.
1088 */
1089 if (!usb_hcd_is_primary_hcd(hcd))
1090 secondary_hcd = hcd;
1091 else
1092 secondary_hcd = xhci->shared_hcd;
1093
1094 xhci_dbg(xhci, "Initialize the xhci_hcd\n");
1095 retval = xhci_init(hcd->primary_hcd);
5535b1d5
AX
1096 if (retval)
1097 return retval;
77df9e0b
TC
1098 comp_timer_running = true;
1099
65b22f93
SS
1100 xhci_dbg(xhci, "Start the primary HCD\n");
1101 retval = xhci_run(hcd->primary_hcd);
b3209379 1102 if (!retval) {
f69e3120
AS
1103 xhci_dbg(xhci, "Start the secondary HCD\n");
1104 retval = xhci_run(secondary_hcd);
b3209379 1105 }
5535b1d5 1106 hcd->state = HC_STATE_SUSPENDED;
b3209379 1107 xhci->shared_hcd->state = HC_STATE_SUSPENDED;
f69e3120 1108 goto done;
5535b1d5
AX
1109 }
1110
5535b1d5
AX
1111 /* step 4: set Run/Stop bit */
1112 command = xhci_readl(xhci, &xhci->op_regs->command);
1113 command |= CMD_RUN;
1114 xhci_writel(xhci, command, &xhci->op_regs->command);
2611bd18 1115 xhci_handshake(xhci, &xhci->op_regs->status, STS_HALT,
5535b1d5
AX
1116 0, 250 * 1000);
1117
1118 /* step 5: walk topology and initialize portsc,
1119 * portpmsc and portli
1120 */
1121 /* this is done in bus_resume */
1122
1123 /* step 6: restart each of the previously
1124 * Running endpoints by ringing their doorbells
1125 */
1126
5535b1d5 1127 spin_unlock_irq(&xhci->lock);
f69e3120
AS
1128
1129 done:
1130 if (retval == 0) {
96c734b9
WY
1131 /* Resume root hubs only when have pending events. */
1132 status = readl(&xhci->op_regs->status);
1133 if (status & STS_EINT) {
1134 usb_hcd_resume_root_hub(hcd);
1135 usb_hcd_resume_root_hub(xhci->shared_hcd);
1136 }
f69e3120 1137 }
71c731a2
AC
1138
1139 /*
1140 * If system is subject to the Quirk, Compliance Mode Timer needs to
1141 * be re-initialized Always after a system resume. Ports are subject
1142 * to suffer the Compliance Mode issue again. It doesn't matter if
1143 * ports have entered previously to U0 before system's suspension.
1144 */
77df9e0b 1145 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) && !comp_timer_running)
71c731a2
AC
1146 compliance_mode_recovery_timer_init(xhci);
1147
c52804a4
SS
1148 /* Re-enable port polling. */
1149 xhci_dbg(xhci, "%s: starting port polling.\n", __func__);
1150 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
1151 usb_hcd_poll_rh_status(hcd);
1152
f69e3120 1153 return retval;
5535b1d5 1154}
b5b5c3ac
SS
1155#endif /* CONFIG_PM */
1156
7f84eef0
SS
1157/*-------------------------------------------------------------------------*/
1158
d0e96f5a
SS
1159/**
1160 * xhci_get_endpoint_index - Used for passing endpoint bitmasks between the core and
1161 * HCDs. Find the index for an endpoint given its descriptor. Use the return
1162 * value to right shift 1 for the bitmask.
1163 *
1164 * Index = (epnum * 2) + direction - 1,
1165 * where direction = 0 for OUT, 1 for IN.
1166 * For control endpoints, the IN index is used (OUT index is unused), so
1167 * index = (epnum * 2) + direction - 1 = (epnum * 2) + 1 - 1 = (epnum * 2)
1168 */
1169unsigned int xhci_get_endpoint_index(struct usb_endpoint_descriptor *desc)
1170{
1171 unsigned int index;
1172 if (usb_endpoint_xfer_control(desc))
1173 index = (unsigned int) (usb_endpoint_num(desc)*2);
1174 else
1175 index = (unsigned int) (usb_endpoint_num(desc)*2) +
1176 (usb_endpoint_dir_in(desc) ? 1 : 0) - 1;
1177 return index;
1178}
1179
f94e0186
SS
1180/* Find the flag for this endpoint (for use in the control context). Use the
1181 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
1182 * bit 1, etc.
1183 */
1184unsigned int xhci_get_endpoint_flag(struct usb_endpoint_descriptor *desc)
1185{
1186 return 1 << (xhci_get_endpoint_index(desc) + 1);
1187}
1188
ac9d8fe7
SS
1189/* Find the flag for this endpoint (for use in the control context). Use the
1190 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
1191 * bit 1, etc.
1192 */
1193unsigned int xhci_get_endpoint_flag_from_index(unsigned int ep_index)
1194{
1195 return 1 << (ep_index + 1);
1196}
1197
f94e0186
SS
1198/* Compute the last valid endpoint context index. Basically, this is the
1199 * endpoint index plus one. For slot contexts with more than valid endpoint,
1200 * we find the most significant bit set in the added contexts flags.
1201 * e.g. ep 1 IN (with epnum 0x81) => added_ctxs = 0b1000
1202 * fls(0b1000) = 4, but the endpoint context index is 3, so subtract one.
1203 */
ac9d8fe7 1204unsigned int xhci_last_valid_endpoint(u32 added_ctxs)
f94e0186
SS
1205{
1206 return fls(added_ctxs) - 1;
1207}
1208
d0e96f5a
SS
1209/* Returns 1 if the arguments are OK;
1210 * returns 0 this is a root hub; returns -EINVAL for NULL pointers.
1211 */
8212a49d 1212static int xhci_check_args(struct usb_hcd *hcd, struct usb_device *udev,
64927730
AX
1213 struct usb_host_endpoint *ep, int check_ep, bool check_virt_dev,
1214 const char *func) {
1215 struct xhci_hcd *xhci;
1216 struct xhci_virt_device *virt_dev;
1217
d0e96f5a
SS
1218 if (!hcd || (check_ep && !ep) || !udev) {
1219 printk(KERN_DEBUG "xHCI %s called with invalid args\n",
1220 func);
1221 return -EINVAL;
1222 }
1223 if (!udev->parent) {
1224 printk(KERN_DEBUG "xHCI %s called for root hub\n",
1225 func);
1226 return 0;
1227 }
64927730 1228
7bd89b40 1229 xhci = hcd_to_xhci(hcd);
64927730 1230 if (check_virt_dev) {
73ddc247 1231 if (!udev->slot_id || !xhci->devs[udev->slot_id]) {
64927730
AX
1232 printk(KERN_DEBUG "xHCI %s called with unaddressed "
1233 "device\n", func);
1234 return -EINVAL;
1235 }
1236
1237 virt_dev = xhci->devs[udev->slot_id];
1238 if (virt_dev->udev != udev) {
1239 printk(KERN_DEBUG "xHCI %s called with udev and "
1240 "virt_dev does not match\n", func);
1241 return -EINVAL;
1242 }
d0e96f5a 1243 }
64927730 1244
5dbb5d4f
SS
1245 if (xhci->xhc_state & XHCI_STATE_HALTED)
1246 return -ENODEV;
1247
d0e96f5a
SS
1248 return 1;
1249}
1250
2d3f1fac 1251static int xhci_configure_endpoint(struct xhci_hcd *xhci,
913a8a34
SS
1252 struct usb_device *udev, struct xhci_command *command,
1253 bool ctx_change, bool must_succeed);
2d3f1fac
SS
1254
1255/*
1256 * Full speed devices may have a max packet size greater than 8 bytes, but the
1257 * USB core doesn't know that until it reads the first 8 bytes of the
1258 * descriptor. If the usb_device's max packet size changes after that point,
1259 * we need to issue an evaluate context command and wait on it.
1260 */
1261static int xhci_check_maxpacket(struct xhci_hcd *xhci, unsigned int slot_id,
1262 unsigned int ep_index, struct urb *urb)
1263{
1264 struct xhci_container_ctx *in_ctx;
1265 struct xhci_container_ctx *out_ctx;
1266 struct xhci_input_control_ctx *ctrl_ctx;
1267 struct xhci_ep_ctx *ep_ctx;
1268 int max_packet_size;
1269 int hw_max_packet_size;
1270 int ret = 0;
1271
1272 out_ctx = xhci->devs[slot_id]->out_ctx;
1273 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
28ccd296 1274 hw_max_packet_size = MAX_PACKET_DECODED(le32_to_cpu(ep_ctx->ep_info2));
29cc8897 1275 max_packet_size = usb_endpoint_maxp(&urb->dev->ep0.desc);
2d3f1fac
SS
1276 if (hw_max_packet_size != max_packet_size) {
1277 xhci_dbg(xhci, "Max Packet Size for ep 0 changed.\n");
1278 xhci_dbg(xhci, "Max packet size in usb_device = %d\n",
1279 max_packet_size);
1280 xhci_dbg(xhci, "Max packet size in xHCI HW = %d\n",
1281 hw_max_packet_size);
1282 xhci_dbg(xhci, "Issuing evaluate context command.\n");
1283
1284 /* Set up the modified control endpoint 0 */
913a8a34
SS
1285 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
1286 xhci->devs[slot_id]->out_ctx, ep_index);
2d3f1fac
SS
1287 in_ctx = xhci->devs[slot_id]->in_ctx;
1288 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
28ccd296
ME
1289 ep_ctx->ep_info2 &= cpu_to_le32(~MAX_PACKET_MASK);
1290 ep_ctx->ep_info2 |= cpu_to_le32(MAX_PACKET(max_packet_size));
2d3f1fac
SS
1291
1292 /* Set up the input context flags for the command */
1293 /* FIXME: This won't work if a non-default control endpoint
1294 * changes max packet sizes.
1295 */
1296 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
28ccd296 1297 ctrl_ctx->add_flags = cpu_to_le32(EP0_FLAG);
2d3f1fac
SS
1298 ctrl_ctx->drop_flags = 0;
1299
1300 xhci_dbg(xhci, "Slot %d input context\n", slot_id);
1301 xhci_dbg_ctx(xhci, in_ctx, ep_index);
1302 xhci_dbg(xhci, "Slot %d output context\n", slot_id);
1303 xhci_dbg_ctx(xhci, out_ctx, ep_index);
1304
913a8a34
SS
1305 ret = xhci_configure_endpoint(xhci, urb->dev, NULL,
1306 true, false);
2d3f1fac
SS
1307
1308 /* Clean up the input context for later use by bandwidth
1309 * functions.
1310 */
28ccd296 1311 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG);
2d3f1fac
SS
1312 }
1313 return ret;
1314}
1315
d0e96f5a
SS
1316/*
1317 * non-error returns are a promise to giveback() the urb later
1318 * we drop ownership so next owner (or urb unlink) can get it
1319 */
1320int xhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, gfp_t mem_flags)
1321{
1322 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
2ffdea25 1323 struct xhci_td *buffer;
d0e96f5a
SS
1324 unsigned long flags;
1325 int ret = 0;
1326 unsigned int slot_id, ep_index;
8e51adcc
AX
1327 struct urb_priv *urb_priv;
1328 int size, i;
2d3f1fac 1329
64927730
AX
1330 if (!urb || xhci_check_args(hcd, urb->dev, urb->ep,
1331 true, true, __func__) <= 0)
d0e96f5a
SS
1332 return -EINVAL;
1333
1334 slot_id = urb->dev->slot_id;
1335 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
d0e96f5a 1336
541c7d43 1337 if (!HCD_HW_ACCESSIBLE(hcd)) {
d0e96f5a
SS
1338 if (!in_interrupt())
1339 xhci_dbg(xhci, "urb submitted during PCI suspend\n");
1340 ret = -ESHUTDOWN;
1341 goto exit;
1342 }
8e51adcc
AX
1343
1344 if (usb_endpoint_xfer_isoc(&urb->ep->desc))
1345 size = urb->number_of_packets;
760f9dc1
RA
1346 else if (usb_endpoint_is_bulk_out(&urb->ep->desc) &&
1347 urb->transfer_buffer_length > 0 &&
1348 urb->transfer_flags & URB_ZERO_PACKET &&
1349 !(urb->transfer_buffer_length % usb_endpoint_maxp(&urb->ep->desc)))
1350 size = 2;
8e51adcc
AX
1351 else
1352 size = 1;
1353
1354 urb_priv = kzalloc(sizeof(struct urb_priv) +
1355 size * sizeof(struct xhci_td *), mem_flags);
1356 if (!urb_priv)
1357 return -ENOMEM;
1358
2ffdea25
AX
1359 buffer = kzalloc(size * sizeof(struct xhci_td), mem_flags);
1360 if (!buffer) {
1361 kfree(urb_priv);
1362 return -ENOMEM;
1363 }
1364
8e51adcc 1365 for (i = 0; i < size; i++) {
2ffdea25
AX
1366 urb_priv->td[i] = buffer;
1367 buffer++;
8e51adcc
AX
1368 }
1369
1370 urb_priv->length = size;
1371 urb_priv->td_cnt = 0;
1372 urb->hcpriv = urb_priv;
1373
2d3f1fac
SS
1374 if (usb_endpoint_xfer_control(&urb->ep->desc)) {
1375 /* Check to see if the max packet size for the default control
1376 * endpoint changed during FS device enumeration
1377 */
1378 if (urb->dev->speed == USB_SPEED_FULL) {
1379 ret = xhci_check_maxpacket(xhci, slot_id,
1380 ep_index, urb);
d13565c1
SS
1381 if (ret < 0) {
1382 xhci_urb_free_priv(xhci, urb_priv);
1383 urb->hcpriv = NULL;
2d3f1fac 1384 return ret;
d13565c1 1385 }
2d3f1fac
SS
1386 }
1387
b11069f5
SS
1388 /* We have a spinlock and interrupts disabled, so we must pass
1389 * atomic context to this function, which may allocate memory.
1390 */
2d3f1fac 1391 spin_lock_irqsave(&xhci->lock, flags);
6f5165cf
SS
1392 if (xhci->xhc_state & XHCI_STATE_DYING)
1393 goto dying;
b11069f5 1394 ret = xhci_queue_ctrl_tx(xhci, GFP_ATOMIC, urb,
23e3be11 1395 slot_id, ep_index);
d13565c1
SS
1396 if (ret)
1397 goto free_priv;
2d3f1fac
SS
1398 spin_unlock_irqrestore(&xhci->lock, flags);
1399 } else if (usb_endpoint_xfer_bulk(&urb->ep->desc)) {
1400 spin_lock_irqsave(&xhci->lock, flags);
6f5165cf
SS
1401 if (xhci->xhc_state & XHCI_STATE_DYING)
1402 goto dying;
8df75f42
SS
1403 if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1404 EP_GETTING_STREAMS) {
1405 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1406 "is transitioning to using streams.\n");
1407 ret = -EINVAL;
1408 } else if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1409 EP_GETTING_NO_STREAMS) {
1410 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1411 "is transitioning to "
1412 "not having streams.\n");
1413 ret = -EINVAL;
1414 } else {
1415 ret = xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb,
1416 slot_id, ep_index);
1417 }
d13565c1
SS
1418 if (ret)
1419 goto free_priv;
2d3f1fac 1420 spin_unlock_irqrestore(&xhci->lock, flags);
624defa1
SS
1421 } else if (usb_endpoint_xfer_int(&urb->ep->desc)) {
1422 spin_lock_irqsave(&xhci->lock, flags);
6f5165cf
SS
1423 if (xhci->xhc_state & XHCI_STATE_DYING)
1424 goto dying;
624defa1
SS
1425 ret = xhci_queue_intr_tx(xhci, GFP_ATOMIC, urb,
1426 slot_id, ep_index);
d13565c1
SS
1427 if (ret)
1428 goto free_priv;
624defa1 1429 spin_unlock_irqrestore(&xhci->lock, flags);
2d3f1fac 1430 } else {
787f4e5a
AX
1431 spin_lock_irqsave(&xhci->lock, flags);
1432 if (xhci->xhc_state & XHCI_STATE_DYING)
1433 goto dying;
1434 ret = xhci_queue_isoc_tx_prepare(xhci, GFP_ATOMIC, urb,
1435 slot_id, ep_index);
d13565c1
SS
1436 if (ret)
1437 goto free_priv;
787f4e5a 1438 spin_unlock_irqrestore(&xhci->lock, flags);
2d3f1fac 1439 }
d0e96f5a 1440exit:
d0e96f5a 1441 return ret;
6f5165cf
SS
1442dying:
1443 xhci_dbg(xhci, "Ep 0x%x: URB %p submitted for "
1444 "non-responsive xHCI host.\n",
1445 urb->ep->desc.bEndpointAddress, urb);
d13565c1
SS
1446 ret = -ESHUTDOWN;
1447free_priv:
1448 xhci_urb_free_priv(xhci, urb_priv);
1449 urb->hcpriv = NULL;
6f5165cf 1450 spin_unlock_irqrestore(&xhci->lock, flags);
d13565c1 1451 return ret;
d0e96f5a
SS
1452}
1453
021bff91
SS
1454/* Get the right ring for the given URB.
1455 * If the endpoint supports streams, boundary check the URB's stream ID.
1456 * If the endpoint doesn't support streams, return the singular endpoint ring.
1457 */
1458static struct xhci_ring *xhci_urb_to_transfer_ring(struct xhci_hcd *xhci,
1459 struct urb *urb)
1460{
1461 unsigned int slot_id;
1462 unsigned int ep_index;
1463 unsigned int stream_id;
1464 struct xhci_virt_ep *ep;
1465
1466 slot_id = urb->dev->slot_id;
1467 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
1468 stream_id = urb->stream_id;
1469 ep = &xhci->devs[slot_id]->eps[ep_index];
1470 /* Common case: no streams */
1471 if (!(ep->ep_state & EP_HAS_STREAMS))
1472 return ep->ring;
1473
1474 if (stream_id == 0) {
1475 xhci_warn(xhci,
1476 "WARN: Slot ID %u, ep index %u has streams, "
1477 "but URB has no stream ID.\n",
1478 slot_id, ep_index);
1479 return NULL;
1480 }
1481
1482 if (stream_id < ep->stream_info->num_streams)
1483 return ep->stream_info->stream_rings[stream_id];
1484
1485 xhci_warn(xhci,
1486 "WARN: Slot ID %u, ep index %u has "
1487 "stream IDs 1 to %u allocated, "
1488 "but stream ID %u is requested.\n",
1489 slot_id, ep_index,
1490 ep->stream_info->num_streams - 1,
1491 stream_id);
1492 return NULL;
1493}
1494
ae636747
SS
1495/*
1496 * Remove the URB's TD from the endpoint ring. This may cause the HC to stop
1497 * USB transfers, potentially stopping in the middle of a TRB buffer. The HC
1498 * should pick up where it left off in the TD, unless a Set Transfer Ring
1499 * Dequeue Pointer is issued.
1500 *
1501 * The TRBs that make up the buffers for the canceled URB will be "removed" from
1502 * the ring. Since the ring is a contiguous structure, they can't be physically
1503 * removed. Instead, there are two options:
1504 *
1505 * 1) If the HC is in the middle of processing the URB to be canceled, we
1506 * simply move the ring's dequeue pointer past those TRBs using the Set
1507 * Transfer Ring Dequeue Pointer command. This will be the common case,
1508 * when drivers timeout on the last submitted URB and attempt to cancel.
1509 *
1510 * 2) If the HC is in the middle of a different TD, we turn the TRBs into a
1511 * series of 1-TRB transfer no-op TDs. (No-ops shouldn't be chained.) The
1512 * HC will need to invalidate the any TRBs it has cached after the stop
1513 * endpoint command, as noted in the xHCI 0.95 errata.
1514 *
1515 * 3) The TD may have completed by the time the Stop Endpoint Command
1516 * completes, so software needs to handle that case too.
1517 *
1518 * This function should protect against the TD enqueueing code ringing the
1519 * doorbell while this code is waiting for a Stop Endpoint command to complete.
1520 * It also needs to account for multiple cancellations on happening at the same
1521 * time for the same endpoint.
1522 *
1523 * Note that this function can be called in any context, or so says
1524 * usb_hcd_unlink_urb()
d0e96f5a
SS
1525 */
1526int xhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
1527{
ae636747 1528 unsigned long flags;
8e51adcc 1529 int ret, i;
e34b2fbf 1530 u32 temp;
ae636747 1531 struct xhci_hcd *xhci;
8e51adcc 1532 struct urb_priv *urb_priv;
ae636747
SS
1533 struct xhci_td *td;
1534 unsigned int ep_index;
1535 struct xhci_ring *ep_ring;
63a0d9ab 1536 struct xhci_virt_ep *ep;
ae636747
SS
1537
1538 xhci = hcd_to_xhci(hcd);
1539 spin_lock_irqsave(&xhci->lock, flags);
1540 /* Make sure the URB hasn't completed or been unlinked already */
1541 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
1542 if (ret || !urb->hcpriv)
1543 goto done;
e34b2fbf 1544 temp = xhci_readl(xhci, &xhci->op_regs->status);
c6cc27c7 1545 if (temp == 0xffffffff || (xhci->xhc_state & XHCI_STATE_HALTED)) {
e34b2fbf 1546 xhci_dbg(xhci, "HW died, freeing TD.\n");
8e51adcc 1547 urb_priv = urb->hcpriv;
585df1d9
SS
1548 for (i = urb_priv->td_cnt; i < urb_priv->length; i++) {
1549 td = urb_priv->td[i];
1550 if (!list_empty(&td->td_list))
1551 list_del_init(&td->td_list);
1552 if (!list_empty(&td->cancelled_td_list))
1553 list_del_init(&td->cancelled_td_list);
1554 }
e34b2fbf
SS
1555
1556 usb_hcd_unlink_urb_from_ep(hcd, urb);
1557 spin_unlock_irqrestore(&xhci->lock, flags);
214f76f7 1558 usb_hcd_giveback_urb(hcd, urb, -ESHUTDOWN);
8e51adcc 1559 xhci_urb_free_priv(xhci, urb_priv);
e34b2fbf
SS
1560 return ret;
1561 }
7bd89b40
SS
1562 if ((xhci->xhc_state & XHCI_STATE_DYING) ||
1563 (xhci->xhc_state & XHCI_STATE_HALTED)) {
6f5165cf
SS
1564 xhci_dbg(xhci, "Ep 0x%x: URB %p to be canceled on "
1565 "non-responsive xHCI host.\n",
1566 urb->ep->desc.bEndpointAddress, urb);
1567 /* Let the stop endpoint command watchdog timer (which set this
1568 * state) finish cleaning up the endpoint TD lists. We must
1569 * have caught it in the middle of dropping a lock and giving
1570 * back an URB.
1571 */
1572 goto done;
1573 }
ae636747 1574
ae636747 1575 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
63a0d9ab 1576 ep = &xhci->devs[urb->dev->slot_id]->eps[ep_index];
e9df17eb
SS
1577 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
1578 if (!ep_ring) {
1579 ret = -EINVAL;
1580 goto done;
1581 }
1582
8e51adcc 1583 urb_priv = urb->hcpriv;
79688acf
SS
1584 i = urb_priv->td_cnt;
1585 if (i < urb_priv->length)
1586 xhci_dbg(xhci, "Cancel URB %p, dev %s, ep 0x%x, "
1587 "starting at offset 0x%llx\n",
1588 urb, urb->dev->devpath,
1589 urb->ep->desc.bEndpointAddress,
1590 (unsigned long long) xhci_trb_virt_to_dma(
1591 urb_priv->td[i]->start_seg,
1592 urb_priv->td[i]->first_trb));
1593
1594 for (; i < urb_priv->length; i++) {
8e51adcc
AX
1595 td = urb_priv->td[i];
1596 list_add_tail(&td->cancelled_td_list, &ep->cancelled_td_list);
1597 }
1598
ae636747
SS
1599 /* Queue a stop endpoint command, but only if this is
1600 * the first cancellation to be handled.
1601 */
678539cf
SS
1602 if (!(ep->ep_state & EP_HALT_PENDING)) {
1603 ep->ep_state |= EP_HALT_PENDING;
6f5165cf
SS
1604 ep->stop_cmds_pending++;
1605 ep->stop_cmd_timer.expires = jiffies +
1606 XHCI_STOP_EP_CMD_TIMEOUT * HZ;
1607 add_timer(&ep->stop_cmd_timer);
be88fe4f 1608 xhci_queue_stop_endpoint(xhci, urb->dev->slot_id, ep_index, 0);
23e3be11 1609 xhci_ring_cmd_db(xhci);
ae636747
SS
1610 }
1611done:
1612 spin_unlock_irqrestore(&xhci->lock, flags);
1613 return ret;
d0e96f5a
SS
1614}
1615
f94e0186
SS
1616/* Drop an endpoint from a new bandwidth configuration for this device.
1617 * Only one call to this function is allowed per endpoint before
1618 * check_bandwidth() or reset_bandwidth() must be called.
1619 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1620 * add the endpoint to the schedule with possibly new parameters denoted by a
1621 * different endpoint descriptor in usb_host_endpoint.
1622 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1623 * not allowed.
f88ba78d
SS
1624 *
1625 * The USB core will not allow URBs to be queued to an endpoint that is being
1626 * disabled, so there's no need for mutual exclusion to protect
1627 * the xhci->devs[slot_id] structure.
f94e0186
SS
1628 */
1629int xhci_drop_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1630 struct usb_host_endpoint *ep)
1631{
f94e0186 1632 struct xhci_hcd *xhci;
d115b048
JY
1633 struct xhci_container_ctx *in_ctx, *out_ctx;
1634 struct xhci_input_control_ctx *ctrl_ctx;
1635 struct xhci_slot_ctx *slot_ctx;
f94e0186
SS
1636 unsigned int last_ctx;
1637 unsigned int ep_index;
1638 struct xhci_ep_ctx *ep_ctx;
1639 u32 drop_flag;
1640 u32 new_add_flags, new_drop_flags, new_slot_info;
1641 int ret;
6fa3eb70
S
1642#ifdef CONFIG_MTK_XHCI
1643 struct sch_ep *sch_ep = NULL;
1644 int isTT;
1645 int ep_type = 0;
1646#endif
f94e0186 1647
64927730 1648 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
f94e0186
SS
1649 if (ret <= 0)
1650 return ret;
1651 xhci = hcd_to_xhci(hcd);
fe6c6c13
SS
1652 if (xhci->xhc_state & XHCI_STATE_DYING)
1653 return -ENODEV;
f94e0186 1654
fe6c6c13 1655 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
f94e0186
SS
1656 drop_flag = xhci_get_endpoint_flag(&ep->desc);
1657 if (drop_flag == SLOT_FLAG || drop_flag == EP0_FLAG) {
1658 xhci_dbg(xhci, "xHCI %s - can't drop slot or ep 0 %#x\n",
1659 __func__, drop_flag);
1660 return 0;
1661 }
1662
f94e0186 1663 in_ctx = xhci->devs[udev->slot_id]->in_ctx;
d115b048
JY
1664 out_ctx = xhci->devs[udev->slot_id]->out_ctx;
1665 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
f94e0186 1666 ep_index = xhci_get_endpoint_index(&ep->desc);
d115b048 1667 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
f94e0186
SS
1668 /* If the HC already knows the endpoint is disabled,
1669 * or the HCD has noted it is disabled, ignore this request
1670 */
f5960b69
ME
1671 if (((ep_ctx->ep_info & cpu_to_le32(EP_STATE_MASK)) ==
1672 cpu_to_le32(EP_STATE_DISABLED)) ||
28ccd296
ME
1673 le32_to_cpu(ctrl_ctx->drop_flags) &
1674 xhci_get_endpoint_flag(&ep->desc)) {
700e2052
GKH
1675 xhci_warn(xhci, "xHCI %s called with disabled ep %p\n",
1676 __func__, ep);
f94e0186
SS
1677 return 0;
1678 }
1679
28ccd296
ME
1680 ctrl_ctx->drop_flags |= cpu_to_le32(drop_flag);
1681 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
f94e0186 1682
28ccd296
ME
1683 ctrl_ctx->add_flags &= cpu_to_le32(~drop_flag);
1684 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
f94e0186 1685
28ccd296 1686 last_ctx = xhci_last_valid_endpoint(le32_to_cpu(ctrl_ctx->add_flags));
d115b048 1687 slot_ctx = xhci_get_slot_ctx(xhci, in_ctx);
f94e0186 1688 /* Update the last valid endpoint context, if we deleted the last one */
28ccd296
ME
1689 if ((le32_to_cpu(slot_ctx->dev_info) & LAST_CTX_MASK) >
1690 LAST_CTX(last_ctx)) {
1691 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
1692 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(last_ctx));
f94e0186 1693 }
28ccd296 1694 new_slot_info = le32_to_cpu(slot_ctx->dev_info);
f94e0186
SS
1695
1696 xhci_endpoint_zero(xhci, xhci->devs[udev->slot_id], ep);
1697
6fa3eb70
S
1698#ifdef CONFIG_MTK_XHCI
1699 slot_ctx = xhci_get_slot_ctx(xhci, xhci->devs[udev->slot_id]->out_ctx);
1700 if((slot_ctx->tt_info & 0xff) > 0){
1701 isTT = 1;
1702 }
1703 else{
1704 isTT = 0;
1705 }
1706 if(usb_endpoint_xfer_int(&ep->desc)){
1707 ep_type = USB_EP_INT;
1708 }
1709 else if(usb_endpoint_xfer_isoc(&ep->desc)){
1710 ep_type = USB_EP_ISOC;
1711 }
1712 else if(usb_endpoint_xfer_bulk(&ep->desc)){
1713 ep_type = USB_EP_BULK;
1714 }
1715 sch_ep = mtk_xhci_scheduler_remove_ep(udev->speed, usb_endpoint_dir_in(&ep->desc)
1716 , isTT, ep_type, (mtk_u32 *)ep);
1717 if(sch_ep != NULL){
1718 kfree(sch_ep);
1719 }
1720 else{
1721 xhci_warn(xhci, "[MTK]Doesn't find ep_sch instance when removing endpoint\n");
1722 }
1723#endif
1724
f94e0186
SS
1725 xhci_dbg(xhci, "drop ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n",
1726 (unsigned int) ep->desc.bEndpointAddress,
1727 udev->slot_id,
1728 (unsigned int) new_drop_flags,
1729 (unsigned int) new_add_flags,
1730 (unsigned int) new_slot_info);
6fa3eb70
S
1731
1732 #if defined(CONFIG_MTK_XHCI) && defined(CONFIG_USB_MTK_DUALMODE)
1733 mtk_ep_count_dec();
1734 #endif
1735
f94e0186
SS
1736 return 0;
1737}
1738
1739/* Add an endpoint to a new possible bandwidth configuration for this device.
1740 * Only one call to this function is allowed per endpoint before
1741 * check_bandwidth() or reset_bandwidth() must be called.
1742 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1743 * add the endpoint to the schedule with possibly new parameters denoted by a
1744 * different endpoint descriptor in usb_host_endpoint.
1745 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1746 * not allowed.
f88ba78d
SS
1747 *
1748 * The USB core will not allow URBs to be queued to an endpoint until the
1749 * configuration or alt setting is installed in the device, so there's no need
1750 * for mutual exclusion to protect the xhci->devs[slot_id] structure.
f94e0186
SS
1751 */
1752int xhci_add_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1753 struct usb_host_endpoint *ep)
1754{
f94e0186 1755 struct xhci_hcd *xhci;
d115b048 1756 struct xhci_container_ctx *in_ctx, *out_ctx;
f94e0186 1757 unsigned int ep_index;
d115b048
JY
1758 struct xhci_slot_ctx *slot_ctx;
1759 struct xhci_input_control_ctx *ctrl_ctx;
f94e0186
SS
1760 u32 added_ctxs;
1761 unsigned int last_ctx;
1762 u32 new_add_flags, new_drop_flags, new_slot_info;
fa75ac37 1763 struct xhci_virt_device *virt_dev;
f94e0186 1764 int ret = 0;
6fa3eb70
S
1765#ifdef CONFIG_MTK_XHCI
1766 struct xhci_ep_ctx *in_ep_ctx;
1767 struct sch_ep *sch_ep;
1768 int isTT;
1769 int ep_type = 0;
1770 int maxp = 0;
1771 int burst = 0;
1772 int mult = 0;
1773 int interval = 0;
1774#endif
f94e0186 1775
64927730 1776 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
a1587d97
SS
1777 if (ret <= 0) {
1778 /* So we won't queue a reset ep command for a root hub */
1779 ep->hcpriv = NULL;
f94e0186 1780 return ret;
a1587d97 1781 }
f94e0186 1782 xhci = hcd_to_xhci(hcd);
fe6c6c13
SS
1783 if (xhci->xhc_state & XHCI_STATE_DYING)
1784 return -ENODEV;
f94e0186
SS
1785
1786 added_ctxs = xhci_get_endpoint_flag(&ep->desc);
1787 last_ctx = xhci_last_valid_endpoint(added_ctxs);
1788 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) {
1789 /* FIXME when we have to issue an evaluate endpoint command to
1790 * deal with ep0 max packet size changing once we get the
1791 * descriptors
1792 */
1793 xhci_dbg(xhci, "xHCI %s - can't add slot or ep 0 %#x\n",
1794 __func__, added_ctxs);
1795 return 0;
1796 }
1797
fa75ac37
SS
1798 virt_dev = xhci->devs[udev->slot_id];
1799 in_ctx = virt_dev->in_ctx;
1800 out_ctx = virt_dev->out_ctx;
d115b048 1801 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
f94e0186 1802 ep_index = xhci_get_endpoint_index(&ep->desc);
fa75ac37
SS
1803
1804 /* If this endpoint is already in use, and the upper layers are trying
1805 * to add it again without dropping it, reject the addition.
1806 */
1807 if (virt_dev->eps[ep_index].ring &&
1808 !(le32_to_cpu(ctrl_ctx->drop_flags) &
1809 xhci_get_endpoint_flag(&ep->desc))) {
1810 xhci_warn(xhci, "Trying to add endpoint 0x%x "
1811 "without dropping it.\n",
1812 (unsigned int) ep->desc.bEndpointAddress);
1813 return -EINVAL;
1814 }
1815
f94e0186
SS
1816 /* If the HCD has already noted the endpoint is enabled,
1817 * ignore this request.
1818 */
28ccd296
ME
1819 if (le32_to_cpu(ctrl_ctx->add_flags) &
1820 xhci_get_endpoint_flag(&ep->desc)) {
700e2052
GKH
1821 xhci_warn(xhci, "xHCI %s called with enabled ep %p\n",
1822 __func__, ep);
f94e0186
SS
1823 return 0;
1824 }
1825
f88ba78d
SS
1826 /*
1827 * Configuration and alternate setting changes must be done in
1828 * process context, not interrupt context (or so documenation
1829 * for usb_set_interface() and usb_set_configuration() claim).
1830 */
fa75ac37 1831 if (xhci_endpoint_init(xhci, virt_dev, udev, ep, GFP_NOIO) < 0) {
f94e0186
SS
1832 dev_dbg(&udev->dev, "%s - could not initialize ep %#x\n",
1833 __func__, ep->desc.bEndpointAddress);
f94e0186
SS
1834 return -ENOMEM;
1835 }
1836
6fa3eb70
S
1837#ifdef CONFIG_MTK_XHCI
1838 in_ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
1839 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
1840
1841 if((slot_ctx->tt_info & 0xff) > 0){
1842 isTT = 1;
1843 }
1844 else{
1845 isTT = 0;
1846 }
1847 if(usb_endpoint_xfer_int(&ep->desc)){
1848 ep_type = USB_EP_INT;
1849 }
1850 else if(usb_endpoint_xfer_isoc(&ep->desc)){
1851 ep_type = USB_EP_ISOC;
1852 }
1853 else if(usb_endpoint_xfer_bulk(&ep->desc)){
1854 ep_type = USB_EP_BULK;
1855 }
1856 if(udev->speed == USB_SPEED_FULL || udev->speed == USB_SPEED_HIGH
1857 || udev->speed == USB_SPEED_LOW){
1858 maxp = ep->desc.wMaxPacketSize & 0x7FF;
1859 burst = ep->desc.wMaxPacketSize >> 11;
1860 mult = 0;
1861 }
1862 else if(udev->speed == USB_SPEED_SUPER){
1863 maxp = ep->desc.wMaxPacketSize & 0x7FF;
1864 burst = ep->ss_ep_comp.bMaxBurst;
1865 mult = ep->ss_ep_comp.bmAttributes & 0x3;
1866 }
1867 interval = (1 << ((in_ep_ctx->ep_info >> 16) & 0xff));
1868 sch_ep = kmalloc(sizeof(struct sch_ep), GFP_KERNEL);
1869 if(mtk_xhci_scheduler_add_ep(udev->speed, usb_endpoint_dir_in(&ep->desc),
1870 isTT, ep_type, maxp, interval, burst, mult, (mtk_u32 *)ep
1871 , (mtk_u32 *)in_ep_ctx, sch_ep) != SCH_SUCCESS){
1872 xhci_err(xhci, "[MTK] not enough bandwidth\n");
1873 return -ENOSPC;
1874 }
1875#endif
1876
28ccd296
ME
1877 ctrl_ctx->add_flags |= cpu_to_le32(added_ctxs);
1878 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
f94e0186
SS
1879
1880 /* If xhci_endpoint_disable() was called for this endpoint, but the
1881 * xHC hasn't been notified yet through the check_bandwidth() call,
1882 * this re-adds a new state for the endpoint from the new endpoint
1883 * descriptors. We must drop and re-add this endpoint, so we leave the
1884 * drop flags alone.
1885 */
28ccd296 1886 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
f94e0186 1887
d115b048 1888 slot_ctx = xhci_get_slot_ctx(xhci, in_ctx);
f94e0186 1889 /* Update the last valid endpoint context, if we just added one past */
28ccd296
ME
1890 if ((le32_to_cpu(slot_ctx->dev_info) & LAST_CTX_MASK) <
1891 LAST_CTX(last_ctx)) {
1892 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
1893 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(last_ctx));
f94e0186 1894 }
28ccd296 1895 new_slot_info = le32_to_cpu(slot_ctx->dev_info);
f94e0186 1896
a1587d97
SS
1897 /* Store the usb_device pointer for later use */
1898 ep->hcpriv = udev;
1899
f94e0186
SS
1900 xhci_dbg(xhci, "add ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n",
1901 (unsigned int) ep->desc.bEndpointAddress,
1902 udev->slot_id,
1903 (unsigned int) new_drop_flags,
1904 (unsigned int) new_add_flags,
1905 (unsigned int) new_slot_info);
6fa3eb70
S
1906
1907 #if defined(CONFIG_MTK_XHCI) && defined(CONFIG_USB_MTK_DUALMODE)
1908 mtk_ep_count_inc();
1909 #endif
1910
f94e0186
SS
1911 return 0;
1912}
1913
d115b048 1914static void xhci_zero_in_ctx(struct xhci_hcd *xhci, struct xhci_virt_device *virt_dev)
f94e0186 1915{
d115b048 1916 struct xhci_input_control_ctx *ctrl_ctx;
f94e0186 1917 struct xhci_ep_ctx *ep_ctx;
d115b048 1918 struct xhci_slot_ctx *slot_ctx;
f94e0186
SS
1919 int i;
1920
1921 /* When a device's add flag and drop flag are zero, any subsequent
1922 * configure endpoint command will leave that endpoint's state
1923 * untouched. Make sure we don't leave any old state in the input
1924 * endpoint contexts.
1925 */
d115b048
JY
1926 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
1927 ctrl_ctx->drop_flags = 0;
1928 ctrl_ctx->add_flags = 0;
1929 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
28ccd296 1930 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
f94e0186 1931 /* Endpoint 0 is always valid */
28ccd296 1932 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(1));
f94e0186 1933 for (i = 1; i < 31; ++i) {
d115b048 1934 ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->in_ctx, i);
f94e0186
SS
1935 ep_ctx->ep_info = 0;
1936 ep_ctx->ep_info2 = 0;
8e595a5d 1937 ep_ctx->deq = 0;
f94e0186
SS
1938 ep_ctx->tx_info = 0;
1939 }
1940}
1941
f2217e8e 1942static int xhci_configure_endpoint_result(struct xhci_hcd *xhci,
00161f7d 1943 struct usb_device *udev, u32 *cmd_status)
f2217e8e
SS
1944{
1945 int ret;
1946
913a8a34 1947 switch (*cmd_status) {
f2217e8e
SS
1948 case COMP_ENOMEM:
1949 dev_warn(&udev->dev, "Not enough host controller resources "
1950 "for new device state.\n");
1951 ret = -ENOMEM;
1952 /* FIXME: can we allocate more resources for the HC? */
1953 break;
1954 case COMP_BW_ERR:
71d85724 1955 case COMP_2ND_BW_ERR:
f2217e8e
SS
1956 dev_warn(&udev->dev, "Not enough bandwidth "
1957 "for new device state.\n");
1958 ret = -ENOSPC;
1959 /* FIXME: can we go back to the old state? */
1960 break;
1961 case COMP_TRB_ERR:
1962 /* the HCD set up something wrong */
1963 dev_warn(&udev->dev, "ERROR: Endpoint drop flag = 0, "
1964 "add flag = 1, "
1965 "and endpoint is not disabled.\n");
1966 ret = -EINVAL;
1967 break;
f6ba6fe2
AH
1968 case COMP_DEV_ERR:
1969 dev_warn(&udev->dev, "ERROR: Incompatible device for endpoint "
1970 "configure command.\n");
1971 ret = -ENODEV;
1972 break;
f2217e8e
SS
1973 case COMP_SUCCESS:
1974 dev_dbg(&udev->dev, "Successful Endpoint Configure command\n");
1975 ret = 0;
1976 break;
1977 default:
1978 xhci_err(xhci, "ERROR: unexpected command completion "
913a8a34 1979 "code 0x%x.\n", *cmd_status);
f2217e8e
SS
1980 ret = -EINVAL;
1981 break;
1982 }
1983 return ret;
1984}
1985
1986static int xhci_evaluate_context_result(struct xhci_hcd *xhci,
00161f7d 1987 struct usb_device *udev, u32 *cmd_status)
f2217e8e
SS
1988{
1989 int ret;
913a8a34 1990 struct xhci_virt_device *virt_dev = xhci->devs[udev->slot_id];
f2217e8e 1991
913a8a34 1992 switch (*cmd_status) {
f2217e8e
SS
1993 case COMP_EINVAL:
1994 dev_warn(&udev->dev, "WARN: xHCI driver setup invalid evaluate "
1995 "context command.\n");
1996 ret = -EINVAL;
1997 break;
1998 case COMP_EBADSLT:
1999 dev_warn(&udev->dev, "WARN: slot not enabled for"
2000 "evaluate context command.\n");
b8031342
SS
2001 ret = -EINVAL;
2002 break;
f2217e8e
SS
2003 case COMP_CTX_STATE:
2004 dev_warn(&udev->dev, "WARN: invalid context state for "
2005 "evaluate context command.\n");
2006 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 1);
2007 ret = -EINVAL;
2008 break;
f6ba6fe2
AH
2009 case COMP_DEV_ERR:
2010 dev_warn(&udev->dev, "ERROR: Incompatible device for evaluate "
2011 "context command.\n");
2012 ret = -ENODEV;
2013 break;
1bb73a88
AH
2014 case COMP_MEL_ERR:
2015 /* Max Exit Latency too large error */
2016 dev_warn(&udev->dev, "WARN: Max Exit Latency too large\n");
2017 ret = -EINVAL;
2018 break;
f2217e8e
SS
2019 case COMP_SUCCESS:
2020 dev_dbg(&udev->dev, "Successful evaluate context command\n");
2021 ret = 0;
2022 break;
2023 default:
2024 xhci_err(xhci, "ERROR: unexpected command completion "
913a8a34 2025 "code 0x%x.\n", *cmd_status);
f2217e8e
SS
2026 ret = -EINVAL;
2027 break;
2028 }
2029 return ret;
2030}
2031
2cf95c18
SS
2032static u32 xhci_count_num_new_endpoints(struct xhci_hcd *xhci,
2033 struct xhci_container_ctx *in_ctx)
2034{
2035 struct xhci_input_control_ctx *ctrl_ctx;
2036 u32 valid_add_flags;
2037 u32 valid_drop_flags;
2038
2039 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
2040 /* Ignore the slot flag (bit 0), and the default control endpoint flag
2041 * (bit 1). The default control endpoint is added during the Address
2042 * Device command and is never removed until the slot is disabled.
2043 */
2044 valid_add_flags = ctrl_ctx->add_flags >> 2;
2045 valid_drop_flags = ctrl_ctx->drop_flags >> 2;
2046
2047 /* Use hweight32 to count the number of ones in the add flags, or
2048 * number of endpoints added. Don't count endpoints that are changed
2049 * (both added and dropped).
2050 */
2051 return hweight32(valid_add_flags) -
2052 hweight32(valid_add_flags & valid_drop_flags);
2053}
2054
2055static unsigned int xhci_count_num_dropped_endpoints(struct xhci_hcd *xhci,
2056 struct xhci_container_ctx *in_ctx)
2057{
2058 struct xhci_input_control_ctx *ctrl_ctx;
2059 u32 valid_add_flags;
2060 u32 valid_drop_flags;
2061
2062 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
2063 valid_add_flags = ctrl_ctx->add_flags >> 2;
2064 valid_drop_flags = ctrl_ctx->drop_flags >> 2;
2065
2066 return hweight32(valid_drop_flags) -
2067 hweight32(valid_add_flags & valid_drop_flags);
2068}
2069
2070/*
2071 * We need to reserve the new number of endpoints before the configure endpoint
2072 * command completes. We can't subtract the dropped endpoints from the number
2073 * of active endpoints until the command completes because we can oversubscribe
2074 * the host in this case:
2075 *
2076 * - the first configure endpoint command drops more endpoints than it adds
2077 * - a second configure endpoint command that adds more endpoints is queued
2078 * - the first configure endpoint command fails, so the config is unchanged
2079 * - the second command may succeed, even though there isn't enough resources
2080 *
2081 * Must be called with xhci->lock held.
2082 */
2083static int xhci_reserve_host_resources(struct xhci_hcd *xhci,
2084 struct xhci_container_ctx *in_ctx)
2085{
2086 u32 added_eps;
2087
2088 added_eps = xhci_count_num_new_endpoints(xhci, in_ctx);
2089 if (xhci->num_active_eps + added_eps > xhci->limit_active_eps) {
2090 xhci_dbg(xhci, "Not enough ep ctxs: "
2091 "%u active, need to add %u, limit is %u.\n",
2092 xhci->num_active_eps, added_eps,
2093 xhci->limit_active_eps);
2094 return -ENOMEM;
2095 }
2096 xhci->num_active_eps += added_eps;
2097 xhci_dbg(xhci, "Adding %u ep ctxs, %u now active.\n", added_eps,
2098 xhci->num_active_eps);
2099 return 0;
2100}
2101
2102/*
2103 * The configure endpoint was failed by the xHC for some other reason, so we
2104 * need to revert the resources that failed configuration would have used.
2105 *
2106 * Must be called with xhci->lock held.
2107 */
2108static void xhci_free_host_resources(struct xhci_hcd *xhci,
2109 struct xhci_container_ctx *in_ctx)
2110{
2111 u32 num_failed_eps;
2112
2113 num_failed_eps = xhci_count_num_new_endpoints(xhci, in_ctx);
2114 xhci->num_active_eps -= num_failed_eps;
2115 xhci_dbg(xhci, "Removing %u failed ep ctxs, %u now active.\n",
2116 num_failed_eps,
2117 xhci->num_active_eps);
2118}
2119
2120/*
2121 * Now that the command has completed, clean up the active endpoint count by
2122 * subtracting out the endpoints that were dropped (but not changed).
2123 *
2124 * Must be called with xhci->lock held.
2125 */
2126static void xhci_finish_resource_reservation(struct xhci_hcd *xhci,
2127 struct xhci_container_ctx *in_ctx)
2128{
2129 u32 num_dropped_eps;
2130
2131 num_dropped_eps = xhci_count_num_dropped_endpoints(xhci, in_ctx);
2132 xhci->num_active_eps -= num_dropped_eps;
2133 if (num_dropped_eps)
2134 xhci_dbg(xhci, "Removing %u dropped ep ctxs, %u now active.\n",
2135 num_dropped_eps,
2136 xhci->num_active_eps);
2137}
2138
ed384bd3 2139static unsigned int xhci_get_block_size(struct usb_device *udev)
c29eea62
SS
2140{
2141 switch (udev->speed) {
2142 case USB_SPEED_LOW:
2143 case USB_SPEED_FULL:
2144 return FS_BLOCK;
2145 case USB_SPEED_HIGH:
2146 return HS_BLOCK;
2147 case USB_SPEED_SUPER:
2148 return SS_BLOCK;
2149 case USB_SPEED_UNKNOWN:
2150 case USB_SPEED_WIRELESS:
2151 default:
2152 /* Should never happen */
2153 return 1;
2154 }
2155}
2156
ed384bd3
FB
2157static unsigned int
2158xhci_get_largest_overhead(struct xhci_interval_bw *interval_bw)
c29eea62
SS
2159{
2160 if (interval_bw->overhead[LS_OVERHEAD_TYPE])
2161 return LS_OVERHEAD;
2162 if (interval_bw->overhead[FS_OVERHEAD_TYPE])
2163 return FS_OVERHEAD;
2164 return HS_OVERHEAD;
2165}
2166
2167/* If we are changing a LS/FS device under a HS hub,
2168 * make sure (if we are activating a new TT) that the HS bus has enough
2169 * bandwidth for this new TT.
2170 */
2171static int xhci_check_tt_bw_table(struct xhci_hcd *xhci,
2172 struct xhci_virt_device *virt_dev,
2173 int old_active_eps)
2174{
2175 struct xhci_interval_bw_table *bw_table;
2176 struct xhci_tt_bw_info *tt_info;
2177
2178 /* Find the bandwidth table for the root port this TT is attached to. */
2179 bw_table = &xhci->rh_bw[virt_dev->real_port - 1].bw_table;
2180 tt_info = virt_dev->tt_info;
2181 /* If this TT already had active endpoints, the bandwidth for this TT
2182 * has already been added. Removing all periodic endpoints (and thus
2183 * making the TT enactive) will only decrease the bandwidth used.
2184 */
2185 if (old_active_eps)
2186 return 0;
2187 if (old_active_eps == 0 && tt_info->active_eps != 0) {
2188 if (bw_table->bw_used + TT_HS_OVERHEAD > HS_BW_LIMIT)
2189 return -ENOMEM;
2190 return 0;
2191 }
2192 /* Not sure why we would have no new active endpoints...
2193 *
2194 * Maybe because of an Evaluate Context change for a hub update or a
2195 * control endpoint 0 max packet size change?
2196 * FIXME: skip the bandwidth calculation in that case.
2197 */
2198 return 0;
2199}
2200
2b698999
SS
2201static int xhci_check_ss_bw(struct xhci_hcd *xhci,
2202 struct xhci_virt_device *virt_dev)
2203{
2204 unsigned int bw_reserved;
2205
2206 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_IN, 100);
2207 if (virt_dev->bw_table->ss_bw_in > (SS_BW_LIMIT_IN - bw_reserved))
2208 return -ENOMEM;
2209
2210 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_OUT, 100);
2211 if (virt_dev->bw_table->ss_bw_out > (SS_BW_LIMIT_OUT - bw_reserved))
2212 return -ENOMEM;
2213
2214 return 0;
2215}
2216
c29eea62
SS
2217/*
2218 * This algorithm is a very conservative estimate of the worst-case scheduling
2219 * scenario for any one interval. The hardware dynamically schedules the
2220 * packets, so we can't tell which microframe could be the limiting factor in
2221 * the bandwidth scheduling. This only takes into account periodic endpoints.
2222 *
2223 * Obviously, we can't solve an NP complete problem to find the minimum worst
2224 * case scenario. Instead, we come up with an estimate that is no less than
2225 * the worst case bandwidth used for any one microframe, but may be an
2226 * over-estimate.
2227 *
2228 * We walk the requirements for each endpoint by interval, starting with the
2229 * smallest interval, and place packets in the schedule where there is only one
2230 * possible way to schedule packets for that interval. In order to simplify
2231 * this algorithm, we record the largest max packet size for each interval, and
2232 * assume all packets will be that size.
2233 *
2234 * For interval 0, we obviously must schedule all packets for each interval.
2235 * The bandwidth for interval 0 is just the amount of data to be transmitted
2236 * (the sum of all max ESIT payload sizes, plus any overhead per packet times
2237 * the number of packets).
2238 *
2239 * For interval 1, we have two possible microframes to schedule those packets
2240 * in. For this algorithm, if we can schedule the same number of packets for
2241 * each possible scheduling opportunity (each microframe), we will do so. The
2242 * remaining number of packets will be saved to be transmitted in the gaps in
2243 * the next interval's scheduling sequence.
2244 *
2245 * As we move those remaining packets to be scheduled with interval 2 packets,
2246 * we have to double the number of remaining packets to transmit. This is
2247 * because the intervals are actually powers of 2, and we would be transmitting
2248 * the previous interval's packets twice in this interval. We also have to be
2249 * sure that when we look at the largest max packet size for this interval, we
2250 * also look at the largest max packet size for the remaining packets and take
2251 * the greater of the two.
2252 *
2253 * The algorithm continues to evenly distribute packets in each scheduling
2254 * opportunity, and push the remaining packets out, until we get to the last
2255 * interval. Then those packets and their associated overhead are just added
2256 * to the bandwidth used.
2e27980e
SS
2257 */
2258static int xhci_check_bw_table(struct xhci_hcd *xhci,
2259 struct xhci_virt_device *virt_dev,
2260 int old_active_eps)
2261{
c29eea62
SS
2262 unsigned int bw_reserved;
2263 unsigned int max_bandwidth;
2264 unsigned int bw_used;
2265 unsigned int block_size;
2266 struct xhci_interval_bw_table *bw_table;
2267 unsigned int packet_size = 0;
2268 unsigned int overhead = 0;
2269 unsigned int packets_transmitted = 0;
2270 unsigned int packets_remaining = 0;
2271 unsigned int i;
2272
2b698999
SS
2273 if (virt_dev->udev->speed == USB_SPEED_SUPER)
2274 return xhci_check_ss_bw(xhci, virt_dev);
2275
c29eea62
SS
2276 if (virt_dev->udev->speed == USB_SPEED_HIGH) {
2277 max_bandwidth = HS_BW_LIMIT;
2278 /* Convert percent of bus BW reserved to blocks reserved */
2279 bw_reserved = DIV_ROUND_UP(HS_BW_RESERVED * max_bandwidth, 100);
2280 } else {
2281 max_bandwidth = FS_BW_LIMIT;
2282 bw_reserved = DIV_ROUND_UP(FS_BW_RESERVED * max_bandwidth, 100);
2283 }
2284
2285 bw_table = virt_dev->bw_table;
2286 /* We need to translate the max packet size and max ESIT payloads into
2287 * the units the hardware uses.
2288 */
2289 block_size = xhci_get_block_size(virt_dev->udev);
2290
2291 /* If we are manipulating a LS/FS device under a HS hub, double check
2292 * that the HS bus has enough bandwidth if we are activing a new TT.
2293 */
2294 if (virt_dev->tt_info) {
2295 xhci_dbg(xhci, "Recalculating BW for rootport %u\n",
2296 virt_dev->real_port);
2297 if (xhci_check_tt_bw_table(xhci, virt_dev, old_active_eps)) {
2298 xhci_warn(xhci, "Not enough bandwidth on HS bus for "
2299 "newly activated TT.\n");
2300 return -ENOMEM;
2301 }
2302 xhci_dbg(xhci, "Recalculating BW for TT slot %u port %u\n",
2303 virt_dev->tt_info->slot_id,
2304 virt_dev->tt_info->ttport);
2305 } else {
2306 xhci_dbg(xhci, "Recalculating BW for rootport %u\n",
2307 virt_dev->real_port);
2308 }
2309
2310 /* Add in how much bandwidth will be used for interval zero, or the
2311 * rounded max ESIT payload + number of packets * largest overhead.
2312 */
2313 bw_used = DIV_ROUND_UP(bw_table->interval0_esit_payload, block_size) +
2314 bw_table->interval_bw[0].num_packets *
2315 xhci_get_largest_overhead(&bw_table->interval_bw[0]);
2316
2317 for (i = 1; i < XHCI_MAX_INTERVAL; i++) {
2318 unsigned int bw_added;
2319 unsigned int largest_mps;
2320 unsigned int interval_overhead;
2321
2322 /*
2323 * How many packets could we transmit in this interval?
2324 * If packets didn't fit in the previous interval, we will need
2325 * to transmit that many packets twice within this interval.
2326 */
2327 packets_remaining = 2 * packets_remaining +
2328 bw_table->interval_bw[i].num_packets;
2329
2330 /* Find the largest max packet size of this or the previous
2331 * interval.
2332 */
2333 if (list_empty(&bw_table->interval_bw[i].endpoints))
2334 largest_mps = 0;
2335 else {
2336 struct xhci_virt_ep *virt_ep;
2337 struct list_head *ep_entry;
2338
2339 ep_entry = bw_table->interval_bw[i].endpoints.next;
2340 virt_ep = list_entry(ep_entry,
2341 struct xhci_virt_ep, bw_endpoint_list);
2342 /* Convert to blocks, rounding up */
2343 largest_mps = DIV_ROUND_UP(
2344 virt_ep->bw_info.max_packet_size,
2345 block_size);
2346 }
2347 if (largest_mps > packet_size)
2348 packet_size = largest_mps;
2349
2350 /* Use the larger overhead of this or the previous interval. */
2351 interval_overhead = xhci_get_largest_overhead(
2352 &bw_table->interval_bw[i]);
2353 if (interval_overhead > overhead)
2354 overhead = interval_overhead;
2355
2356 /* How many packets can we evenly distribute across
2357 * (1 << (i + 1)) possible scheduling opportunities?
2358 */
2359 packets_transmitted = packets_remaining >> (i + 1);
2360
2361 /* Add in the bandwidth used for those scheduled packets */
2362 bw_added = packets_transmitted * (overhead + packet_size);
2363
2364 /* How many packets do we have remaining to transmit? */
2365 packets_remaining = packets_remaining % (1 << (i + 1));
2366
2367 /* What largest max packet size should those packets have? */
2368 /* If we've transmitted all packets, don't carry over the
2369 * largest packet size.
2370 */
2371 if (packets_remaining == 0) {
2372 packet_size = 0;
2373 overhead = 0;
2374 } else if (packets_transmitted > 0) {
2375 /* Otherwise if we do have remaining packets, and we've
2376 * scheduled some packets in this interval, take the
2377 * largest max packet size from endpoints with this
2378 * interval.
2379 */
2380 packet_size = largest_mps;
2381 overhead = interval_overhead;
2382 }
2383 /* Otherwise carry over packet_size and overhead from the last
2384 * time we had a remainder.
2385 */
2386 bw_used += bw_added;
2387 if (bw_used > max_bandwidth) {
2388 xhci_warn(xhci, "Not enough bandwidth. "
2389 "Proposed: %u, Max: %u\n",
2390 bw_used, max_bandwidth);
2391 return -ENOMEM;
2392 }
2393 }
2394 /*
2395 * Ok, we know we have some packets left over after even-handedly
2396 * scheduling interval 15. We don't know which microframes they will
2397 * fit into, so we over-schedule and say they will be scheduled every
2398 * microframe.
2399 */
2400 if (packets_remaining > 0)
2401 bw_used += overhead + packet_size;
2402
2403 if (!virt_dev->tt_info && virt_dev->udev->speed == USB_SPEED_HIGH) {
2404 unsigned int port_index = virt_dev->real_port - 1;
2405
2406 /* OK, we're manipulating a HS device attached to a
2407 * root port bandwidth domain. Include the number of active TTs
2408 * in the bandwidth used.
2409 */
2410 bw_used += TT_HS_OVERHEAD *
2411 xhci->rh_bw[port_index].num_active_tts;
2412 }
2413
2414 xhci_dbg(xhci, "Final bandwidth: %u, Limit: %u, Reserved: %u, "
2415 "Available: %u " "percent\n",
2416 bw_used, max_bandwidth, bw_reserved,
2417 (max_bandwidth - bw_used - bw_reserved) * 100 /
2418 max_bandwidth);
2419
2420 bw_used += bw_reserved;
2421 if (bw_used > max_bandwidth) {
2422 xhci_warn(xhci, "Not enough bandwidth. Proposed: %u, Max: %u\n",
2423 bw_used, max_bandwidth);
2424 return -ENOMEM;
2425 }
2426
2427 bw_table->bw_used = bw_used;
2e27980e
SS
2428 return 0;
2429}
2430
2431static bool xhci_is_async_ep(unsigned int ep_type)
2432{
2433 return (ep_type != ISOC_OUT_EP && ep_type != INT_OUT_EP &&
2434 ep_type != ISOC_IN_EP &&
2435 ep_type != INT_IN_EP);
2436}
2437
2b698999
SS
2438static bool xhci_is_sync_in_ep(unsigned int ep_type)
2439{
392a07ae 2440 return (ep_type == ISOC_IN_EP || ep_type == INT_IN_EP);
2b698999
SS
2441}
2442
2443static unsigned int xhci_get_ss_bw_consumed(struct xhci_bw_info *ep_bw)
2444{
2445 unsigned int mps = DIV_ROUND_UP(ep_bw->max_packet_size, SS_BLOCK);
2446
2447 if (ep_bw->ep_interval == 0)
2448 return SS_OVERHEAD_BURST +
2449 (ep_bw->mult * ep_bw->num_packets *
2450 (SS_OVERHEAD + mps));
2451 return DIV_ROUND_UP(ep_bw->mult * ep_bw->num_packets *
2452 (SS_OVERHEAD + mps + SS_OVERHEAD_BURST),
2453 1 << ep_bw->ep_interval);
2454
2455}
2456
2e27980e
SS
2457void xhci_drop_ep_from_interval_table(struct xhci_hcd *xhci,
2458 struct xhci_bw_info *ep_bw,
2459 struct xhci_interval_bw_table *bw_table,
2460 struct usb_device *udev,
2461 struct xhci_virt_ep *virt_ep,
2462 struct xhci_tt_bw_info *tt_info)
2463{
2464 struct xhci_interval_bw *interval_bw;
2465 int normalized_interval;
2466
2b698999 2467 if (xhci_is_async_ep(ep_bw->type))
2e27980e
SS
2468 return;
2469
2b698999
SS
2470 if (udev->speed == USB_SPEED_SUPER) {
2471 if (xhci_is_sync_in_ep(ep_bw->type))
2472 xhci->devs[udev->slot_id]->bw_table->ss_bw_in -=
2473 xhci_get_ss_bw_consumed(ep_bw);
2474 else
2475 xhci->devs[udev->slot_id]->bw_table->ss_bw_out -=
2476 xhci_get_ss_bw_consumed(ep_bw);
2477 return;
2478 }
2479
2480 /* SuperSpeed endpoints never get added to intervals in the table, so
2481 * this check is only valid for HS/FS/LS devices.
2482 */
2483 if (list_empty(&virt_ep->bw_endpoint_list))
2484 return;
2e27980e
SS
2485 /* For LS/FS devices, we need to translate the interval expressed in
2486 * microframes to frames.
2487 */
2488 if (udev->speed == USB_SPEED_HIGH)
2489 normalized_interval = ep_bw->ep_interval;
2490 else
2491 normalized_interval = ep_bw->ep_interval - 3;
2492
2493 if (normalized_interval == 0)
2494 bw_table->interval0_esit_payload -= ep_bw->max_esit_payload;
2495 interval_bw = &bw_table->interval_bw[normalized_interval];
2496 interval_bw->num_packets -= ep_bw->num_packets;
2497 switch (udev->speed) {
2498 case USB_SPEED_LOW:
2499 interval_bw->overhead[LS_OVERHEAD_TYPE] -= 1;
2500 break;
2501 case USB_SPEED_FULL:
2502 interval_bw->overhead[FS_OVERHEAD_TYPE] -= 1;
2503 break;
2504 case USB_SPEED_HIGH:
2505 interval_bw->overhead[HS_OVERHEAD_TYPE] -= 1;
2506 break;
2507 case USB_SPEED_SUPER:
2508 case USB_SPEED_UNKNOWN:
2509 case USB_SPEED_WIRELESS:
2510 /* Should never happen because only LS/FS/HS endpoints will get
2511 * added to the endpoint list.
2512 */
2513 return;
2514 }
2515 if (tt_info)
2516 tt_info->active_eps -= 1;
2517 list_del_init(&virt_ep->bw_endpoint_list);
2518}
2519
2520static void xhci_add_ep_to_interval_table(struct xhci_hcd *xhci,
2521 struct xhci_bw_info *ep_bw,
2522 struct xhci_interval_bw_table *bw_table,
2523 struct usb_device *udev,
2524 struct xhci_virt_ep *virt_ep,
2525 struct xhci_tt_bw_info *tt_info)
2526{
2527 struct xhci_interval_bw *interval_bw;
2528 struct xhci_virt_ep *smaller_ep;
2529 int normalized_interval;
2530
2531 if (xhci_is_async_ep(ep_bw->type))
2532 return;
2533
2b698999
SS
2534 if (udev->speed == USB_SPEED_SUPER) {
2535 if (xhci_is_sync_in_ep(ep_bw->type))
2536 xhci->devs[udev->slot_id]->bw_table->ss_bw_in +=
2537 xhci_get_ss_bw_consumed(ep_bw);
2538 else
2539 xhci->devs[udev->slot_id]->bw_table->ss_bw_out +=
2540 xhci_get_ss_bw_consumed(ep_bw);
2541 return;
2542 }
2543
2e27980e
SS
2544 /* For LS/FS devices, we need to translate the interval expressed in
2545 * microframes to frames.
2546 */
2547 if (udev->speed == USB_SPEED_HIGH)
2548 normalized_interval = ep_bw->ep_interval;
2549 else
2550 normalized_interval = ep_bw->ep_interval - 3;
2551
2552 if (normalized_interval == 0)
2553 bw_table->interval0_esit_payload += ep_bw->max_esit_payload;
2554 interval_bw = &bw_table->interval_bw[normalized_interval];
2555 interval_bw->num_packets += ep_bw->num_packets;
2556 switch (udev->speed) {
2557 case USB_SPEED_LOW:
2558 interval_bw->overhead[LS_OVERHEAD_TYPE] += 1;
2559 break;
2560 case USB_SPEED_FULL:
2561 interval_bw->overhead[FS_OVERHEAD_TYPE] += 1;
2562 break;
2563 case USB_SPEED_HIGH:
2564 interval_bw->overhead[HS_OVERHEAD_TYPE] += 1;
2565 break;
2566 case USB_SPEED_SUPER:
2567 case USB_SPEED_UNKNOWN:
2568 case USB_SPEED_WIRELESS:
2569 /* Should never happen because only LS/FS/HS endpoints will get
2570 * added to the endpoint list.
2571 */
2572 return;
2573 }
2574
2575 if (tt_info)
2576 tt_info->active_eps += 1;
2577 /* Insert the endpoint into the list, largest max packet size first. */
2578 list_for_each_entry(smaller_ep, &interval_bw->endpoints,
2579 bw_endpoint_list) {
2580 if (ep_bw->max_packet_size >=
2581 smaller_ep->bw_info.max_packet_size) {
2582 /* Add the new ep before the smaller endpoint */
2583 list_add_tail(&virt_ep->bw_endpoint_list,
2584 &smaller_ep->bw_endpoint_list);
2585 return;
2586 }
2587 }
2588 /* Add the new endpoint at the end of the list. */
2589 list_add_tail(&virt_ep->bw_endpoint_list,
2590 &interval_bw->endpoints);
2591}
2592
2593void xhci_update_tt_active_eps(struct xhci_hcd *xhci,
2594 struct xhci_virt_device *virt_dev,
2595 int old_active_eps)
2596{
2597 struct xhci_root_port_bw_info *rh_bw_info;
2598 if (!virt_dev->tt_info)
2599 return;
2600
2601 rh_bw_info = &xhci->rh_bw[virt_dev->real_port - 1];
2602 if (old_active_eps == 0 &&
2603 virt_dev->tt_info->active_eps != 0) {
2604 rh_bw_info->num_active_tts += 1;
c29eea62 2605 rh_bw_info->bw_table.bw_used += TT_HS_OVERHEAD;
2e27980e
SS
2606 } else if (old_active_eps != 0 &&
2607 virt_dev->tt_info->active_eps == 0) {
2608 rh_bw_info->num_active_tts -= 1;
c29eea62 2609 rh_bw_info->bw_table.bw_used -= TT_HS_OVERHEAD;
2e27980e
SS
2610 }
2611}
2612
2613static int xhci_reserve_bandwidth(struct xhci_hcd *xhci,
2614 struct xhci_virt_device *virt_dev,
2615 struct xhci_container_ctx *in_ctx)
2616{
2617 struct xhci_bw_info ep_bw_info[31];
2618 int i;
2619 struct xhci_input_control_ctx *ctrl_ctx;
2620 int old_active_eps = 0;
2621
2e27980e
SS
2622 if (virt_dev->tt_info)
2623 old_active_eps = virt_dev->tt_info->active_eps;
2624
2625 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
2626
2627 for (i = 0; i < 31; i++) {
2628 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2629 continue;
2630
2631 /* Make a copy of the BW info in case we need to revert this */
2632 memcpy(&ep_bw_info[i], &virt_dev->eps[i].bw_info,
2633 sizeof(ep_bw_info[i]));
2634 /* Drop the endpoint from the interval table if the endpoint is
2635 * being dropped or changed.
2636 */
2637 if (EP_IS_DROPPED(ctrl_ctx, i))
2638 xhci_drop_ep_from_interval_table(xhci,
2639 &virt_dev->eps[i].bw_info,
2640 virt_dev->bw_table,
2641 virt_dev->udev,
2642 &virt_dev->eps[i],
2643 virt_dev->tt_info);
2644 }
2645 /* Overwrite the information stored in the endpoints' bw_info */
2646 xhci_update_bw_info(xhci, virt_dev->in_ctx, ctrl_ctx, virt_dev);
2647 for (i = 0; i < 31; i++) {
2648 /* Add any changed or added endpoints to the interval table */
2649 if (EP_IS_ADDED(ctrl_ctx, i))
2650 xhci_add_ep_to_interval_table(xhci,
2651 &virt_dev->eps[i].bw_info,
2652 virt_dev->bw_table,
2653 virt_dev->udev,
2654 &virt_dev->eps[i],
2655 virt_dev->tt_info);
2656 }
2657
2658 if (!xhci_check_bw_table(xhci, virt_dev, old_active_eps)) {
2659 /* Ok, this fits in the bandwidth we have.
2660 * Update the number of active TTs.
2661 */
2662 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
2663 return 0;
2664 }
2665
2666 /* We don't have enough bandwidth for this, revert the stored info. */
2667 for (i = 0; i < 31; i++) {
2668 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2669 continue;
2670
2671 /* Drop the new copies of any added or changed endpoints from
2672 * the interval table.
2673 */
2674 if (EP_IS_ADDED(ctrl_ctx, i)) {
2675 xhci_drop_ep_from_interval_table(xhci,
2676 &virt_dev->eps[i].bw_info,
2677 virt_dev->bw_table,
2678 virt_dev->udev,
2679 &virt_dev->eps[i],
2680 virt_dev->tt_info);
2681 }
2682 /* Revert the endpoint back to its old information */
2683 memcpy(&virt_dev->eps[i].bw_info, &ep_bw_info[i],
2684 sizeof(ep_bw_info[i]));
2685 /* Add any changed or dropped endpoints back into the table */
2686 if (EP_IS_DROPPED(ctrl_ctx, i))
2687 xhci_add_ep_to_interval_table(xhci,
2688 &virt_dev->eps[i].bw_info,
2689 virt_dev->bw_table,
2690 virt_dev->udev,
2691 &virt_dev->eps[i],
2692 virt_dev->tt_info);
2693 }
2694 return -ENOMEM;
2695}
2696
2697
f2217e8e
SS
2698/* Issue a configure endpoint command or evaluate context command
2699 * and wait for it to finish.
2700 */
2701static int xhci_configure_endpoint(struct xhci_hcd *xhci,
913a8a34
SS
2702 struct usb_device *udev,
2703 struct xhci_command *command,
2704 bool ctx_change, bool must_succeed)
f2217e8e
SS
2705{
2706 int ret;
2707 int timeleft;
2708 unsigned long flags;
913a8a34
SS
2709 struct xhci_container_ctx *in_ctx;
2710 struct completion *cmd_completion;
28ccd296 2711 u32 *cmd_status;
913a8a34 2712 struct xhci_virt_device *virt_dev;
6e4468b9 2713 union xhci_trb *cmd_trb;
f2217e8e
SS
2714
2715 spin_lock_irqsave(&xhci->lock, flags);
913a8a34 2716 virt_dev = xhci->devs[udev->slot_id];
750645f8
SS
2717
2718 if (command)
913a8a34 2719 in_ctx = command->in_ctx;
750645f8
SS
2720 else
2721 in_ctx = virt_dev->in_ctx;
2cf95c18 2722
750645f8
SS
2723 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK) &&
2724 xhci_reserve_host_resources(xhci, in_ctx)) {
2725 spin_unlock_irqrestore(&xhci->lock, flags);
2726 xhci_warn(xhci, "Not enough host resources, "
2727 "active endpoint contexts = %u\n",
2728 xhci->num_active_eps);
2729 return -ENOMEM;
2730 }
2e27980e
SS
2731 if ((xhci->quirks & XHCI_SW_BW_CHECKING) &&
2732 xhci_reserve_bandwidth(xhci, virt_dev, in_ctx)) {
2733 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
2734 xhci_free_host_resources(xhci, in_ctx);
2735 spin_unlock_irqrestore(&xhci->lock, flags);
2736 xhci_warn(xhci, "Not enough bandwidth\n");
2737 return -ENOMEM;
2738 }
750645f8
SS
2739
2740 if (command) {
913a8a34
SS
2741 cmd_completion = command->completion;
2742 cmd_status = &command->status;
57ad7768 2743 command->command_trb = xhci_find_next_enqueue(xhci->cmd_ring);
913a8a34
SS
2744 list_add_tail(&command->cmd_list, &virt_dev->cmd_list);
2745 } else {
913a8a34
SS
2746 cmd_completion = &virt_dev->cmd_completion;
2747 cmd_status = &virt_dev->cmd_status;
2748 }
1d68064a 2749 init_completion(cmd_completion);
913a8a34 2750
57ad7768 2751 cmd_trb = xhci_find_next_enqueue(xhci->cmd_ring);
f2217e8e 2752 if (!ctx_change)
913a8a34
SS
2753 ret = xhci_queue_configure_endpoint(xhci, in_ctx->dma,
2754 udev->slot_id, must_succeed);
f2217e8e 2755 else
913a8a34 2756 ret = xhci_queue_evaluate_context(xhci, in_ctx->dma,
4b266541 2757 udev->slot_id, must_succeed);
f2217e8e 2758 if (ret < 0) {
c01591bd
SS
2759 if (command)
2760 list_del(&command->cmd_list);
2cf95c18
SS
2761 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
2762 xhci_free_host_resources(xhci, in_ctx);
f2217e8e
SS
2763 spin_unlock_irqrestore(&xhci->lock, flags);
2764 xhci_dbg(xhci, "FIXME allocate a new ring segment\n");
2765 return -ENOMEM;
2766 }
2767 xhci_ring_cmd_db(xhci);
2768 spin_unlock_irqrestore(&xhci->lock, flags);
2769
2770 /* Wait for the configure endpoint command to complete */
2771 timeleft = wait_for_completion_interruptible_timeout(
913a8a34 2772 cmd_completion,
6e4468b9 2773 XHCI_CMD_DEFAULT_TIMEOUT);
f2217e8e
SS
2774 if (timeleft <= 0) {
2775 xhci_warn(xhci, "%s while waiting for %s command\n",
2776 timeleft == 0 ? "Timeout" : "Signal",
2777 ctx_change == 0 ?
2778 "configure endpoint" :
2779 "evaluate context");
6e4468b9
EF
2780 /* cancel the configure endpoint command */
2781 ret = xhci_cancel_cmd(xhci, command, cmd_trb);
2782 if (ret < 0)
2783 return ret;
f2217e8e
SS
2784 return -ETIME;
2785 }
2786
2787 if (!ctx_change)
2cf95c18
SS
2788 ret = xhci_configure_endpoint_result(xhci, udev, cmd_status);
2789 else
2790 ret = xhci_evaluate_context_result(xhci, udev, cmd_status);
2791
2792 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
2793 spin_lock_irqsave(&xhci->lock, flags);
2794 /* If the command failed, remove the reserved resources.
2795 * Otherwise, clean up the estimate to include dropped eps.
2796 */
2797 if (ret)
2798 xhci_free_host_resources(xhci, in_ctx);
2799 else
2800 xhci_finish_resource_reservation(xhci, in_ctx);
2801 spin_unlock_irqrestore(&xhci->lock, flags);
2802 }
2803 return ret;
f2217e8e
SS
2804}
2805
f88ba78d
SS
2806/* Called after one or more calls to xhci_add_endpoint() or
2807 * xhci_drop_endpoint(). If this call fails, the USB core is expected
2808 * to call xhci_reset_bandwidth().
2809 *
2810 * Since we are in the middle of changing either configuration or
2811 * installing a new alt setting, the USB core won't allow URBs to be
2812 * enqueued for any endpoint on the old config or interface. Nothing
2813 * else should be touching the xhci->devs[slot_id] structure, so we
2814 * don't need to take the xhci->lock for manipulating that.
2815 */
f94e0186
SS
2816int xhci_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
2817{
2818 int i;
2819 int ret = 0;
f94e0186
SS
2820 struct xhci_hcd *xhci;
2821 struct xhci_virt_device *virt_dev;
d115b048
JY
2822 struct xhci_input_control_ctx *ctrl_ctx;
2823 struct xhci_slot_ctx *slot_ctx;
f94e0186 2824
64927730 2825 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
f94e0186
SS
2826 if (ret <= 0)
2827 return ret;
2828 xhci = hcd_to_xhci(hcd);
fe6c6c13
SS
2829 if (xhci->xhc_state & XHCI_STATE_DYING)
2830 return -ENODEV;
f94e0186 2831
700e2052 2832 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
f94e0186
SS
2833 virt_dev = xhci->devs[udev->slot_id];
2834
2835 /* See section 4.6.6 - A0 = 1; A1 = D0 = D1 = 0 */
d115b048 2836 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
28ccd296
ME
2837 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
2838 ctrl_ctx->add_flags &= cpu_to_le32(~EP0_FLAG);
2839 ctrl_ctx->drop_flags &= cpu_to_le32(~(SLOT_FLAG | EP0_FLAG));
2dc37539
SS
2840
2841 /* Don't issue the command if there's no endpoints to update. */
2842 if (ctrl_ctx->add_flags == cpu_to_le32(SLOT_FLAG) &&
2843 ctrl_ctx->drop_flags == 0)
2844 return 0;
2845
f94e0186 2846 xhci_dbg(xhci, "New Input Control Context:\n");
d115b048
JY
2847 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
2848 xhci_dbg_ctx(xhci, virt_dev->in_ctx,
28ccd296 2849 LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info)));
f94e0186 2850
913a8a34
SS
2851 ret = xhci_configure_endpoint(xhci, udev, NULL,
2852 false, false);
f94e0186
SS
2853 if (ret) {
2854 /* Callee should call reset_bandwidth() */
f94e0186
SS
2855 return ret;
2856 }
2857
2858 xhci_dbg(xhci, "Output context after successful config ep cmd:\n");
d115b048 2859 xhci_dbg_ctx(xhci, virt_dev->out_ctx,
28ccd296 2860 LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info)));
f94e0186 2861
834cb0fc
SS
2862 /* Free any rings that were dropped, but not changed. */
2863 for (i = 1; i < 31; ++i) {
4819fef5
ME
2864 if ((le32_to_cpu(ctrl_ctx->drop_flags) & (1 << (i + 1))) &&
2865 !(le32_to_cpu(ctrl_ctx->add_flags) & (1 << (i + 1))))
834cb0fc
SS
2866 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
2867 }
d115b048 2868 xhci_zero_in_ctx(xhci, virt_dev);
834cb0fc
SS
2869 /*
2870 * Install any rings for completely new endpoints or changed endpoints,
2871 * and free or cache any old rings from changed endpoints.
2872 */
f94e0186 2873 for (i = 1; i < 31; ++i) {
74f9fe21
SS
2874 if (!virt_dev->eps[i].new_ring)
2875 continue;
2876 /* Only cache or free the old ring if it exists.
2877 * It may not if this is the first add of an endpoint.
2878 */
2879 if (virt_dev->eps[i].ring) {
412566bd 2880 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
f94e0186 2881 }
74f9fe21
SS
2882 virt_dev->eps[i].ring = virt_dev->eps[i].new_ring;
2883 virt_dev->eps[i].new_ring = NULL;
f94e0186
SS
2884 }
2885
f94e0186
SS
2886 return ret;
2887}
2888
2889void xhci_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
2890{
f94e0186
SS
2891 struct xhci_hcd *xhci;
2892 struct xhci_virt_device *virt_dev;
2893 int i, ret;
2894
64927730 2895 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
f94e0186
SS
2896 if (ret <= 0)
2897 return;
2898 xhci = hcd_to_xhci(hcd);
2899
700e2052 2900 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
f94e0186
SS
2901 virt_dev = xhci->devs[udev->slot_id];
2902 /* Free any rings allocated for added endpoints */
2903 for (i = 0; i < 31; ++i) {
63a0d9ab
SS
2904 if (virt_dev->eps[i].new_ring) {
2905 xhci_ring_free(xhci, virt_dev->eps[i].new_ring);
2906 virt_dev->eps[i].new_ring = NULL;
f94e0186
SS
2907 }
2908 }
d115b048 2909 xhci_zero_in_ctx(xhci, virt_dev);
f94e0186
SS
2910}
2911
5270b951 2912static void xhci_setup_input_ctx_for_config_ep(struct xhci_hcd *xhci,
913a8a34
SS
2913 struct xhci_container_ctx *in_ctx,
2914 struct xhci_container_ctx *out_ctx,
2915 u32 add_flags, u32 drop_flags)
5270b951
SS
2916{
2917 struct xhci_input_control_ctx *ctrl_ctx;
913a8a34 2918 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
28ccd296
ME
2919 ctrl_ctx->add_flags = cpu_to_le32(add_flags);
2920 ctrl_ctx->drop_flags = cpu_to_le32(drop_flags);
913a8a34 2921 xhci_slot_copy(xhci, in_ctx, out_ctx);
28ccd296 2922 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
5270b951 2923
913a8a34
SS
2924 xhci_dbg(xhci, "Input Context:\n");
2925 xhci_dbg_ctx(xhci, in_ctx, xhci_last_valid_endpoint(add_flags));
5270b951
SS
2926}
2927
8212a49d 2928static void xhci_setup_input_ctx_for_quirk(struct xhci_hcd *xhci,
ac9d8fe7
SS
2929 unsigned int slot_id, unsigned int ep_index,
2930 struct xhci_dequeue_state *deq_state)
2931{
2932 struct xhci_container_ctx *in_ctx;
ac9d8fe7
SS
2933 struct xhci_ep_ctx *ep_ctx;
2934 u32 added_ctxs;
2935 dma_addr_t addr;
2936
913a8a34
SS
2937 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
2938 xhci->devs[slot_id]->out_ctx, ep_index);
ac9d8fe7
SS
2939 in_ctx = xhci->devs[slot_id]->in_ctx;
2940 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
2941 addr = xhci_trb_virt_to_dma(deq_state->new_deq_seg,
2942 deq_state->new_deq_ptr);
2943 if (addr == 0) {
2944 xhci_warn(xhci, "WARN Cannot submit config ep after "
2945 "reset ep command\n");
2946 xhci_warn(xhci, "WARN deq seg = %p, deq ptr = %p\n",
2947 deq_state->new_deq_seg,
2948 deq_state->new_deq_ptr);
2949 return;
2950 }
28ccd296 2951 ep_ctx->deq = cpu_to_le64(addr | deq_state->new_cycle_state);
ac9d8fe7 2952
ac9d8fe7 2953 added_ctxs = xhci_get_endpoint_flag_from_index(ep_index);
913a8a34
SS
2954 xhci_setup_input_ctx_for_config_ep(xhci, xhci->devs[slot_id]->in_ctx,
2955 xhci->devs[slot_id]->out_ctx, added_ctxs, added_ctxs);
ac9d8fe7
SS
2956}
2957
82d1009f 2958void xhci_cleanup_stalled_ring(struct xhci_hcd *xhci,
63a0d9ab 2959 struct usb_device *udev, unsigned int ep_index)
82d1009f
SS
2960{
2961 struct xhci_dequeue_state deq_state;
63a0d9ab 2962 struct xhci_virt_ep *ep;
82d1009f
SS
2963
2964 xhci_dbg(xhci, "Cleaning up stalled endpoint ring\n");
63a0d9ab 2965 ep = &xhci->devs[udev->slot_id]->eps[ep_index];
82d1009f
SS
2966 /* We need to move the HW's dequeue pointer past this TD,
2967 * or it will attempt to resend it on the next doorbell ring.
2968 */
2969 xhci_find_new_dequeue_state(xhci, udev->slot_id,
e9df17eb 2970 ep_index, ep->stopped_stream, ep->stopped_td,
ac9d8fe7 2971 &deq_state);
82d1009f 2972
ac9d8fe7
SS
2973 /* HW with the reset endpoint quirk will use the saved dequeue state to
2974 * issue a configure endpoint command later.
2975 */
2976 if (!(xhci->quirks & XHCI_RESET_EP_QUIRK)) {
2977 xhci_dbg(xhci, "Queueing new dequeue state\n");
63a0d9ab 2978 xhci_queue_new_dequeue_state(xhci, udev->slot_id,
e9df17eb 2979 ep_index, ep->stopped_stream, &deq_state);
ac9d8fe7
SS
2980 } else {
2981 /* Better hope no one uses the input context between now and the
2982 * reset endpoint completion!
e9df17eb
SS
2983 * XXX: No idea how this hardware will react when stream rings
2984 * are enabled.
ac9d8fe7
SS
2985 */
2986 xhci_dbg(xhci, "Setting up input context for "
2987 "configure endpoint command\n");
2988 xhci_setup_input_ctx_for_quirk(xhci, udev->slot_id,
2989 ep_index, &deq_state);
2990 }
82d1009f
SS
2991}
2992
a1587d97
SS
2993/* Deal with stalled endpoints. The core should have sent the control message
2994 * to clear the halt condition. However, we need to make the xHCI hardware
2995 * reset its sequence number, since a device will expect a sequence number of
2996 * zero after the halt condition is cleared.
2997 * Context: in_interrupt
2998 */
2999void xhci_endpoint_reset(struct usb_hcd *hcd,
3000 struct usb_host_endpoint *ep)
3001{
3002 struct xhci_hcd *xhci;
3003 struct usb_device *udev;
3004 unsigned int ep_index;
3005 unsigned long flags;
3006 int ret;
63a0d9ab 3007 struct xhci_virt_ep *virt_ep;
a1587d97
SS
3008
3009 xhci = hcd_to_xhci(hcd);
3010 udev = (struct usb_device *) ep->hcpriv;
3011 /* Called with a root hub endpoint (or an endpoint that wasn't added
3012 * with xhci_add_endpoint()
3013 */
3014 if (!ep->hcpriv)
3015 return;
3016 ep_index = xhci_get_endpoint_index(&ep->desc);
63a0d9ab
SS
3017 virt_ep = &xhci->devs[udev->slot_id]->eps[ep_index];
3018 if (!virt_ep->stopped_td) {
c92bcfa7
SS
3019 xhci_dbg(xhci, "Endpoint 0x%x not halted, refusing to reset.\n",
3020 ep->desc.bEndpointAddress);
3021 return;
3022 }
82d1009f
SS
3023 if (usb_endpoint_xfer_control(&ep->desc)) {
3024 xhci_dbg(xhci, "Control endpoint stall already handled.\n");
3025 return;
3026 }
a1587d97
SS
3027
3028 xhci_dbg(xhci, "Queueing reset endpoint command\n");
3029 spin_lock_irqsave(&xhci->lock, flags);
3030 ret = xhci_queue_reset_ep(xhci, udev->slot_id, ep_index);
c92bcfa7
SS
3031 /*
3032 * Can't change the ring dequeue pointer until it's transitioned to the
3033 * stopped state, which is only upon a successful reset endpoint
3034 * command. Better hope that last command worked!
3035 */
a1587d97 3036 if (!ret) {
63a0d9ab
SS
3037 xhci_cleanup_stalled_ring(xhci, udev, ep_index);
3038 kfree(virt_ep->stopped_td);
a1587d97
SS
3039 xhci_ring_cmd_db(xhci);
3040 }
1624ae1c
SS
3041 virt_ep->stopped_td = NULL;
3042 virt_ep->stopped_trb = NULL;
5e5cf6fc 3043 virt_ep->stopped_stream = 0;
a1587d97
SS
3044 spin_unlock_irqrestore(&xhci->lock, flags);
3045
3046 if (ret)
3047 xhci_warn(xhci, "FIXME allocate a new ring segment\n");
3048}
3049
8df75f42
SS
3050static int xhci_check_streams_endpoint(struct xhci_hcd *xhci,
3051 struct usb_device *udev, struct usb_host_endpoint *ep,
3052 unsigned int slot_id)
3053{
3054 int ret;
3055 unsigned int ep_index;
3056 unsigned int ep_state;
3057
3058 if (!ep)
3059 return -EINVAL;
64927730 3060 ret = xhci_check_args(xhci_to_hcd(xhci), udev, ep, 1, true, __func__);
8df75f42
SS
3061 if (ret <= 0)
3062 return -EINVAL;
842f1690 3063 if (ep->ss_ep_comp.bmAttributes == 0) {
8df75f42
SS
3064 xhci_warn(xhci, "WARN: SuperSpeed Endpoint Companion"
3065 " descriptor for ep 0x%x does not support streams\n",
3066 ep->desc.bEndpointAddress);
3067 return -EINVAL;
3068 }
3069
3070 ep_index = xhci_get_endpoint_index(&ep->desc);
3071 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
3072 if (ep_state & EP_HAS_STREAMS ||
3073 ep_state & EP_GETTING_STREAMS) {
3074 xhci_warn(xhci, "WARN: SuperSpeed bulk endpoint 0x%x "
3075 "already has streams set up.\n",
3076 ep->desc.bEndpointAddress);
3077 xhci_warn(xhci, "Send email to xHCI maintainer and ask for "
3078 "dynamic stream context array reallocation.\n");
3079 return -EINVAL;
3080 }
3081 if (!list_empty(&xhci->devs[slot_id]->eps[ep_index].ring->td_list)) {
3082 xhci_warn(xhci, "Cannot setup streams for SuperSpeed bulk "
3083 "endpoint 0x%x; URBs are pending.\n",
3084 ep->desc.bEndpointAddress);
3085 return -EINVAL;
3086 }
3087 return 0;
3088}
3089
3090static void xhci_calculate_streams_entries(struct xhci_hcd *xhci,
3091 unsigned int *num_streams, unsigned int *num_stream_ctxs)
3092{
3093 unsigned int max_streams;
3094
3095 /* The stream context array size must be a power of two */
3096 *num_stream_ctxs = roundup_pow_of_two(*num_streams);
3097 /*
3098 * Find out how many primary stream array entries the host controller
3099 * supports. Later we may use secondary stream arrays (similar to 2nd
3100 * level page entries), but that's an optional feature for xHCI host
3101 * controllers. xHCs must support at least 4 stream IDs.
3102 */
3103 max_streams = HCC_MAX_PSA(xhci->hcc_params);
3104 if (*num_stream_ctxs > max_streams) {
3105 xhci_dbg(xhci, "xHCI HW only supports %u stream ctx entries.\n",
3106 max_streams);
3107 *num_stream_ctxs = max_streams;
3108 *num_streams = max_streams;
3109 }
3110}
3111
3112/* Returns an error code if one of the endpoint already has streams.
3113 * This does not change any data structures, it only checks and gathers
3114 * information.
3115 */
3116static int xhci_calculate_streams_and_bitmask(struct xhci_hcd *xhci,
3117 struct usb_device *udev,
3118 struct usb_host_endpoint **eps, unsigned int num_eps,
3119 unsigned int *num_streams, u32 *changed_ep_bitmask)
3120{
8df75f42
SS
3121 unsigned int max_streams;
3122 unsigned int endpoint_flag;
3123 int i;
3124 int ret;
3125
3126 for (i = 0; i < num_eps; i++) {
3127 ret = xhci_check_streams_endpoint(xhci, udev,
3128 eps[i], udev->slot_id);
3129 if (ret < 0)
3130 return ret;
3131
18b7ede5 3132 max_streams = usb_ss_max_streams(&eps[i]->ss_ep_comp);
8df75f42
SS
3133 if (max_streams < (*num_streams - 1)) {
3134 xhci_dbg(xhci, "Ep 0x%x only supports %u stream IDs.\n",
3135 eps[i]->desc.bEndpointAddress,
3136 max_streams);
3137 *num_streams = max_streams+1;
3138 }
3139
3140 endpoint_flag = xhci_get_endpoint_flag(&eps[i]->desc);
3141 if (*changed_ep_bitmask & endpoint_flag)
3142 return -EINVAL;
3143 *changed_ep_bitmask |= endpoint_flag;
3144 }
3145 return 0;
3146}
3147
3148static u32 xhci_calculate_no_streams_bitmask(struct xhci_hcd *xhci,
3149 struct usb_device *udev,
3150 struct usb_host_endpoint **eps, unsigned int num_eps)
3151{
3152 u32 changed_ep_bitmask = 0;
3153 unsigned int slot_id;
3154 unsigned int ep_index;
3155 unsigned int ep_state;
3156 int i;
3157
3158 slot_id = udev->slot_id;
3159 if (!xhci->devs[slot_id])
3160 return 0;
3161
3162 for (i = 0; i < num_eps; i++) {
3163 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3164 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
3165 /* Are streams already being freed for the endpoint? */
3166 if (ep_state & EP_GETTING_NO_STREAMS) {
3167 xhci_warn(xhci, "WARN Can't disable streams for "
3168 "endpoint 0x%x\n, "
3169 "streams are being disabled already.",
3170 eps[i]->desc.bEndpointAddress);
3171 return 0;
3172 }
3173 /* Are there actually any streams to free? */
3174 if (!(ep_state & EP_HAS_STREAMS) &&
3175 !(ep_state & EP_GETTING_STREAMS)) {
3176 xhci_warn(xhci, "WARN Can't disable streams for "
3177 "endpoint 0x%x\n, "
3178 "streams are already disabled!",
3179 eps[i]->desc.bEndpointAddress);
3180 xhci_warn(xhci, "WARN xhci_free_streams() called "
3181 "with non-streams endpoint\n");
3182 return 0;
3183 }
3184 changed_ep_bitmask |= xhci_get_endpoint_flag(&eps[i]->desc);
3185 }
3186 return changed_ep_bitmask;
3187}
3188
3189/*
3190 * The USB device drivers use this function (though the HCD interface in USB
3191 * core) to prepare a set of bulk endpoints to use streams. Streams are used to
3192 * coordinate mass storage command queueing across multiple endpoints (basically
3193 * a stream ID == a task ID).
3194 *
3195 * Setting up streams involves allocating the same size stream context array
3196 * for each endpoint and issuing a configure endpoint command for all endpoints.
3197 *
3198 * Don't allow the call to succeed if one endpoint only supports one stream
3199 * (which means it doesn't support streams at all).
3200 *
3201 * Drivers may get less stream IDs than they asked for, if the host controller
3202 * hardware or endpoints claim they can't support the number of requested
3203 * stream IDs.
3204 */
3205int xhci_alloc_streams(struct usb_hcd *hcd, struct usb_device *udev,
3206 struct usb_host_endpoint **eps, unsigned int num_eps,
3207 unsigned int num_streams, gfp_t mem_flags)
3208{
3209 int i, ret;
3210 struct xhci_hcd *xhci;
3211 struct xhci_virt_device *vdev;
3212 struct xhci_command *config_cmd;
3213 unsigned int ep_index;
3214 unsigned int num_stream_ctxs;
3215 unsigned long flags;
3216 u32 changed_ep_bitmask = 0;
3217
3218 if (!eps)
3219 return -EINVAL;
3220
3221 /* Add one to the number of streams requested to account for
3222 * stream 0 that is reserved for xHCI usage.
3223 */
3224 num_streams += 1;
3225 xhci = hcd_to_xhci(hcd);
3226 xhci_dbg(xhci, "Driver wants %u stream IDs (including stream 0).\n",
3227 num_streams);
3228
3229 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
3230 if (!config_cmd) {
3231 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
3232 return -ENOMEM;
3233 }
3234
3235 /* Check to make sure all endpoints are not already configured for
3236 * streams. While we're at it, find the maximum number of streams that
3237 * all the endpoints will support and check for duplicate endpoints.
3238 */
3239 spin_lock_irqsave(&xhci->lock, flags);
3240 ret = xhci_calculate_streams_and_bitmask(xhci, udev, eps,
3241 num_eps, &num_streams, &changed_ep_bitmask);
3242 if (ret < 0) {
3243 xhci_free_command(xhci, config_cmd);
3244 spin_unlock_irqrestore(&xhci->lock, flags);
3245 return ret;
3246 }
3247 if (num_streams <= 1) {
3248 xhci_warn(xhci, "WARN: endpoints can't handle "
3249 "more than one stream.\n");
3250 xhci_free_command(xhci, config_cmd);
3251 spin_unlock_irqrestore(&xhci->lock, flags);
3252 return -EINVAL;
3253 }
3254 vdev = xhci->devs[udev->slot_id];
25985edc 3255 /* Mark each endpoint as being in transition, so
8df75f42
SS
3256 * xhci_urb_enqueue() will reject all URBs.
3257 */
3258 for (i = 0; i < num_eps; i++) {
3259 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3260 vdev->eps[ep_index].ep_state |= EP_GETTING_STREAMS;
3261 }
3262 spin_unlock_irqrestore(&xhci->lock, flags);
3263
3264 /* Setup internal data structures and allocate HW data structures for
3265 * streams (but don't install the HW structures in the input context
3266 * until we're sure all memory allocation succeeded).
3267 */
3268 xhci_calculate_streams_entries(xhci, &num_streams, &num_stream_ctxs);
3269 xhci_dbg(xhci, "Need %u stream ctx entries for %u stream IDs.\n",
3270 num_stream_ctxs, num_streams);
3271
3272 for (i = 0; i < num_eps; i++) {
3273 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3274 vdev->eps[ep_index].stream_info = xhci_alloc_stream_info(xhci,
3275 num_stream_ctxs,
3276 num_streams, mem_flags);
3277 if (!vdev->eps[ep_index].stream_info)
3278 goto cleanup;
3279 /* Set maxPstreams in endpoint context and update deq ptr to
3280 * point to stream context array. FIXME
3281 */
3282 }
3283
3284 /* Set up the input context for a configure endpoint command. */
3285 for (i = 0; i < num_eps; i++) {
3286 struct xhci_ep_ctx *ep_ctx;
3287
3288 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3289 ep_ctx = xhci_get_ep_ctx(xhci, config_cmd->in_ctx, ep_index);
3290
3291 xhci_endpoint_copy(xhci, config_cmd->in_ctx,
3292 vdev->out_ctx, ep_index);
3293 xhci_setup_streams_ep_input_ctx(xhci, ep_ctx,
3294 vdev->eps[ep_index].stream_info);
3295 }
3296 /* Tell the HW to drop its old copy of the endpoint context info
3297 * and add the updated copy from the input context.
3298 */
3299 xhci_setup_input_ctx_for_config_ep(xhci, config_cmd->in_ctx,
3300 vdev->out_ctx, changed_ep_bitmask, changed_ep_bitmask);
3301
3302 /* Issue and wait for the configure endpoint command */
3303 ret = xhci_configure_endpoint(xhci, udev, config_cmd,
3304 false, false);
3305
3306 /* xHC rejected the configure endpoint command for some reason, so we
3307 * leave the old ring intact and free our internal streams data
3308 * structure.
3309 */
3310 if (ret < 0)
3311 goto cleanup;
3312
3313 spin_lock_irqsave(&xhci->lock, flags);
3314 for (i = 0; i < num_eps; i++) {
3315 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3316 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3317 xhci_dbg(xhci, "Slot %u ep ctx %u now has streams.\n",
3318 udev->slot_id, ep_index);
3319 vdev->eps[ep_index].ep_state |= EP_HAS_STREAMS;
3320 }
3321 xhci_free_command(xhci, config_cmd);
3322 spin_unlock_irqrestore(&xhci->lock, flags);
3323
3324 /* Subtract 1 for stream 0, which drivers can't use */
3325 return num_streams - 1;
3326
3327cleanup:
3328 /* If it didn't work, free the streams! */
3329 for (i = 0; i < num_eps; i++) {
3330 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3331 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
8a007748 3332 vdev->eps[ep_index].stream_info = NULL;
8df75f42
SS
3333 /* FIXME Unset maxPstreams in endpoint context and
3334 * update deq ptr to point to normal string ring.
3335 */
3336 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3337 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3338 xhci_endpoint_zero(xhci, vdev, eps[i]);
3339 }
3340 xhci_free_command(xhci, config_cmd);
3341 return -ENOMEM;
3342}
3343
3344/* Transition the endpoint from using streams to being a "normal" endpoint
3345 * without streams.
3346 *
3347 * Modify the endpoint context state, submit a configure endpoint command,
3348 * and free all endpoint rings for streams if that completes successfully.
3349 */
3350int xhci_free_streams(struct usb_hcd *hcd, struct usb_device *udev,
3351 struct usb_host_endpoint **eps, unsigned int num_eps,
3352 gfp_t mem_flags)
3353{
3354 int i, ret;
3355 struct xhci_hcd *xhci;
3356 struct xhci_virt_device *vdev;
3357 struct xhci_command *command;
3358 unsigned int ep_index;
3359 unsigned long flags;
3360 u32 changed_ep_bitmask;
3361
3362 xhci = hcd_to_xhci(hcd);
3363 vdev = xhci->devs[udev->slot_id];
3364
3365 /* Set up a configure endpoint command to remove the streams rings */
3366 spin_lock_irqsave(&xhci->lock, flags);
3367 changed_ep_bitmask = xhci_calculate_no_streams_bitmask(xhci,
3368 udev, eps, num_eps);
3369 if (changed_ep_bitmask == 0) {
3370 spin_unlock_irqrestore(&xhci->lock, flags);
3371 return -EINVAL;
3372 }
3373
3374 /* Use the xhci_command structure from the first endpoint. We may have
3375 * allocated too many, but the driver may call xhci_free_streams() for
3376 * each endpoint it grouped into one call to xhci_alloc_streams().
3377 */
3378 ep_index = xhci_get_endpoint_index(&eps[0]->desc);
3379 command = vdev->eps[ep_index].stream_info->free_streams_command;
3380 for (i = 0; i < num_eps; i++) {
3381 struct xhci_ep_ctx *ep_ctx;
3382
3383 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3384 ep_ctx = xhci_get_ep_ctx(xhci, command->in_ctx, ep_index);
3385 xhci->devs[udev->slot_id]->eps[ep_index].ep_state |=
3386 EP_GETTING_NO_STREAMS;
3387
3388 xhci_endpoint_copy(xhci, command->in_ctx,
3389 vdev->out_ctx, ep_index);
3390 xhci_setup_no_streams_ep_input_ctx(xhci, ep_ctx,
3391 &vdev->eps[ep_index]);
3392 }
3393 xhci_setup_input_ctx_for_config_ep(xhci, command->in_ctx,
3394 vdev->out_ctx, changed_ep_bitmask, changed_ep_bitmask);
3395 spin_unlock_irqrestore(&xhci->lock, flags);
3396
3397 /* Issue and wait for the configure endpoint command,
3398 * which must succeed.
3399 */
3400 ret = xhci_configure_endpoint(xhci, udev, command,
3401 false, true);
3402
3403 /* xHC rejected the configure endpoint command for some reason, so we
3404 * leave the streams rings intact.
3405 */
3406 if (ret < 0)
3407 return ret;
3408
3409 spin_lock_irqsave(&xhci->lock, flags);
3410 for (i = 0; i < num_eps; i++) {
3411 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3412 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
8a007748 3413 vdev->eps[ep_index].stream_info = NULL;
8df75f42
SS
3414 /* FIXME Unset maxPstreams in endpoint context and
3415 * update deq ptr to point to normal string ring.
3416 */
3417 vdev->eps[ep_index].ep_state &= ~EP_GETTING_NO_STREAMS;
3418 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3419 }
3420 spin_unlock_irqrestore(&xhci->lock, flags);
3421
3422 return 0;
3423}
3424
2cf95c18
SS
3425/*
3426 * Deletes endpoint resources for endpoints that were active before a Reset
3427 * Device command, or a Disable Slot command. The Reset Device command leaves
3428 * the control endpoint intact, whereas the Disable Slot command deletes it.
3429 *
3430 * Must be called with xhci->lock held.
3431 */
3432void xhci_free_device_endpoint_resources(struct xhci_hcd *xhci,
3433 struct xhci_virt_device *virt_dev, bool drop_control_ep)
3434{
3435 int i;
3436 unsigned int num_dropped_eps = 0;
3437 unsigned int drop_flags = 0;
3438
3439 for (i = (drop_control_ep ? 0 : 1); i < 31; i++) {
3440 if (virt_dev->eps[i].ring) {
3441 drop_flags |= 1 << i;
3442 num_dropped_eps++;
3443 }
3444 }
3445 xhci->num_active_eps -= num_dropped_eps;
3446 if (num_dropped_eps)
3447 xhci_dbg(xhci, "Dropped %u ep ctxs, flags = 0x%x, "
3448 "%u now active.\n",
3449 num_dropped_eps, drop_flags,
3450 xhci->num_active_eps);
3451}
3452
2a8f82c4
SS
3453/*
3454 * This submits a Reset Device Command, which will set the device state to 0,
3455 * set the device address to 0, and disable all the endpoints except the default
3456 * control endpoint. The USB core should come back and call
3457 * xhci_address_device(), and then re-set up the configuration. If this is
3458 * called because of a usb_reset_and_verify_device(), then the old alternate
3459 * settings will be re-installed through the normal bandwidth allocation
3460 * functions.
3461 *
3462 * Wait for the Reset Device command to finish. Remove all structures
3463 * associated with the endpoints that were disabled. Clear the input device
3464 * structure? Cache the rings? Reset the control endpoint 0 max packet size?
f0615c45
AX
3465 *
3466 * If the virt_dev to be reset does not exist or does not match the udev,
3467 * it means the device is lost, possibly due to the xHC restore error and
3468 * re-initialization during S3/S4. In this case, call xhci_alloc_dev() to
3469 * re-allocate the device.
2a8f82c4 3470 */
f0615c45 3471int xhci_discover_or_reset_device(struct usb_hcd *hcd, struct usb_device *udev)
2a8f82c4
SS
3472{
3473 int ret, i;
3474 unsigned long flags;
3475 struct xhci_hcd *xhci;
3476 unsigned int slot_id;
3477 struct xhci_virt_device *virt_dev;
3478 struct xhci_command *reset_device_cmd;
3479 int timeleft;
3480 int last_freed_endpoint;
001fd382 3481 struct xhci_slot_ctx *slot_ctx;
2e27980e 3482 int old_active_eps = 0;
2a8f82c4 3483
f0615c45 3484 ret = xhci_check_args(hcd, udev, NULL, 0, false, __func__);
2a8f82c4
SS
3485 if (ret <= 0)
3486 return ret;
3487 xhci = hcd_to_xhci(hcd);
3488 slot_id = udev->slot_id;
3489 virt_dev = xhci->devs[slot_id];
f0615c45
AX
3490 if (!virt_dev) {
3491 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3492 "not exist. Re-allocate the device\n", slot_id);
3493 ret = xhci_alloc_dev(hcd, udev);
3494 if (ret == 1)
3495 return 0;
3496 else
3497 return -EINVAL;
3498 }
3499
7e74269b
BC
3500 if (virt_dev->tt_info)
3501 old_active_eps = virt_dev->tt_info->active_eps;
3502
f0615c45
AX
3503 if (virt_dev->udev != udev) {
3504 /* If the virt_dev and the udev does not match, this virt_dev
3505 * may belong to another udev.
3506 * Re-allocate the device.
3507 */
3508 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3509 "not match the udev. Re-allocate the device\n",
3510 slot_id);
3511 ret = xhci_alloc_dev(hcd, udev);
3512 if (ret == 1)
3513 return 0;
3514 else
3515 return -EINVAL;
3516 }
2a8f82c4 3517
001fd382
ML
3518 /* If device is not setup, there is no point in resetting it */
3519 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
3520 if (GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state)) ==
3521 SLOT_STATE_DISABLED)
3522 return 0;
3523
2a8f82c4
SS
3524 xhci_dbg(xhci, "Resetting device with slot ID %u\n", slot_id);
3525 /* Allocate the command structure that holds the struct completion.
3526 * Assume we're in process context, since the normal device reset
3527 * process has to wait for the device anyway. Storage devices are
3528 * reset as part of error handling, so use GFP_NOIO instead of
3529 * GFP_KERNEL.
3530 */
3531 reset_device_cmd = xhci_alloc_command(xhci, false, true, GFP_NOIO);
3532 if (!reset_device_cmd) {
3533 xhci_dbg(xhci, "Couldn't allocate command structure.\n");
3534 return -ENOMEM;
3535 }
3536
3537 /* Attempt to submit the Reset Device command to the command ring */
3538 spin_lock_irqsave(&xhci->lock, flags);
57ad7768 3539 reset_device_cmd->command_trb = xhci_find_next_enqueue(xhci->cmd_ring);
7a3783ef 3540
2a8f82c4
SS
3541 list_add_tail(&reset_device_cmd->cmd_list, &virt_dev->cmd_list);
3542 ret = xhci_queue_reset_device(xhci, slot_id);
3543 if (ret) {
3544 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3545 list_del(&reset_device_cmd->cmd_list);
3546 spin_unlock_irqrestore(&xhci->lock, flags);
3547 goto command_cleanup;
3548 }
3549 xhci_ring_cmd_db(xhci);
3550 spin_unlock_irqrestore(&xhci->lock, flags);
3551
3552 /* Wait for the Reset Device command to finish */
3553 timeleft = wait_for_completion_interruptible_timeout(
3554 reset_device_cmd->completion,
3555 USB_CTRL_SET_TIMEOUT);
3556 if (timeleft <= 0) {
3557 xhci_warn(xhci, "%s while waiting for reset device command\n",
3558 timeleft == 0 ? "Timeout" : "Signal");
3559 spin_lock_irqsave(&xhci->lock, flags);
3560 /* The timeout might have raced with the event ring handler, so
3561 * only delete from the list if the item isn't poisoned.
3562 */
3563 if (reset_device_cmd->cmd_list.next != LIST_POISON1)
3564 list_del(&reset_device_cmd->cmd_list);
3565 spin_unlock_irqrestore(&xhci->lock, flags);
3566 ret = -ETIME;
3567 goto command_cleanup;
3568 }
3569
3570 /* The Reset Device command can't fail, according to the 0.95/0.96 spec,
3571 * unless we tried to reset a slot ID that wasn't enabled,
3572 * or the device wasn't in the addressed or configured state.
3573 */
3574 ret = reset_device_cmd->status;
3575 switch (ret) {
3576 case COMP_EBADSLT: /* 0.95 completion code for bad slot ID */
3577 case COMP_CTX_STATE: /* 0.96 completion code for same thing */
3578 xhci_info(xhci, "Can't reset device (slot ID %u) in %s state\n",
3579 slot_id,
3580 xhci_get_slot_state(xhci, virt_dev->out_ctx));
3581 xhci_info(xhci, "Not freeing device rings.\n");
3582 /* Don't treat this as an error. May change my mind later. */
3583 ret = 0;
3584 goto command_cleanup;
3585 case COMP_SUCCESS:
3586 xhci_dbg(xhci, "Successful reset device command.\n");
3587 break;
3588 default:
3589 if (xhci_is_vendor_info_code(xhci, ret))
3590 break;
3591 xhci_warn(xhci, "Unknown completion code %u for "
3592 "reset device command.\n", ret);
3593 ret = -EINVAL;
3594 goto command_cleanup;
3595 }
3596
2cf95c18
SS
3597 /* Free up host controller endpoint resources */
3598 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3599 spin_lock_irqsave(&xhci->lock, flags);
3600 /* Don't delete the default control endpoint resources */
3601 xhci_free_device_endpoint_resources(xhci, virt_dev, false);
3602 spin_unlock_irqrestore(&xhci->lock, flags);
3603 }
3604
2a8f82c4
SS
3605 /* Everything but endpoint 0 is disabled, so free or cache the rings. */
3606 last_freed_endpoint = 1;
3607 for (i = 1; i < 31; ++i) {
2dea75d9
DT
3608 struct xhci_virt_ep *ep = &virt_dev->eps[i];
3609
3610 if (ep->ep_state & EP_HAS_STREAMS) {
3611 xhci_free_stream_info(xhci, ep->stream_info);
3612 ep->stream_info = NULL;
3613 ep->ep_state &= ~EP_HAS_STREAMS;
3614 }
3615
3616 if (ep->ring) {
3617 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
3618 last_freed_endpoint = i;
3619 }
2e27980e
SS
3620 if (!list_empty(&virt_dev->eps[i].bw_endpoint_list))
3621 xhci_drop_ep_from_interval_table(xhci,
3622 &virt_dev->eps[i].bw_info,
3623 virt_dev->bw_table,
3624 udev,
3625 &virt_dev->eps[i],
3626 virt_dev->tt_info);
9af5d71d 3627 xhci_clear_endpoint_bw_info(&virt_dev->eps[i].bw_info);
2a8f82c4 3628 }
2e27980e
SS
3629 /* If necessary, update the number of active TTs on this root port */
3630 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
3631
2a8f82c4
SS
3632 xhci_dbg(xhci, "Output context after successful reset device cmd:\n");
3633 xhci_dbg_ctx(xhci, virt_dev->out_ctx, last_freed_endpoint);
3634 ret = 0;
3635
3636command_cleanup:
3637 xhci_free_command(xhci, reset_device_cmd);
3638 return ret;
3639}
3640
3ffbba95
SS
3641/*
3642 * At this point, the struct usb_device is about to go away, the device has
3643 * disconnected, and all traffic has been stopped and the endpoints have been
3644 * disabled. Free any HC data structures associated with that device.
3645 */
3646void xhci_free_dev(struct usb_hcd *hcd, struct usb_device *udev)
3647{
3648 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
6f5165cf 3649 struct xhci_virt_device *virt_dev;
6fa3eb70 3650#ifndef CONFIG_USB_DEFAULT_PERSIST
54d8c40d 3651 struct device *dev = hcd->self.controller;
6fa3eb70 3652#endif
3ffbba95 3653 unsigned long flags;
c526d0d4 3654 u32 state;
64927730 3655 int i, ret;
3ffbba95 3656
54d8c40d
SN
3657#ifndef CONFIG_USB_DEFAULT_PERSIST
3658 /*
3659 * We called pm_runtime_get_noresume when the device was attached.
3660 * Decrement the counter here to allow controller to runtime suspend
3661 * if no devices remain.
3662 */
3663 if (xhci->quirks & XHCI_RESET_ON_RESUME)
3664 pm_runtime_put_noidle(dev);
3665#endif
3666
64927730 3667 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
7bd89b40
SS
3668 /* If the host is halted due to driver unload, we still need to free the
3669 * device.
3670 */
3671 if (ret <= 0 && ret != -ENODEV)
3ffbba95 3672 return;
64927730 3673
6f5165cf 3674 virt_dev = xhci->devs[udev->slot_id];
6f5165cf
SS
3675
3676 /* Stop any wayward timer functions (which may grab the lock) */
3677 for (i = 0; i < 31; ++i) {
3678 virt_dev->eps[i].ep_state &= ~EP_HALT_PENDING;
3679 del_timer_sync(&virt_dev->eps[i].stop_cmd_timer);
3680 }
3ffbba95 3681
65580b43
AX
3682 if (udev->usb2_hw_lpm_enabled) {
3683 xhci_set_usb2_hardware_lpm(hcd, udev, 0);
3684 udev->usb2_hw_lpm_enabled = 0;
3685 }
3686
3ffbba95 3687 spin_lock_irqsave(&xhci->lock, flags);
c526d0d4
SS
3688 /* Don't disable the slot if the host controller is dead. */
3689 state = xhci_readl(xhci, &xhci->op_regs->status);
7bd89b40
SS
3690 if (state == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING) ||
3691 (xhci->xhc_state & XHCI_STATE_HALTED)) {
c526d0d4
SS
3692 xhci_free_virt_device(xhci, udev->slot_id);
3693 spin_unlock_irqrestore(&xhci->lock, flags);
3694 return;
3695 }
3696
23e3be11 3697 if (xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id)) {
3ffbba95
SS
3698 spin_unlock_irqrestore(&xhci->lock, flags);
3699 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3700 return;
3701 }
23e3be11 3702 xhci_ring_cmd_db(xhci);
3ffbba95
SS
3703 spin_unlock_irqrestore(&xhci->lock, flags);
3704 /*
3705 * Event command completion handler will free any data structures
f88ba78d 3706 * associated with the slot. XXX Can free sleep?
3ffbba95
SS
3707 */
3708}
3709
2cf95c18
SS
3710/*
3711 * Checks if we have enough host controller resources for the default control
3712 * endpoint.
3713 *
3714 * Must be called with xhci->lock held.
3715 */
3716static int xhci_reserve_host_control_ep_resources(struct xhci_hcd *xhci)
3717{
3718 if (xhci->num_active_eps + 1 > xhci->limit_active_eps) {
3719 xhci_dbg(xhci, "Not enough ep ctxs: "
3720 "%u active, need to add 1, limit is %u.\n",
3721 xhci->num_active_eps, xhci->limit_active_eps);
3722 return -ENOMEM;
3723 }
3724 xhci->num_active_eps += 1;
3725 xhci_dbg(xhci, "Adding 1 ep ctx, %u now active.\n",
3726 xhci->num_active_eps);
3727 return 0;
3728}
3729
3730
3ffbba95
SS
3731/*
3732 * Returns 0 if the xHC ran out of device slots, the Enable Slot command
3733 * timed out, or allocating memory failed. Returns 1 on success.
3734 */
3735int xhci_alloc_dev(struct usb_hcd *hcd, struct usb_device *udev)
3736{
3737 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
54d8c40d 3738 struct device *dev = hcd->self.controller;
3ffbba95
SS
3739 unsigned long flags;
3740 int timeleft;
3741 int ret;
6e4468b9 3742 union xhci_trb *cmd_trb;
3ffbba95
SS
3743
3744 spin_lock_irqsave(&xhci->lock, flags);
57ad7768 3745 cmd_trb = xhci_find_next_enqueue(xhci->cmd_ring);
23e3be11 3746 ret = xhci_queue_slot_control(xhci, TRB_ENABLE_SLOT, 0);
3ffbba95
SS
3747 if (ret) {
3748 spin_unlock_irqrestore(&xhci->lock, flags);
3749 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3750 return 0;
3751 }
23e3be11 3752 xhci_ring_cmd_db(xhci);
3ffbba95
SS
3753 spin_unlock_irqrestore(&xhci->lock, flags);
3754
3755 /* XXX: how much time for xHC slot assignment? */
3756 timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev,
6e4468b9 3757 XHCI_CMD_DEFAULT_TIMEOUT);
3ffbba95
SS
3758 if (timeleft <= 0) {
3759 xhci_warn(xhci, "%s while waiting for a slot\n",
3760 timeleft == 0 ? "Timeout" : "Signal");
6e4468b9
EF
3761 /* cancel the enable slot request */
3762 return xhci_cancel_cmd(xhci, NULL, cmd_trb);
3ffbba95
SS
3763 }
3764
3ffbba95
SS
3765 if (!xhci->slot_id) {
3766 xhci_err(xhci, "Error while assigning device slot ID\n");
3ffbba95
SS
3767 return 0;
3768 }
2cf95c18
SS
3769
3770 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3771 spin_lock_irqsave(&xhci->lock, flags);
3772 ret = xhci_reserve_host_control_ep_resources(xhci);
3773 if (ret) {
3774 spin_unlock_irqrestore(&xhci->lock, flags);
3775 xhci_warn(xhci, "Not enough host resources, "
3776 "active endpoint contexts = %u\n",
3777 xhci->num_active_eps);
3778 goto disable_slot;
3779 }
3780 spin_unlock_irqrestore(&xhci->lock, flags);
3781 }
3782 /* Use GFP_NOIO, since this function can be called from
a6d940dd
SS
3783 * xhci_discover_or_reset_device(), which may be called as part of
3784 * mass storage driver error handling.
3785 */
3786 if (!xhci_alloc_virt_device(xhci, xhci->slot_id, udev, GFP_NOIO)) {
3ffbba95 3787 xhci_warn(xhci, "Could not allocate xHCI USB device data structures\n");
2cf95c18 3788 goto disable_slot;
3ffbba95
SS
3789 }
3790 udev->slot_id = xhci->slot_id;
54d8c40d
SN
3791
3792#ifndef CONFIG_USB_DEFAULT_PERSIST
3793 /*
3794 * If resetting upon resume, we can't put the controller into runtime
3795 * suspend if there is a device attached.
3796 */
3797 if (xhci->quirks & XHCI_RESET_ON_RESUME)
3798 pm_runtime_get_noresume(dev);
3799#endif
3800
3ffbba95
SS
3801 /* Is this a LS or FS device under a HS hub? */
3802 /* Hub or peripherial? */
3ffbba95 3803 return 1;
2cf95c18
SS
3804
3805disable_slot:
3806 /* Disable slot, if we can do it without mem alloc */
3807 spin_lock_irqsave(&xhci->lock, flags);
3808 if (!xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id))
3809 xhci_ring_cmd_db(xhci);
3810 spin_unlock_irqrestore(&xhci->lock, flags);
3811 return 0;
3ffbba95
SS
3812}
3813
3814/*
3815 * Issue an Address Device command (which will issue a SetAddress request to
3816 * the device).
3817 * We should be protected by the usb_address0_mutex in khubd's hub_port_init, so
3818 * we should only issue and wait on one address command at the same time.
3819 *
3820 * We add one to the device address issued by the hardware because the USB core
3821 * uses address 1 for the root hubs (even though they're not really devices).
3822 */
3823int xhci_address_device(struct usb_hcd *hcd, struct usb_device *udev)
3824{
3825 unsigned long flags;
3826 int timeleft;
3827 struct xhci_virt_device *virt_dev;
3828 int ret = 0;
3829 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
d115b048
JY
3830 struct xhci_slot_ctx *slot_ctx;
3831 struct xhci_input_control_ctx *ctrl_ctx;
8e595a5d 3832 u64 temp_64;
6e4468b9 3833 union xhci_trb *cmd_trb;
3ffbba95
SS
3834
3835 if (!udev->slot_id) {
3836 xhci_dbg(xhci, "Bad Slot ID %d\n", udev->slot_id);
3837 return -EINVAL;
3838 }
3839
3ffbba95
SS
3840 virt_dev = xhci->devs[udev->slot_id];
3841
7ed603ec
ME
3842 if (WARN_ON(!virt_dev)) {
3843 /*
3844 * In plug/unplug torture test with an NEC controller,
3845 * a zero-dereference was observed once due to virt_dev = 0.
3846 * Print useful debug rather than crash if it is observed again!
3847 */
3848 xhci_warn(xhci, "Virt dev invalid for slot_id 0x%x!\n",
3849 udev->slot_id);
3850 return -EINVAL;
3851 }
3852
f0615c45
AX
3853 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
3854 /*
3855 * If this is the first Set Address since device plug-in or
3856 * virt_device realloaction after a resume with an xHCI power loss,
3857 * then set up the slot context.
3858 */
3859 if (!slot_ctx->dev_info)
3ffbba95 3860 xhci_setup_addressable_virt_dev(xhci, udev);
f0615c45 3861 /* Otherwise, update the control endpoint ring enqueue pointer. */
2d1ee590
SS
3862 else
3863 xhci_copy_ep0_dequeue_into_input_ctx(xhci, udev);
d31c285b
SS
3864 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
3865 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG | EP0_FLAG);
3866 ctrl_ctx->drop_flags = 0;
3867
66e49d87 3868 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
d115b048 3869 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
3ffbba95 3870
f88ba78d 3871 spin_lock_irqsave(&xhci->lock, flags);
57ad7768 3872 cmd_trb = xhci_find_next_enqueue(xhci->cmd_ring);
d115b048
JY
3873 ret = xhci_queue_address_device(xhci, virt_dev->in_ctx->dma,
3874 udev->slot_id);
3ffbba95
SS
3875 if (ret) {
3876 spin_unlock_irqrestore(&xhci->lock, flags);
3877 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3878 return ret;
3879 }
23e3be11 3880 xhci_ring_cmd_db(xhci);
3ffbba95
SS
3881 spin_unlock_irqrestore(&xhci->lock, flags);
3882
3883 /* ctrl tx can take up to 5 sec; XXX: need more time for xHC? */
3884 timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev,
6e4468b9 3885 XHCI_CMD_DEFAULT_TIMEOUT);
3ffbba95
SS
3886 /* FIXME: From section 4.3.4: "Software shall be responsible for timing
3887 * the SetAddress() "recovery interval" required by USB and aborting the
3888 * command on a timeout.
3889 */
3890 if (timeleft <= 0) {
cd68176a 3891 xhci_warn(xhci, "%s while waiting for address device command\n",
3ffbba95 3892 timeleft == 0 ? "Timeout" : "Signal");
6e4468b9
EF
3893 /* cancel the address device command */
3894 ret = xhci_cancel_cmd(xhci, NULL, cmd_trb);
3895 if (ret < 0)
3896 return ret;
3ffbba95
SS
3897 return -ETIME;
3898 }
3899
3ffbba95
SS
3900 switch (virt_dev->cmd_status) {
3901 case COMP_CTX_STATE:
3902 case COMP_EBADSLT:
3903 xhci_err(xhci, "Setup ERROR: address device command for slot %d.\n",
3904 udev->slot_id);
3905 ret = -EINVAL;
3906 break;
3907 case COMP_TX_ERR:
3908 dev_warn(&udev->dev, "Device not responding to set address.\n");
3909 ret = -EPROTO;
3910 break;
f6ba6fe2
AH
3911 case COMP_DEV_ERR:
3912 dev_warn(&udev->dev, "ERROR: Incompatible device for address "
3913 "device command.\n");
3914 ret = -ENODEV;
3915 break;
3ffbba95
SS
3916 case COMP_SUCCESS:
3917 xhci_dbg(xhci, "Successful Address Device command\n");
3918 break;
3919 default:
3920 xhci_err(xhci, "ERROR: unexpected command completion "
3921 "code 0x%x.\n", virt_dev->cmd_status);
66e49d87 3922 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
d115b048 3923 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
3ffbba95
SS
3924 ret = -EINVAL;
3925 break;
3926 }
3927 if (ret) {
3ffbba95
SS
3928 return ret;
3929 }
8e595a5d
SS
3930 temp_64 = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
3931 xhci_dbg(xhci, "Op regs DCBAA ptr = %#016llx\n", temp_64);
3932 xhci_dbg(xhci, "Slot ID %d dcbaa entry @%p = %#016llx\n",
28ccd296
ME
3933 udev->slot_id,
3934 &xhci->dcbaa->dev_context_ptrs[udev->slot_id],
3935 (unsigned long long)
3936 le64_to_cpu(xhci->dcbaa->dev_context_ptrs[udev->slot_id]));
700e2052 3937 xhci_dbg(xhci, "Output Context DMA address = %#08llx\n",
d115b048 3938 (unsigned long long)virt_dev->out_ctx->dma);
3ffbba95 3939 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
d115b048 3940 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
3ffbba95 3941 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
d115b048 3942 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
3ffbba95
SS
3943 /*
3944 * USB core uses address 1 for the roothubs, so we add one to the
3945 * address given back to us by the HC.
3946 */
d115b048 3947 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
c8d4af8e
AX
3948 /* Use kernel assigned address for devices; store xHC assigned
3949 * address locally. */
28ccd296
ME
3950 virt_dev->address = (le32_to_cpu(slot_ctx->dev_state) & DEV_ADDR_MASK)
3951 + 1;
f94e0186 3952 /* Zero the input context control for later use */
d115b048
JY
3953 ctrl_ctx->add_flags = 0;
3954 ctrl_ctx->drop_flags = 0;
3ffbba95 3955
c8d4af8e 3956 xhci_dbg(xhci, "Internal device address = %d\n", virt_dev->address);
3ffbba95
SS
3957
3958 return 0;
3959}
3960
3f5eb141
LT
3961/*
3962 * Transfer the port index into real index in the HW port status
3963 * registers. Caculate offset between the port's PORTSC register
3964 * and port status base. Divide the number of per port register
3965 * to get the real index. The raw port number bases 1.
3966 */
3967int xhci_find_raw_port_number(struct usb_hcd *hcd, int port1)
3968{
3969 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3970 __le32 __iomem *base_addr = &xhci->op_regs->port_status_base;
3971 __le32 __iomem *addr;
3972 int raw_port;
3973
3974 if (hcd->speed != HCD_USB3)
3975 addr = xhci->usb2_ports[port1 - 1];
3976 else
3977 addr = xhci->usb3_ports[port1 - 1];
3978
3979 raw_port = (addr - base_addr)/NUM_PORT_REGS + 1;
3980 return raw_port;
3981}
3982
84ebc102 3983#ifdef CONFIG_PM_RUNTIME
9574323c
AX
3984
3985/* BESL to HIRD Encoding array for USB2 LPM */
3986static int xhci_besl_encoding[16] = {125, 150, 200, 300, 400, 500, 1000, 2000,
3987 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000};
3988
3989/* Calculate HIRD/BESL for USB2 PORTPMSC*/
f99298bf
AX
3990static int xhci_calculate_hird_besl(struct xhci_hcd *xhci,
3991 struct usb_device *udev)
9574323c 3992{
f99298bf
AX
3993 int u2del, besl, besl_host;
3994 int besl_device = 0;
3995 u32 field;
3996
3997 u2del = HCS_U2_LATENCY(xhci->hcs_params3);
3998 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
9574323c 3999
f99298bf
AX
4000 if (field & USB_BESL_SUPPORT) {
4001 for (besl_host = 0; besl_host < 16; besl_host++) {
4002 if (xhci_besl_encoding[besl_host] >= u2del)
9574323c
AX
4003 break;
4004 }
f99298bf
AX
4005 /* Use baseline BESL value as default */
4006 if (field & USB_BESL_BASELINE_VALID)
4007 besl_device = USB_GET_BESL_BASELINE(field);
4008 else if (field & USB_BESL_DEEP_VALID)
4009 besl_device = USB_GET_BESL_DEEP(field);
9574323c
AX
4010 } else {
4011 if (u2del <= 50)
f99298bf 4012 besl_host = 0;
9574323c 4013 else
f99298bf 4014 besl_host = (u2del - 51) / 75 + 1;
9574323c
AX
4015 }
4016
f99298bf
AX
4017 besl = besl_host + besl_device;
4018 if (besl > 15)
4019 besl = 15;
4020
4021 return besl;
9574323c
AX
4022}
4023
4024static int xhci_usb2_software_lpm_test(struct usb_hcd *hcd,
4025 struct usb_device *udev)
4026{
4027 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4028 struct dev_info *dev_info;
4029 __le32 __iomem **port_array;
4030 __le32 __iomem *addr, *pm_addr;
4031 u32 temp, dev_id;
4032 unsigned int port_num;
4033 unsigned long flags;
f99298bf 4034 int hird;
9574323c
AX
4035 int ret;
4036
4037 if (hcd->speed == HCD_USB3 || !xhci->sw_lpm_support ||
4038 !udev->lpm_capable)
4039 return -EINVAL;
4040
4041 /* we only support lpm for non-hub device connected to root hub yet */
4042 if (!udev->parent || udev->parent->parent ||
4043 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
4044 return -EINVAL;
4045
4046 spin_lock_irqsave(&xhci->lock, flags);
4047
4048 /* Look for devices in lpm_failed_devs list */
4049 dev_id = le16_to_cpu(udev->descriptor.idVendor) << 16 |
4050 le16_to_cpu(udev->descriptor.idProduct);
4051 list_for_each_entry(dev_info, &xhci->lpm_failed_devs, list) {
4052 if (dev_info->dev_id == dev_id) {
4053 ret = -EINVAL;
4054 goto finish;
4055 }
4056 }
4057
4058 port_array = xhci->usb2_ports;
4059 port_num = udev->portnum - 1;
4060
4061 if (port_num > HCS_MAX_PORTS(xhci->hcs_params1)) {
4062 xhci_dbg(xhci, "invalid port number %d\n", udev->portnum);
4063 ret = -EINVAL;
4064 goto finish;
4065 }
4066
4067 /*
4068 * Test USB 2.0 software LPM.
4069 * FIXME: some xHCI 1.0 hosts may implement a new register to set up
4070 * hardware-controlled USB 2.0 LPM. See section 5.4.11 and 4.23.5.1.1.1
4071 * in the June 2011 errata release.
4072 */
4073 xhci_dbg(xhci, "test port %d software LPM\n", port_num);
4074 /*
4075 * Set L1 Device Slot and HIRD/BESL.
4076 * Check device's USB 2.0 extension descriptor to determine whether
4077 * HIRD or BESL shoule be used. See USB2.0 LPM errata.
4078 */
4079 pm_addr = port_array[port_num] + 1;
f99298bf 4080 hird = xhci_calculate_hird_besl(xhci, udev);
9574323c
AX
4081 temp = PORT_L1DS(udev->slot_id) | PORT_HIRD(hird);
4082 xhci_writel(xhci, temp, pm_addr);
4083
4084 /* Set port link state to U2(L1) */
4085 addr = port_array[port_num];
4086 xhci_set_link_state(xhci, port_array, port_num, XDEV_U2);
4087
4088 /* wait for ACK */
4089 spin_unlock_irqrestore(&xhci->lock, flags);
4090 msleep(10);
4091 spin_lock_irqsave(&xhci->lock, flags);
4092
4093 /* Check L1 Status */
2611bd18
SS
4094 ret = xhci_handshake(xhci, pm_addr,
4095 PORT_L1S_MASK, PORT_L1S_SUCCESS, 125);
9574323c
AX
4096 if (ret != -ETIMEDOUT) {
4097 /* enter L1 successfully */
4098 temp = xhci_readl(xhci, addr);
4099 xhci_dbg(xhci, "port %d entered L1 state, port status 0x%x\n",
4100 port_num, temp);
4101 ret = 0;
4102 } else {
4103 temp = xhci_readl(xhci, pm_addr);
4104 xhci_dbg(xhci, "port %d software lpm failed, L1 status %d\n",
4105 port_num, temp & PORT_L1S_MASK);
4106 ret = -EINVAL;
4107 }
4108
4109 /* Resume the port */
4110 xhci_set_link_state(xhci, port_array, port_num, XDEV_U0);
4111
4112 spin_unlock_irqrestore(&xhci->lock, flags);
4113 msleep(10);
4114 spin_lock_irqsave(&xhci->lock, flags);
4115
4116 /* Clear PLC */
4117 xhci_test_and_clear_bit(xhci, port_array, port_num, PORT_PLC);
4118
4119 /* Check PORTSC to make sure the device is in the right state */
4120 if (!ret) {
4121 temp = xhci_readl(xhci, addr);
4122 xhci_dbg(xhci, "resumed port %d status 0x%x\n", port_num, temp);
4123 if (!(temp & PORT_CONNECT) || !(temp & PORT_PE) ||
4124 (temp & PORT_PLS_MASK) != XDEV_U0) {
4125 xhci_dbg(xhci, "port L1 resume fail\n");
4126 ret = -EINVAL;
4127 }
4128 }
4129
4130 if (ret) {
4131 /* Insert dev to lpm_failed_devs list */
4132 xhci_warn(xhci, "device LPM test failed, may disconnect and "
4133 "re-enumerate\n");
4134 dev_info = kzalloc(sizeof(struct dev_info), GFP_ATOMIC);
4135 if (!dev_info) {
4136 ret = -ENOMEM;
4137 goto finish;
4138 }
4139 dev_info->dev_id = dev_id;
4140 INIT_LIST_HEAD(&dev_info->list);
4141 list_add(&dev_info->list, &xhci->lpm_failed_devs);
4142 } else {
4143 xhci_ring_device(xhci, udev->slot_id);
4144 }
4145
4146finish:
4147 spin_unlock_irqrestore(&xhci->lock, flags);
4148 return ret;
4149}
4150
65580b43
AX
4151int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
4152 struct usb_device *udev, int enable)
4153{
4154 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4155 __le32 __iomem **port_array;
4156 __le32 __iomem *pm_addr;
4157 u32 temp;
4158 unsigned int port_num;
4159 unsigned long flags;
f99298bf 4160 int hird;
65580b43
AX
4161
4162 if (hcd->speed == HCD_USB3 || !xhci->hw_lpm_support ||
4163 !udev->lpm_capable)
4164 return -EPERM;
4165
4166 if (!udev->parent || udev->parent->parent ||
4167 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
4168 return -EPERM;
4169
4170 if (udev->usb2_hw_lpm_capable != 1)
4171 return -EPERM;
4172
4173 spin_lock_irqsave(&xhci->lock, flags);
4174
4175 port_array = xhci->usb2_ports;
4176 port_num = udev->portnum - 1;
4177 pm_addr = port_array[port_num] + 1;
4178 temp = xhci_readl(xhci, pm_addr);
4179
4180 xhci_dbg(xhci, "%s port %d USB2 hardware LPM\n",
4181 enable ? "enable" : "disable", port_num);
4182
f99298bf 4183 hird = xhci_calculate_hird_besl(xhci, udev);
65580b43
AX
4184
4185 if (enable) {
4186 temp &= ~PORT_HIRD_MASK;
4187 temp |= PORT_HIRD(hird) | PORT_RWE;
4188 xhci_writel(xhci, temp, pm_addr);
4189 temp = xhci_readl(xhci, pm_addr);
4190 temp |= PORT_HLE;
4191 xhci_writel(xhci, temp, pm_addr);
4192 } else {
4193 temp &= ~(PORT_HLE | PORT_RWE | PORT_HIRD_MASK);
4194 xhci_writel(xhci, temp, pm_addr);
4195 }
4196
4197 spin_unlock_irqrestore(&xhci->lock, flags);
4198 return 0;
4199}
4200
b01bcbf7
SS
4201int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
4202{
4203 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4204 int ret;
4205
4206 ret = xhci_usb2_software_lpm_test(hcd, udev);
4207 if (!ret) {
4208 xhci_dbg(xhci, "software LPM test succeed\n");
4209 if (xhci->hw_lpm_support == 1) {
4210 udev->usb2_hw_lpm_capable = 1;
4211 ret = xhci_set_usb2_hardware_lpm(hcd, udev, 1);
4212 if (!ret)
4213 udev->usb2_hw_lpm_enabled = 1;
4214 }
4215 }
4216
4217 return 0;
4218}
4219
4220#else
4221
4222int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
4223 struct usb_device *udev, int enable)
4224{
4225 return 0;
4226}
4227
4228int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
4229{
4230 return 0;
4231}
4232
84ebc102 4233#endif /* CONFIG_PM_RUNTIME */
b01bcbf7 4234
3b3db026
SS
4235/*---------------------- USB 3.0 Link PM functions ------------------------*/
4236
b01bcbf7 4237#ifdef CONFIG_PM
e3567d2c
SS
4238/* Service interval in nanoseconds = 2^(bInterval - 1) * 125us * 1000ns / 1us */
4239static unsigned long long xhci_service_interval_to_ns(
4240 struct usb_endpoint_descriptor *desc)
4241{
16b45fdf 4242 return (1ULL << (desc->bInterval - 1)) * 125 * 1000;
e3567d2c
SS
4243}
4244
3b3db026
SS
4245static u16 xhci_get_timeout_no_hub_lpm(struct usb_device *udev,
4246 enum usb3_link_state state)
4247{
4248 unsigned long long sel;
4249 unsigned long long pel;
4250 unsigned int max_sel_pel;
4251 char *state_name;
4252
4253 switch (state) {
4254 case USB3_LPM_U1:
4255 /* Convert SEL and PEL stored in nanoseconds to microseconds */
4256 sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
4257 pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
4258 max_sel_pel = USB3_LPM_MAX_U1_SEL_PEL;
4259 state_name = "U1";
4260 break;
4261 case USB3_LPM_U2:
4262 sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
4263 pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
4264 max_sel_pel = USB3_LPM_MAX_U2_SEL_PEL;
4265 state_name = "U2";
4266 break;
4267 default:
4268 dev_warn(&udev->dev, "%s: Can't get timeout for non-U1 or U2 state.\n",
4269 __func__);
e25e62ae 4270 return USB3_LPM_DISABLED;
3b3db026
SS
4271 }
4272
4273 if (sel <= max_sel_pel && pel <= max_sel_pel)
4274 return USB3_LPM_DEVICE_INITIATED;
4275
4276 if (sel > max_sel_pel)
4277 dev_dbg(&udev->dev, "Device-initiated %s disabled "
4278 "due to long SEL %llu ms\n",
4279 state_name, sel);
4280 else
4281 dev_dbg(&udev->dev, "Device-initiated %s disabled "
4282 "due to long PEL %llu\n ms",
4283 state_name, pel);
4284 return USB3_LPM_DISABLED;
4285}
4286
e3567d2c
SS
4287/* Returns the hub-encoded U1 timeout value.
4288 * The U1 timeout should be the maximum of the following values:
4289 * - For control endpoints, U1 system exit latency (SEL) * 3
4290 * - For bulk endpoints, U1 SEL * 5
4291 * - For interrupt endpoints:
4292 * - Notification EPs, U1 SEL * 3
4293 * - Periodic EPs, max(105% of bInterval, U1 SEL * 2)
4294 * - For isochronous endpoints, max(105% of bInterval, U1 SEL * 2)
4295 */
4296static u16 xhci_calculate_intel_u1_timeout(struct usb_device *udev,
4297 struct usb_endpoint_descriptor *desc)
4298{
4299 unsigned long long timeout_ns;
4300 int ep_type;
4301 int intr_type;
4302
4303 ep_type = usb_endpoint_type(desc);
4304 switch (ep_type) {
4305 case USB_ENDPOINT_XFER_CONTROL:
4306 timeout_ns = udev->u1_params.sel * 3;
4307 break;
4308 case USB_ENDPOINT_XFER_BULK:
4309 timeout_ns = udev->u1_params.sel * 5;
4310 break;
4311 case USB_ENDPOINT_XFER_INT:
4312 intr_type = usb_endpoint_interrupt_type(desc);
4313 if (intr_type == USB_ENDPOINT_INTR_NOTIFICATION) {
4314 timeout_ns = udev->u1_params.sel * 3;
4315 break;
4316 }
4317 /* Otherwise the calculation is the same as isoc eps */
4318 case USB_ENDPOINT_XFER_ISOC:
4319 timeout_ns = xhci_service_interval_to_ns(desc);
c88db160 4320 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns * 105, 100);
e3567d2c
SS
4321 if (timeout_ns < udev->u1_params.sel * 2)
4322 timeout_ns = udev->u1_params.sel * 2;
4323 break;
4324 default:
4325 return 0;
4326 }
4327
4328 /* The U1 timeout is encoded in 1us intervals. */
c88db160 4329 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 1000);
e3567d2c
SS
4330 /* Don't return a timeout of zero, because that's USB3_LPM_DISABLED. */
4331 if (timeout_ns == USB3_LPM_DISABLED)
4332 timeout_ns++;
4333
4334 /* If the necessary timeout value is bigger than what we can set in the
4335 * USB 3.0 hub, we have to disable hub-initiated U1.
4336 */
4337 if (timeout_ns <= USB3_LPM_U1_MAX_TIMEOUT)
4338 return timeout_ns;
4339 dev_dbg(&udev->dev, "Hub-initiated U1 disabled "
4340 "due to long timeout %llu ms\n", timeout_ns);
4341 return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U1);
4342}
4343
4344/* Returns the hub-encoded U2 timeout value.
4345 * The U2 timeout should be the maximum of:
4346 * - 10 ms (to avoid the bandwidth impact on the scheduler)
4347 * - largest bInterval of any active periodic endpoint (to avoid going
4348 * into lower power link states between intervals).
4349 * - the U2 Exit Latency of the device
4350 */
4351static u16 xhci_calculate_intel_u2_timeout(struct usb_device *udev,
4352 struct usb_endpoint_descriptor *desc)
4353{
4354 unsigned long long timeout_ns;
4355 unsigned long long u2_del_ns;
4356
4357 timeout_ns = 10 * 1000 * 1000;
4358
4359 if ((usb_endpoint_xfer_int(desc) || usb_endpoint_xfer_isoc(desc)) &&
4360 (xhci_service_interval_to_ns(desc) > timeout_ns))
4361 timeout_ns = xhci_service_interval_to_ns(desc);
4362
966e7a85 4363 u2_del_ns = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat) * 1000ULL;
e3567d2c
SS
4364 if (u2_del_ns > timeout_ns)
4365 timeout_ns = u2_del_ns;
4366
4367 /* The U2 timeout is encoded in 256us intervals */
c88db160 4368 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 256 * 1000);
e3567d2c
SS
4369 /* If the necessary timeout value is bigger than what we can set in the
4370 * USB 3.0 hub, we have to disable hub-initiated U2.
4371 */
4372 if (timeout_ns <= USB3_LPM_U2_MAX_TIMEOUT)
4373 return timeout_ns;
4374 dev_dbg(&udev->dev, "Hub-initiated U2 disabled "
4375 "due to long timeout %llu ms\n", timeout_ns);
4376 return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U2);
4377}
4378
3b3db026
SS
4379static u16 xhci_call_host_update_timeout_for_endpoint(struct xhci_hcd *xhci,
4380 struct usb_device *udev,
4381 struct usb_endpoint_descriptor *desc,
4382 enum usb3_link_state state,
4383 u16 *timeout)
4384{
e3567d2c
SS
4385 if (state == USB3_LPM_U1) {
4386 if (xhci->quirks & XHCI_INTEL_HOST)
4387 return xhci_calculate_intel_u1_timeout(udev, desc);
4388 } else {
4389 if (xhci->quirks & XHCI_INTEL_HOST)
4390 return xhci_calculate_intel_u2_timeout(udev, desc);
4391 }
4392
3b3db026
SS
4393 return USB3_LPM_DISABLED;
4394}
4395
4396static int xhci_update_timeout_for_endpoint(struct xhci_hcd *xhci,
4397 struct usb_device *udev,
4398 struct usb_endpoint_descriptor *desc,
4399 enum usb3_link_state state,
4400 u16 *timeout)
4401{
4402 u16 alt_timeout;
4403
4404 alt_timeout = xhci_call_host_update_timeout_for_endpoint(xhci, udev,
4405 desc, state, timeout);
4406
4407 /* If we found we can't enable hub-initiated LPM, or
4408 * the U1 or U2 exit latency was too high to allow
4409 * device-initiated LPM as well, just stop searching.
4410 */
4411 if (alt_timeout == USB3_LPM_DISABLED ||
4412 alt_timeout == USB3_LPM_DEVICE_INITIATED) {
4413 *timeout = alt_timeout;
4414 return -E2BIG;
4415 }
4416 if (alt_timeout > *timeout)
4417 *timeout = alt_timeout;
4418 return 0;
4419}
4420
4421static int xhci_update_timeout_for_interface(struct xhci_hcd *xhci,
4422 struct usb_device *udev,
4423 struct usb_host_interface *alt,
4424 enum usb3_link_state state,
4425 u16 *timeout)
4426{
4427 int j;
4428
4429 for (j = 0; j < alt->desc.bNumEndpoints; j++) {
4430 if (xhci_update_timeout_for_endpoint(xhci, udev,
4431 &alt->endpoint[j].desc, state, timeout))
4432 return -E2BIG;
4433 continue;
4434 }
4435 return 0;
4436}
4437
e3567d2c
SS
4438static int xhci_check_intel_tier_policy(struct usb_device *udev,
4439 enum usb3_link_state state)
4440{
4441 struct usb_device *parent;
4442 unsigned int num_hubs;
4443
4444 if (state == USB3_LPM_U2)
4445 return 0;
4446
4447 /* Don't enable U1 if the device is on a 2nd tier hub or lower. */
4448 for (parent = udev->parent, num_hubs = 0; parent->parent;
4449 parent = parent->parent)
4450 num_hubs++;
4451
4452 if (num_hubs < 2)
4453 return 0;
4454
4455 dev_dbg(&udev->dev, "Disabling U1 link state for device"
4456 " below second-tier hub.\n");
4457 dev_dbg(&udev->dev, "Plug device into first-tier hub "
4458 "to decrease power consumption.\n");
4459 return -E2BIG;
4460}
4461
3b3db026
SS
4462static int xhci_check_tier_policy(struct xhci_hcd *xhci,
4463 struct usb_device *udev,
4464 enum usb3_link_state state)
4465{
e3567d2c
SS
4466 if (xhci->quirks & XHCI_INTEL_HOST)
4467 return xhci_check_intel_tier_policy(udev, state);
3b3db026
SS
4468 return -EINVAL;
4469}
4470
4471/* Returns the U1 or U2 timeout that should be enabled.
4472 * If the tier check or timeout setting functions return with a non-zero exit
4473 * code, that means the timeout value has been finalized and we shouldn't look
4474 * at any more endpoints.
4475 */
4476static u16 xhci_calculate_lpm_timeout(struct usb_hcd *hcd,
4477 struct usb_device *udev, enum usb3_link_state state)
4478{
4479 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4480 struct usb_host_config *config;
4481 char *state_name;
4482 int i;
4483 u16 timeout = USB3_LPM_DISABLED;
4484
4485 if (state == USB3_LPM_U1)
4486 state_name = "U1";
4487 else if (state == USB3_LPM_U2)
4488 state_name = "U2";
4489 else {
4490 dev_warn(&udev->dev, "Can't enable unknown link state %i\n",
4491 state);
4492 return timeout;
4493 }
4494
4495 if (xhci_check_tier_policy(xhci, udev, state) < 0)
4496 return timeout;
4497
4498 /* Gather some information about the currently installed configuration
4499 * and alternate interface settings.
4500 */
4501 if (xhci_update_timeout_for_endpoint(xhci, udev, &udev->ep0.desc,
4502 state, &timeout))
4503 return timeout;
4504
4505 config = udev->actconfig;
4506 if (!config)
4507 return timeout;
4508
4509 for (i = 0; i < USB_MAXINTERFACES; i++) {
4510 struct usb_driver *driver;
4511 struct usb_interface *intf = config->interface[i];
4512
4513 if (!intf)
4514 continue;
4515
4516 /* Check if any currently bound drivers want hub-initiated LPM
4517 * disabled.
4518 */
4519 if (intf->dev.driver) {
4520 driver = to_usb_driver(intf->dev.driver);
4521 if (driver && driver->disable_hub_initiated_lpm) {
4522 dev_dbg(&udev->dev, "Hub-initiated %s disabled "
4523 "at request of driver %s\n",
4524 state_name, driver->name);
4525 return xhci_get_timeout_no_hub_lpm(udev, state);
4526 }
4527 }
4528
4529 /* Not sure how this could happen... */
4530 if (!intf->cur_altsetting)
4531 continue;
4532
4533 if (xhci_update_timeout_for_interface(xhci, udev,
4534 intf->cur_altsetting,
4535 state, &timeout))
4536 return timeout;
4537 }
4538 return timeout;
4539}
4540
4541/*
4542 * Issue an Evaluate Context command to change the Maximum Exit Latency in the
4543 * slot context. If that succeeds, store the new MEL in the xhci_virt_device.
4544 */
4545static int xhci_change_max_exit_latency(struct xhci_hcd *xhci,
4546 struct usb_device *udev, u16 max_exit_latency)
4547{
4548 struct xhci_virt_device *virt_dev;
4549 struct xhci_command *command;
4550 struct xhci_input_control_ctx *ctrl_ctx;
4551 struct xhci_slot_ctx *slot_ctx;
4552 unsigned long flags;
4553 int ret;
4554
4555 spin_lock_irqsave(&xhci->lock, flags);
1fdbb939
MN
4556
4557 virt_dev = xhci->devs[udev->slot_id];
4558
4559 /*
4560 * virt_dev might not exists yet if xHC resumed from hibernate (S4) and
4561 * xHC was re-initialized. Exit latency will be set later after
4562 * hub_port_finish_reset() is done and xhci->devs[] are re-allocated
4563 */
4564
4565 if (!virt_dev || max_exit_latency == virt_dev->current_mel) {
3b3db026
SS
4566 spin_unlock_irqrestore(&xhci->lock, flags);
4567 return 0;
4568 }
4569
4570 /* Attempt to issue an Evaluate Context command to change the MEL. */
3b3db026
SS
4571 command = xhci->lpm_command;
4572 xhci_slot_copy(xhci, command->in_ctx, virt_dev->out_ctx);
4573 spin_unlock_irqrestore(&xhci->lock, flags);
4574
4575 ctrl_ctx = xhci_get_input_control_ctx(xhci, command->in_ctx);
4576 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
4577 slot_ctx = xhci_get_slot_ctx(xhci, command->in_ctx);
4578 slot_ctx->dev_info2 &= cpu_to_le32(~((u32) MAX_EXIT));
4579 slot_ctx->dev_info2 |= cpu_to_le32(max_exit_latency);
4580
4581 xhci_dbg(xhci, "Set up evaluate context for LPM MEL change.\n");
4582 xhci_dbg(xhci, "Slot %u Input Context:\n", udev->slot_id);
4583 xhci_dbg_ctx(xhci, command->in_ctx, 0);
4584
4585 /* Issue and wait for the evaluate context command. */
4586 ret = xhci_configure_endpoint(xhci, udev, command,
4587 true, true);
4588 xhci_dbg(xhci, "Slot %u Output Context:\n", udev->slot_id);
4589 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 0);
4590
4591 if (!ret) {
4592 spin_lock_irqsave(&xhci->lock, flags);
4593 virt_dev->current_mel = max_exit_latency;
4594 spin_unlock_irqrestore(&xhci->lock, flags);
4595 }
4596 return ret;
4597}
4598
4599static int calculate_max_exit_latency(struct usb_device *udev,
4600 enum usb3_link_state state_changed,
4601 u16 hub_encoded_timeout)
4602{
4603 unsigned long long u1_mel_us = 0;
4604 unsigned long long u2_mel_us = 0;
4605 unsigned long long mel_us = 0;
4606 bool disabling_u1;
4607 bool disabling_u2;
4608 bool enabling_u1;
4609 bool enabling_u2;
4610
4611 disabling_u1 = (state_changed == USB3_LPM_U1 &&
4612 hub_encoded_timeout == USB3_LPM_DISABLED);
4613 disabling_u2 = (state_changed == USB3_LPM_U2 &&
4614 hub_encoded_timeout == USB3_LPM_DISABLED);
4615
4616 enabling_u1 = (state_changed == USB3_LPM_U1 &&
4617 hub_encoded_timeout != USB3_LPM_DISABLED);
4618 enabling_u2 = (state_changed == USB3_LPM_U2 &&
4619 hub_encoded_timeout != USB3_LPM_DISABLED);
4620
4621 /* If U1 was already enabled and we're not disabling it,
4622 * or we're going to enable U1, account for the U1 max exit latency.
4623 */
4624 if ((udev->u1_params.timeout != USB3_LPM_DISABLED && !disabling_u1) ||
4625 enabling_u1)
4626 u1_mel_us = DIV_ROUND_UP(udev->u1_params.mel, 1000);
4627 if ((udev->u2_params.timeout != USB3_LPM_DISABLED && !disabling_u2) ||
4628 enabling_u2)
4629 u2_mel_us = DIV_ROUND_UP(udev->u2_params.mel, 1000);
4630
4631 if (u1_mel_us > u2_mel_us)
4632 mel_us = u1_mel_us;
4633 else
4634 mel_us = u2_mel_us;
4635 /* xHCI host controller max exit latency field is only 16 bits wide. */
4636 if (mel_us > MAX_EXIT) {
4637 dev_warn(&udev->dev, "Link PM max exit latency of %lluus "
4638 "is too big.\n", mel_us);
4639 return -E2BIG;
4640 }
4641 return mel_us;
4642}
4643
4644/* Returns the USB3 hub-encoded value for the U1/U2 timeout. */
4645int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd,
4646 struct usb_device *udev, enum usb3_link_state state)
4647{
4648 struct xhci_hcd *xhci;
4649 u16 hub_encoded_timeout;
4650 int mel;
4651 int ret;
4652
4653 xhci = hcd_to_xhci(hcd);
4654 /* The LPM timeout values are pretty host-controller specific, so don't
4655 * enable hub-initiated timeouts unless the vendor has provided
4656 * information about their timeout algorithm.
4657 */
4658 if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) ||
4659 !xhci->devs[udev->slot_id])
4660 return USB3_LPM_DISABLED;
4661
4662 hub_encoded_timeout = xhci_calculate_lpm_timeout(hcd, udev, state);
4663 mel = calculate_max_exit_latency(udev, state, hub_encoded_timeout);
4664 if (mel < 0) {
4665 /* Max Exit Latency is too big, disable LPM. */
4666 hub_encoded_timeout = USB3_LPM_DISABLED;
4667 mel = 0;
4668 }
4669
4670 ret = xhci_change_max_exit_latency(xhci, udev, mel);
4671 if (ret)
4672 return ret;
4673 return hub_encoded_timeout;
4674}
4675
4676int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
4677 struct usb_device *udev, enum usb3_link_state state)
4678{
4679 struct xhci_hcd *xhci;
4680 u16 mel;
4681 int ret;
4682
4683 xhci = hcd_to_xhci(hcd);
4684 if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) ||
4685 !xhci->devs[udev->slot_id])
4686 return 0;
4687
4688 mel = calculate_max_exit_latency(udev, state, USB3_LPM_DISABLED);
4689 ret = xhci_change_max_exit_latency(xhci, udev, mel);
4690 if (ret)
4691 return ret;
4692 return 0;
4693}
b01bcbf7 4694#else /* CONFIG_PM */
9574323c 4695
b01bcbf7
SS
4696int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd,
4697 struct usb_device *udev, enum usb3_link_state state)
65580b43 4698{
b01bcbf7 4699 return USB3_LPM_DISABLED;
65580b43
AX
4700}
4701
b01bcbf7
SS
4702int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
4703 struct usb_device *udev, enum usb3_link_state state)
9574323c
AX
4704{
4705 return 0;
4706}
b01bcbf7 4707#endif /* CONFIG_PM */
9574323c 4708
b01bcbf7 4709/*-------------------------------------------------------------------------*/
9574323c 4710
ac1c1b7f
SS
4711/* Once a hub descriptor is fetched for a device, we need to update the xHC's
4712 * internal data structures for the device.
4713 */
4714int xhci_update_hub_device(struct usb_hcd *hcd, struct usb_device *hdev,
4715 struct usb_tt *tt, gfp_t mem_flags)
4716{
4717 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4718 struct xhci_virt_device *vdev;
4719 struct xhci_command *config_cmd;
4720 struct xhci_input_control_ctx *ctrl_ctx;
4721 struct xhci_slot_ctx *slot_ctx;
4722 unsigned long flags;
4723 unsigned think_time;
4724 int ret;
4725
4726 /* Ignore root hubs */
4727 if (!hdev->parent)
4728 return 0;
4729
4730 vdev = xhci->devs[hdev->slot_id];
4731 if (!vdev) {
4732 xhci_warn(xhci, "Cannot update hub desc for unknown device.\n");
4733 return -EINVAL;
4734 }
a1d78c16 4735 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
ac1c1b7f
SS
4736 if (!config_cmd) {
4737 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
4738 return -ENOMEM;
4739 }
4740
4741 spin_lock_irqsave(&xhci->lock, flags);
839c817c
SS
4742 if (hdev->speed == USB_SPEED_HIGH &&
4743 xhci_alloc_tt_info(xhci, vdev, hdev, tt, GFP_ATOMIC)) {
4744 xhci_dbg(xhci, "Could not allocate xHCI TT structure.\n");
4745 xhci_free_command(xhci, config_cmd);
4746 spin_unlock_irqrestore(&xhci->lock, flags);
4747 return -ENOMEM;
4748 }
4749
ac1c1b7f
SS
4750 xhci_slot_copy(xhci, config_cmd->in_ctx, vdev->out_ctx);
4751 ctrl_ctx = xhci_get_input_control_ctx(xhci, config_cmd->in_ctx);
28ccd296 4752 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
ac1c1b7f 4753 slot_ctx = xhci_get_slot_ctx(xhci, config_cmd->in_ctx);
28ccd296 4754 slot_ctx->dev_info |= cpu_to_le32(DEV_HUB);
e6a13dd4
CY
4755 /*
4756 * refer to section 6.2.2: MTT should be 0 for full speed hub,
4757 * but it may be already set to 1 when setup an xHCI virtual
4758 * device, so clear it anyway.
4759 */
ac1c1b7f 4760 if (tt->multi)
28ccd296 4761 slot_ctx->dev_info |= cpu_to_le32(DEV_MTT);
e6a13dd4
CY
4762 else if (hdev->speed == USB_SPEED_FULL)
4763 slot_ctx->dev_info &= cpu_to_le32(~DEV_MTT);
4764
ac1c1b7f
SS
4765 if (xhci->hci_version > 0x95) {
4766 xhci_dbg(xhci, "xHCI version %x needs hub "
4767 "TT think time and number of ports\n",
4768 (unsigned int) xhci->hci_version);
28ccd296 4769 slot_ctx->dev_info2 |= cpu_to_le32(XHCI_MAX_PORTS(hdev->maxchild));
ac1c1b7f
SS
4770 /* Set TT think time - convert from ns to FS bit times.
4771 * 0 = 8 FS bit times, 1 = 16 FS bit times,
4772 * 2 = 24 FS bit times, 3 = 32 FS bit times.
700b4173
AX
4773 *
4774 * xHCI 1.0: this field shall be 0 if the device is not a
4775 * High-spped hub.
ac1c1b7f
SS
4776 */
4777 think_time = tt->think_time;
4778 if (think_time != 0)
4779 think_time = (think_time / 666) - 1;
700b4173
AX
4780 if (xhci->hci_version < 0x100 || hdev->speed == USB_SPEED_HIGH)
4781 slot_ctx->tt_info |=
4782 cpu_to_le32(TT_THINK_TIME(think_time));
ac1c1b7f
SS
4783 } else {
4784 xhci_dbg(xhci, "xHCI version %x doesn't need hub "
4785 "TT think time or number of ports\n",
4786 (unsigned int) xhci->hci_version);
4787 }
4788 slot_ctx->dev_state = 0;
4789 spin_unlock_irqrestore(&xhci->lock, flags);
4790
4791 xhci_dbg(xhci, "Set up %s for hub device.\n",
4792 (xhci->hci_version > 0x95) ?
4793 "configure endpoint" : "evaluate context");
4794 xhci_dbg(xhci, "Slot %u Input Context:\n", hdev->slot_id);
4795 xhci_dbg_ctx(xhci, config_cmd->in_ctx, 0);
4796
4797 /* Issue and wait for the configure endpoint or
4798 * evaluate context command.
4799 */
4800 if (xhci->hci_version > 0x95)
4801 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
4802 false, false);
4803 else
4804 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
4805 true, false);
4806
4807 xhci_dbg(xhci, "Slot %u Output Context:\n", hdev->slot_id);
4808 xhci_dbg_ctx(xhci, vdev->out_ctx, 0);
4809
4810 xhci_free_command(xhci, config_cmd);
4811 return ret;
4812}
4813
66d4eadd
SS
4814int xhci_get_frame(struct usb_hcd *hcd)
4815{
4816 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4817 /* EHCI mods by the periodic size. Why? */
4818 return xhci_readl(xhci, &xhci->run_regs->microframe_index) >> 3;
4819}
4820
552e0c4f
SAS
4821int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks)
4822{
4823 struct xhci_hcd *xhci;
4824 struct device *dev = hcd->self.controller;
4825 int retval;
4826 u32 temp;
4827
fdaf8b31
AX
4828 /* Accept arbitrarily long scatter-gather lists */
4829 hcd->self.sg_tablesize = ~0;
19181bc5
HG
4830 /* XHCI controllers don't stop the ep queue on short packets :| */
4831 hcd->self.no_stop_on_short = 1;
552e0c4f
SAS
4832
4833 if (usb_hcd_is_primary_hcd(hcd)) {
4834 xhci = kzalloc(sizeof(struct xhci_hcd), GFP_KERNEL);
4835 if (!xhci)
4836 return -ENOMEM;
4837 *((struct xhci_hcd **) hcd->hcd_priv) = xhci;
4838 xhci->main_hcd = hcd;
4839 /* Mark the first roothub as being USB 2.0.
4840 * The xHCI driver will register the USB 3.0 roothub.
4841 */
4842 hcd->speed = HCD_USB2;
4843 hcd->self.root_hub->speed = USB_SPEED_HIGH;
4844 /*
4845 * USB 2.0 roothub under xHCI has an integrated TT,
4846 * (rate matching hub) as opposed to having an OHCI/UHCI
4847 * companion controller.
4848 */
4849 hcd->has_tt = 1;
4850 } else {
4851 /* xHCI private pointer was set in xhci_pci_probe for the second
4852 * registered roothub.
4853 */
4854 xhci = hcd_to_xhci(hcd);
4855 temp = xhci_readl(xhci, &xhci->cap_regs->hcc_params);
4856 if (HCC_64BIT_ADDR(temp)) {
4857 xhci_dbg(xhci, "Enabling 64-bit DMA addresses.\n");
4858 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(64));
4859 } else {
4860 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(32));
4861 }
4862 return 0;
4863 }
4864
6fa3eb70
S
4865#ifdef CONFIG_MTK_XHCI
4866 retval = mtk_xhci_ip_init(hcd, xhci);
4867 if(retval)
4868 goto error;
4869#endif
4870
552e0c4f
SAS
4871 xhci->cap_regs = hcd->regs;
4872 xhci->op_regs = hcd->regs +
4873 HC_LENGTH(xhci_readl(xhci, &xhci->cap_regs->hc_capbase));
4874 xhci->run_regs = hcd->regs +
4875 (xhci_readl(xhci, &xhci->cap_regs->run_regs_off) & RTSOFF_MASK);
4876 /* Cache read-only capability registers */
4877 xhci->hcs_params1 = xhci_readl(xhci, &xhci->cap_regs->hcs_params1);
4878 xhci->hcs_params2 = xhci_readl(xhci, &xhci->cap_regs->hcs_params2);
4879 xhci->hcs_params3 = xhci_readl(xhci, &xhci->cap_regs->hcs_params3);
4880 xhci->hcc_params = xhci_readl(xhci, &xhci->cap_regs->hc_capbase);
4881 xhci->hci_version = HC_VERSION(xhci->hcc_params);
4882 xhci->hcc_params = xhci_readl(xhci, &xhci->cap_regs->hcc_params);
4883 xhci_print_registers(xhci);
4884
4885 get_quirks(dev, xhci);
4886
a875d82e
GC
4887 /* In xhci controllers which follow xhci 1.0 spec gives a spurious
4888 * success event after a short transfer. This quirk will ignore such
4889 * spurious event.
4890 */
4891 if (xhci->hci_version > 0x96)
4892 xhci->quirks |= XHCI_SPURIOUS_SUCCESS;
4893
552e0c4f
SAS
4894 /* Make sure the HC is halted. */
4895 retval = xhci_halt(xhci);
4896 if (retval)
4897 goto error;
4898
4899 xhci_dbg(xhci, "Resetting HCD\n");
4900 /* Reset the internal HC memory state and registers. */
4901 retval = xhci_reset(xhci);
4902 if (retval)
4903 goto error;
4904 xhci_dbg(xhci, "Reset complete\n");
4905
4906 temp = xhci_readl(xhci, &xhci->cap_regs->hcc_params);
4907 if (HCC_64BIT_ADDR(temp)) {
4908 xhci_dbg(xhci, "Enabling 64-bit DMA addresses.\n");
4909 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(64));
4910 } else {
4911 dma_set_mask(hcd->self.controller, DMA_BIT_MASK(32));
4912 }
4913
4914 xhci_dbg(xhci, "Calling HCD init\n");
4915 /* Initialize HCD and host controller data structures. */
4916 retval = xhci_init(hcd);
4917 if (retval)
4918 goto error;
4919 xhci_dbg(xhci, "Called HCD init\n");
6fa3eb70
S
4920
4921 printk("%s(%d): do mtk_xhci_set\n", __func__, __LINE__);
4922
552e0c4f
SAS
4923 return 0;
4924error:
4925 kfree(xhci);
4926 return retval;
4927}
4928
66d4eadd
SS
4929MODULE_DESCRIPTION(DRIVER_DESC);
4930MODULE_AUTHOR(DRIVER_AUTHOR);
4931MODULE_LICENSE("GPL");
4932
6fa3eb70
S
4933#ifdef CONFIG_USBIF_COMPLIANCE
4934#ifndef CONFIG_USB_MTK_DUALMODE
4935static int xhci_hcd_driver_init(void)
4936{
4937 int retval;
4938
4939 retval = xhci_register_pci();
4940 if (retval < 0) {
4941 printk(KERN_DEBUG "Problem registering PCI driver.");
4942 return retval;
4943 }
4944
4945 #ifdef CONFIG_MTK_XHCI
4946 mtk_xhci_ip_init();
4947 #endif
4948
4949 retval = xhci_register_plat();
4950 if (retval < 0) {
4951 printk(KERN_DEBUG "Problem registering platform driver.");
4952 goto unreg_pci;
4953 }
4954
4955 #ifdef CONFIG_MTK_XHCI
4956 retval = xhci_attrs_init();
4957 if(retval < 0){
4958 printk(KERN_DEBUG "Problem creating xhci attributes.");
4959 goto unreg_plat;
4960 }
4961
4962 mtk_xhci_wakelock_init();
4963 #endif
4964
4965 /*
4966 * Check the compiler generated sizes of structures that must be laid
4967 * out in specific ways for hardware access.
4968 */
4969 BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8);
4970 BUILD_BUG_ON(sizeof(struct xhci_slot_ctx) != 8*32/8);
4971 BUILD_BUG_ON(sizeof(struct xhci_ep_ctx) != 8*32/8);
4972 /* xhci_device_control has eight fields, and also
4973 * embeds one xhci_slot_ctx and 31 xhci_ep_ctx
4974 */
4975 BUILD_BUG_ON(sizeof(struct xhci_stream_ctx) != 4*32/8);
4976 BUILD_BUG_ON(sizeof(union xhci_trb) != 4*32/8);
4977 BUILD_BUG_ON(sizeof(struct xhci_erst_entry) != 4*32/8);
4978 BUILD_BUG_ON(sizeof(struct xhci_cap_regs) != 7*32/8);
4979 BUILD_BUG_ON(sizeof(struct xhci_intr_reg) != 8*32/8);
4980 /* xhci_run_regs has eight fields and embeds 128 xhci_intr_regs */
4981 BUILD_BUG_ON(sizeof(struct xhci_run_regs) != (8+8*128)*32/8);
4982 return 0;
4983
4984#ifdef CONFIG_MTK_XHCI
4985unreg_plat:
4986 xhci_unregister_plat();
4987#endif
4988unreg_pci:
4989 xhci_unregister_pci();
4990 return retval;
4991}
4992
4993static void xhci_hcd_driver_cleanup(void)
4994{
4995 xhci_unregister_pci();
4996 xhci_unregister_plat();
4997 xhci_attrs_exit();
4998}
4999#else
5000static int xhci_hcd_driver_init(void)
5001{
5002 // init in mt_devs.c
5003 mtk_xhci_eint_iddig_init();
5004 mtk_xhci_switch_init();
5005 //mtk_xhci_wakelock_init();
5006 return 0;
5007}
5008
5009static void xhci_hcd_driver_cleanup(void)
5010{
5011 mtk_xhci_eint_iddig_deinit() ;
5012}
5013
5014#endif
5015
5016static int mu3h_normal_driver_on = 0 ;
5017
5018static int xhci_mu3h_proc_show(struct seq_file *seq, void *v)
5019{
5020 seq_printf(seq, "xhci_mu3h_proc_show, mu3h is %d (on:1, off:0)\n", mu3h_normal_driver_on);
5021 return 0;
5022}
5023
5024static int xhci_mu3h_proc_open(struct inode *inode, struct file *file)
5025{
5026 return single_open(file, xhci_mu3h_proc_show, inode->i_private);
5027}
5028
5029static ssize_t xhci_mu3h_proc_write(struct file *file, const char __user *buf, size_t length, loff_t *ppos)
5030{
5031 int ret ;
5032 char msg[32] ;
5033 int result;
5034
5035 if (length >= sizeof(msg)) {
5036 printk( "xhci_mu3h_proc_write length error, the error len is %d\n", (unsigned int)length);
5037 return -EINVAL;
5038 }
5039 if (copy_from_user(msg, buf, length))
5040 return -EFAULT;
5041
5042 msg[length] = 0 ;
5043
5044 printk("xhci_mu3h_proc_write: %s, current driver on/off: %d\n", msg, mu3h_normal_driver_on);
5045
5046 if ((msg[0] == '1') && (mu3h_normal_driver_on == 0)){
5047 xhci_hcd_driver_init() ;
5048 mu3h_normal_driver_on = 1 ;
5049 printk("registe mu3h driver : m3h xhci driver\n");
5050 }else if ((msg[0] == '0') && (mu3h_normal_driver_on == 1)){
5051 xhci_hcd_driver_cleanup();
5052 mu3h_normal_driver_on = 0 ;
5053 printk("unregiste m3h xhci driver.\n");
5054 }else{
5055 printk("xhci_mu3h_proc_write write faile !\n");
5056 }
5057 return length;
5058}
5059
5060static const struct file_operations mu3h_proc_fops = {
5061 .owner = THIS_MODULE,
5062 .open = xhci_mu3h_proc_open,
5063 .write = xhci_mu3h_proc_write,
5064 .read = seq_read,
5065 .llseek = seq_lseek,
5066
5067};
5068
5069static int __init xhci_hcd_init(void)
5070{
5071 struct proc_dir_entry *prEntry;
5072
5073 printk(KERN_DEBUG "xhci_hcd_init");
5074
5075 // set xhci up at boot up
5076 xhci_hcd_driver_init() ;
5077 mtk_xhci_wakelock_init();
5078 mu3h_normal_driver_on = 1;
5079
5080 // USBIF
5081 prEntry = proc_create("mu3h_driver_init", 0666, NULL, &mu3h_proc_fops);
5082 if (prEntry)
5083 {
5084 printk("create the mu3h init proc OK!\n") ;
5085 }else{
5086 printk("[ERROR] create the mu3h init proc FAIL\n") ;
5087 }
5088
5089#ifdef CONFIG_MTK_XHCI
5090
5091 if (!misc_register(&mu3h_uevent_device)){
5092 printk("create the mu3h_uevent_device uevent device OK!\n") ;
5093
5094 }else{
5095 printk("[ERROR] create the mu3h_uevent_device uevent device fail\n") ;
5096 }
5097
5098#endif
5099
5100 return 0 ;
5101
5102}
5103module_init(xhci_hcd_init);
5104
5105static void __exit xhci_hcd_cleanup(void)
5106{
5107#ifdef CONFIG_MTK_XHCI
5108 misc_deregister(&mu3h_uevent_device);
5109#endif
5110 printk(KERN_DEBUG "xhci_hcd_cleanup");
5111}
5112module_exit(xhci_hcd_cleanup);
5113
5114#else
5115#ifndef CONFIG_USB_MTK_DUALMODE
66d4eadd
SS
5116static int __init xhci_hcd_init(void)
5117{
0cc47d54 5118 int retval;
66d4eadd 5119
12c1515f
GKH
5120 if (usb_disabled())
5121 return -ENODEV;
5122
66d4eadd 5123 retval = xhci_register_pci();
66d4eadd
SS
5124 if (retval < 0) {
5125 printk(KERN_DEBUG "Problem registering PCI driver.");
5126 return retval;
5127 }
3429e91a
SAS
5128 retval = xhci_register_plat();
5129 if (retval < 0) {
5130 printk(KERN_DEBUG "Problem registering platform driver.");
5131 goto unreg_pci;
5132 }
6fa3eb70
S
5133
5134 #ifdef CONFIG_MTK_XHCI
5135 retval = xhci_attrs_init();
5136 if(retval < 0){
5137 printk(KERN_DEBUG "Problem creating xhci attributes.");
5138 goto unreg_plat;
5139 }
5140
5141 mtk_xhci_wakelock_init();
5142 #endif
5143
98441973
SS
5144 /*
5145 * Check the compiler generated sizes of structures that must be laid
5146 * out in specific ways for hardware access.
5147 */
5148 BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8);
5149 BUILD_BUG_ON(sizeof(struct xhci_slot_ctx) != 8*32/8);
5150 BUILD_BUG_ON(sizeof(struct xhci_ep_ctx) != 8*32/8);
5151 /* xhci_device_control has eight fields, and also
5152 * embeds one xhci_slot_ctx and 31 xhci_ep_ctx
5153 */
98441973
SS
5154 BUILD_BUG_ON(sizeof(struct xhci_stream_ctx) != 4*32/8);
5155 BUILD_BUG_ON(sizeof(union xhci_trb) != 4*32/8);
5156 BUILD_BUG_ON(sizeof(struct xhci_erst_entry) != 4*32/8);
5157 BUILD_BUG_ON(sizeof(struct xhci_cap_regs) != 7*32/8);
5158 BUILD_BUG_ON(sizeof(struct xhci_intr_reg) != 8*32/8);
5159 /* xhci_run_regs has eight fields and embeds 128 xhci_intr_regs */
5160 BUILD_BUG_ON(sizeof(struct xhci_run_regs) != (8+8*128)*32/8);
ad55109f 5161
66d4eadd 5162 return 0;
6fa3eb70
S
5163
5164#ifdef CONFIG_MTK_XHCI
5165unreg_plat:
5166 xhci_unregister_plat();
5167#endif
3429e91a
SAS
5168unreg_pci:
5169 xhci_unregister_pci();
5170 return retval;
66d4eadd
SS
5171}
5172module_init(xhci_hcd_init);
5173
5174static void __exit xhci_hcd_cleanup(void)
5175{
66d4eadd 5176 xhci_unregister_pci();
3429e91a 5177 xhci_unregister_plat();
6fa3eb70 5178 xhci_attrs_exit();
66d4eadd
SS
5179}
5180module_exit(xhci_hcd_cleanup);
6fa3eb70
S
5181#else
5182static int __init xhci_hcd_init(void)
5183{
5184 mtk_xhci_eint_iddig_init();
5185 mtk_xhci_switch_init();
5186 mtk_xhci_wakelock_init();
5187 return 0;
5188}
5189module_init(xhci_hcd_init);
5190
5191static void __exit xhci_hcd_cleanup(void)
5192{
5193}
5194module_exit(xhci_hcd_cleanup);
5195
5196#endif
5197#endif