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