blob: 2d6a98c1dc12270ef87d4a0afda6bfb5a7cc6b28 [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"
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +020034#include "xhci-mtk.h"
Sarah Sharp66d4ead2009-04-27 19:52:28 -070035
36#define DRIVER_AUTHOR "Sarah Sharp"
37#define DRIVER_DESC "'eXtensible' Host Controller (xHC) Driver"
38
Lu Baolua1377e52014-11-18 11:27:14 +020039#define PORT_WAKE_BITS (PORT_WKOC_E | PORT_WKDISC_E | PORT_WKCONN_E)
40
Sarah Sharpb0567b32009-08-07 14:04:36 -070041/* Some 0.95 hardware can't handle the chain bit on a Link TRB being cleared */
42static int link_quirk;
43module_param(link_quirk, int, S_IRUGO | S_IWUSR);
44MODULE_PARM_DESC(link_quirk, "Don't clear the chain bit on a link TRB");
45
Takashi Iwai4e6a1ee2013-12-09 12:42:48 +010046static unsigned int quirks;
47module_param(quirks, uint, S_IRUGO);
48MODULE_PARM_DESC(quirks, "Bit flags for quirks to be enabled as default");
49
Sarah Sharp66d4ead2009-04-27 19:52:28 -070050/* TODO: copied from ehci-hcd.c - can this be refactored? */
51/*
Sarah Sharp2611bd182012-10-25 13:27:51 -070052 * xhci_handshake - spin reading hc until handshake completes or fails
Sarah Sharp66d4ead2009-04-27 19:52:28 -070053 * @ptr: address of hc register to be read
54 * @mask: bits to look at in result of read
55 * @done: value of those bits when handshake succeeds
56 * @usec: timeout in microseconds
57 *
58 * Returns negative errno, or zero on success
59 *
60 * Success happens when the "mask" bits have the specified value (hardware
61 * handshake done). There are two failure modes: "usec" have passed (major
62 * hardware flakeout), or the register reads as all-ones (hardware removed).
63 */
Lin Wangdc0b1772015-01-09 16:06:28 +020064int xhci_handshake(void __iomem *ptr, u32 mask, u32 done, int usec)
Sarah Sharp66d4ead2009-04-27 19:52:28 -070065{
66 u32 result;
67
68 do {
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +020069 result = readl(ptr);
Sarah Sharp66d4ead2009-04-27 19:52:28 -070070 if (result == ~(u32)0) /* card removed */
71 return -ENODEV;
72 result &= mask;
73 if (result == done)
74 return 0;
75 udelay(1);
76 usec--;
77 } while (usec > 0);
78 return -ETIMEDOUT;
79}
80
81/*
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -070082 * Disable interrupts and begin the xHCI halting process.
83 */
84void xhci_quiesce(struct xhci_hcd *xhci)
85{
86 u32 halted;
87 u32 cmd;
88 u32 mask;
89
90 mask = ~(XHCI_IRQS);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +020091 halted = readl(&xhci->op_regs->status) & STS_HALT;
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -070092 if (!halted)
93 mask &= ~CMD_RUN;
94
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +020095 cmd = readl(&xhci->op_regs->command);
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -070096 cmd &= mask;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +020097 writel(cmd, &xhci->op_regs->command);
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -070098}
99
100/*
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700101 * Force HC into halt state.
102 *
103 * Disable any IRQs and clear the run/stop bit.
104 * HC will complete any current and actively pipelined transactions, and
Andiry Xubdfca502011-01-06 15:43:39 +0800105 * should halt within 16 ms of the run/stop bit being cleared.
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700106 * Read HC Halted bit in the status register to see when the HC is finished.
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700107 */
108int xhci_halt(struct xhci_hcd *xhci)
109{
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800110 int ret;
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300111 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "// Halt the HC");
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -0700112 xhci_quiesce(xhci);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700113
Lin Wangdc0b1772015-01-09 16:06:28 +0200114 ret = xhci_handshake(&xhci->op_regs->status,
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700115 STS_HALT, STS_HALT, XHCI_MAX_HALT_USEC);
Mathias Nyman99154fd2016-11-11 15:13:11 +0200116 if (ret) {
117 xhci_warn(xhci, "Host halt failed, %d\n", ret);
118 return ret;
119 }
120 xhci->xhc_state |= XHCI_STATE_HALTED;
121 xhci->cmd_ring_state = CMD_RING_STATE_STOPPED;
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800122 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700123}
124
125/*
Sarah Sharped074532010-05-24 13:25:21 -0700126 * Set the run bit and wait for the host to be running.
127 */
Guoqing Zhang26bba5c2017-04-07 17:56:53 +0300128int xhci_start(struct xhci_hcd *xhci)
Sarah Sharped074532010-05-24 13:25:21 -0700129{
130 u32 temp;
131 int ret;
132
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200133 temp = readl(&xhci->op_regs->command);
Sarah Sharped074532010-05-24 13:25:21 -0700134 temp |= (CMD_RUN);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300135 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "// Turn on HC, cmd = 0x%x.",
Sarah Sharped074532010-05-24 13:25:21 -0700136 temp);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200137 writel(temp, &xhci->op_regs->command);
Sarah Sharped074532010-05-24 13:25:21 -0700138
139 /*
140 * Wait for the HCHalted Status bit to be 0 to indicate the host is
141 * running.
142 */
Lin Wangdc0b1772015-01-09 16:06:28 +0200143 ret = xhci_handshake(&xhci->op_regs->status,
Sarah Sharped074532010-05-24 13:25:21 -0700144 STS_HALT, 0, XHCI_MAX_HALT_USEC);
145 if (ret == -ETIMEDOUT)
146 xhci_err(xhci, "Host took too long to start, "
147 "waited %u microseconds.\n",
148 XHCI_MAX_HALT_USEC);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800149 if (!ret)
Mathias Nyman98d74f92016-04-08 16:25:10 +0300150 /* clear state flags. Including dying, halted or removing */
151 xhci->xhc_state = 0;
Roger Quadrose5bfeab2015-09-21 17:46:13 +0300152
Sarah Sharped074532010-05-24 13:25:21 -0700153 return ret;
154}
155
156/*
Sarah Sharpac04e6f2011-03-11 08:47:33 -0800157 * Reset a halted HC.
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700158 *
159 * This resets pipelines, timers, counters, state machines, etc.
160 * Transactions will be terminated immediately, and operational registers
161 * will be set to their defaults.
162 */
163int xhci_reset(struct xhci_hcd *xhci)
164{
165 u32 command;
166 u32 state;
Andiry Xuf370b992012-04-14 02:54:30 +0800167 int ret, i;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700168
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200169 state = readl(&xhci->op_regs->status);
Mathias Nymanc11ae032016-11-11 15:13:12 +0200170
171 if (state == ~(u32)0) {
172 xhci_warn(xhci, "Host not accessible, reset failed.\n");
173 return -ENODEV;
174 }
175
Sarah Sharpd3512f62009-07-27 12:03:50 -0700176 if ((state & STS_HALT) == 0) {
177 xhci_warn(xhci, "Host controller not halted, aborting reset.\n");
178 return 0;
179 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700180
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300181 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "// Reset the HC");
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200182 command = readl(&xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700183 command |= CMD_RESET;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200184 writel(command, &xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700185
Rajmohan Mania5964392015-11-18 10:48:20 +0200186 /* Existing Intel xHCI controllers require a delay of 1 mS,
187 * after setting the CMD_RESET bit, and before accessing any
188 * HC registers. This allows the HC to complete the
189 * reset operation and be ready for HC register access.
190 * Without this delay, the subsequent HC register access,
191 * may result in a system hang very rarely.
192 */
193 if (xhci->quirks & XHCI_INTEL_HOST)
194 udelay(1000);
195
Lin Wangdc0b1772015-01-09 16:06:28 +0200196 ret = xhci_handshake(&xhci->op_regs->command,
Sarah Sharp22ceac12012-07-23 16:06:08 -0700197 CMD_RESET, 0, 10 * 1000 * 1000);
Sarah Sharp2d62f3e2010-05-24 13:25:15 -0700198 if (ret)
199 return ret;
200
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300201 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
202 "Wait for controller to be ready for doorbell rings");
Sarah Sharp2d62f3e2010-05-24 13:25:15 -0700203 /*
204 * xHCI cannot write to any doorbells or operational registers other
205 * than status until the "Controller Not Ready" flag is cleared.
206 */
Lin Wangdc0b1772015-01-09 16:06:28 +0200207 ret = xhci_handshake(&xhci->op_regs->status,
Sarah Sharp22ceac12012-07-23 16:06:08 -0700208 STS_CNR, 0, 10 * 1000 * 1000);
Andiry Xuf370b992012-04-14 02:54:30 +0800209
Felipe Balbi98871e92017-01-23 14:20:04 +0200210 for (i = 0; i < 2; i++) {
Andiry Xuf370b992012-04-14 02:54:30 +0800211 xhci->bus_state[i].port_c_suspend = 0;
212 xhci->bus_state[i].suspended_ports = 0;
213 xhci->bus_state[i].resuming_ports = 0;
214 }
215
216 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700217}
218
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300219
yuan linyu2c93e792017-02-25 19:20:55 +0800220#ifdef CONFIG_USB_PCI
Dong Nguyen43b86af2010-07-21 16:56:08 -0700221/*
222 * Set up MSI
223 */
224static int xhci_setup_msi(struct xhci_hcd *xhci)
225{
226 int ret;
Arnd Bergmann4c39d4b2017-03-13 10:18:44 +0800227 /*
228 * TODO:Check with MSI Soc for sysdev
229 */
Dong Nguyen43b86af2010-07-21 16:56:08 -0700230 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
231
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300232 ret = pci_alloc_irq_vectors(pdev, 1, 1, PCI_IRQ_MSI);
233 if (ret < 0) {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300234 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
235 "failed to allocate MSI entry");
Dong Nguyen43b86af2010-07-21 16:56:08 -0700236 return ret;
237 }
238
Alex Shi851ec162013-05-24 10:54:19 +0800239 ret = request_irq(pdev->irq, xhci_msi_irq,
Dong Nguyen43b86af2010-07-21 16:56:08 -0700240 0, "xhci_hcd", xhci_to_hcd(xhci));
241 if (ret) {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300242 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
243 "disable MSI interrupt");
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300244 pci_free_irq_vectors(pdev);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700245 }
246
247 return ret;
248}
249
250/*
251 * Set up MSI-X
252 */
253static int xhci_setup_msix(struct xhci_hcd *xhci)
254{
255 int i, ret = 0;
Andiry Xu00292272010-12-27 17:39:02 +0800256 struct usb_hcd *hcd = xhci_to_hcd(xhci);
257 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700258
259 /*
260 * calculate number of msi-x vectors supported.
261 * - HCS_MAX_INTRS: the max number of interrupts the host can handle,
262 * with max number of interrupters based on the xhci HCSPARAMS1.
263 * - num_online_cpus: maximum msi-x vectors per CPUs core.
264 * Add additional 1 vector to ensure always available interrupt.
265 */
266 xhci->msix_count = min(num_online_cpus() + 1,
267 HCS_MAX_INTRS(xhci->hcs_params1));
268
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300269 ret = pci_alloc_irq_vectors(pdev, xhci->msix_count, xhci->msix_count,
270 PCI_IRQ_MSIX);
271 if (ret < 0) {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300272 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
273 "Failed to enable MSI-X");
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300274 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700275 }
276
Dong Nguyen43b86af2010-07-21 16:56:08 -0700277 for (i = 0; i < xhci->msix_count; i++) {
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300278 ret = request_irq(pci_irq_vector(pdev, i), xhci_msi_irq, 0,
279 "xhci_hcd", xhci_to_hcd(xhci));
Dong Nguyen43b86af2010-07-21 16:56:08 -0700280 if (ret)
281 goto disable_msix;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700282 }
Dong Nguyen43b86af2010-07-21 16:56:08 -0700283
Andiry Xu00292272010-12-27 17:39:02 +0800284 hcd->msix_enabled = 1;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700285 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700286
287disable_msix:
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300288 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "disable MSI-X interrupt");
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300289 while (--i >= 0)
290 free_irq(pci_irq_vector(pdev, i), xhci_to_hcd(xhci));
291 pci_free_irq_vectors(pdev);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700292 return ret;
293}
294
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700295/* Free any IRQs and disable MSI-X */
296static void xhci_cleanup_msix(struct xhci_hcd *xhci)
297{
Andiry Xu00292272010-12-27 17:39:02 +0800298 struct usb_hcd *hcd = xhci_to_hcd(xhci);
299 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700300
Jack Pham90053552013-11-15 14:53:14 -0800301 if (xhci->quirks & XHCI_PLAT)
302 return;
303
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300304 /* return if using legacy interrupt */
305 if (hcd->irq > 0)
306 return;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700307
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300308 if (hcd->msix_enabled) {
309 int i;
310
311 for (i = 0; i < xhci->msix_count; i++)
312 free_irq(pci_irq_vector(pdev, i), xhci_to_hcd(xhci));
Dong Nguyen43b86af2010-07-21 16:56:08 -0700313 } else {
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300314 free_irq(pci_irq_vector(pdev, 0), xhci_to_hcd(xhci));
Dong Nguyen43b86af2010-07-21 16:56:08 -0700315 }
316
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300317 pci_free_irq_vectors(pdev);
Andiry Xu00292272010-12-27 17:39:02 +0800318 hcd->msix_enabled = 0;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700319}
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700320
Olof Johanssond5c82fe2013-07-23 11:58:20 -0700321static void __maybe_unused xhci_msix_sync_irqs(struct xhci_hcd *xhci)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700322{
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300323 struct usb_hcd *hcd = xhci_to_hcd(xhci);
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700324
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300325 if (hcd->msix_enabled) {
326 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
327 int i;
328
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700329 for (i = 0; i < xhci->msix_count; i++)
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300330 synchronize_irq(pci_irq_vector(pdev, i));
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700331 }
332}
333
334static int xhci_try_enable_msi(struct usb_hcd *hcd)
335{
336 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp52fb6122013-08-08 10:08:34 -0700337 struct pci_dev *pdev;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700338 int ret;
339
Sarah Sharp52fb6122013-08-08 10:08:34 -0700340 /* The xhci platform device has set up IRQs through usb_add_hcd. */
341 if (xhci->quirks & XHCI_PLAT)
342 return 0;
343
344 pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700345 /*
346 * Some Fresco Logic host controllers advertise MSI, but fail to
347 * generate interrupts. Don't even try to enable MSI.
348 */
349 if (xhci->quirks & XHCI_BROKEN_MSI)
Hannes Reinecke00eed9c2013-03-04 17:14:43 +0100350 goto legacy_irq;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700351
352 /* unregister the legacy interrupt */
353 if (hcd->irq)
354 free_irq(hcd->irq, hcd);
Felipe Balbicd704692012-02-29 16:46:23 +0200355 hcd->irq = 0;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700356
357 ret = xhci_setup_msix(xhci);
358 if (ret)
359 /* fall back to msi*/
360 ret = xhci_setup_msi(xhci);
361
Peter Chen6a29bee2017-05-17 18:32:02 +0300362 if (!ret) {
363 hcd->msi_enabled = 1;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700364 return 0;
Peter Chen6a29bee2017-05-17 18:32:02 +0300365 }
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700366
Sarah Sharp68d07f62012-02-13 16:25:57 -0800367 if (!pdev->irq) {
368 xhci_err(xhci, "No msi-x/msi found and no IRQ in BIOS\n");
369 return -EINVAL;
370 }
371
Hannes Reinecke00eed9c2013-03-04 17:14:43 +0100372 legacy_irq:
Adrian Huang79699432014-02-27 11:26:03 +0000373 if (!strlen(hcd->irq_descr))
374 snprintf(hcd->irq_descr, sizeof(hcd->irq_descr), "%s:usb%d",
375 hcd->driver->description, hcd->self.busnum);
376
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700377 /* fall back to legacy interrupt*/
378 ret = request_irq(pdev->irq, &usb_hcd_irq, IRQF_SHARED,
379 hcd->irq_descr, hcd);
380 if (ret) {
381 xhci_err(xhci, "request interrupt %d failed\n",
382 pdev->irq);
383 return ret;
384 }
385 hcd->irq = pdev->irq;
386 return 0;
387}
388
389#else
390
David Cohen01bb59e2014-04-25 19:20:16 +0300391static inline int xhci_try_enable_msi(struct usb_hcd *hcd)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700392{
393 return 0;
394}
395
David Cohen01bb59e2014-04-25 19:20:16 +0300396static inline void xhci_cleanup_msix(struct xhci_hcd *xhci)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700397{
398}
399
David Cohen01bb59e2014-04-25 19:20:16 +0300400static inline void xhci_msix_sync_irqs(struct xhci_hcd *xhci)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700401{
402}
403
404#endif
405
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500406static void compliance_mode_recovery(unsigned long arg)
407{
408 struct xhci_hcd *xhci;
409 struct usb_hcd *hcd;
410 u32 temp;
411 int i;
412
413 xhci = (struct xhci_hcd *)arg;
414
415 for (i = 0; i < xhci->num_usb3_ports; i++) {
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200416 temp = readl(xhci->usb3_ports[i]);
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500417 if ((temp & PORT_PLS_MASK) == USB_SS_PORT_LS_COMP_MOD) {
418 /*
419 * Compliance Mode Detected. Letting USB Core
420 * handle the Warm Reset
421 */
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300422 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
423 "Compliance mode detected->port %d",
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500424 i + 1);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300425 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
426 "Attempting compliance mode recovery");
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500427 hcd = xhci->shared_hcd;
428
429 if (hcd->state == HC_STATE_SUSPENDED)
430 usb_hcd_resume_root_hub(hcd);
431
432 usb_hcd_poll_rh_status(hcd);
433 }
434 }
435
436 if (xhci->port_status_u0 != ((1 << xhci->num_usb3_ports)-1))
437 mod_timer(&xhci->comp_mode_recovery_timer,
438 jiffies + msecs_to_jiffies(COMP_MODE_RCVRY_MSECS));
439}
440
441/*
442 * Quirk to work around issue generated by the SN65LVPE502CP USB3.0 re-driver
443 * that causes ports behind that hardware to enter compliance mode sometimes.
444 * The quirk creates a timer that polls every 2 seconds the link state of
445 * each host controller's port and recovers it by issuing a Warm reset
446 * if Compliance mode is detected, otherwise the port will become "dead" (no
447 * device connections or disconnections will be detected anymore). Becasue no
448 * status event is generated when entering compliance mode (per xhci spec),
449 * this quirk is needed on systems that have the failing hardware installed.
450 */
451static void compliance_mode_recovery_timer_init(struct xhci_hcd *xhci)
452{
453 xhci->port_status_u0 = 0;
Julia Lawallfc8abe02015-01-09 16:06:29 +0200454 setup_timer(&xhci->comp_mode_recovery_timer,
455 compliance_mode_recovery, (unsigned long)xhci);
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500456 xhci->comp_mode_recovery_timer.expires = jiffies +
457 msecs_to_jiffies(COMP_MODE_RCVRY_MSECS);
458
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500459 add_timer(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300460 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
461 "Compliance mode recovery timer initialized");
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500462}
463
464/*
465 * This function identifies the systems that have installed the SN65LVPE502CP
466 * USB3.0 re-driver and that need the Compliance Mode Quirk.
467 * Systems:
468 * Vendor: Hewlett-Packard -> System Models: Z420, Z620 and Z820
469 */
Andrew Brestickere1cd9722014-10-03 11:35:27 +0300470static bool xhci_compliance_mode_recovery_timer_quirk_check(void)
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500471{
472 const char *dmi_product_name, *dmi_sys_vendor;
473
474 dmi_product_name = dmi_get_system_info(DMI_PRODUCT_NAME);
475 dmi_sys_vendor = dmi_get_system_info(DMI_SYS_VENDOR);
Vivek Gautam457a73d2012-09-22 18:11:19 +0530476 if (!dmi_product_name || !dmi_sys_vendor)
477 return false;
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500478
479 if (!(strstr(dmi_sys_vendor, "Hewlett-Packard")))
480 return false;
481
482 if (strstr(dmi_product_name, "Z420") ||
483 strstr(dmi_product_name, "Z620") ||
Alexis R. Cortes47080972012-10-17 14:09:12 -0500484 strstr(dmi_product_name, "Z820") ||
Alexis R. Cortesb0e4e602012-11-08 16:59:27 -0600485 strstr(dmi_product_name, "Z1 Workstation"))
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500486 return true;
487
488 return false;
489}
490
491static int xhci_all_ports_seen_u0(struct xhci_hcd *xhci)
492{
493 return (xhci->port_status_u0 == ((1 << xhci->num_usb3_ports)-1));
494}
495
496
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700497/*
498 * Initialize memory for HCD and xHC (one-time init).
499 *
500 * Program the PAGESIZE register, initialize the device context array, create
501 * device contexts (?), set up a command ring segment (or two?), create event
502 * ring (one for now).
503 */
Lu Baolu39693842017-04-07 17:57:04 +0300504static int xhci_init(struct usb_hcd *hcd)
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700505{
506 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
507 int retval = 0;
508
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300509 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "xhci_init");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700510 spin_lock_init(&xhci->lock);
Sebastian Andrzej Siewiord7826592011-09-13 16:41:10 -0700511 if (xhci->hci_version == 0x95 && link_quirk) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300512 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
513 "QUIRK: Not clearing Link TRB chain bits.");
Sarah Sharpb0567b32009-08-07 14:04:36 -0700514 xhci->quirks |= XHCI_LINK_TRB_QUIRK;
515 } else {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300516 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
517 "xHCI doesn't need link TRB QUIRK");
Sarah Sharpb0567b32009-08-07 14:04:36 -0700518 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700519 retval = xhci_mem_init(xhci, GFP_KERNEL);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300520 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "Finished xhci_init");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700521
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500522 /* Initializing Compliance Mode Recovery Data If Needed */
Sarah Sharpc3897aa2013-04-18 10:02:03 -0700523 if (xhci_compliance_mode_recovery_timer_quirk_check()) {
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500524 xhci->quirks |= XHCI_COMP_MODE_QUIRK;
525 compliance_mode_recovery_timer_init(xhci);
526 }
527
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700528 return retval;
529}
530
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700531/*-------------------------------------------------------------------------*/
532
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700533
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800534static int xhci_run_finished(struct xhci_hcd *xhci)
535{
536 if (xhci_start(xhci)) {
537 xhci_halt(xhci);
538 return -ENODEV;
539 }
540 xhci->shared_hcd->state = HC_STATE_RUNNING;
Elric Fuc181bc52012-06-27 16:30:57 +0800541 xhci->cmd_ring_state = CMD_RING_STATE_RUNNING;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800542
543 if (xhci->quirks & XHCI_NEC_HOST)
544 xhci_ring_cmd_db(xhci);
545
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300546 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
547 "Finished xhci_run for USB3 roothub");
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800548 return 0;
549}
550
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700551/*
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700552 * Start the HC after it was halted.
553 *
554 * This function is called by the USB core when the HC driver is added.
555 * Its opposite is xhci_stop().
556 *
557 * xhci_init() must be called once before this function can be called.
558 * Reset the HC, enable device slot contexts, program DCBAAP, and
559 * set command ring pointer and event ring pointer.
560 *
561 * Setup MSI-X vectors and enable interrupts.
562 */
563int xhci_run(struct usb_hcd *hcd)
564{
565 u32 temp;
Sarah Sharp8e595a52009-07-27 12:03:31 -0700566 u64 temp_64;
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700567 int ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700568 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700569
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800570 /* Start the xHCI host controller running only after the USB 2.0 roothub
571 * is setup.
572 */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700573
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700574 hcd->uses_new_polling = 1;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800575 if (!usb_hcd_is_primary_hcd(hcd))
576 return xhci_run_finished(xhci);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700577
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300578 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "xhci_run");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700579
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700580 ret = xhci_try_enable_msi(hcd);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700581 if (ret)
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700582 return ret;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700583
Sarah Sharp66e49d82009-07-27 12:03:46 -0700584 xhci_dbg_cmd_ptrs(xhci);
585
586 xhci_dbg(xhci, "ERST memory map follows:\n");
587 xhci_dbg_erst(xhci, &xhci->erst);
Sarah Sharpf7b2e402014-01-30 13:27:49 -0800588 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
Sarah Sharp66e49d82009-07-27 12:03:46 -0700589 temp_64 &= ~ERST_PTR_MASK;
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300590 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
591 "ERST deq = 64'h%0lx", (long unsigned int) temp_64);
Sarah Sharp66e49d82009-07-27 12:03:46 -0700592
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300593 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
594 "// Set the interrupt modulation register");
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200595 temp = readl(&xhci->ir_set->irq_control);
Sarah Sharpa4d88302009-05-14 11:44:26 -0700596 temp &= ~ER_IRQ_INTERVAL_MASK;
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +0200597 /*
598 * the increment interval is 8 times as much as that defined
599 * in xHCI spec on MTK's controller
600 */
601 temp |= (u32) ((xhci->quirks & XHCI_MTK_HOST) ? 20 : 160);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200602 writel(temp, &xhci->ir_set->irq_control);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700603
604 /* Set the HCD state before we enable the irqs */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200605 temp = readl(&xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700606 temp |= (CMD_EIE);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300607 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
608 "// Enable interrupts, cmd = 0x%x.", temp);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200609 writel(temp, &xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700610
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200611 temp = readl(&xhci->ir_set->irq_pending);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300612 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
613 "// Enabling event ring interrupter %p by writing 0x%x to irq_pending",
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700614 xhci->ir_set, (unsigned int) ER_IRQ_ENABLE(temp));
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200615 writel(ER_IRQ_ENABLE(temp), &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800616 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700617
Mathias Nymanddba5cd2014-05-08 19:26:00 +0300618 if (xhci->quirks & XHCI_NEC_HOST) {
619 struct xhci_command *command;
Lu Baolu74e0b562017-04-07 17:57:05 +0300620
Mathias Nymanddba5cd2014-05-08 19:26:00 +0300621 command = xhci_alloc_command(xhci, false, false, GFP_KERNEL);
622 if (!command)
623 return -ENOMEM;
Lu Baolu74e0b562017-04-07 17:57:05 +0300624
Mathias Nymanddba5cd2014-05-08 19:26:00 +0300625 xhci_queue_vendor_command(xhci, command, 0, 0, 0,
Sarah Sharp02386342010-05-24 13:25:28 -0700626 TRB_TYPE(TRB_NEC_GET_FW));
Mathias Nymanddba5cd2014-05-08 19:26:00 +0300627 }
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300628 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
629 "Finished xhci_run for USB2 roothub");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700630 return 0;
631}
Andrew Bresticker436e8c72014-10-03 11:35:28 +0300632EXPORT_SYMBOL_GPL(xhci_run);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700633
634/*
635 * Stop xHCI driver.
636 *
637 * This function is called by the USB core when the HC driver is removed.
638 * Its opposite is xhci_run().
639 *
640 * Disable device contexts, disable IRQs, and quiesce the HC.
641 * Reset the HC, finish any completed transactions, and cleanup memory.
642 */
Lu Baolu39693842017-04-07 17:57:04 +0300643static void xhci_stop(struct usb_hcd *hcd)
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700644{
645 u32 temp;
646 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
647
Roger Quadros8c24d6d2015-09-21 17:46:14 +0300648 mutex_lock(&xhci->mutex);
Roger Quadros8c24d6d2015-09-21 17:46:14 +0300649
Joel Stanleyfe190ed2017-04-07 17:57:00 +0300650 /* Only halt host and free memory after both hcds are removed */
Gabriel Krisman Bertazi27a41a82016-06-01 18:09:07 +0300651 if (!usb_hcd_is_primary_hcd(hcd)) {
Joel Stanleyfe190ed2017-04-07 17:57:00 +0300652 /* usb core will free this hcd shortly, unset pointer */
653 xhci->shared_hcd = NULL;
Gabriel Krisman Bertazi27a41a82016-06-01 18:09:07 +0300654 mutex_unlock(&xhci->mutex);
655 return;
656 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700657
Joel Stanleyfe190ed2017-04-07 17:57:00 +0300658 spin_lock_irq(&xhci->lock);
659 xhci->xhc_state |= XHCI_STATE_HALTED;
660 xhci->cmd_ring_state = CMD_RING_STATE_STOPPED;
661 xhci_halt(xhci);
662 xhci_reset(xhci);
663 spin_unlock_irq(&xhci->lock);
664
Zhang Rui40a9fb12010-12-17 13:17:04 -0800665 xhci_cleanup_msix(xhci);
666
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500667 /* Deleting Compliance Mode Recovery Timer */
668 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
Tony Camuso58b1d792013-04-05 14:27:07 -0400669 (!(xhci_all_ports_seen_u0(xhci)))) {
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500670 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300671 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
672 "%s: compliance mode recovery timer deleted",
Tony Camuso58b1d792013-04-05 14:27:07 -0400673 __func__);
674 }
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500675
Andiry Xuc41136b2011-03-22 17:08:14 +0800676 if (xhci->quirks & XHCI_AMD_PLL_FIX)
677 usb_amd_dev_put();
678
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300679 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
680 "// Disabling event ring interrupts");
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200681 temp = readl(&xhci->op_regs->status);
Lu Baolud1001ab2017-04-07 17:56:50 +0300682 writel((temp & ~0x1fff) | STS_EINT, &xhci->op_regs->status);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200683 temp = readl(&xhci->ir_set->irq_pending);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200684 writel(ER_IRQ_DISABLE(temp), &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800685 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700686
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300687 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "cleaning up memory");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700688 xhci_mem_cleanup(xhci);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300689 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
690 "xhci_stop completed - status = %x",
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200691 readl(&xhci->op_regs->status));
Roger Quadros85ac90f2015-09-21 17:46:12 +0300692 mutex_unlock(&xhci->mutex);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700693}
694
695/*
696 * Shutdown HC (not bus-specific)
697 *
698 * This is called when the machine is rebooting or halting. We assume that the
699 * machine will be powered off, and the HC's internal state will be reset.
700 * Don't bother to free memory.
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800701 *
702 * This will only ever be called with the main usb_hcd (the USB3 roothub).
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700703 */
Lu Baolu39693842017-04-07 17:57:04 +0300704static void xhci_shutdown(struct usb_hcd *hcd)
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700705{
706 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
707
Dan Carpenter052c7f92012-08-13 19:57:03 +0300708 if (xhci->quirks & XHCI_SPURIOUS_REBOOT)
Arnd Bergmann4c39d4b2017-03-13 10:18:44 +0800709 usb_disable_xhci_ports(to_pci_dev(hcd->self.sysdev));
Sarah Sharpe95829f2012-07-23 18:59:30 +0300710
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700711 spin_lock_irq(&xhci->lock);
712 xhci_halt(xhci);
Takashi Iwai638298d2013-09-12 08:11:06 +0200713 /* Workaround for spurious wakeups at shutdown with HSW */
714 if (xhci->quirks & XHCI_SPURIOUS_WAKEUP)
715 xhci_reset(xhci);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700716 spin_unlock_irq(&xhci->lock);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700717
Zhang Rui40a9fb12010-12-17 13:17:04 -0800718 xhci_cleanup_msix(xhci);
719
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300720 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
721 "xhci_shutdown completed - status = %x",
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200722 readl(&xhci->op_regs->status));
Takashi Iwai638298d2013-09-12 08:11:06 +0200723
724 /* Yet another workaround for spurious wakeups at shutdown with HSW */
725 if (xhci->quirks & XHCI_SPURIOUS_WAKEUP)
Arnd Bergmann4c39d4b2017-03-13 10:18:44 +0800726 pci_set_power_state(to_pci_dev(hcd->self.sysdev), PCI_D3hot);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700727}
728
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -0700729#ifdef CONFIG_PM
Andiry Xu5535b1d52010-10-14 07:23:06 -0700730static void xhci_save_registers(struct xhci_hcd *xhci)
731{
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200732 xhci->s3.command = readl(&xhci->op_regs->command);
733 xhci->s3.dev_nt = readl(&xhci->op_regs->dev_notification);
Sarah Sharpf7b2e402014-01-30 13:27:49 -0800734 xhci->s3.dcbaa_ptr = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200735 xhci->s3.config_reg = readl(&xhci->op_regs->config_reg);
736 xhci->s3.erst_size = readl(&xhci->ir_set->erst_size);
Sarah Sharpf7b2e402014-01-30 13:27:49 -0800737 xhci->s3.erst_base = xhci_read_64(xhci, &xhci->ir_set->erst_base);
738 xhci->s3.erst_dequeue = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200739 xhci->s3.irq_pending = readl(&xhci->ir_set->irq_pending);
740 xhci->s3.irq_control = readl(&xhci->ir_set->irq_control);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700741}
742
743static void xhci_restore_registers(struct xhci_hcd *xhci)
744{
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200745 writel(xhci->s3.command, &xhci->op_regs->command);
746 writel(xhci->s3.dev_nt, &xhci->op_regs->dev_notification);
Sarah Sharp477632d2014-01-29 14:02:00 -0800747 xhci_write_64(xhci, xhci->s3.dcbaa_ptr, &xhci->op_regs->dcbaa_ptr);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200748 writel(xhci->s3.config_reg, &xhci->op_regs->config_reg);
749 writel(xhci->s3.erst_size, &xhci->ir_set->erst_size);
Sarah Sharp477632d2014-01-29 14:02:00 -0800750 xhci_write_64(xhci, xhci->s3.erst_base, &xhci->ir_set->erst_base);
751 xhci_write_64(xhci, xhci->s3.erst_dequeue, &xhci->ir_set->erst_dequeue);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200752 writel(xhci->s3.irq_pending, &xhci->ir_set->irq_pending);
753 writel(xhci->s3.irq_control, &xhci->ir_set->irq_control);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700754}
755
Sarah Sharp89821322010-11-12 11:59:31 -0800756static void xhci_set_cmd_ring_deq(struct xhci_hcd *xhci)
757{
758 u64 val_64;
759
760 /* step 2: initialize command ring buffer */
Sarah Sharpf7b2e402014-01-30 13:27:49 -0800761 val_64 = xhci_read_64(xhci, &xhci->op_regs->cmd_ring);
Sarah Sharp89821322010-11-12 11:59:31 -0800762 val_64 = (val_64 & (u64) CMD_RING_RSVD_BITS) |
763 (xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
764 xhci->cmd_ring->dequeue) &
765 (u64) ~CMD_RING_RSVD_BITS) |
766 xhci->cmd_ring->cycle_state;
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300767 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
768 "// Setting command ring address to 0x%llx",
Sarah Sharp89821322010-11-12 11:59:31 -0800769 (long unsigned long) val_64);
Sarah Sharp477632d2014-01-29 14:02:00 -0800770 xhci_write_64(xhci, val_64, &xhci->op_regs->cmd_ring);
Sarah Sharp89821322010-11-12 11:59:31 -0800771}
772
773/*
774 * The whole command ring must be cleared to zero when we suspend the host.
775 *
776 * The host doesn't save the command ring pointer in the suspend well, so we
777 * need to re-program it on resume. Unfortunately, the pointer must be 64-byte
778 * aligned, because of the reserved bits in the command ring dequeue pointer
779 * register. Therefore, we can't just set the dequeue pointer back in the
780 * middle of the ring (TRBs are 16-byte aligned).
781 */
782static void xhci_clear_command_ring(struct xhci_hcd *xhci)
783{
784 struct xhci_ring *ring;
785 struct xhci_segment *seg;
786
787 ring = xhci->cmd_ring;
788 seg = ring->deq_seg;
789 do {
Andiry Xu158886c2011-11-30 16:37:41 +0800790 memset(seg->trbs, 0,
791 sizeof(union xhci_trb) * (TRBS_PER_SEGMENT - 1));
792 seg->trbs[TRBS_PER_SEGMENT - 1].link.control &=
793 cpu_to_le32(~TRB_CYCLE);
Sarah Sharp89821322010-11-12 11:59:31 -0800794 seg = seg->next;
795 } while (seg != ring->deq_seg);
796
797 /* Reset the software enqueue and dequeue pointers */
798 ring->deq_seg = ring->first_seg;
799 ring->dequeue = ring->first_seg->trbs;
800 ring->enq_seg = ring->deq_seg;
801 ring->enqueue = ring->dequeue;
802
Andiry Xub008df62012-03-05 17:49:34 +0800803 ring->num_trbs_free = ring->num_segs * (TRBS_PER_SEGMENT - 1) - 1;
Sarah Sharp89821322010-11-12 11:59:31 -0800804 /*
805 * Ring is now zeroed, so the HW should look for change of ownership
806 * when the cycle bit is set to 1.
807 */
808 ring->cycle_state = 1;
809
810 /*
811 * Reset the hardware dequeue pointer.
812 * Yes, this will need to be re-written after resume, but we're paranoid
813 * and want to make sure the hardware doesn't access bogus memory
814 * because, say, the BIOS or an SMI started the host without changing
815 * the command ring pointers.
816 */
817 xhci_set_cmd_ring_deq(xhci);
818}
819
Lu Baolua1377e52014-11-18 11:27:14 +0200820static void xhci_disable_port_wake_on_bits(struct xhci_hcd *xhci)
821{
822 int port_index;
823 __le32 __iomem **port_array;
824 unsigned long flags;
825 u32 t1, t2;
826
827 spin_lock_irqsave(&xhci->lock, flags);
828
Masahiro Yamada8a1115f2017-03-09 16:16:31 -0800829 /* disable usb3 ports Wake bits */
Lu Baolua1377e52014-11-18 11:27:14 +0200830 port_index = xhci->num_usb3_ports;
831 port_array = xhci->usb3_ports;
832 while (port_index--) {
833 t1 = readl(port_array[port_index]);
834 t1 = xhci_port_state_to_neutral(t1);
835 t2 = t1 & ~PORT_WAKE_BITS;
836 if (t1 != t2)
837 writel(t2, port_array[port_index]);
838 }
839
Masahiro Yamada8a1115f2017-03-09 16:16:31 -0800840 /* disable usb2 ports Wake bits */
Lu Baolua1377e52014-11-18 11:27:14 +0200841 port_index = xhci->num_usb2_ports;
842 port_array = xhci->usb2_ports;
843 while (port_index--) {
844 t1 = readl(port_array[port_index]);
845 t1 = xhci_port_state_to_neutral(t1);
846 t2 = t1 & ~PORT_WAKE_BITS;
847 if (t1 != t2)
848 writel(t2, port_array[port_index]);
849 }
850
851 spin_unlock_irqrestore(&xhci->lock, flags);
852}
853
Andiry Xu5535b1d52010-10-14 07:23:06 -0700854/*
855 * Stop HC (not bus-specific)
856 *
857 * This is called when the machine transition into S3/S4 mode.
858 *
859 */
Lu Baolua1377e52014-11-18 11:27:14 +0200860int xhci_suspend(struct xhci_hcd *xhci, bool do_wakeup)
Andiry Xu5535b1d52010-10-14 07:23:06 -0700861{
862 int rc = 0;
Oliver Neukum455f5892013-09-30 15:50:54 +0200863 unsigned int delay = XHCI_MAX_HALT_USEC;
Andiry Xu5535b1d52010-10-14 07:23:06 -0700864 struct usb_hcd *hcd = xhci_to_hcd(xhci);
865 u32 command;
866
Roger Quadros9fa733f2015-05-29 17:01:50 +0300867 if (!hcd->state)
868 return 0;
869
Felipe Balbi77b84762012-10-19 10:55:16 +0300870 if (hcd->state != HC_STATE_SUSPENDED ||
871 xhci->shared_hcd->state != HC_STATE_SUSPENDED)
872 return -EINVAL;
873
Lu Baolua1377e52014-11-18 11:27:14 +0200874 /* Clear root port wake on bits if wakeup not allowed. */
875 if (!do_wakeup)
876 xhci_disable_port_wake_on_bits(xhci);
877
Sarah Sharpc52804a2012-11-27 12:30:23 -0800878 /* Don't poll the roothubs on bus suspend. */
879 xhci_dbg(xhci, "%s: stopping port polling.\n", __func__);
880 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
881 del_timer_sync(&hcd->rh_timer);
Al Cooper14e61a12014-08-20 16:41:57 +0300882 clear_bit(HCD_FLAG_POLL_RH, &xhci->shared_hcd->flags);
883 del_timer_sync(&xhci->shared_hcd->rh_timer);
Sarah Sharpc52804a2012-11-27 12:30:23 -0800884
Andiry Xu5535b1d52010-10-14 07:23:06 -0700885 spin_lock_irq(&xhci->lock);
886 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Sarah Sharpb32093792011-03-07 11:24:07 -0800887 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700888 /* step 1: stop endpoint */
889 /* skipped assuming that port suspend has done */
890
891 /* step 2: clear Run/Stop bit */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200892 command = readl(&xhci->op_regs->command);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700893 command &= ~CMD_RUN;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200894 writel(command, &xhci->op_regs->command);
Oliver Neukum455f5892013-09-30 15:50:54 +0200895
896 /* Some chips from Fresco Logic need an extraordinary delay */
897 delay *= (xhci->quirks & XHCI_SLOW_SUSPEND) ? 10 : 1;
898
Lin Wangdc0b1772015-01-09 16:06:28 +0200899 if (xhci_handshake(&xhci->op_regs->status,
Oliver Neukum455f5892013-09-30 15:50:54 +0200900 STS_HALT, STS_HALT, delay)) {
Andiry Xu5535b1d52010-10-14 07:23:06 -0700901 xhci_warn(xhci, "WARN: xHC CMD_RUN timeout\n");
902 spin_unlock_irq(&xhci->lock);
903 return -ETIMEDOUT;
904 }
Sarah Sharp89821322010-11-12 11:59:31 -0800905 xhci_clear_command_ring(xhci);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700906
907 /* step 3: save registers */
908 xhci_save_registers(xhci);
909
910 /* step 4: set CSS flag */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200911 command = readl(&xhci->op_regs->command);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700912 command |= CMD_CSS;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200913 writel(command, &xhci->op_regs->command);
Lin Wangdc0b1772015-01-09 16:06:28 +0200914 if (xhci_handshake(&xhci->op_regs->status,
Sarah Sharp2611bd182012-10-25 13:27:51 -0700915 STS_SAVE, 0, 10 * 1000)) {
Andiry Xu622eb782012-06-13 10:51:57 +0800916 xhci_warn(xhci, "WARN: xHC save state timeout\n");
Andiry Xu5535b1d52010-10-14 07:23:06 -0700917 spin_unlock_irq(&xhci->lock);
918 return -ETIMEDOUT;
919 }
Andiry Xu5535b1d52010-10-14 07:23:06 -0700920 spin_unlock_irq(&xhci->lock);
921
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500922 /*
923 * Deleting Compliance Mode Recovery Timer because the xHCI Host
924 * is about to be suspended.
925 */
926 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
927 (!(xhci_all_ports_seen_u0(xhci)))) {
928 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300929 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
930 "%s: compliance mode recovery timer deleted",
Tony Camuso58b1d792013-04-05 14:27:07 -0400931 __func__);
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500932 }
933
Andiry Xu00292272010-12-27 17:39:02 +0800934 /* step 5: remove core well power */
935 /* synchronize irq when using MSI-X */
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700936 xhci_msix_sync_irqs(xhci);
Andiry Xu00292272010-12-27 17:39:02 +0800937
Andiry Xu5535b1d52010-10-14 07:23:06 -0700938 return rc;
939}
Andrew Bresticker436e8c72014-10-03 11:35:28 +0300940EXPORT_SYMBOL_GPL(xhci_suspend);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700941
942/*
943 * start xHC (not bus-specific)
944 *
945 * This is called when the machine transition from S3/S4 mode.
946 *
947 */
948int xhci_resume(struct xhci_hcd *xhci, bool hibernated)
949{
Wang, Yud6236f62014-06-24 17:14:44 +0300950 u32 command, temp = 0, status;
Andiry Xu5535b1d52010-10-14 07:23:06 -0700951 struct usb_hcd *hcd = xhci_to_hcd(xhci);
Sarah Sharp65b22f92010-12-17 12:35:05 -0800952 struct usb_hcd *secondary_hcd;
Alan Sternf69e31202011-11-03 11:37:10 -0400953 int retval = 0;
Tony Camuso77df9e02013-02-21 16:11:27 -0500954 bool comp_timer_running = false;
Andiry Xu5535b1d52010-10-14 07:23:06 -0700955
Roger Quadros9fa733f2015-05-29 17:01:50 +0300956 if (!hcd->state)
957 return 0;
958
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800959 /* Wait a bit if either of the roothubs need to settle from the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300960 * transition into bus suspend.
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800961 */
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800962 if (time_before(jiffies, xhci->bus_state[0].next_statechange) ||
963 time_before(jiffies,
964 xhci->bus_state[1].next_statechange))
Andiry Xu5535b1d52010-10-14 07:23:06 -0700965 msleep(100);
966
Alan Sternf69e31202011-11-03 11:37:10 -0400967 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
968 set_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
969
Andiry Xu5535b1d52010-10-14 07:23:06 -0700970 spin_lock_irq(&xhci->lock);
Maarten Lankhorstc877b3b2011-06-15 23:47:21 +0200971 if (xhci->quirks & XHCI_RESET_ON_RESUME)
972 hibernated = true;
Andiry Xu5535b1d52010-10-14 07:23:06 -0700973
974 if (!hibernated) {
975 /* step 1: restore register */
976 xhci_restore_registers(xhci);
977 /* step 2: initialize command ring buffer */
Sarah Sharp89821322010-11-12 11:59:31 -0800978 xhci_set_cmd_ring_deq(xhci);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700979 /* step 3: restore state and start state*/
980 /* step 3: set CRS flag */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200981 command = readl(&xhci->op_regs->command);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700982 command |= CMD_CRS;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200983 writel(command, &xhci->op_regs->command);
Lin Wangdc0b1772015-01-09 16:06:28 +0200984 if (xhci_handshake(&xhci->op_regs->status,
Andiry Xu622eb782012-06-13 10:51:57 +0800985 STS_RESTORE, 0, 10 * 1000)) {
986 xhci_warn(xhci, "WARN: xHC restore state timeout\n");
Andiry Xu5535b1d52010-10-14 07:23:06 -0700987 spin_unlock_irq(&xhci->lock);
988 return -ETIMEDOUT;
989 }
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200990 temp = readl(&xhci->op_regs->status);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700991 }
992
993 /* If restore operation fails, re-initialize the HC during resume */
994 if ((temp & STS_SRE) || hibernated) {
Tony Camuso77df9e02013-02-21 16:11:27 -0500995
996 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
997 !(xhci_all_ports_seen_u0(xhci))) {
998 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300999 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1000 "Compliance Mode Recovery Timer deleted!");
Tony Camuso77df9e02013-02-21 16:11:27 -05001001 }
1002
Sarah Sharpfedd3832011-04-12 17:43:19 -07001003 /* Let the USB core know _both_ roothubs lost power. */
1004 usb_root_hub_lost_power(xhci->main_hcd->self.root_hub);
1005 usb_root_hub_lost_power(xhci->shared_hcd->self.root_hub);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001006
1007 xhci_dbg(xhci, "Stop HCD\n");
1008 xhci_halt(xhci);
1009 xhci_reset(xhci);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001010 spin_unlock_irq(&xhci->lock);
Andiry Xu00292272010-12-27 17:39:02 +08001011 xhci_cleanup_msix(xhci);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001012
Andiry Xu5535b1d52010-10-14 07:23:06 -07001013 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001014 temp = readl(&xhci->op_regs->status);
Lu Baolud1001ab2017-04-07 17:56:50 +03001015 writel((temp & ~0x1fff) | STS_EINT, &xhci->op_regs->status);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001016 temp = readl(&xhci->ir_set->irq_pending);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02001017 writel(ER_IRQ_DISABLE(temp), &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -08001018 xhci_print_ir_set(xhci, 0);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001019
1020 xhci_dbg(xhci, "cleaning up memory\n");
1021 xhci_mem_cleanup(xhci);
1022 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001023 readl(&xhci->op_regs->status));
Andiry Xu5535b1d52010-10-14 07:23:06 -07001024
Sarah Sharp65b22f92010-12-17 12:35:05 -08001025 /* USB core calls the PCI reinit and start functions twice:
1026 * first with the primary HCD, and then with the secondary HCD.
1027 * If we don't do the same, the host will never be started.
1028 */
1029 if (!usb_hcd_is_primary_hcd(hcd))
1030 secondary_hcd = hcd;
1031 else
1032 secondary_hcd = xhci->shared_hcd;
1033
1034 xhci_dbg(xhci, "Initialize the xhci_hcd\n");
1035 retval = xhci_init(hcd->primary_hcd);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001036 if (retval)
1037 return retval;
Tony Camuso77df9e02013-02-21 16:11:27 -05001038 comp_timer_running = true;
1039
Sarah Sharp65b22f92010-12-17 12:35:05 -08001040 xhci_dbg(xhci, "Start the primary HCD\n");
1041 retval = xhci_run(hcd->primary_hcd);
Sarah Sharpb32093792011-03-07 11:24:07 -08001042 if (!retval) {
Alan Sternf69e31202011-11-03 11:37:10 -04001043 xhci_dbg(xhci, "Start the secondary HCD\n");
1044 retval = xhci_run(secondary_hcd);
Sarah Sharpb32093792011-03-07 11:24:07 -08001045 }
Andiry Xu5535b1d52010-10-14 07:23:06 -07001046 hcd->state = HC_STATE_SUSPENDED;
Sarah Sharpb32093792011-03-07 11:24:07 -08001047 xhci->shared_hcd->state = HC_STATE_SUSPENDED;
Alan Sternf69e31202011-11-03 11:37:10 -04001048 goto done;
Andiry Xu5535b1d52010-10-14 07:23:06 -07001049 }
1050
Andiry Xu5535b1d52010-10-14 07:23:06 -07001051 /* step 4: set Run/Stop bit */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001052 command = readl(&xhci->op_regs->command);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001053 command |= CMD_RUN;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02001054 writel(command, &xhci->op_regs->command);
Lin Wangdc0b1772015-01-09 16:06:28 +02001055 xhci_handshake(&xhci->op_regs->status, STS_HALT,
Andiry Xu5535b1d52010-10-14 07:23:06 -07001056 0, 250 * 1000);
1057
1058 /* step 5: walk topology and initialize portsc,
1059 * portpmsc and portli
1060 */
1061 /* this is done in bus_resume */
1062
1063 /* step 6: restart each of the previously
1064 * Running endpoints by ringing their doorbells
1065 */
1066
Andiry Xu5535b1d52010-10-14 07:23:06 -07001067 spin_unlock_irq(&xhci->lock);
Alan Sternf69e31202011-11-03 11:37:10 -04001068
1069 done:
1070 if (retval == 0) {
Wang, Yud6236f62014-06-24 17:14:44 +03001071 /* Resume root hubs only when have pending events. */
1072 status = readl(&xhci->op_regs->status);
1073 if (status & STS_EINT) {
Wang, Yud6236f62014-06-24 17:14:44 +03001074 usb_hcd_resume_root_hub(xhci->shared_hcd);
Mathias Nyman671ffdf2016-04-08 16:25:06 +03001075 usb_hcd_resume_root_hub(hcd);
Wang, Yud6236f62014-06-24 17:14:44 +03001076 }
Alan Sternf69e31202011-11-03 11:37:10 -04001077 }
Alexis R. Cortes71c731a2012-08-03 14:00:27 -05001078
1079 /*
1080 * If system is subject to the Quirk, Compliance Mode Timer needs to
1081 * be re-initialized Always after a system resume. Ports are subject
1082 * to suffer the Compliance Mode issue again. It doesn't matter if
1083 * ports have entered previously to U0 before system's suspension.
1084 */
Tony Camuso77df9e02013-02-21 16:11:27 -05001085 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) && !comp_timer_running)
Alexis R. Cortes71c731a2012-08-03 14:00:27 -05001086 compliance_mode_recovery_timer_init(xhci);
1087
Sarah Sharpc52804a2012-11-27 12:30:23 -08001088 /* Re-enable port polling. */
1089 xhci_dbg(xhci, "%s: starting port polling.\n", __func__);
Al Cooper14e61a12014-08-20 16:41:57 +03001090 set_bit(HCD_FLAG_POLL_RH, &xhci->shared_hcd->flags);
1091 usb_hcd_poll_rh_status(xhci->shared_hcd);
Mathias Nyman671ffdf2016-04-08 16:25:06 +03001092 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
1093 usb_hcd_poll_rh_status(hcd);
Sarah Sharpc52804a2012-11-27 12:30:23 -08001094
Alan Sternf69e31202011-11-03 11:37:10 -04001095 return retval;
Andiry Xu5535b1d52010-10-14 07:23:06 -07001096}
Andrew Bresticker436e8c72014-10-03 11:35:28 +03001097EXPORT_SYMBOL_GPL(xhci_resume);
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -07001098#endif /* CONFIG_PM */
1099
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001100/*-------------------------------------------------------------------------*/
1101
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001102/**
1103 * xhci_get_endpoint_index - Used for passing endpoint bitmasks between the core and
1104 * HCDs. Find the index for an endpoint given its descriptor. Use the return
1105 * value to right shift 1 for the bitmask.
1106 *
1107 * Index = (epnum * 2) + direction - 1,
1108 * where direction = 0 for OUT, 1 for IN.
1109 * For control endpoints, the IN index is used (OUT index is unused), so
1110 * index = (epnum * 2) + direction - 1 = (epnum * 2) + 1 - 1 = (epnum * 2)
1111 */
1112unsigned int xhci_get_endpoint_index(struct usb_endpoint_descriptor *desc)
1113{
1114 unsigned int index;
1115 if (usb_endpoint_xfer_control(desc))
1116 index = (unsigned int) (usb_endpoint_num(desc)*2);
1117 else
1118 index = (unsigned int) (usb_endpoint_num(desc)*2) +
1119 (usb_endpoint_dir_in(desc) ? 1 : 0) - 1;
1120 return index;
1121}
1122
Julius Werner01c5f442013-04-15 15:55:04 -07001123/* The reverse operation to xhci_get_endpoint_index. Calculate the USB endpoint
1124 * address from the XHCI endpoint index.
1125 */
1126unsigned int xhci_get_endpoint_address(unsigned int ep_index)
1127{
1128 unsigned int number = DIV_ROUND_UP(ep_index, 2);
1129 unsigned int direction = ep_index % 2 ? USB_DIR_OUT : USB_DIR_IN;
1130 return direction | number;
1131}
1132
Sarah Sharpf94e01862009-04-27 19:58:38 -07001133/* Find the flag for this endpoint (for use in the control context). Use the
1134 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
1135 * bit 1, etc.
1136 */
Lu Baolu39693842017-04-07 17:57:04 +03001137static unsigned int xhci_get_endpoint_flag(struct usb_endpoint_descriptor *desc)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001138{
1139 return 1 << (xhci_get_endpoint_index(desc) + 1);
1140}
1141
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001142/* Find the flag for this endpoint (for use in the control context). Use the
1143 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
1144 * bit 1, etc.
1145 */
Lu Baolu39693842017-04-07 17:57:04 +03001146static unsigned int xhci_get_endpoint_flag_from_index(unsigned int ep_index)
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001147{
1148 return 1 << (ep_index + 1);
1149}
1150
Sarah Sharpf94e01862009-04-27 19:58:38 -07001151/* Compute the last valid endpoint context index. Basically, this is the
1152 * endpoint index plus one. For slot contexts with more than valid endpoint,
1153 * we find the most significant bit set in the added contexts flags.
1154 * e.g. ep 1 IN (with epnum 0x81) => added_ctxs = 0b1000
1155 * fls(0b1000) = 4, but the endpoint context index is 3, so subtract one.
1156 */
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001157unsigned int xhci_last_valid_endpoint(u32 added_ctxs)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001158{
1159 return fls(added_ctxs) - 1;
1160}
1161
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001162/* Returns 1 if the arguments are OK;
1163 * returns 0 this is a root hub; returns -EINVAL for NULL pointers.
1164 */
Dmitry Torokhov8212a492011-02-08 13:55:59 -08001165static int xhci_check_args(struct usb_hcd *hcd, struct usb_device *udev,
Andiry Xu64927732010-10-14 07:22:45 -07001166 struct usb_host_endpoint *ep, int check_ep, bool check_virt_dev,
1167 const char *func) {
1168 struct xhci_hcd *xhci;
1169 struct xhci_virt_device *virt_dev;
1170
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001171 if (!hcd || (check_ep && !ep) || !udev) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001172 pr_debug("xHCI %s called with invalid args\n", func);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001173 return -EINVAL;
1174 }
1175 if (!udev->parent) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001176 pr_debug("xHCI %s called for root hub\n", func);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001177 return 0;
1178 }
Andiry Xu64927732010-10-14 07:22:45 -07001179
Sarah Sharp7bd89b42011-07-01 13:35:40 -07001180 xhci = hcd_to_xhci(hcd);
Andiry Xu64927732010-10-14 07:22:45 -07001181 if (check_virt_dev) {
sifram.rajas@gmail.com73ddc242011-09-02 11:06:00 -07001182 if (!udev->slot_id || !xhci->devs[udev->slot_id]) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001183 xhci_dbg(xhci, "xHCI %s called with unaddressed device\n",
1184 func);
Andiry Xu64927732010-10-14 07:22:45 -07001185 return -EINVAL;
1186 }
1187
1188 virt_dev = xhci->devs[udev->slot_id];
1189 if (virt_dev->udev != udev) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001190 xhci_dbg(xhci, "xHCI %s called with udev and "
Andiry Xu64927732010-10-14 07:22:45 -07001191 "virt_dev does not match\n", func);
1192 return -EINVAL;
1193 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001194 }
Andiry Xu64927732010-10-14 07:22:45 -07001195
Sarah Sharp203a8662013-07-24 10:27:13 -07001196 if (xhci->xhc_state & XHCI_STATE_HALTED)
1197 return -ENODEV;
1198
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001199 return 1;
1200}
1201
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001202static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001203 struct usb_device *udev, struct xhci_command *command,
1204 bool ctx_change, bool must_succeed);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001205
1206/*
1207 * Full speed devices may have a max packet size greater than 8 bytes, but the
1208 * USB core doesn't know that until it reads the first 8 bytes of the
1209 * descriptor. If the usb_device's max packet size changes after that point,
1210 * we need to issue an evaluate context command and wait on it.
1211 */
1212static int xhci_check_maxpacket(struct xhci_hcd *xhci, unsigned int slot_id,
1213 unsigned int ep_index, struct urb *urb)
1214{
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001215 struct xhci_container_ctx *out_ctx;
1216 struct xhci_input_control_ctx *ctrl_ctx;
1217 struct xhci_ep_ctx *ep_ctx;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001218 struct xhci_command *command;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001219 int max_packet_size;
1220 int hw_max_packet_size;
1221 int ret = 0;
1222
1223 out_ctx = xhci->devs[slot_id]->out_ctx;
1224 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Matt Evans28ccd292011-03-29 13:40:46 +11001225 hw_max_packet_size = MAX_PACKET_DECODED(le32_to_cpu(ep_ctx->ep_info2));
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001226 max_packet_size = usb_endpoint_maxp(&urb->dev->ep0.desc);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001227 if (hw_max_packet_size != max_packet_size) {
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001228 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1229 "Max Packet Size for ep 0 changed.");
1230 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1231 "Max packet size in usb_device = %d",
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001232 max_packet_size);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001233 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1234 "Max packet size in xHCI HW = %d",
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001235 hw_max_packet_size);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001236 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1237 "Issuing evaluate context command.");
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001238
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001239 /* Set up the input context flags for the command */
1240 /* FIXME: This won't work if a non-default control endpoint
1241 * changes max packet sizes.
1242 */
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001243
1244 command = xhci_alloc_command(xhci, false, true, GFP_KERNEL);
1245 if (!command)
1246 return -ENOMEM;
1247
1248 command->in_ctx = xhci->devs[slot_id]->in_ctx;
Lin Wang4daf9df2015-01-09 16:06:31 +02001249 ctrl_ctx = xhci_get_input_control_ctx(command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001250 if (!ctrl_ctx) {
1251 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1252 __func__);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001253 ret = -ENOMEM;
1254 goto command_cleanup;
Sarah Sharp92f8e762013-04-23 17:11:14 -07001255 }
1256 /* Set up the modified control endpoint 0 */
1257 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
1258 xhci->devs[slot_id]->out_ctx, ep_index);
1259
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001260 ep_ctx = xhci_get_ep_ctx(xhci, command->in_ctx, ep_index);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001261 ep_ctx->ep_info2 &= cpu_to_le32(~MAX_PACKET_MASK);
1262 ep_ctx->ep_info2 |= cpu_to_le32(MAX_PACKET(max_packet_size));
1263
Matt Evans28ccd292011-03-29 13:40:46 +11001264 ctrl_ctx->add_flags = cpu_to_le32(EP0_FLAG);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001265 ctrl_ctx->drop_flags = 0;
1266
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001267 ret = xhci_configure_endpoint(xhci, urb->dev, command,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001268 true, false);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001269
1270 /* Clean up the input context for later use by bandwidth
1271 * functions.
1272 */
Matt Evans28ccd292011-03-29 13:40:46 +11001273 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001274command_cleanup:
1275 kfree(command->completion);
1276 kfree(command);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001277 }
1278 return ret;
1279}
1280
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001281/*
1282 * non-error returns are a promise to giveback() the urb later
1283 * we drop ownership so next owner (or urb unlink) can get it
1284 */
Lu Baolu39693842017-04-07 17:57:04 +03001285static int xhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, gfp_t mem_flags)
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001286{
1287 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
1288 unsigned long flags;
1289 int ret = 0;
Mathias Nyman69694082017-01-23 14:20:27 +02001290 unsigned int slot_id, ep_index, ep_state;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001291 struct urb_priv *urb_priv;
Mathias Nyman7e64b032017-01-23 14:20:26 +02001292 int num_tds;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001293
Andiry Xu64927732010-10-14 07:22:45 -07001294 if (!urb || xhci_check_args(hcd, urb->dev, urb->ep,
1295 true, true, __func__) <= 0)
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001296 return -EINVAL;
1297
1298 slot_id = urb->dev->slot_id;
1299 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001300
Alan Stern541c7d42010-06-22 16:39:10 -04001301 if (!HCD_HW_ACCESSIBLE(hcd)) {
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001302 if (!in_interrupt())
1303 xhci_dbg(xhci, "urb submitted during PCI suspend\n");
Mathias Nyman69694082017-01-23 14:20:27 +02001304 return -ESHUTDOWN;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001305 }
Andiry Xu8e51adc2010-07-22 15:23:31 -07001306
1307 if (usb_endpoint_xfer_isoc(&urb->ep->desc))
Mathias Nymane6f7caa2017-01-23 14:20:24 +02001308 num_tds = urb->number_of_packets;
Reyad Attiyat4758dcd2015-08-06 19:23:58 +03001309 else if (usb_endpoint_is_bulk_out(&urb->ep->desc) &&
1310 urb->transfer_buffer_length > 0 &&
1311 urb->transfer_flags & URB_ZERO_PACKET &&
1312 !(urb->transfer_buffer_length % usb_endpoint_maxp(&urb->ep->desc)))
Mathias Nymane6f7caa2017-01-23 14:20:24 +02001313 num_tds = 2;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001314 else
Mathias Nymane6f7caa2017-01-23 14:20:24 +02001315 num_tds = 1;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001316
1317 urb_priv = kzalloc(sizeof(struct urb_priv) +
Mathias Nyman7e64b032017-01-23 14:20:26 +02001318 num_tds * sizeof(struct xhci_td), mem_flags);
Andiry Xu8e51adc2010-07-22 15:23:31 -07001319 if (!urb_priv)
1320 return -ENOMEM;
1321
Mathias Nyman9ef7fbb2017-01-23 14:20:25 +02001322 urb_priv->num_tds = num_tds;
1323 urb_priv->num_tds_done = 0;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001324 urb->hcpriv = urb_priv;
1325
Felipe Balbi5abdc2e2017-01-23 14:20:20 +02001326 trace_xhci_urb_enqueue(urb);
1327
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001328 if (usb_endpoint_xfer_control(&urb->ep->desc)) {
1329 /* Check to see if the max packet size for the default control
1330 * endpoint changed during FS device enumeration
1331 */
1332 if (urb->dev->speed == USB_SPEED_FULL) {
1333 ret = xhci_check_maxpacket(xhci, slot_id,
1334 ep_index, urb);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001335 if (ret < 0) {
Lin Wang4daf9df2015-01-09 16:06:31 +02001336 xhci_urb_free_priv(urb_priv);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001337 urb->hcpriv = NULL;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001338 return ret;
Sarah Sharpd13565c2011-07-22 14:34:34 -07001339 }
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001340 }
Mathias Nyman69694082017-01-23 14:20:27 +02001341 }
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001342
Mathias Nyman69694082017-01-23 14:20:27 +02001343 spin_lock_irqsave(&xhci->lock, flags);
1344
1345 if (xhci->xhc_state & XHCI_STATE_DYING) {
1346 xhci_dbg(xhci, "Ep 0x%x: URB %p submitted for non-responsive xHCI host.\n",
1347 urb->ep->desc.bEndpointAddress, urb);
1348 ret = -ESHUTDOWN;
1349 goto free_priv;
1350 }
1351
1352 switch (usb_endpoint_type(&urb->ep->desc)) {
1353
1354 case USB_ENDPOINT_XFER_CONTROL:
Sarah Sharpb11069f2009-07-27 12:03:23 -07001355 ret = xhci_queue_ctrl_tx(xhci, GFP_ATOMIC, urb,
Mathias Nyman69694082017-01-23 14:20:27 +02001356 slot_id, ep_index);
1357 break;
1358 case USB_ENDPOINT_XFER_BULK:
1359 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
1360 if (ep_state & (EP_GETTING_STREAMS | EP_GETTING_NO_STREAMS)) {
1361 xhci_warn(xhci, "WARN: Can't enqueue URB, ep in streams transition state %x\n",
1362 ep_state);
Sarah Sharp8df75f42010-04-02 15:34:16 -07001363 ret = -EINVAL;
Mathias Nyman69694082017-01-23 14:20:27 +02001364 break;
Sarah Sharp8df75f42010-04-02 15:34:16 -07001365 }
Mathias Nyman69694082017-01-23 14:20:27 +02001366 ret = xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb,
1367 slot_id, ep_index);
1368 break;
1369
1370
1371 case USB_ENDPOINT_XFER_INT:
Sarah Sharp624defa2009-09-02 12:14:28 -07001372 ret = xhci_queue_intr_tx(xhci, GFP_ATOMIC, urb,
1373 slot_id, ep_index);
Mathias Nyman69694082017-01-23 14:20:27 +02001374 break;
1375
1376 case USB_ENDPOINT_XFER_ISOC:
Andiry Xu787f4e52010-07-22 15:23:52 -07001377 ret = xhci_queue_isoc_tx_prepare(xhci, GFP_ATOMIC, urb,
1378 slot_id, ep_index);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001379 }
Mathias Nyman69694082017-01-23 14:20:27 +02001380
1381 if (ret) {
Sarah Sharpd13565c2011-07-22 14:34:34 -07001382free_priv:
Mathias Nyman69694082017-01-23 14:20:27 +02001383 xhci_urb_free_priv(urb_priv);
1384 urb->hcpriv = NULL;
1385 }
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001386 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001387 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001388}
1389
Sarah Sharpae636742009-04-29 19:02:31 -07001390/*
1391 * Remove the URB's TD from the endpoint ring. This may cause the HC to stop
1392 * USB transfers, potentially stopping in the middle of a TRB buffer. The HC
1393 * should pick up where it left off in the TD, unless a Set Transfer Ring
1394 * Dequeue Pointer is issued.
1395 *
1396 * The TRBs that make up the buffers for the canceled URB will be "removed" from
1397 * the ring. Since the ring is a contiguous structure, they can't be physically
1398 * removed. Instead, there are two options:
1399 *
1400 * 1) If the HC is in the middle of processing the URB to be canceled, we
1401 * simply move the ring's dequeue pointer past those TRBs using the Set
1402 * Transfer Ring Dequeue Pointer command. This will be the common case,
1403 * when drivers timeout on the last submitted URB and attempt to cancel.
1404 *
1405 * 2) If the HC is in the middle of a different TD, we turn the TRBs into a
1406 * series of 1-TRB transfer no-op TDs. (No-ops shouldn't be chained.) The
1407 * HC will need to invalidate the any TRBs it has cached after the stop
1408 * endpoint command, as noted in the xHCI 0.95 errata.
1409 *
1410 * 3) The TD may have completed by the time the Stop Endpoint Command
1411 * completes, so software needs to handle that case too.
1412 *
1413 * This function should protect against the TD enqueueing code ringing the
1414 * doorbell while this code is waiting for a Stop Endpoint command to complete.
1415 * It also needs to account for multiple cancellations on happening at the same
1416 * time for the same endpoint.
1417 *
1418 * Note that this function can be called in any context, or so says
1419 * usb_hcd_unlink_urb()
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001420 */
Lu Baolu39693842017-04-07 17:57:04 +03001421static int xhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001422{
Sarah Sharpae636742009-04-29 19:02:31 -07001423 unsigned long flags;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001424 int ret, i;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001425 u32 temp;
Sarah Sharpae636742009-04-29 19:02:31 -07001426 struct xhci_hcd *xhci;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001427 struct urb_priv *urb_priv;
Sarah Sharpae636742009-04-29 19:02:31 -07001428 struct xhci_td *td;
1429 unsigned int ep_index;
1430 struct xhci_ring *ep_ring;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001431 struct xhci_virt_ep *ep;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001432 struct xhci_command *command;
Mathias Nymand3519b92017-03-28 15:55:30 +03001433 struct xhci_virt_device *vdev;
Sarah Sharpae636742009-04-29 19:02:31 -07001434
1435 xhci = hcd_to_xhci(hcd);
1436 spin_lock_irqsave(&xhci->lock, flags);
Felipe Balbi5abdc2e2017-01-23 14:20:20 +02001437
1438 trace_xhci_urb_dequeue(urb);
1439
Sarah Sharpae636742009-04-29 19:02:31 -07001440 /* Make sure the URB hasn't completed or been unlinked already */
1441 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
Mathias Nymand3519b92017-03-28 15:55:30 +03001442 if (ret)
Sarah Sharpae636742009-04-29 19:02:31 -07001443 goto done;
Mathias Nymand3519b92017-03-28 15:55:30 +03001444
1445 /* give back URB now if we can't queue it for cancel */
1446 vdev = xhci->devs[urb->dev->slot_id];
1447 urb_priv = urb->hcpriv;
1448 if (!vdev || !urb_priv)
1449 goto err_giveback;
1450
1451 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
1452 ep = &vdev->eps[ep_index];
1453 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
1454 if (!ep || !ep_ring)
1455 goto err_giveback;
1456
Mathias Nymand9f11ba2017-04-07 17:57:01 +03001457 /* If xHC is dead take it down and return ALL URBs in xhci_hc_died() */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001458 temp = readl(&xhci->op_regs->status);
Mathias Nymand9f11ba2017-04-07 17:57:01 +03001459 if (temp == ~(u32)0 || xhci->xhc_state & XHCI_STATE_DYING) {
1460 xhci_hc_died(xhci);
1461 goto done;
1462 }
1463
1464 if (xhci->xhc_state & XHCI_STATE_HALTED) {
Xenia Ragiadakouaa50b292013-08-14 06:33:54 +03001465 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
Mathias Nymand9f11ba2017-04-07 17:57:01 +03001466 "HC halted, freeing TD manually.");
Mathias Nyman9ef7fbb2017-01-23 14:20:25 +02001467 for (i = urb_priv->num_tds_done;
Mathias Nymand3519b92017-03-28 15:55:30 +03001468 i < urb_priv->num_tds;
Mathias Nyman5c821712016-01-26 17:50:12 +02001469 i++) {
Mathias Nyman7e64b032017-01-23 14:20:26 +02001470 td = &urb_priv->td[i];
Sarah Sharp585df1d2011-08-02 15:43:40 -07001471 if (!list_empty(&td->td_list))
1472 list_del_init(&td->td_list);
1473 if (!list_empty(&td->cancelled_td_list))
1474 list_del_init(&td->cancelled_td_list);
1475 }
Mathias Nymand3519b92017-03-28 15:55:30 +03001476 goto err_giveback;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001477 }
Sarah Sharpae636742009-04-29 19:02:31 -07001478
Mathias Nyman9ef7fbb2017-01-23 14:20:25 +02001479 i = urb_priv->num_tds_done;
1480 if (i < urb_priv->num_tds)
Xenia Ragiadakouaa50b292013-08-14 06:33:54 +03001481 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
1482 "Cancel URB %p, dev %s, ep 0x%x, "
1483 "starting at offset 0x%llx",
Sarah Sharp79688ac2011-12-19 16:56:04 -08001484 urb, urb->dev->devpath,
1485 urb->ep->desc.bEndpointAddress,
1486 (unsigned long long) xhci_trb_virt_to_dma(
Mathias Nyman7e64b032017-01-23 14:20:26 +02001487 urb_priv->td[i].start_seg,
1488 urb_priv->td[i].first_trb));
Andiry Xu8e51adc2010-07-22 15:23:31 -07001489
Mathias Nyman9ef7fbb2017-01-23 14:20:25 +02001490 for (; i < urb_priv->num_tds; i++) {
Mathias Nyman7e64b032017-01-23 14:20:26 +02001491 td = &urb_priv->td[i];
Andiry Xu8e51adc2010-07-22 15:23:31 -07001492 list_add_tail(&td->cancelled_td_list, &ep->cancelled_td_list);
1493 }
1494
Sarah Sharpae636742009-04-29 19:02:31 -07001495 /* Queue a stop endpoint command, but only if this is
1496 * the first cancellation to be handled.
1497 */
Mathias Nyman9983a5f2017-01-23 14:19:52 +02001498 if (!(ep->ep_state & EP_STOP_CMD_PENDING)) {
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001499 command = xhci_alloc_command(xhci, false, false, GFP_ATOMIC);
Hans de Goedea0ee6192014-07-25 22:01:21 +02001500 if (!command) {
1501 ret = -ENOMEM;
1502 goto done;
1503 }
Mathias Nyman9983a5f2017-01-23 14:19:52 +02001504 ep->ep_state |= EP_STOP_CMD_PENDING;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001505 ep->stop_cmd_timer.expires = jiffies +
1506 XHCI_STOP_EP_CMD_TIMEOUT * HZ;
1507 add_timer(&ep->stop_cmd_timer);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001508 xhci_queue_stop_endpoint(xhci, command, urb->dev->slot_id,
1509 ep_index, 0);
Sarah Sharp23e3be12009-04-29 19:05:20 -07001510 xhci_ring_cmd_db(xhci);
Sarah Sharpae636742009-04-29 19:02:31 -07001511 }
1512done:
1513 spin_unlock_irqrestore(&xhci->lock, flags);
1514 return ret;
Mathias Nymand3519b92017-03-28 15:55:30 +03001515
1516err_giveback:
1517 if (urb_priv)
1518 xhci_urb_free_priv(urb_priv);
1519 usb_hcd_unlink_urb_from_ep(hcd, urb);
1520 spin_unlock_irqrestore(&xhci->lock, flags);
1521 usb_hcd_giveback_urb(hcd, urb, -ESHUTDOWN);
1522 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001523}
1524
Sarah Sharpf94e01862009-04-27 19:58:38 -07001525/* Drop an endpoint from a new bandwidth configuration for this device.
1526 * Only one call to this function is allowed per endpoint before
1527 * check_bandwidth() or reset_bandwidth() must be called.
1528 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1529 * add the endpoint to the schedule with possibly new parameters denoted by a
1530 * different endpoint descriptor in usb_host_endpoint.
1531 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1532 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001533 *
1534 * The USB core will not allow URBs to be queued to an endpoint that is being
1535 * disabled, so there's no need for mutual exclusion to protect
1536 * the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001537 */
Lu Baolu39693842017-04-07 17:57:04 +03001538static int xhci_drop_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
Sarah Sharpf94e01862009-04-27 19:58:38 -07001539 struct usb_host_endpoint *ep)
1540{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001541 struct xhci_hcd *xhci;
John Yound115b042009-07-27 12:05:15 -07001542 struct xhci_container_ctx *in_ctx, *out_ctx;
1543 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001544 unsigned int ep_index;
1545 struct xhci_ep_ctx *ep_ctx;
1546 u32 drop_flag;
Julius Wernerd6759132014-06-24 17:14:42 +03001547 u32 new_add_flags, new_drop_flags;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001548 int ret;
1549
Andiry Xu64927732010-10-14 07:22:45 -07001550 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001551 if (ret <= 0)
1552 return ret;
1553 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001554 if (xhci->xhc_state & XHCI_STATE_DYING)
1555 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001556
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001557 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001558 drop_flag = xhci_get_endpoint_flag(&ep->desc);
1559 if (drop_flag == SLOT_FLAG || drop_flag == EP0_FLAG) {
1560 xhci_dbg(xhci, "xHCI %s - can't drop slot or ep 0 %#x\n",
1561 __func__, drop_flag);
1562 return 0;
1563 }
1564
Sarah Sharpf94e01862009-04-27 19:58:38 -07001565 in_ctx = xhci->devs[udev->slot_id]->in_ctx;
John Yound115b042009-07-27 12:05:15 -07001566 out_ctx = xhci->devs[udev->slot_id]->out_ctx;
Lin Wang4daf9df2015-01-09 16:06:31 +02001567 ctrl_ctx = xhci_get_input_control_ctx(in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001568 if (!ctrl_ctx) {
1569 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1570 __func__);
1571 return 0;
1572 }
1573
Sarah Sharpf94e01862009-04-27 19:58:38 -07001574 ep_index = xhci_get_endpoint_index(&ep->desc);
John Yound115b042009-07-27 12:05:15 -07001575 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001576 /* If the HC already knows the endpoint is disabled,
1577 * or the HCD has noted it is disabled, ignore this request
1578 */
Mathias Nyman5071e6b2016-11-11 15:13:28 +02001579 if ((GET_EP_CTX_STATE(ep_ctx) == EP_STATE_DISABLED) ||
Matt Evans28ccd292011-03-29 13:40:46 +11001580 le32_to_cpu(ctrl_ctx->drop_flags) &
1581 xhci_get_endpoint_flag(&ep->desc)) {
Hans de Goedea6134132015-01-16 17:54:02 +02001582 /* Do not warn when called after a usb_device_reset */
1583 if (xhci->devs[udev->slot_id]->eps[ep_index].ring != NULL)
1584 xhci_warn(xhci, "xHCI %s called with disabled ep %p\n",
1585 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001586 return 0;
1587 }
1588
Matt Evans28ccd292011-03-29 13:40:46 +11001589 ctrl_ctx->drop_flags |= cpu_to_le32(drop_flag);
1590 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001591
Matt Evans28ccd292011-03-29 13:40:46 +11001592 ctrl_ctx->add_flags &= cpu_to_le32(~drop_flag);
1593 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001594
Sarah Sharpf94e01862009-04-27 19:58:38 -07001595 xhci_endpoint_zero(xhci, xhci->devs[udev->slot_id], ep);
1596
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +02001597 if (xhci->quirks & XHCI_MTK_HOST)
1598 xhci_mtk_drop_ep_quirk(hcd, udev, ep);
1599
Julius Wernerd6759132014-06-24 17:14:42 +03001600 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 -07001601 (unsigned int) ep->desc.bEndpointAddress,
1602 udev->slot_id,
1603 (unsigned int) new_drop_flags,
Julius Wernerd6759132014-06-24 17:14:42 +03001604 (unsigned int) new_add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001605 return 0;
1606}
1607
1608/* Add an endpoint to a new possible bandwidth configuration for this device.
1609 * Only one call to this function is allowed per endpoint before
1610 * check_bandwidth() or reset_bandwidth() must be called.
1611 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1612 * add the endpoint to the schedule with possibly new parameters denoted by a
1613 * different endpoint descriptor in usb_host_endpoint.
1614 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1615 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001616 *
1617 * The USB core will not allow URBs to be queued to an endpoint until the
1618 * configuration or alt setting is installed in the device, so there's no need
1619 * for mutual exclusion to protect the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001620 */
Lu Baolu39693842017-04-07 17:57:04 +03001621static int xhci_add_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
Sarah Sharpf94e01862009-04-27 19:58:38 -07001622 struct usb_host_endpoint *ep)
1623{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001624 struct xhci_hcd *xhci;
Lin Wang92c96912015-01-09 16:06:27 +02001625 struct xhci_container_ctx *in_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001626 unsigned int ep_index;
John Yound115b042009-07-27 12:05:15 -07001627 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001628 u32 added_ctxs;
Julius Wernerd6759132014-06-24 17:14:42 +03001629 u32 new_add_flags, new_drop_flags;
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001630 struct xhci_virt_device *virt_dev;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001631 int ret = 0;
1632
Andiry Xu64927732010-10-14 07:22:45 -07001633 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpa1587d92009-07-27 12:03:15 -07001634 if (ret <= 0) {
1635 /* So we won't queue a reset ep command for a root hub */
1636 ep->hcpriv = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001637 return ret;
Sarah Sharpa1587d92009-07-27 12:03:15 -07001638 }
Sarah Sharpf94e01862009-04-27 19:58:38 -07001639 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001640 if (xhci->xhc_state & XHCI_STATE_DYING)
1641 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001642
1643 added_ctxs = xhci_get_endpoint_flag(&ep->desc);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001644 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) {
1645 /* FIXME when we have to issue an evaluate endpoint command to
1646 * deal with ep0 max packet size changing once we get the
1647 * descriptors
1648 */
1649 xhci_dbg(xhci, "xHCI %s - can't add slot or ep 0 %#x\n",
1650 __func__, added_ctxs);
1651 return 0;
1652 }
1653
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001654 virt_dev = xhci->devs[udev->slot_id];
1655 in_ctx = virt_dev->in_ctx;
Lin Wang4daf9df2015-01-09 16:06:31 +02001656 ctrl_ctx = xhci_get_input_control_ctx(in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001657 if (!ctrl_ctx) {
1658 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1659 __func__);
1660 return 0;
1661 }
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001662
Sarah Sharp92f8e762013-04-23 17:11:14 -07001663 ep_index = xhci_get_endpoint_index(&ep->desc);
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001664 /* If this endpoint is already in use, and the upper layers are trying
1665 * to add it again without dropping it, reject the addition.
1666 */
1667 if (virt_dev->eps[ep_index].ring &&
Lin Wang92c96912015-01-09 16:06:27 +02001668 !(le32_to_cpu(ctrl_ctx->drop_flags) & added_ctxs)) {
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001669 xhci_warn(xhci, "Trying to add endpoint 0x%x "
1670 "without dropping it.\n",
1671 (unsigned int) ep->desc.bEndpointAddress);
1672 return -EINVAL;
1673 }
1674
Sarah Sharpf94e01862009-04-27 19:58:38 -07001675 /* If the HCD has already noted the endpoint is enabled,
1676 * ignore this request.
1677 */
Lin Wang92c96912015-01-09 16:06:27 +02001678 if (le32_to_cpu(ctrl_ctx->add_flags) & added_ctxs) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001679 xhci_warn(xhci, "xHCI %s called with enabled ep %p\n",
1680 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001681 return 0;
1682 }
1683
Sarah Sharpf88ba782009-05-14 11:44:22 -07001684 /*
1685 * Configuration and alternate setting changes must be done in
1686 * process context, not interrupt context (or so documenation
1687 * for usb_set_interface() and usb_set_configuration() claim).
1688 */
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001689 if (xhci_endpoint_init(xhci, virt_dev, udev, ep, GFP_NOIO) < 0) {
Sarah Sharpf94e01862009-04-27 19:58:38 -07001690 dev_dbg(&udev->dev, "%s - could not initialize ep %#x\n",
1691 __func__, ep->desc.bEndpointAddress);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001692 return -ENOMEM;
1693 }
1694
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +02001695 if (xhci->quirks & XHCI_MTK_HOST) {
1696 ret = xhci_mtk_add_ep_quirk(hcd, udev, ep);
1697 if (ret < 0) {
1698 xhci_free_or_cache_endpoint_ring(xhci,
1699 virt_dev, ep_index);
1700 return ret;
1701 }
1702 }
1703
Matt Evans28ccd292011-03-29 13:40:46 +11001704 ctrl_ctx->add_flags |= cpu_to_le32(added_ctxs);
1705 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001706
1707 /* If xhci_endpoint_disable() was called for this endpoint, but the
1708 * xHC hasn't been notified yet through the check_bandwidth() call,
1709 * this re-adds a new state for the endpoint from the new endpoint
1710 * descriptors. We must drop and re-add this endpoint, so we leave the
1711 * drop flags alone.
1712 */
Matt Evans28ccd292011-03-29 13:40:46 +11001713 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001714
Sarah Sharpa1587d92009-07-27 12:03:15 -07001715 /* Store the usb_device pointer for later use */
1716 ep->hcpriv = udev;
1717
Julius Wernerd6759132014-06-24 17:14:42 +03001718 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 -07001719 (unsigned int) ep->desc.bEndpointAddress,
1720 udev->slot_id,
1721 (unsigned int) new_drop_flags,
Julius Wernerd6759132014-06-24 17:14:42 +03001722 (unsigned int) new_add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001723 return 0;
1724}
1725
John Yound115b042009-07-27 12:05:15 -07001726static void xhci_zero_in_ctx(struct xhci_hcd *xhci, struct xhci_virt_device *virt_dev)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001727{
John Yound115b042009-07-27 12:05:15 -07001728 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001729 struct xhci_ep_ctx *ep_ctx;
John Yound115b042009-07-27 12:05:15 -07001730 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001731 int i;
1732
Lin Wang4daf9df2015-01-09 16:06:31 +02001733 ctrl_ctx = xhci_get_input_control_ctx(virt_dev->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001734 if (!ctrl_ctx) {
1735 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1736 __func__);
1737 return;
1738 }
1739
Sarah Sharpf94e01862009-04-27 19:58:38 -07001740 /* When a device's add flag and drop flag are zero, any subsequent
1741 * configure endpoint command will leave that endpoint's state
1742 * untouched. Make sure we don't leave any old state in the input
1743 * endpoint contexts.
1744 */
John Yound115b042009-07-27 12:05:15 -07001745 ctrl_ctx->drop_flags = 0;
1746 ctrl_ctx->add_flags = 0;
1747 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11001748 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001749 /* Endpoint 0 is always valid */
Matt Evans28ccd292011-03-29 13:40:46 +11001750 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(1));
Felipe Balbi98871e92017-01-23 14:20:04 +02001751 for (i = 1; i < 31; i++) {
John Yound115b042009-07-27 12:05:15 -07001752 ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->in_ctx, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001753 ep_ctx->ep_info = 0;
1754 ep_ctx->ep_info2 = 0;
Sarah Sharp8e595a52009-07-27 12:03:31 -07001755 ep_ctx->deq = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001756 ep_ctx->tx_info = 0;
1757 }
1758}
1759
Sarah Sharpf2217e82009-08-07 14:04:43 -07001760static int xhci_configure_endpoint_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001761 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001762{
1763 int ret;
1764
Sarah Sharp913a8a32009-09-04 10:53:13 -07001765 switch (*cmd_status) {
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001766 case COMP_COMMAND_ABORTED:
Mathias Nyman604d02a2017-05-17 18:32:05 +03001767 case COMP_COMMAND_RING_STOPPED:
Mathias Nymanc311e392014-05-08 19:26:03 +03001768 xhci_warn(xhci, "Timeout while waiting for configure endpoint command\n");
1769 ret = -ETIME;
1770 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001771 case COMP_RESOURCE_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001772 dev_warn(&udev->dev,
1773 "Not enough host controller resources for new device state.\n");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001774 ret = -ENOMEM;
1775 /* FIXME: can we allocate more resources for the HC? */
1776 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001777 case COMP_BANDWIDTH_ERROR:
1778 case COMP_SECONDARY_BANDWIDTH_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001779 dev_warn(&udev->dev,
1780 "Not enough bandwidth for new device state.\n");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001781 ret = -ENOSPC;
1782 /* FIXME: can we go back to the old state? */
1783 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001784 case COMP_TRB_ERROR:
Sarah Sharpf2217e82009-08-07 14:04:43 -07001785 /* the HCD set up something wrong */
1786 dev_warn(&udev->dev, "ERROR: Endpoint drop flag = 0, "
1787 "add flag = 1, "
1788 "and endpoint is not disabled.\n");
1789 ret = -EINVAL;
1790 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001791 case COMP_INCOMPATIBLE_DEVICE_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001792 dev_warn(&udev->dev,
1793 "ERROR: Incompatible device for endpoint configure command.\n");
Alex Hef6ba6fe2011-06-08 18:34:06 +08001794 ret = -ENODEV;
1795 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001796 case COMP_SUCCESS:
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001797 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1798 "Successful Endpoint Configure command");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001799 ret = 0;
1800 break;
1801 default:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001802 xhci_err(xhci, "ERROR: unexpected command completion code 0x%x.\n",
1803 *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001804 ret = -EINVAL;
1805 break;
1806 }
1807 return ret;
1808}
1809
1810static int xhci_evaluate_context_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001811 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001812{
1813 int ret;
1814
Sarah Sharp913a8a32009-09-04 10:53:13 -07001815 switch (*cmd_status) {
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001816 case COMP_COMMAND_ABORTED:
Mathias Nyman604d02a2017-05-17 18:32:05 +03001817 case COMP_COMMAND_RING_STOPPED:
Mathias Nymanc311e392014-05-08 19:26:03 +03001818 xhci_warn(xhci, "Timeout while waiting for evaluate context command\n");
1819 ret = -ETIME;
1820 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001821 case COMP_PARAMETER_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001822 dev_warn(&udev->dev,
1823 "WARN: xHCI driver setup invalid evaluate context command.\n");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001824 ret = -EINVAL;
1825 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001826 case COMP_SLOT_NOT_ENABLED_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001827 dev_warn(&udev->dev,
1828 "WARN: slot not enabled for evaluate context command.\n");
Sarah Sharpb8031342012-10-16 13:26:22 -07001829 ret = -EINVAL;
1830 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001831 case COMP_CONTEXT_STATE_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001832 dev_warn(&udev->dev,
1833 "WARN: invalid context state for evaluate context command.\n");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001834 ret = -EINVAL;
1835 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001836 case COMP_INCOMPATIBLE_DEVICE_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001837 dev_warn(&udev->dev,
1838 "ERROR: Incompatible device for evaluate context command.\n");
Alex Hef6ba6fe2011-06-08 18:34:06 +08001839 ret = -ENODEV;
1840 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001841 case COMP_MAX_EXIT_LATENCY_TOO_LARGE_ERROR:
Alex He1bb73a82011-05-05 18:14:12 +08001842 /* Max Exit Latency too large error */
1843 dev_warn(&udev->dev, "WARN: Max Exit Latency too large\n");
1844 ret = -EINVAL;
1845 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001846 case COMP_SUCCESS:
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001847 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1848 "Successful evaluate context command");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001849 ret = 0;
1850 break;
1851 default:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001852 xhci_err(xhci, "ERROR: unexpected command completion code 0x%x.\n",
1853 *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001854 ret = -EINVAL;
1855 break;
1856 }
1857 return ret;
1858}
1859
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001860static u32 xhci_count_num_new_endpoints(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001861 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001862{
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001863 u32 valid_add_flags;
1864 u32 valid_drop_flags;
1865
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001866 /* Ignore the slot flag (bit 0), and the default control endpoint flag
1867 * (bit 1). The default control endpoint is added during the Address
1868 * Device command and is never removed until the slot is disabled.
1869 */
Xenia Ragiadakouef734002013-09-09 21:03:06 +03001870 valid_add_flags = le32_to_cpu(ctrl_ctx->add_flags) >> 2;
1871 valid_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags) >> 2;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001872
1873 /* Use hweight32 to count the number of ones in the add flags, or
1874 * number of endpoints added. Don't count endpoints that are changed
1875 * (both added and dropped).
1876 */
1877 return hweight32(valid_add_flags) -
1878 hweight32(valid_add_flags & valid_drop_flags);
1879}
1880
1881static unsigned int xhci_count_num_dropped_endpoints(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001882 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001883{
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001884 u32 valid_add_flags;
1885 u32 valid_drop_flags;
1886
Xenia Ragiadakou78d1ff02013-09-09 21:03:07 +03001887 valid_add_flags = le32_to_cpu(ctrl_ctx->add_flags) >> 2;
1888 valid_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags) >> 2;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001889
1890 return hweight32(valid_drop_flags) -
1891 hweight32(valid_add_flags & valid_drop_flags);
1892}
1893
1894/*
1895 * We need to reserve the new number of endpoints before the configure endpoint
1896 * command completes. We can't subtract the dropped endpoints from the number
1897 * of active endpoints until the command completes because we can oversubscribe
1898 * the host in this case:
1899 *
1900 * - the first configure endpoint command drops more endpoints than it adds
1901 * - a second configure endpoint command that adds more endpoints is queued
1902 * - the first configure endpoint command fails, so the config is unchanged
1903 * - the second command may succeed, even though there isn't enough resources
1904 *
1905 * Must be called with xhci->lock held.
1906 */
1907static int xhci_reserve_host_resources(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001908 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001909{
1910 u32 added_eps;
1911
Sarah Sharp92f8e762013-04-23 17:11:14 -07001912 added_eps = xhci_count_num_new_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001913 if (xhci->num_active_eps + added_eps > xhci->limit_active_eps) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001914 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1915 "Not enough ep ctxs: "
1916 "%u active, need to add %u, limit is %u.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001917 xhci->num_active_eps, added_eps,
1918 xhci->limit_active_eps);
1919 return -ENOMEM;
1920 }
1921 xhci->num_active_eps += added_eps;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001922 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1923 "Adding %u ep ctxs, %u now active.", added_eps,
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001924 xhci->num_active_eps);
1925 return 0;
1926}
1927
1928/*
1929 * The configure endpoint was failed by the xHC for some other reason, so we
1930 * need to revert the resources that failed configuration would have used.
1931 *
1932 * Must be called with xhci->lock held.
1933 */
1934static void xhci_free_host_resources(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001935 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001936{
1937 u32 num_failed_eps;
1938
Sarah Sharp92f8e762013-04-23 17:11:14 -07001939 num_failed_eps = xhci_count_num_new_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001940 xhci->num_active_eps -= num_failed_eps;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001941 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1942 "Removing %u failed ep ctxs, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001943 num_failed_eps,
1944 xhci->num_active_eps);
1945}
1946
1947/*
1948 * Now that the command has completed, clean up the active endpoint count by
1949 * subtracting out the endpoints that were dropped (but not changed).
1950 *
1951 * Must be called with xhci->lock held.
1952 */
1953static void xhci_finish_resource_reservation(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001954 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001955{
1956 u32 num_dropped_eps;
1957
Sarah Sharp92f8e762013-04-23 17:11:14 -07001958 num_dropped_eps = xhci_count_num_dropped_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001959 xhci->num_active_eps -= num_dropped_eps;
1960 if (num_dropped_eps)
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001961 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1962 "Removing %u dropped ep ctxs, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001963 num_dropped_eps,
1964 xhci->num_active_eps);
1965}
1966
Felipe Balbied384bd2012-08-07 14:10:03 +03001967static unsigned int xhci_get_block_size(struct usb_device *udev)
Sarah Sharpc29eea62011-09-02 11:05:52 -07001968{
1969 switch (udev->speed) {
1970 case USB_SPEED_LOW:
1971 case USB_SPEED_FULL:
1972 return FS_BLOCK;
1973 case USB_SPEED_HIGH:
1974 return HS_BLOCK;
1975 case USB_SPEED_SUPER:
Mathias Nyman0caf6b32016-01-25 15:30:44 +02001976 case USB_SPEED_SUPER_PLUS:
Sarah Sharpc29eea62011-09-02 11:05:52 -07001977 return SS_BLOCK;
1978 case USB_SPEED_UNKNOWN:
1979 case USB_SPEED_WIRELESS:
1980 default:
1981 /* Should never happen */
1982 return 1;
1983 }
1984}
1985
Felipe Balbied384bd2012-08-07 14:10:03 +03001986static unsigned int
1987xhci_get_largest_overhead(struct xhci_interval_bw *interval_bw)
Sarah Sharpc29eea62011-09-02 11:05:52 -07001988{
1989 if (interval_bw->overhead[LS_OVERHEAD_TYPE])
1990 return LS_OVERHEAD;
1991 if (interval_bw->overhead[FS_OVERHEAD_TYPE])
1992 return FS_OVERHEAD;
1993 return HS_OVERHEAD;
1994}
1995
1996/* If we are changing a LS/FS device under a HS hub,
1997 * make sure (if we are activating a new TT) that the HS bus has enough
1998 * bandwidth for this new TT.
1999 */
2000static int xhci_check_tt_bw_table(struct xhci_hcd *xhci,
2001 struct xhci_virt_device *virt_dev,
2002 int old_active_eps)
2003{
2004 struct xhci_interval_bw_table *bw_table;
2005 struct xhci_tt_bw_info *tt_info;
2006
2007 /* Find the bandwidth table for the root port this TT is attached to. */
2008 bw_table = &xhci->rh_bw[virt_dev->real_port - 1].bw_table;
2009 tt_info = virt_dev->tt_info;
2010 /* If this TT already had active endpoints, the bandwidth for this TT
2011 * has already been added. Removing all periodic endpoints (and thus
2012 * making the TT enactive) will only decrease the bandwidth used.
2013 */
2014 if (old_active_eps)
2015 return 0;
2016 if (old_active_eps == 0 && tt_info->active_eps != 0) {
2017 if (bw_table->bw_used + TT_HS_OVERHEAD > HS_BW_LIMIT)
2018 return -ENOMEM;
2019 return 0;
2020 }
2021 /* Not sure why we would have no new active endpoints...
2022 *
2023 * Maybe because of an Evaluate Context change for a hub update or a
2024 * control endpoint 0 max packet size change?
2025 * FIXME: skip the bandwidth calculation in that case.
2026 */
2027 return 0;
2028}
2029
Sarah Sharp2b698992011-09-13 16:41:13 -07002030static int xhci_check_ss_bw(struct xhci_hcd *xhci,
2031 struct xhci_virt_device *virt_dev)
2032{
2033 unsigned int bw_reserved;
2034
2035 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_IN, 100);
2036 if (virt_dev->bw_table->ss_bw_in > (SS_BW_LIMIT_IN - bw_reserved))
2037 return -ENOMEM;
2038
2039 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_OUT, 100);
2040 if (virt_dev->bw_table->ss_bw_out > (SS_BW_LIMIT_OUT - bw_reserved))
2041 return -ENOMEM;
2042
2043 return 0;
2044}
2045
Sarah Sharpc29eea62011-09-02 11:05:52 -07002046/*
2047 * This algorithm is a very conservative estimate of the worst-case scheduling
2048 * scenario for any one interval. The hardware dynamically schedules the
2049 * packets, so we can't tell which microframe could be the limiting factor in
2050 * the bandwidth scheduling. This only takes into account periodic endpoints.
2051 *
2052 * Obviously, we can't solve an NP complete problem to find the minimum worst
2053 * case scenario. Instead, we come up with an estimate that is no less than
2054 * the worst case bandwidth used for any one microframe, but may be an
2055 * over-estimate.
2056 *
2057 * We walk the requirements for each endpoint by interval, starting with the
2058 * smallest interval, and place packets in the schedule where there is only one
2059 * possible way to schedule packets for that interval. In order to simplify
2060 * this algorithm, we record the largest max packet size for each interval, and
2061 * assume all packets will be that size.
2062 *
2063 * For interval 0, we obviously must schedule all packets for each interval.
2064 * The bandwidth for interval 0 is just the amount of data to be transmitted
2065 * (the sum of all max ESIT payload sizes, plus any overhead per packet times
2066 * the number of packets).
2067 *
2068 * For interval 1, we have two possible microframes to schedule those packets
2069 * in. For this algorithm, if we can schedule the same number of packets for
2070 * each possible scheduling opportunity (each microframe), we will do so. The
2071 * remaining number of packets will be saved to be transmitted in the gaps in
2072 * the next interval's scheduling sequence.
2073 *
2074 * As we move those remaining packets to be scheduled with interval 2 packets,
2075 * we have to double the number of remaining packets to transmit. This is
2076 * because the intervals are actually powers of 2, and we would be transmitting
2077 * the previous interval's packets twice in this interval. We also have to be
2078 * sure that when we look at the largest max packet size for this interval, we
2079 * also look at the largest max packet size for the remaining packets and take
2080 * the greater of the two.
2081 *
2082 * The algorithm continues to evenly distribute packets in each scheduling
2083 * opportunity, and push the remaining packets out, until we get to the last
2084 * interval. Then those packets and their associated overhead are just added
2085 * to the bandwidth used.
Sarah Sharp2e279802011-09-02 11:05:50 -07002086 */
2087static int xhci_check_bw_table(struct xhci_hcd *xhci,
2088 struct xhci_virt_device *virt_dev,
2089 int old_active_eps)
2090{
Sarah Sharpc29eea62011-09-02 11:05:52 -07002091 unsigned int bw_reserved;
2092 unsigned int max_bandwidth;
2093 unsigned int bw_used;
2094 unsigned int block_size;
2095 struct xhci_interval_bw_table *bw_table;
2096 unsigned int packet_size = 0;
2097 unsigned int overhead = 0;
2098 unsigned int packets_transmitted = 0;
2099 unsigned int packets_remaining = 0;
2100 unsigned int i;
2101
Mathias Nyman0caf6b32016-01-25 15:30:44 +02002102 if (virt_dev->udev->speed >= USB_SPEED_SUPER)
Sarah Sharp2b698992011-09-13 16:41:13 -07002103 return xhci_check_ss_bw(xhci, virt_dev);
2104
Sarah Sharpc29eea62011-09-02 11:05:52 -07002105 if (virt_dev->udev->speed == USB_SPEED_HIGH) {
2106 max_bandwidth = HS_BW_LIMIT;
2107 /* Convert percent of bus BW reserved to blocks reserved */
2108 bw_reserved = DIV_ROUND_UP(HS_BW_RESERVED * max_bandwidth, 100);
2109 } else {
2110 max_bandwidth = FS_BW_LIMIT;
2111 bw_reserved = DIV_ROUND_UP(FS_BW_RESERVED * max_bandwidth, 100);
2112 }
2113
2114 bw_table = virt_dev->bw_table;
2115 /* We need to translate the max packet size and max ESIT payloads into
2116 * the units the hardware uses.
2117 */
2118 block_size = xhci_get_block_size(virt_dev->udev);
2119
2120 /* If we are manipulating a LS/FS device under a HS hub, double check
2121 * that the HS bus has enough bandwidth if we are activing a new TT.
2122 */
2123 if (virt_dev->tt_info) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002124 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2125 "Recalculating BW for rootport %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002126 virt_dev->real_port);
2127 if (xhci_check_tt_bw_table(xhci, virt_dev, old_active_eps)) {
2128 xhci_warn(xhci, "Not enough bandwidth on HS bus for "
2129 "newly activated TT.\n");
2130 return -ENOMEM;
2131 }
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002132 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2133 "Recalculating BW for TT slot %u port %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002134 virt_dev->tt_info->slot_id,
2135 virt_dev->tt_info->ttport);
2136 } else {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002137 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2138 "Recalculating BW for rootport %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002139 virt_dev->real_port);
2140 }
2141
2142 /* Add in how much bandwidth will be used for interval zero, or the
2143 * rounded max ESIT payload + number of packets * largest overhead.
2144 */
2145 bw_used = DIV_ROUND_UP(bw_table->interval0_esit_payload, block_size) +
2146 bw_table->interval_bw[0].num_packets *
2147 xhci_get_largest_overhead(&bw_table->interval_bw[0]);
2148
2149 for (i = 1; i < XHCI_MAX_INTERVAL; i++) {
2150 unsigned int bw_added;
2151 unsigned int largest_mps;
2152 unsigned int interval_overhead;
2153
2154 /*
2155 * How many packets could we transmit in this interval?
2156 * If packets didn't fit in the previous interval, we will need
2157 * to transmit that many packets twice within this interval.
2158 */
2159 packets_remaining = 2 * packets_remaining +
2160 bw_table->interval_bw[i].num_packets;
2161
2162 /* Find the largest max packet size of this or the previous
2163 * interval.
2164 */
2165 if (list_empty(&bw_table->interval_bw[i].endpoints))
2166 largest_mps = 0;
2167 else {
2168 struct xhci_virt_ep *virt_ep;
2169 struct list_head *ep_entry;
2170
2171 ep_entry = bw_table->interval_bw[i].endpoints.next;
2172 virt_ep = list_entry(ep_entry,
2173 struct xhci_virt_ep, bw_endpoint_list);
2174 /* Convert to blocks, rounding up */
2175 largest_mps = DIV_ROUND_UP(
2176 virt_ep->bw_info.max_packet_size,
2177 block_size);
2178 }
2179 if (largest_mps > packet_size)
2180 packet_size = largest_mps;
2181
2182 /* Use the larger overhead of this or the previous interval. */
2183 interval_overhead = xhci_get_largest_overhead(
2184 &bw_table->interval_bw[i]);
2185 if (interval_overhead > overhead)
2186 overhead = interval_overhead;
2187
2188 /* How many packets can we evenly distribute across
2189 * (1 << (i + 1)) possible scheduling opportunities?
2190 */
2191 packets_transmitted = packets_remaining >> (i + 1);
2192
2193 /* Add in the bandwidth used for those scheduled packets */
2194 bw_added = packets_transmitted * (overhead + packet_size);
2195
2196 /* How many packets do we have remaining to transmit? */
2197 packets_remaining = packets_remaining % (1 << (i + 1));
2198
2199 /* What largest max packet size should those packets have? */
2200 /* If we've transmitted all packets, don't carry over the
2201 * largest packet size.
2202 */
2203 if (packets_remaining == 0) {
2204 packet_size = 0;
2205 overhead = 0;
2206 } else if (packets_transmitted > 0) {
2207 /* Otherwise if we do have remaining packets, and we've
2208 * scheduled some packets in this interval, take the
2209 * largest max packet size from endpoints with this
2210 * interval.
2211 */
2212 packet_size = largest_mps;
2213 overhead = interval_overhead;
2214 }
2215 /* Otherwise carry over packet_size and overhead from the last
2216 * time we had a remainder.
2217 */
2218 bw_used += bw_added;
2219 if (bw_used > max_bandwidth) {
2220 xhci_warn(xhci, "Not enough bandwidth. "
2221 "Proposed: %u, Max: %u\n",
2222 bw_used, max_bandwidth);
2223 return -ENOMEM;
2224 }
2225 }
2226 /*
2227 * Ok, we know we have some packets left over after even-handedly
2228 * scheduling interval 15. We don't know which microframes they will
2229 * fit into, so we over-schedule and say they will be scheduled every
2230 * microframe.
2231 */
2232 if (packets_remaining > 0)
2233 bw_used += overhead + packet_size;
2234
2235 if (!virt_dev->tt_info && virt_dev->udev->speed == USB_SPEED_HIGH) {
2236 unsigned int port_index = virt_dev->real_port - 1;
2237
2238 /* OK, we're manipulating a HS device attached to a
2239 * root port bandwidth domain. Include the number of active TTs
2240 * in the bandwidth used.
2241 */
2242 bw_used += TT_HS_OVERHEAD *
2243 xhci->rh_bw[port_index].num_active_tts;
2244 }
2245
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002246 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2247 "Final bandwidth: %u, Limit: %u, Reserved: %u, "
2248 "Available: %u " "percent",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002249 bw_used, max_bandwidth, bw_reserved,
2250 (max_bandwidth - bw_used - bw_reserved) * 100 /
2251 max_bandwidth);
2252
2253 bw_used += bw_reserved;
2254 if (bw_used > max_bandwidth) {
2255 xhci_warn(xhci, "Not enough bandwidth. Proposed: %u, Max: %u\n",
2256 bw_used, max_bandwidth);
2257 return -ENOMEM;
2258 }
2259
2260 bw_table->bw_used = bw_used;
Sarah Sharp2e279802011-09-02 11:05:50 -07002261 return 0;
2262}
2263
2264static bool xhci_is_async_ep(unsigned int ep_type)
2265{
2266 return (ep_type != ISOC_OUT_EP && ep_type != INT_OUT_EP &&
2267 ep_type != ISOC_IN_EP &&
2268 ep_type != INT_IN_EP);
2269}
2270
Sarah Sharp2b698992011-09-13 16:41:13 -07002271static bool xhci_is_sync_in_ep(unsigned int ep_type)
2272{
Sarah Sharp392a07a2012-10-25 13:44:12 -07002273 return (ep_type == ISOC_IN_EP || ep_type == INT_IN_EP);
Sarah Sharp2b698992011-09-13 16:41:13 -07002274}
2275
2276static unsigned int xhci_get_ss_bw_consumed(struct xhci_bw_info *ep_bw)
2277{
2278 unsigned int mps = DIV_ROUND_UP(ep_bw->max_packet_size, SS_BLOCK);
2279
2280 if (ep_bw->ep_interval == 0)
2281 return SS_OVERHEAD_BURST +
2282 (ep_bw->mult * ep_bw->num_packets *
2283 (SS_OVERHEAD + mps));
2284 return DIV_ROUND_UP(ep_bw->mult * ep_bw->num_packets *
2285 (SS_OVERHEAD + mps + SS_OVERHEAD_BURST),
2286 1 << ep_bw->ep_interval);
2287
2288}
2289
Lu Baolu39693842017-04-07 17:57:04 +03002290static void xhci_drop_ep_from_interval_table(struct xhci_hcd *xhci,
Sarah Sharp2e279802011-09-02 11:05:50 -07002291 struct xhci_bw_info *ep_bw,
2292 struct xhci_interval_bw_table *bw_table,
2293 struct usb_device *udev,
2294 struct xhci_virt_ep *virt_ep,
2295 struct xhci_tt_bw_info *tt_info)
2296{
2297 struct xhci_interval_bw *interval_bw;
2298 int normalized_interval;
2299
Sarah Sharp2b698992011-09-13 16:41:13 -07002300 if (xhci_is_async_ep(ep_bw->type))
Sarah Sharp2e279802011-09-02 11:05:50 -07002301 return;
2302
Mathias Nyman0caf6b32016-01-25 15:30:44 +02002303 if (udev->speed >= USB_SPEED_SUPER) {
Sarah Sharp2b698992011-09-13 16:41:13 -07002304 if (xhci_is_sync_in_ep(ep_bw->type))
2305 xhci->devs[udev->slot_id]->bw_table->ss_bw_in -=
2306 xhci_get_ss_bw_consumed(ep_bw);
2307 else
2308 xhci->devs[udev->slot_id]->bw_table->ss_bw_out -=
2309 xhci_get_ss_bw_consumed(ep_bw);
2310 return;
2311 }
2312
2313 /* SuperSpeed endpoints never get added to intervals in the table, so
2314 * this check is only valid for HS/FS/LS devices.
2315 */
2316 if (list_empty(&virt_ep->bw_endpoint_list))
2317 return;
Sarah Sharp2e279802011-09-02 11:05:50 -07002318 /* For LS/FS devices, we need to translate the interval expressed in
2319 * microframes to frames.
2320 */
2321 if (udev->speed == USB_SPEED_HIGH)
2322 normalized_interval = ep_bw->ep_interval;
2323 else
2324 normalized_interval = ep_bw->ep_interval - 3;
2325
2326 if (normalized_interval == 0)
2327 bw_table->interval0_esit_payload -= ep_bw->max_esit_payload;
2328 interval_bw = &bw_table->interval_bw[normalized_interval];
2329 interval_bw->num_packets -= ep_bw->num_packets;
2330 switch (udev->speed) {
2331 case USB_SPEED_LOW:
2332 interval_bw->overhead[LS_OVERHEAD_TYPE] -= 1;
2333 break;
2334 case USB_SPEED_FULL:
2335 interval_bw->overhead[FS_OVERHEAD_TYPE] -= 1;
2336 break;
2337 case USB_SPEED_HIGH:
2338 interval_bw->overhead[HS_OVERHEAD_TYPE] -= 1;
2339 break;
2340 case USB_SPEED_SUPER:
Mathias Nyman0caf6b32016-01-25 15:30:44 +02002341 case USB_SPEED_SUPER_PLUS:
Sarah Sharp2e279802011-09-02 11:05:50 -07002342 case USB_SPEED_UNKNOWN:
2343 case USB_SPEED_WIRELESS:
2344 /* Should never happen because only LS/FS/HS endpoints will get
2345 * added to the endpoint list.
2346 */
2347 return;
2348 }
2349 if (tt_info)
2350 tt_info->active_eps -= 1;
2351 list_del_init(&virt_ep->bw_endpoint_list);
2352}
2353
2354static void xhci_add_ep_to_interval_table(struct xhci_hcd *xhci,
2355 struct xhci_bw_info *ep_bw,
2356 struct xhci_interval_bw_table *bw_table,
2357 struct usb_device *udev,
2358 struct xhci_virt_ep *virt_ep,
2359 struct xhci_tt_bw_info *tt_info)
2360{
2361 struct xhci_interval_bw *interval_bw;
2362 struct xhci_virt_ep *smaller_ep;
2363 int normalized_interval;
2364
2365 if (xhci_is_async_ep(ep_bw->type))
2366 return;
2367
Sarah Sharp2b698992011-09-13 16:41:13 -07002368 if (udev->speed == USB_SPEED_SUPER) {
2369 if (xhci_is_sync_in_ep(ep_bw->type))
2370 xhci->devs[udev->slot_id]->bw_table->ss_bw_in +=
2371 xhci_get_ss_bw_consumed(ep_bw);
2372 else
2373 xhci->devs[udev->slot_id]->bw_table->ss_bw_out +=
2374 xhci_get_ss_bw_consumed(ep_bw);
2375 return;
2376 }
2377
Sarah Sharp2e279802011-09-02 11:05:50 -07002378 /* For LS/FS devices, we need to translate the interval expressed in
2379 * microframes to frames.
2380 */
2381 if (udev->speed == USB_SPEED_HIGH)
2382 normalized_interval = ep_bw->ep_interval;
2383 else
2384 normalized_interval = ep_bw->ep_interval - 3;
2385
2386 if (normalized_interval == 0)
2387 bw_table->interval0_esit_payload += ep_bw->max_esit_payload;
2388 interval_bw = &bw_table->interval_bw[normalized_interval];
2389 interval_bw->num_packets += ep_bw->num_packets;
2390 switch (udev->speed) {
2391 case USB_SPEED_LOW:
2392 interval_bw->overhead[LS_OVERHEAD_TYPE] += 1;
2393 break;
2394 case USB_SPEED_FULL:
2395 interval_bw->overhead[FS_OVERHEAD_TYPE] += 1;
2396 break;
2397 case USB_SPEED_HIGH:
2398 interval_bw->overhead[HS_OVERHEAD_TYPE] += 1;
2399 break;
2400 case USB_SPEED_SUPER:
Mathias Nyman0caf6b32016-01-25 15:30:44 +02002401 case USB_SPEED_SUPER_PLUS:
Sarah Sharp2e279802011-09-02 11:05:50 -07002402 case USB_SPEED_UNKNOWN:
2403 case USB_SPEED_WIRELESS:
2404 /* Should never happen because only LS/FS/HS endpoints will get
2405 * added to the endpoint list.
2406 */
2407 return;
2408 }
2409
2410 if (tt_info)
2411 tt_info->active_eps += 1;
2412 /* Insert the endpoint into the list, largest max packet size first. */
2413 list_for_each_entry(smaller_ep, &interval_bw->endpoints,
2414 bw_endpoint_list) {
2415 if (ep_bw->max_packet_size >=
2416 smaller_ep->bw_info.max_packet_size) {
2417 /* Add the new ep before the smaller endpoint */
2418 list_add_tail(&virt_ep->bw_endpoint_list,
2419 &smaller_ep->bw_endpoint_list);
2420 return;
2421 }
2422 }
2423 /* Add the new endpoint at the end of the list. */
2424 list_add_tail(&virt_ep->bw_endpoint_list,
2425 &interval_bw->endpoints);
2426}
2427
2428void xhci_update_tt_active_eps(struct xhci_hcd *xhci,
2429 struct xhci_virt_device *virt_dev,
2430 int old_active_eps)
2431{
2432 struct xhci_root_port_bw_info *rh_bw_info;
2433 if (!virt_dev->tt_info)
2434 return;
2435
2436 rh_bw_info = &xhci->rh_bw[virt_dev->real_port - 1];
2437 if (old_active_eps == 0 &&
2438 virt_dev->tt_info->active_eps != 0) {
2439 rh_bw_info->num_active_tts += 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002440 rh_bw_info->bw_table.bw_used += TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002441 } else if (old_active_eps != 0 &&
2442 virt_dev->tt_info->active_eps == 0) {
2443 rh_bw_info->num_active_tts -= 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002444 rh_bw_info->bw_table.bw_used -= TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002445 }
2446}
2447
2448static int xhci_reserve_bandwidth(struct xhci_hcd *xhci,
2449 struct xhci_virt_device *virt_dev,
2450 struct xhci_container_ctx *in_ctx)
2451{
2452 struct xhci_bw_info ep_bw_info[31];
2453 int i;
2454 struct xhci_input_control_ctx *ctrl_ctx;
2455 int old_active_eps = 0;
2456
Sarah Sharp2e279802011-09-02 11:05:50 -07002457 if (virt_dev->tt_info)
2458 old_active_eps = virt_dev->tt_info->active_eps;
2459
Lin Wang4daf9df2015-01-09 16:06:31 +02002460 ctrl_ctx = xhci_get_input_control_ctx(in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002461 if (!ctrl_ctx) {
2462 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2463 __func__);
2464 return -ENOMEM;
2465 }
Sarah Sharp2e279802011-09-02 11:05:50 -07002466
2467 for (i = 0; i < 31; i++) {
2468 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2469 continue;
2470
2471 /* Make a copy of the BW info in case we need to revert this */
2472 memcpy(&ep_bw_info[i], &virt_dev->eps[i].bw_info,
2473 sizeof(ep_bw_info[i]));
2474 /* Drop the endpoint from the interval table if the endpoint is
2475 * being dropped or changed.
2476 */
2477 if (EP_IS_DROPPED(ctrl_ctx, i))
2478 xhci_drop_ep_from_interval_table(xhci,
2479 &virt_dev->eps[i].bw_info,
2480 virt_dev->bw_table,
2481 virt_dev->udev,
2482 &virt_dev->eps[i],
2483 virt_dev->tt_info);
2484 }
2485 /* Overwrite the information stored in the endpoints' bw_info */
2486 xhci_update_bw_info(xhci, virt_dev->in_ctx, ctrl_ctx, virt_dev);
2487 for (i = 0; i < 31; i++) {
2488 /* Add any changed or added endpoints to the interval table */
2489 if (EP_IS_ADDED(ctrl_ctx, i))
2490 xhci_add_ep_to_interval_table(xhci,
2491 &virt_dev->eps[i].bw_info,
2492 virt_dev->bw_table,
2493 virt_dev->udev,
2494 &virt_dev->eps[i],
2495 virt_dev->tt_info);
2496 }
2497
2498 if (!xhci_check_bw_table(xhci, virt_dev, old_active_eps)) {
2499 /* Ok, this fits in the bandwidth we have.
2500 * Update the number of active TTs.
2501 */
2502 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
2503 return 0;
2504 }
2505
2506 /* We don't have enough bandwidth for this, revert the stored info. */
2507 for (i = 0; i < 31; i++) {
2508 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2509 continue;
2510
2511 /* Drop the new copies of any added or changed endpoints from
2512 * the interval table.
2513 */
2514 if (EP_IS_ADDED(ctrl_ctx, i)) {
2515 xhci_drop_ep_from_interval_table(xhci,
2516 &virt_dev->eps[i].bw_info,
2517 virt_dev->bw_table,
2518 virt_dev->udev,
2519 &virt_dev->eps[i],
2520 virt_dev->tt_info);
2521 }
2522 /* Revert the endpoint back to its old information */
2523 memcpy(&virt_dev->eps[i].bw_info, &ep_bw_info[i],
2524 sizeof(ep_bw_info[i]));
2525 /* Add any changed or dropped endpoints back into the table */
2526 if (EP_IS_DROPPED(ctrl_ctx, i))
2527 xhci_add_ep_to_interval_table(xhci,
2528 &virt_dev->eps[i].bw_info,
2529 virt_dev->bw_table,
2530 virt_dev->udev,
2531 &virt_dev->eps[i],
2532 virt_dev->tt_info);
2533 }
2534 return -ENOMEM;
2535}
2536
2537
Sarah Sharpf2217e82009-08-07 14:04:43 -07002538/* Issue a configure endpoint command or evaluate context command
2539 * and wait for it to finish.
2540 */
2541static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002542 struct usb_device *udev,
2543 struct xhci_command *command,
2544 bool ctx_change, bool must_succeed)
Sarah Sharpf2217e82009-08-07 14:04:43 -07002545{
2546 int ret;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002547 unsigned long flags;
Sarah Sharp92f8e762013-04-23 17:11:14 -07002548 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002549 struct xhci_virt_device *virt_dev;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002550
2551 if (!command)
2552 return -EINVAL;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002553
2554 spin_lock_irqsave(&xhci->lock, flags);
Mathias Nymand9f11ba2017-04-07 17:57:01 +03002555
2556 if (xhci->xhc_state & XHCI_STATE_DYING) {
2557 spin_unlock_irqrestore(&xhci->lock, flags);
2558 return -ESHUTDOWN;
2559 }
2560
Sarah Sharp913a8a32009-09-04 10:53:13 -07002561 virt_dev = xhci->devs[udev->slot_id];
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002562
Lin Wang4daf9df2015-01-09 16:06:31 +02002563 ctrl_ctx = xhci_get_input_control_ctx(command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002564 if (!ctrl_ctx) {
Emil Goode1f215692013-06-25 15:49:36 -07002565 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002566 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2567 __func__);
2568 return -ENOMEM;
2569 }
Sarah Sharp750645f2011-09-02 11:05:43 -07002570
2571 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK) &&
Sarah Sharp92f8e762013-04-23 17:11:14 -07002572 xhci_reserve_host_resources(xhci, ctrl_ctx)) {
Sarah Sharp750645f2011-09-02 11:05:43 -07002573 spin_unlock_irqrestore(&xhci->lock, flags);
2574 xhci_warn(xhci, "Not enough host resources, "
2575 "active endpoint contexts = %u\n",
2576 xhci->num_active_eps);
2577 return -ENOMEM;
2578 }
Sarah Sharp2e279802011-09-02 11:05:50 -07002579 if ((xhci->quirks & XHCI_SW_BW_CHECKING) &&
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002580 xhci_reserve_bandwidth(xhci, virt_dev, command->in_ctx)) {
Sarah Sharp2e279802011-09-02 11:05:50 -07002581 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
Sarah Sharp92f8e762013-04-23 17:11:14 -07002582 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharp2e279802011-09-02 11:05:50 -07002583 spin_unlock_irqrestore(&xhci->lock, flags);
2584 xhci_warn(xhci, "Not enough bandwidth\n");
2585 return -ENOMEM;
2586 }
Sarah Sharp750645f2011-09-02 11:05:43 -07002587
Sarah Sharpf2217e82009-08-07 14:04:43 -07002588 if (!ctx_change)
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002589 ret = xhci_queue_configure_endpoint(xhci, command,
2590 command->in_ctx->dma,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002591 udev->slot_id, must_succeed);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002592 else
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002593 ret = xhci_queue_evaluate_context(xhci, command,
2594 command->in_ctx->dma,
Sarah Sharp4b266542012-05-07 15:34:26 -07002595 udev->slot_id, must_succeed);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002596 if (ret < 0) {
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002597 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
Sarah Sharp92f8e762013-04-23 17:11:14 -07002598 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002599 spin_unlock_irqrestore(&xhci->lock, flags);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03002600 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
2601 "FIXME allocate a new ring segment");
Sarah Sharpf2217e82009-08-07 14:04:43 -07002602 return -ENOMEM;
2603 }
2604 xhci_ring_cmd_db(xhci);
2605 spin_unlock_irqrestore(&xhci->lock, flags);
2606
2607 /* Wait for the configure endpoint command to complete */
Mathias Nymanc311e392014-05-08 19:26:03 +03002608 wait_for_completion(command->completion);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002609
2610 if (!ctx_change)
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002611 ret = xhci_configure_endpoint_result(xhci, udev,
2612 &command->status);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002613 else
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002614 ret = xhci_evaluate_context_result(xhci, udev,
2615 &command->status);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002616
2617 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
2618 spin_lock_irqsave(&xhci->lock, flags);
2619 /* If the command failed, remove the reserved resources.
2620 * Otherwise, clean up the estimate to include dropped eps.
2621 */
2622 if (ret)
Sarah Sharp92f8e762013-04-23 17:11:14 -07002623 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002624 else
Sarah Sharp92f8e762013-04-23 17:11:14 -07002625 xhci_finish_resource_reservation(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002626 spin_unlock_irqrestore(&xhci->lock, flags);
2627 }
2628 return ret;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002629}
2630
Hans de Goededf613832013-10-04 00:29:45 +02002631static void xhci_check_bw_drop_ep_streams(struct xhci_hcd *xhci,
2632 struct xhci_virt_device *vdev, int i)
2633{
2634 struct xhci_virt_ep *ep = &vdev->eps[i];
2635
2636 if (ep->ep_state & EP_HAS_STREAMS) {
2637 xhci_warn(xhci, "WARN: endpoint 0x%02x has streams on set_interface, freeing streams.\n",
2638 xhci_get_endpoint_address(i));
2639 xhci_free_stream_info(xhci, ep->stream_info);
2640 ep->stream_info = NULL;
2641 ep->ep_state &= ~EP_HAS_STREAMS;
2642 }
2643}
2644
Sarah Sharpf88ba782009-05-14 11:44:22 -07002645/* Called after one or more calls to xhci_add_endpoint() or
2646 * xhci_drop_endpoint(). If this call fails, the USB core is expected
2647 * to call xhci_reset_bandwidth().
2648 *
2649 * Since we are in the middle of changing either configuration or
2650 * installing a new alt setting, the USB core won't allow URBs to be
2651 * enqueued for any endpoint on the old config or interface. Nothing
2652 * else should be touching the xhci->devs[slot_id] structure, so we
2653 * don't need to take the xhci->lock for manipulating that.
2654 */
Lu Baolu39693842017-04-07 17:57:04 +03002655static int xhci_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharpf94e01862009-04-27 19:58:38 -07002656{
2657 int i;
2658 int ret = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002659 struct xhci_hcd *xhci;
2660 struct xhci_virt_device *virt_dev;
John Yound115b042009-07-27 12:05:15 -07002661 struct xhci_input_control_ctx *ctrl_ctx;
2662 struct xhci_slot_ctx *slot_ctx;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002663 struct xhci_command *command;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002664
Andiry Xu64927732010-10-14 07:22:45 -07002665 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002666 if (ret <= 0)
2667 return ret;
2668 xhci = hcd_to_xhci(hcd);
Mathias Nyman98d74f92016-04-08 16:25:10 +03002669 if ((xhci->xhc_state & XHCI_STATE_DYING) ||
2670 (xhci->xhc_state & XHCI_STATE_REMOVING))
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07002671 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002672
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002673 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002674 virt_dev = xhci->devs[udev->slot_id];
2675
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002676 command = xhci_alloc_command(xhci, false, true, GFP_KERNEL);
2677 if (!command)
2678 return -ENOMEM;
2679
2680 command->in_ctx = virt_dev->in_ctx;
2681
Sarah Sharpf94e01862009-04-27 19:58:38 -07002682 /* See section 4.6.6 - A0 = 1; A1 = D0 = D1 = 0 */
Lin Wang4daf9df2015-01-09 16:06:31 +02002683 ctrl_ctx = xhci_get_input_control_ctx(command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002684 if (!ctrl_ctx) {
2685 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2686 __func__);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002687 ret = -ENOMEM;
2688 goto command_cleanup;
Sarah Sharp92f8e762013-04-23 17:11:14 -07002689 }
Matt Evans28ccd292011-03-29 13:40:46 +11002690 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
2691 ctrl_ctx->add_flags &= cpu_to_le32(~EP0_FLAG);
2692 ctrl_ctx->drop_flags &= cpu_to_le32(~(SLOT_FLAG | EP0_FLAG));
Sarah Sharp2dc37532011-09-02 11:05:40 -07002693
2694 /* Don't issue the command if there's no endpoints to update. */
2695 if (ctrl_ctx->add_flags == cpu_to_le32(SLOT_FLAG) &&
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002696 ctrl_ctx->drop_flags == 0) {
2697 ret = 0;
2698 goto command_cleanup;
2699 }
Julius Wernerd6759132014-06-24 17:14:42 +03002700 /* Fix up Context Entries field. Minimum value is EP0 == BIT(1). */
John Yound115b042009-07-27 12:05:15 -07002701 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Julius Wernerd6759132014-06-24 17:14:42 +03002702 for (i = 31; i >= 1; i--) {
2703 __le32 le32 = cpu_to_le32(BIT(i));
2704
2705 if ((virt_dev->eps[i-1].ring && !(ctrl_ctx->drop_flags & le32))
2706 || (ctrl_ctx->add_flags & le32) || i == 1) {
2707 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
2708 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(i));
2709 break;
2710 }
2711 }
Sarah Sharpf94e01862009-04-27 19:58:38 -07002712
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002713 ret = xhci_configure_endpoint(xhci, udev, command,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002714 false, false);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002715 if (ret)
Sarah Sharpf94e01862009-04-27 19:58:38 -07002716 /* Callee should call reset_bandwidth() */
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002717 goto command_cleanup;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002718
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002719 /* Free any rings that were dropped, but not changed. */
Felipe Balbi98871e92017-01-23 14:20:04 +02002720 for (i = 1; i < 31; i++) {
Matt Evans4819fef2011-06-01 13:01:07 +10002721 if ((le32_to_cpu(ctrl_ctx->drop_flags) & (1 << (i + 1))) &&
Hans de Goededf613832013-10-04 00:29:45 +02002722 !(le32_to_cpu(ctrl_ctx->add_flags) & (1 << (i + 1)))) {
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002723 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
Hans de Goededf613832013-10-04 00:29:45 +02002724 xhci_check_bw_drop_ep_streams(xhci, virt_dev, i);
2725 }
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002726 }
John Yound115b042009-07-27 12:05:15 -07002727 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002728 /*
2729 * Install any rings for completely new endpoints or changed endpoints,
2730 * and free or cache any old rings from changed endpoints.
2731 */
Felipe Balbi98871e92017-01-23 14:20:04 +02002732 for (i = 1; i < 31; i++) {
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002733 if (!virt_dev->eps[i].new_ring)
2734 continue;
2735 /* Only cache or free the old ring if it exists.
2736 * It may not if this is the first add of an endpoint.
2737 */
2738 if (virt_dev->eps[i].ring) {
Sarah Sharp412566b2009-12-09 15:59:01 -08002739 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002740 }
Hans de Goededf613832013-10-04 00:29:45 +02002741 xhci_check_bw_drop_ep_streams(xhci, virt_dev, i);
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002742 virt_dev->eps[i].ring = virt_dev->eps[i].new_ring;
2743 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002744 }
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002745command_cleanup:
2746 kfree(command->completion);
2747 kfree(command);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002748
Sarah Sharpf94e01862009-04-27 19:58:38 -07002749 return ret;
2750}
2751
Lu Baolu39693842017-04-07 17:57:04 +03002752static void xhci_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharpf94e01862009-04-27 19:58:38 -07002753{
Sarah Sharpf94e01862009-04-27 19:58:38 -07002754 struct xhci_hcd *xhci;
2755 struct xhci_virt_device *virt_dev;
2756 int i, ret;
2757
Andiry Xu64927732010-10-14 07:22:45 -07002758 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002759 if (ret <= 0)
2760 return;
2761 xhci = hcd_to_xhci(hcd);
2762
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002763 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002764 virt_dev = xhci->devs[udev->slot_id];
2765 /* Free any rings allocated for added endpoints */
Felipe Balbi98871e92017-01-23 14:20:04 +02002766 for (i = 0; i < 31; i++) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002767 if (virt_dev->eps[i].new_ring) {
2768 xhci_ring_free(xhci, virt_dev->eps[i].new_ring);
2769 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002770 }
2771 }
John Yound115b042009-07-27 12:05:15 -07002772 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002773}
2774
Sarah Sharp5270b952009-09-04 10:53:11 -07002775static void xhci_setup_input_ctx_for_config_ep(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002776 struct xhci_container_ctx *in_ctx,
2777 struct xhci_container_ctx *out_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07002778 struct xhci_input_control_ctx *ctrl_ctx,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002779 u32 add_flags, u32 drop_flags)
Sarah Sharp5270b952009-09-04 10:53:11 -07002780{
Matt Evans28ccd292011-03-29 13:40:46 +11002781 ctrl_ctx->add_flags = cpu_to_le32(add_flags);
2782 ctrl_ctx->drop_flags = cpu_to_le32(drop_flags);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002783 xhci_slot_copy(xhci, in_ctx, out_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11002784 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharp5270b952009-09-04 10:53:11 -07002785}
2786
Dmitry Torokhov8212a492011-02-08 13:55:59 -08002787static void xhci_setup_input_ctx_for_quirk(struct xhci_hcd *xhci,
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002788 unsigned int slot_id, unsigned int ep_index,
2789 struct xhci_dequeue_state *deq_state)
2790{
Sarah Sharp92f8e762013-04-23 17:11:14 -07002791 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002792 struct xhci_container_ctx *in_ctx;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002793 struct xhci_ep_ctx *ep_ctx;
2794 u32 added_ctxs;
2795 dma_addr_t addr;
2796
Sarah Sharp92f8e762013-04-23 17:11:14 -07002797 in_ctx = xhci->devs[slot_id]->in_ctx;
Lin Wang4daf9df2015-01-09 16:06:31 +02002798 ctrl_ctx = xhci_get_input_control_ctx(in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002799 if (!ctrl_ctx) {
2800 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2801 __func__);
2802 return;
2803 }
2804
Sarah Sharp913a8a32009-09-04 10:53:13 -07002805 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
2806 xhci->devs[slot_id]->out_ctx, ep_index);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002807 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
2808 addr = xhci_trb_virt_to_dma(deq_state->new_deq_seg,
2809 deq_state->new_deq_ptr);
2810 if (addr == 0) {
2811 xhci_warn(xhci, "WARN Cannot submit config ep after "
2812 "reset ep command\n");
2813 xhci_warn(xhci, "WARN deq seg = %p, deq ptr = %p\n",
2814 deq_state->new_deq_seg,
2815 deq_state->new_deq_ptr);
2816 return;
2817 }
Matt Evans28ccd292011-03-29 13:40:46 +11002818 ep_ctx->deq = cpu_to_le64(addr | deq_state->new_cycle_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002819
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002820 added_ctxs = xhci_get_endpoint_flag_from_index(ep_index);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002821 xhci_setup_input_ctx_for_config_ep(xhci, xhci->devs[slot_id]->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07002822 xhci->devs[slot_id]->out_ctx, ctrl_ctx,
2823 added_ctxs, added_ctxs);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002824}
2825
Sarah Sharp82d10092009-08-07 14:04:52 -07002826void xhci_cleanup_stalled_ring(struct xhci_hcd *xhci,
Mathias Nymand97b4f82014-11-27 18:19:16 +02002827 unsigned int ep_index, struct xhci_td *td)
Sarah Sharp82d10092009-08-07 14:04:52 -07002828{
2829 struct xhci_dequeue_state deq_state;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002830 struct xhci_virt_ep *ep;
Mathias Nymand97b4f82014-11-27 18:19:16 +02002831 struct usb_device *udev = td->urb->dev;
Sarah Sharp82d10092009-08-07 14:04:52 -07002832
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002833 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2834 "Cleaning up stalled endpoint ring");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002835 ep = &xhci->devs[udev->slot_id]->eps[ep_index];
Sarah Sharp82d10092009-08-07 14:04:52 -07002836 /* We need to move the HW's dequeue pointer past this TD,
2837 * or it will attempt to resend it on the next doorbell ring.
2838 */
2839 xhci_find_new_dequeue_state(xhci, udev->slot_id,
Mathias Nymand97b4f82014-11-27 18:19:16 +02002840 ep_index, ep->stopped_stream, td, &deq_state);
Sarah Sharp82d10092009-08-07 14:04:52 -07002841
Mathias Nyman365038d2014-08-19 15:17:58 +03002842 if (!deq_state.new_deq_ptr || !deq_state.new_deq_seg)
2843 return;
2844
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002845 /* HW with the reset endpoint quirk will use the saved dequeue state to
2846 * issue a configure endpoint command later.
2847 */
2848 if (!(xhci->quirks & XHCI_RESET_EP_QUIRK)) {
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002849 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2850 "Queueing new dequeue state");
Hans de Goede1e3452e2014-08-20 16:41:52 +03002851 xhci_queue_new_dequeue_state(xhci, udev->slot_id,
Mathias Nyman87907362017-06-02 16:36:23 +03002852 ep_index, &deq_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002853 } else {
2854 /* Better hope no one uses the input context between now and the
2855 * reset endpoint completion!
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002856 * XXX: No idea how this hardware will react when stream rings
2857 * are enabled.
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002858 */
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002859 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2860 "Setting up input context for "
2861 "configure endpoint command");
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002862 xhci_setup_input_ctx_for_quirk(xhci, udev->slot_id,
2863 ep_index, &deq_state);
2864 }
Sarah Sharp82d10092009-08-07 14:04:52 -07002865}
2866
Mathias Nymand0167ad2015-03-10 19:49:00 +02002867/* Called when clearing halted device. The core should have sent the control
Mathias Nyman8e71a322014-11-18 11:27:12 +02002868 * message to clear the device halt condition. The host side of the halt should
Mathias Nymand0167ad2015-03-10 19:49:00 +02002869 * already be cleared with a reset endpoint command issued when the STALL tx
2870 * event was received.
2871 *
2872 * Context: in_interrupt
Sarah Sharpa1587d92009-07-27 12:03:15 -07002873 */
Mathias Nyman8e71a322014-11-18 11:27:12 +02002874
Lu Baolu39693842017-04-07 17:57:04 +03002875static void xhci_endpoint_reset(struct usb_hcd *hcd,
Sarah Sharpa1587d92009-07-27 12:03:15 -07002876 struct usb_host_endpoint *ep)
2877{
2878 struct xhci_hcd *xhci;
Sarah Sharpa1587d92009-07-27 12:03:15 -07002879
2880 xhci = hcd_to_xhci(hcd);
Sarah Sharpa1587d92009-07-27 12:03:15 -07002881
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002882 /*
Mathias Nymand0167ad2015-03-10 19:49:00 +02002883 * We might need to implement the config ep cmd in xhci 4.8.1 note:
Mathias Nyman8e71a322014-11-18 11:27:12 +02002884 * The Reset Endpoint Command may only be issued to endpoints in the
2885 * Halted state. If software wishes reset the Data Toggle or Sequence
2886 * Number of an endpoint that isn't in the Halted state, then software
2887 * may issue a Configure Endpoint Command with the Drop and Add bits set
2888 * for the target endpoint. that is in the Stopped state.
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002889 */
Sarah Sharpa1587d92009-07-27 12:03:15 -07002890
Mathias Nymand0167ad2015-03-10 19:49:00 +02002891 /* For now just print debug to follow the situation */
2892 xhci_dbg(xhci, "Endpoint 0x%x ep reset callback called\n",
2893 ep->desc.bEndpointAddress);
Sarah Sharpa1587d92009-07-27 12:03:15 -07002894}
2895
Sarah Sharp8df75f42010-04-02 15:34:16 -07002896static int xhci_check_streams_endpoint(struct xhci_hcd *xhci,
2897 struct usb_device *udev, struct usb_host_endpoint *ep,
2898 unsigned int slot_id)
2899{
2900 int ret;
2901 unsigned int ep_index;
2902 unsigned int ep_state;
2903
2904 if (!ep)
2905 return -EINVAL;
Andiry Xu64927732010-10-14 07:22:45 -07002906 ret = xhci_check_args(xhci_to_hcd(xhci), udev, ep, 1, true, __func__);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002907 if (ret <= 0)
2908 return -EINVAL;
Hans de Goedea3901532013-10-04 17:05:55 +02002909 if (usb_ss_max_streams(&ep->ss_ep_comp) == 0) {
Sarah Sharp8df75f42010-04-02 15:34:16 -07002910 xhci_warn(xhci, "WARN: SuperSpeed Endpoint Companion"
2911 " descriptor for ep 0x%x does not support streams\n",
2912 ep->desc.bEndpointAddress);
2913 return -EINVAL;
2914 }
2915
2916 ep_index = xhci_get_endpoint_index(&ep->desc);
2917 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
2918 if (ep_state & EP_HAS_STREAMS ||
2919 ep_state & EP_GETTING_STREAMS) {
2920 xhci_warn(xhci, "WARN: SuperSpeed bulk endpoint 0x%x "
2921 "already has streams set up.\n",
2922 ep->desc.bEndpointAddress);
2923 xhci_warn(xhci, "Send email to xHCI maintainer and ask for "
2924 "dynamic stream context array reallocation.\n");
2925 return -EINVAL;
2926 }
2927 if (!list_empty(&xhci->devs[slot_id]->eps[ep_index].ring->td_list)) {
2928 xhci_warn(xhci, "Cannot setup streams for SuperSpeed bulk "
2929 "endpoint 0x%x; URBs are pending.\n",
2930 ep->desc.bEndpointAddress);
2931 return -EINVAL;
2932 }
2933 return 0;
2934}
2935
2936static void xhci_calculate_streams_entries(struct xhci_hcd *xhci,
2937 unsigned int *num_streams, unsigned int *num_stream_ctxs)
2938{
2939 unsigned int max_streams;
2940
2941 /* The stream context array size must be a power of two */
2942 *num_stream_ctxs = roundup_pow_of_two(*num_streams);
2943 /*
2944 * Find out how many primary stream array entries the host controller
2945 * supports. Later we may use secondary stream arrays (similar to 2nd
2946 * level page entries), but that's an optional feature for xHCI host
2947 * controllers. xHCs must support at least 4 stream IDs.
2948 */
2949 max_streams = HCC_MAX_PSA(xhci->hcc_params);
2950 if (*num_stream_ctxs > max_streams) {
2951 xhci_dbg(xhci, "xHCI HW only supports %u stream ctx entries.\n",
2952 max_streams);
2953 *num_stream_ctxs = max_streams;
2954 *num_streams = max_streams;
2955 }
2956}
2957
2958/* Returns an error code if one of the endpoint already has streams.
2959 * This does not change any data structures, it only checks and gathers
2960 * information.
2961 */
2962static int xhci_calculate_streams_and_bitmask(struct xhci_hcd *xhci,
2963 struct usb_device *udev,
2964 struct usb_host_endpoint **eps, unsigned int num_eps,
2965 unsigned int *num_streams, u32 *changed_ep_bitmask)
2966{
Sarah Sharp8df75f42010-04-02 15:34:16 -07002967 unsigned int max_streams;
2968 unsigned int endpoint_flag;
2969 int i;
2970 int ret;
2971
2972 for (i = 0; i < num_eps; i++) {
2973 ret = xhci_check_streams_endpoint(xhci, udev,
2974 eps[i], udev->slot_id);
2975 if (ret < 0)
2976 return ret;
2977
Felipe Balbi18b7ede2012-01-02 13:35:41 +02002978 max_streams = usb_ss_max_streams(&eps[i]->ss_ep_comp);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002979 if (max_streams < (*num_streams - 1)) {
2980 xhci_dbg(xhci, "Ep 0x%x only supports %u stream IDs.\n",
2981 eps[i]->desc.bEndpointAddress,
2982 max_streams);
2983 *num_streams = max_streams+1;
2984 }
2985
2986 endpoint_flag = xhci_get_endpoint_flag(&eps[i]->desc);
2987 if (*changed_ep_bitmask & endpoint_flag)
2988 return -EINVAL;
2989 *changed_ep_bitmask |= endpoint_flag;
2990 }
2991 return 0;
2992}
2993
2994static u32 xhci_calculate_no_streams_bitmask(struct xhci_hcd *xhci,
2995 struct usb_device *udev,
2996 struct usb_host_endpoint **eps, unsigned int num_eps)
2997{
2998 u32 changed_ep_bitmask = 0;
2999 unsigned int slot_id;
3000 unsigned int ep_index;
3001 unsigned int ep_state;
3002 int i;
3003
3004 slot_id = udev->slot_id;
3005 if (!xhci->devs[slot_id])
3006 return 0;
3007
3008 for (i = 0; i < num_eps; i++) {
3009 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3010 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
3011 /* Are streams already being freed for the endpoint? */
3012 if (ep_state & EP_GETTING_NO_STREAMS) {
3013 xhci_warn(xhci, "WARN Can't disable streams for "
Joe Perches03e64e92013-07-16 19:25:59 -07003014 "endpoint 0x%x, "
3015 "streams are being disabled already\n",
Sarah Sharp8df75f42010-04-02 15:34:16 -07003016 eps[i]->desc.bEndpointAddress);
3017 return 0;
3018 }
3019 /* Are there actually any streams to free? */
3020 if (!(ep_state & EP_HAS_STREAMS) &&
3021 !(ep_state & EP_GETTING_STREAMS)) {
3022 xhci_warn(xhci, "WARN Can't disable streams for "
Joe Perches03e64e92013-07-16 19:25:59 -07003023 "endpoint 0x%x, "
3024 "streams are already disabled!\n",
Sarah Sharp8df75f42010-04-02 15:34:16 -07003025 eps[i]->desc.bEndpointAddress);
3026 xhci_warn(xhci, "WARN xhci_free_streams() called "
3027 "with non-streams endpoint\n");
3028 return 0;
3029 }
3030 changed_ep_bitmask |= xhci_get_endpoint_flag(&eps[i]->desc);
3031 }
3032 return changed_ep_bitmask;
3033}
3034
3035/*
Luis de Bethencourtc2a298d2015-06-30 16:48:54 +02003036 * The USB device drivers use this function (through the HCD interface in USB
Sarah Sharp8df75f42010-04-02 15:34:16 -07003037 * core) to prepare a set of bulk endpoints to use streams. Streams are used to
3038 * coordinate mass storage command queueing across multiple endpoints (basically
3039 * a stream ID == a task ID).
3040 *
3041 * Setting up streams involves allocating the same size stream context array
3042 * for each endpoint and issuing a configure endpoint command for all endpoints.
3043 *
3044 * Don't allow the call to succeed if one endpoint only supports one stream
3045 * (which means it doesn't support streams at all).
3046 *
3047 * Drivers may get less stream IDs than they asked for, if the host controller
3048 * hardware or endpoints claim they can't support the number of requested
3049 * stream IDs.
3050 */
Lu Baolu39693842017-04-07 17:57:04 +03003051static int xhci_alloc_streams(struct usb_hcd *hcd, struct usb_device *udev,
Sarah Sharp8df75f42010-04-02 15:34:16 -07003052 struct usb_host_endpoint **eps, unsigned int num_eps,
3053 unsigned int num_streams, gfp_t mem_flags)
3054{
3055 int i, ret;
3056 struct xhci_hcd *xhci;
3057 struct xhci_virt_device *vdev;
3058 struct xhci_command *config_cmd;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003059 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003060 unsigned int ep_index;
3061 unsigned int num_stream_ctxs;
Mathias Nymanf9c589e2016-06-21 10:58:02 +03003062 unsigned int max_packet;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003063 unsigned long flags;
3064 u32 changed_ep_bitmask = 0;
3065
3066 if (!eps)
3067 return -EINVAL;
3068
3069 /* Add one to the number of streams requested to account for
3070 * stream 0 that is reserved for xHCI usage.
3071 */
3072 num_streams += 1;
3073 xhci = hcd_to_xhci(hcd);
3074 xhci_dbg(xhci, "Driver wants %u stream IDs (including stream 0).\n",
3075 num_streams);
3076
Hans de Goedef7920882013-11-15 12:14:38 +01003077 /* MaxPSASize value 0 (2 streams) means streams are not supported */
Hans de Goede8f873c12014-07-25 22:01:18 +02003078 if ((xhci->quirks & XHCI_BROKEN_STREAMS) ||
3079 HCC_MAX_PSA(xhci->hcc_params) < 4) {
Hans de Goedef7920882013-11-15 12:14:38 +01003080 xhci_dbg(xhci, "xHCI controller does not support streams.\n");
3081 return -ENOSYS;
3082 }
3083
Sarah Sharp8df75f42010-04-02 15:34:16 -07003084 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
Lu Baolu74e0b562017-04-07 17:57:05 +03003085 if (!config_cmd)
Sarah Sharp8df75f42010-04-02 15:34:16 -07003086 return -ENOMEM;
Lu Baolu74e0b562017-04-07 17:57:05 +03003087
Lin Wang4daf9df2015-01-09 16:06:31 +02003088 ctrl_ctx = xhci_get_input_control_ctx(config_cmd->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003089 if (!ctrl_ctx) {
3090 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3091 __func__);
3092 xhci_free_command(xhci, config_cmd);
3093 return -ENOMEM;
3094 }
Sarah Sharp8df75f42010-04-02 15:34:16 -07003095
3096 /* Check to make sure all endpoints are not already configured for
3097 * streams. While we're at it, find the maximum number of streams that
3098 * all the endpoints will support and check for duplicate endpoints.
3099 */
3100 spin_lock_irqsave(&xhci->lock, flags);
3101 ret = xhci_calculate_streams_and_bitmask(xhci, udev, eps,
3102 num_eps, &num_streams, &changed_ep_bitmask);
3103 if (ret < 0) {
3104 xhci_free_command(xhci, config_cmd);
3105 spin_unlock_irqrestore(&xhci->lock, flags);
3106 return ret;
3107 }
3108 if (num_streams <= 1) {
3109 xhci_warn(xhci, "WARN: endpoints can't handle "
3110 "more than one stream.\n");
3111 xhci_free_command(xhci, config_cmd);
3112 spin_unlock_irqrestore(&xhci->lock, flags);
3113 return -EINVAL;
3114 }
3115 vdev = xhci->devs[udev->slot_id];
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003116 /* Mark each endpoint as being in transition, so
Sarah Sharp8df75f42010-04-02 15:34:16 -07003117 * xhci_urb_enqueue() will reject all URBs.
3118 */
3119 for (i = 0; i < num_eps; i++) {
3120 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3121 vdev->eps[ep_index].ep_state |= EP_GETTING_STREAMS;
3122 }
3123 spin_unlock_irqrestore(&xhci->lock, flags);
3124
3125 /* Setup internal data structures and allocate HW data structures for
3126 * streams (but don't install the HW structures in the input context
3127 * until we're sure all memory allocation succeeded).
3128 */
3129 xhci_calculate_streams_entries(xhci, &num_streams, &num_stream_ctxs);
3130 xhci_dbg(xhci, "Need %u stream ctx entries for %u stream IDs.\n",
3131 num_stream_ctxs, num_streams);
3132
3133 for (i = 0; i < num_eps; i++) {
3134 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
Felipe Balbi734d3dd2016-09-28 13:46:37 +03003135 max_packet = usb_endpoint_maxp(&eps[i]->desc);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003136 vdev->eps[ep_index].stream_info = xhci_alloc_stream_info(xhci,
3137 num_stream_ctxs,
Mathias Nymanf9c589e2016-06-21 10:58:02 +03003138 num_streams,
3139 max_packet, mem_flags);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003140 if (!vdev->eps[ep_index].stream_info)
3141 goto cleanup;
3142 /* Set maxPstreams in endpoint context and update deq ptr to
3143 * point to stream context array. FIXME
3144 */
3145 }
3146
3147 /* Set up the input context for a configure endpoint command. */
3148 for (i = 0; i < num_eps; i++) {
3149 struct xhci_ep_ctx *ep_ctx;
3150
3151 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3152 ep_ctx = xhci_get_ep_ctx(xhci, config_cmd->in_ctx, ep_index);
3153
3154 xhci_endpoint_copy(xhci, config_cmd->in_ctx,
3155 vdev->out_ctx, ep_index);
3156 xhci_setup_streams_ep_input_ctx(xhci, ep_ctx,
3157 vdev->eps[ep_index].stream_info);
3158 }
3159 /* Tell the HW to drop its old copy of the endpoint context info
3160 * and add the updated copy from the input context.
3161 */
3162 xhci_setup_input_ctx_for_config_ep(xhci, config_cmd->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07003163 vdev->out_ctx, ctrl_ctx,
3164 changed_ep_bitmask, changed_ep_bitmask);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003165
3166 /* Issue and wait for the configure endpoint command */
3167 ret = xhci_configure_endpoint(xhci, udev, config_cmd,
3168 false, false);
3169
3170 /* xHC rejected the configure endpoint command for some reason, so we
3171 * leave the old ring intact and free our internal streams data
3172 * structure.
3173 */
3174 if (ret < 0)
3175 goto cleanup;
3176
3177 spin_lock_irqsave(&xhci->lock, flags);
3178 for (i = 0; i < num_eps; i++) {
3179 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3180 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3181 xhci_dbg(xhci, "Slot %u ep ctx %u now has streams.\n",
3182 udev->slot_id, ep_index);
3183 vdev->eps[ep_index].ep_state |= EP_HAS_STREAMS;
3184 }
3185 xhci_free_command(xhci, config_cmd);
3186 spin_unlock_irqrestore(&xhci->lock, flags);
3187
3188 /* Subtract 1 for stream 0, which drivers can't use */
3189 return num_streams - 1;
3190
3191cleanup:
3192 /* If it didn't work, free the streams! */
3193 for (i = 0; i < num_eps; i++) {
3194 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3195 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003196 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003197 /* FIXME Unset maxPstreams in endpoint context and
3198 * update deq ptr to point to normal string ring.
3199 */
3200 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3201 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3202 xhci_endpoint_zero(xhci, vdev, eps[i]);
3203 }
3204 xhci_free_command(xhci, config_cmd);
3205 return -ENOMEM;
3206}
3207
3208/* Transition the endpoint from using streams to being a "normal" endpoint
3209 * without streams.
3210 *
3211 * Modify the endpoint context state, submit a configure endpoint command,
3212 * and free all endpoint rings for streams if that completes successfully.
3213 */
Lu Baolu39693842017-04-07 17:57:04 +03003214static int xhci_free_streams(struct usb_hcd *hcd, struct usb_device *udev,
Sarah Sharp8df75f42010-04-02 15:34:16 -07003215 struct usb_host_endpoint **eps, unsigned int num_eps,
3216 gfp_t mem_flags)
3217{
3218 int i, ret;
3219 struct xhci_hcd *xhci;
3220 struct xhci_virt_device *vdev;
3221 struct xhci_command *command;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003222 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003223 unsigned int ep_index;
3224 unsigned long flags;
3225 u32 changed_ep_bitmask;
3226
3227 xhci = hcd_to_xhci(hcd);
3228 vdev = xhci->devs[udev->slot_id];
3229
3230 /* Set up a configure endpoint command to remove the streams rings */
3231 spin_lock_irqsave(&xhci->lock, flags);
3232 changed_ep_bitmask = xhci_calculate_no_streams_bitmask(xhci,
3233 udev, eps, num_eps);
3234 if (changed_ep_bitmask == 0) {
3235 spin_unlock_irqrestore(&xhci->lock, flags);
3236 return -EINVAL;
3237 }
3238
3239 /* Use the xhci_command structure from the first endpoint. We may have
3240 * allocated too many, but the driver may call xhci_free_streams() for
3241 * each endpoint it grouped into one call to xhci_alloc_streams().
3242 */
3243 ep_index = xhci_get_endpoint_index(&eps[0]->desc);
3244 command = vdev->eps[ep_index].stream_info->free_streams_command;
Lin Wang4daf9df2015-01-09 16:06:31 +02003245 ctrl_ctx = xhci_get_input_control_ctx(command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003246 if (!ctrl_ctx) {
Emil Goode1f215692013-06-25 15:49:36 -07003247 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003248 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3249 __func__);
3250 return -EINVAL;
3251 }
3252
Sarah Sharp8df75f42010-04-02 15:34:16 -07003253 for (i = 0; i < num_eps; i++) {
3254 struct xhci_ep_ctx *ep_ctx;
3255
3256 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3257 ep_ctx = xhci_get_ep_ctx(xhci, command->in_ctx, ep_index);
3258 xhci->devs[udev->slot_id]->eps[ep_index].ep_state |=
3259 EP_GETTING_NO_STREAMS;
3260
3261 xhci_endpoint_copy(xhci, command->in_ctx,
3262 vdev->out_ctx, ep_index);
Lin Wang4daf9df2015-01-09 16:06:31 +02003263 xhci_setup_no_streams_ep_input_ctx(ep_ctx,
Sarah Sharp8df75f42010-04-02 15:34:16 -07003264 &vdev->eps[ep_index]);
3265 }
3266 xhci_setup_input_ctx_for_config_ep(xhci, command->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07003267 vdev->out_ctx, ctrl_ctx,
3268 changed_ep_bitmask, changed_ep_bitmask);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003269 spin_unlock_irqrestore(&xhci->lock, flags);
3270
3271 /* Issue and wait for the configure endpoint command,
3272 * which must succeed.
3273 */
3274 ret = xhci_configure_endpoint(xhci, udev, command,
3275 false, true);
3276
3277 /* xHC rejected the configure endpoint command for some reason, so we
3278 * leave the streams rings intact.
3279 */
3280 if (ret < 0)
3281 return ret;
3282
3283 spin_lock_irqsave(&xhci->lock, flags);
3284 for (i = 0; i < num_eps; i++) {
3285 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3286 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003287 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003288 /* FIXME Unset maxPstreams in endpoint context and
3289 * update deq ptr to point to normal string ring.
3290 */
3291 vdev->eps[ep_index].ep_state &= ~EP_GETTING_NO_STREAMS;
3292 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3293 }
3294 spin_unlock_irqrestore(&xhci->lock, flags);
3295
3296 return 0;
3297}
3298
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003299/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003300 * Deletes endpoint resources for endpoints that were active before a Reset
3301 * Device command, or a Disable Slot command. The Reset Device command leaves
3302 * the control endpoint intact, whereas the Disable Slot command deletes it.
3303 *
3304 * Must be called with xhci->lock held.
3305 */
3306void xhci_free_device_endpoint_resources(struct xhci_hcd *xhci,
3307 struct xhci_virt_device *virt_dev, bool drop_control_ep)
3308{
3309 int i;
3310 unsigned int num_dropped_eps = 0;
3311 unsigned int drop_flags = 0;
3312
3313 for (i = (drop_control_ep ? 0 : 1); i < 31; i++) {
3314 if (virt_dev->eps[i].ring) {
3315 drop_flags |= 1 << i;
3316 num_dropped_eps++;
3317 }
3318 }
3319 xhci->num_active_eps -= num_dropped_eps;
3320 if (num_dropped_eps)
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003321 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3322 "Dropped %u ep ctxs, flags = 0x%x, "
3323 "%u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003324 num_dropped_eps, drop_flags,
3325 xhci->num_active_eps);
3326}
3327
3328/*
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003329 * This submits a Reset Device Command, which will set the device state to 0,
3330 * set the device address to 0, and disable all the endpoints except the default
3331 * control endpoint. The USB core should come back and call
3332 * xhci_address_device(), and then re-set up the configuration. If this is
3333 * called because of a usb_reset_and_verify_device(), then the old alternate
3334 * settings will be re-installed through the normal bandwidth allocation
3335 * functions.
3336 *
3337 * Wait for the Reset Device command to finish. Remove all structures
3338 * associated with the endpoints that were disabled. Clear the input device
3339 * structure? Cache the rings? Reset the control endpoint 0 max packet size?
Andiry Xuf0615c42010-10-14 07:22:48 -07003340 *
3341 * If the virt_dev to be reset does not exist or does not match the udev,
3342 * it means the device is lost, possibly due to the xHC restore error and
3343 * re-initialization during S3/S4. In this case, call xhci_alloc_dev() to
3344 * re-allocate the device.
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003345 */
Lu Baolu39693842017-04-07 17:57:04 +03003346static int xhci_discover_or_reset_device(struct usb_hcd *hcd,
3347 struct usb_device *udev)
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003348{
3349 int ret, i;
3350 unsigned long flags;
3351 struct xhci_hcd *xhci;
3352 unsigned int slot_id;
3353 struct xhci_virt_device *virt_dev;
3354 struct xhci_command *reset_device_cmd;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003355 int last_freed_endpoint;
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003356 struct xhci_slot_ctx *slot_ctx;
Sarah Sharp2e279802011-09-02 11:05:50 -07003357 int old_active_eps = 0;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003358
Andiry Xuf0615c42010-10-14 07:22:48 -07003359 ret = xhci_check_args(hcd, udev, NULL, 0, false, __func__);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003360 if (ret <= 0)
3361 return ret;
3362 xhci = hcd_to_xhci(hcd);
3363 slot_id = udev->slot_id;
3364 virt_dev = xhci->devs[slot_id];
Andiry Xuf0615c42010-10-14 07:22:48 -07003365 if (!virt_dev) {
3366 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3367 "not exist. Re-allocate the device\n", slot_id);
3368 ret = xhci_alloc_dev(hcd, udev);
3369 if (ret == 1)
3370 return 0;
3371 else
3372 return -EINVAL;
3373 }
3374
Brian Campbell326124a2015-07-21 17:20:28 +03003375 if (virt_dev->tt_info)
3376 old_active_eps = virt_dev->tt_info->active_eps;
3377
Andiry Xuf0615c42010-10-14 07:22:48 -07003378 if (virt_dev->udev != udev) {
3379 /* If the virt_dev and the udev does not match, this virt_dev
3380 * may belong to another udev.
3381 * Re-allocate the device.
3382 */
3383 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3384 "not match the udev. Re-allocate the device\n",
3385 slot_id);
3386 ret = xhci_alloc_dev(hcd, udev);
3387 if (ret == 1)
3388 return 0;
3389 else
3390 return -EINVAL;
3391 }
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003392
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003393 /* If device is not setup, there is no point in resetting it */
3394 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
3395 if (GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state)) ==
3396 SLOT_STATE_DISABLED)
3397 return 0;
3398
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003399 trace_xhci_discover_or_reset_device(slot_ctx);
3400
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003401 xhci_dbg(xhci, "Resetting device with slot ID %u\n", slot_id);
3402 /* Allocate the command structure that holds the struct completion.
3403 * Assume we're in process context, since the normal device reset
3404 * process has to wait for the device anyway. Storage devices are
3405 * reset as part of error handling, so use GFP_NOIO instead of
3406 * GFP_KERNEL.
3407 */
3408 reset_device_cmd = xhci_alloc_command(xhci, false, true, GFP_NOIO);
3409 if (!reset_device_cmd) {
3410 xhci_dbg(xhci, "Couldn't allocate command structure.\n");
3411 return -ENOMEM;
3412 }
3413
3414 /* Attempt to submit the Reset Device command to the command ring */
3415 spin_lock_irqsave(&xhci->lock, flags);
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08003416
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003417 ret = xhci_queue_reset_device(xhci, reset_device_cmd, slot_id);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003418 if (ret) {
3419 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003420 spin_unlock_irqrestore(&xhci->lock, flags);
3421 goto command_cleanup;
3422 }
3423 xhci_ring_cmd_db(xhci);
3424 spin_unlock_irqrestore(&xhci->lock, flags);
3425
3426 /* Wait for the Reset Device command to finish */
Mathias Nymanc311e392014-05-08 19:26:03 +03003427 wait_for_completion(reset_device_cmd->completion);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003428
3429 /* The Reset Device command can't fail, according to the 0.95/0.96 spec,
3430 * unless we tried to reset a slot ID that wasn't enabled,
3431 * or the device wasn't in the addressed or configured state.
3432 */
3433 ret = reset_device_cmd->status;
3434 switch (ret) {
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003435 case COMP_COMMAND_ABORTED:
Mathias Nyman604d02a2017-05-17 18:32:05 +03003436 case COMP_COMMAND_RING_STOPPED:
Mathias Nymanc311e392014-05-08 19:26:03 +03003437 xhci_warn(xhci, "Timeout waiting for reset device command\n");
3438 ret = -ETIME;
3439 goto command_cleanup;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003440 case COMP_SLOT_NOT_ENABLED_ERROR: /* 0.95 completion for bad slot ID */
3441 case COMP_CONTEXT_STATE_ERROR: /* 0.96 completion code for same thing */
Xenia Ragiadakou38a532a2013-07-02 17:49:25 +03003442 xhci_dbg(xhci, "Can't reset device (slot ID %u) in %s state\n",
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003443 slot_id,
3444 xhci_get_slot_state(xhci, virt_dev->out_ctx));
Xenia Ragiadakou38a532a2013-07-02 17:49:25 +03003445 xhci_dbg(xhci, "Not freeing device rings.\n");
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003446 /* Don't treat this as an error. May change my mind later. */
3447 ret = 0;
3448 goto command_cleanup;
3449 case COMP_SUCCESS:
3450 xhci_dbg(xhci, "Successful reset device command.\n");
3451 break;
3452 default:
3453 if (xhci_is_vendor_info_code(xhci, ret))
3454 break;
3455 xhci_warn(xhci, "Unknown completion code %u for "
3456 "reset device command.\n", ret);
3457 ret = -EINVAL;
3458 goto command_cleanup;
3459 }
3460
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003461 /* Free up host controller endpoint resources */
3462 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3463 spin_lock_irqsave(&xhci->lock, flags);
3464 /* Don't delete the default control endpoint resources */
3465 xhci_free_device_endpoint_resources(xhci, virt_dev, false);
3466 spin_unlock_irqrestore(&xhci->lock, flags);
3467 }
3468
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003469 /* Everything but endpoint 0 is disabled, so free or cache the rings. */
3470 last_freed_endpoint = 1;
Felipe Balbi98871e92017-01-23 14:20:04 +02003471 for (i = 1; i < 31; i++) {
Dmitry Torokhov2dea75d2011-04-12 23:06:28 -07003472 struct xhci_virt_ep *ep = &virt_dev->eps[i];
3473
3474 if (ep->ep_state & EP_HAS_STREAMS) {
Hans de Goededf613832013-10-04 00:29:45 +02003475 xhci_warn(xhci, "WARN: endpoint 0x%02x has streams on device reset, freeing streams.\n",
3476 xhci_get_endpoint_address(i));
Dmitry Torokhov2dea75d2011-04-12 23:06:28 -07003477 xhci_free_stream_info(xhci, ep->stream_info);
3478 ep->stream_info = NULL;
3479 ep->ep_state &= ~EP_HAS_STREAMS;
3480 }
3481
3482 if (ep->ring) {
3483 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
3484 last_freed_endpoint = i;
3485 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003486 if (!list_empty(&virt_dev->eps[i].bw_endpoint_list))
3487 xhci_drop_ep_from_interval_table(xhci,
3488 &virt_dev->eps[i].bw_info,
3489 virt_dev->bw_table,
3490 udev,
3491 &virt_dev->eps[i],
3492 virt_dev->tt_info);
Sarah Sharp9af5d712011-09-02 11:05:48 -07003493 xhci_clear_endpoint_bw_info(&virt_dev->eps[i].bw_info);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003494 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003495 /* If necessary, update the number of active TTs on this root port */
3496 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003497 ret = 0;
3498
3499command_cleanup:
3500 xhci_free_command(xhci, reset_device_cmd);
3501 return ret;
3502}
3503
3504/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003505 * At this point, the struct usb_device is about to go away, the device has
3506 * disconnected, and all traffic has been stopped and the endpoints have been
3507 * disabled. Free any HC data structures associated with that device.
3508 */
Lu Baolu39693842017-04-07 17:57:04 +03003509static void xhci_free_dev(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003510{
3511 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003512 struct xhci_virt_device *virt_dev;
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003513 struct xhci_slot_ctx *slot_ctx;
Andiry Xu64927732010-10-14 07:22:45 -07003514 int i, ret;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003515 struct xhci_command *command;
3516
3517 command = xhci_alloc_command(xhci, false, false, GFP_KERNEL);
3518 if (!command)
3519 return;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003520
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003521#ifndef CONFIG_USB_DEFAULT_PERSIST
3522 /*
3523 * We called pm_runtime_get_noresume when the device was attached.
3524 * Decrement the counter here to allow controller to runtime suspend
3525 * if no devices remain.
3526 */
3527 if (xhci->quirks & XHCI_RESET_ON_RESUME)
Sarah Sharpe7ecf062013-08-28 09:31:04 -07003528 pm_runtime_put_noidle(hcd->self.controller);
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003529#endif
3530
Andiry Xu64927732010-10-14 07:22:45 -07003531 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003532 /* If the host is halted due to driver unload, we still need to free the
3533 * device.
3534 */
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003535 if (ret <= 0 && ret != -ENODEV) {
3536 kfree(command);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003537 return;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003538 }
Andiry Xu64927732010-10-14 07:22:45 -07003539
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003540 virt_dev = xhci->devs[udev->slot_id];
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003541 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
3542 trace_xhci_free_dev(slot_ctx);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003543
3544 /* Stop any wayward timer functions (which may grab the lock) */
Felipe Balbi98871e92017-01-23 14:20:04 +02003545 for (i = 0; i < 31; i++) {
Mathias Nyman9983a5f2017-01-23 14:19:52 +02003546 virt_dev->eps[i].ep_state &= ~EP_STOP_CMD_PENDING;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003547 del_timer_sync(&virt_dev->eps[i].stop_cmd_timer);
3548 }
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003549
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003550 xhci_disable_slot(xhci, command, udev->slot_id);
3551 /*
3552 * Event command completion handler will free any data structures
3553 * associated with the slot. XXX Can free sleep?
3554 */
3555}
3556
3557int xhci_disable_slot(struct xhci_hcd *xhci, struct xhci_command *command,
3558 u32 slot_id)
3559{
3560 unsigned long flags;
3561 u32 state;
3562 int ret = 0;
3563 struct xhci_virt_device *virt_dev;
3564
3565 virt_dev = xhci->devs[slot_id];
3566 if (!virt_dev)
3567 return -EINVAL;
3568 if (!command)
3569 command = xhci_alloc_command(xhci, false, false, GFP_KERNEL);
3570 if (!command)
3571 return -ENOMEM;
3572
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003573 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003574 /* Don't disable the slot if the host controller is dead. */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02003575 state = readl(&xhci->op_regs->status);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003576 if (state == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING) ||
3577 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003578 xhci_free_virt_device(xhci, slot_id);
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003579 spin_unlock_irqrestore(&xhci->lock, flags);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003580 kfree(command);
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003581 return ret;
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003582 }
3583
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003584 ret = xhci_queue_slot_control(xhci, command, TRB_DISABLE_SLOT,
3585 slot_id);
3586 if (ret) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003587 spin_unlock_irqrestore(&xhci->lock, flags);
3588 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003589 return ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003590 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003591 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003592 spin_unlock_irqrestore(&xhci->lock, flags);
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003593 return ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003594}
3595
3596/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003597 * Checks if we have enough host controller resources for the default control
3598 * endpoint.
3599 *
3600 * Must be called with xhci->lock held.
3601 */
3602static int xhci_reserve_host_control_ep_resources(struct xhci_hcd *xhci)
3603{
3604 if (xhci->num_active_eps + 1 > xhci->limit_active_eps) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003605 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3606 "Not enough ep ctxs: "
3607 "%u active, need to add 1, limit is %u.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003608 xhci->num_active_eps, xhci->limit_active_eps);
3609 return -ENOMEM;
3610 }
3611 xhci->num_active_eps += 1;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003612 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3613 "Adding 1 ep ctx, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003614 xhci->num_active_eps);
3615 return 0;
3616}
3617
3618
3619/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003620 * Returns 0 if the xHC ran out of device slots, the Enable Slot command
3621 * timed out, or allocating memory failed. Returns 1 on success.
3622 */
3623int xhci_alloc_dev(struct usb_hcd *hcd, struct usb_device *udev)
3624{
3625 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003626 struct xhci_virt_device *vdev;
3627 struct xhci_slot_ctx *slot_ctx;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003628 unsigned long flags;
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003629 int ret, slot_id;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003630 struct xhci_command *command;
3631
Lu Baolu87e44f22016-11-11 15:13:30 +02003632 command = xhci_alloc_command(xhci, false, true, GFP_KERNEL);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003633 if (!command)
3634 return 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003635
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003636 /* xhci->slot_id and xhci->addr_dev are not thread-safe */
3637 mutex_lock(&xhci->mutex);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003638 spin_lock_irqsave(&xhci->lock, flags);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003639 ret = xhci_queue_slot_control(xhci, command, TRB_ENABLE_SLOT, 0);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003640 if (ret) {
3641 spin_unlock_irqrestore(&xhci->lock, flags);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003642 mutex_unlock(&xhci->mutex);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003643 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
Lu Baolu87e44f22016-11-11 15:13:30 +02003644 xhci_free_command(xhci, command);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003645 return 0;
3646 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003647 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003648 spin_unlock_irqrestore(&xhci->lock, flags);
3649
Mathias Nymanc311e392014-05-08 19:26:03 +03003650 wait_for_completion(command->completion);
Lu Baoluc2d3d492016-11-11 15:13:31 +02003651 slot_id = command->slot_id;
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003652 mutex_unlock(&xhci->mutex);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003653
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003654 if (!slot_id || command->status != COMP_SUCCESS) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003655 xhci_err(xhci, "Error while assigning device slot ID\n");
Sarah Sharpbe982032014-05-08 19:25:59 +03003656 xhci_err(xhci, "Max number of devices this xHCI host supports is %u.\n",
3657 HCS_MAX_SLOTS(
3658 readl(&xhci->cap_regs->hcs_params1)));
Lu Baolu87e44f22016-11-11 15:13:30 +02003659 xhci_free_command(xhci, command);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003660 return 0;
3661 }
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003662
3663 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3664 spin_lock_irqsave(&xhci->lock, flags);
3665 ret = xhci_reserve_host_control_ep_resources(xhci);
3666 if (ret) {
3667 spin_unlock_irqrestore(&xhci->lock, flags);
3668 xhci_warn(xhci, "Not enough host resources, "
3669 "active endpoint contexts = %u\n",
3670 xhci->num_active_eps);
3671 goto disable_slot;
3672 }
3673 spin_unlock_irqrestore(&xhci->lock, flags);
3674 }
3675 /* Use GFP_NOIO, since this function can be called from
Sarah Sharpa6d940d2010-12-28 13:08:42 -08003676 * xhci_discover_or_reset_device(), which may be called as part of
3677 * mass storage driver error handling.
3678 */
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003679 if (!xhci_alloc_virt_device(xhci, slot_id, udev, GFP_NOIO)) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003680 xhci_warn(xhci, "Could not allocate xHCI USB device data structures\n");
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003681 goto disable_slot;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003682 }
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003683 vdev = xhci->devs[slot_id];
3684 slot_ctx = xhci_get_slot_ctx(xhci, vdev->out_ctx);
3685 trace_xhci_alloc_dev(slot_ctx);
3686
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003687 udev->slot_id = slot_id;
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003688
3689#ifndef CONFIG_USB_DEFAULT_PERSIST
3690 /*
3691 * If resetting upon resume, we can't put the controller into runtime
3692 * suspend if there is a device attached.
3693 */
3694 if (xhci->quirks & XHCI_RESET_ON_RESUME)
Sarah Sharpe7ecf062013-08-28 09:31:04 -07003695 pm_runtime_get_noresume(hcd->self.controller);
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003696#endif
3697
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003698
Lu Baolu87e44f22016-11-11 15:13:30 +02003699 xhci_free_command(xhci, command);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003700 /* Is this a LS or FS device under a HS hub? */
3701 /* Hub or peripherial? */
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003702 return 1;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003703
3704disable_slot:
3705 /* Disable slot, if we can do it without mem alloc */
Lu Baolu87e44f22016-11-11 15:13:30 +02003706 kfree(command->completion);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003707 command->completion = NULL;
3708 command->status = 0;
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003709 return xhci_disable_slot(xhci, command, udev->slot_id);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003710}
3711
3712/*
Dan Williams48fc7db2013-12-05 17:07:27 -08003713 * Issue an Address Device command and optionally send a corresponding
3714 * SetAddress request to the device.
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003715 */
Dan Williams48fc7db2013-12-05 17:07:27 -08003716static int xhci_setup_device(struct usb_hcd *hcd, struct usb_device *udev,
3717 enum xhci_setup_dev setup)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003718{
Dan Williams6f8ffc02013-11-22 01:20:01 -08003719 const char *act = setup == SETUP_CONTEXT_ONLY ? "context" : "address";
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003720 unsigned long flags;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003721 struct xhci_virt_device *virt_dev;
3722 int ret = 0;
3723 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
John Yound115b042009-07-27 12:05:15 -07003724 struct xhci_slot_ctx *slot_ctx;
3725 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8e595a52009-07-27 12:03:31 -07003726 u64 temp_64;
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003727 struct xhci_command *command = NULL;
3728
3729 mutex_lock(&xhci->mutex);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003730
Lu Baolu90797ae2017-01-03 18:28:44 +02003731 if (xhci->xhc_state) { /* dying, removing or halted */
3732 ret = -ESHUTDOWN;
Roger Quadros448116b2015-09-21 17:46:15 +03003733 goto out;
Lu Baolu90797ae2017-01-03 18:28:44 +02003734 }
Roger Quadros448116b2015-09-21 17:46:15 +03003735
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003736 if (!udev->slot_id) {
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003737 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3738 "Bad Slot ID %d", udev->slot_id);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003739 ret = -EINVAL;
3740 goto out;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003741 }
3742
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003743 virt_dev = xhci->devs[udev->slot_id];
3744
Matt Evans7ed603e2011-03-29 13:40:56 +11003745 if (WARN_ON(!virt_dev)) {
3746 /*
3747 * In plug/unplug torture test with an NEC controller,
3748 * a zero-dereference was observed once due to virt_dev = 0.
3749 * Print useful debug rather than crash if it is observed again!
3750 */
3751 xhci_warn(xhci, "Virt dev invalid for slot_id 0x%x!\n",
3752 udev->slot_id);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003753 ret = -EINVAL;
3754 goto out;
Matt Evans7ed603e2011-03-29 13:40:56 +11003755 }
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003756 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
3757 trace_xhci_setup_device_slot(slot_ctx);
Matt Evans7ed603e2011-03-29 13:40:56 +11003758
Mathias Nymanf161ead2015-01-09 17:18:28 +02003759 if (setup == SETUP_CONTEXT_ONLY) {
Mathias Nymanf161ead2015-01-09 17:18:28 +02003760 if (GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state)) ==
3761 SLOT_STATE_DEFAULT) {
3762 xhci_dbg(xhci, "Slot already in default state\n");
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003763 goto out;
Mathias Nymanf161ead2015-01-09 17:18:28 +02003764 }
3765 }
3766
Lu Baolu87e44f22016-11-11 15:13:30 +02003767 command = xhci_alloc_command(xhci, false, true, GFP_KERNEL);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003768 if (!command) {
3769 ret = -ENOMEM;
3770 goto out;
3771 }
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003772
3773 command->in_ctx = virt_dev->in_ctx;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003774
Andiry Xuf0615c42010-10-14 07:22:48 -07003775 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Lin Wang4daf9df2015-01-09 16:06:31 +02003776 ctrl_ctx = xhci_get_input_control_ctx(virt_dev->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003777 if (!ctrl_ctx) {
3778 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3779 __func__);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003780 ret = -EINVAL;
3781 goto out;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003782 }
Andiry Xuf0615c42010-10-14 07:22:48 -07003783 /*
3784 * If this is the first Set Address since device plug-in or
3785 * virt_device realloaction after a resume with an xHCI power loss,
3786 * then set up the slot context.
3787 */
3788 if (!slot_ctx->dev_info)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003789 xhci_setup_addressable_virt_dev(xhci, udev);
Andiry Xuf0615c42010-10-14 07:22:48 -07003790 /* Otherwise, update the control endpoint ring enqueue pointer. */
Sarah Sharp2d1ee592010-07-09 17:08:54 +02003791 else
3792 xhci_copy_ep0_dequeue_into_input_ctx(xhci, udev);
Sarah Sharpd31c2852011-11-03 13:06:08 -07003793 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG | EP0_FLAG);
3794 ctrl_ctx->drop_flags = 0;
3795
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003796 trace_xhci_address_ctx(xhci, virt_dev->in_ctx,
Xenia Ragiadakou0c052aa2013-11-15 03:18:07 +02003797 le32_to_cpu(slot_ctx->dev_info) >> 27);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003798
Sarah Sharpf88ba782009-05-14 11:44:22 -07003799 spin_lock_irqsave(&xhci->lock, flags);
Felipe Balbia711ede2017-01-23 14:20:23 +02003800 trace_xhci_setup_device(virt_dev);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003801 ret = xhci_queue_address_device(xhci, command, virt_dev->in_ctx->dma,
Dan Williams48fc7db2013-12-05 17:07:27 -08003802 udev->slot_id, setup);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003803 if (ret) {
3804 spin_unlock_irqrestore(&xhci->lock, flags);
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003805 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3806 "FIXME: allocate a command ring segment");
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003807 goto out;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003808 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003809 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003810 spin_unlock_irqrestore(&xhci->lock, flags);
3811
3812 /* ctrl tx can take up to 5 sec; XXX: need more time for xHC? */
Mathias Nymanc311e392014-05-08 19:26:03 +03003813 wait_for_completion(command->completion);
3814
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003815 /* FIXME: From section 4.3.4: "Software shall be responsible for timing
3816 * the SetAddress() "recovery interval" required by USB and aborting the
3817 * command on a timeout.
3818 */
Mathias Nyman9ea18332014-05-08 19:26:02 +03003819 switch (command->status) {
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003820 case COMP_COMMAND_ABORTED:
Mathias Nyman604d02a2017-05-17 18:32:05 +03003821 case COMP_COMMAND_RING_STOPPED:
Mathias Nymanc311e392014-05-08 19:26:03 +03003822 xhci_warn(xhci, "Timeout while waiting for setup device command\n");
3823 ret = -ETIME;
3824 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003825 case COMP_CONTEXT_STATE_ERROR:
3826 case COMP_SLOT_NOT_ENABLED_ERROR:
Dan Williams6f8ffc02013-11-22 01:20:01 -08003827 xhci_err(xhci, "Setup ERROR: setup %s command for slot %d.\n",
3828 act, udev->slot_id);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003829 ret = -EINVAL;
3830 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003831 case COMP_USB_TRANSACTION_ERROR:
Dan Williams6f8ffc02013-11-22 01:20:01 -08003832 dev_warn(&udev->dev, "Device not responding to setup %s.\n", act);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003833 ret = -EPROTO;
3834 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003835 case COMP_INCOMPATIBLE_DEVICE_ERROR:
Dan Williams6f8ffc02013-11-22 01:20:01 -08003836 dev_warn(&udev->dev,
3837 "ERROR: Incompatible device for setup %s command\n", act);
Alex Hef6ba6fe2011-06-08 18:34:06 +08003838 ret = -ENODEV;
3839 break;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003840 case COMP_SUCCESS:
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003841 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
Dan Williams6f8ffc02013-11-22 01:20:01 -08003842 "Successful setup %s command", act);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003843 break;
3844 default:
Dan Williams6f8ffc02013-11-22 01:20:01 -08003845 xhci_err(xhci,
3846 "ERROR: unexpected setup %s command completion code 0x%x.\n",
Mathias Nyman9ea18332014-05-08 19:26:02 +03003847 act, command->status);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003848 trace_xhci_address_ctx(xhci, virt_dev->out_ctx, 1);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003849 ret = -EINVAL;
3850 break;
3851 }
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003852 if (ret)
3853 goto out;
Sarah Sharpf7b2e402014-01-30 13:27:49 -08003854 temp_64 = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003855 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3856 "Op regs DCBAA ptr = %#016llx", temp_64);
3857 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3858 "Slot ID %d dcbaa entry @%p = %#016llx",
3859 udev->slot_id,
3860 &xhci->dcbaa->dev_context_ptrs[udev->slot_id],
3861 (unsigned long long)
3862 le64_to_cpu(xhci->dcbaa->dev_context_ptrs[udev->slot_id]));
3863 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3864 "Output Context DMA address = %#08llx",
John Yound115b042009-07-27 12:05:15 -07003865 (unsigned long long)virt_dev->out_ctx->dma);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003866 trace_xhci_address_ctx(xhci, virt_dev->in_ctx,
Xenia Ragiadakou0c052aa2013-11-15 03:18:07 +02003867 le32_to_cpu(slot_ctx->dev_info) >> 27);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003868 /*
3869 * USB core uses address 1 for the roothubs, so we add one to the
3870 * address given back to us by the HC.
3871 */
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003872 trace_xhci_address_ctx(xhci, virt_dev->out_ctx,
Xenia Ragiadakou0c052aa2013-11-15 03:18:07 +02003873 le32_to_cpu(slot_ctx->dev_info) >> 27);
Sarah Sharpf94e01862009-04-27 19:58:38 -07003874 /* Zero the input context control for later use */
John Yound115b042009-07-27 12:05:15 -07003875 ctrl_ctx->add_flags = 0;
3876 ctrl_ctx->drop_flags = 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003877
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003878 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
Dan Williamsa2cdc342013-10-16 12:25:44 -07003879 "Internal device address = %d",
3880 le32_to_cpu(slot_ctx->dev_state) & DEV_ADDR_MASK);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003881out:
3882 mutex_unlock(&xhci->mutex);
Lu Baolu87e44f22016-11-11 15:13:30 +02003883 if (command) {
3884 kfree(command->completion);
3885 kfree(command);
3886 }
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003887 return ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003888}
3889
Lu Baolu39693842017-04-07 17:57:04 +03003890static int xhci_address_device(struct usb_hcd *hcd, struct usb_device *udev)
Dan Williams48fc7db2013-12-05 17:07:27 -08003891{
3892 return xhci_setup_device(hcd, udev, SETUP_CONTEXT_ADDRESS);
3893}
3894
Lu Baolu39693842017-04-07 17:57:04 +03003895static int xhci_enable_device(struct usb_hcd *hcd, struct usb_device *udev)
Dan Williams48fc7db2013-12-05 17:07:27 -08003896{
3897 return xhci_setup_device(hcd, udev, SETUP_CONTEXT_ONLY);
3898}
3899
Lan Tianyu3f5eb142013-03-19 16:48:12 +08003900/*
3901 * Transfer the port index into real index in the HW port status
3902 * registers. Caculate offset between the port's PORTSC register
3903 * and port status base. Divide the number of per port register
3904 * to get the real index. The raw port number bases 1.
3905 */
3906int xhci_find_raw_port_number(struct usb_hcd *hcd, int port1)
3907{
3908 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3909 __le32 __iomem *base_addr = &xhci->op_regs->port_status_base;
3910 __le32 __iomem *addr;
3911 int raw_port;
3912
Mathias Nymanb50107b2015-10-01 18:40:38 +03003913 if (hcd->speed < HCD_USB3)
Lan Tianyu3f5eb142013-03-19 16:48:12 +08003914 addr = xhci->usb2_ports[port1 - 1];
3915 else
3916 addr = xhci->usb3_ports[port1 - 1];
3917
3918 raw_port = (addr - base_addr)/NUM_PORT_REGS + 1;
3919 return raw_port;
3920}
3921
Mathias Nymana558ccd2013-05-23 17:14:30 +03003922/*
3923 * Issue an Evaluate Context command to change the Maximum Exit Latency in the
3924 * slot context. If that succeeds, store the new MEL in the xhci_virt_device.
3925 */
Olof Johanssond5c82fe2013-07-23 11:58:20 -07003926static int __maybe_unused xhci_change_max_exit_latency(struct xhci_hcd *xhci,
Mathias Nymana558ccd2013-05-23 17:14:30 +03003927 struct usb_device *udev, u16 max_exit_latency)
3928{
3929 struct xhci_virt_device *virt_dev;
3930 struct xhci_command *command;
3931 struct xhci_input_control_ctx *ctrl_ctx;
3932 struct xhci_slot_ctx *slot_ctx;
3933 unsigned long flags;
3934 int ret;
3935
3936 spin_lock_irqsave(&xhci->lock, flags);
Mathias Nyman96044692014-09-11 13:55:50 +03003937
3938 virt_dev = xhci->devs[udev->slot_id];
3939
3940 /*
3941 * virt_dev might not exists yet if xHC resumed from hibernate (S4) and
3942 * xHC was re-initialized. Exit latency will be set later after
3943 * hub_port_finish_reset() is done and xhci->devs[] are re-allocated
3944 */
3945
3946 if (!virt_dev || max_exit_latency == virt_dev->current_mel) {
Mathias Nymana558ccd2013-05-23 17:14:30 +03003947 spin_unlock_irqrestore(&xhci->lock, flags);
3948 return 0;
3949 }
3950
3951 /* Attempt to issue an Evaluate Context command to change the MEL. */
Mathias Nymana558ccd2013-05-23 17:14:30 +03003952 command = xhci->lpm_command;
Lin Wang4daf9df2015-01-09 16:06:31 +02003953 ctrl_ctx = xhci_get_input_control_ctx(command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003954 if (!ctrl_ctx) {
3955 spin_unlock_irqrestore(&xhci->lock, flags);
3956 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3957 __func__);
3958 return -ENOMEM;
3959 }
3960
Mathias Nymana558ccd2013-05-23 17:14:30 +03003961 xhci_slot_copy(xhci, command->in_ctx, virt_dev->out_ctx);
3962 spin_unlock_irqrestore(&xhci->lock, flags);
3963
Mathias Nymana558ccd2013-05-23 17:14:30 +03003964 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
3965 slot_ctx = xhci_get_slot_ctx(xhci, command->in_ctx);
3966 slot_ctx->dev_info2 &= cpu_to_le32(~((u32) MAX_EXIT));
3967 slot_ctx->dev_info2 |= cpu_to_le32(max_exit_latency);
Mathias Nyman4801d4ea2014-11-27 18:19:15 +02003968 slot_ctx->dev_state = 0;
Mathias Nymana558ccd2013-05-23 17:14:30 +03003969
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03003970 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
3971 "Set up evaluate context for LPM MEL change.");
Mathias Nymana558ccd2013-05-23 17:14:30 +03003972
3973 /* Issue and wait for the evaluate context command. */
3974 ret = xhci_configure_endpoint(xhci, udev, command,
3975 true, true);
Mathias Nymana558ccd2013-05-23 17:14:30 +03003976
3977 if (!ret) {
3978 spin_lock_irqsave(&xhci->lock, flags);
3979 virt_dev->current_mel = max_exit_latency;
3980 spin_unlock_irqrestore(&xhci->lock, flags);
3981 }
3982 return ret;
3983}
3984
Rafael J. Wysockiceb6c9c2014-11-29 23:47:05 +01003985#ifdef CONFIG_PM
Andiry Xu95743232011-09-23 14:19:51 -07003986
3987/* BESL to HIRD Encoding array for USB2 LPM */
3988static int xhci_besl_encoding[16] = {125, 150, 200, 300, 400, 500, 1000, 2000,
3989 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000};
3990
3991/* Calculate HIRD/BESL for USB2 PORTPMSC*/
Andiry Xuf99298b2011-12-12 16:45:28 +08003992static int xhci_calculate_hird_besl(struct xhci_hcd *xhci,
3993 struct usb_device *udev)
Andiry Xu95743232011-09-23 14:19:51 -07003994{
Andiry Xuf99298b2011-12-12 16:45:28 +08003995 int u2del, besl, besl_host;
3996 int besl_device = 0;
3997 u32 field;
Andiry Xu95743232011-09-23 14:19:51 -07003998
Andiry Xuf99298b2011-12-12 16:45:28 +08003999 u2del = HCS_U2_LATENCY(xhci->hcs_params3);
4000 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
4001
4002 if (field & USB_BESL_SUPPORT) {
4003 for (besl_host = 0; besl_host < 16; besl_host++) {
4004 if (xhci_besl_encoding[besl_host] >= u2del)
Andiry Xu95743232011-09-23 14:19:51 -07004005 break;
4006 }
Andiry Xuf99298b2011-12-12 16:45:28 +08004007 /* Use baseline BESL value as default */
4008 if (field & USB_BESL_BASELINE_VALID)
4009 besl_device = USB_GET_BESL_BASELINE(field);
4010 else if (field & USB_BESL_DEEP_VALID)
4011 besl_device = USB_GET_BESL_DEEP(field);
Andiry Xu95743232011-09-23 14:19:51 -07004012 } else {
4013 if (u2del <= 50)
Andiry Xuf99298b2011-12-12 16:45:28 +08004014 besl_host = 0;
Andiry Xu95743232011-09-23 14:19:51 -07004015 else
Andiry Xuf99298b2011-12-12 16:45:28 +08004016 besl_host = (u2del - 51) / 75 + 1;
Andiry Xu95743232011-09-23 14:19:51 -07004017 }
4018
Andiry Xuf99298b2011-12-12 16:45:28 +08004019 besl = besl_host + besl_device;
4020 if (besl > 15)
4021 besl = 15;
4022
4023 return besl;
Andiry Xu95743232011-09-23 14:19:51 -07004024}
4025
Mathias Nymana558ccd2013-05-23 17:14:30 +03004026/* Calculate BESLD, L1 timeout and HIRDM for USB2 PORTHLPMC */
4027static int xhci_calculate_usb2_hw_lpm_params(struct usb_device *udev)
4028{
4029 u32 field;
4030 int l1;
4031 int besld = 0;
4032 int hirdm = 0;
4033
4034 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
4035
4036 /* xHCI l1 is set in steps of 256us, xHCI 1.0 section 5.4.11.2 */
Mathias Nyman17f34862013-05-23 17:14:31 +03004037 l1 = udev->l1_params.timeout / 256;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004038
4039 /* device has preferred BESLD */
4040 if (field & USB_BESL_DEEP_VALID) {
4041 besld = USB_GET_BESL_DEEP(field);
4042 hirdm = 1;
4043 }
4044
4045 return PORT_BESLD(besld) | PORT_L1_TIMEOUT(l1) | PORT_HIRDM(hirdm);
4046}
4047
Lu Baolu39693842017-04-07 17:57:04 +03004048static int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
Andiry Xu65580b432011-09-23 14:19:52 -07004049 struct usb_device *udev, int enable)
4050{
4051 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4052 __le32 __iomem **port_array;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004053 __le32 __iomem *pm_addr, *hlpm_addr;
4054 u32 pm_val, hlpm_val, field;
Andiry Xu65580b432011-09-23 14:19:52 -07004055 unsigned int port_num;
4056 unsigned long flags;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004057 int hird, exit_latency;
4058 int ret;
Andiry Xu65580b432011-09-23 14:19:52 -07004059
Mathias Nymanb50107b2015-10-01 18:40:38 +03004060 if (hcd->speed >= HCD_USB3 || !xhci->hw_lpm_support ||
Andiry Xu65580b432011-09-23 14:19:52 -07004061 !udev->lpm_capable)
4062 return -EPERM;
4063
4064 if (!udev->parent || udev->parent->parent ||
4065 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
4066 return -EPERM;
4067
4068 if (udev->usb2_hw_lpm_capable != 1)
4069 return -EPERM;
4070
4071 spin_lock_irqsave(&xhci->lock, flags);
4072
4073 port_array = xhci->usb2_ports;
4074 port_num = udev->portnum - 1;
Mathias Nymanb6e76372013-05-23 17:14:29 +03004075 pm_addr = port_array[port_num] + PORTPMSC;
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004076 pm_val = readl(pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004077 hlpm_addr = port_array[port_num] + PORTHLPMC;
4078 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
Andiry Xu65580b432011-09-23 14:19:52 -07004079
4080 xhci_dbg(xhci, "%s port %d USB2 hardware LPM\n",
Lin Wang654a55d2014-05-08 19:25:54 +03004081 enable ? "enable" : "disable", port_num + 1);
Andiry Xu65580b432011-09-23 14:19:52 -07004082
Andiry Xu65580b432011-09-23 14:19:52 -07004083 if (enable) {
Mathias Nymana558ccd2013-05-23 17:14:30 +03004084 /* Host supports BESL timeout instead of HIRD */
4085 if (udev->usb2_hw_lpm_besl_capable) {
4086 /* if device doesn't have a preferred BESL value use a
4087 * default one which works with mixed HIRD and BESL
4088 * systems. See XHCI_DEFAULT_BESL definition in xhci.h
4089 */
4090 if ((field & USB_BESL_SUPPORT) &&
4091 (field & USB_BESL_BASELINE_VALID))
4092 hird = USB_GET_BESL_BASELINE(field);
4093 else
Mathias Nyman17f34862013-05-23 17:14:31 +03004094 hird = udev->l1_params.besl;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004095
4096 exit_latency = xhci_besl_encoding[hird];
4097 spin_unlock_irqrestore(&xhci->lock, flags);
4098
4099 /* USB 3.0 code dedicate one xhci->lpm_command->in_ctx
4100 * input context for link powermanagement evaluate
4101 * context commands. It is protected by hcd->bandwidth
4102 * mutex and is shared by all devices. We need to set
4103 * the max ext latency in USB 2 BESL LPM as well, so
4104 * use the same mutex and xhci_change_max_exit_latency()
4105 */
4106 mutex_lock(hcd->bandwidth_mutex);
4107 ret = xhci_change_max_exit_latency(xhci, udev,
4108 exit_latency);
4109 mutex_unlock(hcd->bandwidth_mutex);
4110
4111 if (ret < 0)
4112 return ret;
4113 spin_lock_irqsave(&xhci->lock, flags);
4114
4115 hlpm_val = xhci_calculate_usb2_hw_lpm_params(udev);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02004116 writel(hlpm_val, hlpm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004117 /* flush write */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004118 readl(hlpm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004119 } else {
4120 hird = xhci_calculate_hird_besl(xhci, udev);
4121 }
4122
4123 pm_val &= ~PORT_HIRD_MASK;
Sarah Sharp58e21f72013-10-07 17:17:20 -07004124 pm_val |= PORT_HIRD(hird) | PORT_RWE | PORT_L1DS(udev->slot_id);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02004125 writel(pm_val, pm_addr);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004126 pm_val = readl(pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004127 pm_val |= PORT_HLE;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02004128 writel(pm_val, pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004129 /* flush write */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004130 readl(pm_addr);
Andiry Xu65580b432011-09-23 14:19:52 -07004131 } else {
Sarah Sharp58e21f72013-10-07 17:17:20 -07004132 pm_val &= ~(PORT_HLE | PORT_RWE | PORT_HIRD_MASK | PORT_L1DS_MASK);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02004133 writel(pm_val, pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004134 /* flush write */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004135 readl(pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004136 if (udev->usb2_hw_lpm_besl_capable) {
4137 spin_unlock_irqrestore(&xhci->lock, flags);
4138 mutex_lock(hcd->bandwidth_mutex);
4139 xhci_change_max_exit_latency(xhci, udev, 0);
4140 mutex_unlock(hcd->bandwidth_mutex);
4141 return 0;
4142 }
Andiry Xu65580b432011-09-23 14:19:52 -07004143 }
4144
4145 spin_unlock_irqrestore(&xhci->lock, flags);
4146 return 0;
4147}
4148
Mathias Nymanb630d4b2013-05-23 17:14:28 +03004149/* check if a usb2 port supports a given extened capability protocol
4150 * only USB2 ports extended protocol capability values are cached.
4151 * Return 1 if capability is supported
4152 */
4153static int xhci_check_usb2_port_capability(struct xhci_hcd *xhci, int port,
4154 unsigned capability)
4155{
4156 u32 port_offset, port_count;
4157 int i;
4158
4159 for (i = 0; i < xhci->num_ext_caps; i++) {
4160 if (xhci->ext_caps[i] & capability) {
4161 /* port offsets starts at 1 */
4162 port_offset = XHCI_EXT_PORT_OFF(xhci->ext_caps[i]) - 1;
4163 port_count = XHCI_EXT_PORT_COUNT(xhci->ext_caps[i]);
4164 if (port >= port_offset &&
4165 port < port_offset + port_count)
4166 return 1;
4167 }
4168 }
4169 return 0;
4170}
4171
Lu Baolu39693842017-04-07 17:57:04 +03004172static int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004173{
4174 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Mathias Nymanb630d4b2013-05-23 17:14:28 +03004175 int portnum = udev->portnum - 1;
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004176
Mathias Nymanb50107b2015-10-01 18:40:38 +03004177 if (hcd->speed >= HCD_USB3 || !xhci->sw_lpm_support ||
Sarah Sharpde68bab2013-09-30 17:26:28 +03004178 !udev->lpm_capable)
4179 return 0;
4180
4181 /* we only support lpm for non-hub device connected to root hub yet */
4182 if (!udev->parent || udev->parent->parent ||
4183 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
4184 return 0;
4185
4186 if (xhci->hw_lpm_support == 1 &&
4187 xhci_check_usb2_port_capability(
4188 xhci, portnum, XHCI_HLC)) {
4189 udev->usb2_hw_lpm_capable = 1;
4190 udev->l1_params.timeout = XHCI_L1_TIMEOUT;
4191 udev->l1_params.besl = XHCI_DEFAULT_BESL;
4192 if (xhci_check_usb2_port_capability(xhci, portnum,
4193 XHCI_BLC))
4194 udev->usb2_hw_lpm_besl_capable = 1;
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004195 }
4196
4197 return 0;
4198}
4199
Sarah Sharp3b3db022012-05-09 10:55:03 -07004200/*---------------------- USB 3.0 Link PM functions ------------------------*/
4201
Sarah Sharpe3567d22012-05-16 13:36:24 -07004202/* Service interval in nanoseconds = 2^(bInterval - 1) * 125us * 1000ns / 1us */
4203static unsigned long long xhci_service_interval_to_ns(
4204 struct usb_endpoint_descriptor *desc)
4205{
Oliver Neukum16b45fd2012-10-17 10:16:16 +02004206 return (1ULL << (desc->bInterval - 1)) * 125 * 1000;
Sarah Sharpe3567d22012-05-16 13:36:24 -07004207}
4208
Sarah Sharp3b3db022012-05-09 10:55:03 -07004209static u16 xhci_get_timeout_no_hub_lpm(struct usb_device *udev,
4210 enum usb3_link_state state)
4211{
4212 unsigned long long sel;
4213 unsigned long long pel;
4214 unsigned int max_sel_pel;
4215 char *state_name;
4216
4217 switch (state) {
4218 case USB3_LPM_U1:
4219 /* Convert SEL and PEL stored in nanoseconds to microseconds */
4220 sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
4221 pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
4222 max_sel_pel = USB3_LPM_MAX_U1_SEL_PEL;
4223 state_name = "U1";
4224 break;
4225 case USB3_LPM_U2:
4226 sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
4227 pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
4228 max_sel_pel = USB3_LPM_MAX_U2_SEL_PEL;
4229 state_name = "U2";
4230 break;
4231 default:
4232 dev_warn(&udev->dev, "%s: Can't get timeout for non-U1 or U2 state.\n",
4233 __func__);
Sarah Sharpe25e62a2012-06-07 11:10:32 -07004234 return USB3_LPM_DISABLED;
Sarah Sharp3b3db022012-05-09 10:55:03 -07004235 }
4236
4237 if (sel <= max_sel_pel && pel <= max_sel_pel)
4238 return USB3_LPM_DEVICE_INITIATED;
4239
4240 if (sel > max_sel_pel)
4241 dev_dbg(&udev->dev, "Device-initiated %s disabled "
4242 "due to long SEL %llu ms\n",
4243 state_name, sel);
4244 else
4245 dev_dbg(&udev->dev, "Device-initiated %s disabled "
Joe Perches03e64e92013-07-16 19:25:59 -07004246 "due to long PEL %llu ms\n",
Sarah Sharp3b3db022012-05-09 10:55:03 -07004247 state_name, pel);
4248 return USB3_LPM_DISABLED;
4249}
4250
Pratyush Anand9502c462014-07-04 17:01:23 +03004251/* The U1 timeout should be the maximum of the following values:
Sarah Sharpe3567d22012-05-16 13:36:24 -07004252 * - For control endpoints, U1 system exit latency (SEL) * 3
4253 * - For bulk endpoints, U1 SEL * 5
4254 * - For interrupt endpoints:
4255 * - Notification EPs, U1 SEL * 3
4256 * - Periodic EPs, max(105% of bInterval, U1 SEL * 2)
4257 * - For isochronous endpoints, max(105% of bInterval, U1 SEL * 2)
4258 */
Pratyush Anand9502c462014-07-04 17:01:23 +03004259static unsigned long long xhci_calculate_intel_u1_timeout(
4260 struct usb_device *udev,
Sarah Sharpe3567d22012-05-16 13:36:24 -07004261 struct usb_endpoint_descriptor *desc)
4262{
4263 unsigned long long timeout_ns;
4264 int ep_type;
4265 int intr_type;
4266
4267 ep_type = usb_endpoint_type(desc);
4268 switch (ep_type) {
4269 case USB_ENDPOINT_XFER_CONTROL:
4270 timeout_ns = udev->u1_params.sel * 3;
4271 break;
4272 case USB_ENDPOINT_XFER_BULK:
4273 timeout_ns = udev->u1_params.sel * 5;
4274 break;
4275 case USB_ENDPOINT_XFER_INT:
4276 intr_type = usb_endpoint_interrupt_type(desc);
4277 if (intr_type == USB_ENDPOINT_INTR_NOTIFICATION) {
4278 timeout_ns = udev->u1_params.sel * 3;
4279 break;
4280 }
4281 /* Otherwise the calculation is the same as isoc eps */
4282 case USB_ENDPOINT_XFER_ISOC:
4283 timeout_ns = xhci_service_interval_to_ns(desc);
Sarah Sharpc88db162012-05-21 08:44:33 -07004284 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns * 105, 100);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004285 if (timeout_ns < udev->u1_params.sel * 2)
4286 timeout_ns = udev->u1_params.sel * 2;
4287 break;
4288 default:
4289 return 0;
4290 }
4291
Pratyush Anand9502c462014-07-04 17:01:23 +03004292 return timeout_ns;
4293}
4294
4295/* Returns the hub-encoded U1 timeout value. */
4296static u16 xhci_calculate_u1_timeout(struct xhci_hcd *xhci,
4297 struct usb_device *udev,
4298 struct usb_endpoint_descriptor *desc)
4299{
4300 unsigned long long timeout_ns;
4301
4302 if (xhci->quirks & XHCI_INTEL_HOST)
4303 timeout_ns = xhci_calculate_intel_u1_timeout(udev, desc);
4304 else
4305 timeout_ns = udev->u1_params.sel;
4306
4307 /* The U1 timeout is encoded in 1us intervals.
4308 * Don't return a timeout of zero, because that's USB3_LPM_DISABLED.
4309 */
Sarah Sharpe3567d22012-05-16 13:36:24 -07004310 if (timeout_ns == USB3_LPM_DISABLED)
Pratyush Anand9502c462014-07-04 17:01:23 +03004311 timeout_ns = 1;
4312 else
4313 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 1000);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004314
4315 /* If the necessary timeout value is bigger than what we can set in the
4316 * USB 3.0 hub, we have to disable hub-initiated U1.
4317 */
4318 if (timeout_ns <= USB3_LPM_U1_MAX_TIMEOUT)
4319 return timeout_ns;
4320 dev_dbg(&udev->dev, "Hub-initiated U1 disabled "
4321 "due to long timeout %llu ms\n", timeout_ns);
4322 return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U1);
4323}
4324
Pratyush Anand9502c462014-07-04 17:01:23 +03004325/* The U2 timeout should be the maximum of:
Sarah Sharpe3567d22012-05-16 13:36:24 -07004326 * - 10 ms (to avoid the bandwidth impact on the scheduler)
4327 * - largest bInterval of any active periodic endpoint (to avoid going
4328 * into lower power link states between intervals).
4329 * - the U2 Exit Latency of the device
4330 */
Pratyush Anand9502c462014-07-04 17:01:23 +03004331static unsigned long long xhci_calculate_intel_u2_timeout(
4332 struct usb_device *udev,
Sarah Sharpe3567d22012-05-16 13:36:24 -07004333 struct usb_endpoint_descriptor *desc)
4334{
4335 unsigned long long timeout_ns;
4336 unsigned long long u2_del_ns;
4337
4338 timeout_ns = 10 * 1000 * 1000;
4339
4340 if ((usb_endpoint_xfer_int(desc) || usb_endpoint_xfer_isoc(desc)) &&
4341 (xhci_service_interval_to_ns(desc) > timeout_ns))
4342 timeout_ns = xhci_service_interval_to_ns(desc);
4343
Oliver Neukum966e7a82012-10-17 12:17:50 +02004344 u2_del_ns = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat) * 1000ULL;
Sarah Sharpe3567d22012-05-16 13:36:24 -07004345 if (u2_del_ns > timeout_ns)
4346 timeout_ns = u2_del_ns;
4347
Pratyush Anand9502c462014-07-04 17:01:23 +03004348 return timeout_ns;
4349}
4350
4351/* Returns the hub-encoded U2 timeout value. */
4352static u16 xhci_calculate_u2_timeout(struct xhci_hcd *xhci,
4353 struct usb_device *udev,
4354 struct usb_endpoint_descriptor *desc)
4355{
4356 unsigned long long timeout_ns;
4357
4358 if (xhci->quirks & XHCI_INTEL_HOST)
4359 timeout_ns = xhci_calculate_intel_u2_timeout(udev, desc);
4360 else
4361 timeout_ns = udev->u2_params.sel;
4362
Sarah Sharpe3567d22012-05-16 13:36:24 -07004363 /* The U2 timeout is encoded in 256us intervals */
Sarah Sharpc88db162012-05-21 08:44:33 -07004364 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 256 * 1000);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004365 /* If the necessary timeout value is bigger than what we can set in the
4366 * USB 3.0 hub, we have to disable hub-initiated U2.
4367 */
4368 if (timeout_ns <= USB3_LPM_U2_MAX_TIMEOUT)
4369 return timeout_ns;
4370 dev_dbg(&udev->dev, "Hub-initiated U2 disabled "
4371 "due to long timeout %llu ms\n", timeout_ns);
4372 return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U2);
4373}
4374
Sarah Sharp3b3db022012-05-09 10:55:03 -07004375static u16 xhci_call_host_update_timeout_for_endpoint(struct xhci_hcd *xhci,
4376 struct usb_device *udev,
4377 struct usb_endpoint_descriptor *desc,
4378 enum usb3_link_state state,
4379 u16 *timeout)
4380{
Pratyush Anand9502c462014-07-04 17:01:23 +03004381 if (state == USB3_LPM_U1)
4382 return xhci_calculate_u1_timeout(xhci, udev, desc);
4383 else if (state == USB3_LPM_U2)
4384 return xhci_calculate_u2_timeout(xhci, udev, desc);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004385
Sarah Sharp3b3db022012-05-09 10:55:03 -07004386 return USB3_LPM_DISABLED;
4387}
4388
4389static int xhci_update_timeout_for_endpoint(struct xhci_hcd *xhci,
4390 struct usb_device *udev,
4391 struct usb_endpoint_descriptor *desc,
4392 enum usb3_link_state state,
4393 u16 *timeout)
4394{
4395 u16 alt_timeout;
4396
4397 alt_timeout = xhci_call_host_update_timeout_for_endpoint(xhci, udev,
4398 desc, state, timeout);
4399
4400 /* If we found we can't enable hub-initiated LPM, or
4401 * the U1 or U2 exit latency was too high to allow
4402 * device-initiated LPM as well, just stop searching.
4403 */
4404 if (alt_timeout == USB3_LPM_DISABLED ||
4405 alt_timeout == USB3_LPM_DEVICE_INITIATED) {
4406 *timeout = alt_timeout;
4407 return -E2BIG;
4408 }
4409 if (alt_timeout > *timeout)
4410 *timeout = alt_timeout;
4411 return 0;
4412}
4413
4414static int xhci_update_timeout_for_interface(struct xhci_hcd *xhci,
4415 struct usb_device *udev,
4416 struct usb_host_interface *alt,
4417 enum usb3_link_state state,
4418 u16 *timeout)
4419{
4420 int j;
4421
4422 for (j = 0; j < alt->desc.bNumEndpoints; j++) {
4423 if (xhci_update_timeout_for_endpoint(xhci, udev,
4424 &alt->endpoint[j].desc, state, timeout))
4425 return -E2BIG;
4426 continue;
4427 }
4428 return 0;
4429}
4430
Sarah Sharpe3567d22012-05-16 13:36:24 -07004431static int xhci_check_intel_tier_policy(struct usb_device *udev,
4432 enum usb3_link_state state)
4433{
4434 struct usb_device *parent;
4435 unsigned int num_hubs;
4436
4437 if (state == USB3_LPM_U2)
4438 return 0;
4439
4440 /* Don't enable U1 if the device is on a 2nd tier hub or lower. */
4441 for (parent = udev->parent, num_hubs = 0; parent->parent;
4442 parent = parent->parent)
4443 num_hubs++;
4444
4445 if (num_hubs < 2)
4446 return 0;
4447
4448 dev_dbg(&udev->dev, "Disabling U1 link state for device"
4449 " below second-tier hub.\n");
4450 dev_dbg(&udev->dev, "Plug device into first-tier hub "
4451 "to decrease power consumption.\n");
4452 return -E2BIG;
4453}
4454
Sarah Sharp3b3db022012-05-09 10:55:03 -07004455static int xhci_check_tier_policy(struct xhci_hcd *xhci,
4456 struct usb_device *udev,
4457 enum usb3_link_state state)
4458{
Sarah Sharpe3567d22012-05-16 13:36:24 -07004459 if (xhci->quirks & XHCI_INTEL_HOST)
4460 return xhci_check_intel_tier_policy(udev, state);
Pratyush Anand9502c462014-07-04 17:01:23 +03004461 else
4462 return 0;
Sarah Sharp3b3db022012-05-09 10:55:03 -07004463}
4464
4465/* Returns the U1 or U2 timeout that should be enabled.
4466 * If the tier check or timeout setting functions return with a non-zero exit
4467 * code, that means the timeout value has been finalized and we shouldn't look
4468 * at any more endpoints.
4469 */
4470static u16 xhci_calculate_lpm_timeout(struct usb_hcd *hcd,
4471 struct usb_device *udev, enum usb3_link_state state)
4472{
4473 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4474 struct usb_host_config *config;
4475 char *state_name;
4476 int i;
4477 u16 timeout = USB3_LPM_DISABLED;
4478
4479 if (state == USB3_LPM_U1)
4480 state_name = "U1";
4481 else if (state == USB3_LPM_U2)
4482 state_name = "U2";
4483 else {
4484 dev_warn(&udev->dev, "Can't enable unknown link state %i\n",
4485 state);
4486 return timeout;
4487 }
4488
4489 if (xhci_check_tier_policy(xhci, udev, state) < 0)
4490 return timeout;
4491
4492 /* Gather some information about the currently installed configuration
4493 * and alternate interface settings.
4494 */
4495 if (xhci_update_timeout_for_endpoint(xhci, udev, &udev->ep0.desc,
4496 state, &timeout))
4497 return timeout;
4498
4499 config = udev->actconfig;
4500 if (!config)
4501 return timeout;
4502
Xenia Ragiadakou64ba4192013-08-26 23:29:46 +03004503 for (i = 0; i < config->desc.bNumInterfaces; i++) {
Sarah Sharp3b3db022012-05-09 10:55:03 -07004504 struct usb_driver *driver;
4505 struct usb_interface *intf = config->interface[i];
4506
4507 if (!intf)
4508 continue;
4509
4510 /* Check if any currently bound drivers want hub-initiated LPM
4511 * disabled.
4512 */
4513 if (intf->dev.driver) {
4514 driver = to_usb_driver(intf->dev.driver);
4515 if (driver && driver->disable_hub_initiated_lpm) {
4516 dev_dbg(&udev->dev, "Hub-initiated %s disabled "
4517 "at request of driver %s\n",
4518 state_name, driver->name);
4519 return xhci_get_timeout_no_hub_lpm(udev, state);
4520 }
4521 }
4522
4523 /* Not sure how this could happen... */
4524 if (!intf->cur_altsetting)
4525 continue;
4526
4527 if (xhci_update_timeout_for_interface(xhci, udev,
4528 intf->cur_altsetting,
4529 state, &timeout))
4530 return timeout;
4531 }
4532 return timeout;
4533}
4534
Sarah Sharp3b3db022012-05-09 10:55:03 -07004535static int calculate_max_exit_latency(struct usb_device *udev,
4536 enum usb3_link_state state_changed,
4537 u16 hub_encoded_timeout)
4538{
4539 unsigned long long u1_mel_us = 0;
4540 unsigned long long u2_mel_us = 0;
4541 unsigned long long mel_us = 0;
4542 bool disabling_u1;
4543 bool disabling_u2;
4544 bool enabling_u1;
4545 bool enabling_u2;
4546
4547 disabling_u1 = (state_changed == USB3_LPM_U1 &&
4548 hub_encoded_timeout == USB3_LPM_DISABLED);
4549 disabling_u2 = (state_changed == USB3_LPM_U2 &&
4550 hub_encoded_timeout == USB3_LPM_DISABLED);
4551
4552 enabling_u1 = (state_changed == USB3_LPM_U1 &&
4553 hub_encoded_timeout != USB3_LPM_DISABLED);
4554 enabling_u2 = (state_changed == USB3_LPM_U2 &&
4555 hub_encoded_timeout != USB3_LPM_DISABLED);
4556
4557 /* If U1 was already enabled and we're not disabling it,
4558 * or we're going to enable U1, account for the U1 max exit latency.
4559 */
4560 if ((udev->u1_params.timeout != USB3_LPM_DISABLED && !disabling_u1) ||
4561 enabling_u1)
4562 u1_mel_us = DIV_ROUND_UP(udev->u1_params.mel, 1000);
4563 if ((udev->u2_params.timeout != USB3_LPM_DISABLED && !disabling_u2) ||
4564 enabling_u2)
4565 u2_mel_us = DIV_ROUND_UP(udev->u2_params.mel, 1000);
4566
4567 if (u1_mel_us > u2_mel_us)
4568 mel_us = u1_mel_us;
4569 else
4570 mel_us = u2_mel_us;
4571 /* xHCI host controller max exit latency field is only 16 bits wide. */
4572 if (mel_us > MAX_EXIT) {
4573 dev_warn(&udev->dev, "Link PM max exit latency of %lluus "
4574 "is too big.\n", mel_us);
4575 return -E2BIG;
4576 }
4577 return mel_us;
4578}
4579
4580/* Returns the USB3 hub-encoded value for the U1/U2 timeout. */
Lu Baolu39693842017-04-07 17:57:04 +03004581static int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd,
Sarah Sharp3b3db022012-05-09 10:55:03 -07004582 struct usb_device *udev, enum usb3_link_state state)
4583{
4584 struct xhci_hcd *xhci;
4585 u16 hub_encoded_timeout;
4586 int mel;
4587 int ret;
4588
4589 xhci = hcd_to_xhci(hcd);
4590 /* The LPM timeout values are pretty host-controller specific, so don't
4591 * enable hub-initiated timeouts unless the vendor has provided
4592 * information about their timeout algorithm.
4593 */
4594 if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) ||
4595 !xhci->devs[udev->slot_id])
4596 return USB3_LPM_DISABLED;
4597
4598 hub_encoded_timeout = xhci_calculate_lpm_timeout(hcd, udev, state);
4599 mel = calculate_max_exit_latency(udev, state, hub_encoded_timeout);
4600 if (mel < 0) {
4601 /* Max Exit Latency is too big, disable LPM. */
4602 hub_encoded_timeout = USB3_LPM_DISABLED;
4603 mel = 0;
4604 }
4605
4606 ret = xhci_change_max_exit_latency(xhci, udev, mel);
4607 if (ret)
4608 return ret;
4609 return hub_encoded_timeout;
4610}
4611
Lu Baolu39693842017-04-07 17:57:04 +03004612static int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
Sarah Sharp3b3db022012-05-09 10:55:03 -07004613 struct usb_device *udev, enum usb3_link_state state)
4614{
4615 struct xhci_hcd *xhci;
4616 u16 mel;
Sarah Sharp3b3db022012-05-09 10:55:03 -07004617
4618 xhci = hcd_to_xhci(hcd);
4619 if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) ||
4620 !xhci->devs[udev->slot_id])
4621 return 0;
4622
4623 mel = calculate_max_exit_latency(udev, state, USB3_LPM_DISABLED);
Saurabh Karajgaonkarf1cda542015-08-04 14:04:09 +00004624 return xhci_change_max_exit_latency(xhci, udev, mel);
Sarah Sharp3b3db022012-05-09 10:55:03 -07004625}
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004626#else /* CONFIG_PM */
4627
Lu Baolu39693842017-04-07 17:57:04 +03004628static int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
Rafael J. Wysockiceb6c9c2014-11-29 23:47:05 +01004629 struct usb_device *udev, int enable)
4630{
4631 return 0;
4632}
4633
Lu Baolu39693842017-04-07 17:57:04 +03004634static int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
Rafael J. Wysockiceb6c9c2014-11-29 23:47:05 +01004635{
4636 return 0;
4637}
4638
Lu Baolu39693842017-04-07 17:57:04 +03004639static int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd,
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004640 struct usb_device *udev, enum usb3_link_state state)
4641{
4642 return USB3_LPM_DISABLED;
4643}
4644
Lu Baolu39693842017-04-07 17:57:04 +03004645static int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004646 struct usb_device *udev, enum usb3_link_state state)
4647{
4648 return 0;
4649}
4650#endif /* CONFIG_PM */
4651
Sarah Sharp3b3db022012-05-09 10:55:03 -07004652/*-------------------------------------------------------------------------*/
4653
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004654/* Once a hub descriptor is fetched for a device, we need to update the xHC's
4655 * internal data structures for the device.
4656 */
Lu Baolu39693842017-04-07 17:57:04 +03004657static int xhci_update_hub_device(struct usb_hcd *hcd, struct usb_device *hdev,
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004658 struct usb_tt *tt, gfp_t mem_flags)
4659{
4660 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4661 struct xhci_virt_device *vdev;
4662 struct xhci_command *config_cmd;
4663 struct xhci_input_control_ctx *ctrl_ctx;
4664 struct xhci_slot_ctx *slot_ctx;
4665 unsigned long flags;
4666 unsigned think_time;
4667 int ret;
4668
4669 /* Ignore root hubs */
4670 if (!hdev->parent)
4671 return 0;
4672
4673 vdev = xhci->devs[hdev->slot_id];
4674 if (!vdev) {
4675 xhci_warn(xhci, "Cannot update hub desc for unknown device.\n");
4676 return -EINVAL;
4677 }
Lu Baolu74e0b562017-04-07 17:57:05 +03004678
Sarah Sharpa1d78c12009-12-09 15:59:03 -08004679 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
Lu Baolu74e0b562017-04-07 17:57:05 +03004680 if (!config_cmd)
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004681 return -ENOMEM;
Lu Baolu74e0b562017-04-07 17:57:05 +03004682
Lin Wang4daf9df2015-01-09 16:06:31 +02004683 ctrl_ctx = xhci_get_input_control_ctx(config_cmd->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07004684 if (!ctrl_ctx) {
4685 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
4686 __func__);
4687 xhci_free_command(xhci, config_cmd);
4688 return -ENOMEM;
4689 }
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004690
4691 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp839c8172011-09-02 11:05:47 -07004692 if (hdev->speed == USB_SPEED_HIGH &&
4693 xhci_alloc_tt_info(xhci, vdev, hdev, tt, GFP_ATOMIC)) {
4694 xhci_dbg(xhci, "Could not allocate xHCI TT structure.\n");
4695 xhci_free_command(xhci, config_cmd);
4696 spin_unlock_irqrestore(&xhci->lock, flags);
4697 return -ENOMEM;
4698 }
4699
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004700 xhci_slot_copy(xhci, config_cmd->in_ctx, vdev->out_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11004701 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004702 slot_ctx = xhci_get_slot_ctx(xhci, config_cmd->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11004703 slot_ctx->dev_info |= cpu_to_le32(DEV_HUB);
Chunfeng Yun096b1102015-12-04 15:53:43 +02004704 /*
4705 * refer to section 6.2.2: MTT should be 0 for full speed hub,
4706 * but it may be already set to 1 when setup an xHCI virtual
4707 * device, so clear it anyway.
4708 */
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004709 if (tt->multi)
Matt Evans28ccd292011-03-29 13:40:46 +11004710 slot_ctx->dev_info |= cpu_to_le32(DEV_MTT);
Chunfeng Yun096b1102015-12-04 15:53:43 +02004711 else if (hdev->speed == USB_SPEED_FULL)
4712 slot_ctx->dev_info &= cpu_to_le32(~DEV_MTT);
4713
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004714 if (xhci->hci_version > 0x95) {
4715 xhci_dbg(xhci, "xHCI version %x needs hub "
4716 "TT think time and number of ports\n",
4717 (unsigned int) xhci->hci_version);
Matt Evans28ccd292011-03-29 13:40:46 +11004718 slot_ctx->dev_info2 |= cpu_to_le32(XHCI_MAX_PORTS(hdev->maxchild));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004719 /* Set TT think time - convert from ns to FS bit times.
4720 * 0 = 8 FS bit times, 1 = 16 FS bit times,
4721 * 2 = 24 FS bit times, 3 = 32 FS bit times.
Andiry Xu700b4172011-05-05 18:14:05 +08004722 *
4723 * xHCI 1.0: this field shall be 0 if the device is not a
4724 * High-spped hub.
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004725 */
4726 think_time = tt->think_time;
4727 if (think_time != 0)
4728 think_time = (think_time / 666) - 1;
Andiry Xu700b4172011-05-05 18:14:05 +08004729 if (xhci->hci_version < 0x100 || hdev->speed == USB_SPEED_HIGH)
4730 slot_ctx->tt_info |=
4731 cpu_to_le32(TT_THINK_TIME(think_time));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004732 } else {
4733 xhci_dbg(xhci, "xHCI version %x doesn't need hub "
4734 "TT think time or number of ports\n",
4735 (unsigned int) xhci->hci_version);
4736 }
4737 slot_ctx->dev_state = 0;
4738 spin_unlock_irqrestore(&xhci->lock, flags);
4739
4740 xhci_dbg(xhci, "Set up %s for hub device.\n",
4741 (xhci->hci_version > 0x95) ?
4742 "configure endpoint" : "evaluate context");
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004743
4744 /* Issue and wait for the configure endpoint or
4745 * evaluate context command.
4746 */
4747 if (xhci->hci_version > 0x95)
4748 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
4749 false, false);
4750 else
4751 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
4752 true, false);
4753
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004754 xhci_free_command(xhci, config_cmd);
4755 return ret;
4756}
4757
Lu Baolu39693842017-04-07 17:57:04 +03004758static int xhci_get_frame(struct usb_hcd *hcd)
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004759{
4760 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4761 /* EHCI mods by the periodic size. Why? */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004762 return readl(&xhci->run_regs->microframe_index) >> 3;
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004763}
4764
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004765int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks)
4766{
4767 struct xhci_hcd *xhci;
Arnd Bergmann4c39d4b2017-03-13 10:18:44 +08004768 /*
4769 * TODO: Check with DWC3 clients for sysdev according to
4770 * quirks
4771 */
4772 struct device *dev = hcd->self.sysdev;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004773 int retval;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004774
Sarah Sharp1386ff72014-01-31 11:45:02 -08004775 /* Accept arbitrarily long scatter-gather lists */
4776 hcd->self.sg_tablesize = ~0;
Ming Leifc760512013-08-08 21:48:23 +08004777
Mathias Nymane2ed5112014-03-07 17:06:57 +02004778 /* support to build packet from discontinuous buffers */
4779 hcd->self.no_sg_constraint = 1;
4780
Hans de Goede19181bc2012-07-04 09:18:02 +02004781 /* XHCI controllers don't stop the ep queue on short packets :| */
4782 hcd->self.no_stop_on_short = 1;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004783
Mathias Nymanb50107b2015-10-01 18:40:38 +03004784 xhci = hcd_to_xhci(hcd);
4785
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004786 if (usb_hcd_is_primary_hcd(hcd)) {
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004787 xhci->main_hcd = hcd;
4788 /* Mark the first roothub as being USB 2.0.
4789 * The xHCI driver will register the USB 3.0 roothub.
4790 */
4791 hcd->speed = HCD_USB2;
4792 hcd->self.root_hub->speed = USB_SPEED_HIGH;
4793 /*
4794 * USB 2.0 roothub under xHCI has an integrated TT,
4795 * (rate matching hub) as opposed to having an OHCI/UHCI
4796 * companion controller.
4797 */
4798 hcd->has_tt = 1;
4799 } else {
Mathias Nymanb50107b2015-10-01 18:40:38 +03004800 if (xhci->sbrn == 0x31) {
4801 xhci_info(xhci, "Host supports USB 3.1 Enhanced SuperSpeed\n");
4802 hcd->speed = HCD_USB31;
Mathias Nyman2c0e06f2016-01-25 15:30:45 +02004803 hcd->self.root_hub->speed = USB_SPEED_SUPER_PLUS;
Mathias Nymanb50107b2015-10-01 18:40:38 +03004804 }
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004805 /* xHCI private pointer was set in xhci_pci_probe for the second
4806 * registered roothub.
4807 */
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004808 return 0;
4809 }
4810
Chris Bainbridgea00918d2015-05-19 16:30:51 +03004811 mutex_init(&xhci->mutex);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004812 xhci->cap_regs = hcd->regs;
4813 xhci->op_regs = hcd->regs +
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004814 HC_LENGTH(readl(&xhci->cap_regs->hc_capbase));
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004815 xhci->run_regs = hcd->regs +
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004816 (readl(&xhci->cap_regs->run_regs_off) & RTSOFF_MASK);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004817 /* Cache read-only capability registers */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004818 xhci->hcs_params1 = readl(&xhci->cap_regs->hcs_params1);
4819 xhci->hcs_params2 = readl(&xhci->cap_regs->hcs_params2);
4820 xhci->hcs_params3 = readl(&xhci->cap_regs->hcs_params3);
4821 xhci->hcc_params = readl(&xhci->cap_regs->hc_capbase);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004822 xhci->hci_version = HC_VERSION(xhci->hcc_params);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004823 xhci->hcc_params = readl(&xhci->cap_regs->hcc_params);
Lu Baolu04abb6d2015-10-01 18:40:31 +03004824 if (xhci->hci_version > 0x100)
4825 xhci->hcc_params2 = readl(&xhci->cap_regs->hcc_params2);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004826 xhci_print_registers(xhci);
4827
Mathias Nyman757de492016-06-01 18:09:10 +03004828 xhci->quirks |= quirks;
Takashi Iwai4e6a1ee2013-12-09 12:42:48 +01004829
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004830 get_quirks(dev, xhci);
4831
George Cherian07f3cb72013-07-01 10:59:12 +05304832 /* In xhci controllers which follow xhci 1.0 spec gives a spurious
4833 * success event after a short transfer. This quirk will ignore such
4834 * spurious event.
4835 */
4836 if (xhci->hci_version > 0x96)
4837 xhci->quirks |= XHCI_SPURIOUS_SUCCESS;
4838
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004839 /* Make sure the HC is halted. */
4840 retval = xhci_halt(xhci);
4841 if (retval)
Roger Quadroscd33a322015-05-29 17:01:46 +03004842 return retval;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004843
4844 xhci_dbg(xhci, "Resetting HCD\n");
4845 /* Reset the internal HC memory state and registers. */
4846 retval = xhci_reset(xhci);
4847 if (retval)
Roger Quadroscd33a322015-05-29 17:01:46 +03004848 return retval;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004849 xhci_dbg(xhci, "Reset complete\n");
4850
Yoshihiro Shimoda0a380be2016-04-08 16:25:07 +03004851 /*
4852 * On some xHCI controllers (e.g. R-Car SoCs), the AC64 bit (bit 0)
4853 * of HCCPARAMS1 is set to 1. However, the xHCs don't support 64-bit
4854 * address memory pointers actually. So, this driver clears the AC64
4855 * bit of xhci->hcc_params to call dma_set_coherent_mask(dev,
4856 * DMA_BIT_MASK(32)) in this xhci_gen_setup().
4857 */
4858 if (xhci->quirks & XHCI_NO_64BIT_SUPPORT)
4859 xhci->hcc_params &= ~BIT(0);
4860
Xenia Ragiadakouc10cf112013-08-14 05:55:19 +03004861 /* Set dma_mask and coherent_dma_mask to 64-bits,
4862 * if xHC supports 64-bit addressing */
4863 if (HCC_64BIT_ADDR(xhci->hcc_params) &&
4864 !dma_set_mask(dev, DMA_BIT_MASK(64))) {
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004865 xhci_dbg(xhci, "Enabling 64-bit DMA addresses.\n");
Xenia Ragiadakouc10cf112013-08-14 05:55:19 +03004866 dma_set_coherent_mask(dev, DMA_BIT_MASK(64));
Duc Dangfda182d2015-10-09 13:30:13 +03004867 } else {
4868 /*
4869 * This is to avoid error in cases where a 32-bit USB
4870 * controller is used on a 64-bit capable system.
4871 */
4872 retval = dma_set_mask(dev, DMA_BIT_MASK(32));
4873 if (retval)
4874 return retval;
4875 xhci_dbg(xhci, "Enabling 32-bit DMA addresses.\n");
4876 dma_set_coherent_mask(dev, DMA_BIT_MASK(32));
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004877 }
4878
4879 xhci_dbg(xhci, "Calling HCD init\n");
4880 /* Initialize HCD and host controller data structures. */
4881 retval = xhci_init(hcd);
4882 if (retval)
Roger Quadroscd33a322015-05-29 17:01:46 +03004883 return retval;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004884 xhci_dbg(xhci, "Called HCD init\n");
Hans de Goede99705092015-01-16 17:54:01 +02004885
4886 xhci_info(xhci, "hcc params 0x%08x hci version 0x%x quirks 0x%08x\n",
4887 xhci->hcc_params, xhci->hci_version, xhci->quirks);
4888
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004889 return 0;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004890}
Andrew Bresticker436e8c72014-10-03 11:35:28 +03004891EXPORT_SYMBOL_GPL(xhci_gen_setup);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004892
Andrew Bresticker1885d9a2014-10-03 11:35:26 +03004893static const struct hc_driver xhci_hc_driver = {
4894 .description = "xhci-hcd",
4895 .product_desc = "xHCI Host Controller",
Yoshihiro Shimoda32479d42015-11-24 13:09:47 +02004896 .hcd_priv_size = sizeof(struct xhci_hcd),
Andrew Bresticker1885d9a2014-10-03 11:35:26 +03004897
4898 /*
4899 * generic hardware linkage
4900 */
4901 .irq = xhci_irq,
4902 .flags = HCD_MEMORY | HCD_USB3 | HCD_SHARED,
4903
4904 /*
4905 * basic lifecycle operations
4906 */
4907 .reset = NULL, /* set in xhci_init_driver() */
4908 .start = xhci_run,
4909 .stop = xhci_stop,
4910 .shutdown = xhci_shutdown,
4911
4912 /*
4913 * managing i/o requests and associated device resources
4914 */
4915 .urb_enqueue = xhci_urb_enqueue,
4916 .urb_dequeue = xhci_urb_dequeue,
4917 .alloc_dev = xhci_alloc_dev,
4918 .free_dev = xhci_free_dev,
4919 .alloc_streams = xhci_alloc_streams,
4920 .free_streams = xhci_free_streams,
4921 .add_endpoint = xhci_add_endpoint,
4922 .drop_endpoint = xhci_drop_endpoint,
4923 .endpoint_reset = xhci_endpoint_reset,
4924 .check_bandwidth = xhci_check_bandwidth,
4925 .reset_bandwidth = xhci_reset_bandwidth,
4926 .address_device = xhci_address_device,
4927 .enable_device = xhci_enable_device,
4928 .update_hub_device = xhci_update_hub_device,
4929 .reset_device = xhci_discover_or_reset_device,
4930
4931 /*
4932 * scheduling support
4933 */
4934 .get_frame_number = xhci_get_frame,
4935
4936 /*
4937 * root hub support
4938 */
4939 .hub_control = xhci_hub_control,
4940 .hub_status_data = xhci_hub_status_data,
4941 .bus_suspend = xhci_bus_suspend,
4942 .bus_resume = xhci_bus_resume,
4943
4944 /*
4945 * call back when device connected and addressed
4946 */
4947 .update_device = xhci_update_device,
4948 .set_usb2_hw_lpm = xhci_set_usb2_hardware_lpm,
4949 .enable_usb3_lpm_timeout = xhci_enable_usb3_lpm_timeout,
4950 .disable_usb3_lpm_timeout = xhci_disable_usb3_lpm_timeout,
4951 .find_raw_port_number = xhci_find_raw_port_number,
4952};
4953
Roger Quadroscd33a322015-05-29 17:01:46 +03004954void xhci_init_driver(struct hc_driver *drv,
4955 const struct xhci_driver_overrides *over)
Andrew Bresticker1885d9a2014-10-03 11:35:26 +03004956{
Roger Quadroscd33a322015-05-29 17:01:46 +03004957 BUG_ON(!over);
4958
4959 /* Copy the generic table to drv then apply the overrides */
Andrew Bresticker1885d9a2014-10-03 11:35:26 +03004960 *drv = xhci_hc_driver;
Roger Quadroscd33a322015-05-29 17:01:46 +03004961
4962 if (over) {
4963 drv->hcd_priv_size += over->extra_priv_size;
4964 if (over->reset)
4965 drv->reset = over->reset;
4966 if (over->start)
4967 drv->start = over->start;
4968 }
Andrew Bresticker1885d9a2014-10-03 11:35:26 +03004969}
4970EXPORT_SYMBOL_GPL(xhci_init_driver);
4971
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004972MODULE_DESCRIPTION(DRIVER_DESC);
4973MODULE_AUTHOR(DRIVER_AUTHOR);
4974MODULE_LICENSE("GPL");
4975
4976static int __init xhci_hcd_init(void)
4977{
Sarah Sharp98441972009-05-14 11:44:18 -07004978 /*
4979 * Check the compiler generated sizes of structures that must be laid
4980 * out in specific ways for hardware access.
4981 */
4982 BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8);
4983 BUILD_BUG_ON(sizeof(struct xhci_slot_ctx) != 8*32/8);
4984 BUILD_BUG_ON(sizeof(struct xhci_ep_ctx) != 8*32/8);
4985 /* xhci_device_control has eight fields, and also
4986 * embeds one xhci_slot_ctx and 31 xhci_ep_ctx
4987 */
Sarah Sharp98441972009-05-14 11:44:18 -07004988 BUILD_BUG_ON(sizeof(struct xhci_stream_ctx) != 4*32/8);
4989 BUILD_BUG_ON(sizeof(union xhci_trb) != 4*32/8);
4990 BUILD_BUG_ON(sizeof(struct xhci_erst_entry) != 4*32/8);
Lu Baolu04abb6d2015-10-01 18:40:31 +03004991 BUILD_BUG_ON(sizeof(struct xhci_cap_regs) != 8*32/8);
Sarah Sharp98441972009-05-14 11:44:18 -07004992 BUILD_BUG_ON(sizeof(struct xhci_intr_reg) != 8*32/8);
4993 /* xhci_run_regs has eight fields and embeds 128 xhci_intr_regs */
4994 BUILD_BUG_ON(sizeof(struct xhci_run_regs) != (8+8*128)*32/8);
Oliver Neukum1eaf35e2015-12-03 15:03:34 +01004995
4996 if (usb_disabled())
4997 return -ENODEV;
4998
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004999 return 0;
5000}
Arthur Demchenkovb04c8462015-05-19 16:30:50 +03005001
5002/*
5003 * If an init function is provided, an exit function must also be provided
5004 * to allow module unload.
5005 */
5006static void __exit xhci_hcd_fini(void) { }
5007
Sarah Sharp66d4ead2009-04-27 19:52:28 -07005008module_init(xhci_hcd_init);
Arthur Demchenkovb04c8462015-05-19 16:30:50 +03005009module_exit(xhci_hcd_fini);