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