blob: 5ec74e213dabf10b27e6ec7695d8bb6aa30b7447 [file] [log] [blame]
Sarah Sharp66d4ead2009-04-27 19:52:28 -07001/*
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
Dong Nguyen43b86af2010-07-21 16:56:08 -070023#include <linux/pci.h>
Sarah Sharp66d4ead2009-04-27 19:52:28 -070024#include <linux/irq.h>
Sarah Sharp8df75f42010-04-02 15:34:16 -070025#include <linux/log2.h>
Sarah Sharp66d4ead2009-04-27 19:52:28 -070026#include <linux/module.h>
Sarah Sharpb0567b32009-08-07 14:04:36 -070027#include <linux/moduleparam.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Alexis R. Cortes71c731a2012-08-03 14:00:27 -050029#include <linux/dmi.h>
James Hogan008eb952013-07-26 13:34:43 +010030#include <linux/dma-mapping.h>
Sarah Sharp66d4ead2009-04-27 19:52:28 -070031
32#include "xhci.h"
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +030033#include "xhci-trace.h"
Sarah Sharp66d4ead2009-04-27 19:52:28 -070034
35#define DRIVER_AUTHOR "Sarah Sharp"
36#define DRIVER_DESC "'eXtensible' Host Controller (xHC) Driver"
37
Lu Baolua1377e52014-11-18 11:27:14 +020038#define PORT_WAKE_BITS (PORT_WKOC_E | PORT_WKDISC_E | PORT_WKCONN_E)
39
Sarah Sharpb0567b32009-08-07 14:04:36 -070040/* Some 0.95 hardware can't handle the chain bit on a Link TRB being cleared */
41static int link_quirk;
42module_param(link_quirk, int, S_IRUGO | S_IWUSR);
43MODULE_PARM_DESC(link_quirk, "Don't clear the chain bit on a link TRB");
44
Takashi Iwai4e6a1ee2013-12-09 12:42:48 +010045static unsigned int quirks;
46module_param(quirks, uint, S_IRUGO);
47MODULE_PARM_DESC(quirks, "Bit flags for quirks to be enabled as default");
48
Sarah Sharp66d4ead2009-04-27 19:52:28 -070049/* TODO: copied from ehci-hcd.c - can this be refactored? */
50/*
Sarah Sharp2611bd182012-10-25 13:27:51 -070051 * xhci_handshake - spin reading hc until handshake completes or fails
Sarah Sharp66d4ead2009-04-27 19:52:28 -070052 * @ptr: address of hc register to be read
53 * @mask: bits to look at in result of read
54 * @done: value of those bits when handshake succeeds
55 * @usec: timeout in microseconds
56 *
57 * Returns negative errno, or zero on success
58 *
59 * Success happens when the "mask" bits have the specified value (hardware
60 * handshake done). There are two failure modes: "usec" have passed (major
61 * hardware flakeout), or the register reads as all-ones (hardware removed).
62 */
Lin Wangdc0b1772015-01-09 16:06:28 +020063int xhci_handshake(void __iomem *ptr, u32 mask, u32 done, int usec)
Sarah Sharp66d4ead2009-04-27 19:52:28 -070064{
65 u32 result;
66
67 do {
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +020068 result = readl(ptr);
Sarah Sharp66d4ead2009-04-27 19:52:28 -070069 if (result == ~(u32)0) /* card removed */
70 return -ENODEV;
71 result &= mask;
72 if (result == done)
73 return 0;
74 udelay(1);
75 usec--;
76 } while (usec > 0);
77 return -ETIMEDOUT;
78}
79
80/*
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -070081 * Disable interrupts and begin the xHCI halting process.
82 */
83void xhci_quiesce(struct xhci_hcd *xhci)
84{
85 u32 halted;
86 u32 cmd;
87 u32 mask;
88
89 mask = ~(XHCI_IRQS);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +020090 halted = readl(&xhci->op_regs->status) & STS_HALT;
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -070091 if (!halted)
92 mask &= ~CMD_RUN;
93
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +020094 cmd = readl(&xhci->op_regs->command);
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -070095 cmd &= mask;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +020096 writel(cmd, &xhci->op_regs->command);
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -070097}
98
99/*
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700100 * Force HC into halt state.
101 *
102 * Disable any IRQs and clear the run/stop bit.
103 * HC will complete any current and actively pipelined transactions, and
Andiry Xubdfca502011-01-06 15:43:39 +0800104 * should halt within 16 ms of the run/stop bit being cleared.
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700105 * Read HC Halted bit in the status register to see when the HC is finished.
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700106 */
107int xhci_halt(struct xhci_hcd *xhci)
108{
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800109 int ret;
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300110 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "// Halt the HC");
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -0700111 xhci_quiesce(xhci);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700112
Lin Wangdc0b1772015-01-09 16:06:28 +0200113 ret = xhci_handshake(&xhci->op_regs->status,
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700114 STS_HALT, STS_HALT, XHCI_MAX_HALT_USEC);
Elric Fuc181bc52012-06-27 16:30:57 +0800115 if (!ret) {
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800116 xhci->xhc_state |= XHCI_STATE_HALTED;
Elric Fuc181bc52012-06-27 16:30:57 +0800117 xhci->cmd_ring_state = CMD_RING_STATE_STOPPED;
118 } else
Sarah Sharp5af98bb2012-03-16 12:58:20 -0700119 xhci_warn(xhci, "Host not halted after %u microseconds.\n",
120 XHCI_MAX_HALT_USEC);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800121 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700122}
123
124/*
Sarah Sharped074532010-05-24 13:25:21 -0700125 * Set the run bit and wait for the host to be running.
126 */
Dmitry Torokhov8212a492011-02-08 13:55:59 -0800127static int xhci_start(struct xhci_hcd *xhci)
Sarah Sharped074532010-05-24 13:25:21 -0700128{
129 u32 temp;
130 int ret;
131
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200132 temp = readl(&xhci->op_regs->command);
Sarah Sharped074532010-05-24 13:25:21 -0700133 temp |= (CMD_RUN);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300134 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "// Turn on HC, cmd = 0x%x.",
Sarah Sharped074532010-05-24 13:25:21 -0700135 temp);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200136 writel(temp, &xhci->op_regs->command);
Sarah Sharped074532010-05-24 13:25:21 -0700137
138 /*
139 * Wait for the HCHalted Status bit to be 0 to indicate the host is
140 * running.
141 */
Lin Wangdc0b1772015-01-09 16:06:28 +0200142 ret = xhci_handshake(&xhci->op_regs->status,
Sarah Sharped074532010-05-24 13:25:21 -0700143 STS_HALT, 0, XHCI_MAX_HALT_USEC);
144 if (ret == -ETIMEDOUT)
145 xhci_err(xhci, "Host took too long to start, "
146 "waited %u microseconds.\n",
147 XHCI_MAX_HALT_USEC);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800148 if (!ret)
149 xhci->xhc_state &= ~XHCI_STATE_HALTED;
Sarah Sharped074532010-05-24 13:25:21 -0700150 return ret;
151}
152
153/*
Sarah Sharpac04e6f2011-03-11 08:47:33 -0800154 * Reset a halted HC.
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700155 *
156 * This resets pipelines, timers, counters, state machines, etc.
157 * Transactions will be terminated immediately, and operational registers
158 * will be set to their defaults.
159 */
160int xhci_reset(struct xhci_hcd *xhci)
161{
162 u32 command;
163 u32 state;
Andiry Xuf370b992012-04-14 02:54:30 +0800164 int ret, i;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700165
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200166 state = readl(&xhci->op_regs->status);
Sarah Sharpd3512f62009-07-27 12:03:50 -0700167 if ((state & STS_HALT) == 0) {
168 xhci_warn(xhci, "Host controller not halted, aborting reset.\n");
169 return 0;
170 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700171
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300172 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "// Reset the HC");
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200173 command = readl(&xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700174 command |= CMD_RESET;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200175 writel(command, &xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700176
Lin Wangdc0b1772015-01-09 16:06:28 +0200177 ret = xhci_handshake(&xhci->op_regs->command,
Sarah Sharp22ceac12012-07-23 16:06:08 -0700178 CMD_RESET, 0, 10 * 1000 * 1000);
Sarah Sharp2d62f3e2010-05-24 13:25:15 -0700179 if (ret)
180 return ret;
181
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300182 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
183 "Wait for controller to be ready for doorbell rings");
Sarah Sharp2d62f3e2010-05-24 13:25:15 -0700184 /*
185 * xHCI cannot write to any doorbells or operational registers other
186 * than status until the "Controller Not Ready" flag is cleared.
187 */
Lin Wangdc0b1772015-01-09 16:06:28 +0200188 ret = xhci_handshake(&xhci->op_regs->status,
Sarah Sharp22ceac12012-07-23 16:06:08 -0700189 STS_CNR, 0, 10 * 1000 * 1000);
Andiry Xuf370b992012-04-14 02:54:30 +0800190
191 for (i = 0; i < 2; ++i) {
192 xhci->bus_state[i].port_c_suspend = 0;
193 xhci->bus_state[i].suspended_ports = 0;
194 xhci->bus_state[i].resuming_ports = 0;
195 }
196
197 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700198}
199
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700200#ifdef CONFIG_PCI
201static int xhci_free_msi(struct xhci_hcd *xhci)
Dong Nguyen43b86af2010-07-21 16:56:08 -0700202{
203 int i;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700204
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700205 if (!xhci->msix_entries)
206 return -EINVAL;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700207
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700208 for (i = 0; i < xhci->msix_count; i++)
209 if (xhci->msix_entries[i].vector)
210 free_irq(xhci->msix_entries[i].vector,
211 xhci_to_hcd(xhci));
212 return 0;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700213}
214
215/*
216 * Set up MSI
217 */
218static int xhci_setup_msi(struct xhci_hcd *xhci)
219{
220 int ret;
221 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
222
223 ret = pci_enable_msi(pdev);
224 if (ret) {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300225 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
226 "failed to allocate MSI entry");
Dong Nguyen43b86af2010-07-21 16:56:08 -0700227 return ret;
228 }
229
Alex Shi851ec162013-05-24 10:54:19 +0800230 ret = request_irq(pdev->irq, xhci_msi_irq,
Dong Nguyen43b86af2010-07-21 16:56:08 -0700231 0, "xhci_hcd", xhci_to_hcd(xhci));
232 if (ret) {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300233 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
234 "disable MSI interrupt");
Dong Nguyen43b86af2010-07-21 16:56:08 -0700235 pci_disable_msi(pdev);
236 }
237
238 return ret;
239}
240
241/*
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700242 * Free IRQs
243 * free all IRQs request
244 */
245static void xhci_free_irq(struct xhci_hcd *xhci)
246{
247 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
248 int ret;
249
250 /* return if using legacy interrupt */
Felipe Balbicd704692012-02-29 16:46:23 +0200251 if (xhci_to_hcd(xhci)->irq > 0)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700252 return;
253
254 ret = xhci_free_msi(xhci);
255 if (!ret)
256 return;
Felipe Balbicd704692012-02-29 16:46:23 +0200257 if (pdev->irq > 0)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700258 free_irq(pdev->irq, xhci_to_hcd(xhci));
259
260 return;
261}
262
263/*
Dong Nguyen43b86af2010-07-21 16:56:08 -0700264 * Set up MSI-X
265 */
266static int xhci_setup_msix(struct xhci_hcd *xhci)
267{
268 int i, ret = 0;
Andiry Xu00292272010-12-27 17:39:02 +0800269 struct usb_hcd *hcd = xhci_to_hcd(xhci);
270 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700271
272 /*
273 * calculate number of msi-x vectors supported.
274 * - HCS_MAX_INTRS: the max number of interrupts the host can handle,
275 * with max number of interrupters based on the xhci HCSPARAMS1.
276 * - num_online_cpus: maximum msi-x vectors per CPUs core.
277 * Add additional 1 vector to ensure always available interrupt.
278 */
279 xhci->msix_count = min(num_online_cpus() + 1,
280 HCS_MAX_INTRS(xhci->hcs_params1));
281
282 xhci->msix_entries =
283 kmalloc((sizeof(struct msix_entry))*xhci->msix_count,
Greg Kroah-Hartman86871972010-11-11 09:41:02 -0800284 GFP_KERNEL);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700285 if (!xhci->msix_entries) {
286 xhci_err(xhci, "Failed to allocate MSI-X entries\n");
287 return -ENOMEM;
288 }
Dong Nguyen43b86af2010-07-21 16:56:08 -0700289
290 for (i = 0; i < xhci->msix_count; i++) {
291 xhci->msix_entries[i].entry = i;
292 xhci->msix_entries[i].vector = 0;
293 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700294
Alexander Gordeeva62445a2014-05-08 19:25:58 +0300295 ret = pci_enable_msix_exact(pdev, xhci->msix_entries, xhci->msix_count);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700296 if (ret) {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300297 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
298 "Failed to enable MSI-X");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700299 goto free_entries;
300 }
301
Dong Nguyen43b86af2010-07-21 16:56:08 -0700302 for (i = 0; i < xhci->msix_count; i++) {
303 ret = request_irq(xhci->msix_entries[i].vector,
Alex Shi851ec162013-05-24 10:54:19 +0800304 xhci_msi_irq,
Dong Nguyen43b86af2010-07-21 16:56:08 -0700305 0, "xhci_hcd", xhci_to_hcd(xhci));
306 if (ret)
307 goto disable_msix;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700308 }
Dong Nguyen43b86af2010-07-21 16:56:08 -0700309
Andiry Xu00292272010-12-27 17:39:02 +0800310 hcd->msix_enabled = 1;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700311 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700312
313disable_msix:
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300314 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "disable MSI-X interrupt");
Dong Nguyen43b86af2010-07-21 16:56:08 -0700315 xhci_free_irq(xhci);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700316 pci_disable_msix(pdev);
317free_entries:
318 kfree(xhci->msix_entries);
319 xhci->msix_entries = NULL;
320 return ret;
321}
322
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700323/* Free any IRQs and disable MSI-X */
324static void xhci_cleanup_msix(struct xhci_hcd *xhci)
325{
Andiry Xu00292272010-12-27 17:39:02 +0800326 struct usb_hcd *hcd = xhci_to_hcd(xhci);
327 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700328
Jack Pham90053552013-11-15 14:53:14 -0800329 if (xhci->quirks & XHCI_PLAT)
330 return;
331
Dong Nguyen43b86af2010-07-21 16:56:08 -0700332 xhci_free_irq(xhci);
333
334 if (xhci->msix_entries) {
335 pci_disable_msix(pdev);
336 kfree(xhci->msix_entries);
337 xhci->msix_entries = NULL;
338 } else {
339 pci_disable_msi(pdev);
340 }
341
Andiry Xu00292272010-12-27 17:39:02 +0800342 hcd->msix_enabled = 0;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700343 return;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700344}
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700345
Olof Johanssond5c82fe2013-07-23 11:58:20 -0700346static void __maybe_unused xhci_msix_sync_irqs(struct xhci_hcd *xhci)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700347{
348 int i;
349
350 if (xhci->msix_entries) {
351 for (i = 0; i < xhci->msix_count; i++)
352 synchronize_irq(xhci->msix_entries[i].vector);
353 }
354}
355
356static int xhci_try_enable_msi(struct usb_hcd *hcd)
357{
358 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp52fb6122013-08-08 10:08:34 -0700359 struct pci_dev *pdev;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700360 int ret;
361
Sarah Sharp52fb6122013-08-08 10:08:34 -0700362 /* The xhci platform device has set up IRQs through usb_add_hcd. */
363 if (xhci->quirks & XHCI_PLAT)
364 return 0;
365
366 pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700367 /*
368 * Some Fresco Logic host controllers advertise MSI, but fail to
369 * generate interrupts. Don't even try to enable MSI.
370 */
371 if (xhci->quirks & XHCI_BROKEN_MSI)
Hannes Reinecke00eed9c2013-03-04 17:14:43 +0100372 goto legacy_irq;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700373
374 /* unregister the legacy interrupt */
375 if (hcd->irq)
376 free_irq(hcd->irq, hcd);
Felipe Balbicd704692012-02-29 16:46:23 +0200377 hcd->irq = 0;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700378
379 ret = xhci_setup_msix(xhci);
380 if (ret)
381 /* fall back to msi*/
382 ret = xhci_setup_msi(xhci);
383
384 if (!ret)
Felipe Balbicd704692012-02-29 16:46:23 +0200385 /* hcd->irq is 0, we have MSI */
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700386 return 0;
387
Sarah Sharp68d07f62012-02-13 16:25:57 -0800388 if (!pdev->irq) {
389 xhci_err(xhci, "No msi-x/msi found and no IRQ in BIOS\n");
390 return -EINVAL;
391 }
392
Hannes Reinecke00eed9c2013-03-04 17:14:43 +0100393 legacy_irq:
Adrian Huang79699432014-02-27 11:26:03 +0000394 if (!strlen(hcd->irq_descr))
395 snprintf(hcd->irq_descr, sizeof(hcd->irq_descr), "%s:usb%d",
396 hcd->driver->description, hcd->self.busnum);
397
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700398 /* fall back to legacy interrupt*/
399 ret = request_irq(pdev->irq, &usb_hcd_irq, IRQF_SHARED,
400 hcd->irq_descr, hcd);
401 if (ret) {
402 xhci_err(xhci, "request interrupt %d failed\n",
403 pdev->irq);
404 return ret;
405 }
406 hcd->irq = pdev->irq;
407 return 0;
408}
409
410#else
411
David Cohen01bb59e2014-04-25 19:20:16 +0300412static inline int xhci_try_enable_msi(struct usb_hcd *hcd)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700413{
414 return 0;
415}
416
David Cohen01bb59e2014-04-25 19:20:16 +0300417static inline void xhci_cleanup_msix(struct xhci_hcd *xhci)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700418{
419}
420
David Cohen01bb59e2014-04-25 19:20:16 +0300421static inline void xhci_msix_sync_irqs(struct xhci_hcd *xhci)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700422{
423}
424
425#endif
426
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500427static void compliance_mode_recovery(unsigned long arg)
428{
429 struct xhci_hcd *xhci;
430 struct usb_hcd *hcd;
431 u32 temp;
432 int i;
433
434 xhci = (struct xhci_hcd *)arg;
435
436 for (i = 0; i < xhci->num_usb3_ports; i++) {
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200437 temp = readl(xhci->usb3_ports[i]);
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500438 if ((temp & PORT_PLS_MASK) == USB_SS_PORT_LS_COMP_MOD) {
439 /*
440 * Compliance Mode Detected. Letting USB Core
441 * handle the Warm Reset
442 */
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300443 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
444 "Compliance mode detected->port %d",
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500445 i + 1);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300446 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
447 "Attempting compliance mode recovery");
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500448 hcd = xhci->shared_hcd;
449
450 if (hcd->state == HC_STATE_SUSPENDED)
451 usb_hcd_resume_root_hub(hcd);
452
453 usb_hcd_poll_rh_status(hcd);
454 }
455 }
456
457 if (xhci->port_status_u0 != ((1 << xhci->num_usb3_ports)-1))
458 mod_timer(&xhci->comp_mode_recovery_timer,
459 jiffies + msecs_to_jiffies(COMP_MODE_RCVRY_MSECS));
460}
461
462/*
463 * Quirk to work around issue generated by the SN65LVPE502CP USB3.0 re-driver
464 * that causes ports behind that hardware to enter compliance mode sometimes.
465 * The quirk creates a timer that polls every 2 seconds the link state of
466 * each host controller's port and recovers it by issuing a Warm reset
467 * if Compliance mode is detected, otherwise the port will become "dead" (no
468 * device connections or disconnections will be detected anymore). Becasue no
469 * status event is generated when entering compliance mode (per xhci spec),
470 * this quirk is needed on systems that have the failing hardware installed.
471 */
472static void compliance_mode_recovery_timer_init(struct xhci_hcd *xhci)
473{
474 xhci->port_status_u0 = 0;
475 init_timer(&xhci->comp_mode_recovery_timer);
476
477 xhci->comp_mode_recovery_timer.data = (unsigned long) xhci;
478 xhci->comp_mode_recovery_timer.function = compliance_mode_recovery;
479 xhci->comp_mode_recovery_timer.expires = jiffies +
480 msecs_to_jiffies(COMP_MODE_RCVRY_MSECS);
481
482 set_timer_slack(&xhci->comp_mode_recovery_timer,
483 msecs_to_jiffies(COMP_MODE_RCVRY_MSECS));
484 add_timer(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300485 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
486 "Compliance mode recovery timer initialized");
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500487}
488
489/*
490 * This function identifies the systems that have installed the SN65LVPE502CP
491 * USB3.0 re-driver and that need the Compliance Mode Quirk.
492 * Systems:
493 * Vendor: Hewlett-Packard -> System Models: Z420, Z620 and Z820
494 */
Andrew Brestickere1cd9722014-10-03 11:35:27 +0300495static bool xhci_compliance_mode_recovery_timer_quirk_check(void)
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500496{
497 const char *dmi_product_name, *dmi_sys_vendor;
498
499 dmi_product_name = dmi_get_system_info(DMI_PRODUCT_NAME);
500 dmi_sys_vendor = dmi_get_system_info(DMI_SYS_VENDOR);
Vivek Gautam457a73d2012-09-22 18:11:19 +0530501 if (!dmi_product_name || !dmi_sys_vendor)
502 return false;
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500503
504 if (!(strstr(dmi_sys_vendor, "Hewlett-Packard")))
505 return false;
506
507 if (strstr(dmi_product_name, "Z420") ||
508 strstr(dmi_product_name, "Z620") ||
Alexis R. Cortes47080972012-10-17 14:09:12 -0500509 strstr(dmi_product_name, "Z820") ||
Alexis R. Cortesb0e4e602012-11-08 16:59:27 -0600510 strstr(dmi_product_name, "Z1 Workstation"))
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500511 return true;
512
513 return false;
514}
515
516static int xhci_all_ports_seen_u0(struct xhci_hcd *xhci)
517{
518 return (xhci->port_status_u0 == ((1 << xhci->num_usb3_ports)-1));
519}
520
521
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700522/*
523 * Initialize memory for HCD and xHC (one-time init).
524 *
525 * Program the PAGESIZE register, initialize the device context array, create
526 * device contexts (?), set up a command ring segment (or two?), create event
527 * ring (one for now).
528 */
529int xhci_init(struct usb_hcd *hcd)
530{
531 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
532 int retval = 0;
533
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300534 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "xhci_init");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700535 spin_lock_init(&xhci->lock);
Sebastian Andrzej Siewiord7826592011-09-13 16:41:10 -0700536 if (xhci->hci_version == 0x95 && link_quirk) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300537 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
538 "QUIRK: Not clearing Link TRB chain bits.");
Sarah Sharpb0567b32009-08-07 14:04:36 -0700539 xhci->quirks |= XHCI_LINK_TRB_QUIRK;
540 } else {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300541 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
542 "xHCI doesn't need link TRB QUIRK");
Sarah Sharpb0567b32009-08-07 14:04:36 -0700543 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700544 retval = xhci_mem_init(xhci, GFP_KERNEL);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300545 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "Finished xhci_init");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700546
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500547 /* Initializing Compliance Mode Recovery Data If Needed */
Sarah Sharpc3897aa2013-04-18 10:02:03 -0700548 if (xhci_compliance_mode_recovery_timer_quirk_check()) {
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500549 xhci->quirks |= XHCI_COMP_MODE_QUIRK;
550 compliance_mode_recovery_timer_init(xhci);
551 }
552
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700553 return retval;
554}
555
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700556/*-------------------------------------------------------------------------*/
557
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700558
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800559static int xhci_run_finished(struct xhci_hcd *xhci)
560{
561 if (xhci_start(xhci)) {
562 xhci_halt(xhci);
563 return -ENODEV;
564 }
565 xhci->shared_hcd->state = HC_STATE_RUNNING;
Elric Fuc181bc52012-06-27 16:30:57 +0800566 xhci->cmd_ring_state = CMD_RING_STATE_RUNNING;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800567
568 if (xhci->quirks & XHCI_NEC_HOST)
569 xhci_ring_cmd_db(xhci);
570
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300571 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
572 "Finished xhci_run for USB3 roothub");
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800573 return 0;
574}
575
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700576/*
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700577 * Start the HC after it was halted.
578 *
579 * This function is called by the USB core when the HC driver is added.
580 * Its opposite is xhci_stop().
581 *
582 * xhci_init() must be called once before this function can be called.
583 * Reset the HC, enable device slot contexts, program DCBAAP, and
584 * set command ring pointer and event ring pointer.
585 *
586 * Setup MSI-X vectors and enable interrupts.
587 */
588int xhci_run(struct usb_hcd *hcd)
589{
590 u32 temp;
Sarah Sharp8e595a52009-07-27 12:03:31 -0700591 u64 temp_64;
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700592 int ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700593 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700594
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800595 /* Start the xHCI host controller running only after the USB 2.0 roothub
596 * is setup.
597 */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700598
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700599 hcd->uses_new_polling = 1;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800600 if (!usb_hcd_is_primary_hcd(hcd))
601 return xhci_run_finished(xhci);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700602
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300603 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "xhci_run");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700604
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700605 ret = xhci_try_enable_msi(hcd);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700606 if (ret)
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700607 return ret;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700608
Sarah Sharp66e49d82009-07-27 12:03:46 -0700609 xhci_dbg(xhci, "Command ring memory map follows:\n");
610 xhci_debug_ring(xhci, xhci->cmd_ring);
611 xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring);
612 xhci_dbg_cmd_ptrs(xhci);
613
614 xhci_dbg(xhci, "ERST memory map follows:\n");
615 xhci_dbg_erst(xhci, &xhci->erst);
616 xhci_dbg(xhci, "Event ring:\n");
617 xhci_debug_ring(xhci, xhci->event_ring);
618 xhci_dbg_ring_ptrs(xhci, xhci->event_ring);
Sarah Sharpf7b2e402014-01-30 13:27:49 -0800619 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
Sarah Sharp66e49d82009-07-27 12:03:46 -0700620 temp_64 &= ~ERST_PTR_MASK;
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300621 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
622 "ERST deq = 64'h%0lx", (long unsigned int) temp_64);
Sarah Sharp66e49d82009-07-27 12:03:46 -0700623
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300624 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
625 "// Set the interrupt modulation register");
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200626 temp = readl(&xhci->ir_set->irq_control);
Sarah Sharpa4d88302009-05-14 11:44:26 -0700627 temp &= ~ER_IRQ_INTERVAL_MASK;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700628 temp |= (u32) 160;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200629 writel(temp, &xhci->ir_set->irq_control);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700630
631 /* Set the HCD state before we enable the irqs */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200632 temp = readl(&xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700633 temp |= (CMD_EIE);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300634 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
635 "// Enable interrupts, cmd = 0x%x.", temp);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200636 writel(temp, &xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700637
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200638 temp = readl(&xhci->ir_set->irq_pending);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300639 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
640 "// Enabling event ring interrupter %p by writing 0x%x to irq_pending",
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700641 xhci->ir_set, (unsigned int) ER_IRQ_ENABLE(temp));
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200642 writel(ER_IRQ_ENABLE(temp), &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800643 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700644
Mathias Nymanddba5cd2014-05-08 19:26:00 +0300645 if (xhci->quirks & XHCI_NEC_HOST) {
646 struct xhci_command *command;
647 command = xhci_alloc_command(xhci, false, false, GFP_KERNEL);
648 if (!command)
649 return -ENOMEM;
650 xhci_queue_vendor_command(xhci, command, 0, 0, 0,
Sarah Sharp02386342010-05-24 13:25:28 -0700651 TRB_TYPE(TRB_NEC_GET_FW));
Mathias Nymanddba5cd2014-05-08 19:26:00 +0300652 }
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300653 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
654 "Finished xhci_run for USB2 roothub");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700655 return 0;
656}
Andrew Bresticker436e8c72014-10-03 11:35:28 +0300657EXPORT_SYMBOL_GPL(xhci_run);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700658
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800659static void xhci_only_stop_hcd(struct usb_hcd *hcd)
660{
661 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
662
663 spin_lock_irq(&xhci->lock);
664 xhci_halt(xhci);
665
666 /* The shared_hcd is going to be deallocated shortly (the USB core only
667 * calls this function when allocation fails in usb_add_hcd(), or
668 * usb_remove_hcd() is called). So we need to unset xHCI's pointer.
669 */
670 xhci->shared_hcd = NULL;
671 spin_unlock_irq(&xhci->lock);
672}
673
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700674/*
675 * Stop xHCI driver.
676 *
677 * This function is called by the USB core when the HC driver is removed.
678 * Its opposite is xhci_run().
679 *
680 * Disable device contexts, disable IRQs, and quiesce the HC.
681 * Reset the HC, finish any completed transactions, and cleanup memory.
682 */
683void xhci_stop(struct usb_hcd *hcd)
684{
685 u32 temp;
686 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
687
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800688 if (!usb_hcd_is_primary_hcd(hcd)) {
689 xhci_only_stop_hcd(xhci->shared_hcd);
690 return;
691 }
692
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700693 spin_lock_irq(&xhci->lock);
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800694 /* Make sure the xHC is halted for a USB3 roothub
695 * (xhci_stop() could be called as part of failed init).
696 */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700697 xhci_halt(xhci);
698 xhci_reset(xhci);
699 spin_unlock_irq(&xhci->lock);
700
Zhang Rui40a9fb12010-12-17 13:17:04 -0800701 xhci_cleanup_msix(xhci);
702
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500703 /* Deleting Compliance Mode Recovery Timer */
704 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
Tony Camuso58b1d792013-04-05 14:27:07 -0400705 (!(xhci_all_ports_seen_u0(xhci)))) {
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500706 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300707 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
708 "%s: compliance mode recovery timer deleted",
Tony Camuso58b1d792013-04-05 14:27:07 -0400709 __func__);
710 }
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500711
Andiry Xuc41136b2011-03-22 17:08:14 +0800712 if (xhci->quirks & XHCI_AMD_PLL_FIX)
713 usb_amd_dev_put();
714
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300715 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
716 "// Disabling event ring interrupts");
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200717 temp = readl(&xhci->op_regs->status);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200718 writel(temp & ~STS_EINT, &xhci->op_regs->status);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200719 temp = readl(&xhci->ir_set->irq_pending);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200720 writel(ER_IRQ_DISABLE(temp), &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800721 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700722
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300723 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "cleaning up memory");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700724 xhci_mem_cleanup(xhci);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300725 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
726 "xhci_stop completed - status = %x",
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200727 readl(&xhci->op_regs->status));
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700728}
729
730/*
731 * Shutdown HC (not bus-specific)
732 *
733 * This is called when the machine is rebooting or halting. We assume that the
734 * machine will be powered off, and the HC's internal state will be reset.
735 * Don't bother to free memory.
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800736 *
737 * This will only ever be called with the main usb_hcd (the USB3 roothub).
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700738 */
739void xhci_shutdown(struct usb_hcd *hcd)
740{
741 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
742
Dan Carpenter052c7f92012-08-13 19:57:03 +0300743 if (xhci->quirks & XHCI_SPURIOUS_REBOOT)
Sarah Sharpe95829f2012-07-23 18:59:30 +0300744 usb_disable_xhci_ports(to_pci_dev(hcd->self.controller));
745
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700746 spin_lock_irq(&xhci->lock);
747 xhci_halt(xhci);
Takashi Iwai638298d2013-09-12 08:11:06 +0200748 /* Workaround for spurious wakeups at shutdown with HSW */
749 if (xhci->quirks & XHCI_SPURIOUS_WAKEUP)
750 xhci_reset(xhci);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700751 spin_unlock_irq(&xhci->lock);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700752
Zhang Rui40a9fb12010-12-17 13:17:04 -0800753 xhci_cleanup_msix(xhci);
754
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300755 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
756 "xhci_shutdown completed - status = %x",
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200757 readl(&xhci->op_regs->status));
Takashi Iwai638298d2013-09-12 08:11:06 +0200758
759 /* Yet another workaround for spurious wakeups at shutdown with HSW */
760 if (xhci->quirks & XHCI_SPURIOUS_WAKEUP)
761 pci_set_power_state(to_pci_dev(hcd->self.controller), PCI_D3hot);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700762}
763
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -0700764#ifdef CONFIG_PM
Andiry Xu5535b1d52010-10-14 07:23:06 -0700765static void xhci_save_registers(struct xhci_hcd *xhci)
766{
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200767 xhci->s3.command = readl(&xhci->op_regs->command);
768 xhci->s3.dev_nt = readl(&xhci->op_regs->dev_notification);
Sarah Sharpf7b2e402014-01-30 13:27:49 -0800769 xhci->s3.dcbaa_ptr = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200770 xhci->s3.config_reg = readl(&xhci->op_regs->config_reg);
771 xhci->s3.erst_size = readl(&xhci->ir_set->erst_size);
Sarah Sharpf7b2e402014-01-30 13:27:49 -0800772 xhci->s3.erst_base = xhci_read_64(xhci, &xhci->ir_set->erst_base);
773 xhci->s3.erst_dequeue = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200774 xhci->s3.irq_pending = readl(&xhci->ir_set->irq_pending);
775 xhci->s3.irq_control = readl(&xhci->ir_set->irq_control);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700776}
777
778static void xhci_restore_registers(struct xhci_hcd *xhci)
779{
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200780 writel(xhci->s3.command, &xhci->op_regs->command);
781 writel(xhci->s3.dev_nt, &xhci->op_regs->dev_notification);
Sarah Sharp477632d2014-01-29 14:02:00 -0800782 xhci_write_64(xhci, xhci->s3.dcbaa_ptr, &xhci->op_regs->dcbaa_ptr);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200783 writel(xhci->s3.config_reg, &xhci->op_regs->config_reg);
784 writel(xhci->s3.erst_size, &xhci->ir_set->erst_size);
Sarah Sharp477632d2014-01-29 14:02:00 -0800785 xhci_write_64(xhci, xhci->s3.erst_base, &xhci->ir_set->erst_base);
786 xhci_write_64(xhci, xhci->s3.erst_dequeue, &xhci->ir_set->erst_dequeue);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200787 writel(xhci->s3.irq_pending, &xhci->ir_set->irq_pending);
788 writel(xhci->s3.irq_control, &xhci->ir_set->irq_control);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700789}
790
Sarah Sharp89821322010-11-12 11:59:31 -0800791static void xhci_set_cmd_ring_deq(struct xhci_hcd *xhci)
792{
793 u64 val_64;
794
795 /* step 2: initialize command ring buffer */
Sarah Sharpf7b2e402014-01-30 13:27:49 -0800796 val_64 = xhci_read_64(xhci, &xhci->op_regs->cmd_ring);
Sarah Sharp89821322010-11-12 11:59:31 -0800797 val_64 = (val_64 & (u64) CMD_RING_RSVD_BITS) |
798 (xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
799 xhci->cmd_ring->dequeue) &
800 (u64) ~CMD_RING_RSVD_BITS) |
801 xhci->cmd_ring->cycle_state;
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300802 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
803 "// Setting command ring address to 0x%llx",
Sarah Sharp89821322010-11-12 11:59:31 -0800804 (long unsigned long) val_64);
Sarah Sharp477632d2014-01-29 14:02:00 -0800805 xhci_write_64(xhci, val_64, &xhci->op_regs->cmd_ring);
Sarah Sharp89821322010-11-12 11:59:31 -0800806}
807
808/*
809 * The whole command ring must be cleared to zero when we suspend the host.
810 *
811 * The host doesn't save the command ring pointer in the suspend well, so we
812 * need to re-program it on resume. Unfortunately, the pointer must be 64-byte
813 * aligned, because of the reserved bits in the command ring dequeue pointer
814 * register. Therefore, we can't just set the dequeue pointer back in the
815 * middle of the ring (TRBs are 16-byte aligned).
816 */
817static void xhci_clear_command_ring(struct xhci_hcd *xhci)
818{
819 struct xhci_ring *ring;
820 struct xhci_segment *seg;
821
822 ring = xhci->cmd_ring;
823 seg = ring->deq_seg;
824 do {
Andiry Xu158886c2011-11-30 16:37:41 +0800825 memset(seg->trbs, 0,
826 sizeof(union xhci_trb) * (TRBS_PER_SEGMENT - 1));
827 seg->trbs[TRBS_PER_SEGMENT - 1].link.control &=
828 cpu_to_le32(~TRB_CYCLE);
Sarah Sharp89821322010-11-12 11:59:31 -0800829 seg = seg->next;
830 } while (seg != ring->deq_seg);
831
832 /* Reset the software enqueue and dequeue pointers */
833 ring->deq_seg = ring->first_seg;
834 ring->dequeue = ring->first_seg->trbs;
835 ring->enq_seg = ring->deq_seg;
836 ring->enqueue = ring->dequeue;
837
Andiry Xub008df62012-03-05 17:49:34 +0800838 ring->num_trbs_free = ring->num_segs * (TRBS_PER_SEGMENT - 1) - 1;
Sarah Sharp89821322010-11-12 11:59:31 -0800839 /*
840 * Ring is now zeroed, so the HW should look for change of ownership
841 * when the cycle bit is set to 1.
842 */
843 ring->cycle_state = 1;
844
845 /*
846 * Reset the hardware dequeue pointer.
847 * Yes, this will need to be re-written after resume, but we're paranoid
848 * and want to make sure the hardware doesn't access bogus memory
849 * because, say, the BIOS or an SMI started the host without changing
850 * the command ring pointers.
851 */
852 xhci_set_cmd_ring_deq(xhci);
853}
854
Lu Baolua1377e52014-11-18 11:27:14 +0200855static void xhci_disable_port_wake_on_bits(struct xhci_hcd *xhci)
856{
857 int port_index;
858 __le32 __iomem **port_array;
859 unsigned long flags;
860 u32 t1, t2;
861
862 spin_lock_irqsave(&xhci->lock, flags);
863
864 /* disble usb3 ports Wake bits*/
865 port_index = xhci->num_usb3_ports;
866 port_array = xhci->usb3_ports;
867 while (port_index--) {
868 t1 = readl(port_array[port_index]);
869 t1 = xhci_port_state_to_neutral(t1);
870 t2 = t1 & ~PORT_WAKE_BITS;
871 if (t1 != t2)
872 writel(t2, port_array[port_index]);
873 }
874
875 /* disble usb2 ports Wake bits*/
876 port_index = xhci->num_usb2_ports;
877 port_array = xhci->usb2_ports;
878 while (port_index--) {
879 t1 = readl(port_array[port_index]);
880 t1 = xhci_port_state_to_neutral(t1);
881 t2 = t1 & ~PORT_WAKE_BITS;
882 if (t1 != t2)
883 writel(t2, port_array[port_index]);
884 }
885
886 spin_unlock_irqrestore(&xhci->lock, flags);
887}
888
Andiry Xu5535b1d52010-10-14 07:23:06 -0700889/*
890 * Stop HC (not bus-specific)
891 *
892 * This is called when the machine transition into S3/S4 mode.
893 *
894 */
Lu Baolua1377e52014-11-18 11:27:14 +0200895int xhci_suspend(struct xhci_hcd *xhci, bool do_wakeup)
Andiry Xu5535b1d52010-10-14 07:23:06 -0700896{
897 int rc = 0;
Oliver Neukum455f5892013-09-30 15:50:54 +0200898 unsigned int delay = XHCI_MAX_HALT_USEC;
Andiry Xu5535b1d52010-10-14 07:23:06 -0700899 struct usb_hcd *hcd = xhci_to_hcd(xhci);
900 u32 command;
901
Felipe Balbi77b84762012-10-19 10:55:16 +0300902 if (hcd->state != HC_STATE_SUSPENDED ||
903 xhci->shared_hcd->state != HC_STATE_SUSPENDED)
904 return -EINVAL;
905
Lu Baolua1377e52014-11-18 11:27:14 +0200906 /* Clear root port wake on bits if wakeup not allowed. */
907 if (!do_wakeup)
908 xhci_disable_port_wake_on_bits(xhci);
909
Sarah Sharpc52804a2012-11-27 12:30:23 -0800910 /* Don't poll the roothubs on bus suspend. */
911 xhci_dbg(xhci, "%s: stopping port polling.\n", __func__);
912 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
913 del_timer_sync(&hcd->rh_timer);
Al Cooper14e61a12014-08-20 16:41:57 +0300914 clear_bit(HCD_FLAG_POLL_RH, &xhci->shared_hcd->flags);
915 del_timer_sync(&xhci->shared_hcd->rh_timer);
Sarah Sharpc52804a2012-11-27 12:30:23 -0800916
Andiry Xu5535b1d52010-10-14 07:23:06 -0700917 spin_lock_irq(&xhci->lock);
918 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Sarah Sharpb32093792011-03-07 11:24:07 -0800919 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700920 /* step 1: stop endpoint */
921 /* skipped assuming that port suspend has done */
922
923 /* step 2: clear Run/Stop bit */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200924 command = readl(&xhci->op_regs->command);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700925 command &= ~CMD_RUN;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200926 writel(command, &xhci->op_regs->command);
Oliver Neukum455f5892013-09-30 15:50:54 +0200927
928 /* Some chips from Fresco Logic need an extraordinary delay */
929 delay *= (xhci->quirks & XHCI_SLOW_SUSPEND) ? 10 : 1;
930
Lin Wangdc0b1772015-01-09 16:06:28 +0200931 if (xhci_handshake(&xhci->op_regs->status,
Oliver Neukum455f5892013-09-30 15:50:54 +0200932 STS_HALT, STS_HALT, delay)) {
Andiry Xu5535b1d52010-10-14 07:23:06 -0700933 xhci_warn(xhci, "WARN: xHC CMD_RUN timeout\n");
934 spin_unlock_irq(&xhci->lock);
935 return -ETIMEDOUT;
936 }
Sarah Sharp89821322010-11-12 11:59:31 -0800937 xhci_clear_command_ring(xhci);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700938
939 /* step 3: save registers */
940 xhci_save_registers(xhci);
941
942 /* step 4: set CSS flag */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200943 command = readl(&xhci->op_regs->command);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700944 command |= CMD_CSS;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200945 writel(command, &xhci->op_regs->command);
Lin Wangdc0b1772015-01-09 16:06:28 +0200946 if (xhci_handshake(&xhci->op_regs->status,
Sarah Sharp2611bd182012-10-25 13:27:51 -0700947 STS_SAVE, 0, 10 * 1000)) {
Andiry Xu622eb782012-06-13 10:51:57 +0800948 xhci_warn(xhci, "WARN: xHC save state timeout\n");
Andiry Xu5535b1d52010-10-14 07:23:06 -0700949 spin_unlock_irq(&xhci->lock);
950 return -ETIMEDOUT;
951 }
Andiry Xu5535b1d52010-10-14 07:23:06 -0700952 spin_unlock_irq(&xhci->lock);
953
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500954 /*
955 * Deleting Compliance Mode Recovery Timer because the xHCI Host
956 * is about to be suspended.
957 */
958 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
959 (!(xhci_all_ports_seen_u0(xhci)))) {
960 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300961 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
962 "%s: compliance mode recovery timer deleted",
Tony Camuso58b1d792013-04-05 14:27:07 -0400963 __func__);
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500964 }
965
Andiry Xu00292272010-12-27 17:39:02 +0800966 /* step 5: remove core well power */
967 /* synchronize irq when using MSI-X */
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700968 xhci_msix_sync_irqs(xhci);
Andiry Xu00292272010-12-27 17:39:02 +0800969
Andiry Xu5535b1d52010-10-14 07:23:06 -0700970 return rc;
971}
Andrew Bresticker436e8c72014-10-03 11:35:28 +0300972EXPORT_SYMBOL_GPL(xhci_suspend);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700973
974/*
975 * start xHC (not bus-specific)
976 *
977 * This is called when the machine transition from S3/S4 mode.
978 *
979 */
980int xhci_resume(struct xhci_hcd *xhci, bool hibernated)
981{
Wang, Yud6236f62014-06-24 17:14:44 +0300982 u32 command, temp = 0, status;
Andiry Xu5535b1d52010-10-14 07:23:06 -0700983 struct usb_hcd *hcd = xhci_to_hcd(xhci);
Sarah Sharp65b22f92010-12-17 12:35:05 -0800984 struct usb_hcd *secondary_hcd;
Alan Sternf69e31202011-11-03 11:37:10 -0400985 int retval = 0;
Tony Camuso77df9e02013-02-21 16:11:27 -0500986 bool comp_timer_running = false;
Andiry Xu5535b1d52010-10-14 07:23:06 -0700987
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800988 /* Wait a bit if either of the roothubs need to settle from the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300989 * transition into bus suspend.
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800990 */
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800991 if (time_before(jiffies, xhci->bus_state[0].next_statechange) ||
992 time_before(jiffies,
993 xhci->bus_state[1].next_statechange))
Andiry Xu5535b1d52010-10-14 07:23:06 -0700994 msleep(100);
995
Alan Sternf69e31202011-11-03 11:37:10 -0400996 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
997 set_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
998
Andiry Xu5535b1d52010-10-14 07:23:06 -0700999 spin_lock_irq(&xhci->lock);
Maarten Lankhorstc877b3b2011-06-15 23:47:21 +02001000 if (xhci->quirks & XHCI_RESET_ON_RESUME)
1001 hibernated = true;
Andiry Xu5535b1d52010-10-14 07:23:06 -07001002
1003 if (!hibernated) {
1004 /* step 1: restore register */
1005 xhci_restore_registers(xhci);
1006 /* step 2: initialize command ring buffer */
Sarah Sharp89821322010-11-12 11:59:31 -08001007 xhci_set_cmd_ring_deq(xhci);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001008 /* step 3: restore state and start state*/
1009 /* step 3: set CRS flag */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001010 command = readl(&xhci->op_regs->command);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001011 command |= CMD_CRS;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02001012 writel(command, &xhci->op_regs->command);
Lin Wangdc0b1772015-01-09 16:06:28 +02001013 if (xhci_handshake(&xhci->op_regs->status,
Andiry Xu622eb782012-06-13 10:51:57 +08001014 STS_RESTORE, 0, 10 * 1000)) {
1015 xhci_warn(xhci, "WARN: xHC restore state timeout\n");
Andiry Xu5535b1d52010-10-14 07:23:06 -07001016 spin_unlock_irq(&xhci->lock);
1017 return -ETIMEDOUT;
1018 }
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001019 temp = readl(&xhci->op_regs->status);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001020 }
1021
1022 /* If restore operation fails, re-initialize the HC during resume */
1023 if ((temp & STS_SRE) || hibernated) {
Tony Camuso77df9e02013-02-21 16:11:27 -05001024
1025 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
1026 !(xhci_all_ports_seen_u0(xhci))) {
1027 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001028 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1029 "Compliance Mode Recovery Timer deleted!");
Tony Camuso77df9e02013-02-21 16:11:27 -05001030 }
1031
Sarah Sharpfedd3832011-04-12 17:43:19 -07001032 /* Let the USB core know _both_ roothubs lost power. */
1033 usb_root_hub_lost_power(xhci->main_hcd->self.root_hub);
1034 usb_root_hub_lost_power(xhci->shared_hcd->self.root_hub);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001035
1036 xhci_dbg(xhci, "Stop HCD\n");
1037 xhci_halt(xhci);
1038 xhci_reset(xhci);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001039 spin_unlock_irq(&xhci->lock);
Andiry Xu00292272010-12-27 17:39:02 +08001040 xhci_cleanup_msix(xhci);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001041
Andiry Xu5535b1d52010-10-14 07:23:06 -07001042 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001043 temp = readl(&xhci->op_regs->status);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02001044 writel(temp & ~STS_EINT, &xhci->op_regs->status);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001045 temp = readl(&xhci->ir_set->irq_pending);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02001046 writel(ER_IRQ_DISABLE(temp), &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -08001047 xhci_print_ir_set(xhci, 0);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001048
1049 xhci_dbg(xhci, "cleaning up memory\n");
1050 xhci_mem_cleanup(xhci);
1051 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001052 readl(&xhci->op_regs->status));
Andiry Xu5535b1d52010-10-14 07:23:06 -07001053
Sarah Sharp65b22f92010-12-17 12:35:05 -08001054 /* USB core calls the PCI reinit and start functions twice:
1055 * first with the primary HCD, and then with the secondary HCD.
1056 * If we don't do the same, the host will never be started.
1057 */
1058 if (!usb_hcd_is_primary_hcd(hcd))
1059 secondary_hcd = hcd;
1060 else
1061 secondary_hcd = xhci->shared_hcd;
1062
1063 xhci_dbg(xhci, "Initialize the xhci_hcd\n");
1064 retval = xhci_init(hcd->primary_hcd);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001065 if (retval)
1066 return retval;
Tony Camuso77df9e02013-02-21 16:11:27 -05001067 comp_timer_running = true;
1068
Sarah Sharp65b22f92010-12-17 12:35:05 -08001069 xhci_dbg(xhci, "Start the primary HCD\n");
1070 retval = xhci_run(hcd->primary_hcd);
Sarah Sharpb32093792011-03-07 11:24:07 -08001071 if (!retval) {
Alan Sternf69e31202011-11-03 11:37:10 -04001072 xhci_dbg(xhci, "Start the secondary HCD\n");
1073 retval = xhci_run(secondary_hcd);
Sarah Sharpb32093792011-03-07 11:24:07 -08001074 }
Andiry Xu5535b1d52010-10-14 07:23:06 -07001075 hcd->state = HC_STATE_SUSPENDED;
Sarah Sharpb32093792011-03-07 11:24:07 -08001076 xhci->shared_hcd->state = HC_STATE_SUSPENDED;
Alan Sternf69e31202011-11-03 11:37:10 -04001077 goto done;
Andiry Xu5535b1d52010-10-14 07:23:06 -07001078 }
1079
Andiry Xu5535b1d52010-10-14 07:23:06 -07001080 /* step 4: set Run/Stop bit */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001081 command = readl(&xhci->op_regs->command);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001082 command |= CMD_RUN;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02001083 writel(command, &xhci->op_regs->command);
Lin Wangdc0b1772015-01-09 16:06:28 +02001084 xhci_handshake(&xhci->op_regs->status, STS_HALT,
Andiry Xu5535b1d52010-10-14 07:23:06 -07001085 0, 250 * 1000);
1086
1087 /* step 5: walk topology and initialize portsc,
1088 * portpmsc and portli
1089 */
1090 /* this is done in bus_resume */
1091
1092 /* step 6: restart each of the previously
1093 * Running endpoints by ringing their doorbells
1094 */
1095
Andiry Xu5535b1d52010-10-14 07:23:06 -07001096 spin_unlock_irq(&xhci->lock);
Alan Sternf69e31202011-11-03 11:37:10 -04001097
1098 done:
1099 if (retval == 0) {
Wang, Yud6236f62014-06-24 17:14:44 +03001100 /* Resume root hubs only when have pending events. */
1101 status = readl(&xhci->op_regs->status);
1102 if (status & STS_EINT) {
1103 usb_hcd_resume_root_hub(hcd);
1104 usb_hcd_resume_root_hub(xhci->shared_hcd);
1105 }
Alan Sternf69e31202011-11-03 11:37:10 -04001106 }
Alexis R. Cortes71c731a2012-08-03 14:00:27 -05001107
1108 /*
1109 * If system is subject to the Quirk, Compliance Mode Timer needs to
1110 * be re-initialized Always after a system resume. Ports are subject
1111 * to suffer the Compliance Mode issue again. It doesn't matter if
1112 * ports have entered previously to U0 before system's suspension.
1113 */
Tony Camuso77df9e02013-02-21 16:11:27 -05001114 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) && !comp_timer_running)
Alexis R. Cortes71c731a2012-08-03 14:00:27 -05001115 compliance_mode_recovery_timer_init(xhci);
1116
Sarah Sharpc52804a2012-11-27 12:30:23 -08001117 /* Re-enable port polling. */
1118 xhci_dbg(xhci, "%s: starting port polling.\n", __func__);
1119 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
1120 usb_hcd_poll_rh_status(hcd);
Al Cooper14e61a12014-08-20 16:41:57 +03001121 set_bit(HCD_FLAG_POLL_RH, &xhci->shared_hcd->flags);
1122 usb_hcd_poll_rh_status(xhci->shared_hcd);
Sarah Sharpc52804a2012-11-27 12:30:23 -08001123
Alan Sternf69e31202011-11-03 11:37:10 -04001124 return retval;
Andiry Xu5535b1d52010-10-14 07:23:06 -07001125}
Andrew Bresticker436e8c72014-10-03 11:35:28 +03001126EXPORT_SYMBOL_GPL(xhci_resume);
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -07001127#endif /* CONFIG_PM */
1128
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001129/*-------------------------------------------------------------------------*/
1130
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001131/**
1132 * xhci_get_endpoint_index - Used for passing endpoint bitmasks between the core and
1133 * HCDs. Find the index for an endpoint given its descriptor. Use the return
1134 * value to right shift 1 for the bitmask.
1135 *
1136 * Index = (epnum * 2) + direction - 1,
1137 * where direction = 0 for OUT, 1 for IN.
1138 * For control endpoints, the IN index is used (OUT index is unused), so
1139 * index = (epnum * 2) + direction - 1 = (epnum * 2) + 1 - 1 = (epnum * 2)
1140 */
1141unsigned int xhci_get_endpoint_index(struct usb_endpoint_descriptor *desc)
1142{
1143 unsigned int index;
1144 if (usb_endpoint_xfer_control(desc))
1145 index = (unsigned int) (usb_endpoint_num(desc)*2);
1146 else
1147 index = (unsigned int) (usb_endpoint_num(desc)*2) +
1148 (usb_endpoint_dir_in(desc) ? 1 : 0) - 1;
1149 return index;
1150}
1151
Julius Werner01c5f442013-04-15 15:55:04 -07001152/* The reverse operation to xhci_get_endpoint_index. Calculate the USB endpoint
1153 * address from the XHCI endpoint index.
1154 */
1155unsigned int xhci_get_endpoint_address(unsigned int ep_index)
1156{
1157 unsigned int number = DIV_ROUND_UP(ep_index, 2);
1158 unsigned int direction = ep_index % 2 ? USB_DIR_OUT : USB_DIR_IN;
1159 return direction | number;
1160}
1161
Sarah Sharpf94e01862009-04-27 19:58:38 -07001162/* Find the flag for this endpoint (for use in the control context). Use the
1163 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
1164 * bit 1, etc.
1165 */
1166unsigned int xhci_get_endpoint_flag(struct usb_endpoint_descriptor *desc)
1167{
1168 return 1 << (xhci_get_endpoint_index(desc) + 1);
1169}
1170
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001171/* Find the flag for this endpoint (for use in the control context). Use the
1172 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
1173 * bit 1, etc.
1174 */
1175unsigned int xhci_get_endpoint_flag_from_index(unsigned int ep_index)
1176{
1177 return 1 << (ep_index + 1);
1178}
1179
Sarah Sharpf94e01862009-04-27 19:58:38 -07001180/* Compute the last valid endpoint context index. Basically, this is the
1181 * endpoint index plus one. For slot contexts with more than valid endpoint,
1182 * we find the most significant bit set in the added contexts flags.
1183 * e.g. ep 1 IN (with epnum 0x81) => added_ctxs = 0b1000
1184 * fls(0b1000) = 4, but the endpoint context index is 3, so subtract one.
1185 */
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001186unsigned int xhci_last_valid_endpoint(u32 added_ctxs)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001187{
1188 return fls(added_ctxs) - 1;
1189}
1190
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001191/* Returns 1 if the arguments are OK;
1192 * returns 0 this is a root hub; returns -EINVAL for NULL pointers.
1193 */
Dmitry Torokhov8212a492011-02-08 13:55:59 -08001194static int xhci_check_args(struct usb_hcd *hcd, struct usb_device *udev,
Andiry Xu64927732010-10-14 07:22:45 -07001195 struct usb_host_endpoint *ep, int check_ep, bool check_virt_dev,
1196 const char *func) {
1197 struct xhci_hcd *xhci;
1198 struct xhci_virt_device *virt_dev;
1199
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001200 if (!hcd || (check_ep && !ep) || !udev) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001201 pr_debug("xHCI %s called with invalid args\n", func);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001202 return -EINVAL;
1203 }
1204 if (!udev->parent) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001205 pr_debug("xHCI %s called for root hub\n", func);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001206 return 0;
1207 }
Andiry Xu64927732010-10-14 07:22:45 -07001208
Sarah Sharp7bd89b42011-07-01 13:35:40 -07001209 xhci = hcd_to_xhci(hcd);
Andiry Xu64927732010-10-14 07:22:45 -07001210 if (check_virt_dev) {
sifram.rajas@gmail.com73ddc242011-09-02 11:06:00 -07001211 if (!udev->slot_id || !xhci->devs[udev->slot_id]) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001212 xhci_dbg(xhci, "xHCI %s called with unaddressed device\n",
1213 func);
Andiry Xu64927732010-10-14 07:22:45 -07001214 return -EINVAL;
1215 }
1216
1217 virt_dev = xhci->devs[udev->slot_id];
1218 if (virt_dev->udev != udev) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001219 xhci_dbg(xhci, "xHCI %s called with udev and "
Andiry Xu64927732010-10-14 07:22:45 -07001220 "virt_dev does not match\n", func);
1221 return -EINVAL;
1222 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001223 }
Andiry Xu64927732010-10-14 07:22:45 -07001224
Sarah Sharp203a8662013-07-24 10:27:13 -07001225 if (xhci->xhc_state & XHCI_STATE_HALTED)
1226 return -ENODEV;
1227
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001228 return 1;
1229}
1230
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001231static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001232 struct usb_device *udev, struct xhci_command *command,
1233 bool ctx_change, bool must_succeed);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001234
1235/*
1236 * Full speed devices may have a max packet size greater than 8 bytes, but the
1237 * USB core doesn't know that until it reads the first 8 bytes of the
1238 * descriptor. If the usb_device's max packet size changes after that point,
1239 * we need to issue an evaluate context command and wait on it.
1240 */
1241static int xhci_check_maxpacket(struct xhci_hcd *xhci, unsigned int slot_id,
1242 unsigned int ep_index, struct urb *urb)
1243{
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001244 struct xhci_container_ctx *out_ctx;
1245 struct xhci_input_control_ctx *ctrl_ctx;
1246 struct xhci_ep_ctx *ep_ctx;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001247 struct xhci_command *command;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001248 int max_packet_size;
1249 int hw_max_packet_size;
1250 int ret = 0;
1251
1252 out_ctx = xhci->devs[slot_id]->out_ctx;
1253 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Matt Evans28ccd292011-03-29 13:40:46 +11001254 hw_max_packet_size = MAX_PACKET_DECODED(le32_to_cpu(ep_ctx->ep_info2));
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001255 max_packet_size = usb_endpoint_maxp(&urb->dev->ep0.desc);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001256 if (hw_max_packet_size != max_packet_size) {
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001257 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1258 "Max Packet Size for ep 0 changed.");
1259 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1260 "Max packet size in usb_device = %d",
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001261 max_packet_size);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001262 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1263 "Max packet size in xHCI HW = %d",
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001264 hw_max_packet_size);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001265 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1266 "Issuing evaluate context command.");
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001267
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001268 /* Set up the input context flags for the command */
1269 /* FIXME: This won't work if a non-default control endpoint
1270 * changes max packet sizes.
1271 */
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001272
1273 command = xhci_alloc_command(xhci, false, true, GFP_KERNEL);
1274 if (!command)
1275 return -ENOMEM;
1276
1277 command->in_ctx = xhci->devs[slot_id]->in_ctx;
1278 ctrl_ctx = xhci_get_input_control_ctx(xhci, command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001279 if (!ctrl_ctx) {
1280 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1281 __func__);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001282 ret = -ENOMEM;
1283 goto command_cleanup;
Sarah Sharp92f8e762013-04-23 17:11:14 -07001284 }
1285 /* Set up the modified control endpoint 0 */
1286 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
1287 xhci->devs[slot_id]->out_ctx, ep_index);
1288
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001289 ep_ctx = xhci_get_ep_ctx(xhci, command->in_ctx, ep_index);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001290 ep_ctx->ep_info2 &= cpu_to_le32(~MAX_PACKET_MASK);
1291 ep_ctx->ep_info2 |= cpu_to_le32(MAX_PACKET(max_packet_size));
1292
Matt Evans28ccd292011-03-29 13:40:46 +11001293 ctrl_ctx->add_flags = cpu_to_le32(EP0_FLAG);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001294 ctrl_ctx->drop_flags = 0;
1295
1296 xhci_dbg(xhci, "Slot %d input context\n", slot_id);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001297 xhci_dbg_ctx(xhci, command->in_ctx, ep_index);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001298 xhci_dbg(xhci, "Slot %d output context\n", slot_id);
1299 xhci_dbg_ctx(xhci, out_ctx, ep_index);
1300
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001301 ret = xhci_configure_endpoint(xhci, urb->dev, command,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001302 true, false);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001303
1304 /* Clean up the input context for later use by bandwidth
1305 * functions.
1306 */
Matt Evans28ccd292011-03-29 13:40:46 +11001307 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001308command_cleanup:
1309 kfree(command->completion);
1310 kfree(command);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001311 }
1312 return ret;
1313}
1314
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001315/*
1316 * non-error returns are a promise to giveback() the urb later
1317 * we drop ownership so next owner (or urb unlink) can get it
1318 */
1319int xhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, gfp_t mem_flags)
1320{
1321 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Andiry Xu2ffdea22011-09-02 11:05:57 -07001322 struct xhci_td *buffer;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001323 unsigned long flags;
1324 int ret = 0;
1325 unsigned int slot_id, ep_index;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001326 struct urb_priv *urb_priv;
1327 int size, i;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001328
Andiry Xu64927732010-10-14 07:22:45 -07001329 if (!urb || xhci_check_args(hcd, urb->dev, urb->ep,
1330 true, true, __func__) <= 0)
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001331 return -EINVAL;
1332
1333 slot_id = urb->dev->slot_id;
1334 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001335
Alan Stern541c7d42010-06-22 16:39:10 -04001336 if (!HCD_HW_ACCESSIBLE(hcd)) {
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001337 if (!in_interrupt())
1338 xhci_dbg(xhci, "urb submitted during PCI suspend\n");
1339 ret = -ESHUTDOWN;
1340 goto exit;
1341 }
Andiry Xu8e51adc2010-07-22 15:23:31 -07001342
1343 if (usb_endpoint_xfer_isoc(&urb->ep->desc))
1344 size = urb->number_of_packets;
1345 else
1346 size = 1;
1347
1348 urb_priv = kzalloc(sizeof(struct urb_priv) +
1349 size * sizeof(struct xhci_td *), mem_flags);
1350 if (!urb_priv)
1351 return -ENOMEM;
1352
Andiry Xu2ffdea22011-09-02 11:05:57 -07001353 buffer = kzalloc(size * sizeof(struct xhci_td), mem_flags);
1354 if (!buffer) {
1355 kfree(urb_priv);
1356 return -ENOMEM;
1357 }
1358
Andiry Xu8e51adc2010-07-22 15:23:31 -07001359 for (i = 0; i < size; i++) {
Andiry Xu2ffdea22011-09-02 11:05:57 -07001360 urb_priv->td[i] = buffer;
1361 buffer++;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001362 }
1363
1364 urb_priv->length = size;
1365 urb_priv->td_cnt = 0;
1366 urb->hcpriv = urb_priv;
1367
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001368 if (usb_endpoint_xfer_control(&urb->ep->desc)) {
1369 /* Check to see if the max packet size for the default control
1370 * endpoint changed during FS device enumeration
1371 */
1372 if (urb->dev->speed == USB_SPEED_FULL) {
1373 ret = xhci_check_maxpacket(xhci, slot_id,
1374 ep_index, urb);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001375 if (ret < 0) {
1376 xhci_urb_free_priv(xhci, urb_priv);
1377 urb->hcpriv = NULL;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001378 return ret;
Sarah Sharpd13565c2011-07-22 14:34:34 -07001379 }
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001380 }
1381
Sarah Sharpb11069f2009-07-27 12:03:23 -07001382 /* We have a spinlock and interrupts disabled, so we must pass
1383 * atomic context to this function, which may allocate memory.
1384 */
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001385 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001386 if (xhci->xhc_state & XHCI_STATE_DYING)
1387 goto dying;
Sarah Sharpb11069f2009-07-27 12:03:23 -07001388 ret = xhci_queue_ctrl_tx(xhci, GFP_ATOMIC, urb,
Sarah Sharp23e3be12009-04-29 19:05:20 -07001389 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001390 if (ret)
1391 goto free_priv;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001392 spin_unlock_irqrestore(&xhci->lock, flags);
1393 } else if (usb_endpoint_xfer_bulk(&urb->ep->desc)) {
1394 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001395 if (xhci->xhc_state & XHCI_STATE_DYING)
1396 goto dying;
Sarah Sharp8df75f42010-04-02 15:34:16 -07001397 if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1398 EP_GETTING_STREAMS) {
1399 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1400 "is transitioning to using streams.\n");
1401 ret = -EINVAL;
1402 } else if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1403 EP_GETTING_NO_STREAMS) {
1404 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1405 "is transitioning to "
1406 "not having streams.\n");
1407 ret = -EINVAL;
1408 } else {
1409 ret = xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb,
1410 slot_id, ep_index);
1411 }
Sarah Sharpd13565c2011-07-22 14:34:34 -07001412 if (ret)
1413 goto free_priv;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001414 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp624defa2009-09-02 12:14:28 -07001415 } else if (usb_endpoint_xfer_int(&urb->ep->desc)) {
1416 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001417 if (xhci->xhc_state & XHCI_STATE_DYING)
1418 goto dying;
Sarah Sharp624defa2009-09-02 12:14:28 -07001419 ret = xhci_queue_intr_tx(xhci, GFP_ATOMIC, urb,
1420 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001421 if (ret)
1422 goto free_priv;
Sarah Sharp624defa2009-09-02 12:14:28 -07001423 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001424 } else {
Andiry Xu787f4e52010-07-22 15:23:52 -07001425 spin_lock_irqsave(&xhci->lock, flags);
1426 if (xhci->xhc_state & XHCI_STATE_DYING)
1427 goto dying;
1428 ret = xhci_queue_isoc_tx_prepare(xhci, GFP_ATOMIC, urb,
1429 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001430 if (ret)
1431 goto free_priv;
Andiry Xu787f4e52010-07-22 15:23:52 -07001432 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001433 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001434exit:
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001435 return ret;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001436dying:
1437 xhci_dbg(xhci, "Ep 0x%x: URB %p submitted for "
1438 "non-responsive xHCI host.\n",
1439 urb->ep->desc.bEndpointAddress, urb);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001440 ret = -ESHUTDOWN;
1441free_priv:
1442 xhci_urb_free_priv(xhci, urb_priv);
1443 urb->hcpriv = NULL;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001444 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001445 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001446}
1447
Sarah Sharp021bff92010-07-29 22:12:20 -07001448/* Get the right ring for the given URB.
1449 * If the endpoint supports streams, boundary check the URB's stream ID.
1450 * If the endpoint doesn't support streams, return the singular endpoint ring.
1451 */
1452static struct xhci_ring *xhci_urb_to_transfer_ring(struct xhci_hcd *xhci,
1453 struct urb *urb)
1454{
1455 unsigned int slot_id;
1456 unsigned int ep_index;
1457 unsigned int stream_id;
1458 struct xhci_virt_ep *ep;
1459
1460 slot_id = urb->dev->slot_id;
1461 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
1462 stream_id = urb->stream_id;
1463 ep = &xhci->devs[slot_id]->eps[ep_index];
1464 /* Common case: no streams */
1465 if (!(ep->ep_state & EP_HAS_STREAMS))
1466 return ep->ring;
1467
1468 if (stream_id == 0) {
1469 xhci_warn(xhci,
1470 "WARN: Slot ID %u, ep index %u has streams, "
1471 "but URB has no stream ID.\n",
1472 slot_id, ep_index);
1473 return NULL;
1474 }
1475
1476 if (stream_id < ep->stream_info->num_streams)
1477 return ep->stream_info->stream_rings[stream_id];
1478
1479 xhci_warn(xhci,
1480 "WARN: Slot ID %u, ep index %u has "
1481 "stream IDs 1 to %u allocated, "
1482 "but stream ID %u is requested.\n",
1483 slot_id, ep_index,
1484 ep->stream_info->num_streams - 1,
1485 stream_id);
1486 return NULL;
1487}
1488
Sarah Sharpae636742009-04-29 19:02:31 -07001489/*
1490 * Remove the URB's TD from the endpoint ring. This may cause the HC to stop
1491 * USB transfers, potentially stopping in the middle of a TRB buffer. The HC
1492 * should pick up where it left off in the TD, unless a Set Transfer Ring
1493 * Dequeue Pointer is issued.
1494 *
1495 * The TRBs that make up the buffers for the canceled URB will be "removed" from
1496 * the ring. Since the ring is a contiguous structure, they can't be physically
1497 * removed. Instead, there are two options:
1498 *
1499 * 1) If the HC is in the middle of processing the URB to be canceled, we
1500 * simply move the ring's dequeue pointer past those TRBs using the Set
1501 * Transfer Ring Dequeue Pointer command. This will be the common case,
1502 * when drivers timeout on the last submitted URB and attempt to cancel.
1503 *
1504 * 2) If the HC is in the middle of a different TD, we turn the TRBs into a
1505 * series of 1-TRB transfer no-op TDs. (No-ops shouldn't be chained.) The
1506 * HC will need to invalidate the any TRBs it has cached after the stop
1507 * endpoint command, as noted in the xHCI 0.95 errata.
1508 *
1509 * 3) The TD may have completed by the time the Stop Endpoint Command
1510 * completes, so software needs to handle that case too.
1511 *
1512 * This function should protect against the TD enqueueing code ringing the
1513 * doorbell while this code is waiting for a Stop Endpoint command to complete.
1514 * It also needs to account for multiple cancellations on happening at the same
1515 * time for the same endpoint.
1516 *
1517 * Note that this function can be called in any context, or so says
1518 * usb_hcd_unlink_urb()
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001519 */
1520int xhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
1521{
Sarah Sharpae636742009-04-29 19:02:31 -07001522 unsigned long flags;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001523 int ret, i;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001524 u32 temp;
Sarah Sharpae636742009-04-29 19:02:31 -07001525 struct xhci_hcd *xhci;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001526 struct urb_priv *urb_priv;
Sarah Sharpae636742009-04-29 19:02:31 -07001527 struct xhci_td *td;
1528 unsigned int ep_index;
1529 struct xhci_ring *ep_ring;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001530 struct xhci_virt_ep *ep;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001531 struct xhci_command *command;
Sarah Sharpae636742009-04-29 19:02:31 -07001532
1533 xhci = hcd_to_xhci(hcd);
1534 spin_lock_irqsave(&xhci->lock, flags);
1535 /* Make sure the URB hasn't completed or been unlinked already */
1536 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
1537 if (ret || !urb->hcpriv)
1538 goto done;
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001539 temp = readl(&xhci->op_regs->status);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -08001540 if (temp == 0xffffffff || (xhci->xhc_state & XHCI_STATE_HALTED)) {
Xenia Ragiadakouaa50b292013-08-14 06:33:54 +03001541 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
1542 "HW died, freeing TD.");
Andiry Xu8e51adc2010-07-22 15:23:31 -07001543 urb_priv = urb->hcpriv;
Sarah Sharp585df1d2011-08-02 15:43:40 -07001544 for (i = urb_priv->td_cnt; i < urb_priv->length; i++) {
1545 td = urb_priv->td[i];
1546 if (!list_empty(&td->td_list))
1547 list_del_init(&td->td_list);
1548 if (!list_empty(&td->cancelled_td_list))
1549 list_del_init(&td->cancelled_td_list);
1550 }
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001551
1552 usb_hcd_unlink_urb_from_ep(hcd, urb);
1553 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp214f76f2010-10-26 11:22:02 -07001554 usb_hcd_giveback_urb(hcd, urb, -ESHUTDOWN);
Andiry Xu8e51adc2010-07-22 15:23:31 -07001555 xhci_urb_free_priv(xhci, urb_priv);
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001556 return ret;
1557 }
Sarah Sharp7bd89b42011-07-01 13:35:40 -07001558 if ((xhci->xhc_state & XHCI_STATE_DYING) ||
1559 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Xenia Ragiadakouaa50b292013-08-14 06:33:54 +03001560 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
1561 "Ep 0x%x: URB %p to be canceled on "
1562 "non-responsive xHCI host.",
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001563 urb->ep->desc.bEndpointAddress, urb);
1564 /* Let the stop endpoint command watchdog timer (which set this
1565 * state) finish cleaning up the endpoint TD lists. We must
1566 * have caught it in the middle of dropping a lock and giving
1567 * back an URB.
1568 */
1569 goto done;
1570 }
Sarah Sharpae636742009-04-29 19:02:31 -07001571
Sarah Sharpae636742009-04-29 19:02:31 -07001572 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001573 ep = &xhci->devs[urb->dev->slot_id]->eps[ep_index];
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001574 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
1575 if (!ep_ring) {
1576 ret = -EINVAL;
1577 goto done;
1578 }
1579
Andiry Xu8e51adc2010-07-22 15:23:31 -07001580 urb_priv = urb->hcpriv;
Sarah Sharp79688ac2011-12-19 16:56:04 -08001581 i = urb_priv->td_cnt;
1582 if (i < urb_priv->length)
Xenia Ragiadakouaa50b292013-08-14 06:33:54 +03001583 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
1584 "Cancel URB %p, dev %s, ep 0x%x, "
1585 "starting at offset 0x%llx",
Sarah Sharp79688ac2011-12-19 16:56:04 -08001586 urb, urb->dev->devpath,
1587 urb->ep->desc.bEndpointAddress,
1588 (unsigned long long) xhci_trb_virt_to_dma(
1589 urb_priv->td[i]->start_seg,
1590 urb_priv->td[i]->first_trb));
Andiry Xu8e51adc2010-07-22 15:23:31 -07001591
Sarah Sharp79688ac2011-12-19 16:56:04 -08001592 for (; i < urb_priv->length; i++) {
Andiry Xu8e51adc2010-07-22 15:23:31 -07001593 td = urb_priv->td[i];
1594 list_add_tail(&td->cancelled_td_list, &ep->cancelled_td_list);
1595 }
1596
Sarah Sharpae636742009-04-29 19:02:31 -07001597 /* Queue a stop endpoint command, but only if this is
1598 * the first cancellation to be handled.
1599 */
Sarah Sharp678539c2009-10-27 10:55:52 -07001600 if (!(ep->ep_state & EP_HALT_PENDING)) {
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001601 command = xhci_alloc_command(xhci, false, false, GFP_ATOMIC);
Hans de Goedea0ee6192014-07-25 22:01:21 +02001602 if (!command) {
1603 ret = -ENOMEM;
1604 goto done;
1605 }
Sarah Sharp678539c2009-10-27 10:55:52 -07001606 ep->ep_state |= EP_HALT_PENDING;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001607 ep->stop_cmds_pending++;
1608 ep->stop_cmd_timer.expires = jiffies +
1609 XHCI_STOP_EP_CMD_TIMEOUT * HZ;
1610 add_timer(&ep->stop_cmd_timer);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001611 xhci_queue_stop_endpoint(xhci, command, urb->dev->slot_id,
1612 ep_index, 0);
Sarah Sharp23e3be12009-04-29 19:05:20 -07001613 xhci_ring_cmd_db(xhci);
Sarah Sharpae636742009-04-29 19:02:31 -07001614 }
1615done:
1616 spin_unlock_irqrestore(&xhci->lock, flags);
1617 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001618}
1619
Sarah Sharpf94e01862009-04-27 19:58:38 -07001620/* Drop an endpoint from a new bandwidth configuration for this device.
1621 * Only one call to this function is allowed per endpoint before
1622 * check_bandwidth() or reset_bandwidth() must be called.
1623 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1624 * add the endpoint to the schedule with possibly new parameters denoted by a
1625 * different endpoint descriptor in usb_host_endpoint.
1626 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1627 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001628 *
1629 * The USB core will not allow URBs to be queued to an endpoint that is being
1630 * disabled, so there's no need for mutual exclusion to protect
1631 * the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001632 */
1633int xhci_drop_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1634 struct usb_host_endpoint *ep)
1635{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001636 struct xhci_hcd *xhci;
John Yound115b042009-07-27 12:05:15 -07001637 struct xhci_container_ctx *in_ctx, *out_ctx;
1638 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001639 unsigned int ep_index;
1640 struct xhci_ep_ctx *ep_ctx;
1641 u32 drop_flag;
Julius Wernerd6759132014-06-24 17:14:42 +03001642 u32 new_add_flags, new_drop_flags;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001643 int ret;
1644
Andiry Xu64927732010-10-14 07:22:45 -07001645 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001646 if (ret <= 0)
1647 return ret;
1648 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001649 if (xhci->xhc_state & XHCI_STATE_DYING)
1650 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001651
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001652 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001653 drop_flag = xhci_get_endpoint_flag(&ep->desc);
1654 if (drop_flag == SLOT_FLAG || drop_flag == EP0_FLAG) {
1655 xhci_dbg(xhci, "xHCI %s - can't drop slot or ep 0 %#x\n",
1656 __func__, drop_flag);
1657 return 0;
1658 }
1659
Sarah Sharpf94e01862009-04-27 19:58:38 -07001660 in_ctx = xhci->devs[udev->slot_id]->in_ctx;
John Yound115b042009-07-27 12:05:15 -07001661 out_ctx = xhci->devs[udev->slot_id]->out_ctx;
1662 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001663 if (!ctrl_ctx) {
1664 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1665 __func__);
1666 return 0;
1667 }
1668
Sarah Sharpf94e01862009-04-27 19:58:38 -07001669 ep_index = xhci_get_endpoint_index(&ep->desc);
John Yound115b042009-07-27 12:05:15 -07001670 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001671 /* If the HC already knows the endpoint is disabled,
1672 * or the HCD has noted it is disabled, ignore this request
1673 */
Matt Evansf5960b62011-06-01 10:22:55 +10001674 if (((ep_ctx->ep_info & cpu_to_le32(EP_STATE_MASK)) ==
1675 cpu_to_le32(EP_STATE_DISABLED)) ||
Matt Evans28ccd292011-03-29 13:40:46 +11001676 le32_to_cpu(ctrl_ctx->drop_flags) &
1677 xhci_get_endpoint_flag(&ep->desc)) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001678 xhci_warn(xhci, "xHCI %s called with disabled ep %p\n",
1679 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001680 return 0;
1681 }
1682
Matt Evans28ccd292011-03-29 13:40:46 +11001683 ctrl_ctx->drop_flags |= cpu_to_le32(drop_flag);
1684 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001685
Matt Evans28ccd292011-03-29 13:40:46 +11001686 ctrl_ctx->add_flags &= cpu_to_le32(~drop_flag);
1687 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001688
Sarah Sharpf94e01862009-04-27 19:58:38 -07001689 xhci_endpoint_zero(xhci, xhci->devs[udev->slot_id], ep);
1690
Julius Wernerd6759132014-06-24 17:14:42 +03001691 xhci_dbg(xhci, "drop ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x\n",
Sarah Sharpf94e01862009-04-27 19:58:38 -07001692 (unsigned int) ep->desc.bEndpointAddress,
1693 udev->slot_id,
1694 (unsigned int) new_drop_flags,
Julius Wernerd6759132014-06-24 17:14:42 +03001695 (unsigned int) new_add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001696 return 0;
1697}
1698
1699/* Add an endpoint to a new possible bandwidth configuration for this device.
1700 * Only one call to this function is allowed per endpoint before
1701 * check_bandwidth() or reset_bandwidth() must be called.
1702 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1703 * add the endpoint to the schedule with possibly new parameters denoted by a
1704 * different endpoint descriptor in usb_host_endpoint.
1705 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1706 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001707 *
1708 * The USB core will not allow URBs to be queued to an endpoint until the
1709 * configuration or alt setting is installed in the device, so there's no need
1710 * for mutual exclusion to protect the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001711 */
1712int xhci_add_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1713 struct usb_host_endpoint *ep)
1714{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001715 struct xhci_hcd *xhci;
Lin Wang92c96912015-01-09 16:06:27 +02001716 struct xhci_container_ctx *in_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001717 unsigned int ep_index;
John Yound115b042009-07-27 12:05:15 -07001718 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001719 u32 added_ctxs;
Julius Wernerd6759132014-06-24 17:14:42 +03001720 u32 new_add_flags, new_drop_flags;
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001721 struct xhci_virt_device *virt_dev;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001722 int ret = 0;
1723
Andiry Xu64927732010-10-14 07:22:45 -07001724 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpa1587d92009-07-27 12:03:15 -07001725 if (ret <= 0) {
1726 /* So we won't queue a reset ep command for a root hub */
1727 ep->hcpriv = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001728 return ret;
Sarah Sharpa1587d92009-07-27 12:03:15 -07001729 }
Sarah Sharpf94e01862009-04-27 19:58:38 -07001730 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001731 if (xhci->xhc_state & XHCI_STATE_DYING)
1732 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001733
1734 added_ctxs = xhci_get_endpoint_flag(&ep->desc);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001735 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) {
1736 /* FIXME when we have to issue an evaluate endpoint command to
1737 * deal with ep0 max packet size changing once we get the
1738 * descriptors
1739 */
1740 xhci_dbg(xhci, "xHCI %s - can't add slot or ep 0 %#x\n",
1741 __func__, added_ctxs);
1742 return 0;
1743 }
1744
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001745 virt_dev = xhci->devs[udev->slot_id];
1746 in_ctx = virt_dev->in_ctx;
John Yound115b042009-07-27 12:05:15 -07001747 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001748 if (!ctrl_ctx) {
1749 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1750 __func__);
1751 return 0;
1752 }
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001753
Sarah Sharp92f8e762013-04-23 17:11:14 -07001754 ep_index = xhci_get_endpoint_index(&ep->desc);
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001755 /* If this endpoint is already in use, and the upper layers are trying
1756 * to add it again without dropping it, reject the addition.
1757 */
1758 if (virt_dev->eps[ep_index].ring &&
Lin Wang92c96912015-01-09 16:06:27 +02001759 !(le32_to_cpu(ctrl_ctx->drop_flags) & added_ctxs)) {
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001760 xhci_warn(xhci, "Trying to add endpoint 0x%x "
1761 "without dropping it.\n",
1762 (unsigned int) ep->desc.bEndpointAddress);
1763 return -EINVAL;
1764 }
1765
Sarah Sharpf94e01862009-04-27 19:58:38 -07001766 /* If the HCD has already noted the endpoint is enabled,
1767 * ignore this request.
1768 */
Lin Wang92c96912015-01-09 16:06:27 +02001769 if (le32_to_cpu(ctrl_ctx->add_flags) & added_ctxs) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001770 xhci_warn(xhci, "xHCI %s called with enabled ep %p\n",
1771 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001772 return 0;
1773 }
1774
Sarah Sharpf88ba782009-05-14 11:44:22 -07001775 /*
1776 * Configuration and alternate setting changes must be done in
1777 * process context, not interrupt context (or so documenation
1778 * for usb_set_interface() and usb_set_configuration() claim).
1779 */
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001780 if (xhci_endpoint_init(xhci, virt_dev, udev, ep, GFP_NOIO) < 0) {
Sarah Sharpf94e01862009-04-27 19:58:38 -07001781 dev_dbg(&udev->dev, "%s - could not initialize ep %#x\n",
1782 __func__, ep->desc.bEndpointAddress);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001783 return -ENOMEM;
1784 }
1785
Matt Evans28ccd292011-03-29 13:40:46 +11001786 ctrl_ctx->add_flags |= cpu_to_le32(added_ctxs);
1787 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001788
1789 /* If xhci_endpoint_disable() was called for this endpoint, but the
1790 * xHC hasn't been notified yet through the check_bandwidth() call,
1791 * this re-adds a new state for the endpoint from the new endpoint
1792 * descriptors. We must drop and re-add this endpoint, so we leave the
1793 * drop flags alone.
1794 */
Matt Evans28ccd292011-03-29 13:40:46 +11001795 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001796
Sarah Sharpa1587d92009-07-27 12:03:15 -07001797 /* Store the usb_device pointer for later use */
1798 ep->hcpriv = udev;
1799
Julius Wernerd6759132014-06-24 17:14:42 +03001800 xhci_dbg(xhci, "add ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x\n",
Sarah Sharpf94e01862009-04-27 19:58:38 -07001801 (unsigned int) ep->desc.bEndpointAddress,
1802 udev->slot_id,
1803 (unsigned int) new_drop_flags,
Julius Wernerd6759132014-06-24 17:14:42 +03001804 (unsigned int) new_add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001805 return 0;
1806}
1807
John Yound115b042009-07-27 12:05:15 -07001808static void xhci_zero_in_ctx(struct xhci_hcd *xhci, struct xhci_virt_device *virt_dev)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001809{
John Yound115b042009-07-27 12:05:15 -07001810 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001811 struct xhci_ep_ctx *ep_ctx;
John Yound115b042009-07-27 12:05:15 -07001812 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001813 int i;
1814
Sarah Sharp92f8e762013-04-23 17:11:14 -07001815 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
1816 if (!ctrl_ctx) {
1817 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1818 __func__);
1819 return;
1820 }
1821
Sarah Sharpf94e01862009-04-27 19:58:38 -07001822 /* When a device's add flag and drop flag are zero, any subsequent
1823 * configure endpoint command will leave that endpoint's state
1824 * untouched. Make sure we don't leave any old state in the input
1825 * endpoint contexts.
1826 */
John Yound115b042009-07-27 12:05:15 -07001827 ctrl_ctx->drop_flags = 0;
1828 ctrl_ctx->add_flags = 0;
1829 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11001830 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001831 /* Endpoint 0 is always valid */
Matt Evans28ccd292011-03-29 13:40:46 +11001832 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(1));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001833 for (i = 1; i < 31; ++i) {
John Yound115b042009-07-27 12:05:15 -07001834 ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->in_ctx, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001835 ep_ctx->ep_info = 0;
1836 ep_ctx->ep_info2 = 0;
Sarah Sharp8e595a52009-07-27 12:03:31 -07001837 ep_ctx->deq = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001838 ep_ctx->tx_info = 0;
1839 }
1840}
1841
Sarah Sharpf2217e82009-08-07 14:04:43 -07001842static int xhci_configure_endpoint_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001843 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001844{
1845 int ret;
1846
Sarah Sharp913a8a32009-09-04 10:53:13 -07001847 switch (*cmd_status) {
Mathias Nymanc311e392014-05-08 19:26:03 +03001848 case COMP_CMD_ABORT:
1849 case COMP_CMD_STOP:
1850 xhci_warn(xhci, "Timeout while waiting for configure endpoint command\n");
1851 ret = -ETIME;
1852 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001853 case COMP_ENOMEM:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001854 dev_warn(&udev->dev,
1855 "Not enough host controller resources for new device state.\n");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001856 ret = -ENOMEM;
1857 /* FIXME: can we allocate more resources for the HC? */
1858 break;
1859 case COMP_BW_ERR:
Hans de Goede71d85722012-01-04 23:29:18 +01001860 case COMP_2ND_BW_ERR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001861 dev_warn(&udev->dev,
1862 "Not enough bandwidth for new device state.\n");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001863 ret = -ENOSPC;
1864 /* FIXME: can we go back to the old state? */
1865 break;
1866 case COMP_TRB_ERR:
1867 /* the HCD set up something wrong */
1868 dev_warn(&udev->dev, "ERROR: Endpoint drop flag = 0, "
1869 "add flag = 1, "
1870 "and endpoint is not disabled.\n");
1871 ret = -EINVAL;
1872 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08001873 case COMP_DEV_ERR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001874 dev_warn(&udev->dev,
1875 "ERROR: Incompatible device for endpoint configure command.\n");
Alex Hef6ba6fe2011-06-08 18:34:06 +08001876 ret = -ENODEV;
1877 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001878 case COMP_SUCCESS:
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001879 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1880 "Successful Endpoint Configure command");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001881 ret = 0;
1882 break;
1883 default:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001884 xhci_err(xhci, "ERROR: unexpected command completion code 0x%x.\n",
1885 *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001886 ret = -EINVAL;
1887 break;
1888 }
1889 return ret;
1890}
1891
1892static int xhci_evaluate_context_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001893 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001894{
1895 int ret;
Sarah Sharp913a8a32009-09-04 10:53:13 -07001896 struct xhci_virt_device *virt_dev = xhci->devs[udev->slot_id];
Sarah Sharpf2217e82009-08-07 14:04:43 -07001897
Sarah Sharp913a8a32009-09-04 10:53:13 -07001898 switch (*cmd_status) {
Mathias Nymanc311e392014-05-08 19:26:03 +03001899 case COMP_CMD_ABORT:
1900 case COMP_CMD_STOP:
1901 xhci_warn(xhci, "Timeout while waiting for evaluate context command\n");
1902 ret = -ETIME;
1903 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001904 case COMP_EINVAL:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001905 dev_warn(&udev->dev,
1906 "WARN: xHCI driver setup invalid evaluate context command.\n");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001907 ret = -EINVAL;
1908 break;
1909 case COMP_EBADSLT:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001910 dev_warn(&udev->dev,
1911 "WARN: slot not enabled for evaluate context command.\n");
Sarah Sharpb8031342012-10-16 13:26:22 -07001912 ret = -EINVAL;
1913 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001914 case COMP_CTX_STATE:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001915 dev_warn(&udev->dev,
1916 "WARN: invalid context state for evaluate context command.\n");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001917 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 1);
1918 ret = -EINVAL;
1919 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08001920 case COMP_DEV_ERR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001921 dev_warn(&udev->dev,
1922 "ERROR: Incompatible device for evaluate context command.\n");
Alex Hef6ba6fe2011-06-08 18:34:06 +08001923 ret = -ENODEV;
1924 break;
Alex He1bb73a82011-05-05 18:14:12 +08001925 case COMP_MEL_ERR:
1926 /* Max Exit Latency too large error */
1927 dev_warn(&udev->dev, "WARN: Max Exit Latency too large\n");
1928 ret = -EINVAL;
1929 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001930 case COMP_SUCCESS:
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001931 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1932 "Successful evaluate context command");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001933 ret = 0;
1934 break;
1935 default:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001936 xhci_err(xhci, "ERROR: unexpected command completion code 0x%x.\n",
1937 *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001938 ret = -EINVAL;
1939 break;
1940 }
1941 return ret;
1942}
1943
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001944static u32 xhci_count_num_new_endpoints(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001945 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001946{
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001947 u32 valid_add_flags;
1948 u32 valid_drop_flags;
1949
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001950 /* Ignore the slot flag (bit 0), and the default control endpoint flag
1951 * (bit 1). The default control endpoint is added during the Address
1952 * Device command and is never removed until the slot is disabled.
1953 */
Xenia Ragiadakouef734002013-09-09 21:03:06 +03001954 valid_add_flags = le32_to_cpu(ctrl_ctx->add_flags) >> 2;
1955 valid_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags) >> 2;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001956
1957 /* Use hweight32 to count the number of ones in the add flags, or
1958 * number of endpoints added. Don't count endpoints that are changed
1959 * (both added and dropped).
1960 */
1961 return hweight32(valid_add_flags) -
1962 hweight32(valid_add_flags & valid_drop_flags);
1963}
1964
1965static unsigned int xhci_count_num_dropped_endpoints(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001966 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001967{
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001968 u32 valid_add_flags;
1969 u32 valid_drop_flags;
1970
Xenia Ragiadakou78d1ff02013-09-09 21:03:07 +03001971 valid_add_flags = le32_to_cpu(ctrl_ctx->add_flags) >> 2;
1972 valid_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags) >> 2;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001973
1974 return hweight32(valid_drop_flags) -
1975 hweight32(valid_add_flags & valid_drop_flags);
1976}
1977
1978/*
1979 * We need to reserve the new number of endpoints before the configure endpoint
1980 * command completes. We can't subtract the dropped endpoints from the number
1981 * of active endpoints until the command completes because we can oversubscribe
1982 * the host in this case:
1983 *
1984 * - the first configure endpoint command drops more endpoints than it adds
1985 * - a second configure endpoint command that adds more endpoints is queued
1986 * - the first configure endpoint command fails, so the config is unchanged
1987 * - the second command may succeed, even though there isn't enough resources
1988 *
1989 * Must be called with xhci->lock held.
1990 */
1991static int xhci_reserve_host_resources(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001992 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001993{
1994 u32 added_eps;
1995
Sarah Sharp92f8e762013-04-23 17:11:14 -07001996 added_eps = xhci_count_num_new_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001997 if (xhci->num_active_eps + added_eps > xhci->limit_active_eps) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001998 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1999 "Not enough ep ctxs: "
2000 "%u active, need to add %u, limit is %u.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002001 xhci->num_active_eps, added_eps,
2002 xhci->limit_active_eps);
2003 return -ENOMEM;
2004 }
2005 xhci->num_active_eps += added_eps;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002006 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2007 "Adding %u ep ctxs, %u now active.", added_eps,
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002008 xhci->num_active_eps);
2009 return 0;
2010}
2011
2012/*
2013 * The configure endpoint was failed by the xHC for some other reason, so we
2014 * need to revert the resources that failed configuration would have used.
2015 *
2016 * Must be called with xhci->lock held.
2017 */
2018static void xhci_free_host_resources(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07002019 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002020{
2021 u32 num_failed_eps;
2022
Sarah Sharp92f8e762013-04-23 17:11:14 -07002023 num_failed_eps = xhci_count_num_new_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002024 xhci->num_active_eps -= num_failed_eps;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002025 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2026 "Removing %u failed ep ctxs, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002027 num_failed_eps,
2028 xhci->num_active_eps);
2029}
2030
2031/*
2032 * Now that the command has completed, clean up the active endpoint count by
2033 * subtracting out the endpoints that were dropped (but not changed).
2034 *
2035 * Must be called with xhci->lock held.
2036 */
2037static void xhci_finish_resource_reservation(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07002038 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002039{
2040 u32 num_dropped_eps;
2041
Sarah Sharp92f8e762013-04-23 17:11:14 -07002042 num_dropped_eps = xhci_count_num_dropped_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002043 xhci->num_active_eps -= num_dropped_eps;
2044 if (num_dropped_eps)
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002045 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2046 "Removing %u dropped ep ctxs, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002047 num_dropped_eps,
2048 xhci->num_active_eps);
2049}
2050
Felipe Balbied384bd2012-08-07 14:10:03 +03002051static unsigned int xhci_get_block_size(struct usb_device *udev)
Sarah Sharpc29eea62011-09-02 11:05:52 -07002052{
2053 switch (udev->speed) {
2054 case USB_SPEED_LOW:
2055 case USB_SPEED_FULL:
2056 return FS_BLOCK;
2057 case USB_SPEED_HIGH:
2058 return HS_BLOCK;
2059 case USB_SPEED_SUPER:
2060 return SS_BLOCK;
2061 case USB_SPEED_UNKNOWN:
2062 case USB_SPEED_WIRELESS:
2063 default:
2064 /* Should never happen */
2065 return 1;
2066 }
2067}
2068
Felipe Balbied384bd2012-08-07 14:10:03 +03002069static unsigned int
2070xhci_get_largest_overhead(struct xhci_interval_bw *interval_bw)
Sarah Sharpc29eea62011-09-02 11:05:52 -07002071{
2072 if (interval_bw->overhead[LS_OVERHEAD_TYPE])
2073 return LS_OVERHEAD;
2074 if (interval_bw->overhead[FS_OVERHEAD_TYPE])
2075 return FS_OVERHEAD;
2076 return HS_OVERHEAD;
2077}
2078
2079/* If we are changing a LS/FS device under a HS hub,
2080 * make sure (if we are activating a new TT) that the HS bus has enough
2081 * bandwidth for this new TT.
2082 */
2083static int xhci_check_tt_bw_table(struct xhci_hcd *xhci,
2084 struct xhci_virt_device *virt_dev,
2085 int old_active_eps)
2086{
2087 struct xhci_interval_bw_table *bw_table;
2088 struct xhci_tt_bw_info *tt_info;
2089
2090 /* Find the bandwidth table for the root port this TT is attached to. */
2091 bw_table = &xhci->rh_bw[virt_dev->real_port - 1].bw_table;
2092 tt_info = virt_dev->tt_info;
2093 /* If this TT already had active endpoints, the bandwidth for this TT
2094 * has already been added. Removing all periodic endpoints (and thus
2095 * making the TT enactive) will only decrease the bandwidth used.
2096 */
2097 if (old_active_eps)
2098 return 0;
2099 if (old_active_eps == 0 && tt_info->active_eps != 0) {
2100 if (bw_table->bw_used + TT_HS_OVERHEAD > HS_BW_LIMIT)
2101 return -ENOMEM;
2102 return 0;
2103 }
2104 /* Not sure why we would have no new active endpoints...
2105 *
2106 * Maybe because of an Evaluate Context change for a hub update or a
2107 * control endpoint 0 max packet size change?
2108 * FIXME: skip the bandwidth calculation in that case.
2109 */
2110 return 0;
2111}
2112
Sarah Sharp2b698992011-09-13 16:41:13 -07002113static int xhci_check_ss_bw(struct xhci_hcd *xhci,
2114 struct xhci_virt_device *virt_dev)
2115{
2116 unsigned int bw_reserved;
2117
2118 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_IN, 100);
2119 if (virt_dev->bw_table->ss_bw_in > (SS_BW_LIMIT_IN - bw_reserved))
2120 return -ENOMEM;
2121
2122 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_OUT, 100);
2123 if (virt_dev->bw_table->ss_bw_out > (SS_BW_LIMIT_OUT - bw_reserved))
2124 return -ENOMEM;
2125
2126 return 0;
2127}
2128
Sarah Sharpc29eea62011-09-02 11:05:52 -07002129/*
2130 * This algorithm is a very conservative estimate of the worst-case scheduling
2131 * scenario for any one interval. The hardware dynamically schedules the
2132 * packets, so we can't tell which microframe could be the limiting factor in
2133 * the bandwidth scheduling. This only takes into account periodic endpoints.
2134 *
2135 * Obviously, we can't solve an NP complete problem to find the minimum worst
2136 * case scenario. Instead, we come up with an estimate that is no less than
2137 * the worst case bandwidth used for any one microframe, but may be an
2138 * over-estimate.
2139 *
2140 * We walk the requirements for each endpoint by interval, starting with the
2141 * smallest interval, and place packets in the schedule where there is only one
2142 * possible way to schedule packets for that interval. In order to simplify
2143 * this algorithm, we record the largest max packet size for each interval, and
2144 * assume all packets will be that size.
2145 *
2146 * For interval 0, we obviously must schedule all packets for each interval.
2147 * The bandwidth for interval 0 is just the amount of data to be transmitted
2148 * (the sum of all max ESIT payload sizes, plus any overhead per packet times
2149 * the number of packets).
2150 *
2151 * For interval 1, we have two possible microframes to schedule those packets
2152 * in. For this algorithm, if we can schedule the same number of packets for
2153 * each possible scheduling opportunity (each microframe), we will do so. The
2154 * remaining number of packets will be saved to be transmitted in the gaps in
2155 * the next interval's scheduling sequence.
2156 *
2157 * As we move those remaining packets to be scheduled with interval 2 packets,
2158 * we have to double the number of remaining packets to transmit. This is
2159 * because the intervals are actually powers of 2, and we would be transmitting
2160 * the previous interval's packets twice in this interval. We also have to be
2161 * sure that when we look at the largest max packet size for this interval, we
2162 * also look at the largest max packet size for the remaining packets and take
2163 * the greater of the two.
2164 *
2165 * The algorithm continues to evenly distribute packets in each scheduling
2166 * opportunity, and push the remaining packets out, until we get to the last
2167 * interval. Then those packets and their associated overhead are just added
2168 * to the bandwidth used.
Sarah Sharp2e279802011-09-02 11:05:50 -07002169 */
2170static int xhci_check_bw_table(struct xhci_hcd *xhci,
2171 struct xhci_virt_device *virt_dev,
2172 int old_active_eps)
2173{
Sarah Sharpc29eea62011-09-02 11:05:52 -07002174 unsigned int bw_reserved;
2175 unsigned int max_bandwidth;
2176 unsigned int bw_used;
2177 unsigned int block_size;
2178 struct xhci_interval_bw_table *bw_table;
2179 unsigned int packet_size = 0;
2180 unsigned int overhead = 0;
2181 unsigned int packets_transmitted = 0;
2182 unsigned int packets_remaining = 0;
2183 unsigned int i;
2184
Sarah Sharp2b698992011-09-13 16:41:13 -07002185 if (virt_dev->udev->speed == USB_SPEED_SUPER)
2186 return xhci_check_ss_bw(xhci, virt_dev);
2187
Sarah Sharpc29eea62011-09-02 11:05:52 -07002188 if (virt_dev->udev->speed == USB_SPEED_HIGH) {
2189 max_bandwidth = HS_BW_LIMIT;
2190 /* Convert percent of bus BW reserved to blocks reserved */
2191 bw_reserved = DIV_ROUND_UP(HS_BW_RESERVED * max_bandwidth, 100);
2192 } else {
2193 max_bandwidth = FS_BW_LIMIT;
2194 bw_reserved = DIV_ROUND_UP(FS_BW_RESERVED * max_bandwidth, 100);
2195 }
2196
2197 bw_table = virt_dev->bw_table;
2198 /* We need to translate the max packet size and max ESIT payloads into
2199 * the units the hardware uses.
2200 */
2201 block_size = xhci_get_block_size(virt_dev->udev);
2202
2203 /* If we are manipulating a LS/FS device under a HS hub, double check
2204 * that the HS bus has enough bandwidth if we are activing a new TT.
2205 */
2206 if (virt_dev->tt_info) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002207 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2208 "Recalculating BW for rootport %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002209 virt_dev->real_port);
2210 if (xhci_check_tt_bw_table(xhci, virt_dev, old_active_eps)) {
2211 xhci_warn(xhci, "Not enough bandwidth on HS bus for "
2212 "newly activated TT.\n");
2213 return -ENOMEM;
2214 }
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002215 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2216 "Recalculating BW for TT slot %u port %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002217 virt_dev->tt_info->slot_id,
2218 virt_dev->tt_info->ttport);
2219 } else {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002220 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2221 "Recalculating BW for rootport %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002222 virt_dev->real_port);
2223 }
2224
2225 /* Add in how much bandwidth will be used for interval zero, or the
2226 * rounded max ESIT payload + number of packets * largest overhead.
2227 */
2228 bw_used = DIV_ROUND_UP(bw_table->interval0_esit_payload, block_size) +
2229 bw_table->interval_bw[0].num_packets *
2230 xhci_get_largest_overhead(&bw_table->interval_bw[0]);
2231
2232 for (i = 1; i < XHCI_MAX_INTERVAL; i++) {
2233 unsigned int bw_added;
2234 unsigned int largest_mps;
2235 unsigned int interval_overhead;
2236
2237 /*
2238 * How many packets could we transmit in this interval?
2239 * If packets didn't fit in the previous interval, we will need
2240 * to transmit that many packets twice within this interval.
2241 */
2242 packets_remaining = 2 * packets_remaining +
2243 bw_table->interval_bw[i].num_packets;
2244
2245 /* Find the largest max packet size of this or the previous
2246 * interval.
2247 */
2248 if (list_empty(&bw_table->interval_bw[i].endpoints))
2249 largest_mps = 0;
2250 else {
2251 struct xhci_virt_ep *virt_ep;
2252 struct list_head *ep_entry;
2253
2254 ep_entry = bw_table->interval_bw[i].endpoints.next;
2255 virt_ep = list_entry(ep_entry,
2256 struct xhci_virt_ep, bw_endpoint_list);
2257 /* Convert to blocks, rounding up */
2258 largest_mps = DIV_ROUND_UP(
2259 virt_ep->bw_info.max_packet_size,
2260 block_size);
2261 }
2262 if (largest_mps > packet_size)
2263 packet_size = largest_mps;
2264
2265 /* Use the larger overhead of this or the previous interval. */
2266 interval_overhead = xhci_get_largest_overhead(
2267 &bw_table->interval_bw[i]);
2268 if (interval_overhead > overhead)
2269 overhead = interval_overhead;
2270
2271 /* How many packets can we evenly distribute across
2272 * (1 << (i + 1)) possible scheduling opportunities?
2273 */
2274 packets_transmitted = packets_remaining >> (i + 1);
2275
2276 /* Add in the bandwidth used for those scheduled packets */
2277 bw_added = packets_transmitted * (overhead + packet_size);
2278
2279 /* How many packets do we have remaining to transmit? */
2280 packets_remaining = packets_remaining % (1 << (i + 1));
2281
2282 /* What largest max packet size should those packets have? */
2283 /* If we've transmitted all packets, don't carry over the
2284 * largest packet size.
2285 */
2286 if (packets_remaining == 0) {
2287 packet_size = 0;
2288 overhead = 0;
2289 } else if (packets_transmitted > 0) {
2290 /* Otherwise if we do have remaining packets, and we've
2291 * scheduled some packets in this interval, take the
2292 * largest max packet size from endpoints with this
2293 * interval.
2294 */
2295 packet_size = largest_mps;
2296 overhead = interval_overhead;
2297 }
2298 /* Otherwise carry over packet_size and overhead from the last
2299 * time we had a remainder.
2300 */
2301 bw_used += bw_added;
2302 if (bw_used > max_bandwidth) {
2303 xhci_warn(xhci, "Not enough bandwidth. "
2304 "Proposed: %u, Max: %u\n",
2305 bw_used, max_bandwidth);
2306 return -ENOMEM;
2307 }
2308 }
2309 /*
2310 * Ok, we know we have some packets left over after even-handedly
2311 * scheduling interval 15. We don't know which microframes they will
2312 * fit into, so we over-schedule and say they will be scheduled every
2313 * microframe.
2314 */
2315 if (packets_remaining > 0)
2316 bw_used += overhead + packet_size;
2317
2318 if (!virt_dev->tt_info && virt_dev->udev->speed == USB_SPEED_HIGH) {
2319 unsigned int port_index = virt_dev->real_port - 1;
2320
2321 /* OK, we're manipulating a HS device attached to a
2322 * root port bandwidth domain. Include the number of active TTs
2323 * in the bandwidth used.
2324 */
2325 bw_used += TT_HS_OVERHEAD *
2326 xhci->rh_bw[port_index].num_active_tts;
2327 }
2328
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002329 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2330 "Final bandwidth: %u, Limit: %u, Reserved: %u, "
2331 "Available: %u " "percent",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002332 bw_used, max_bandwidth, bw_reserved,
2333 (max_bandwidth - bw_used - bw_reserved) * 100 /
2334 max_bandwidth);
2335
2336 bw_used += bw_reserved;
2337 if (bw_used > max_bandwidth) {
2338 xhci_warn(xhci, "Not enough bandwidth. Proposed: %u, Max: %u\n",
2339 bw_used, max_bandwidth);
2340 return -ENOMEM;
2341 }
2342
2343 bw_table->bw_used = bw_used;
Sarah Sharp2e279802011-09-02 11:05:50 -07002344 return 0;
2345}
2346
2347static bool xhci_is_async_ep(unsigned int ep_type)
2348{
2349 return (ep_type != ISOC_OUT_EP && ep_type != INT_OUT_EP &&
2350 ep_type != ISOC_IN_EP &&
2351 ep_type != INT_IN_EP);
2352}
2353
Sarah Sharp2b698992011-09-13 16:41:13 -07002354static bool xhci_is_sync_in_ep(unsigned int ep_type)
2355{
Sarah Sharp392a07a2012-10-25 13:44:12 -07002356 return (ep_type == ISOC_IN_EP || ep_type == INT_IN_EP);
Sarah Sharp2b698992011-09-13 16:41:13 -07002357}
2358
2359static unsigned int xhci_get_ss_bw_consumed(struct xhci_bw_info *ep_bw)
2360{
2361 unsigned int mps = DIV_ROUND_UP(ep_bw->max_packet_size, SS_BLOCK);
2362
2363 if (ep_bw->ep_interval == 0)
2364 return SS_OVERHEAD_BURST +
2365 (ep_bw->mult * ep_bw->num_packets *
2366 (SS_OVERHEAD + mps));
2367 return DIV_ROUND_UP(ep_bw->mult * ep_bw->num_packets *
2368 (SS_OVERHEAD + mps + SS_OVERHEAD_BURST),
2369 1 << ep_bw->ep_interval);
2370
2371}
2372
Sarah Sharp2e279802011-09-02 11:05:50 -07002373void xhci_drop_ep_from_interval_table(struct xhci_hcd *xhci,
2374 struct xhci_bw_info *ep_bw,
2375 struct xhci_interval_bw_table *bw_table,
2376 struct usb_device *udev,
2377 struct xhci_virt_ep *virt_ep,
2378 struct xhci_tt_bw_info *tt_info)
2379{
2380 struct xhci_interval_bw *interval_bw;
2381 int normalized_interval;
2382
Sarah Sharp2b698992011-09-13 16:41:13 -07002383 if (xhci_is_async_ep(ep_bw->type))
Sarah Sharp2e279802011-09-02 11:05:50 -07002384 return;
2385
Sarah Sharp2b698992011-09-13 16:41:13 -07002386 if (udev->speed == USB_SPEED_SUPER) {
2387 if (xhci_is_sync_in_ep(ep_bw->type))
2388 xhci->devs[udev->slot_id]->bw_table->ss_bw_in -=
2389 xhci_get_ss_bw_consumed(ep_bw);
2390 else
2391 xhci->devs[udev->slot_id]->bw_table->ss_bw_out -=
2392 xhci_get_ss_bw_consumed(ep_bw);
2393 return;
2394 }
2395
2396 /* SuperSpeed endpoints never get added to intervals in the table, so
2397 * this check is only valid for HS/FS/LS devices.
2398 */
2399 if (list_empty(&virt_ep->bw_endpoint_list))
2400 return;
Sarah Sharp2e279802011-09-02 11:05:50 -07002401 /* For LS/FS devices, we need to translate the interval expressed in
2402 * microframes to frames.
2403 */
2404 if (udev->speed == USB_SPEED_HIGH)
2405 normalized_interval = ep_bw->ep_interval;
2406 else
2407 normalized_interval = ep_bw->ep_interval - 3;
2408
2409 if (normalized_interval == 0)
2410 bw_table->interval0_esit_payload -= ep_bw->max_esit_payload;
2411 interval_bw = &bw_table->interval_bw[normalized_interval];
2412 interval_bw->num_packets -= ep_bw->num_packets;
2413 switch (udev->speed) {
2414 case USB_SPEED_LOW:
2415 interval_bw->overhead[LS_OVERHEAD_TYPE] -= 1;
2416 break;
2417 case USB_SPEED_FULL:
2418 interval_bw->overhead[FS_OVERHEAD_TYPE] -= 1;
2419 break;
2420 case USB_SPEED_HIGH:
2421 interval_bw->overhead[HS_OVERHEAD_TYPE] -= 1;
2422 break;
2423 case USB_SPEED_SUPER:
2424 case USB_SPEED_UNKNOWN:
2425 case USB_SPEED_WIRELESS:
2426 /* Should never happen because only LS/FS/HS endpoints will get
2427 * added to the endpoint list.
2428 */
2429 return;
2430 }
2431 if (tt_info)
2432 tt_info->active_eps -= 1;
2433 list_del_init(&virt_ep->bw_endpoint_list);
2434}
2435
2436static void xhci_add_ep_to_interval_table(struct xhci_hcd *xhci,
2437 struct xhci_bw_info *ep_bw,
2438 struct xhci_interval_bw_table *bw_table,
2439 struct usb_device *udev,
2440 struct xhci_virt_ep *virt_ep,
2441 struct xhci_tt_bw_info *tt_info)
2442{
2443 struct xhci_interval_bw *interval_bw;
2444 struct xhci_virt_ep *smaller_ep;
2445 int normalized_interval;
2446
2447 if (xhci_is_async_ep(ep_bw->type))
2448 return;
2449
Sarah Sharp2b698992011-09-13 16:41:13 -07002450 if (udev->speed == USB_SPEED_SUPER) {
2451 if (xhci_is_sync_in_ep(ep_bw->type))
2452 xhci->devs[udev->slot_id]->bw_table->ss_bw_in +=
2453 xhci_get_ss_bw_consumed(ep_bw);
2454 else
2455 xhci->devs[udev->slot_id]->bw_table->ss_bw_out +=
2456 xhci_get_ss_bw_consumed(ep_bw);
2457 return;
2458 }
2459
Sarah Sharp2e279802011-09-02 11:05:50 -07002460 /* For LS/FS devices, we need to translate the interval expressed in
2461 * microframes to frames.
2462 */
2463 if (udev->speed == USB_SPEED_HIGH)
2464 normalized_interval = ep_bw->ep_interval;
2465 else
2466 normalized_interval = ep_bw->ep_interval - 3;
2467
2468 if (normalized_interval == 0)
2469 bw_table->interval0_esit_payload += ep_bw->max_esit_payload;
2470 interval_bw = &bw_table->interval_bw[normalized_interval];
2471 interval_bw->num_packets += ep_bw->num_packets;
2472 switch (udev->speed) {
2473 case USB_SPEED_LOW:
2474 interval_bw->overhead[LS_OVERHEAD_TYPE] += 1;
2475 break;
2476 case USB_SPEED_FULL:
2477 interval_bw->overhead[FS_OVERHEAD_TYPE] += 1;
2478 break;
2479 case USB_SPEED_HIGH:
2480 interval_bw->overhead[HS_OVERHEAD_TYPE] += 1;
2481 break;
2482 case USB_SPEED_SUPER:
2483 case USB_SPEED_UNKNOWN:
2484 case USB_SPEED_WIRELESS:
2485 /* Should never happen because only LS/FS/HS endpoints will get
2486 * added to the endpoint list.
2487 */
2488 return;
2489 }
2490
2491 if (tt_info)
2492 tt_info->active_eps += 1;
2493 /* Insert the endpoint into the list, largest max packet size first. */
2494 list_for_each_entry(smaller_ep, &interval_bw->endpoints,
2495 bw_endpoint_list) {
2496 if (ep_bw->max_packet_size >=
2497 smaller_ep->bw_info.max_packet_size) {
2498 /* Add the new ep before the smaller endpoint */
2499 list_add_tail(&virt_ep->bw_endpoint_list,
2500 &smaller_ep->bw_endpoint_list);
2501 return;
2502 }
2503 }
2504 /* Add the new endpoint at the end of the list. */
2505 list_add_tail(&virt_ep->bw_endpoint_list,
2506 &interval_bw->endpoints);
2507}
2508
2509void xhci_update_tt_active_eps(struct xhci_hcd *xhci,
2510 struct xhci_virt_device *virt_dev,
2511 int old_active_eps)
2512{
2513 struct xhci_root_port_bw_info *rh_bw_info;
2514 if (!virt_dev->tt_info)
2515 return;
2516
2517 rh_bw_info = &xhci->rh_bw[virt_dev->real_port - 1];
2518 if (old_active_eps == 0 &&
2519 virt_dev->tt_info->active_eps != 0) {
2520 rh_bw_info->num_active_tts += 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002521 rh_bw_info->bw_table.bw_used += TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002522 } else if (old_active_eps != 0 &&
2523 virt_dev->tt_info->active_eps == 0) {
2524 rh_bw_info->num_active_tts -= 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002525 rh_bw_info->bw_table.bw_used -= TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002526 }
2527}
2528
2529static int xhci_reserve_bandwidth(struct xhci_hcd *xhci,
2530 struct xhci_virt_device *virt_dev,
2531 struct xhci_container_ctx *in_ctx)
2532{
2533 struct xhci_bw_info ep_bw_info[31];
2534 int i;
2535 struct xhci_input_control_ctx *ctrl_ctx;
2536 int old_active_eps = 0;
2537
Sarah Sharp2e279802011-09-02 11:05:50 -07002538 if (virt_dev->tt_info)
2539 old_active_eps = virt_dev->tt_info->active_eps;
2540
2541 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002542 if (!ctrl_ctx) {
2543 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2544 __func__);
2545 return -ENOMEM;
2546 }
Sarah Sharp2e279802011-09-02 11:05:50 -07002547
2548 for (i = 0; i < 31; i++) {
2549 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2550 continue;
2551
2552 /* Make a copy of the BW info in case we need to revert this */
2553 memcpy(&ep_bw_info[i], &virt_dev->eps[i].bw_info,
2554 sizeof(ep_bw_info[i]));
2555 /* Drop the endpoint from the interval table if the endpoint is
2556 * being dropped or changed.
2557 */
2558 if (EP_IS_DROPPED(ctrl_ctx, i))
2559 xhci_drop_ep_from_interval_table(xhci,
2560 &virt_dev->eps[i].bw_info,
2561 virt_dev->bw_table,
2562 virt_dev->udev,
2563 &virt_dev->eps[i],
2564 virt_dev->tt_info);
2565 }
2566 /* Overwrite the information stored in the endpoints' bw_info */
2567 xhci_update_bw_info(xhci, virt_dev->in_ctx, ctrl_ctx, virt_dev);
2568 for (i = 0; i < 31; i++) {
2569 /* Add any changed or added endpoints to the interval table */
2570 if (EP_IS_ADDED(ctrl_ctx, i))
2571 xhci_add_ep_to_interval_table(xhci,
2572 &virt_dev->eps[i].bw_info,
2573 virt_dev->bw_table,
2574 virt_dev->udev,
2575 &virt_dev->eps[i],
2576 virt_dev->tt_info);
2577 }
2578
2579 if (!xhci_check_bw_table(xhci, virt_dev, old_active_eps)) {
2580 /* Ok, this fits in the bandwidth we have.
2581 * Update the number of active TTs.
2582 */
2583 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
2584 return 0;
2585 }
2586
2587 /* We don't have enough bandwidth for this, revert the stored info. */
2588 for (i = 0; i < 31; i++) {
2589 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2590 continue;
2591
2592 /* Drop the new copies of any added or changed endpoints from
2593 * the interval table.
2594 */
2595 if (EP_IS_ADDED(ctrl_ctx, i)) {
2596 xhci_drop_ep_from_interval_table(xhci,
2597 &virt_dev->eps[i].bw_info,
2598 virt_dev->bw_table,
2599 virt_dev->udev,
2600 &virt_dev->eps[i],
2601 virt_dev->tt_info);
2602 }
2603 /* Revert the endpoint back to its old information */
2604 memcpy(&virt_dev->eps[i].bw_info, &ep_bw_info[i],
2605 sizeof(ep_bw_info[i]));
2606 /* Add any changed or dropped endpoints back into the table */
2607 if (EP_IS_DROPPED(ctrl_ctx, i))
2608 xhci_add_ep_to_interval_table(xhci,
2609 &virt_dev->eps[i].bw_info,
2610 virt_dev->bw_table,
2611 virt_dev->udev,
2612 &virt_dev->eps[i],
2613 virt_dev->tt_info);
2614 }
2615 return -ENOMEM;
2616}
2617
2618
Sarah Sharpf2217e82009-08-07 14:04:43 -07002619/* Issue a configure endpoint command or evaluate context command
2620 * and wait for it to finish.
2621 */
2622static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002623 struct usb_device *udev,
2624 struct xhci_command *command,
2625 bool ctx_change, bool must_succeed)
Sarah Sharpf2217e82009-08-07 14:04:43 -07002626{
2627 int ret;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002628 unsigned long flags;
Sarah Sharp92f8e762013-04-23 17:11:14 -07002629 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002630 struct xhci_virt_device *virt_dev;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002631
2632 if (!command)
2633 return -EINVAL;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002634
2635 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002636 virt_dev = xhci->devs[udev->slot_id];
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002637
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002638 ctrl_ctx = xhci_get_input_control_ctx(xhci, command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002639 if (!ctrl_ctx) {
Emil Goode1f215692013-06-25 15:49:36 -07002640 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002641 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2642 __func__);
2643 return -ENOMEM;
2644 }
Sarah Sharp750645f2011-09-02 11:05:43 -07002645
2646 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK) &&
Sarah Sharp92f8e762013-04-23 17:11:14 -07002647 xhci_reserve_host_resources(xhci, ctrl_ctx)) {
Sarah Sharp750645f2011-09-02 11:05:43 -07002648 spin_unlock_irqrestore(&xhci->lock, flags);
2649 xhci_warn(xhci, "Not enough host resources, "
2650 "active endpoint contexts = %u\n",
2651 xhci->num_active_eps);
2652 return -ENOMEM;
2653 }
Sarah Sharp2e279802011-09-02 11:05:50 -07002654 if ((xhci->quirks & XHCI_SW_BW_CHECKING) &&
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002655 xhci_reserve_bandwidth(xhci, virt_dev, command->in_ctx)) {
Sarah Sharp2e279802011-09-02 11:05:50 -07002656 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
Sarah Sharp92f8e762013-04-23 17:11:14 -07002657 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharp2e279802011-09-02 11:05:50 -07002658 spin_unlock_irqrestore(&xhci->lock, flags);
2659 xhci_warn(xhci, "Not enough bandwidth\n");
2660 return -ENOMEM;
2661 }
Sarah Sharp750645f2011-09-02 11:05:43 -07002662
Sarah Sharpf2217e82009-08-07 14:04:43 -07002663 if (!ctx_change)
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002664 ret = xhci_queue_configure_endpoint(xhci, command,
2665 command->in_ctx->dma,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002666 udev->slot_id, must_succeed);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002667 else
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002668 ret = xhci_queue_evaluate_context(xhci, command,
2669 command->in_ctx->dma,
Sarah Sharp4b266542012-05-07 15:34:26 -07002670 udev->slot_id, must_succeed);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002671 if (ret < 0) {
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002672 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
Sarah Sharp92f8e762013-04-23 17:11:14 -07002673 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002674 spin_unlock_irqrestore(&xhci->lock, flags);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03002675 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
2676 "FIXME allocate a new ring segment");
Sarah Sharpf2217e82009-08-07 14:04:43 -07002677 return -ENOMEM;
2678 }
2679 xhci_ring_cmd_db(xhci);
2680 spin_unlock_irqrestore(&xhci->lock, flags);
2681
2682 /* Wait for the configure endpoint command to complete */
Mathias Nymanc311e392014-05-08 19:26:03 +03002683 wait_for_completion(command->completion);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002684
2685 if (!ctx_change)
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002686 ret = xhci_configure_endpoint_result(xhci, udev,
2687 &command->status);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002688 else
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002689 ret = xhci_evaluate_context_result(xhci, udev,
2690 &command->status);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002691
2692 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
2693 spin_lock_irqsave(&xhci->lock, flags);
2694 /* If the command failed, remove the reserved resources.
2695 * Otherwise, clean up the estimate to include dropped eps.
2696 */
2697 if (ret)
Sarah Sharp92f8e762013-04-23 17:11:14 -07002698 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002699 else
Sarah Sharp92f8e762013-04-23 17:11:14 -07002700 xhci_finish_resource_reservation(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002701 spin_unlock_irqrestore(&xhci->lock, flags);
2702 }
2703 return ret;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002704}
2705
Hans de Goededf613832013-10-04 00:29:45 +02002706static void xhci_check_bw_drop_ep_streams(struct xhci_hcd *xhci,
2707 struct xhci_virt_device *vdev, int i)
2708{
2709 struct xhci_virt_ep *ep = &vdev->eps[i];
2710
2711 if (ep->ep_state & EP_HAS_STREAMS) {
2712 xhci_warn(xhci, "WARN: endpoint 0x%02x has streams on set_interface, freeing streams.\n",
2713 xhci_get_endpoint_address(i));
2714 xhci_free_stream_info(xhci, ep->stream_info);
2715 ep->stream_info = NULL;
2716 ep->ep_state &= ~EP_HAS_STREAMS;
2717 }
2718}
2719
Sarah Sharpf88ba782009-05-14 11:44:22 -07002720/* Called after one or more calls to xhci_add_endpoint() or
2721 * xhci_drop_endpoint(). If this call fails, the USB core is expected
2722 * to call xhci_reset_bandwidth().
2723 *
2724 * Since we are in the middle of changing either configuration or
2725 * installing a new alt setting, the USB core won't allow URBs to be
2726 * enqueued for any endpoint on the old config or interface. Nothing
2727 * else should be touching the xhci->devs[slot_id] structure, so we
2728 * don't need to take the xhci->lock for manipulating that.
2729 */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002730int xhci_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
2731{
2732 int i;
2733 int ret = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002734 struct xhci_hcd *xhci;
2735 struct xhci_virt_device *virt_dev;
John Yound115b042009-07-27 12:05:15 -07002736 struct xhci_input_control_ctx *ctrl_ctx;
2737 struct xhci_slot_ctx *slot_ctx;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002738 struct xhci_command *command;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002739
Andiry Xu64927732010-10-14 07:22:45 -07002740 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002741 if (ret <= 0)
2742 return ret;
2743 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07002744 if (xhci->xhc_state & XHCI_STATE_DYING)
2745 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002746
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002747 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002748 virt_dev = xhci->devs[udev->slot_id];
2749
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002750 command = xhci_alloc_command(xhci, false, true, GFP_KERNEL);
2751 if (!command)
2752 return -ENOMEM;
2753
2754 command->in_ctx = virt_dev->in_ctx;
2755
Sarah Sharpf94e01862009-04-27 19:58:38 -07002756 /* See section 4.6.6 - A0 = 1; A1 = D0 = D1 = 0 */
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002757 ctrl_ctx = xhci_get_input_control_ctx(xhci, command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002758 if (!ctrl_ctx) {
2759 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2760 __func__);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002761 ret = -ENOMEM;
2762 goto command_cleanup;
Sarah Sharp92f8e762013-04-23 17:11:14 -07002763 }
Matt Evans28ccd292011-03-29 13:40:46 +11002764 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
2765 ctrl_ctx->add_flags &= cpu_to_le32(~EP0_FLAG);
2766 ctrl_ctx->drop_flags &= cpu_to_le32(~(SLOT_FLAG | EP0_FLAG));
Sarah Sharp2dc37532011-09-02 11:05:40 -07002767
2768 /* Don't issue the command if there's no endpoints to update. */
2769 if (ctrl_ctx->add_flags == cpu_to_le32(SLOT_FLAG) &&
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002770 ctrl_ctx->drop_flags == 0) {
2771 ret = 0;
2772 goto command_cleanup;
2773 }
Julius Wernerd6759132014-06-24 17:14:42 +03002774 /* Fix up Context Entries field. Minimum value is EP0 == BIT(1). */
John Yound115b042009-07-27 12:05:15 -07002775 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Julius Wernerd6759132014-06-24 17:14:42 +03002776 for (i = 31; i >= 1; i--) {
2777 __le32 le32 = cpu_to_le32(BIT(i));
2778
2779 if ((virt_dev->eps[i-1].ring && !(ctrl_ctx->drop_flags & le32))
2780 || (ctrl_ctx->add_flags & le32) || i == 1) {
2781 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
2782 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(i));
2783 break;
2784 }
2785 }
2786 xhci_dbg(xhci, "New Input Control Context:\n");
John Yound115b042009-07-27 12:05:15 -07002787 xhci_dbg_ctx(xhci, virt_dev->in_ctx,
Matt Evans28ccd292011-03-29 13:40:46 +11002788 LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info)));
Sarah Sharpf94e01862009-04-27 19:58:38 -07002789
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002790 ret = xhci_configure_endpoint(xhci, udev, command,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002791 false, false);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002792 if (ret)
Sarah Sharpf94e01862009-04-27 19:58:38 -07002793 /* Callee should call reset_bandwidth() */
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002794 goto command_cleanup;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002795
2796 xhci_dbg(xhci, "Output context after successful config ep cmd:\n");
John Yound115b042009-07-27 12:05:15 -07002797 xhci_dbg_ctx(xhci, virt_dev->out_ctx,
Matt Evans28ccd292011-03-29 13:40:46 +11002798 LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info)));
Sarah Sharpf94e01862009-04-27 19:58:38 -07002799
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002800 /* Free any rings that were dropped, but not changed. */
2801 for (i = 1; i < 31; ++i) {
Matt Evans4819fef2011-06-01 13:01:07 +10002802 if ((le32_to_cpu(ctrl_ctx->drop_flags) & (1 << (i + 1))) &&
Hans de Goededf613832013-10-04 00:29:45 +02002803 !(le32_to_cpu(ctrl_ctx->add_flags) & (1 << (i + 1)))) {
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002804 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
Hans de Goededf613832013-10-04 00:29:45 +02002805 xhci_check_bw_drop_ep_streams(xhci, virt_dev, i);
2806 }
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002807 }
John Yound115b042009-07-27 12:05:15 -07002808 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002809 /*
2810 * Install any rings for completely new endpoints or changed endpoints,
2811 * and free or cache any old rings from changed endpoints.
2812 */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002813 for (i = 1; i < 31; ++i) {
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002814 if (!virt_dev->eps[i].new_ring)
2815 continue;
2816 /* Only cache or free the old ring if it exists.
2817 * It may not if this is the first add of an endpoint.
2818 */
2819 if (virt_dev->eps[i].ring) {
Sarah Sharp412566b2009-12-09 15:59:01 -08002820 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002821 }
Hans de Goededf613832013-10-04 00:29:45 +02002822 xhci_check_bw_drop_ep_streams(xhci, virt_dev, i);
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002823 virt_dev->eps[i].ring = virt_dev->eps[i].new_ring;
2824 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002825 }
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002826command_cleanup:
2827 kfree(command->completion);
2828 kfree(command);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002829
Sarah Sharpf94e01862009-04-27 19:58:38 -07002830 return ret;
2831}
2832
2833void xhci_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
2834{
Sarah Sharpf94e01862009-04-27 19:58:38 -07002835 struct xhci_hcd *xhci;
2836 struct xhci_virt_device *virt_dev;
2837 int i, ret;
2838
Andiry Xu64927732010-10-14 07:22:45 -07002839 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002840 if (ret <= 0)
2841 return;
2842 xhci = hcd_to_xhci(hcd);
2843
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002844 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002845 virt_dev = xhci->devs[udev->slot_id];
2846 /* Free any rings allocated for added endpoints */
2847 for (i = 0; i < 31; ++i) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002848 if (virt_dev->eps[i].new_ring) {
2849 xhci_ring_free(xhci, virt_dev->eps[i].new_ring);
2850 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002851 }
2852 }
John Yound115b042009-07-27 12:05:15 -07002853 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002854}
2855
Sarah Sharp5270b952009-09-04 10:53:11 -07002856static void xhci_setup_input_ctx_for_config_ep(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002857 struct xhci_container_ctx *in_ctx,
2858 struct xhci_container_ctx *out_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07002859 struct xhci_input_control_ctx *ctrl_ctx,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002860 u32 add_flags, u32 drop_flags)
Sarah Sharp5270b952009-09-04 10:53:11 -07002861{
Matt Evans28ccd292011-03-29 13:40:46 +11002862 ctrl_ctx->add_flags = cpu_to_le32(add_flags);
2863 ctrl_ctx->drop_flags = cpu_to_le32(drop_flags);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002864 xhci_slot_copy(xhci, in_ctx, out_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11002865 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharp5270b952009-09-04 10:53:11 -07002866
Sarah Sharp913a8a32009-09-04 10:53:13 -07002867 xhci_dbg(xhci, "Input Context:\n");
2868 xhci_dbg_ctx(xhci, in_ctx, xhci_last_valid_endpoint(add_flags));
Sarah Sharp5270b952009-09-04 10:53:11 -07002869}
2870
Dmitry Torokhov8212a492011-02-08 13:55:59 -08002871static void xhci_setup_input_ctx_for_quirk(struct xhci_hcd *xhci,
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002872 unsigned int slot_id, unsigned int ep_index,
2873 struct xhci_dequeue_state *deq_state)
2874{
Sarah Sharp92f8e762013-04-23 17:11:14 -07002875 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002876 struct xhci_container_ctx *in_ctx;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002877 struct xhci_ep_ctx *ep_ctx;
2878 u32 added_ctxs;
2879 dma_addr_t addr;
2880
Sarah Sharp92f8e762013-04-23 17:11:14 -07002881 in_ctx = xhci->devs[slot_id]->in_ctx;
2882 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
2883 if (!ctrl_ctx) {
2884 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2885 __func__);
2886 return;
2887 }
2888
Sarah Sharp913a8a32009-09-04 10:53:13 -07002889 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
2890 xhci->devs[slot_id]->out_ctx, ep_index);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002891 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
2892 addr = xhci_trb_virt_to_dma(deq_state->new_deq_seg,
2893 deq_state->new_deq_ptr);
2894 if (addr == 0) {
2895 xhci_warn(xhci, "WARN Cannot submit config ep after "
2896 "reset ep command\n");
2897 xhci_warn(xhci, "WARN deq seg = %p, deq ptr = %p\n",
2898 deq_state->new_deq_seg,
2899 deq_state->new_deq_ptr);
2900 return;
2901 }
Matt Evans28ccd292011-03-29 13:40:46 +11002902 ep_ctx->deq = cpu_to_le64(addr | deq_state->new_cycle_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002903
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002904 added_ctxs = xhci_get_endpoint_flag_from_index(ep_index);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002905 xhci_setup_input_ctx_for_config_ep(xhci, xhci->devs[slot_id]->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07002906 xhci->devs[slot_id]->out_ctx, ctrl_ctx,
2907 added_ctxs, added_ctxs);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002908}
2909
Sarah Sharp82d10092009-08-07 14:04:52 -07002910void xhci_cleanup_stalled_ring(struct xhci_hcd *xhci,
Mathias Nymand97b4f82014-11-27 18:19:16 +02002911 unsigned int ep_index, struct xhci_td *td)
Sarah Sharp82d10092009-08-07 14:04:52 -07002912{
2913 struct xhci_dequeue_state deq_state;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002914 struct xhci_virt_ep *ep;
Mathias Nymand97b4f82014-11-27 18:19:16 +02002915 struct usb_device *udev = td->urb->dev;
Sarah Sharp82d10092009-08-07 14:04:52 -07002916
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002917 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2918 "Cleaning up stalled endpoint ring");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002919 ep = &xhci->devs[udev->slot_id]->eps[ep_index];
Sarah Sharp82d10092009-08-07 14:04:52 -07002920 /* We need to move the HW's dequeue pointer past this TD,
2921 * or it will attempt to resend it on the next doorbell ring.
2922 */
2923 xhci_find_new_dequeue_state(xhci, udev->slot_id,
Mathias Nymand97b4f82014-11-27 18:19:16 +02002924 ep_index, ep->stopped_stream, td, &deq_state);
Sarah Sharp82d10092009-08-07 14:04:52 -07002925
Mathias Nyman365038d2014-08-19 15:17:58 +03002926 if (!deq_state.new_deq_ptr || !deq_state.new_deq_seg)
2927 return;
2928
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002929 /* HW with the reset endpoint quirk will use the saved dequeue state to
2930 * issue a configure endpoint command later.
2931 */
2932 if (!(xhci->quirks & XHCI_RESET_EP_QUIRK)) {
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002933 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2934 "Queueing new dequeue state");
Hans de Goede1e3452e2014-08-20 16:41:52 +03002935 xhci_queue_new_dequeue_state(xhci, udev->slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002936 ep_index, ep->stopped_stream, &deq_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002937 } else {
2938 /* Better hope no one uses the input context between now and the
2939 * reset endpoint completion!
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002940 * XXX: No idea how this hardware will react when stream rings
2941 * are enabled.
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002942 */
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002943 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2944 "Setting up input context for "
2945 "configure endpoint command");
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002946 xhci_setup_input_ctx_for_quirk(xhci, udev->slot_id,
2947 ep_index, &deq_state);
2948 }
Sarah Sharp82d10092009-08-07 14:04:52 -07002949}
2950
Mathias Nyman8e71a322014-11-18 11:27:12 +02002951/* Called when clearing halted device. The core should have sent the control
2952 * message to clear the device halt condition. The host side of the halt should
2953 * already be cleared with a reset endpoint command issued when the STALL tx
2954 * event was received.
2955 *
Sarah Sharpa1587d92009-07-27 12:03:15 -07002956 * Context: in_interrupt
2957 */
Mathias Nyman8e71a322014-11-18 11:27:12 +02002958
Sarah Sharpa1587d92009-07-27 12:03:15 -07002959void xhci_endpoint_reset(struct usb_hcd *hcd,
2960 struct usb_host_endpoint *ep)
2961{
2962 struct xhci_hcd *xhci;
Sarah Sharpa1587d92009-07-27 12:03:15 -07002963
2964 xhci = hcd_to_xhci(hcd);
Sarah Sharpa1587d92009-07-27 12:03:15 -07002965
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002966 /*
Mathias Nyman8e71a322014-11-18 11:27:12 +02002967 * We might need to implement the config ep cmd in xhci 4.8.1 note:
2968 * The Reset Endpoint Command may only be issued to endpoints in the
2969 * Halted state. If software wishes reset the Data Toggle or Sequence
2970 * Number of an endpoint that isn't in the Halted state, then software
2971 * may issue a Configure Endpoint Command with the Drop and Add bits set
2972 * for the target endpoint. that is in the Stopped state.
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002973 */
Sarah Sharpa1587d92009-07-27 12:03:15 -07002974
Mathias Nyman8e71a322014-11-18 11:27:12 +02002975 /* For now just print debug to follow the situation */
2976 xhci_dbg(xhci, "Endpoint 0x%x ep reset callback called\n",
2977 ep->desc.bEndpointAddress);
Sarah Sharpa1587d92009-07-27 12:03:15 -07002978}
2979
Sarah Sharp8df75f42010-04-02 15:34:16 -07002980static int xhci_check_streams_endpoint(struct xhci_hcd *xhci,
2981 struct usb_device *udev, struct usb_host_endpoint *ep,
2982 unsigned int slot_id)
2983{
2984 int ret;
2985 unsigned int ep_index;
2986 unsigned int ep_state;
2987
2988 if (!ep)
2989 return -EINVAL;
Andiry Xu64927732010-10-14 07:22:45 -07002990 ret = xhci_check_args(xhci_to_hcd(xhci), udev, ep, 1, true, __func__);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002991 if (ret <= 0)
2992 return -EINVAL;
Hans de Goedea3901532013-10-04 17:05:55 +02002993 if (usb_ss_max_streams(&ep->ss_ep_comp) == 0) {
Sarah Sharp8df75f42010-04-02 15:34:16 -07002994 xhci_warn(xhci, "WARN: SuperSpeed Endpoint Companion"
2995 " descriptor for ep 0x%x does not support streams\n",
2996 ep->desc.bEndpointAddress);
2997 return -EINVAL;
2998 }
2999
3000 ep_index = xhci_get_endpoint_index(&ep->desc);
3001 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
3002 if (ep_state & EP_HAS_STREAMS ||
3003 ep_state & EP_GETTING_STREAMS) {
3004 xhci_warn(xhci, "WARN: SuperSpeed bulk endpoint 0x%x "
3005 "already has streams set up.\n",
3006 ep->desc.bEndpointAddress);
3007 xhci_warn(xhci, "Send email to xHCI maintainer and ask for "
3008 "dynamic stream context array reallocation.\n");
3009 return -EINVAL;
3010 }
3011 if (!list_empty(&xhci->devs[slot_id]->eps[ep_index].ring->td_list)) {
3012 xhci_warn(xhci, "Cannot setup streams for SuperSpeed bulk "
3013 "endpoint 0x%x; URBs are pending.\n",
3014 ep->desc.bEndpointAddress);
3015 return -EINVAL;
3016 }
3017 return 0;
3018}
3019
3020static void xhci_calculate_streams_entries(struct xhci_hcd *xhci,
3021 unsigned int *num_streams, unsigned int *num_stream_ctxs)
3022{
3023 unsigned int max_streams;
3024
3025 /* The stream context array size must be a power of two */
3026 *num_stream_ctxs = roundup_pow_of_two(*num_streams);
3027 /*
3028 * Find out how many primary stream array entries the host controller
3029 * supports. Later we may use secondary stream arrays (similar to 2nd
3030 * level page entries), but that's an optional feature for xHCI host
3031 * controllers. xHCs must support at least 4 stream IDs.
3032 */
3033 max_streams = HCC_MAX_PSA(xhci->hcc_params);
3034 if (*num_stream_ctxs > max_streams) {
3035 xhci_dbg(xhci, "xHCI HW only supports %u stream ctx entries.\n",
3036 max_streams);
3037 *num_stream_ctxs = max_streams;
3038 *num_streams = max_streams;
3039 }
3040}
3041
3042/* Returns an error code if one of the endpoint already has streams.
3043 * This does not change any data structures, it only checks and gathers
3044 * information.
3045 */
3046static int xhci_calculate_streams_and_bitmask(struct xhci_hcd *xhci,
3047 struct usb_device *udev,
3048 struct usb_host_endpoint **eps, unsigned int num_eps,
3049 unsigned int *num_streams, u32 *changed_ep_bitmask)
3050{
Sarah Sharp8df75f42010-04-02 15:34:16 -07003051 unsigned int max_streams;
3052 unsigned int endpoint_flag;
3053 int i;
3054 int ret;
3055
3056 for (i = 0; i < num_eps; i++) {
3057 ret = xhci_check_streams_endpoint(xhci, udev,
3058 eps[i], udev->slot_id);
3059 if (ret < 0)
3060 return ret;
3061
Felipe Balbi18b7ede2012-01-02 13:35:41 +02003062 max_streams = usb_ss_max_streams(&eps[i]->ss_ep_comp);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003063 if (max_streams < (*num_streams - 1)) {
3064 xhci_dbg(xhci, "Ep 0x%x only supports %u stream IDs.\n",
3065 eps[i]->desc.bEndpointAddress,
3066 max_streams);
3067 *num_streams = max_streams+1;
3068 }
3069
3070 endpoint_flag = xhci_get_endpoint_flag(&eps[i]->desc);
3071 if (*changed_ep_bitmask & endpoint_flag)
3072 return -EINVAL;
3073 *changed_ep_bitmask |= endpoint_flag;
3074 }
3075 return 0;
3076}
3077
3078static u32 xhci_calculate_no_streams_bitmask(struct xhci_hcd *xhci,
3079 struct usb_device *udev,
3080 struct usb_host_endpoint **eps, unsigned int num_eps)
3081{
3082 u32 changed_ep_bitmask = 0;
3083 unsigned int slot_id;
3084 unsigned int ep_index;
3085 unsigned int ep_state;
3086 int i;
3087
3088 slot_id = udev->slot_id;
3089 if (!xhci->devs[slot_id])
3090 return 0;
3091
3092 for (i = 0; i < num_eps; i++) {
3093 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3094 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
3095 /* Are streams already being freed for the endpoint? */
3096 if (ep_state & EP_GETTING_NO_STREAMS) {
3097 xhci_warn(xhci, "WARN Can't disable streams for "
Joe Perches03e64e92013-07-16 19:25:59 -07003098 "endpoint 0x%x, "
3099 "streams are being disabled already\n",
Sarah Sharp8df75f42010-04-02 15:34:16 -07003100 eps[i]->desc.bEndpointAddress);
3101 return 0;
3102 }
3103 /* Are there actually any streams to free? */
3104 if (!(ep_state & EP_HAS_STREAMS) &&
3105 !(ep_state & EP_GETTING_STREAMS)) {
3106 xhci_warn(xhci, "WARN Can't disable streams for "
Joe Perches03e64e92013-07-16 19:25:59 -07003107 "endpoint 0x%x, "
3108 "streams are already disabled!\n",
Sarah Sharp8df75f42010-04-02 15:34:16 -07003109 eps[i]->desc.bEndpointAddress);
3110 xhci_warn(xhci, "WARN xhci_free_streams() called "
3111 "with non-streams endpoint\n");
3112 return 0;
3113 }
3114 changed_ep_bitmask |= xhci_get_endpoint_flag(&eps[i]->desc);
3115 }
3116 return changed_ep_bitmask;
3117}
3118
3119/*
3120 * The USB device drivers use this function (though the HCD interface in USB
3121 * core) to prepare a set of bulk endpoints to use streams. Streams are used to
3122 * coordinate mass storage command queueing across multiple endpoints (basically
3123 * a stream ID == a task ID).
3124 *
3125 * Setting up streams involves allocating the same size stream context array
3126 * for each endpoint and issuing a configure endpoint command for all endpoints.
3127 *
3128 * Don't allow the call to succeed if one endpoint only supports one stream
3129 * (which means it doesn't support streams at all).
3130 *
3131 * Drivers may get less stream IDs than they asked for, if the host controller
3132 * hardware or endpoints claim they can't support the number of requested
3133 * stream IDs.
3134 */
3135int xhci_alloc_streams(struct usb_hcd *hcd, struct usb_device *udev,
3136 struct usb_host_endpoint **eps, unsigned int num_eps,
3137 unsigned int num_streams, gfp_t mem_flags)
3138{
3139 int i, ret;
3140 struct xhci_hcd *xhci;
3141 struct xhci_virt_device *vdev;
3142 struct xhci_command *config_cmd;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003143 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003144 unsigned int ep_index;
3145 unsigned int num_stream_ctxs;
3146 unsigned long flags;
3147 u32 changed_ep_bitmask = 0;
3148
3149 if (!eps)
3150 return -EINVAL;
3151
3152 /* Add one to the number of streams requested to account for
3153 * stream 0 that is reserved for xHCI usage.
3154 */
3155 num_streams += 1;
3156 xhci = hcd_to_xhci(hcd);
3157 xhci_dbg(xhci, "Driver wants %u stream IDs (including stream 0).\n",
3158 num_streams);
3159
Hans de Goedef7920882013-11-15 12:14:38 +01003160 /* MaxPSASize value 0 (2 streams) means streams are not supported */
Hans de Goede8f873c12014-07-25 22:01:18 +02003161 if ((xhci->quirks & XHCI_BROKEN_STREAMS) ||
3162 HCC_MAX_PSA(xhci->hcc_params) < 4) {
Hans de Goedef7920882013-11-15 12:14:38 +01003163 xhci_dbg(xhci, "xHCI controller does not support streams.\n");
3164 return -ENOSYS;
3165 }
3166
Sarah Sharp8df75f42010-04-02 15:34:16 -07003167 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
3168 if (!config_cmd) {
3169 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
3170 return -ENOMEM;
3171 }
Sarah Sharp92f8e762013-04-23 17:11:14 -07003172 ctrl_ctx = xhci_get_input_control_ctx(xhci, config_cmd->in_ctx);
3173 if (!ctrl_ctx) {
3174 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3175 __func__);
3176 xhci_free_command(xhci, config_cmd);
3177 return -ENOMEM;
3178 }
Sarah Sharp8df75f42010-04-02 15:34:16 -07003179
3180 /* Check to make sure all endpoints are not already configured for
3181 * streams. While we're at it, find the maximum number of streams that
3182 * all the endpoints will support and check for duplicate endpoints.
3183 */
3184 spin_lock_irqsave(&xhci->lock, flags);
3185 ret = xhci_calculate_streams_and_bitmask(xhci, udev, eps,
3186 num_eps, &num_streams, &changed_ep_bitmask);
3187 if (ret < 0) {
3188 xhci_free_command(xhci, config_cmd);
3189 spin_unlock_irqrestore(&xhci->lock, flags);
3190 return ret;
3191 }
3192 if (num_streams <= 1) {
3193 xhci_warn(xhci, "WARN: endpoints can't handle "
3194 "more than one stream.\n");
3195 xhci_free_command(xhci, config_cmd);
3196 spin_unlock_irqrestore(&xhci->lock, flags);
3197 return -EINVAL;
3198 }
3199 vdev = xhci->devs[udev->slot_id];
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003200 /* Mark each endpoint as being in transition, so
Sarah Sharp8df75f42010-04-02 15:34:16 -07003201 * xhci_urb_enqueue() will reject all URBs.
3202 */
3203 for (i = 0; i < num_eps; i++) {
3204 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3205 vdev->eps[ep_index].ep_state |= EP_GETTING_STREAMS;
3206 }
3207 spin_unlock_irqrestore(&xhci->lock, flags);
3208
3209 /* Setup internal data structures and allocate HW data structures for
3210 * streams (but don't install the HW structures in the input context
3211 * until we're sure all memory allocation succeeded).
3212 */
3213 xhci_calculate_streams_entries(xhci, &num_streams, &num_stream_ctxs);
3214 xhci_dbg(xhci, "Need %u stream ctx entries for %u stream IDs.\n",
3215 num_stream_ctxs, num_streams);
3216
3217 for (i = 0; i < num_eps; i++) {
3218 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3219 vdev->eps[ep_index].stream_info = xhci_alloc_stream_info(xhci,
3220 num_stream_ctxs,
3221 num_streams, mem_flags);
3222 if (!vdev->eps[ep_index].stream_info)
3223 goto cleanup;
3224 /* Set maxPstreams in endpoint context and update deq ptr to
3225 * point to stream context array. FIXME
3226 */
3227 }
3228
3229 /* Set up the input context for a configure endpoint command. */
3230 for (i = 0; i < num_eps; i++) {
3231 struct xhci_ep_ctx *ep_ctx;
3232
3233 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3234 ep_ctx = xhci_get_ep_ctx(xhci, config_cmd->in_ctx, ep_index);
3235
3236 xhci_endpoint_copy(xhci, config_cmd->in_ctx,
3237 vdev->out_ctx, ep_index);
3238 xhci_setup_streams_ep_input_ctx(xhci, ep_ctx,
3239 vdev->eps[ep_index].stream_info);
3240 }
3241 /* Tell the HW to drop its old copy of the endpoint context info
3242 * and add the updated copy from the input context.
3243 */
3244 xhci_setup_input_ctx_for_config_ep(xhci, config_cmd->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07003245 vdev->out_ctx, ctrl_ctx,
3246 changed_ep_bitmask, changed_ep_bitmask);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003247
3248 /* Issue and wait for the configure endpoint command */
3249 ret = xhci_configure_endpoint(xhci, udev, config_cmd,
3250 false, false);
3251
3252 /* xHC rejected the configure endpoint command for some reason, so we
3253 * leave the old ring intact and free our internal streams data
3254 * structure.
3255 */
3256 if (ret < 0)
3257 goto cleanup;
3258
3259 spin_lock_irqsave(&xhci->lock, flags);
3260 for (i = 0; i < num_eps; i++) {
3261 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3262 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3263 xhci_dbg(xhci, "Slot %u ep ctx %u now has streams.\n",
3264 udev->slot_id, ep_index);
3265 vdev->eps[ep_index].ep_state |= EP_HAS_STREAMS;
3266 }
3267 xhci_free_command(xhci, config_cmd);
3268 spin_unlock_irqrestore(&xhci->lock, flags);
3269
3270 /* Subtract 1 for stream 0, which drivers can't use */
3271 return num_streams - 1;
3272
3273cleanup:
3274 /* If it didn't work, free the streams! */
3275 for (i = 0; i < num_eps; i++) {
3276 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3277 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003278 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003279 /* FIXME Unset maxPstreams in endpoint context and
3280 * update deq ptr to point to normal string ring.
3281 */
3282 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3283 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3284 xhci_endpoint_zero(xhci, vdev, eps[i]);
3285 }
3286 xhci_free_command(xhci, config_cmd);
3287 return -ENOMEM;
3288}
3289
3290/* Transition the endpoint from using streams to being a "normal" endpoint
3291 * without streams.
3292 *
3293 * Modify the endpoint context state, submit a configure endpoint command,
3294 * and free all endpoint rings for streams if that completes successfully.
3295 */
3296int xhci_free_streams(struct usb_hcd *hcd, struct usb_device *udev,
3297 struct usb_host_endpoint **eps, unsigned int num_eps,
3298 gfp_t mem_flags)
3299{
3300 int i, ret;
3301 struct xhci_hcd *xhci;
3302 struct xhci_virt_device *vdev;
3303 struct xhci_command *command;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003304 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003305 unsigned int ep_index;
3306 unsigned long flags;
3307 u32 changed_ep_bitmask;
3308
3309 xhci = hcd_to_xhci(hcd);
3310 vdev = xhci->devs[udev->slot_id];
3311
3312 /* Set up a configure endpoint command to remove the streams rings */
3313 spin_lock_irqsave(&xhci->lock, flags);
3314 changed_ep_bitmask = xhci_calculate_no_streams_bitmask(xhci,
3315 udev, eps, num_eps);
3316 if (changed_ep_bitmask == 0) {
3317 spin_unlock_irqrestore(&xhci->lock, flags);
3318 return -EINVAL;
3319 }
3320
3321 /* Use the xhci_command structure from the first endpoint. We may have
3322 * allocated too many, but the driver may call xhci_free_streams() for
3323 * each endpoint it grouped into one call to xhci_alloc_streams().
3324 */
3325 ep_index = xhci_get_endpoint_index(&eps[0]->desc);
3326 command = vdev->eps[ep_index].stream_info->free_streams_command;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003327 ctrl_ctx = xhci_get_input_control_ctx(xhci, command->in_ctx);
3328 if (!ctrl_ctx) {
Emil Goode1f215692013-06-25 15:49:36 -07003329 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003330 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3331 __func__);
3332 return -EINVAL;
3333 }
3334
Sarah Sharp8df75f42010-04-02 15:34:16 -07003335 for (i = 0; i < num_eps; i++) {
3336 struct xhci_ep_ctx *ep_ctx;
3337
3338 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3339 ep_ctx = xhci_get_ep_ctx(xhci, command->in_ctx, ep_index);
3340 xhci->devs[udev->slot_id]->eps[ep_index].ep_state |=
3341 EP_GETTING_NO_STREAMS;
3342
3343 xhci_endpoint_copy(xhci, command->in_ctx,
3344 vdev->out_ctx, ep_index);
3345 xhci_setup_no_streams_ep_input_ctx(xhci, ep_ctx,
3346 &vdev->eps[ep_index]);
3347 }
3348 xhci_setup_input_ctx_for_config_ep(xhci, command->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07003349 vdev->out_ctx, ctrl_ctx,
3350 changed_ep_bitmask, changed_ep_bitmask);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003351 spin_unlock_irqrestore(&xhci->lock, flags);
3352
3353 /* Issue and wait for the configure endpoint command,
3354 * which must succeed.
3355 */
3356 ret = xhci_configure_endpoint(xhci, udev, command,
3357 false, true);
3358
3359 /* xHC rejected the configure endpoint command for some reason, so we
3360 * leave the streams rings intact.
3361 */
3362 if (ret < 0)
3363 return ret;
3364
3365 spin_lock_irqsave(&xhci->lock, flags);
3366 for (i = 0; i < num_eps; i++) {
3367 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3368 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003369 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003370 /* FIXME Unset maxPstreams in endpoint context and
3371 * update deq ptr to point to normal string ring.
3372 */
3373 vdev->eps[ep_index].ep_state &= ~EP_GETTING_NO_STREAMS;
3374 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3375 }
3376 spin_unlock_irqrestore(&xhci->lock, flags);
3377
3378 return 0;
3379}
3380
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003381/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003382 * Deletes endpoint resources for endpoints that were active before a Reset
3383 * Device command, or a Disable Slot command. The Reset Device command leaves
3384 * the control endpoint intact, whereas the Disable Slot command deletes it.
3385 *
3386 * Must be called with xhci->lock held.
3387 */
3388void xhci_free_device_endpoint_resources(struct xhci_hcd *xhci,
3389 struct xhci_virt_device *virt_dev, bool drop_control_ep)
3390{
3391 int i;
3392 unsigned int num_dropped_eps = 0;
3393 unsigned int drop_flags = 0;
3394
3395 for (i = (drop_control_ep ? 0 : 1); i < 31; i++) {
3396 if (virt_dev->eps[i].ring) {
3397 drop_flags |= 1 << i;
3398 num_dropped_eps++;
3399 }
3400 }
3401 xhci->num_active_eps -= num_dropped_eps;
3402 if (num_dropped_eps)
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003403 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3404 "Dropped %u ep ctxs, flags = 0x%x, "
3405 "%u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003406 num_dropped_eps, drop_flags,
3407 xhci->num_active_eps);
3408}
3409
3410/*
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003411 * This submits a Reset Device Command, which will set the device state to 0,
3412 * set the device address to 0, and disable all the endpoints except the default
3413 * control endpoint. The USB core should come back and call
3414 * xhci_address_device(), and then re-set up the configuration. If this is
3415 * called because of a usb_reset_and_verify_device(), then the old alternate
3416 * settings will be re-installed through the normal bandwidth allocation
3417 * functions.
3418 *
3419 * Wait for the Reset Device command to finish. Remove all structures
3420 * associated with the endpoints that were disabled. Clear the input device
3421 * structure? Cache the rings? Reset the control endpoint 0 max packet size?
Andiry Xuf0615c42010-10-14 07:22:48 -07003422 *
3423 * If the virt_dev to be reset does not exist or does not match the udev,
3424 * it means the device is lost, possibly due to the xHC restore error and
3425 * re-initialization during S3/S4. In this case, call xhci_alloc_dev() to
3426 * re-allocate the device.
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003427 */
Andiry Xuf0615c42010-10-14 07:22:48 -07003428int xhci_discover_or_reset_device(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003429{
3430 int ret, i;
3431 unsigned long flags;
3432 struct xhci_hcd *xhci;
3433 unsigned int slot_id;
3434 struct xhci_virt_device *virt_dev;
3435 struct xhci_command *reset_device_cmd;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003436 int last_freed_endpoint;
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003437 struct xhci_slot_ctx *slot_ctx;
Sarah Sharp2e279802011-09-02 11:05:50 -07003438 int old_active_eps = 0;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003439
Andiry Xuf0615c42010-10-14 07:22:48 -07003440 ret = xhci_check_args(hcd, udev, NULL, 0, false, __func__);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003441 if (ret <= 0)
3442 return ret;
3443 xhci = hcd_to_xhci(hcd);
3444 slot_id = udev->slot_id;
3445 virt_dev = xhci->devs[slot_id];
Andiry Xuf0615c42010-10-14 07:22:48 -07003446 if (!virt_dev) {
3447 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3448 "not exist. Re-allocate the device\n", slot_id);
3449 ret = xhci_alloc_dev(hcd, udev);
3450 if (ret == 1)
3451 return 0;
3452 else
3453 return -EINVAL;
3454 }
3455
3456 if (virt_dev->udev != udev) {
3457 /* If the virt_dev and the udev does not match, this virt_dev
3458 * may belong to another udev.
3459 * Re-allocate the device.
3460 */
3461 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3462 "not match the udev. Re-allocate the device\n",
3463 slot_id);
3464 ret = xhci_alloc_dev(hcd, udev);
3465 if (ret == 1)
3466 return 0;
3467 else
3468 return -EINVAL;
3469 }
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003470
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003471 /* If device is not setup, there is no point in resetting it */
3472 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
3473 if (GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state)) ==
3474 SLOT_STATE_DISABLED)
3475 return 0;
3476
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003477 xhci_dbg(xhci, "Resetting device with slot ID %u\n", slot_id);
3478 /* Allocate the command structure that holds the struct completion.
3479 * Assume we're in process context, since the normal device reset
3480 * process has to wait for the device anyway. Storage devices are
3481 * reset as part of error handling, so use GFP_NOIO instead of
3482 * GFP_KERNEL.
3483 */
3484 reset_device_cmd = xhci_alloc_command(xhci, false, true, GFP_NOIO);
3485 if (!reset_device_cmd) {
3486 xhci_dbg(xhci, "Couldn't allocate command structure.\n");
3487 return -ENOMEM;
3488 }
3489
3490 /* Attempt to submit the Reset Device command to the command ring */
3491 spin_lock_irqsave(&xhci->lock, flags);
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08003492
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003493 ret = xhci_queue_reset_device(xhci, reset_device_cmd, slot_id);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003494 if (ret) {
3495 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003496 spin_unlock_irqrestore(&xhci->lock, flags);
3497 goto command_cleanup;
3498 }
3499 xhci_ring_cmd_db(xhci);
3500 spin_unlock_irqrestore(&xhci->lock, flags);
3501
3502 /* Wait for the Reset Device command to finish */
Mathias Nymanc311e392014-05-08 19:26:03 +03003503 wait_for_completion(reset_device_cmd->completion);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003504
3505 /* The Reset Device command can't fail, according to the 0.95/0.96 spec,
3506 * unless we tried to reset a slot ID that wasn't enabled,
3507 * or the device wasn't in the addressed or configured state.
3508 */
3509 ret = reset_device_cmd->status;
3510 switch (ret) {
Mathias Nymanc311e392014-05-08 19:26:03 +03003511 case COMP_CMD_ABORT:
3512 case COMP_CMD_STOP:
3513 xhci_warn(xhci, "Timeout waiting for reset device command\n");
3514 ret = -ETIME;
3515 goto command_cleanup;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003516 case COMP_EBADSLT: /* 0.95 completion code for bad slot ID */
3517 case COMP_CTX_STATE: /* 0.96 completion code for same thing */
Xenia Ragiadakou38a532a2013-07-02 17:49:25 +03003518 xhci_dbg(xhci, "Can't reset device (slot ID %u) in %s state\n",
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003519 slot_id,
3520 xhci_get_slot_state(xhci, virt_dev->out_ctx));
Xenia Ragiadakou38a532a2013-07-02 17:49:25 +03003521 xhci_dbg(xhci, "Not freeing device rings.\n");
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003522 /* Don't treat this as an error. May change my mind later. */
3523 ret = 0;
3524 goto command_cleanup;
3525 case COMP_SUCCESS:
3526 xhci_dbg(xhci, "Successful reset device command.\n");
3527 break;
3528 default:
3529 if (xhci_is_vendor_info_code(xhci, ret))
3530 break;
3531 xhci_warn(xhci, "Unknown completion code %u for "
3532 "reset device command.\n", ret);
3533 ret = -EINVAL;
3534 goto command_cleanup;
3535 }
3536
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003537 /* Free up host controller endpoint resources */
3538 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3539 spin_lock_irqsave(&xhci->lock, flags);
3540 /* Don't delete the default control endpoint resources */
3541 xhci_free_device_endpoint_resources(xhci, virt_dev, false);
3542 spin_unlock_irqrestore(&xhci->lock, flags);
3543 }
3544
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003545 /* Everything but endpoint 0 is disabled, so free or cache the rings. */
3546 last_freed_endpoint = 1;
3547 for (i = 1; i < 31; ++i) {
Dmitry Torokhov2dea75d2011-04-12 23:06:28 -07003548 struct xhci_virt_ep *ep = &virt_dev->eps[i];
3549
3550 if (ep->ep_state & EP_HAS_STREAMS) {
Hans de Goededf613832013-10-04 00:29:45 +02003551 xhci_warn(xhci, "WARN: endpoint 0x%02x has streams on device reset, freeing streams.\n",
3552 xhci_get_endpoint_address(i));
Dmitry Torokhov2dea75d2011-04-12 23:06:28 -07003553 xhci_free_stream_info(xhci, ep->stream_info);
3554 ep->stream_info = NULL;
3555 ep->ep_state &= ~EP_HAS_STREAMS;
3556 }
3557
3558 if (ep->ring) {
3559 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
3560 last_freed_endpoint = i;
3561 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003562 if (!list_empty(&virt_dev->eps[i].bw_endpoint_list))
3563 xhci_drop_ep_from_interval_table(xhci,
3564 &virt_dev->eps[i].bw_info,
3565 virt_dev->bw_table,
3566 udev,
3567 &virt_dev->eps[i],
3568 virt_dev->tt_info);
Sarah Sharp9af5d712011-09-02 11:05:48 -07003569 xhci_clear_endpoint_bw_info(&virt_dev->eps[i].bw_info);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003570 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003571 /* If necessary, update the number of active TTs on this root port */
3572 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
3573
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003574 xhci_dbg(xhci, "Output context after successful reset device cmd:\n");
3575 xhci_dbg_ctx(xhci, virt_dev->out_ctx, last_freed_endpoint);
3576 ret = 0;
3577
3578command_cleanup:
3579 xhci_free_command(xhci, reset_device_cmd);
3580 return ret;
3581}
3582
3583/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003584 * At this point, the struct usb_device is about to go away, the device has
3585 * disconnected, and all traffic has been stopped and the endpoints have been
3586 * disabled. Free any HC data structures associated with that device.
3587 */
3588void xhci_free_dev(struct usb_hcd *hcd, struct usb_device *udev)
3589{
3590 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003591 struct xhci_virt_device *virt_dev;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003592 unsigned long flags;
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003593 u32 state;
Andiry Xu64927732010-10-14 07:22:45 -07003594 int i, ret;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003595 struct xhci_command *command;
3596
3597 command = xhci_alloc_command(xhci, false, false, GFP_KERNEL);
3598 if (!command)
3599 return;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003600
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003601#ifndef CONFIG_USB_DEFAULT_PERSIST
3602 /*
3603 * We called pm_runtime_get_noresume when the device was attached.
3604 * Decrement the counter here to allow controller to runtime suspend
3605 * if no devices remain.
3606 */
3607 if (xhci->quirks & XHCI_RESET_ON_RESUME)
Sarah Sharpe7ecf062013-08-28 09:31:04 -07003608 pm_runtime_put_noidle(hcd->self.controller);
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003609#endif
3610
Andiry Xu64927732010-10-14 07:22:45 -07003611 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003612 /* If the host is halted due to driver unload, we still need to free the
3613 * device.
3614 */
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003615 if (ret <= 0 && ret != -ENODEV) {
3616 kfree(command);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003617 return;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003618 }
Andiry Xu64927732010-10-14 07:22:45 -07003619
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003620 virt_dev = xhci->devs[udev->slot_id];
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003621
3622 /* Stop any wayward timer functions (which may grab the lock) */
3623 for (i = 0; i < 31; ++i) {
3624 virt_dev->eps[i].ep_state &= ~EP_HALT_PENDING;
3625 del_timer_sync(&virt_dev->eps[i].stop_cmd_timer);
3626 }
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003627
3628 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003629 /* Don't disable the slot if the host controller is dead. */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02003630 state = readl(&xhci->op_regs->status);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003631 if (state == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING) ||
3632 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003633 xhci_free_virt_device(xhci, udev->slot_id);
3634 spin_unlock_irqrestore(&xhci->lock, flags);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003635 kfree(command);
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003636 return;
3637 }
3638
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003639 if (xhci_queue_slot_control(xhci, command, TRB_DISABLE_SLOT,
3640 udev->slot_id)) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003641 spin_unlock_irqrestore(&xhci->lock, flags);
3642 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3643 return;
3644 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003645 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003646 spin_unlock_irqrestore(&xhci->lock, flags);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003647
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003648 /*
3649 * Event command completion handler will free any data structures
Sarah Sharpf88ba782009-05-14 11:44:22 -07003650 * associated with the slot. XXX Can free sleep?
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003651 */
3652}
3653
3654/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003655 * Checks if we have enough host controller resources for the default control
3656 * endpoint.
3657 *
3658 * Must be called with xhci->lock held.
3659 */
3660static int xhci_reserve_host_control_ep_resources(struct xhci_hcd *xhci)
3661{
3662 if (xhci->num_active_eps + 1 > xhci->limit_active_eps) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003663 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3664 "Not enough ep ctxs: "
3665 "%u active, need to add 1, limit is %u.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003666 xhci->num_active_eps, xhci->limit_active_eps);
3667 return -ENOMEM;
3668 }
3669 xhci->num_active_eps += 1;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003670 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3671 "Adding 1 ep ctx, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003672 xhci->num_active_eps);
3673 return 0;
3674}
3675
3676
3677/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003678 * Returns 0 if the xHC ran out of device slots, the Enable Slot command
3679 * timed out, or allocating memory failed. Returns 1 on success.
3680 */
3681int xhci_alloc_dev(struct usb_hcd *hcd, struct usb_device *udev)
3682{
3683 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3684 unsigned long flags;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003685 int ret;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003686 struct xhci_command *command;
3687
3688 command = xhci_alloc_command(xhci, false, false, GFP_KERNEL);
3689 if (!command)
3690 return 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003691
3692 spin_lock_irqsave(&xhci->lock, flags);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003693 command->completion = &xhci->addr_dev;
3694 ret = xhci_queue_slot_control(xhci, command, TRB_ENABLE_SLOT, 0);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003695 if (ret) {
3696 spin_unlock_irqrestore(&xhci->lock, flags);
3697 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003698 kfree(command);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003699 return 0;
3700 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003701 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003702 spin_unlock_irqrestore(&xhci->lock, flags);
3703
Mathias Nymanc311e392014-05-08 19:26:03 +03003704 wait_for_completion(command->completion);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003705
Mathias Nymanc311e392014-05-08 19:26:03 +03003706 if (!xhci->slot_id || command->status != COMP_SUCCESS) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003707 xhci_err(xhci, "Error while assigning device slot ID\n");
Sarah Sharpbe982032014-05-08 19:25:59 +03003708 xhci_err(xhci, "Max number of devices this xHCI host supports is %u.\n",
3709 HCS_MAX_SLOTS(
3710 readl(&xhci->cap_regs->hcs_params1)));
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003711 kfree(command);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003712 return 0;
3713 }
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003714
3715 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3716 spin_lock_irqsave(&xhci->lock, flags);
3717 ret = xhci_reserve_host_control_ep_resources(xhci);
3718 if (ret) {
3719 spin_unlock_irqrestore(&xhci->lock, flags);
3720 xhci_warn(xhci, "Not enough host resources, "
3721 "active endpoint contexts = %u\n",
3722 xhci->num_active_eps);
3723 goto disable_slot;
3724 }
3725 spin_unlock_irqrestore(&xhci->lock, flags);
3726 }
3727 /* Use GFP_NOIO, since this function can be called from
Sarah Sharpa6d940d2010-12-28 13:08:42 -08003728 * xhci_discover_or_reset_device(), which may be called as part of
3729 * mass storage driver error handling.
3730 */
3731 if (!xhci_alloc_virt_device(xhci, xhci->slot_id, udev, GFP_NOIO)) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003732 xhci_warn(xhci, "Could not allocate xHCI USB device data structures\n");
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003733 goto disable_slot;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003734 }
3735 udev->slot_id = xhci->slot_id;
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003736
3737#ifndef CONFIG_USB_DEFAULT_PERSIST
3738 /*
3739 * If resetting upon resume, we can't put the controller into runtime
3740 * suspend if there is a device attached.
3741 */
3742 if (xhci->quirks & XHCI_RESET_ON_RESUME)
Sarah Sharpe7ecf062013-08-28 09:31:04 -07003743 pm_runtime_get_noresume(hcd->self.controller);
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003744#endif
3745
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003746
3747 kfree(command);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003748 /* Is this a LS or FS device under a HS hub? */
3749 /* Hub or peripherial? */
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003750 return 1;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003751
3752disable_slot:
3753 /* Disable slot, if we can do it without mem alloc */
3754 spin_lock_irqsave(&xhci->lock, flags);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003755 command->completion = NULL;
3756 command->status = 0;
3757 if (!xhci_queue_slot_control(xhci, command, TRB_DISABLE_SLOT,
3758 udev->slot_id))
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003759 xhci_ring_cmd_db(xhci);
3760 spin_unlock_irqrestore(&xhci->lock, flags);
3761 return 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003762}
3763
3764/*
Dan Williams48fc7db2013-12-05 17:07:27 -08003765 * Issue an Address Device command and optionally send a corresponding
3766 * SetAddress request to the device.
Petr Mladek37ebb542014-09-19 17:32:23 +02003767 * We should be protected by the usb_address0_mutex in hub_wq's hub_port_init,
3768 * so we should only issue and wait on one address command at the same time.
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003769 */
Dan Williams48fc7db2013-12-05 17:07:27 -08003770static int xhci_setup_device(struct usb_hcd *hcd, struct usb_device *udev,
3771 enum xhci_setup_dev setup)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003772{
Dan Williams6f8ffc02013-11-22 01:20:01 -08003773 const char *act = setup == SETUP_CONTEXT_ONLY ? "context" : "address";
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003774 unsigned long flags;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003775 struct xhci_virt_device *virt_dev;
3776 int ret = 0;
3777 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
John Yound115b042009-07-27 12:05:15 -07003778 struct xhci_slot_ctx *slot_ctx;
3779 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8e595a52009-07-27 12:03:31 -07003780 u64 temp_64;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003781 struct xhci_command *command;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003782
3783 if (!udev->slot_id) {
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003784 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3785 "Bad Slot ID %d", udev->slot_id);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003786 return -EINVAL;
3787 }
3788
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003789 virt_dev = xhci->devs[udev->slot_id];
3790
Matt Evans7ed603e2011-03-29 13:40:56 +11003791 if (WARN_ON(!virt_dev)) {
3792 /*
3793 * In plug/unplug torture test with an NEC controller,
3794 * a zero-dereference was observed once due to virt_dev = 0.
3795 * Print useful debug rather than crash if it is observed again!
3796 */
3797 xhci_warn(xhci, "Virt dev invalid for slot_id 0x%x!\n",
3798 udev->slot_id);
3799 return -EINVAL;
3800 }
3801
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003802 command = xhci_alloc_command(xhci, false, false, GFP_KERNEL);
3803 if (!command)
3804 return -ENOMEM;
3805
3806 command->in_ctx = virt_dev->in_ctx;
3807 command->completion = &xhci->addr_dev;
3808
Andiry Xuf0615c42010-10-14 07:22:48 -07003809 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003810 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
3811 if (!ctrl_ctx) {
3812 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3813 __func__);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003814 kfree(command);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003815 return -EINVAL;
3816 }
Andiry Xuf0615c42010-10-14 07:22:48 -07003817 /*
3818 * If this is the first Set Address since device plug-in or
3819 * virt_device realloaction after a resume with an xHCI power loss,
3820 * then set up the slot context.
3821 */
3822 if (!slot_ctx->dev_info)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003823 xhci_setup_addressable_virt_dev(xhci, udev);
Andiry Xuf0615c42010-10-14 07:22:48 -07003824 /* Otherwise, update the control endpoint ring enqueue pointer. */
Sarah Sharp2d1ee592010-07-09 17:08:54 +02003825 else
3826 xhci_copy_ep0_dequeue_into_input_ctx(xhci, udev);
Sarah Sharpd31c2852011-11-03 13:06:08 -07003827 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG | EP0_FLAG);
3828 ctrl_ctx->drop_flags = 0;
3829
Sarah Sharp66e49d82009-07-27 12:03:46 -07003830 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003831 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003832 trace_xhci_address_ctx(xhci, virt_dev->in_ctx,
Xenia Ragiadakou0c052aa2013-11-15 03:18:07 +02003833 le32_to_cpu(slot_ctx->dev_info) >> 27);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003834
Sarah Sharpf88ba782009-05-14 11:44:22 -07003835 spin_lock_irqsave(&xhci->lock, flags);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003836 ret = xhci_queue_address_device(xhci, command, virt_dev->in_ctx->dma,
Dan Williams48fc7db2013-12-05 17:07:27 -08003837 udev->slot_id, setup);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003838 if (ret) {
3839 spin_unlock_irqrestore(&xhci->lock, flags);
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003840 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3841 "FIXME: allocate a command ring segment");
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003842 kfree(command);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003843 return ret;
3844 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003845 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003846 spin_unlock_irqrestore(&xhci->lock, flags);
3847
3848 /* ctrl tx can take up to 5 sec; XXX: need more time for xHC? */
Mathias Nymanc311e392014-05-08 19:26:03 +03003849 wait_for_completion(command->completion);
3850
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003851 /* FIXME: From section 4.3.4: "Software shall be responsible for timing
3852 * the SetAddress() "recovery interval" required by USB and aborting the
3853 * command on a timeout.
3854 */
Mathias Nyman9ea18332014-05-08 19:26:02 +03003855 switch (command->status) {
Mathias Nymanc311e392014-05-08 19:26:03 +03003856 case COMP_CMD_ABORT:
3857 case COMP_CMD_STOP:
3858 xhci_warn(xhci, "Timeout while waiting for setup device command\n");
3859 ret = -ETIME;
3860 break;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003861 case COMP_CTX_STATE:
3862 case COMP_EBADSLT:
Dan Williams6f8ffc02013-11-22 01:20:01 -08003863 xhci_err(xhci, "Setup ERROR: setup %s command for slot %d.\n",
3864 act, udev->slot_id);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003865 ret = -EINVAL;
3866 break;
3867 case COMP_TX_ERR:
Dan Williams6f8ffc02013-11-22 01:20:01 -08003868 dev_warn(&udev->dev, "Device not responding to setup %s.\n", act);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003869 ret = -EPROTO;
3870 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08003871 case COMP_DEV_ERR:
Dan Williams6f8ffc02013-11-22 01:20:01 -08003872 dev_warn(&udev->dev,
3873 "ERROR: Incompatible device for setup %s command\n", act);
Alex Hef6ba6fe2011-06-08 18:34:06 +08003874 ret = -ENODEV;
3875 break;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003876 case COMP_SUCCESS:
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003877 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
Dan Williams6f8ffc02013-11-22 01:20:01 -08003878 "Successful setup %s command", act);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003879 break;
3880 default:
Dan Williams6f8ffc02013-11-22 01:20:01 -08003881 xhci_err(xhci,
3882 "ERROR: unexpected setup %s command completion code 0x%x.\n",
Mathias Nyman9ea18332014-05-08 19:26:02 +03003883 act, command->status);
Sarah Sharp66e49d82009-07-27 12:03:46 -07003884 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003885 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003886 trace_xhci_address_ctx(xhci, virt_dev->out_ctx, 1);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003887 ret = -EINVAL;
3888 break;
3889 }
3890 if (ret) {
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003891 kfree(command);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003892 return ret;
3893 }
Sarah Sharpf7b2e402014-01-30 13:27:49 -08003894 temp_64 = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003895 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3896 "Op regs DCBAA ptr = %#016llx", temp_64);
3897 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3898 "Slot ID %d dcbaa entry @%p = %#016llx",
3899 udev->slot_id,
3900 &xhci->dcbaa->dev_context_ptrs[udev->slot_id],
3901 (unsigned long long)
3902 le64_to_cpu(xhci->dcbaa->dev_context_ptrs[udev->slot_id]));
3903 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3904 "Output Context DMA address = %#08llx",
John Yound115b042009-07-27 12:05:15 -07003905 (unsigned long long)virt_dev->out_ctx->dma);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003906 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003907 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003908 trace_xhci_address_ctx(xhci, virt_dev->in_ctx,
Xenia Ragiadakou0c052aa2013-11-15 03:18:07 +02003909 le32_to_cpu(slot_ctx->dev_info) >> 27);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003910 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003911 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003912 /*
3913 * USB core uses address 1 for the roothubs, so we add one to the
3914 * address given back to us by the HC.
3915 */
John Yound115b042009-07-27 12:05:15 -07003916 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003917 trace_xhci_address_ctx(xhci, virt_dev->out_ctx,
Xenia Ragiadakou0c052aa2013-11-15 03:18:07 +02003918 le32_to_cpu(slot_ctx->dev_info) >> 27);
Sarah Sharpf94e01862009-04-27 19:58:38 -07003919 /* Zero the input context control for later use */
John Yound115b042009-07-27 12:05:15 -07003920 ctrl_ctx->add_flags = 0;
3921 ctrl_ctx->drop_flags = 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003922
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003923 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
Dan Williamsa2cdc342013-10-16 12:25:44 -07003924 "Internal device address = %d",
3925 le32_to_cpu(slot_ctx->dev_state) & DEV_ADDR_MASK);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003926 kfree(command);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003927 return 0;
3928}
3929
Dan Williams48fc7db2013-12-05 17:07:27 -08003930int xhci_address_device(struct usb_hcd *hcd, struct usb_device *udev)
3931{
3932 return xhci_setup_device(hcd, udev, SETUP_CONTEXT_ADDRESS);
3933}
3934
3935int xhci_enable_device(struct usb_hcd *hcd, struct usb_device *udev)
3936{
3937 return xhci_setup_device(hcd, udev, SETUP_CONTEXT_ONLY);
3938}
3939
Lan Tianyu3f5eb142013-03-19 16:48:12 +08003940/*
3941 * Transfer the port index into real index in the HW port status
3942 * registers. Caculate offset between the port's PORTSC register
3943 * and port status base. Divide the number of per port register
3944 * to get the real index. The raw port number bases 1.
3945 */
3946int xhci_find_raw_port_number(struct usb_hcd *hcd, int port1)
3947{
3948 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3949 __le32 __iomem *base_addr = &xhci->op_regs->port_status_base;
3950 __le32 __iomem *addr;
3951 int raw_port;
3952
3953 if (hcd->speed != HCD_USB3)
3954 addr = xhci->usb2_ports[port1 - 1];
3955 else
3956 addr = xhci->usb3_ports[port1 - 1];
3957
3958 raw_port = (addr - base_addr)/NUM_PORT_REGS + 1;
3959 return raw_port;
3960}
3961
Mathias Nymana558ccd2013-05-23 17:14:30 +03003962/*
3963 * Issue an Evaluate Context command to change the Maximum Exit Latency in the
3964 * slot context. If that succeeds, store the new MEL in the xhci_virt_device.
3965 */
Olof Johanssond5c82fe2013-07-23 11:58:20 -07003966static int __maybe_unused xhci_change_max_exit_latency(struct xhci_hcd *xhci,
Mathias Nymana558ccd2013-05-23 17:14:30 +03003967 struct usb_device *udev, u16 max_exit_latency)
3968{
3969 struct xhci_virt_device *virt_dev;
3970 struct xhci_command *command;
3971 struct xhci_input_control_ctx *ctrl_ctx;
3972 struct xhci_slot_ctx *slot_ctx;
3973 unsigned long flags;
3974 int ret;
3975
3976 spin_lock_irqsave(&xhci->lock, flags);
Mathias Nyman96044692014-09-11 13:55:50 +03003977
3978 virt_dev = xhci->devs[udev->slot_id];
3979
3980 /*
3981 * virt_dev might not exists yet if xHC resumed from hibernate (S4) and
3982 * xHC was re-initialized. Exit latency will be set later after
3983 * hub_port_finish_reset() is done and xhci->devs[] are re-allocated
3984 */
3985
3986 if (!virt_dev || max_exit_latency == virt_dev->current_mel) {
Mathias Nymana558ccd2013-05-23 17:14:30 +03003987 spin_unlock_irqrestore(&xhci->lock, flags);
3988 return 0;
3989 }
3990
3991 /* Attempt to issue an Evaluate Context command to change the MEL. */
Mathias Nymana558ccd2013-05-23 17:14:30 +03003992 command = xhci->lpm_command;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003993 ctrl_ctx = xhci_get_input_control_ctx(xhci, command->in_ctx);
3994 if (!ctrl_ctx) {
3995 spin_unlock_irqrestore(&xhci->lock, flags);
3996 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3997 __func__);
3998 return -ENOMEM;
3999 }
4000
Mathias Nymana558ccd2013-05-23 17:14:30 +03004001 xhci_slot_copy(xhci, command->in_ctx, virt_dev->out_ctx);
4002 spin_unlock_irqrestore(&xhci->lock, flags);
4003
Mathias Nymana558ccd2013-05-23 17:14:30 +03004004 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
4005 slot_ctx = xhci_get_slot_ctx(xhci, command->in_ctx);
4006 slot_ctx->dev_info2 &= cpu_to_le32(~((u32) MAX_EXIT));
4007 slot_ctx->dev_info2 |= cpu_to_le32(max_exit_latency);
Mathias Nyman4801d4ea2014-11-27 18:19:15 +02004008 slot_ctx->dev_state = 0;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004009
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03004010 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
4011 "Set up evaluate context for LPM MEL change.");
Mathias Nymana558ccd2013-05-23 17:14:30 +03004012 xhci_dbg(xhci, "Slot %u Input Context:\n", udev->slot_id);
4013 xhci_dbg_ctx(xhci, command->in_ctx, 0);
4014
4015 /* Issue and wait for the evaluate context command. */
4016 ret = xhci_configure_endpoint(xhci, udev, command,
4017 true, true);
4018 xhci_dbg(xhci, "Slot %u Output Context:\n", udev->slot_id);
4019 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 0);
4020
4021 if (!ret) {
4022 spin_lock_irqsave(&xhci->lock, flags);
4023 virt_dev->current_mel = max_exit_latency;
4024 spin_unlock_irqrestore(&xhci->lock, flags);
4025 }
4026 return ret;
4027}
4028
Rafael J. Wysockiceb6c9c2014-11-29 23:47:05 +01004029#ifdef CONFIG_PM
Andiry Xu95743232011-09-23 14:19:51 -07004030
4031/* BESL to HIRD Encoding array for USB2 LPM */
4032static int xhci_besl_encoding[16] = {125, 150, 200, 300, 400, 500, 1000, 2000,
4033 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000};
4034
4035/* Calculate HIRD/BESL for USB2 PORTPMSC*/
Andiry Xuf99298b2011-12-12 16:45:28 +08004036static int xhci_calculate_hird_besl(struct xhci_hcd *xhci,
4037 struct usb_device *udev)
Andiry Xu95743232011-09-23 14:19:51 -07004038{
Andiry Xuf99298b2011-12-12 16:45:28 +08004039 int u2del, besl, besl_host;
4040 int besl_device = 0;
4041 u32 field;
Andiry Xu95743232011-09-23 14:19:51 -07004042
Andiry Xuf99298b2011-12-12 16:45:28 +08004043 u2del = HCS_U2_LATENCY(xhci->hcs_params3);
4044 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
4045
4046 if (field & USB_BESL_SUPPORT) {
4047 for (besl_host = 0; besl_host < 16; besl_host++) {
4048 if (xhci_besl_encoding[besl_host] >= u2del)
Andiry Xu95743232011-09-23 14:19:51 -07004049 break;
4050 }
Andiry Xuf99298b2011-12-12 16:45:28 +08004051 /* Use baseline BESL value as default */
4052 if (field & USB_BESL_BASELINE_VALID)
4053 besl_device = USB_GET_BESL_BASELINE(field);
4054 else if (field & USB_BESL_DEEP_VALID)
4055 besl_device = USB_GET_BESL_DEEP(field);
Andiry Xu95743232011-09-23 14:19:51 -07004056 } else {
4057 if (u2del <= 50)
Andiry Xuf99298b2011-12-12 16:45:28 +08004058 besl_host = 0;
Andiry Xu95743232011-09-23 14:19:51 -07004059 else
Andiry Xuf99298b2011-12-12 16:45:28 +08004060 besl_host = (u2del - 51) / 75 + 1;
Andiry Xu95743232011-09-23 14:19:51 -07004061 }
4062
Andiry Xuf99298b2011-12-12 16:45:28 +08004063 besl = besl_host + besl_device;
4064 if (besl > 15)
4065 besl = 15;
4066
4067 return besl;
Andiry Xu95743232011-09-23 14:19:51 -07004068}
4069
Mathias Nymana558ccd2013-05-23 17:14:30 +03004070/* Calculate BESLD, L1 timeout and HIRDM for USB2 PORTHLPMC */
4071static int xhci_calculate_usb2_hw_lpm_params(struct usb_device *udev)
4072{
4073 u32 field;
4074 int l1;
4075 int besld = 0;
4076 int hirdm = 0;
4077
4078 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
4079
4080 /* xHCI l1 is set in steps of 256us, xHCI 1.0 section 5.4.11.2 */
Mathias Nyman17f34862013-05-23 17:14:31 +03004081 l1 = udev->l1_params.timeout / 256;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004082
4083 /* device has preferred BESLD */
4084 if (field & USB_BESL_DEEP_VALID) {
4085 besld = USB_GET_BESL_DEEP(field);
4086 hirdm = 1;
4087 }
4088
4089 return PORT_BESLD(besld) | PORT_L1_TIMEOUT(l1) | PORT_HIRDM(hirdm);
4090}
4091
Andiry Xu65580b432011-09-23 14:19:52 -07004092int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
4093 struct usb_device *udev, int enable)
4094{
4095 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4096 __le32 __iomem **port_array;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004097 __le32 __iomem *pm_addr, *hlpm_addr;
4098 u32 pm_val, hlpm_val, field;
Andiry Xu65580b432011-09-23 14:19:52 -07004099 unsigned int port_num;
4100 unsigned long flags;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004101 int hird, exit_latency;
4102 int ret;
Andiry Xu65580b432011-09-23 14:19:52 -07004103
4104 if (hcd->speed == HCD_USB3 || !xhci->hw_lpm_support ||
4105 !udev->lpm_capable)
4106 return -EPERM;
4107
4108 if (!udev->parent || udev->parent->parent ||
4109 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
4110 return -EPERM;
4111
4112 if (udev->usb2_hw_lpm_capable != 1)
4113 return -EPERM;
4114
4115 spin_lock_irqsave(&xhci->lock, flags);
4116
4117 port_array = xhci->usb2_ports;
4118 port_num = udev->portnum - 1;
Mathias Nymanb6e76372013-05-23 17:14:29 +03004119 pm_addr = port_array[port_num] + PORTPMSC;
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004120 pm_val = readl(pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004121 hlpm_addr = port_array[port_num] + PORTHLPMC;
4122 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
Andiry Xu65580b432011-09-23 14:19:52 -07004123
4124 xhci_dbg(xhci, "%s port %d USB2 hardware LPM\n",
Lin Wang654a55d2014-05-08 19:25:54 +03004125 enable ? "enable" : "disable", port_num + 1);
Andiry Xu65580b432011-09-23 14:19:52 -07004126
Andiry Xu65580b432011-09-23 14:19:52 -07004127 if (enable) {
Mathias Nymana558ccd2013-05-23 17:14:30 +03004128 /* Host supports BESL timeout instead of HIRD */
4129 if (udev->usb2_hw_lpm_besl_capable) {
4130 /* if device doesn't have a preferred BESL value use a
4131 * default one which works with mixed HIRD and BESL
4132 * systems. See XHCI_DEFAULT_BESL definition in xhci.h
4133 */
4134 if ((field & USB_BESL_SUPPORT) &&
4135 (field & USB_BESL_BASELINE_VALID))
4136 hird = USB_GET_BESL_BASELINE(field);
4137 else
Mathias Nyman17f34862013-05-23 17:14:31 +03004138 hird = udev->l1_params.besl;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004139
4140 exit_latency = xhci_besl_encoding[hird];
4141 spin_unlock_irqrestore(&xhci->lock, flags);
4142
4143 /* USB 3.0 code dedicate one xhci->lpm_command->in_ctx
4144 * input context for link powermanagement evaluate
4145 * context commands. It is protected by hcd->bandwidth
4146 * mutex and is shared by all devices. We need to set
4147 * the max ext latency in USB 2 BESL LPM as well, so
4148 * use the same mutex and xhci_change_max_exit_latency()
4149 */
4150 mutex_lock(hcd->bandwidth_mutex);
4151 ret = xhci_change_max_exit_latency(xhci, udev,
4152 exit_latency);
4153 mutex_unlock(hcd->bandwidth_mutex);
4154
4155 if (ret < 0)
4156 return ret;
4157 spin_lock_irqsave(&xhci->lock, flags);
4158
4159 hlpm_val = xhci_calculate_usb2_hw_lpm_params(udev);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02004160 writel(hlpm_val, hlpm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004161 /* flush write */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004162 readl(hlpm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004163 } else {
4164 hird = xhci_calculate_hird_besl(xhci, udev);
4165 }
4166
4167 pm_val &= ~PORT_HIRD_MASK;
Sarah Sharp58e21f72013-10-07 17:17:20 -07004168 pm_val |= PORT_HIRD(hird) | PORT_RWE | PORT_L1DS(udev->slot_id);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02004169 writel(pm_val, pm_addr);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004170 pm_val = readl(pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004171 pm_val |= PORT_HLE;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02004172 writel(pm_val, pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004173 /* flush write */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004174 readl(pm_addr);
Andiry Xu65580b432011-09-23 14:19:52 -07004175 } else {
Sarah Sharp58e21f72013-10-07 17:17:20 -07004176 pm_val &= ~(PORT_HLE | PORT_RWE | PORT_HIRD_MASK | PORT_L1DS_MASK);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02004177 writel(pm_val, pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004178 /* flush write */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004179 readl(pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004180 if (udev->usb2_hw_lpm_besl_capable) {
4181 spin_unlock_irqrestore(&xhci->lock, flags);
4182 mutex_lock(hcd->bandwidth_mutex);
4183 xhci_change_max_exit_latency(xhci, udev, 0);
4184 mutex_unlock(hcd->bandwidth_mutex);
4185 return 0;
4186 }
Andiry Xu65580b432011-09-23 14:19:52 -07004187 }
4188
4189 spin_unlock_irqrestore(&xhci->lock, flags);
4190 return 0;
4191}
4192
Mathias Nymanb630d4b2013-05-23 17:14:28 +03004193/* check if a usb2 port supports a given extened capability protocol
4194 * only USB2 ports extended protocol capability values are cached.
4195 * Return 1 if capability is supported
4196 */
4197static int xhci_check_usb2_port_capability(struct xhci_hcd *xhci, int port,
4198 unsigned capability)
4199{
4200 u32 port_offset, port_count;
4201 int i;
4202
4203 for (i = 0; i < xhci->num_ext_caps; i++) {
4204 if (xhci->ext_caps[i] & capability) {
4205 /* port offsets starts at 1 */
4206 port_offset = XHCI_EXT_PORT_OFF(xhci->ext_caps[i]) - 1;
4207 port_count = XHCI_EXT_PORT_COUNT(xhci->ext_caps[i]);
4208 if (port >= port_offset &&
4209 port < port_offset + port_count)
4210 return 1;
4211 }
4212 }
4213 return 0;
4214}
4215
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004216int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
4217{
4218 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Mathias Nymanb630d4b2013-05-23 17:14:28 +03004219 int portnum = udev->portnum - 1;
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004220
Sarah Sharpde68bab2013-09-30 17:26:28 +03004221 if (hcd->speed == HCD_USB3 || !xhci->sw_lpm_support ||
4222 !udev->lpm_capable)
4223 return 0;
4224
4225 /* we only support lpm for non-hub device connected to root hub yet */
4226 if (!udev->parent || udev->parent->parent ||
4227 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
4228 return 0;
4229
4230 if (xhci->hw_lpm_support == 1 &&
4231 xhci_check_usb2_port_capability(
4232 xhci, portnum, XHCI_HLC)) {
4233 udev->usb2_hw_lpm_capable = 1;
4234 udev->l1_params.timeout = XHCI_L1_TIMEOUT;
4235 udev->l1_params.besl = XHCI_DEFAULT_BESL;
4236 if (xhci_check_usb2_port_capability(xhci, portnum,
4237 XHCI_BLC))
4238 udev->usb2_hw_lpm_besl_capable = 1;
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004239 }
4240
4241 return 0;
4242}
4243
Sarah Sharp3b3db022012-05-09 10:55:03 -07004244/*---------------------- USB 3.0 Link PM functions ------------------------*/
4245
Sarah Sharpe3567d22012-05-16 13:36:24 -07004246/* Service interval in nanoseconds = 2^(bInterval - 1) * 125us * 1000ns / 1us */
4247static unsigned long long xhci_service_interval_to_ns(
4248 struct usb_endpoint_descriptor *desc)
4249{
Oliver Neukum16b45fd2012-10-17 10:16:16 +02004250 return (1ULL << (desc->bInterval - 1)) * 125 * 1000;
Sarah Sharpe3567d22012-05-16 13:36:24 -07004251}
4252
Sarah Sharp3b3db022012-05-09 10:55:03 -07004253static u16 xhci_get_timeout_no_hub_lpm(struct usb_device *udev,
4254 enum usb3_link_state state)
4255{
4256 unsigned long long sel;
4257 unsigned long long pel;
4258 unsigned int max_sel_pel;
4259 char *state_name;
4260
4261 switch (state) {
4262 case USB3_LPM_U1:
4263 /* Convert SEL and PEL stored in nanoseconds to microseconds */
4264 sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
4265 pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
4266 max_sel_pel = USB3_LPM_MAX_U1_SEL_PEL;
4267 state_name = "U1";
4268 break;
4269 case USB3_LPM_U2:
4270 sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
4271 pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
4272 max_sel_pel = USB3_LPM_MAX_U2_SEL_PEL;
4273 state_name = "U2";
4274 break;
4275 default:
4276 dev_warn(&udev->dev, "%s: Can't get timeout for non-U1 or U2 state.\n",
4277 __func__);
Sarah Sharpe25e62a2012-06-07 11:10:32 -07004278 return USB3_LPM_DISABLED;
Sarah Sharp3b3db022012-05-09 10:55:03 -07004279 }
4280
4281 if (sel <= max_sel_pel && pel <= max_sel_pel)
4282 return USB3_LPM_DEVICE_INITIATED;
4283
4284 if (sel > max_sel_pel)
4285 dev_dbg(&udev->dev, "Device-initiated %s disabled "
4286 "due to long SEL %llu ms\n",
4287 state_name, sel);
4288 else
4289 dev_dbg(&udev->dev, "Device-initiated %s disabled "
Joe Perches03e64e92013-07-16 19:25:59 -07004290 "due to long PEL %llu ms\n",
Sarah Sharp3b3db022012-05-09 10:55:03 -07004291 state_name, pel);
4292 return USB3_LPM_DISABLED;
4293}
4294
Pratyush Anand9502c462014-07-04 17:01:23 +03004295/* The U1 timeout should be the maximum of the following values:
Sarah Sharpe3567d22012-05-16 13:36:24 -07004296 * - For control endpoints, U1 system exit latency (SEL) * 3
4297 * - For bulk endpoints, U1 SEL * 5
4298 * - For interrupt endpoints:
4299 * - Notification EPs, U1 SEL * 3
4300 * - Periodic EPs, max(105% of bInterval, U1 SEL * 2)
4301 * - For isochronous endpoints, max(105% of bInterval, U1 SEL * 2)
4302 */
Pratyush Anand9502c462014-07-04 17:01:23 +03004303static unsigned long long xhci_calculate_intel_u1_timeout(
4304 struct usb_device *udev,
Sarah Sharpe3567d22012-05-16 13:36:24 -07004305 struct usb_endpoint_descriptor *desc)
4306{
4307 unsigned long long timeout_ns;
4308 int ep_type;
4309 int intr_type;
4310
4311 ep_type = usb_endpoint_type(desc);
4312 switch (ep_type) {
4313 case USB_ENDPOINT_XFER_CONTROL:
4314 timeout_ns = udev->u1_params.sel * 3;
4315 break;
4316 case USB_ENDPOINT_XFER_BULK:
4317 timeout_ns = udev->u1_params.sel * 5;
4318 break;
4319 case USB_ENDPOINT_XFER_INT:
4320 intr_type = usb_endpoint_interrupt_type(desc);
4321 if (intr_type == USB_ENDPOINT_INTR_NOTIFICATION) {
4322 timeout_ns = udev->u1_params.sel * 3;
4323 break;
4324 }
4325 /* Otherwise the calculation is the same as isoc eps */
4326 case USB_ENDPOINT_XFER_ISOC:
4327 timeout_ns = xhci_service_interval_to_ns(desc);
Sarah Sharpc88db162012-05-21 08:44:33 -07004328 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns * 105, 100);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004329 if (timeout_ns < udev->u1_params.sel * 2)
4330 timeout_ns = udev->u1_params.sel * 2;
4331 break;
4332 default:
4333 return 0;
4334 }
4335
Pratyush Anand9502c462014-07-04 17:01:23 +03004336 return timeout_ns;
4337}
4338
4339/* Returns the hub-encoded U1 timeout value. */
4340static u16 xhci_calculate_u1_timeout(struct xhci_hcd *xhci,
4341 struct usb_device *udev,
4342 struct usb_endpoint_descriptor *desc)
4343{
4344 unsigned long long timeout_ns;
4345
4346 if (xhci->quirks & XHCI_INTEL_HOST)
4347 timeout_ns = xhci_calculate_intel_u1_timeout(udev, desc);
4348 else
4349 timeout_ns = udev->u1_params.sel;
4350
4351 /* The U1 timeout is encoded in 1us intervals.
4352 * Don't return a timeout of zero, because that's USB3_LPM_DISABLED.
4353 */
Sarah Sharpe3567d22012-05-16 13:36:24 -07004354 if (timeout_ns == USB3_LPM_DISABLED)
Pratyush Anand9502c462014-07-04 17:01:23 +03004355 timeout_ns = 1;
4356 else
4357 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 1000);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004358
4359 /* If the necessary timeout value is bigger than what we can set in the
4360 * USB 3.0 hub, we have to disable hub-initiated U1.
4361 */
4362 if (timeout_ns <= USB3_LPM_U1_MAX_TIMEOUT)
4363 return timeout_ns;
4364 dev_dbg(&udev->dev, "Hub-initiated U1 disabled "
4365 "due to long timeout %llu ms\n", timeout_ns);
4366 return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U1);
4367}
4368
Pratyush Anand9502c462014-07-04 17:01:23 +03004369/* The U2 timeout should be the maximum of:
Sarah Sharpe3567d22012-05-16 13:36:24 -07004370 * - 10 ms (to avoid the bandwidth impact on the scheduler)
4371 * - largest bInterval of any active periodic endpoint (to avoid going
4372 * into lower power link states between intervals).
4373 * - the U2 Exit Latency of the device
4374 */
Pratyush Anand9502c462014-07-04 17:01:23 +03004375static unsigned long long xhci_calculate_intel_u2_timeout(
4376 struct usb_device *udev,
Sarah Sharpe3567d22012-05-16 13:36:24 -07004377 struct usb_endpoint_descriptor *desc)
4378{
4379 unsigned long long timeout_ns;
4380 unsigned long long u2_del_ns;
4381
4382 timeout_ns = 10 * 1000 * 1000;
4383
4384 if ((usb_endpoint_xfer_int(desc) || usb_endpoint_xfer_isoc(desc)) &&
4385 (xhci_service_interval_to_ns(desc) > timeout_ns))
4386 timeout_ns = xhci_service_interval_to_ns(desc);
4387
Oliver Neukum966e7a82012-10-17 12:17:50 +02004388 u2_del_ns = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat) * 1000ULL;
Sarah Sharpe3567d22012-05-16 13:36:24 -07004389 if (u2_del_ns > timeout_ns)
4390 timeout_ns = u2_del_ns;
4391
Pratyush Anand9502c462014-07-04 17:01:23 +03004392 return timeout_ns;
4393}
4394
4395/* Returns the hub-encoded U2 timeout value. */
4396static u16 xhci_calculate_u2_timeout(struct xhci_hcd *xhci,
4397 struct usb_device *udev,
4398 struct usb_endpoint_descriptor *desc)
4399{
4400 unsigned long long timeout_ns;
4401
4402 if (xhci->quirks & XHCI_INTEL_HOST)
4403 timeout_ns = xhci_calculate_intel_u2_timeout(udev, desc);
4404 else
4405 timeout_ns = udev->u2_params.sel;
4406
Sarah Sharpe3567d22012-05-16 13:36:24 -07004407 /* The U2 timeout is encoded in 256us intervals */
Sarah Sharpc88db162012-05-21 08:44:33 -07004408 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 256 * 1000);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004409 /* If the necessary timeout value is bigger than what we can set in the
4410 * USB 3.0 hub, we have to disable hub-initiated U2.
4411 */
4412 if (timeout_ns <= USB3_LPM_U2_MAX_TIMEOUT)
4413 return timeout_ns;
4414 dev_dbg(&udev->dev, "Hub-initiated U2 disabled "
4415 "due to long timeout %llu ms\n", timeout_ns);
4416 return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U2);
4417}
4418
Sarah Sharp3b3db022012-05-09 10:55:03 -07004419static u16 xhci_call_host_update_timeout_for_endpoint(struct xhci_hcd *xhci,
4420 struct usb_device *udev,
4421 struct usb_endpoint_descriptor *desc,
4422 enum usb3_link_state state,
4423 u16 *timeout)
4424{
Pratyush Anand9502c462014-07-04 17:01:23 +03004425 if (state == USB3_LPM_U1)
4426 return xhci_calculate_u1_timeout(xhci, udev, desc);
4427 else if (state == USB3_LPM_U2)
4428 return xhci_calculate_u2_timeout(xhci, udev, desc);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004429
Sarah Sharp3b3db022012-05-09 10:55:03 -07004430 return USB3_LPM_DISABLED;
4431}
4432
4433static int xhci_update_timeout_for_endpoint(struct xhci_hcd *xhci,
4434 struct usb_device *udev,
4435 struct usb_endpoint_descriptor *desc,
4436 enum usb3_link_state state,
4437 u16 *timeout)
4438{
4439 u16 alt_timeout;
4440
4441 alt_timeout = xhci_call_host_update_timeout_for_endpoint(xhci, udev,
4442 desc, state, timeout);
4443
4444 /* If we found we can't enable hub-initiated LPM, or
4445 * the U1 or U2 exit latency was too high to allow
4446 * device-initiated LPM as well, just stop searching.
4447 */
4448 if (alt_timeout == USB3_LPM_DISABLED ||
4449 alt_timeout == USB3_LPM_DEVICE_INITIATED) {
4450 *timeout = alt_timeout;
4451 return -E2BIG;
4452 }
4453 if (alt_timeout > *timeout)
4454 *timeout = alt_timeout;
4455 return 0;
4456}
4457
4458static int xhci_update_timeout_for_interface(struct xhci_hcd *xhci,
4459 struct usb_device *udev,
4460 struct usb_host_interface *alt,
4461 enum usb3_link_state state,
4462 u16 *timeout)
4463{
4464 int j;
4465
4466 for (j = 0; j < alt->desc.bNumEndpoints; j++) {
4467 if (xhci_update_timeout_for_endpoint(xhci, udev,
4468 &alt->endpoint[j].desc, state, timeout))
4469 return -E2BIG;
4470 continue;
4471 }
4472 return 0;
4473}
4474
Sarah Sharpe3567d22012-05-16 13:36:24 -07004475static int xhci_check_intel_tier_policy(struct usb_device *udev,
4476 enum usb3_link_state state)
4477{
4478 struct usb_device *parent;
4479 unsigned int num_hubs;
4480
4481 if (state == USB3_LPM_U2)
4482 return 0;
4483
4484 /* Don't enable U1 if the device is on a 2nd tier hub or lower. */
4485 for (parent = udev->parent, num_hubs = 0; parent->parent;
4486 parent = parent->parent)
4487 num_hubs++;
4488
4489 if (num_hubs < 2)
4490 return 0;
4491
4492 dev_dbg(&udev->dev, "Disabling U1 link state for device"
4493 " below second-tier hub.\n");
4494 dev_dbg(&udev->dev, "Plug device into first-tier hub "
4495 "to decrease power consumption.\n");
4496 return -E2BIG;
4497}
4498
Sarah Sharp3b3db022012-05-09 10:55:03 -07004499static int xhci_check_tier_policy(struct xhci_hcd *xhci,
4500 struct usb_device *udev,
4501 enum usb3_link_state state)
4502{
Sarah Sharpe3567d22012-05-16 13:36:24 -07004503 if (xhci->quirks & XHCI_INTEL_HOST)
4504 return xhci_check_intel_tier_policy(udev, state);
Pratyush Anand9502c462014-07-04 17:01:23 +03004505 else
4506 return 0;
Sarah Sharp3b3db022012-05-09 10:55:03 -07004507}
4508
4509/* Returns the U1 or U2 timeout that should be enabled.
4510 * If the tier check or timeout setting functions return with a non-zero exit
4511 * code, that means the timeout value has been finalized and we shouldn't look
4512 * at any more endpoints.
4513 */
4514static u16 xhci_calculate_lpm_timeout(struct usb_hcd *hcd,
4515 struct usb_device *udev, enum usb3_link_state state)
4516{
4517 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4518 struct usb_host_config *config;
4519 char *state_name;
4520 int i;
4521 u16 timeout = USB3_LPM_DISABLED;
4522
4523 if (state == USB3_LPM_U1)
4524 state_name = "U1";
4525 else if (state == USB3_LPM_U2)
4526 state_name = "U2";
4527 else {
4528 dev_warn(&udev->dev, "Can't enable unknown link state %i\n",
4529 state);
4530 return timeout;
4531 }
4532
4533 if (xhci_check_tier_policy(xhci, udev, state) < 0)
4534 return timeout;
4535
4536 /* Gather some information about the currently installed configuration
4537 * and alternate interface settings.
4538 */
4539 if (xhci_update_timeout_for_endpoint(xhci, udev, &udev->ep0.desc,
4540 state, &timeout))
4541 return timeout;
4542
4543 config = udev->actconfig;
4544 if (!config)
4545 return timeout;
4546
Xenia Ragiadakou64ba4192013-08-26 23:29:46 +03004547 for (i = 0; i < config->desc.bNumInterfaces; i++) {
Sarah Sharp3b3db022012-05-09 10:55:03 -07004548 struct usb_driver *driver;
4549 struct usb_interface *intf = config->interface[i];
4550
4551 if (!intf)
4552 continue;
4553
4554 /* Check if any currently bound drivers want hub-initiated LPM
4555 * disabled.
4556 */
4557 if (intf->dev.driver) {
4558 driver = to_usb_driver(intf->dev.driver);
4559 if (driver && driver->disable_hub_initiated_lpm) {
4560 dev_dbg(&udev->dev, "Hub-initiated %s disabled "
4561 "at request of driver %s\n",
4562 state_name, driver->name);
4563 return xhci_get_timeout_no_hub_lpm(udev, state);
4564 }
4565 }
4566
4567 /* Not sure how this could happen... */
4568 if (!intf->cur_altsetting)
4569 continue;
4570
4571 if (xhci_update_timeout_for_interface(xhci, udev,
4572 intf->cur_altsetting,
4573 state, &timeout))
4574 return timeout;
4575 }
4576 return timeout;
4577}
4578
Sarah Sharp3b3db022012-05-09 10:55:03 -07004579static int calculate_max_exit_latency(struct usb_device *udev,
4580 enum usb3_link_state state_changed,
4581 u16 hub_encoded_timeout)
4582{
4583 unsigned long long u1_mel_us = 0;
4584 unsigned long long u2_mel_us = 0;
4585 unsigned long long mel_us = 0;
4586 bool disabling_u1;
4587 bool disabling_u2;
4588 bool enabling_u1;
4589 bool enabling_u2;
4590
4591 disabling_u1 = (state_changed == USB3_LPM_U1 &&
4592 hub_encoded_timeout == USB3_LPM_DISABLED);
4593 disabling_u2 = (state_changed == USB3_LPM_U2 &&
4594 hub_encoded_timeout == USB3_LPM_DISABLED);
4595
4596 enabling_u1 = (state_changed == USB3_LPM_U1 &&
4597 hub_encoded_timeout != USB3_LPM_DISABLED);
4598 enabling_u2 = (state_changed == USB3_LPM_U2 &&
4599 hub_encoded_timeout != USB3_LPM_DISABLED);
4600
4601 /* If U1 was already enabled and we're not disabling it,
4602 * or we're going to enable U1, account for the U1 max exit latency.
4603 */
4604 if ((udev->u1_params.timeout != USB3_LPM_DISABLED && !disabling_u1) ||
4605 enabling_u1)
4606 u1_mel_us = DIV_ROUND_UP(udev->u1_params.mel, 1000);
4607 if ((udev->u2_params.timeout != USB3_LPM_DISABLED && !disabling_u2) ||
4608 enabling_u2)
4609 u2_mel_us = DIV_ROUND_UP(udev->u2_params.mel, 1000);
4610
4611 if (u1_mel_us > u2_mel_us)
4612 mel_us = u1_mel_us;
4613 else
4614 mel_us = u2_mel_us;
4615 /* xHCI host controller max exit latency field is only 16 bits wide. */
4616 if (mel_us > MAX_EXIT) {
4617 dev_warn(&udev->dev, "Link PM max exit latency of %lluus "
4618 "is too big.\n", mel_us);
4619 return -E2BIG;
4620 }
4621 return mel_us;
4622}
4623
4624/* Returns the USB3 hub-encoded value for the U1/U2 timeout. */
4625int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd,
4626 struct usb_device *udev, enum usb3_link_state state)
4627{
4628 struct xhci_hcd *xhci;
4629 u16 hub_encoded_timeout;
4630 int mel;
4631 int ret;
4632
4633 xhci = hcd_to_xhci(hcd);
4634 /* The LPM timeout values are pretty host-controller specific, so don't
4635 * enable hub-initiated timeouts unless the vendor has provided
4636 * information about their timeout algorithm.
4637 */
4638 if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) ||
4639 !xhci->devs[udev->slot_id])
4640 return USB3_LPM_DISABLED;
4641
4642 hub_encoded_timeout = xhci_calculate_lpm_timeout(hcd, udev, state);
4643 mel = calculate_max_exit_latency(udev, state, hub_encoded_timeout);
4644 if (mel < 0) {
4645 /* Max Exit Latency is too big, disable LPM. */
4646 hub_encoded_timeout = USB3_LPM_DISABLED;
4647 mel = 0;
4648 }
4649
4650 ret = xhci_change_max_exit_latency(xhci, udev, mel);
4651 if (ret)
4652 return ret;
4653 return hub_encoded_timeout;
4654}
4655
4656int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
4657 struct usb_device *udev, enum usb3_link_state state)
4658{
4659 struct xhci_hcd *xhci;
4660 u16 mel;
4661 int ret;
4662
4663 xhci = hcd_to_xhci(hcd);
4664 if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) ||
4665 !xhci->devs[udev->slot_id])
4666 return 0;
4667
4668 mel = calculate_max_exit_latency(udev, state, USB3_LPM_DISABLED);
4669 ret = xhci_change_max_exit_latency(xhci, udev, mel);
4670 if (ret)
4671 return ret;
4672 return 0;
4673}
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004674#else /* CONFIG_PM */
4675
Rafael J. Wysockiceb6c9c2014-11-29 23:47:05 +01004676int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
4677 struct usb_device *udev, int enable)
4678{
4679 return 0;
4680}
4681
4682int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
4683{
4684 return 0;
4685}
4686
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004687int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd,
4688 struct usb_device *udev, enum usb3_link_state state)
4689{
4690 return USB3_LPM_DISABLED;
4691}
4692
4693int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
4694 struct usb_device *udev, enum usb3_link_state state)
4695{
4696 return 0;
4697}
4698#endif /* CONFIG_PM */
4699
Sarah Sharp3b3db022012-05-09 10:55:03 -07004700/*-------------------------------------------------------------------------*/
4701
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004702/* Once a hub descriptor is fetched for a device, we need to update the xHC's
4703 * internal data structures for the device.
4704 */
4705int xhci_update_hub_device(struct usb_hcd *hcd, struct usb_device *hdev,
4706 struct usb_tt *tt, gfp_t mem_flags)
4707{
4708 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4709 struct xhci_virt_device *vdev;
4710 struct xhci_command *config_cmd;
4711 struct xhci_input_control_ctx *ctrl_ctx;
4712 struct xhci_slot_ctx *slot_ctx;
4713 unsigned long flags;
4714 unsigned think_time;
4715 int ret;
4716
4717 /* Ignore root hubs */
4718 if (!hdev->parent)
4719 return 0;
4720
4721 vdev = xhci->devs[hdev->slot_id];
4722 if (!vdev) {
4723 xhci_warn(xhci, "Cannot update hub desc for unknown device.\n");
4724 return -EINVAL;
4725 }
Sarah Sharpa1d78c12009-12-09 15:59:03 -08004726 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004727 if (!config_cmd) {
4728 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
4729 return -ENOMEM;
4730 }
Sarah Sharp92f8e762013-04-23 17:11:14 -07004731 ctrl_ctx = xhci_get_input_control_ctx(xhci, config_cmd->in_ctx);
4732 if (!ctrl_ctx) {
4733 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
4734 __func__);
4735 xhci_free_command(xhci, config_cmd);
4736 return -ENOMEM;
4737 }
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004738
4739 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp839c8172011-09-02 11:05:47 -07004740 if (hdev->speed == USB_SPEED_HIGH &&
4741 xhci_alloc_tt_info(xhci, vdev, hdev, tt, GFP_ATOMIC)) {
4742 xhci_dbg(xhci, "Could not allocate xHCI TT structure.\n");
4743 xhci_free_command(xhci, config_cmd);
4744 spin_unlock_irqrestore(&xhci->lock, flags);
4745 return -ENOMEM;
4746 }
4747
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004748 xhci_slot_copy(xhci, config_cmd->in_ctx, vdev->out_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11004749 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004750 slot_ctx = xhci_get_slot_ctx(xhci, config_cmd->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11004751 slot_ctx->dev_info |= cpu_to_le32(DEV_HUB);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004752 if (tt->multi)
Matt Evans28ccd292011-03-29 13:40:46 +11004753 slot_ctx->dev_info |= cpu_to_le32(DEV_MTT);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004754 if (xhci->hci_version > 0x95) {
4755 xhci_dbg(xhci, "xHCI version %x needs hub "
4756 "TT think time and number of ports\n",
4757 (unsigned int) xhci->hci_version);
Matt Evans28ccd292011-03-29 13:40:46 +11004758 slot_ctx->dev_info2 |= cpu_to_le32(XHCI_MAX_PORTS(hdev->maxchild));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004759 /* Set TT think time - convert from ns to FS bit times.
4760 * 0 = 8 FS bit times, 1 = 16 FS bit times,
4761 * 2 = 24 FS bit times, 3 = 32 FS bit times.
Andiry Xu700b4172011-05-05 18:14:05 +08004762 *
4763 * xHCI 1.0: this field shall be 0 if the device is not a
4764 * High-spped hub.
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004765 */
4766 think_time = tt->think_time;
4767 if (think_time != 0)
4768 think_time = (think_time / 666) - 1;
Andiry Xu700b4172011-05-05 18:14:05 +08004769 if (xhci->hci_version < 0x100 || hdev->speed == USB_SPEED_HIGH)
4770 slot_ctx->tt_info |=
4771 cpu_to_le32(TT_THINK_TIME(think_time));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004772 } else {
4773 xhci_dbg(xhci, "xHCI version %x doesn't need hub "
4774 "TT think time or number of ports\n",
4775 (unsigned int) xhci->hci_version);
4776 }
4777 slot_ctx->dev_state = 0;
4778 spin_unlock_irqrestore(&xhci->lock, flags);
4779
4780 xhci_dbg(xhci, "Set up %s for hub device.\n",
4781 (xhci->hci_version > 0x95) ?
4782 "configure endpoint" : "evaluate context");
4783 xhci_dbg(xhci, "Slot %u Input Context:\n", hdev->slot_id);
4784 xhci_dbg_ctx(xhci, config_cmd->in_ctx, 0);
4785
4786 /* Issue and wait for the configure endpoint or
4787 * evaluate context command.
4788 */
4789 if (xhci->hci_version > 0x95)
4790 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
4791 false, false);
4792 else
4793 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
4794 true, false);
4795
4796 xhci_dbg(xhci, "Slot %u Output Context:\n", hdev->slot_id);
4797 xhci_dbg_ctx(xhci, vdev->out_ctx, 0);
4798
4799 xhci_free_command(xhci, config_cmd);
4800 return ret;
4801}
4802
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004803int xhci_get_frame(struct usb_hcd *hcd)
4804{
4805 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4806 /* EHCI mods by the periodic size. Why? */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004807 return readl(&xhci->run_regs->microframe_index) >> 3;
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004808}
4809
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004810int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks)
4811{
4812 struct xhci_hcd *xhci;
4813 struct device *dev = hcd->self.controller;
4814 int retval;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004815
Sarah Sharp1386ff72014-01-31 11:45:02 -08004816 /* Accept arbitrarily long scatter-gather lists */
4817 hcd->self.sg_tablesize = ~0;
Ming Leifc760512013-08-08 21:48:23 +08004818
Mathias Nymane2ed5112014-03-07 17:06:57 +02004819 /* support to build packet from discontinuous buffers */
4820 hcd->self.no_sg_constraint = 1;
4821
Hans de Goede19181bc2012-07-04 09:18:02 +02004822 /* XHCI controllers don't stop the ep queue on short packets :| */
4823 hcd->self.no_stop_on_short = 1;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004824
4825 if (usb_hcd_is_primary_hcd(hcd)) {
4826 xhci = kzalloc(sizeof(struct xhci_hcd), GFP_KERNEL);
4827 if (!xhci)
4828 return -ENOMEM;
4829 *((struct xhci_hcd **) hcd->hcd_priv) = xhci;
4830 xhci->main_hcd = hcd;
4831 /* Mark the first roothub as being USB 2.0.
4832 * The xHCI driver will register the USB 3.0 roothub.
4833 */
4834 hcd->speed = HCD_USB2;
4835 hcd->self.root_hub->speed = USB_SPEED_HIGH;
4836 /*
4837 * USB 2.0 roothub under xHCI has an integrated TT,
4838 * (rate matching hub) as opposed to having an OHCI/UHCI
4839 * companion controller.
4840 */
4841 hcd->has_tt = 1;
4842 } else {
4843 /* xHCI private pointer was set in xhci_pci_probe for the second
4844 * registered roothub.
4845 */
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004846 return 0;
4847 }
4848
4849 xhci->cap_regs = hcd->regs;
4850 xhci->op_regs = hcd->regs +
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004851 HC_LENGTH(readl(&xhci->cap_regs->hc_capbase));
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004852 xhci->run_regs = hcd->regs +
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004853 (readl(&xhci->cap_regs->run_regs_off) & RTSOFF_MASK);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004854 /* Cache read-only capability registers */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004855 xhci->hcs_params1 = readl(&xhci->cap_regs->hcs_params1);
4856 xhci->hcs_params2 = readl(&xhci->cap_regs->hcs_params2);
4857 xhci->hcs_params3 = readl(&xhci->cap_regs->hcs_params3);
4858 xhci->hcc_params = readl(&xhci->cap_regs->hc_capbase);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004859 xhci->hci_version = HC_VERSION(xhci->hcc_params);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004860 xhci->hcc_params = readl(&xhci->cap_regs->hcc_params);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004861 xhci_print_registers(xhci);
4862
Takashi Iwai4e6a1ee2013-12-09 12:42:48 +01004863 xhci->quirks = quirks;
4864
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004865 get_quirks(dev, xhci);
4866
George Cherian07f3cb72013-07-01 10:59:12 +05304867 /* In xhci controllers which follow xhci 1.0 spec gives a spurious
4868 * success event after a short transfer. This quirk will ignore such
4869 * spurious event.
4870 */
4871 if (xhci->hci_version > 0x96)
4872 xhci->quirks |= XHCI_SPURIOUS_SUCCESS;
4873
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004874 /* Make sure the HC is halted. */
4875 retval = xhci_halt(xhci);
4876 if (retval)
4877 goto error;
4878
4879 xhci_dbg(xhci, "Resetting HCD\n");
4880 /* Reset the internal HC memory state and registers. */
4881 retval = xhci_reset(xhci);
4882 if (retval)
4883 goto error;
4884 xhci_dbg(xhci, "Reset complete\n");
4885
Xenia Ragiadakouc10cf112013-08-14 05:55:19 +03004886 /* Set dma_mask and coherent_dma_mask to 64-bits,
4887 * if xHC supports 64-bit addressing */
4888 if (HCC_64BIT_ADDR(xhci->hcc_params) &&
4889 !dma_set_mask(dev, DMA_BIT_MASK(64))) {
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004890 xhci_dbg(xhci, "Enabling 64-bit DMA addresses.\n");
Xenia Ragiadakouc10cf112013-08-14 05:55:19 +03004891 dma_set_coherent_mask(dev, DMA_BIT_MASK(64));
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004892 }
4893
4894 xhci_dbg(xhci, "Calling HCD init\n");
4895 /* Initialize HCD and host controller data structures. */
4896 retval = xhci_init(hcd);
4897 if (retval)
4898 goto error;
4899 xhci_dbg(xhci, "Called HCD init\n");
4900 return 0;
4901error:
4902 kfree(xhci);
4903 return retval;
4904}
Andrew Bresticker436e8c72014-10-03 11:35:28 +03004905EXPORT_SYMBOL_GPL(xhci_gen_setup);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004906
Andrew Bresticker1885d9a2014-10-03 11:35:26 +03004907static const struct hc_driver xhci_hc_driver = {
4908 .description = "xhci-hcd",
4909 .product_desc = "xHCI Host Controller",
4910 .hcd_priv_size = sizeof(struct xhci_hcd *),
4911
4912 /*
4913 * generic hardware linkage
4914 */
4915 .irq = xhci_irq,
4916 .flags = HCD_MEMORY | HCD_USB3 | HCD_SHARED,
4917
4918 /*
4919 * basic lifecycle operations
4920 */
4921 .reset = NULL, /* set in xhci_init_driver() */
4922 .start = xhci_run,
4923 .stop = xhci_stop,
4924 .shutdown = xhci_shutdown,
4925
4926 /*
4927 * managing i/o requests and associated device resources
4928 */
4929 .urb_enqueue = xhci_urb_enqueue,
4930 .urb_dequeue = xhci_urb_dequeue,
4931 .alloc_dev = xhci_alloc_dev,
4932 .free_dev = xhci_free_dev,
4933 .alloc_streams = xhci_alloc_streams,
4934 .free_streams = xhci_free_streams,
4935 .add_endpoint = xhci_add_endpoint,
4936 .drop_endpoint = xhci_drop_endpoint,
4937 .endpoint_reset = xhci_endpoint_reset,
4938 .check_bandwidth = xhci_check_bandwidth,
4939 .reset_bandwidth = xhci_reset_bandwidth,
4940 .address_device = xhci_address_device,
4941 .enable_device = xhci_enable_device,
4942 .update_hub_device = xhci_update_hub_device,
4943 .reset_device = xhci_discover_or_reset_device,
4944
4945 /*
4946 * scheduling support
4947 */
4948 .get_frame_number = xhci_get_frame,
4949
4950 /*
4951 * root hub support
4952 */
4953 .hub_control = xhci_hub_control,
4954 .hub_status_data = xhci_hub_status_data,
4955 .bus_suspend = xhci_bus_suspend,
4956 .bus_resume = xhci_bus_resume,
4957
4958 /*
4959 * call back when device connected and addressed
4960 */
4961 .update_device = xhci_update_device,
4962 .set_usb2_hw_lpm = xhci_set_usb2_hardware_lpm,
4963 .enable_usb3_lpm_timeout = xhci_enable_usb3_lpm_timeout,
4964 .disable_usb3_lpm_timeout = xhci_disable_usb3_lpm_timeout,
4965 .find_raw_port_number = xhci_find_raw_port_number,
4966};
4967
4968void xhci_init_driver(struct hc_driver *drv, int (*setup_fn)(struct usb_hcd *))
4969{
4970 BUG_ON(!setup_fn);
4971 *drv = xhci_hc_driver;
4972 drv->reset = setup_fn;
4973}
4974EXPORT_SYMBOL_GPL(xhci_init_driver);
4975
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004976MODULE_DESCRIPTION(DRIVER_DESC);
4977MODULE_AUTHOR(DRIVER_AUTHOR);
4978MODULE_LICENSE("GPL");
4979
4980static int __init xhci_hcd_init(void)
4981{
Sarah Sharp98441972009-05-14 11:44:18 -07004982 /*
4983 * Check the compiler generated sizes of structures that must be laid
4984 * out in specific ways for hardware access.
4985 */
4986 BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8);
4987 BUILD_BUG_ON(sizeof(struct xhci_slot_ctx) != 8*32/8);
4988 BUILD_BUG_ON(sizeof(struct xhci_ep_ctx) != 8*32/8);
4989 /* xhci_device_control has eight fields, and also
4990 * embeds one xhci_slot_ctx and 31 xhci_ep_ctx
4991 */
Sarah Sharp98441972009-05-14 11:44:18 -07004992 BUILD_BUG_ON(sizeof(struct xhci_stream_ctx) != 4*32/8);
4993 BUILD_BUG_ON(sizeof(union xhci_trb) != 4*32/8);
4994 BUILD_BUG_ON(sizeof(struct xhci_erst_entry) != 4*32/8);
4995 BUILD_BUG_ON(sizeof(struct xhci_cap_regs) != 7*32/8);
4996 BUILD_BUG_ON(sizeof(struct xhci_intr_reg) != 8*32/8);
4997 /* xhci_run_regs has eight fields and embeds 128 xhci_intr_regs */
4998 BUILD_BUG_ON(sizeof(struct xhci_run_regs) != (8+8*128)*32/8);
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004999 return 0;
5000}
5001module_init(xhci_hcd_init);