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