blob: 51326425f9cc799c2d81d910e9d1a7575b4a8bbb [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
Jiahau Chang9da5a102017-07-20 14:48:27 +0300201 if (xhci->quirks & XHCI_ASMEDIA_MODIFY_FLOWCONTROL)
202 usb_asmedia_modifyflowcontrol(to_pci_dev(xhci_to_hcd(xhci)->self.controller));
203
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300204 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
205 "Wait for controller to be ready for doorbell rings");
Sarah Sharp2d62f3e2010-05-24 13:25:15 -0700206 /*
207 * xHCI cannot write to any doorbells or operational registers other
208 * than status until the "Controller Not Ready" flag is cleared.
209 */
Lin Wangdc0b1772015-01-09 16:06:28 +0200210 ret = xhci_handshake(&xhci->op_regs->status,
Sarah Sharp22ceac12012-07-23 16:06:08 -0700211 STS_CNR, 0, 10 * 1000 * 1000);
Andiry Xuf370b992012-04-14 02:54:30 +0800212
Felipe Balbi98871e92017-01-23 14:20:04 +0200213 for (i = 0; i < 2; i++) {
Andiry Xuf370b992012-04-14 02:54:30 +0800214 xhci->bus_state[i].port_c_suspend = 0;
215 xhci->bus_state[i].suspended_ports = 0;
216 xhci->bus_state[i].resuming_ports = 0;
217 }
218
219 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700220}
221
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300222
yuan linyu2c93e792017-02-25 19:20:55 +0800223#ifdef CONFIG_USB_PCI
Dong Nguyen43b86af2010-07-21 16:56:08 -0700224/*
225 * Set up MSI
226 */
227static int xhci_setup_msi(struct xhci_hcd *xhci)
228{
229 int ret;
Arnd Bergmann4c39d4b2017-03-13 10:18:44 +0800230 /*
231 * TODO:Check with MSI Soc for sysdev
232 */
Dong Nguyen43b86af2010-07-21 16:56:08 -0700233 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
234
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300235 ret = pci_alloc_irq_vectors(pdev, 1, 1, PCI_IRQ_MSI);
236 if (ret < 0) {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300237 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
238 "failed to allocate MSI entry");
Dong Nguyen43b86af2010-07-21 16:56:08 -0700239 return ret;
240 }
241
Alex Shi851ec162013-05-24 10:54:19 +0800242 ret = request_irq(pdev->irq, xhci_msi_irq,
Dong Nguyen43b86af2010-07-21 16:56:08 -0700243 0, "xhci_hcd", xhci_to_hcd(xhci));
244 if (ret) {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300245 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
246 "disable MSI interrupt");
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300247 pci_free_irq_vectors(pdev);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700248 }
249
250 return ret;
251}
252
253/*
254 * Set up MSI-X
255 */
256static int xhci_setup_msix(struct xhci_hcd *xhci)
257{
258 int i, ret = 0;
Andiry Xu00292272010-12-27 17:39:02 +0800259 struct usb_hcd *hcd = xhci_to_hcd(xhci);
260 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700261
262 /*
263 * calculate number of msi-x vectors supported.
264 * - HCS_MAX_INTRS: the max number of interrupts the host can handle,
265 * with max number of interrupters based on the xhci HCSPARAMS1.
266 * - num_online_cpus: maximum msi-x vectors per CPUs core.
267 * Add additional 1 vector to ensure always available interrupt.
268 */
269 xhci->msix_count = min(num_online_cpus() + 1,
270 HCS_MAX_INTRS(xhci->hcs_params1));
271
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300272 ret = pci_alloc_irq_vectors(pdev, xhci->msix_count, xhci->msix_count,
273 PCI_IRQ_MSIX);
274 if (ret < 0) {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300275 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
276 "Failed to enable MSI-X");
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300277 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700278 }
279
Dong Nguyen43b86af2010-07-21 16:56:08 -0700280 for (i = 0; i < xhci->msix_count; i++) {
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300281 ret = request_irq(pci_irq_vector(pdev, i), xhci_msi_irq, 0,
282 "xhci_hcd", xhci_to_hcd(xhci));
Dong Nguyen43b86af2010-07-21 16:56:08 -0700283 if (ret)
284 goto disable_msix;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700285 }
Dong Nguyen43b86af2010-07-21 16:56:08 -0700286
Andiry Xu00292272010-12-27 17:39:02 +0800287 hcd->msix_enabled = 1;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700288 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700289
290disable_msix:
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300291 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "disable MSI-X interrupt");
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300292 while (--i >= 0)
293 free_irq(pci_irq_vector(pdev, i), xhci_to_hcd(xhci));
294 pci_free_irq_vectors(pdev);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700295 return ret;
296}
297
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700298/* Free any IRQs and disable MSI-X */
299static void xhci_cleanup_msix(struct xhci_hcd *xhci)
300{
Andiry Xu00292272010-12-27 17:39:02 +0800301 struct usb_hcd *hcd = xhci_to_hcd(xhci);
302 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700303
Jack Pham90053552013-11-15 14:53:14 -0800304 if (xhci->quirks & XHCI_PLAT)
305 return;
306
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300307 /* return if using legacy interrupt */
308 if (hcd->irq > 0)
309 return;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700310
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300311 if (hcd->msix_enabled) {
312 int i;
313
314 for (i = 0; i < xhci->msix_count; i++)
315 free_irq(pci_irq_vector(pdev, i), xhci_to_hcd(xhci));
Dong Nguyen43b86af2010-07-21 16:56:08 -0700316 } else {
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300317 free_irq(pci_irq_vector(pdev, 0), xhci_to_hcd(xhci));
Dong Nguyen43b86af2010-07-21 16:56:08 -0700318 }
319
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300320 pci_free_irq_vectors(pdev);
Andiry Xu00292272010-12-27 17:39:02 +0800321 hcd->msix_enabled = 0;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700322}
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700323
Olof Johanssond5c82fe2013-07-23 11:58:20 -0700324static void __maybe_unused xhci_msix_sync_irqs(struct xhci_hcd *xhci)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700325{
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300326 struct usb_hcd *hcd = xhci_to_hcd(xhci);
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700327
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300328 if (hcd->msix_enabled) {
329 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
330 int i;
331
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700332 for (i = 0; i < xhci->msix_count; i++)
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300333 synchronize_irq(pci_irq_vector(pdev, i));
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700334 }
335}
336
337static int xhci_try_enable_msi(struct usb_hcd *hcd)
338{
339 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp52fb6122013-08-08 10:08:34 -0700340 struct pci_dev *pdev;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700341 int ret;
342
Sarah Sharp52fb6122013-08-08 10:08:34 -0700343 /* The xhci platform device has set up IRQs through usb_add_hcd. */
344 if (xhci->quirks & XHCI_PLAT)
345 return 0;
346
347 pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700348 /*
349 * Some Fresco Logic host controllers advertise MSI, but fail to
350 * generate interrupts. Don't even try to enable MSI.
351 */
352 if (xhci->quirks & XHCI_BROKEN_MSI)
Hannes Reinecke00eed9c2013-03-04 17:14:43 +0100353 goto legacy_irq;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700354
355 /* unregister the legacy interrupt */
356 if (hcd->irq)
357 free_irq(hcd->irq, hcd);
Felipe Balbicd704692012-02-29 16:46:23 +0200358 hcd->irq = 0;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700359
360 ret = xhci_setup_msix(xhci);
361 if (ret)
362 /* fall back to msi*/
363 ret = xhci_setup_msi(xhci);
364
Peter Chen6a29bee2017-05-17 18:32:02 +0300365 if (!ret) {
366 hcd->msi_enabled = 1;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700367 return 0;
Peter Chen6a29bee2017-05-17 18:32:02 +0300368 }
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700369
Sarah Sharp68d07f62012-02-13 16:25:57 -0800370 if (!pdev->irq) {
371 xhci_err(xhci, "No msi-x/msi found and no IRQ in BIOS\n");
372 return -EINVAL;
373 }
374
Hannes Reinecke00eed9c2013-03-04 17:14:43 +0100375 legacy_irq:
Adrian Huang79699432014-02-27 11:26:03 +0000376 if (!strlen(hcd->irq_descr))
377 snprintf(hcd->irq_descr, sizeof(hcd->irq_descr), "%s:usb%d",
378 hcd->driver->description, hcd->self.busnum);
379
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700380 /* fall back to legacy interrupt*/
381 ret = request_irq(pdev->irq, &usb_hcd_irq, IRQF_SHARED,
382 hcd->irq_descr, hcd);
383 if (ret) {
384 xhci_err(xhci, "request interrupt %d failed\n",
385 pdev->irq);
386 return ret;
387 }
388 hcd->irq = pdev->irq;
389 return 0;
390}
391
392#else
393
David Cohen01bb59e2014-04-25 19:20:16 +0300394static inline int xhci_try_enable_msi(struct usb_hcd *hcd)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700395{
396 return 0;
397}
398
David Cohen01bb59e2014-04-25 19:20:16 +0300399static inline void xhci_cleanup_msix(struct xhci_hcd *xhci)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700400{
401}
402
David Cohen01bb59e2014-04-25 19:20:16 +0300403static inline void xhci_msix_sync_irqs(struct xhci_hcd *xhci)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700404{
405}
406
407#endif
408
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500409static void compliance_mode_recovery(unsigned long arg)
410{
411 struct xhci_hcd *xhci;
412 struct usb_hcd *hcd;
413 u32 temp;
414 int i;
415
416 xhci = (struct xhci_hcd *)arg;
417
418 for (i = 0; i < xhci->num_usb3_ports; i++) {
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200419 temp = readl(xhci->usb3_ports[i]);
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500420 if ((temp & PORT_PLS_MASK) == USB_SS_PORT_LS_COMP_MOD) {
421 /*
422 * Compliance Mode Detected. Letting USB Core
423 * handle the Warm Reset
424 */
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300425 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
426 "Compliance mode detected->port %d",
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500427 i + 1);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300428 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
429 "Attempting compliance mode recovery");
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500430 hcd = xhci->shared_hcd;
431
432 if (hcd->state == HC_STATE_SUSPENDED)
433 usb_hcd_resume_root_hub(hcd);
434
435 usb_hcd_poll_rh_status(hcd);
436 }
437 }
438
439 if (xhci->port_status_u0 != ((1 << xhci->num_usb3_ports)-1))
440 mod_timer(&xhci->comp_mode_recovery_timer,
441 jiffies + msecs_to_jiffies(COMP_MODE_RCVRY_MSECS));
442}
443
444/*
445 * Quirk to work around issue generated by the SN65LVPE502CP USB3.0 re-driver
446 * that causes ports behind that hardware to enter compliance mode sometimes.
447 * The quirk creates a timer that polls every 2 seconds the link state of
448 * each host controller's port and recovers it by issuing a Warm reset
449 * if Compliance mode is detected, otherwise the port will become "dead" (no
450 * device connections or disconnections will be detected anymore). Becasue no
451 * status event is generated when entering compliance mode (per xhci spec),
452 * this quirk is needed on systems that have the failing hardware installed.
453 */
454static void compliance_mode_recovery_timer_init(struct xhci_hcd *xhci)
455{
456 xhci->port_status_u0 = 0;
Julia Lawallfc8abe02015-01-09 16:06:29 +0200457 setup_timer(&xhci->comp_mode_recovery_timer,
458 compliance_mode_recovery, (unsigned long)xhci);
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500459 xhci->comp_mode_recovery_timer.expires = jiffies +
460 msecs_to_jiffies(COMP_MODE_RCVRY_MSECS);
461
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500462 add_timer(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300463 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
464 "Compliance mode recovery timer initialized");
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500465}
466
467/*
468 * This function identifies the systems that have installed the SN65LVPE502CP
469 * USB3.0 re-driver and that need the Compliance Mode Quirk.
470 * Systems:
471 * Vendor: Hewlett-Packard -> System Models: Z420, Z620 and Z820
472 */
Andrew Brestickere1cd9722014-10-03 11:35:27 +0300473static bool xhci_compliance_mode_recovery_timer_quirk_check(void)
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500474{
475 const char *dmi_product_name, *dmi_sys_vendor;
476
477 dmi_product_name = dmi_get_system_info(DMI_PRODUCT_NAME);
478 dmi_sys_vendor = dmi_get_system_info(DMI_SYS_VENDOR);
Vivek Gautam457a73d2012-09-22 18:11:19 +0530479 if (!dmi_product_name || !dmi_sys_vendor)
480 return false;
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500481
482 if (!(strstr(dmi_sys_vendor, "Hewlett-Packard")))
483 return false;
484
485 if (strstr(dmi_product_name, "Z420") ||
486 strstr(dmi_product_name, "Z620") ||
Alexis R. Cortes47080972012-10-17 14:09:12 -0500487 strstr(dmi_product_name, "Z820") ||
Alexis R. Cortesb0e4e602012-11-08 16:59:27 -0600488 strstr(dmi_product_name, "Z1 Workstation"))
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500489 return true;
490
491 return false;
492}
493
494static int xhci_all_ports_seen_u0(struct xhci_hcd *xhci)
495{
496 return (xhci->port_status_u0 == ((1 << xhci->num_usb3_ports)-1));
497}
498
499
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700500/*
501 * Initialize memory for HCD and xHC (one-time init).
502 *
503 * Program the PAGESIZE register, initialize the device context array, create
504 * device contexts (?), set up a command ring segment (or two?), create event
505 * ring (one for now).
506 */
Lu Baolu39693842017-04-07 17:57:04 +0300507static int xhci_init(struct usb_hcd *hcd)
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700508{
509 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
510 int retval = 0;
511
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300512 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "xhci_init");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700513 spin_lock_init(&xhci->lock);
Sebastian Andrzej Siewiord7826592011-09-13 16:41:10 -0700514 if (xhci->hci_version == 0x95 && link_quirk) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300515 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
516 "QUIRK: Not clearing Link TRB chain bits.");
Sarah Sharpb0567b32009-08-07 14:04:36 -0700517 xhci->quirks |= XHCI_LINK_TRB_QUIRK;
518 } else {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300519 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
520 "xHCI doesn't need link TRB QUIRK");
Sarah Sharpb0567b32009-08-07 14:04:36 -0700521 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700522 retval = xhci_mem_init(xhci, GFP_KERNEL);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300523 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "Finished xhci_init");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700524
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500525 /* Initializing Compliance Mode Recovery Data If Needed */
Sarah Sharpc3897aa2013-04-18 10:02:03 -0700526 if (xhci_compliance_mode_recovery_timer_quirk_check()) {
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500527 xhci->quirks |= XHCI_COMP_MODE_QUIRK;
528 compliance_mode_recovery_timer_init(xhci);
529 }
530
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700531 return retval;
532}
533
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700534/*-------------------------------------------------------------------------*/
535
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700536
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800537static int xhci_run_finished(struct xhci_hcd *xhci)
538{
539 if (xhci_start(xhci)) {
540 xhci_halt(xhci);
541 return -ENODEV;
542 }
543 xhci->shared_hcd->state = HC_STATE_RUNNING;
Elric Fuc181bc52012-06-27 16:30:57 +0800544 xhci->cmd_ring_state = CMD_RING_STATE_RUNNING;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800545
546 if (xhci->quirks & XHCI_NEC_HOST)
547 xhci_ring_cmd_db(xhci);
548
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300549 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
550 "Finished xhci_run for USB3 roothub");
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800551 return 0;
552}
553
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700554/*
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700555 * Start the HC after it was halted.
556 *
557 * This function is called by the USB core when the HC driver is added.
558 * Its opposite is xhci_stop().
559 *
560 * xhci_init() must be called once before this function can be called.
561 * Reset the HC, enable device slot contexts, program DCBAAP, and
562 * set command ring pointer and event ring pointer.
563 *
564 * Setup MSI-X vectors and enable interrupts.
565 */
566int xhci_run(struct usb_hcd *hcd)
567{
568 u32 temp;
Sarah Sharp8e595a52009-07-27 12:03:31 -0700569 u64 temp_64;
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700570 int ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700571 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700572
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800573 /* Start the xHCI host controller running only after the USB 2.0 roothub
574 * is setup.
575 */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700576
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700577 hcd->uses_new_polling = 1;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800578 if (!usb_hcd_is_primary_hcd(hcd))
579 return xhci_run_finished(xhci);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700580
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300581 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "xhci_run");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700582
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700583 ret = xhci_try_enable_msi(hcd);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700584 if (ret)
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700585 return ret;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700586
Sarah Sharp66e49d82009-07-27 12:03:46 -0700587 xhci_dbg_cmd_ptrs(xhci);
588
589 xhci_dbg(xhci, "ERST memory map follows:\n");
590 xhci_dbg_erst(xhci, &xhci->erst);
Sarah Sharpf7b2e402014-01-30 13:27:49 -0800591 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
Sarah Sharp66e49d82009-07-27 12:03:46 -0700592 temp_64 &= ~ERST_PTR_MASK;
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300593 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
594 "ERST deq = 64'h%0lx", (long unsigned int) temp_64);
Sarah Sharp66e49d82009-07-27 12:03:46 -0700595
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300596 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
597 "// Set the interrupt modulation register");
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200598 temp = readl(&xhci->ir_set->irq_control);
Sarah Sharpa4d88302009-05-14 11:44:26 -0700599 temp &= ~ER_IRQ_INTERVAL_MASK;
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +0200600 /*
601 * the increment interval is 8 times as much as that defined
602 * in xHCI spec on MTK's controller
603 */
604 temp |= (u32) ((xhci->quirks & XHCI_MTK_HOST) ? 20 : 160);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200605 writel(temp, &xhci->ir_set->irq_control);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700606
607 /* Set the HCD state before we enable the irqs */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200608 temp = readl(&xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700609 temp |= (CMD_EIE);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300610 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
611 "// Enable interrupts, cmd = 0x%x.", temp);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200612 writel(temp, &xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700613
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200614 temp = readl(&xhci->ir_set->irq_pending);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300615 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
616 "// Enabling event ring interrupter %p by writing 0x%x to irq_pending",
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700617 xhci->ir_set, (unsigned int) ER_IRQ_ENABLE(temp));
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200618 writel(ER_IRQ_ENABLE(temp), &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800619 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700620
Mathias Nymanddba5cd2014-05-08 19:26:00 +0300621 if (xhci->quirks & XHCI_NEC_HOST) {
622 struct xhci_command *command;
Lu Baolu74e0b562017-04-07 17:57:05 +0300623
Mathias Nymanddba5cd2014-05-08 19:26:00 +0300624 command = xhci_alloc_command(xhci, false, false, GFP_KERNEL);
625 if (!command)
626 return -ENOMEM;
Lu Baolu74e0b562017-04-07 17:57:05 +0300627
Mathias Nymanddba5cd2014-05-08 19:26:00 +0300628 xhci_queue_vendor_command(xhci, command, 0, 0, 0,
Sarah Sharp02386342010-05-24 13:25:28 -0700629 TRB_TYPE(TRB_NEC_GET_FW));
Mathias Nymanddba5cd2014-05-08 19:26:00 +0300630 }
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300631 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
632 "Finished xhci_run for USB2 roothub");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700633 return 0;
634}
Andrew Bresticker436e8c72014-10-03 11:35:28 +0300635EXPORT_SYMBOL_GPL(xhci_run);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700636
637/*
638 * Stop xHCI driver.
639 *
640 * This function is called by the USB core when the HC driver is removed.
641 * Its opposite is xhci_run().
642 *
643 * Disable device contexts, disable IRQs, and quiesce the HC.
644 * Reset the HC, finish any completed transactions, and cleanup memory.
645 */
Lu Baolu39693842017-04-07 17:57:04 +0300646static void xhci_stop(struct usb_hcd *hcd)
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700647{
648 u32 temp;
649 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
650
Roger Quadros8c24d6d2015-09-21 17:46:14 +0300651 mutex_lock(&xhci->mutex);
Roger Quadros8c24d6d2015-09-21 17:46:14 +0300652
Joel Stanleyfe190ed2017-04-07 17:57:00 +0300653 /* Only halt host and free memory after both hcds are removed */
Gabriel Krisman Bertazi27a41a82016-06-01 18:09:07 +0300654 if (!usb_hcd_is_primary_hcd(hcd)) {
Joel Stanleyfe190ed2017-04-07 17:57:00 +0300655 /* usb core will free this hcd shortly, unset pointer */
656 xhci->shared_hcd = NULL;
Gabriel Krisman Bertazi27a41a82016-06-01 18:09:07 +0300657 mutex_unlock(&xhci->mutex);
658 return;
659 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700660
Joel Stanleyfe190ed2017-04-07 17:57:00 +0300661 spin_lock_irq(&xhci->lock);
662 xhci->xhc_state |= XHCI_STATE_HALTED;
663 xhci->cmd_ring_state = CMD_RING_STATE_STOPPED;
664 xhci_halt(xhci);
665 xhci_reset(xhci);
666 spin_unlock_irq(&xhci->lock);
667
Zhang Rui40a9fb12010-12-17 13:17:04 -0800668 xhci_cleanup_msix(xhci);
669
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500670 /* Deleting Compliance Mode Recovery Timer */
671 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
Tony Camuso58b1d792013-04-05 14:27:07 -0400672 (!(xhci_all_ports_seen_u0(xhci)))) {
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500673 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300674 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
675 "%s: compliance mode recovery timer deleted",
Tony Camuso58b1d792013-04-05 14:27:07 -0400676 __func__);
677 }
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500678
Andiry Xuc41136b2011-03-22 17:08:14 +0800679 if (xhci->quirks & XHCI_AMD_PLL_FIX)
680 usb_amd_dev_put();
681
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300682 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
683 "// Disabling event ring interrupts");
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200684 temp = readl(&xhci->op_regs->status);
Lu Baolud1001ab2017-04-07 17:56:50 +0300685 writel((temp & ~0x1fff) | STS_EINT, &xhci->op_regs->status);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200686 temp = readl(&xhci->ir_set->irq_pending);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200687 writel(ER_IRQ_DISABLE(temp), &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800688 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700689
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300690 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "cleaning up memory");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700691 xhci_mem_cleanup(xhci);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300692 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
693 "xhci_stop completed - status = %x",
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200694 readl(&xhci->op_regs->status));
Roger Quadros85ac90f2015-09-21 17:46:12 +0300695 mutex_unlock(&xhci->mutex);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700696}
697
698/*
699 * Shutdown HC (not bus-specific)
700 *
701 * This is called when the machine is rebooting or halting. We assume that the
702 * machine will be powered off, and the HC's internal state will be reset.
703 * Don't bother to free memory.
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800704 *
705 * This will only ever be called with the main usb_hcd (the USB3 roothub).
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700706 */
Lu Baolu39693842017-04-07 17:57:04 +0300707static void xhci_shutdown(struct usb_hcd *hcd)
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700708{
709 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
710
Dan Carpenter052c7f92012-08-13 19:57:03 +0300711 if (xhci->quirks & XHCI_SPURIOUS_REBOOT)
Arnd Bergmann4c39d4b2017-03-13 10:18:44 +0800712 usb_disable_xhci_ports(to_pci_dev(hcd->self.sysdev));
Sarah Sharpe95829f2012-07-23 18:59:30 +0300713
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700714 spin_lock_irq(&xhci->lock);
715 xhci_halt(xhci);
Takashi Iwai638298d2013-09-12 08:11:06 +0200716 /* Workaround for spurious wakeups at shutdown with HSW */
717 if (xhci->quirks & XHCI_SPURIOUS_WAKEUP)
718 xhci_reset(xhci);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700719 spin_unlock_irq(&xhci->lock);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700720
Zhang Rui40a9fb12010-12-17 13:17:04 -0800721 xhci_cleanup_msix(xhci);
722
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300723 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
724 "xhci_shutdown completed - status = %x",
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200725 readl(&xhci->op_regs->status));
Takashi Iwai638298d2013-09-12 08:11:06 +0200726
727 /* Yet another workaround for spurious wakeups at shutdown with HSW */
728 if (xhci->quirks & XHCI_SPURIOUS_WAKEUP)
Arnd Bergmann4c39d4b2017-03-13 10:18:44 +0800729 pci_set_power_state(to_pci_dev(hcd->self.sysdev), PCI_D3hot);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700730}
731
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -0700732#ifdef CONFIG_PM
Andiry Xu5535b1d52010-10-14 07:23:06 -0700733static void xhci_save_registers(struct xhci_hcd *xhci)
734{
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200735 xhci->s3.command = readl(&xhci->op_regs->command);
736 xhci->s3.dev_nt = readl(&xhci->op_regs->dev_notification);
Sarah Sharpf7b2e402014-01-30 13:27:49 -0800737 xhci->s3.dcbaa_ptr = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200738 xhci->s3.config_reg = readl(&xhci->op_regs->config_reg);
739 xhci->s3.erst_size = readl(&xhci->ir_set->erst_size);
Sarah Sharpf7b2e402014-01-30 13:27:49 -0800740 xhci->s3.erst_base = xhci_read_64(xhci, &xhci->ir_set->erst_base);
741 xhci->s3.erst_dequeue = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200742 xhci->s3.irq_pending = readl(&xhci->ir_set->irq_pending);
743 xhci->s3.irq_control = readl(&xhci->ir_set->irq_control);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700744}
745
746static void xhci_restore_registers(struct xhci_hcd *xhci)
747{
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200748 writel(xhci->s3.command, &xhci->op_regs->command);
749 writel(xhci->s3.dev_nt, &xhci->op_regs->dev_notification);
Sarah Sharp477632d2014-01-29 14:02:00 -0800750 xhci_write_64(xhci, xhci->s3.dcbaa_ptr, &xhci->op_regs->dcbaa_ptr);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200751 writel(xhci->s3.config_reg, &xhci->op_regs->config_reg);
752 writel(xhci->s3.erst_size, &xhci->ir_set->erst_size);
Sarah Sharp477632d2014-01-29 14:02:00 -0800753 xhci_write_64(xhci, xhci->s3.erst_base, &xhci->ir_set->erst_base);
754 xhci_write_64(xhci, xhci->s3.erst_dequeue, &xhci->ir_set->erst_dequeue);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200755 writel(xhci->s3.irq_pending, &xhci->ir_set->irq_pending);
756 writel(xhci->s3.irq_control, &xhci->ir_set->irq_control);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700757}
758
Sarah Sharp89821322010-11-12 11:59:31 -0800759static void xhci_set_cmd_ring_deq(struct xhci_hcd *xhci)
760{
761 u64 val_64;
762
763 /* step 2: initialize command ring buffer */
Sarah Sharpf7b2e402014-01-30 13:27:49 -0800764 val_64 = xhci_read_64(xhci, &xhci->op_regs->cmd_ring);
Sarah Sharp89821322010-11-12 11:59:31 -0800765 val_64 = (val_64 & (u64) CMD_RING_RSVD_BITS) |
766 (xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
767 xhci->cmd_ring->dequeue) &
768 (u64) ~CMD_RING_RSVD_BITS) |
769 xhci->cmd_ring->cycle_state;
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300770 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
771 "// Setting command ring address to 0x%llx",
Sarah Sharp89821322010-11-12 11:59:31 -0800772 (long unsigned long) val_64);
Sarah Sharp477632d2014-01-29 14:02:00 -0800773 xhci_write_64(xhci, val_64, &xhci->op_regs->cmd_ring);
Sarah Sharp89821322010-11-12 11:59:31 -0800774}
775
776/*
777 * The whole command ring must be cleared to zero when we suspend the host.
778 *
779 * The host doesn't save the command ring pointer in the suspend well, so we
780 * need to re-program it on resume. Unfortunately, the pointer must be 64-byte
781 * aligned, because of the reserved bits in the command ring dequeue pointer
782 * register. Therefore, we can't just set the dequeue pointer back in the
783 * middle of the ring (TRBs are 16-byte aligned).
784 */
785static void xhci_clear_command_ring(struct xhci_hcd *xhci)
786{
787 struct xhci_ring *ring;
788 struct xhci_segment *seg;
789
790 ring = xhci->cmd_ring;
791 seg = ring->deq_seg;
792 do {
Andiry Xu158886c2011-11-30 16:37:41 +0800793 memset(seg->trbs, 0,
794 sizeof(union xhci_trb) * (TRBS_PER_SEGMENT - 1));
795 seg->trbs[TRBS_PER_SEGMENT - 1].link.control &=
796 cpu_to_le32(~TRB_CYCLE);
Sarah Sharp89821322010-11-12 11:59:31 -0800797 seg = seg->next;
798 } while (seg != ring->deq_seg);
799
800 /* Reset the software enqueue and dequeue pointers */
801 ring->deq_seg = ring->first_seg;
802 ring->dequeue = ring->first_seg->trbs;
803 ring->enq_seg = ring->deq_seg;
804 ring->enqueue = ring->dequeue;
805
Andiry Xub008df62012-03-05 17:49:34 +0800806 ring->num_trbs_free = ring->num_segs * (TRBS_PER_SEGMENT - 1) - 1;
Sarah Sharp89821322010-11-12 11:59:31 -0800807 /*
808 * Ring is now zeroed, so the HW should look for change of ownership
809 * when the cycle bit is set to 1.
810 */
811 ring->cycle_state = 1;
812
813 /*
814 * Reset the hardware dequeue pointer.
815 * Yes, this will need to be re-written after resume, but we're paranoid
816 * and want to make sure the hardware doesn't access bogus memory
817 * because, say, the BIOS or an SMI started the host without changing
818 * the command ring pointers.
819 */
820 xhci_set_cmd_ring_deq(xhci);
821}
822
Lu Baolua1377e52014-11-18 11:27:14 +0200823static void xhci_disable_port_wake_on_bits(struct xhci_hcd *xhci)
824{
825 int port_index;
826 __le32 __iomem **port_array;
827 unsigned long flags;
828 u32 t1, t2;
829
830 spin_lock_irqsave(&xhci->lock, flags);
831
Masahiro Yamada8a1115f2017-03-09 16:16:31 -0800832 /* disable usb3 ports Wake bits */
Lu Baolua1377e52014-11-18 11:27:14 +0200833 port_index = xhci->num_usb3_ports;
834 port_array = xhci->usb3_ports;
835 while (port_index--) {
836 t1 = readl(port_array[port_index]);
837 t1 = xhci_port_state_to_neutral(t1);
838 t2 = t1 & ~PORT_WAKE_BITS;
839 if (t1 != t2)
840 writel(t2, port_array[port_index]);
841 }
842
Masahiro Yamada8a1115f2017-03-09 16:16:31 -0800843 /* disable usb2 ports Wake bits */
Lu Baolua1377e52014-11-18 11:27:14 +0200844 port_index = xhci->num_usb2_ports;
845 port_array = xhci->usb2_ports;
846 while (port_index--) {
847 t1 = readl(port_array[port_index]);
848 t1 = xhci_port_state_to_neutral(t1);
849 t2 = t1 & ~PORT_WAKE_BITS;
850 if (t1 != t2)
851 writel(t2, port_array[port_index]);
852 }
853
854 spin_unlock_irqrestore(&xhci->lock, flags);
855}
856
Andiry Xu5535b1d52010-10-14 07:23:06 -0700857/*
858 * Stop HC (not bus-specific)
859 *
860 * This is called when the machine transition into S3/S4 mode.
861 *
862 */
Lu Baolua1377e52014-11-18 11:27:14 +0200863int xhci_suspend(struct xhci_hcd *xhci, bool do_wakeup)
Andiry Xu5535b1d52010-10-14 07:23:06 -0700864{
865 int rc = 0;
Oliver Neukum455f5892013-09-30 15:50:54 +0200866 unsigned int delay = XHCI_MAX_HALT_USEC;
Andiry Xu5535b1d52010-10-14 07:23:06 -0700867 struct usb_hcd *hcd = xhci_to_hcd(xhci);
868 u32 command;
869
Roger Quadros9fa733f2015-05-29 17:01:50 +0300870 if (!hcd->state)
871 return 0;
872
Felipe Balbi77b84762012-10-19 10:55:16 +0300873 if (hcd->state != HC_STATE_SUSPENDED ||
874 xhci->shared_hcd->state != HC_STATE_SUSPENDED)
875 return -EINVAL;
876
Lu Baolua1377e52014-11-18 11:27:14 +0200877 /* Clear root port wake on bits if wakeup not allowed. */
878 if (!do_wakeup)
879 xhci_disable_port_wake_on_bits(xhci);
880
Sarah Sharpc52804a2012-11-27 12:30:23 -0800881 /* Don't poll the roothubs on bus suspend. */
882 xhci_dbg(xhci, "%s: stopping port polling.\n", __func__);
883 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
884 del_timer_sync(&hcd->rh_timer);
Al Cooper14e61a12014-08-20 16:41:57 +0300885 clear_bit(HCD_FLAG_POLL_RH, &xhci->shared_hcd->flags);
886 del_timer_sync(&xhci->shared_hcd->rh_timer);
Sarah Sharpc52804a2012-11-27 12:30:23 -0800887
Andiry Xu5535b1d52010-10-14 07:23:06 -0700888 spin_lock_irq(&xhci->lock);
889 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Sarah Sharpb32093792011-03-07 11:24:07 -0800890 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700891 /* step 1: stop endpoint */
892 /* skipped assuming that port suspend has done */
893
894 /* step 2: clear Run/Stop bit */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200895 command = readl(&xhci->op_regs->command);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700896 command &= ~CMD_RUN;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200897 writel(command, &xhci->op_regs->command);
Oliver Neukum455f5892013-09-30 15:50:54 +0200898
899 /* Some chips from Fresco Logic need an extraordinary delay */
900 delay *= (xhci->quirks & XHCI_SLOW_SUSPEND) ? 10 : 1;
901
Lin Wangdc0b1772015-01-09 16:06:28 +0200902 if (xhci_handshake(&xhci->op_regs->status,
Oliver Neukum455f5892013-09-30 15:50:54 +0200903 STS_HALT, STS_HALT, delay)) {
Andiry Xu5535b1d52010-10-14 07:23:06 -0700904 xhci_warn(xhci, "WARN: xHC CMD_RUN timeout\n");
905 spin_unlock_irq(&xhci->lock);
906 return -ETIMEDOUT;
907 }
Sarah Sharp89821322010-11-12 11:59:31 -0800908 xhci_clear_command_ring(xhci);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700909
910 /* step 3: save registers */
911 xhci_save_registers(xhci);
912
913 /* step 4: set CSS flag */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200914 command = readl(&xhci->op_regs->command);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700915 command |= CMD_CSS;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200916 writel(command, &xhci->op_regs->command);
Lin Wangdc0b1772015-01-09 16:06:28 +0200917 if (xhci_handshake(&xhci->op_regs->status,
Sarah Sharp2611bd182012-10-25 13:27:51 -0700918 STS_SAVE, 0, 10 * 1000)) {
Andiry Xu622eb782012-06-13 10:51:57 +0800919 xhci_warn(xhci, "WARN: xHC save state timeout\n");
Andiry Xu5535b1d52010-10-14 07:23:06 -0700920 spin_unlock_irq(&xhci->lock);
921 return -ETIMEDOUT;
922 }
Andiry Xu5535b1d52010-10-14 07:23:06 -0700923 spin_unlock_irq(&xhci->lock);
924
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500925 /*
926 * Deleting Compliance Mode Recovery Timer because the xHCI Host
927 * is about to be suspended.
928 */
929 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
930 (!(xhci_all_ports_seen_u0(xhci)))) {
931 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300932 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
933 "%s: compliance mode recovery timer deleted",
Tony Camuso58b1d792013-04-05 14:27:07 -0400934 __func__);
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500935 }
936
Andiry Xu00292272010-12-27 17:39:02 +0800937 /* step 5: remove core well power */
938 /* synchronize irq when using MSI-X */
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700939 xhci_msix_sync_irqs(xhci);
Andiry Xu00292272010-12-27 17:39:02 +0800940
Andiry Xu5535b1d52010-10-14 07:23:06 -0700941 return rc;
942}
Andrew Bresticker436e8c72014-10-03 11:35:28 +0300943EXPORT_SYMBOL_GPL(xhci_suspend);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700944
945/*
946 * start xHC (not bus-specific)
947 *
948 * This is called when the machine transition from S3/S4 mode.
949 *
950 */
951int xhci_resume(struct xhci_hcd *xhci, bool hibernated)
952{
Wang, Yud6236f62014-06-24 17:14:44 +0300953 u32 command, temp = 0, status;
Andiry Xu5535b1d52010-10-14 07:23:06 -0700954 struct usb_hcd *hcd = xhci_to_hcd(xhci);
Sarah Sharp65b22f92010-12-17 12:35:05 -0800955 struct usb_hcd *secondary_hcd;
Alan Sternf69e31202011-11-03 11:37:10 -0400956 int retval = 0;
Tony Camuso77df9e02013-02-21 16:11:27 -0500957 bool comp_timer_running = false;
Andiry Xu5535b1d52010-10-14 07:23:06 -0700958
Roger Quadros9fa733f2015-05-29 17:01:50 +0300959 if (!hcd->state)
960 return 0;
961
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800962 /* Wait a bit if either of the roothubs need to settle from the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300963 * transition into bus suspend.
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800964 */
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800965 if (time_before(jiffies, xhci->bus_state[0].next_statechange) ||
966 time_before(jiffies,
967 xhci->bus_state[1].next_statechange))
Andiry Xu5535b1d52010-10-14 07:23:06 -0700968 msleep(100);
969
Alan Sternf69e31202011-11-03 11:37:10 -0400970 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
971 set_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
972
Andiry Xu5535b1d52010-10-14 07:23:06 -0700973 spin_lock_irq(&xhci->lock);
Maarten Lankhorstc877b3b2011-06-15 23:47:21 +0200974 if (xhci->quirks & XHCI_RESET_ON_RESUME)
975 hibernated = true;
Andiry Xu5535b1d52010-10-14 07:23:06 -0700976
977 if (!hibernated) {
978 /* step 1: restore register */
979 xhci_restore_registers(xhci);
980 /* step 2: initialize command ring buffer */
Sarah Sharp89821322010-11-12 11:59:31 -0800981 xhci_set_cmd_ring_deq(xhci);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700982 /* step 3: restore state and start state*/
983 /* step 3: set CRS flag */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200984 command = readl(&xhci->op_regs->command);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700985 command |= CMD_CRS;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200986 writel(command, &xhci->op_regs->command);
Lin Wangdc0b1772015-01-09 16:06:28 +0200987 if (xhci_handshake(&xhci->op_regs->status,
Andiry Xu622eb782012-06-13 10:51:57 +0800988 STS_RESTORE, 0, 10 * 1000)) {
989 xhci_warn(xhci, "WARN: xHC restore state timeout\n");
Andiry Xu5535b1d52010-10-14 07:23:06 -0700990 spin_unlock_irq(&xhci->lock);
991 return -ETIMEDOUT;
992 }
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200993 temp = readl(&xhci->op_regs->status);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700994 }
995
996 /* If restore operation fails, re-initialize the HC during resume */
997 if ((temp & STS_SRE) || hibernated) {
Tony Camuso77df9e02013-02-21 16:11:27 -0500998
999 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
1000 !(xhci_all_ports_seen_u0(xhci))) {
1001 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001002 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1003 "Compliance Mode Recovery Timer deleted!");
Tony Camuso77df9e02013-02-21 16:11:27 -05001004 }
1005
Sarah Sharpfedd3832011-04-12 17:43:19 -07001006 /* Let the USB core know _both_ roothubs lost power. */
1007 usb_root_hub_lost_power(xhci->main_hcd->self.root_hub);
1008 usb_root_hub_lost_power(xhci->shared_hcd->self.root_hub);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001009
1010 xhci_dbg(xhci, "Stop HCD\n");
1011 xhci_halt(xhci);
1012 xhci_reset(xhci);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001013 spin_unlock_irq(&xhci->lock);
Andiry Xu00292272010-12-27 17:39:02 +08001014 xhci_cleanup_msix(xhci);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001015
Andiry Xu5535b1d52010-10-14 07:23:06 -07001016 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001017 temp = readl(&xhci->op_regs->status);
Lu Baolud1001ab2017-04-07 17:56:50 +03001018 writel((temp & ~0x1fff) | STS_EINT, &xhci->op_regs->status);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001019 temp = readl(&xhci->ir_set->irq_pending);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02001020 writel(ER_IRQ_DISABLE(temp), &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -08001021 xhci_print_ir_set(xhci, 0);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001022
1023 xhci_dbg(xhci, "cleaning up memory\n");
1024 xhci_mem_cleanup(xhci);
1025 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001026 readl(&xhci->op_regs->status));
Andiry Xu5535b1d52010-10-14 07:23:06 -07001027
Sarah Sharp65b22f92010-12-17 12:35:05 -08001028 /* USB core calls the PCI reinit and start functions twice:
1029 * first with the primary HCD, and then with the secondary HCD.
1030 * If we don't do the same, the host will never be started.
1031 */
1032 if (!usb_hcd_is_primary_hcd(hcd))
1033 secondary_hcd = hcd;
1034 else
1035 secondary_hcd = xhci->shared_hcd;
1036
1037 xhci_dbg(xhci, "Initialize the xhci_hcd\n");
1038 retval = xhci_init(hcd->primary_hcd);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001039 if (retval)
1040 return retval;
Tony Camuso77df9e02013-02-21 16:11:27 -05001041 comp_timer_running = true;
1042
Sarah Sharp65b22f92010-12-17 12:35:05 -08001043 xhci_dbg(xhci, "Start the primary HCD\n");
1044 retval = xhci_run(hcd->primary_hcd);
Sarah Sharpb32093792011-03-07 11:24:07 -08001045 if (!retval) {
Alan Sternf69e31202011-11-03 11:37:10 -04001046 xhci_dbg(xhci, "Start the secondary HCD\n");
1047 retval = xhci_run(secondary_hcd);
Sarah Sharpb32093792011-03-07 11:24:07 -08001048 }
Andiry Xu5535b1d52010-10-14 07:23:06 -07001049 hcd->state = HC_STATE_SUSPENDED;
Sarah Sharpb32093792011-03-07 11:24:07 -08001050 xhci->shared_hcd->state = HC_STATE_SUSPENDED;
Alan Sternf69e31202011-11-03 11:37:10 -04001051 goto done;
Andiry Xu5535b1d52010-10-14 07:23:06 -07001052 }
1053
Andiry Xu5535b1d52010-10-14 07:23:06 -07001054 /* step 4: set Run/Stop bit */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001055 command = readl(&xhci->op_regs->command);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001056 command |= CMD_RUN;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02001057 writel(command, &xhci->op_regs->command);
Lin Wangdc0b1772015-01-09 16:06:28 +02001058 xhci_handshake(&xhci->op_regs->status, STS_HALT,
Andiry Xu5535b1d52010-10-14 07:23:06 -07001059 0, 250 * 1000);
1060
1061 /* step 5: walk topology and initialize portsc,
1062 * portpmsc and portli
1063 */
1064 /* this is done in bus_resume */
1065
1066 /* step 6: restart each of the previously
1067 * Running endpoints by ringing their doorbells
1068 */
1069
Andiry Xu5535b1d52010-10-14 07:23:06 -07001070 spin_unlock_irq(&xhci->lock);
Alan Sternf69e31202011-11-03 11:37:10 -04001071
1072 done:
1073 if (retval == 0) {
Wang, Yud6236f62014-06-24 17:14:44 +03001074 /* Resume root hubs only when have pending events. */
1075 status = readl(&xhci->op_regs->status);
1076 if (status & STS_EINT) {
Wang, Yud6236f62014-06-24 17:14:44 +03001077 usb_hcd_resume_root_hub(xhci->shared_hcd);
Mathias Nyman671ffdf2016-04-08 16:25:06 +03001078 usb_hcd_resume_root_hub(hcd);
Wang, Yud6236f62014-06-24 17:14:44 +03001079 }
Alan Sternf69e31202011-11-03 11:37:10 -04001080 }
Alexis R. Cortes71c731a2012-08-03 14:00:27 -05001081
1082 /*
1083 * If system is subject to the Quirk, Compliance Mode Timer needs to
1084 * be re-initialized Always after a system resume. Ports are subject
1085 * to suffer the Compliance Mode issue again. It doesn't matter if
1086 * ports have entered previously to U0 before system's suspension.
1087 */
Tony Camuso77df9e02013-02-21 16:11:27 -05001088 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) && !comp_timer_running)
Alexis R. Cortes71c731a2012-08-03 14:00:27 -05001089 compliance_mode_recovery_timer_init(xhci);
1090
Jiahau Chang9da5a102017-07-20 14:48:27 +03001091 if (xhci->quirks & XHCI_ASMEDIA_MODIFY_FLOWCONTROL)
1092 usb_asmedia_modifyflowcontrol(to_pci_dev(hcd->self.controller));
1093
Sarah Sharpc52804a2012-11-27 12:30:23 -08001094 /* Re-enable port polling. */
1095 xhci_dbg(xhci, "%s: starting port polling.\n", __func__);
Al Cooper14e61a12014-08-20 16:41:57 +03001096 set_bit(HCD_FLAG_POLL_RH, &xhci->shared_hcd->flags);
1097 usb_hcd_poll_rh_status(xhci->shared_hcd);
Mathias Nyman671ffdf2016-04-08 16:25:06 +03001098 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
1099 usb_hcd_poll_rh_status(hcd);
Sarah Sharpc52804a2012-11-27 12:30:23 -08001100
Alan Sternf69e31202011-11-03 11:37:10 -04001101 return retval;
Andiry Xu5535b1d52010-10-14 07:23:06 -07001102}
Andrew Bresticker436e8c72014-10-03 11:35:28 +03001103EXPORT_SYMBOL_GPL(xhci_resume);
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -07001104#endif /* CONFIG_PM */
1105
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001106/*-------------------------------------------------------------------------*/
1107
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001108/**
1109 * xhci_get_endpoint_index - Used for passing endpoint bitmasks between the core and
1110 * HCDs. Find the index for an endpoint given its descriptor. Use the return
1111 * value to right shift 1 for the bitmask.
1112 *
1113 * Index = (epnum * 2) + direction - 1,
1114 * where direction = 0 for OUT, 1 for IN.
1115 * For control endpoints, the IN index is used (OUT index is unused), so
1116 * index = (epnum * 2) + direction - 1 = (epnum * 2) + 1 - 1 = (epnum * 2)
1117 */
1118unsigned int xhci_get_endpoint_index(struct usb_endpoint_descriptor *desc)
1119{
1120 unsigned int index;
1121 if (usb_endpoint_xfer_control(desc))
1122 index = (unsigned int) (usb_endpoint_num(desc)*2);
1123 else
1124 index = (unsigned int) (usb_endpoint_num(desc)*2) +
1125 (usb_endpoint_dir_in(desc) ? 1 : 0) - 1;
1126 return index;
1127}
1128
Julius Werner01c5f442013-04-15 15:55:04 -07001129/* The reverse operation to xhci_get_endpoint_index. Calculate the USB endpoint
1130 * address from the XHCI endpoint index.
1131 */
1132unsigned int xhci_get_endpoint_address(unsigned int ep_index)
1133{
1134 unsigned int number = DIV_ROUND_UP(ep_index, 2);
1135 unsigned int direction = ep_index % 2 ? USB_DIR_OUT : USB_DIR_IN;
1136 return direction | number;
1137}
1138
Sarah Sharpf94e01862009-04-27 19:58:38 -07001139/* Find the flag for this endpoint (for use in the control context). Use the
1140 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
1141 * bit 1, etc.
1142 */
Lu Baolu39693842017-04-07 17:57:04 +03001143static unsigned int xhci_get_endpoint_flag(struct usb_endpoint_descriptor *desc)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001144{
1145 return 1 << (xhci_get_endpoint_index(desc) + 1);
1146}
1147
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001148/* Find the flag for this endpoint (for use in the control context). Use the
1149 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
1150 * bit 1, etc.
1151 */
Lu Baolu39693842017-04-07 17:57:04 +03001152static unsigned int xhci_get_endpoint_flag_from_index(unsigned int ep_index)
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001153{
1154 return 1 << (ep_index + 1);
1155}
1156
Sarah Sharpf94e01862009-04-27 19:58:38 -07001157/* Compute the last valid endpoint context index. Basically, this is the
1158 * endpoint index plus one. For slot contexts with more than valid endpoint,
1159 * we find the most significant bit set in the added contexts flags.
1160 * e.g. ep 1 IN (with epnum 0x81) => added_ctxs = 0b1000
1161 * fls(0b1000) = 4, but the endpoint context index is 3, so subtract one.
1162 */
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001163unsigned int xhci_last_valid_endpoint(u32 added_ctxs)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001164{
1165 return fls(added_ctxs) - 1;
1166}
1167
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001168/* Returns 1 if the arguments are OK;
1169 * returns 0 this is a root hub; returns -EINVAL for NULL pointers.
1170 */
Dmitry Torokhov8212a492011-02-08 13:55:59 -08001171static int xhci_check_args(struct usb_hcd *hcd, struct usb_device *udev,
Andiry Xu64927732010-10-14 07:22:45 -07001172 struct usb_host_endpoint *ep, int check_ep, bool check_virt_dev,
1173 const char *func) {
1174 struct xhci_hcd *xhci;
1175 struct xhci_virt_device *virt_dev;
1176
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001177 if (!hcd || (check_ep && !ep) || !udev) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001178 pr_debug("xHCI %s called with invalid args\n", func);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001179 return -EINVAL;
1180 }
1181 if (!udev->parent) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001182 pr_debug("xHCI %s called for root hub\n", func);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001183 return 0;
1184 }
Andiry Xu64927732010-10-14 07:22:45 -07001185
Sarah Sharp7bd89b42011-07-01 13:35:40 -07001186 xhci = hcd_to_xhci(hcd);
Andiry Xu64927732010-10-14 07:22:45 -07001187 if (check_virt_dev) {
sifram.rajas@gmail.com73ddc242011-09-02 11:06:00 -07001188 if (!udev->slot_id || !xhci->devs[udev->slot_id]) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001189 xhci_dbg(xhci, "xHCI %s called with unaddressed device\n",
1190 func);
Andiry Xu64927732010-10-14 07:22:45 -07001191 return -EINVAL;
1192 }
1193
1194 virt_dev = xhci->devs[udev->slot_id];
1195 if (virt_dev->udev != udev) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001196 xhci_dbg(xhci, "xHCI %s called with udev and "
Andiry Xu64927732010-10-14 07:22:45 -07001197 "virt_dev does not match\n", func);
1198 return -EINVAL;
1199 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001200 }
Andiry Xu64927732010-10-14 07:22:45 -07001201
Sarah Sharp203a8662013-07-24 10:27:13 -07001202 if (xhci->xhc_state & XHCI_STATE_HALTED)
1203 return -ENODEV;
1204
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001205 return 1;
1206}
1207
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001208static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001209 struct usb_device *udev, struct xhci_command *command,
1210 bool ctx_change, bool must_succeed);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001211
1212/*
1213 * Full speed devices may have a max packet size greater than 8 bytes, but the
1214 * USB core doesn't know that until it reads the first 8 bytes of the
1215 * descriptor. If the usb_device's max packet size changes after that point,
1216 * we need to issue an evaluate context command and wait on it.
1217 */
1218static int xhci_check_maxpacket(struct xhci_hcd *xhci, unsigned int slot_id,
1219 unsigned int ep_index, struct urb *urb)
1220{
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001221 struct xhci_container_ctx *out_ctx;
1222 struct xhci_input_control_ctx *ctrl_ctx;
1223 struct xhci_ep_ctx *ep_ctx;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001224 struct xhci_command *command;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001225 int max_packet_size;
1226 int hw_max_packet_size;
1227 int ret = 0;
1228
1229 out_ctx = xhci->devs[slot_id]->out_ctx;
1230 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Matt Evans28ccd292011-03-29 13:40:46 +11001231 hw_max_packet_size = MAX_PACKET_DECODED(le32_to_cpu(ep_ctx->ep_info2));
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001232 max_packet_size = usb_endpoint_maxp(&urb->dev->ep0.desc);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001233 if (hw_max_packet_size != max_packet_size) {
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001234 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1235 "Max Packet Size for ep 0 changed.");
1236 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1237 "Max packet size in usb_device = %d",
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001238 max_packet_size);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001239 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1240 "Max packet size in xHCI HW = %d",
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001241 hw_max_packet_size);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001242 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1243 "Issuing evaluate context command.");
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001244
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001245 /* Set up the input context flags for the command */
1246 /* FIXME: This won't work if a non-default control endpoint
1247 * changes max packet sizes.
1248 */
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001249
1250 command = xhci_alloc_command(xhci, false, true, GFP_KERNEL);
1251 if (!command)
1252 return -ENOMEM;
1253
1254 command->in_ctx = xhci->devs[slot_id]->in_ctx;
Lin Wang4daf9df2015-01-09 16:06:31 +02001255 ctrl_ctx = xhci_get_input_control_ctx(command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001256 if (!ctrl_ctx) {
1257 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1258 __func__);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001259 ret = -ENOMEM;
1260 goto command_cleanup;
Sarah Sharp92f8e762013-04-23 17:11:14 -07001261 }
1262 /* Set up the modified control endpoint 0 */
1263 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
1264 xhci->devs[slot_id]->out_ctx, ep_index);
1265
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001266 ep_ctx = xhci_get_ep_ctx(xhci, command->in_ctx, ep_index);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001267 ep_ctx->ep_info2 &= cpu_to_le32(~MAX_PACKET_MASK);
1268 ep_ctx->ep_info2 |= cpu_to_le32(MAX_PACKET(max_packet_size));
1269
Matt Evans28ccd292011-03-29 13:40:46 +11001270 ctrl_ctx->add_flags = cpu_to_le32(EP0_FLAG);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001271 ctrl_ctx->drop_flags = 0;
1272
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001273 ret = xhci_configure_endpoint(xhci, urb->dev, command,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001274 true, false);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001275
1276 /* Clean up the input context for later use by bandwidth
1277 * functions.
1278 */
Matt Evans28ccd292011-03-29 13:40:46 +11001279 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001280command_cleanup:
1281 kfree(command->completion);
1282 kfree(command);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001283 }
1284 return ret;
1285}
1286
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001287/*
1288 * non-error returns are a promise to giveback() the urb later
1289 * we drop ownership so next owner (or urb unlink) can get it
1290 */
Lu Baolu39693842017-04-07 17:57:04 +03001291static int xhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, gfp_t mem_flags)
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001292{
1293 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
1294 unsigned long flags;
1295 int ret = 0;
Mathias Nyman69694082017-01-23 14:20:27 +02001296 unsigned int slot_id, ep_index, ep_state;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001297 struct urb_priv *urb_priv;
Mathias Nyman7e64b032017-01-23 14:20:26 +02001298 int num_tds;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001299
Andiry Xu64927732010-10-14 07:22:45 -07001300 if (!urb || xhci_check_args(hcd, urb->dev, urb->ep,
1301 true, true, __func__) <= 0)
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001302 return -EINVAL;
1303
1304 slot_id = urb->dev->slot_id;
1305 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001306
Alan Stern541c7d42010-06-22 16:39:10 -04001307 if (!HCD_HW_ACCESSIBLE(hcd)) {
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001308 if (!in_interrupt())
1309 xhci_dbg(xhci, "urb submitted during PCI suspend\n");
Mathias Nyman69694082017-01-23 14:20:27 +02001310 return -ESHUTDOWN;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001311 }
Andiry Xu8e51adc2010-07-22 15:23:31 -07001312
1313 if (usb_endpoint_xfer_isoc(&urb->ep->desc))
Mathias Nymane6f7caa2017-01-23 14:20:24 +02001314 num_tds = urb->number_of_packets;
Reyad Attiyat4758dcd2015-08-06 19:23:58 +03001315 else if (usb_endpoint_is_bulk_out(&urb->ep->desc) &&
1316 urb->transfer_buffer_length > 0 &&
1317 urb->transfer_flags & URB_ZERO_PACKET &&
1318 !(urb->transfer_buffer_length % usb_endpoint_maxp(&urb->ep->desc)))
Mathias Nymane6f7caa2017-01-23 14:20:24 +02001319 num_tds = 2;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001320 else
Mathias Nymane6f7caa2017-01-23 14:20:24 +02001321 num_tds = 1;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001322
1323 urb_priv = kzalloc(sizeof(struct urb_priv) +
Mathias Nyman7e64b032017-01-23 14:20:26 +02001324 num_tds * sizeof(struct xhci_td), mem_flags);
Andiry Xu8e51adc2010-07-22 15:23:31 -07001325 if (!urb_priv)
1326 return -ENOMEM;
1327
Mathias Nyman9ef7fbb2017-01-23 14:20:25 +02001328 urb_priv->num_tds = num_tds;
1329 urb_priv->num_tds_done = 0;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001330 urb->hcpriv = urb_priv;
1331
Felipe Balbi5abdc2e2017-01-23 14:20:20 +02001332 trace_xhci_urb_enqueue(urb);
1333
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001334 if (usb_endpoint_xfer_control(&urb->ep->desc)) {
1335 /* Check to see if the max packet size for the default control
1336 * endpoint changed during FS device enumeration
1337 */
1338 if (urb->dev->speed == USB_SPEED_FULL) {
1339 ret = xhci_check_maxpacket(xhci, slot_id,
1340 ep_index, urb);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001341 if (ret < 0) {
Lin Wang4daf9df2015-01-09 16:06:31 +02001342 xhci_urb_free_priv(urb_priv);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001343 urb->hcpriv = NULL;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001344 return ret;
Sarah Sharpd13565c2011-07-22 14:34:34 -07001345 }
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001346 }
Mathias Nyman69694082017-01-23 14:20:27 +02001347 }
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001348
Mathias Nyman69694082017-01-23 14:20:27 +02001349 spin_lock_irqsave(&xhci->lock, flags);
1350
1351 if (xhci->xhc_state & XHCI_STATE_DYING) {
1352 xhci_dbg(xhci, "Ep 0x%x: URB %p submitted for non-responsive xHCI host.\n",
1353 urb->ep->desc.bEndpointAddress, urb);
1354 ret = -ESHUTDOWN;
1355 goto free_priv;
1356 }
1357
1358 switch (usb_endpoint_type(&urb->ep->desc)) {
1359
1360 case USB_ENDPOINT_XFER_CONTROL:
Sarah Sharpb11069f2009-07-27 12:03:23 -07001361 ret = xhci_queue_ctrl_tx(xhci, GFP_ATOMIC, urb,
Mathias Nyman69694082017-01-23 14:20:27 +02001362 slot_id, ep_index);
1363 break;
1364 case USB_ENDPOINT_XFER_BULK:
1365 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
1366 if (ep_state & (EP_GETTING_STREAMS | EP_GETTING_NO_STREAMS)) {
1367 xhci_warn(xhci, "WARN: Can't enqueue URB, ep in streams transition state %x\n",
1368 ep_state);
Sarah Sharp8df75f42010-04-02 15:34:16 -07001369 ret = -EINVAL;
Mathias Nyman69694082017-01-23 14:20:27 +02001370 break;
Sarah Sharp8df75f42010-04-02 15:34:16 -07001371 }
Mathias Nyman69694082017-01-23 14:20:27 +02001372 ret = xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb,
1373 slot_id, ep_index);
1374 break;
1375
1376
1377 case USB_ENDPOINT_XFER_INT:
Sarah Sharp624defa2009-09-02 12:14:28 -07001378 ret = xhci_queue_intr_tx(xhci, GFP_ATOMIC, urb,
1379 slot_id, ep_index);
Mathias Nyman69694082017-01-23 14:20:27 +02001380 break;
1381
1382 case USB_ENDPOINT_XFER_ISOC:
Andiry Xu787f4e52010-07-22 15:23:52 -07001383 ret = xhci_queue_isoc_tx_prepare(xhci, GFP_ATOMIC, urb,
1384 slot_id, ep_index);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001385 }
Mathias Nyman69694082017-01-23 14:20:27 +02001386
1387 if (ret) {
Sarah Sharpd13565c2011-07-22 14:34:34 -07001388free_priv:
Mathias Nyman69694082017-01-23 14:20:27 +02001389 xhci_urb_free_priv(urb_priv);
1390 urb->hcpriv = NULL;
1391 }
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001392 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001393 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001394}
1395
Sarah Sharpae636742009-04-29 19:02:31 -07001396/*
1397 * Remove the URB's TD from the endpoint ring. This may cause the HC to stop
1398 * USB transfers, potentially stopping in the middle of a TRB buffer. The HC
1399 * should pick up where it left off in the TD, unless a Set Transfer Ring
1400 * Dequeue Pointer is issued.
1401 *
1402 * The TRBs that make up the buffers for the canceled URB will be "removed" from
1403 * the ring. Since the ring is a contiguous structure, they can't be physically
1404 * removed. Instead, there are two options:
1405 *
1406 * 1) If the HC is in the middle of processing the URB to be canceled, we
1407 * simply move the ring's dequeue pointer past those TRBs using the Set
1408 * Transfer Ring Dequeue Pointer command. This will be the common case,
1409 * when drivers timeout on the last submitted URB and attempt to cancel.
1410 *
1411 * 2) If the HC is in the middle of a different TD, we turn the TRBs into a
1412 * series of 1-TRB transfer no-op TDs. (No-ops shouldn't be chained.) The
1413 * HC will need to invalidate the any TRBs it has cached after the stop
1414 * endpoint command, as noted in the xHCI 0.95 errata.
1415 *
1416 * 3) The TD may have completed by the time the Stop Endpoint Command
1417 * completes, so software needs to handle that case too.
1418 *
1419 * This function should protect against the TD enqueueing code ringing the
1420 * doorbell while this code is waiting for a Stop Endpoint command to complete.
1421 * It also needs to account for multiple cancellations on happening at the same
1422 * time for the same endpoint.
1423 *
1424 * Note that this function can be called in any context, or so says
1425 * usb_hcd_unlink_urb()
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001426 */
Lu Baolu39693842017-04-07 17:57:04 +03001427static int xhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001428{
Sarah Sharpae636742009-04-29 19:02:31 -07001429 unsigned long flags;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001430 int ret, i;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001431 u32 temp;
Sarah Sharpae636742009-04-29 19:02:31 -07001432 struct xhci_hcd *xhci;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001433 struct urb_priv *urb_priv;
Sarah Sharpae636742009-04-29 19:02:31 -07001434 struct xhci_td *td;
1435 unsigned int ep_index;
1436 struct xhci_ring *ep_ring;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001437 struct xhci_virt_ep *ep;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001438 struct xhci_command *command;
Mathias Nymand3519b92017-03-28 15:55:30 +03001439 struct xhci_virt_device *vdev;
Sarah Sharpae636742009-04-29 19:02:31 -07001440
1441 xhci = hcd_to_xhci(hcd);
1442 spin_lock_irqsave(&xhci->lock, flags);
Felipe Balbi5abdc2e2017-01-23 14:20:20 +02001443
1444 trace_xhci_urb_dequeue(urb);
1445
Sarah Sharpae636742009-04-29 19:02:31 -07001446 /* Make sure the URB hasn't completed or been unlinked already */
1447 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
Mathias Nymand3519b92017-03-28 15:55:30 +03001448 if (ret)
Sarah Sharpae636742009-04-29 19:02:31 -07001449 goto done;
Mathias Nymand3519b92017-03-28 15:55:30 +03001450
1451 /* give back URB now if we can't queue it for cancel */
1452 vdev = xhci->devs[urb->dev->slot_id];
1453 urb_priv = urb->hcpriv;
1454 if (!vdev || !urb_priv)
1455 goto err_giveback;
1456
1457 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
1458 ep = &vdev->eps[ep_index];
1459 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
1460 if (!ep || !ep_ring)
1461 goto err_giveback;
1462
Mathias Nymand9f11ba2017-04-07 17:57:01 +03001463 /* If xHC is dead take it down and return ALL URBs in xhci_hc_died() */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001464 temp = readl(&xhci->op_regs->status);
Mathias Nymand9f11ba2017-04-07 17:57:01 +03001465 if (temp == ~(u32)0 || xhci->xhc_state & XHCI_STATE_DYING) {
1466 xhci_hc_died(xhci);
1467 goto done;
1468 }
1469
1470 if (xhci->xhc_state & XHCI_STATE_HALTED) {
Xenia Ragiadakouaa50b292013-08-14 06:33:54 +03001471 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
Mathias Nymand9f11ba2017-04-07 17:57:01 +03001472 "HC halted, freeing TD manually.");
Mathias Nyman9ef7fbb2017-01-23 14:20:25 +02001473 for (i = urb_priv->num_tds_done;
Mathias Nymand3519b92017-03-28 15:55:30 +03001474 i < urb_priv->num_tds;
Mathias Nyman5c821712016-01-26 17:50:12 +02001475 i++) {
Mathias Nyman7e64b032017-01-23 14:20:26 +02001476 td = &urb_priv->td[i];
Sarah Sharp585df1d2011-08-02 15:43:40 -07001477 if (!list_empty(&td->td_list))
1478 list_del_init(&td->td_list);
1479 if (!list_empty(&td->cancelled_td_list))
1480 list_del_init(&td->cancelled_td_list);
1481 }
Mathias Nymand3519b92017-03-28 15:55:30 +03001482 goto err_giveback;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001483 }
Sarah Sharpae636742009-04-29 19:02:31 -07001484
Mathias Nyman9ef7fbb2017-01-23 14:20:25 +02001485 i = urb_priv->num_tds_done;
1486 if (i < urb_priv->num_tds)
Xenia Ragiadakouaa50b292013-08-14 06:33:54 +03001487 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
1488 "Cancel URB %p, dev %s, ep 0x%x, "
1489 "starting at offset 0x%llx",
Sarah Sharp79688ac2011-12-19 16:56:04 -08001490 urb, urb->dev->devpath,
1491 urb->ep->desc.bEndpointAddress,
1492 (unsigned long long) xhci_trb_virt_to_dma(
Mathias Nyman7e64b032017-01-23 14:20:26 +02001493 urb_priv->td[i].start_seg,
1494 urb_priv->td[i].first_trb));
Andiry Xu8e51adc2010-07-22 15:23:31 -07001495
Mathias Nyman9ef7fbb2017-01-23 14:20:25 +02001496 for (; i < urb_priv->num_tds; i++) {
Mathias Nyman7e64b032017-01-23 14:20:26 +02001497 td = &urb_priv->td[i];
Andiry Xu8e51adc2010-07-22 15:23:31 -07001498 list_add_tail(&td->cancelled_td_list, &ep->cancelled_td_list);
1499 }
1500
Sarah Sharpae636742009-04-29 19:02:31 -07001501 /* Queue a stop endpoint command, but only if this is
1502 * the first cancellation to be handled.
1503 */
Mathias Nyman9983a5f2017-01-23 14:19:52 +02001504 if (!(ep->ep_state & EP_STOP_CMD_PENDING)) {
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001505 command = xhci_alloc_command(xhci, false, false, GFP_ATOMIC);
Hans de Goedea0ee6192014-07-25 22:01:21 +02001506 if (!command) {
1507 ret = -ENOMEM;
1508 goto done;
1509 }
Mathias Nyman9983a5f2017-01-23 14:19:52 +02001510 ep->ep_state |= EP_STOP_CMD_PENDING;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001511 ep->stop_cmd_timer.expires = jiffies +
1512 XHCI_STOP_EP_CMD_TIMEOUT * HZ;
1513 add_timer(&ep->stop_cmd_timer);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001514 xhci_queue_stop_endpoint(xhci, command, urb->dev->slot_id,
1515 ep_index, 0);
Sarah Sharp23e3be12009-04-29 19:05:20 -07001516 xhci_ring_cmd_db(xhci);
Sarah Sharpae636742009-04-29 19:02:31 -07001517 }
1518done:
1519 spin_unlock_irqrestore(&xhci->lock, flags);
1520 return ret;
Mathias Nymand3519b92017-03-28 15:55:30 +03001521
1522err_giveback:
1523 if (urb_priv)
1524 xhci_urb_free_priv(urb_priv);
1525 usb_hcd_unlink_urb_from_ep(hcd, urb);
1526 spin_unlock_irqrestore(&xhci->lock, flags);
1527 usb_hcd_giveback_urb(hcd, urb, -ESHUTDOWN);
1528 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001529}
1530
Sarah Sharpf94e01862009-04-27 19:58:38 -07001531/* Drop an endpoint from a new bandwidth configuration for this device.
1532 * Only one call to this function is allowed per endpoint before
1533 * check_bandwidth() or reset_bandwidth() must be called.
1534 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1535 * add the endpoint to the schedule with possibly new parameters denoted by a
1536 * different endpoint descriptor in usb_host_endpoint.
1537 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1538 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001539 *
1540 * The USB core will not allow URBs to be queued to an endpoint that is being
1541 * disabled, so there's no need for mutual exclusion to protect
1542 * the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001543 */
Lu Baolu39693842017-04-07 17:57:04 +03001544static int xhci_drop_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
Sarah Sharpf94e01862009-04-27 19:58:38 -07001545 struct usb_host_endpoint *ep)
1546{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001547 struct xhci_hcd *xhci;
John Yound115b042009-07-27 12:05:15 -07001548 struct xhci_container_ctx *in_ctx, *out_ctx;
1549 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001550 unsigned int ep_index;
1551 struct xhci_ep_ctx *ep_ctx;
1552 u32 drop_flag;
Julius Wernerd6759132014-06-24 17:14:42 +03001553 u32 new_add_flags, new_drop_flags;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001554 int ret;
1555
Andiry Xu64927732010-10-14 07:22:45 -07001556 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001557 if (ret <= 0)
1558 return ret;
1559 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001560 if (xhci->xhc_state & XHCI_STATE_DYING)
1561 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001562
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001563 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001564 drop_flag = xhci_get_endpoint_flag(&ep->desc);
1565 if (drop_flag == SLOT_FLAG || drop_flag == EP0_FLAG) {
1566 xhci_dbg(xhci, "xHCI %s - can't drop slot or ep 0 %#x\n",
1567 __func__, drop_flag);
1568 return 0;
1569 }
1570
Sarah Sharpf94e01862009-04-27 19:58:38 -07001571 in_ctx = xhci->devs[udev->slot_id]->in_ctx;
John Yound115b042009-07-27 12:05:15 -07001572 out_ctx = xhci->devs[udev->slot_id]->out_ctx;
Lin Wang4daf9df2015-01-09 16:06:31 +02001573 ctrl_ctx = xhci_get_input_control_ctx(in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001574 if (!ctrl_ctx) {
1575 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1576 __func__);
1577 return 0;
1578 }
1579
Sarah Sharpf94e01862009-04-27 19:58:38 -07001580 ep_index = xhci_get_endpoint_index(&ep->desc);
John Yound115b042009-07-27 12:05:15 -07001581 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001582 /* If the HC already knows the endpoint is disabled,
1583 * or the HCD has noted it is disabled, ignore this request
1584 */
Mathias Nyman5071e6b2016-11-11 15:13:28 +02001585 if ((GET_EP_CTX_STATE(ep_ctx) == EP_STATE_DISABLED) ||
Matt Evans28ccd292011-03-29 13:40:46 +11001586 le32_to_cpu(ctrl_ctx->drop_flags) &
1587 xhci_get_endpoint_flag(&ep->desc)) {
Hans de Goedea6134132015-01-16 17:54:02 +02001588 /* Do not warn when called after a usb_device_reset */
1589 if (xhci->devs[udev->slot_id]->eps[ep_index].ring != NULL)
1590 xhci_warn(xhci, "xHCI %s called with disabled ep %p\n",
1591 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001592 return 0;
1593 }
1594
Matt Evans28ccd292011-03-29 13:40:46 +11001595 ctrl_ctx->drop_flags |= cpu_to_le32(drop_flag);
1596 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001597
Matt Evans28ccd292011-03-29 13:40:46 +11001598 ctrl_ctx->add_flags &= cpu_to_le32(~drop_flag);
1599 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001600
Sarah Sharpf94e01862009-04-27 19:58:38 -07001601 xhci_endpoint_zero(xhci, xhci->devs[udev->slot_id], ep);
1602
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +02001603 if (xhci->quirks & XHCI_MTK_HOST)
1604 xhci_mtk_drop_ep_quirk(hcd, udev, ep);
1605
Julius Wernerd6759132014-06-24 17:14:42 +03001606 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 -07001607 (unsigned int) ep->desc.bEndpointAddress,
1608 udev->slot_id,
1609 (unsigned int) new_drop_flags,
Julius Wernerd6759132014-06-24 17:14:42 +03001610 (unsigned int) new_add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001611 return 0;
1612}
1613
1614/* Add an endpoint to a new possible bandwidth configuration for this device.
1615 * Only one call to this function is allowed per endpoint before
1616 * check_bandwidth() or reset_bandwidth() must be called.
1617 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1618 * add the endpoint to the schedule with possibly new parameters denoted by a
1619 * different endpoint descriptor in usb_host_endpoint.
1620 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1621 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001622 *
1623 * The USB core will not allow URBs to be queued to an endpoint until the
1624 * configuration or alt setting is installed in the device, so there's no need
1625 * for mutual exclusion to protect the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001626 */
Lu Baolu39693842017-04-07 17:57:04 +03001627static int xhci_add_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
Sarah Sharpf94e01862009-04-27 19:58:38 -07001628 struct usb_host_endpoint *ep)
1629{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001630 struct xhci_hcd *xhci;
Lin Wang92c96912015-01-09 16:06:27 +02001631 struct xhci_container_ctx *in_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001632 unsigned int ep_index;
John Yound115b042009-07-27 12:05:15 -07001633 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001634 u32 added_ctxs;
Julius Wernerd6759132014-06-24 17:14:42 +03001635 u32 new_add_flags, new_drop_flags;
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001636 struct xhci_virt_device *virt_dev;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001637 int ret = 0;
1638
Andiry Xu64927732010-10-14 07:22:45 -07001639 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpa1587d92009-07-27 12:03:15 -07001640 if (ret <= 0) {
1641 /* So we won't queue a reset ep command for a root hub */
1642 ep->hcpriv = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001643 return ret;
Sarah Sharpa1587d92009-07-27 12:03:15 -07001644 }
Sarah Sharpf94e01862009-04-27 19:58:38 -07001645 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001646 if (xhci->xhc_state & XHCI_STATE_DYING)
1647 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001648
1649 added_ctxs = xhci_get_endpoint_flag(&ep->desc);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001650 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) {
1651 /* FIXME when we have to issue an evaluate endpoint command to
1652 * deal with ep0 max packet size changing once we get the
1653 * descriptors
1654 */
1655 xhci_dbg(xhci, "xHCI %s - can't add slot or ep 0 %#x\n",
1656 __func__, added_ctxs);
1657 return 0;
1658 }
1659
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001660 virt_dev = xhci->devs[udev->slot_id];
1661 in_ctx = virt_dev->in_ctx;
Lin Wang4daf9df2015-01-09 16:06:31 +02001662 ctrl_ctx = xhci_get_input_control_ctx(in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001663 if (!ctrl_ctx) {
1664 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1665 __func__);
1666 return 0;
1667 }
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001668
Sarah Sharp92f8e762013-04-23 17:11:14 -07001669 ep_index = xhci_get_endpoint_index(&ep->desc);
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001670 /* If this endpoint is already in use, and the upper layers are trying
1671 * to add it again without dropping it, reject the addition.
1672 */
1673 if (virt_dev->eps[ep_index].ring &&
Lin Wang92c96912015-01-09 16:06:27 +02001674 !(le32_to_cpu(ctrl_ctx->drop_flags) & added_ctxs)) {
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001675 xhci_warn(xhci, "Trying to add endpoint 0x%x "
1676 "without dropping it.\n",
1677 (unsigned int) ep->desc.bEndpointAddress);
1678 return -EINVAL;
1679 }
1680
Sarah Sharpf94e01862009-04-27 19:58:38 -07001681 /* If the HCD has already noted the endpoint is enabled,
1682 * ignore this request.
1683 */
Lin Wang92c96912015-01-09 16:06:27 +02001684 if (le32_to_cpu(ctrl_ctx->add_flags) & added_ctxs) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001685 xhci_warn(xhci, "xHCI %s called with enabled ep %p\n",
1686 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001687 return 0;
1688 }
1689
Sarah Sharpf88ba782009-05-14 11:44:22 -07001690 /*
1691 * Configuration and alternate setting changes must be done in
1692 * process context, not interrupt context (or so documenation
1693 * for usb_set_interface() and usb_set_configuration() claim).
1694 */
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001695 if (xhci_endpoint_init(xhci, virt_dev, udev, ep, GFP_NOIO) < 0) {
Sarah Sharpf94e01862009-04-27 19:58:38 -07001696 dev_dbg(&udev->dev, "%s - could not initialize ep %#x\n",
1697 __func__, ep->desc.bEndpointAddress);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001698 return -ENOMEM;
1699 }
1700
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +02001701 if (xhci->quirks & XHCI_MTK_HOST) {
1702 ret = xhci_mtk_add_ep_quirk(hcd, udev, ep);
1703 if (ret < 0) {
Mathias Nymanc5628a22017-06-15 11:55:42 +03001704 xhci_free_endpoint_ring(xhci, virt_dev, ep_index);
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +02001705 return ret;
1706 }
1707 }
1708
Matt Evans28ccd292011-03-29 13:40:46 +11001709 ctrl_ctx->add_flags |= cpu_to_le32(added_ctxs);
1710 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001711
1712 /* If xhci_endpoint_disable() was called for this endpoint, but the
1713 * xHC hasn't been notified yet through the check_bandwidth() call,
1714 * this re-adds a new state for the endpoint from the new endpoint
1715 * descriptors. We must drop and re-add this endpoint, so we leave the
1716 * drop flags alone.
1717 */
Matt Evans28ccd292011-03-29 13:40:46 +11001718 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001719
Sarah Sharpa1587d92009-07-27 12:03:15 -07001720 /* Store the usb_device pointer for later use */
1721 ep->hcpriv = udev;
1722
Julius Wernerd6759132014-06-24 17:14:42 +03001723 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 -07001724 (unsigned int) ep->desc.bEndpointAddress,
1725 udev->slot_id,
1726 (unsigned int) new_drop_flags,
Julius Wernerd6759132014-06-24 17:14:42 +03001727 (unsigned int) new_add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001728 return 0;
1729}
1730
John Yound115b042009-07-27 12:05:15 -07001731static void xhci_zero_in_ctx(struct xhci_hcd *xhci, struct xhci_virt_device *virt_dev)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001732{
John Yound115b042009-07-27 12:05:15 -07001733 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001734 struct xhci_ep_ctx *ep_ctx;
John Yound115b042009-07-27 12:05:15 -07001735 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001736 int i;
1737
Lin Wang4daf9df2015-01-09 16:06:31 +02001738 ctrl_ctx = xhci_get_input_control_ctx(virt_dev->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001739 if (!ctrl_ctx) {
1740 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1741 __func__);
1742 return;
1743 }
1744
Sarah Sharpf94e01862009-04-27 19:58:38 -07001745 /* When a device's add flag and drop flag are zero, any subsequent
1746 * configure endpoint command will leave that endpoint's state
1747 * untouched. Make sure we don't leave any old state in the input
1748 * endpoint contexts.
1749 */
John Yound115b042009-07-27 12:05:15 -07001750 ctrl_ctx->drop_flags = 0;
1751 ctrl_ctx->add_flags = 0;
1752 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11001753 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001754 /* Endpoint 0 is always valid */
Matt Evans28ccd292011-03-29 13:40:46 +11001755 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(1));
Felipe Balbi98871e92017-01-23 14:20:04 +02001756 for (i = 1; i < 31; i++) {
John Yound115b042009-07-27 12:05:15 -07001757 ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->in_ctx, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001758 ep_ctx->ep_info = 0;
1759 ep_ctx->ep_info2 = 0;
Sarah Sharp8e595a52009-07-27 12:03:31 -07001760 ep_ctx->deq = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001761 ep_ctx->tx_info = 0;
1762 }
1763}
1764
Sarah Sharpf2217e82009-08-07 14:04:43 -07001765static int xhci_configure_endpoint_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001766 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001767{
1768 int ret;
1769
Sarah Sharp913a8a32009-09-04 10:53:13 -07001770 switch (*cmd_status) {
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001771 case COMP_COMMAND_ABORTED:
Mathias Nyman604d02a2017-05-17 18:32:05 +03001772 case COMP_COMMAND_RING_STOPPED:
Mathias Nymanc311e392014-05-08 19:26:03 +03001773 xhci_warn(xhci, "Timeout while waiting for configure endpoint command\n");
1774 ret = -ETIME;
1775 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001776 case COMP_RESOURCE_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001777 dev_warn(&udev->dev,
1778 "Not enough host controller resources for new device state.\n");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001779 ret = -ENOMEM;
1780 /* FIXME: can we allocate more resources for the HC? */
1781 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001782 case COMP_BANDWIDTH_ERROR:
1783 case COMP_SECONDARY_BANDWIDTH_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001784 dev_warn(&udev->dev,
1785 "Not enough bandwidth for new device state.\n");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001786 ret = -ENOSPC;
1787 /* FIXME: can we go back to the old state? */
1788 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001789 case COMP_TRB_ERROR:
Sarah Sharpf2217e82009-08-07 14:04:43 -07001790 /* the HCD set up something wrong */
1791 dev_warn(&udev->dev, "ERROR: Endpoint drop flag = 0, "
1792 "add flag = 1, "
1793 "and endpoint is not disabled.\n");
1794 ret = -EINVAL;
1795 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001796 case COMP_INCOMPATIBLE_DEVICE_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001797 dev_warn(&udev->dev,
1798 "ERROR: Incompatible device for endpoint configure command.\n");
Alex Hef6ba6fe2011-06-08 18:34:06 +08001799 ret = -ENODEV;
1800 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001801 case COMP_SUCCESS:
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001802 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1803 "Successful Endpoint Configure command");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001804 ret = 0;
1805 break;
1806 default:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001807 xhci_err(xhci, "ERROR: unexpected command completion code 0x%x.\n",
1808 *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001809 ret = -EINVAL;
1810 break;
1811 }
1812 return ret;
1813}
1814
1815static int xhci_evaluate_context_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001816 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001817{
1818 int ret;
1819
Sarah Sharp913a8a32009-09-04 10:53:13 -07001820 switch (*cmd_status) {
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001821 case COMP_COMMAND_ABORTED:
Mathias Nyman604d02a2017-05-17 18:32:05 +03001822 case COMP_COMMAND_RING_STOPPED:
Mathias Nymanc311e392014-05-08 19:26:03 +03001823 xhci_warn(xhci, "Timeout while waiting for evaluate context command\n");
1824 ret = -ETIME;
1825 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001826 case COMP_PARAMETER_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001827 dev_warn(&udev->dev,
1828 "WARN: xHCI driver setup invalid evaluate context command.\n");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001829 ret = -EINVAL;
1830 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001831 case COMP_SLOT_NOT_ENABLED_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001832 dev_warn(&udev->dev,
1833 "WARN: slot not enabled for evaluate context command.\n");
Sarah Sharpb8031342012-10-16 13:26:22 -07001834 ret = -EINVAL;
1835 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001836 case COMP_CONTEXT_STATE_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001837 dev_warn(&udev->dev,
1838 "WARN: invalid context state for evaluate context command.\n");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001839 ret = -EINVAL;
1840 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001841 case COMP_INCOMPATIBLE_DEVICE_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001842 dev_warn(&udev->dev,
1843 "ERROR: Incompatible device for evaluate context command.\n");
Alex Hef6ba6fe2011-06-08 18:34:06 +08001844 ret = -ENODEV;
1845 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001846 case COMP_MAX_EXIT_LATENCY_TOO_LARGE_ERROR:
Alex He1bb73a82011-05-05 18:14:12 +08001847 /* Max Exit Latency too large error */
1848 dev_warn(&udev->dev, "WARN: Max Exit Latency too large\n");
1849 ret = -EINVAL;
1850 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001851 case COMP_SUCCESS:
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001852 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1853 "Successful evaluate context command");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001854 ret = 0;
1855 break;
1856 default:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001857 xhci_err(xhci, "ERROR: unexpected command completion code 0x%x.\n",
1858 *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001859 ret = -EINVAL;
1860 break;
1861 }
1862 return ret;
1863}
1864
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001865static u32 xhci_count_num_new_endpoints(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001866 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001867{
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001868 u32 valid_add_flags;
1869 u32 valid_drop_flags;
1870
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001871 /* Ignore the slot flag (bit 0), and the default control endpoint flag
1872 * (bit 1). The default control endpoint is added during the Address
1873 * Device command and is never removed until the slot is disabled.
1874 */
Xenia Ragiadakouef734002013-09-09 21:03:06 +03001875 valid_add_flags = le32_to_cpu(ctrl_ctx->add_flags) >> 2;
1876 valid_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags) >> 2;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001877
1878 /* Use hweight32 to count the number of ones in the add flags, or
1879 * number of endpoints added. Don't count endpoints that are changed
1880 * (both added and dropped).
1881 */
1882 return hweight32(valid_add_flags) -
1883 hweight32(valid_add_flags & valid_drop_flags);
1884}
1885
1886static unsigned int xhci_count_num_dropped_endpoints(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001887 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001888{
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001889 u32 valid_add_flags;
1890 u32 valid_drop_flags;
1891
Xenia Ragiadakou78d1ff02013-09-09 21:03:07 +03001892 valid_add_flags = le32_to_cpu(ctrl_ctx->add_flags) >> 2;
1893 valid_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags) >> 2;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001894
1895 return hweight32(valid_drop_flags) -
1896 hweight32(valid_add_flags & valid_drop_flags);
1897}
1898
1899/*
1900 * We need to reserve the new number of endpoints before the configure endpoint
1901 * command completes. We can't subtract the dropped endpoints from the number
1902 * of active endpoints until the command completes because we can oversubscribe
1903 * the host in this case:
1904 *
1905 * - the first configure endpoint command drops more endpoints than it adds
1906 * - a second configure endpoint command that adds more endpoints is queued
1907 * - the first configure endpoint command fails, so the config is unchanged
1908 * - the second command may succeed, even though there isn't enough resources
1909 *
1910 * Must be called with xhci->lock held.
1911 */
1912static int xhci_reserve_host_resources(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001913 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001914{
1915 u32 added_eps;
1916
Sarah Sharp92f8e762013-04-23 17:11:14 -07001917 added_eps = xhci_count_num_new_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001918 if (xhci->num_active_eps + added_eps > xhci->limit_active_eps) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001919 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1920 "Not enough ep ctxs: "
1921 "%u active, need to add %u, limit is %u.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001922 xhci->num_active_eps, added_eps,
1923 xhci->limit_active_eps);
1924 return -ENOMEM;
1925 }
1926 xhci->num_active_eps += added_eps;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001927 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1928 "Adding %u ep ctxs, %u now active.", added_eps,
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001929 xhci->num_active_eps);
1930 return 0;
1931}
1932
1933/*
1934 * The configure endpoint was failed by the xHC for some other reason, so we
1935 * need to revert the resources that failed configuration would have used.
1936 *
1937 * Must be called with xhci->lock held.
1938 */
1939static void xhci_free_host_resources(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001940 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001941{
1942 u32 num_failed_eps;
1943
Sarah Sharp92f8e762013-04-23 17:11:14 -07001944 num_failed_eps = xhci_count_num_new_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001945 xhci->num_active_eps -= num_failed_eps;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001946 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1947 "Removing %u failed ep ctxs, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001948 num_failed_eps,
1949 xhci->num_active_eps);
1950}
1951
1952/*
1953 * Now that the command has completed, clean up the active endpoint count by
1954 * subtracting out the endpoints that were dropped (but not changed).
1955 *
1956 * Must be called with xhci->lock held.
1957 */
1958static void xhci_finish_resource_reservation(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001959 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001960{
1961 u32 num_dropped_eps;
1962
Sarah Sharp92f8e762013-04-23 17:11:14 -07001963 num_dropped_eps = xhci_count_num_dropped_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001964 xhci->num_active_eps -= num_dropped_eps;
1965 if (num_dropped_eps)
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001966 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1967 "Removing %u dropped ep ctxs, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001968 num_dropped_eps,
1969 xhci->num_active_eps);
1970}
1971
Felipe Balbied384bd2012-08-07 14:10:03 +03001972static unsigned int xhci_get_block_size(struct usb_device *udev)
Sarah Sharpc29eea62011-09-02 11:05:52 -07001973{
1974 switch (udev->speed) {
1975 case USB_SPEED_LOW:
1976 case USB_SPEED_FULL:
1977 return FS_BLOCK;
1978 case USB_SPEED_HIGH:
1979 return HS_BLOCK;
1980 case USB_SPEED_SUPER:
Mathias Nyman0caf6b32016-01-25 15:30:44 +02001981 case USB_SPEED_SUPER_PLUS:
Sarah Sharpc29eea62011-09-02 11:05:52 -07001982 return SS_BLOCK;
1983 case USB_SPEED_UNKNOWN:
1984 case USB_SPEED_WIRELESS:
1985 default:
1986 /* Should never happen */
1987 return 1;
1988 }
1989}
1990
Felipe Balbied384bd2012-08-07 14:10:03 +03001991static unsigned int
1992xhci_get_largest_overhead(struct xhci_interval_bw *interval_bw)
Sarah Sharpc29eea62011-09-02 11:05:52 -07001993{
1994 if (interval_bw->overhead[LS_OVERHEAD_TYPE])
1995 return LS_OVERHEAD;
1996 if (interval_bw->overhead[FS_OVERHEAD_TYPE])
1997 return FS_OVERHEAD;
1998 return HS_OVERHEAD;
1999}
2000
2001/* If we are changing a LS/FS device under a HS hub,
2002 * make sure (if we are activating a new TT) that the HS bus has enough
2003 * bandwidth for this new TT.
2004 */
2005static int xhci_check_tt_bw_table(struct xhci_hcd *xhci,
2006 struct xhci_virt_device *virt_dev,
2007 int old_active_eps)
2008{
2009 struct xhci_interval_bw_table *bw_table;
2010 struct xhci_tt_bw_info *tt_info;
2011
2012 /* Find the bandwidth table for the root port this TT is attached to. */
2013 bw_table = &xhci->rh_bw[virt_dev->real_port - 1].bw_table;
2014 tt_info = virt_dev->tt_info;
2015 /* If this TT already had active endpoints, the bandwidth for this TT
2016 * has already been added. Removing all periodic endpoints (and thus
2017 * making the TT enactive) will only decrease the bandwidth used.
2018 */
2019 if (old_active_eps)
2020 return 0;
2021 if (old_active_eps == 0 && tt_info->active_eps != 0) {
2022 if (bw_table->bw_used + TT_HS_OVERHEAD > HS_BW_LIMIT)
2023 return -ENOMEM;
2024 return 0;
2025 }
2026 /* Not sure why we would have no new active endpoints...
2027 *
2028 * Maybe because of an Evaluate Context change for a hub update or a
2029 * control endpoint 0 max packet size change?
2030 * FIXME: skip the bandwidth calculation in that case.
2031 */
2032 return 0;
2033}
2034
Sarah Sharp2b698992011-09-13 16:41:13 -07002035static int xhci_check_ss_bw(struct xhci_hcd *xhci,
2036 struct xhci_virt_device *virt_dev)
2037{
2038 unsigned int bw_reserved;
2039
2040 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_IN, 100);
2041 if (virt_dev->bw_table->ss_bw_in > (SS_BW_LIMIT_IN - bw_reserved))
2042 return -ENOMEM;
2043
2044 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_OUT, 100);
2045 if (virt_dev->bw_table->ss_bw_out > (SS_BW_LIMIT_OUT - bw_reserved))
2046 return -ENOMEM;
2047
2048 return 0;
2049}
2050
Sarah Sharpc29eea62011-09-02 11:05:52 -07002051/*
2052 * This algorithm is a very conservative estimate of the worst-case scheduling
2053 * scenario for any one interval. The hardware dynamically schedules the
2054 * packets, so we can't tell which microframe could be the limiting factor in
2055 * the bandwidth scheduling. This only takes into account periodic endpoints.
2056 *
2057 * Obviously, we can't solve an NP complete problem to find the minimum worst
2058 * case scenario. Instead, we come up with an estimate that is no less than
2059 * the worst case bandwidth used for any one microframe, but may be an
2060 * over-estimate.
2061 *
2062 * We walk the requirements for each endpoint by interval, starting with the
2063 * smallest interval, and place packets in the schedule where there is only one
2064 * possible way to schedule packets for that interval. In order to simplify
2065 * this algorithm, we record the largest max packet size for each interval, and
2066 * assume all packets will be that size.
2067 *
2068 * For interval 0, we obviously must schedule all packets for each interval.
2069 * The bandwidth for interval 0 is just the amount of data to be transmitted
2070 * (the sum of all max ESIT payload sizes, plus any overhead per packet times
2071 * the number of packets).
2072 *
2073 * For interval 1, we have two possible microframes to schedule those packets
2074 * in. For this algorithm, if we can schedule the same number of packets for
2075 * each possible scheduling opportunity (each microframe), we will do so. The
2076 * remaining number of packets will be saved to be transmitted in the gaps in
2077 * the next interval's scheduling sequence.
2078 *
2079 * As we move those remaining packets to be scheduled with interval 2 packets,
2080 * we have to double the number of remaining packets to transmit. This is
2081 * because the intervals are actually powers of 2, and we would be transmitting
2082 * the previous interval's packets twice in this interval. We also have to be
2083 * sure that when we look at the largest max packet size for this interval, we
2084 * also look at the largest max packet size for the remaining packets and take
2085 * the greater of the two.
2086 *
2087 * The algorithm continues to evenly distribute packets in each scheduling
2088 * opportunity, and push the remaining packets out, until we get to the last
2089 * interval. Then those packets and their associated overhead are just added
2090 * to the bandwidth used.
Sarah Sharp2e279802011-09-02 11:05:50 -07002091 */
2092static int xhci_check_bw_table(struct xhci_hcd *xhci,
2093 struct xhci_virt_device *virt_dev,
2094 int old_active_eps)
2095{
Sarah Sharpc29eea62011-09-02 11:05:52 -07002096 unsigned int bw_reserved;
2097 unsigned int max_bandwidth;
2098 unsigned int bw_used;
2099 unsigned int block_size;
2100 struct xhci_interval_bw_table *bw_table;
2101 unsigned int packet_size = 0;
2102 unsigned int overhead = 0;
2103 unsigned int packets_transmitted = 0;
2104 unsigned int packets_remaining = 0;
2105 unsigned int i;
2106
Mathias Nyman0caf6b32016-01-25 15:30:44 +02002107 if (virt_dev->udev->speed >= USB_SPEED_SUPER)
Sarah Sharp2b698992011-09-13 16:41:13 -07002108 return xhci_check_ss_bw(xhci, virt_dev);
2109
Sarah Sharpc29eea62011-09-02 11:05:52 -07002110 if (virt_dev->udev->speed == USB_SPEED_HIGH) {
2111 max_bandwidth = HS_BW_LIMIT;
2112 /* Convert percent of bus BW reserved to blocks reserved */
2113 bw_reserved = DIV_ROUND_UP(HS_BW_RESERVED * max_bandwidth, 100);
2114 } else {
2115 max_bandwidth = FS_BW_LIMIT;
2116 bw_reserved = DIV_ROUND_UP(FS_BW_RESERVED * max_bandwidth, 100);
2117 }
2118
2119 bw_table = virt_dev->bw_table;
2120 /* We need to translate the max packet size and max ESIT payloads into
2121 * the units the hardware uses.
2122 */
2123 block_size = xhci_get_block_size(virt_dev->udev);
2124
2125 /* If we are manipulating a LS/FS device under a HS hub, double check
2126 * that the HS bus has enough bandwidth if we are activing a new TT.
2127 */
2128 if (virt_dev->tt_info) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002129 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2130 "Recalculating BW for rootport %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002131 virt_dev->real_port);
2132 if (xhci_check_tt_bw_table(xhci, virt_dev, old_active_eps)) {
2133 xhci_warn(xhci, "Not enough bandwidth on HS bus for "
2134 "newly activated TT.\n");
2135 return -ENOMEM;
2136 }
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002137 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2138 "Recalculating BW for TT slot %u port %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002139 virt_dev->tt_info->slot_id,
2140 virt_dev->tt_info->ttport);
2141 } else {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002142 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2143 "Recalculating BW for rootport %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002144 virt_dev->real_port);
2145 }
2146
2147 /* Add in how much bandwidth will be used for interval zero, or the
2148 * rounded max ESIT payload + number of packets * largest overhead.
2149 */
2150 bw_used = DIV_ROUND_UP(bw_table->interval0_esit_payload, block_size) +
2151 bw_table->interval_bw[0].num_packets *
2152 xhci_get_largest_overhead(&bw_table->interval_bw[0]);
2153
2154 for (i = 1; i < XHCI_MAX_INTERVAL; i++) {
2155 unsigned int bw_added;
2156 unsigned int largest_mps;
2157 unsigned int interval_overhead;
2158
2159 /*
2160 * How many packets could we transmit in this interval?
2161 * If packets didn't fit in the previous interval, we will need
2162 * to transmit that many packets twice within this interval.
2163 */
2164 packets_remaining = 2 * packets_remaining +
2165 bw_table->interval_bw[i].num_packets;
2166
2167 /* Find the largest max packet size of this or the previous
2168 * interval.
2169 */
2170 if (list_empty(&bw_table->interval_bw[i].endpoints))
2171 largest_mps = 0;
2172 else {
2173 struct xhci_virt_ep *virt_ep;
2174 struct list_head *ep_entry;
2175
2176 ep_entry = bw_table->interval_bw[i].endpoints.next;
2177 virt_ep = list_entry(ep_entry,
2178 struct xhci_virt_ep, bw_endpoint_list);
2179 /* Convert to blocks, rounding up */
2180 largest_mps = DIV_ROUND_UP(
2181 virt_ep->bw_info.max_packet_size,
2182 block_size);
2183 }
2184 if (largest_mps > packet_size)
2185 packet_size = largest_mps;
2186
2187 /* Use the larger overhead of this or the previous interval. */
2188 interval_overhead = xhci_get_largest_overhead(
2189 &bw_table->interval_bw[i]);
2190 if (interval_overhead > overhead)
2191 overhead = interval_overhead;
2192
2193 /* How many packets can we evenly distribute across
2194 * (1 << (i + 1)) possible scheduling opportunities?
2195 */
2196 packets_transmitted = packets_remaining >> (i + 1);
2197
2198 /* Add in the bandwidth used for those scheduled packets */
2199 bw_added = packets_transmitted * (overhead + packet_size);
2200
2201 /* How many packets do we have remaining to transmit? */
2202 packets_remaining = packets_remaining % (1 << (i + 1));
2203
2204 /* What largest max packet size should those packets have? */
2205 /* If we've transmitted all packets, don't carry over the
2206 * largest packet size.
2207 */
2208 if (packets_remaining == 0) {
2209 packet_size = 0;
2210 overhead = 0;
2211 } else if (packets_transmitted > 0) {
2212 /* Otherwise if we do have remaining packets, and we've
2213 * scheduled some packets in this interval, take the
2214 * largest max packet size from endpoints with this
2215 * interval.
2216 */
2217 packet_size = largest_mps;
2218 overhead = interval_overhead;
2219 }
2220 /* Otherwise carry over packet_size and overhead from the last
2221 * time we had a remainder.
2222 */
2223 bw_used += bw_added;
2224 if (bw_used > max_bandwidth) {
2225 xhci_warn(xhci, "Not enough bandwidth. "
2226 "Proposed: %u, Max: %u\n",
2227 bw_used, max_bandwidth);
2228 return -ENOMEM;
2229 }
2230 }
2231 /*
2232 * Ok, we know we have some packets left over after even-handedly
2233 * scheduling interval 15. We don't know which microframes they will
2234 * fit into, so we over-schedule and say they will be scheduled every
2235 * microframe.
2236 */
2237 if (packets_remaining > 0)
2238 bw_used += overhead + packet_size;
2239
2240 if (!virt_dev->tt_info && virt_dev->udev->speed == USB_SPEED_HIGH) {
2241 unsigned int port_index = virt_dev->real_port - 1;
2242
2243 /* OK, we're manipulating a HS device attached to a
2244 * root port bandwidth domain. Include the number of active TTs
2245 * in the bandwidth used.
2246 */
2247 bw_used += TT_HS_OVERHEAD *
2248 xhci->rh_bw[port_index].num_active_tts;
2249 }
2250
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002251 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2252 "Final bandwidth: %u, Limit: %u, Reserved: %u, "
2253 "Available: %u " "percent",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002254 bw_used, max_bandwidth, bw_reserved,
2255 (max_bandwidth - bw_used - bw_reserved) * 100 /
2256 max_bandwidth);
2257
2258 bw_used += bw_reserved;
2259 if (bw_used > max_bandwidth) {
2260 xhci_warn(xhci, "Not enough bandwidth. Proposed: %u, Max: %u\n",
2261 bw_used, max_bandwidth);
2262 return -ENOMEM;
2263 }
2264
2265 bw_table->bw_used = bw_used;
Sarah Sharp2e279802011-09-02 11:05:50 -07002266 return 0;
2267}
2268
2269static bool xhci_is_async_ep(unsigned int ep_type)
2270{
2271 return (ep_type != ISOC_OUT_EP && ep_type != INT_OUT_EP &&
2272 ep_type != ISOC_IN_EP &&
2273 ep_type != INT_IN_EP);
2274}
2275
Sarah Sharp2b698992011-09-13 16:41:13 -07002276static bool xhci_is_sync_in_ep(unsigned int ep_type)
2277{
Sarah Sharp392a07a2012-10-25 13:44:12 -07002278 return (ep_type == ISOC_IN_EP || ep_type == INT_IN_EP);
Sarah Sharp2b698992011-09-13 16:41:13 -07002279}
2280
2281static unsigned int xhci_get_ss_bw_consumed(struct xhci_bw_info *ep_bw)
2282{
2283 unsigned int mps = DIV_ROUND_UP(ep_bw->max_packet_size, SS_BLOCK);
2284
2285 if (ep_bw->ep_interval == 0)
2286 return SS_OVERHEAD_BURST +
2287 (ep_bw->mult * ep_bw->num_packets *
2288 (SS_OVERHEAD + mps));
2289 return DIV_ROUND_UP(ep_bw->mult * ep_bw->num_packets *
2290 (SS_OVERHEAD + mps + SS_OVERHEAD_BURST),
2291 1 << ep_bw->ep_interval);
2292
2293}
2294
Lu Baolu39693842017-04-07 17:57:04 +03002295static void xhci_drop_ep_from_interval_table(struct xhci_hcd *xhci,
Sarah Sharp2e279802011-09-02 11:05:50 -07002296 struct xhci_bw_info *ep_bw,
2297 struct xhci_interval_bw_table *bw_table,
2298 struct usb_device *udev,
2299 struct xhci_virt_ep *virt_ep,
2300 struct xhci_tt_bw_info *tt_info)
2301{
2302 struct xhci_interval_bw *interval_bw;
2303 int normalized_interval;
2304
Sarah Sharp2b698992011-09-13 16:41:13 -07002305 if (xhci_is_async_ep(ep_bw->type))
Sarah Sharp2e279802011-09-02 11:05:50 -07002306 return;
2307
Mathias Nyman0caf6b32016-01-25 15:30:44 +02002308 if (udev->speed >= USB_SPEED_SUPER) {
Sarah Sharp2b698992011-09-13 16:41:13 -07002309 if (xhci_is_sync_in_ep(ep_bw->type))
2310 xhci->devs[udev->slot_id]->bw_table->ss_bw_in -=
2311 xhci_get_ss_bw_consumed(ep_bw);
2312 else
2313 xhci->devs[udev->slot_id]->bw_table->ss_bw_out -=
2314 xhci_get_ss_bw_consumed(ep_bw);
2315 return;
2316 }
2317
2318 /* SuperSpeed endpoints never get added to intervals in the table, so
2319 * this check is only valid for HS/FS/LS devices.
2320 */
2321 if (list_empty(&virt_ep->bw_endpoint_list))
2322 return;
Sarah Sharp2e279802011-09-02 11:05:50 -07002323 /* For LS/FS devices, we need to translate the interval expressed in
2324 * microframes to frames.
2325 */
2326 if (udev->speed == USB_SPEED_HIGH)
2327 normalized_interval = ep_bw->ep_interval;
2328 else
2329 normalized_interval = ep_bw->ep_interval - 3;
2330
2331 if (normalized_interval == 0)
2332 bw_table->interval0_esit_payload -= ep_bw->max_esit_payload;
2333 interval_bw = &bw_table->interval_bw[normalized_interval];
2334 interval_bw->num_packets -= ep_bw->num_packets;
2335 switch (udev->speed) {
2336 case USB_SPEED_LOW:
2337 interval_bw->overhead[LS_OVERHEAD_TYPE] -= 1;
2338 break;
2339 case USB_SPEED_FULL:
2340 interval_bw->overhead[FS_OVERHEAD_TYPE] -= 1;
2341 break;
2342 case USB_SPEED_HIGH:
2343 interval_bw->overhead[HS_OVERHEAD_TYPE] -= 1;
2344 break;
2345 case USB_SPEED_SUPER:
Mathias Nyman0caf6b32016-01-25 15:30:44 +02002346 case USB_SPEED_SUPER_PLUS:
Sarah Sharp2e279802011-09-02 11:05:50 -07002347 case USB_SPEED_UNKNOWN:
2348 case USB_SPEED_WIRELESS:
2349 /* Should never happen because only LS/FS/HS endpoints will get
2350 * added to the endpoint list.
2351 */
2352 return;
2353 }
2354 if (tt_info)
2355 tt_info->active_eps -= 1;
2356 list_del_init(&virt_ep->bw_endpoint_list);
2357}
2358
2359static void xhci_add_ep_to_interval_table(struct xhci_hcd *xhci,
2360 struct xhci_bw_info *ep_bw,
2361 struct xhci_interval_bw_table *bw_table,
2362 struct usb_device *udev,
2363 struct xhci_virt_ep *virt_ep,
2364 struct xhci_tt_bw_info *tt_info)
2365{
2366 struct xhci_interval_bw *interval_bw;
2367 struct xhci_virt_ep *smaller_ep;
2368 int normalized_interval;
2369
2370 if (xhci_is_async_ep(ep_bw->type))
2371 return;
2372
Sarah Sharp2b698992011-09-13 16:41:13 -07002373 if (udev->speed == USB_SPEED_SUPER) {
2374 if (xhci_is_sync_in_ep(ep_bw->type))
2375 xhci->devs[udev->slot_id]->bw_table->ss_bw_in +=
2376 xhci_get_ss_bw_consumed(ep_bw);
2377 else
2378 xhci->devs[udev->slot_id]->bw_table->ss_bw_out +=
2379 xhci_get_ss_bw_consumed(ep_bw);
2380 return;
2381 }
2382
Sarah Sharp2e279802011-09-02 11:05:50 -07002383 /* For LS/FS devices, we need to translate the interval expressed in
2384 * microframes to frames.
2385 */
2386 if (udev->speed == USB_SPEED_HIGH)
2387 normalized_interval = ep_bw->ep_interval;
2388 else
2389 normalized_interval = ep_bw->ep_interval - 3;
2390
2391 if (normalized_interval == 0)
2392 bw_table->interval0_esit_payload += ep_bw->max_esit_payload;
2393 interval_bw = &bw_table->interval_bw[normalized_interval];
2394 interval_bw->num_packets += ep_bw->num_packets;
2395 switch (udev->speed) {
2396 case USB_SPEED_LOW:
2397 interval_bw->overhead[LS_OVERHEAD_TYPE] += 1;
2398 break;
2399 case USB_SPEED_FULL:
2400 interval_bw->overhead[FS_OVERHEAD_TYPE] += 1;
2401 break;
2402 case USB_SPEED_HIGH:
2403 interval_bw->overhead[HS_OVERHEAD_TYPE] += 1;
2404 break;
2405 case USB_SPEED_SUPER:
Mathias Nyman0caf6b32016-01-25 15:30:44 +02002406 case USB_SPEED_SUPER_PLUS:
Sarah Sharp2e279802011-09-02 11:05:50 -07002407 case USB_SPEED_UNKNOWN:
2408 case USB_SPEED_WIRELESS:
2409 /* Should never happen because only LS/FS/HS endpoints will get
2410 * added to the endpoint list.
2411 */
2412 return;
2413 }
2414
2415 if (tt_info)
2416 tt_info->active_eps += 1;
2417 /* Insert the endpoint into the list, largest max packet size first. */
2418 list_for_each_entry(smaller_ep, &interval_bw->endpoints,
2419 bw_endpoint_list) {
2420 if (ep_bw->max_packet_size >=
2421 smaller_ep->bw_info.max_packet_size) {
2422 /* Add the new ep before the smaller endpoint */
2423 list_add_tail(&virt_ep->bw_endpoint_list,
2424 &smaller_ep->bw_endpoint_list);
2425 return;
2426 }
2427 }
2428 /* Add the new endpoint at the end of the list. */
2429 list_add_tail(&virt_ep->bw_endpoint_list,
2430 &interval_bw->endpoints);
2431}
2432
2433void xhci_update_tt_active_eps(struct xhci_hcd *xhci,
2434 struct xhci_virt_device *virt_dev,
2435 int old_active_eps)
2436{
2437 struct xhci_root_port_bw_info *rh_bw_info;
2438 if (!virt_dev->tt_info)
2439 return;
2440
2441 rh_bw_info = &xhci->rh_bw[virt_dev->real_port - 1];
2442 if (old_active_eps == 0 &&
2443 virt_dev->tt_info->active_eps != 0) {
2444 rh_bw_info->num_active_tts += 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002445 rh_bw_info->bw_table.bw_used += TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002446 } else if (old_active_eps != 0 &&
2447 virt_dev->tt_info->active_eps == 0) {
2448 rh_bw_info->num_active_tts -= 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002449 rh_bw_info->bw_table.bw_used -= TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002450 }
2451}
2452
2453static int xhci_reserve_bandwidth(struct xhci_hcd *xhci,
2454 struct xhci_virt_device *virt_dev,
2455 struct xhci_container_ctx *in_ctx)
2456{
2457 struct xhci_bw_info ep_bw_info[31];
2458 int i;
2459 struct xhci_input_control_ctx *ctrl_ctx;
2460 int old_active_eps = 0;
2461
Sarah Sharp2e279802011-09-02 11:05:50 -07002462 if (virt_dev->tt_info)
2463 old_active_eps = virt_dev->tt_info->active_eps;
2464
Lin Wang4daf9df2015-01-09 16:06:31 +02002465 ctrl_ctx = xhci_get_input_control_ctx(in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002466 if (!ctrl_ctx) {
2467 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2468 __func__);
2469 return -ENOMEM;
2470 }
Sarah Sharp2e279802011-09-02 11:05:50 -07002471
2472 for (i = 0; i < 31; i++) {
2473 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2474 continue;
2475
2476 /* Make a copy of the BW info in case we need to revert this */
2477 memcpy(&ep_bw_info[i], &virt_dev->eps[i].bw_info,
2478 sizeof(ep_bw_info[i]));
2479 /* Drop the endpoint from the interval table if the endpoint is
2480 * being dropped or changed.
2481 */
2482 if (EP_IS_DROPPED(ctrl_ctx, i))
2483 xhci_drop_ep_from_interval_table(xhci,
2484 &virt_dev->eps[i].bw_info,
2485 virt_dev->bw_table,
2486 virt_dev->udev,
2487 &virt_dev->eps[i],
2488 virt_dev->tt_info);
2489 }
2490 /* Overwrite the information stored in the endpoints' bw_info */
2491 xhci_update_bw_info(xhci, virt_dev->in_ctx, ctrl_ctx, virt_dev);
2492 for (i = 0; i < 31; i++) {
2493 /* Add any changed or added endpoints to the interval table */
2494 if (EP_IS_ADDED(ctrl_ctx, i))
2495 xhci_add_ep_to_interval_table(xhci,
2496 &virt_dev->eps[i].bw_info,
2497 virt_dev->bw_table,
2498 virt_dev->udev,
2499 &virt_dev->eps[i],
2500 virt_dev->tt_info);
2501 }
2502
2503 if (!xhci_check_bw_table(xhci, virt_dev, old_active_eps)) {
2504 /* Ok, this fits in the bandwidth we have.
2505 * Update the number of active TTs.
2506 */
2507 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
2508 return 0;
2509 }
2510
2511 /* We don't have enough bandwidth for this, revert the stored info. */
2512 for (i = 0; i < 31; i++) {
2513 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2514 continue;
2515
2516 /* Drop the new copies of any added or changed endpoints from
2517 * the interval table.
2518 */
2519 if (EP_IS_ADDED(ctrl_ctx, i)) {
2520 xhci_drop_ep_from_interval_table(xhci,
2521 &virt_dev->eps[i].bw_info,
2522 virt_dev->bw_table,
2523 virt_dev->udev,
2524 &virt_dev->eps[i],
2525 virt_dev->tt_info);
2526 }
2527 /* Revert the endpoint back to its old information */
2528 memcpy(&virt_dev->eps[i].bw_info, &ep_bw_info[i],
2529 sizeof(ep_bw_info[i]));
2530 /* Add any changed or dropped endpoints back into the table */
2531 if (EP_IS_DROPPED(ctrl_ctx, i))
2532 xhci_add_ep_to_interval_table(xhci,
2533 &virt_dev->eps[i].bw_info,
2534 virt_dev->bw_table,
2535 virt_dev->udev,
2536 &virt_dev->eps[i],
2537 virt_dev->tt_info);
2538 }
2539 return -ENOMEM;
2540}
2541
2542
Sarah Sharpf2217e82009-08-07 14:04:43 -07002543/* Issue a configure endpoint command or evaluate context command
2544 * and wait for it to finish.
2545 */
2546static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002547 struct usb_device *udev,
2548 struct xhci_command *command,
2549 bool ctx_change, bool must_succeed)
Sarah Sharpf2217e82009-08-07 14:04:43 -07002550{
2551 int ret;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002552 unsigned long flags;
Sarah Sharp92f8e762013-04-23 17:11:14 -07002553 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002554 struct xhci_virt_device *virt_dev;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002555
2556 if (!command)
2557 return -EINVAL;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002558
2559 spin_lock_irqsave(&xhci->lock, flags);
Mathias Nymand9f11ba2017-04-07 17:57:01 +03002560
2561 if (xhci->xhc_state & XHCI_STATE_DYING) {
2562 spin_unlock_irqrestore(&xhci->lock, flags);
2563 return -ESHUTDOWN;
2564 }
2565
Sarah Sharp913a8a32009-09-04 10:53:13 -07002566 virt_dev = xhci->devs[udev->slot_id];
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002567
Lin Wang4daf9df2015-01-09 16:06:31 +02002568 ctrl_ctx = xhci_get_input_control_ctx(command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002569 if (!ctrl_ctx) {
Emil Goode1f215692013-06-25 15:49:36 -07002570 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002571 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2572 __func__);
2573 return -ENOMEM;
2574 }
Sarah Sharp750645f2011-09-02 11:05:43 -07002575
2576 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK) &&
Sarah Sharp92f8e762013-04-23 17:11:14 -07002577 xhci_reserve_host_resources(xhci, ctrl_ctx)) {
Sarah Sharp750645f2011-09-02 11:05:43 -07002578 spin_unlock_irqrestore(&xhci->lock, flags);
2579 xhci_warn(xhci, "Not enough host resources, "
2580 "active endpoint contexts = %u\n",
2581 xhci->num_active_eps);
2582 return -ENOMEM;
2583 }
Sarah Sharp2e279802011-09-02 11:05:50 -07002584 if ((xhci->quirks & XHCI_SW_BW_CHECKING) &&
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002585 xhci_reserve_bandwidth(xhci, virt_dev, command->in_ctx)) {
Sarah Sharp2e279802011-09-02 11:05:50 -07002586 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
Sarah Sharp92f8e762013-04-23 17:11:14 -07002587 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharp2e279802011-09-02 11:05:50 -07002588 spin_unlock_irqrestore(&xhci->lock, flags);
2589 xhci_warn(xhci, "Not enough bandwidth\n");
2590 return -ENOMEM;
2591 }
Sarah Sharp750645f2011-09-02 11:05:43 -07002592
Sarah Sharpf2217e82009-08-07 14:04:43 -07002593 if (!ctx_change)
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002594 ret = xhci_queue_configure_endpoint(xhci, command,
2595 command->in_ctx->dma,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002596 udev->slot_id, must_succeed);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002597 else
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002598 ret = xhci_queue_evaluate_context(xhci, command,
2599 command->in_ctx->dma,
Sarah Sharp4b266542012-05-07 15:34:26 -07002600 udev->slot_id, must_succeed);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002601 if (ret < 0) {
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002602 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
Sarah Sharp92f8e762013-04-23 17:11:14 -07002603 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002604 spin_unlock_irqrestore(&xhci->lock, flags);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03002605 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
2606 "FIXME allocate a new ring segment");
Sarah Sharpf2217e82009-08-07 14:04:43 -07002607 return -ENOMEM;
2608 }
2609 xhci_ring_cmd_db(xhci);
2610 spin_unlock_irqrestore(&xhci->lock, flags);
2611
2612 /* Wait for the configure endpoint command to complete */
Mathias Nymanc311e392014-05-08 19:26:03 +03002613 wait_for_completion(command->completion);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002614
2615 if (!ctx_change)
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002616 ret = xhci_configure_endpoint_result(xhci, udev,
2617 &command->status);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002618 else
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002619 ret = xhci_evaluate_context_result(xhci, udev,
2620 &command->status);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002621
2622 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
2623 spin_lock_irqsave(&xhci->lock, flags);
2624 /* If the command failed, remove the reserved resources.
2625 * Otherwise, clean up the estimate to include dropped eps.
2626 */
2627 if (ret)
Sarah Sharp92f8e762013-04-23 17:11:14 -07002628 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002629 else
Sarah Sharp92f8e762013-04-23 17:11:14 -07002630 xhci_finish_resource_reservation(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002631 spin_unlock_irqrestore(&xhci->lock, flags);
2632 }
2633 return ret;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002634}
2635
Hans de Goededf613832013-10-04 00:29:45 +02002636static void xhci_check_bw_drop_ep_streams(struct xhci_hcd *xhci,
2637 struct xhci_virt_device *vdev, int i)
2638{
2639 struct xhci_virt_ep *ep = &vdev->eps[i];
2640
2641 if (ep->ep_state & EP_HAS_STREAMS) {
2642 xhci_warn(xhci, "WARN: endpoint 0x%02x has streams on set_interface, freeing streams.\n",
2643 xhci_get_endpoint_address(i));
2644 xhci_free_stream_info(xhci, ep->stream_info);
2645 ep->stream_info = NULL;
2646 ep->ep_state &= ~EP_HAS_STREAMS;
2647 }
2648}
2649
Sarah Sharpf88ba782009-05-14 11:44:22 -07002650/* Called after one or more calls to xhci_add_endpoint() or
2651 * xhci_drop_endpoint(). If this call fails, the USB core is expected
2652 * to call xhci_reset_bandwidth().
2653 *
2654 * Since we are in the middle of changing either configuration or
2655 * installing a new alt setting, the USB core won't allow URBs to be
2656 * enqueued for any endpoint on the old config or interface. Nothing
2657 * else should be touching the xhci->devs[slot_id] structure, so we
2658 * don't need to take the xhci->lock for manipulating that.
2659 */
Lu Baolu39693842017-04-07 17:57:04 +03002660static int xhci_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharpf94e01862009-04-27 19:58:38 -07002661{
2662 int i;
2663 int ret = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002664 struct xhci_hcd *xhci;
2665 struct xhci_virt_device *virt_dev;
John Yound115b042009-07-27 12:05:15 -07002666 struct xhci_input_control_ctx *ctrl_ctx;
2667 struct xhci_slot_ctx *slot_ctx;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002668 struct xhci_command *command;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002669
Andiry Xu64927732010-10-14 07:22:45 -07002670 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002671 if (ret <= 0)
2672 return ret;
2673 xhci = hcd_to_xhci(hcd);
Mathias Nyman98d74f92016-04-08 16:25:10 +03002674 if ((xhci->xhc_state & XHCI_STATE_DYING) ||
2675 (xhci->xhc_state & XHCI_STATE_REMOVING))
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07002676 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002677
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002678 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002679 virt_dev = xhci->devs[udev->slot_id];
2680
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002681 command = xhci_alloc_command(xhci, false, true, GFP_KERNEL);
2682 if (!command)
2683 return -ENOMEM;
2684
2685 command->in_ctx = virt_dev->in_ctx;
2686
Sarah Sharpf94e01862009-04-27 19:58:38 -07002687 /* See section 4.6.6 - A0 = 1; A1 = D0 = D1 = 0 */
Lin Wang4daf9df2015-01-09 16:06:31 +02002688 ctrl_ctx = xhci_get_input_control_ctx(command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002689 if (!ctrl_ctx) {
2690 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2691 __func__);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002692 ret = -ENOMEM;
2693 goto command_cleanup;
Sarah Sharp92f8e762013-04-23 17:11:14 -07002694 }
Matt Evans28ccd292011-03-29 13:40:46 +11002695 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
2696 ctrl_ctx->add_flags &= cpu_to_le32(~EP0_FLAG);
2697 ctrl_ctx->drop_flags &= cpu_to_le32(~(SLOT_FLAG | EP0_FLAG));
Sarah Sharp2dc37532011-09-02 11:05:40 -07002698
2699 /* Don't issue the command if there's no endpoints to update. */
2700 if (ctrl_ctx->add_flags == cpu_to_le32(SLOT_FLAG) &&
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002701 ctrl_ctx->drop_flags == 0) {
2702 ret = 0;
2703 goto command_cleanup;
2704 }
Julius Wernerd6759132014-06-24 17:14:42 +03002705 /* Fix up Context Entries field. Minimum value is EP0 == BIT(1). */
John Yound115b042009-07-27 12:05:15 -07002706 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Julius Wernerd6759132014-06-24 17:14:42 +03002707 for (i = 31; i >= 1; i--) {
2708 __le32 le32 = cpu_to_le32(BIT(i));
2709
2710 if ((virt_dev->eps[i-1].ring && !(ctrl_ctx->drop_flags & le32))
2711 || (ctrl_ctx->add_flags & le32) || i == 1) {
2712 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
2713 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(i));
2714 break;
2715 }
2716 }
Sarah Sharpf94e01862009-04-27 19:58:38 -07002717
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002718 ret = xhci_configure_endpoint(xhci, udev, command,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002719 false, false);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002720 if (ret)
Sarah Sharpf94e01862009-04-27 19:58:38 -07002721 /* Callee should call reset_bandwidth() */
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002722 goto command_cleanup;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002723
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002724 /* Free any rings that were dropped, but not changed. */
Felipe Balbi98871e92017-01-23 14:20:04 +02002725 for (i = 1; i < 31; i++) {
Matt Evans4819fef2011-06-01 13:01:07 +10002726 if ((le32_to_cpu(ctrl_ctx->drop_flags) & (1 << (i + 1))) &&
Hans de Goededf613832013-10-04 00:29:45 +02002727 !(le32_to_cpu(ctrl_ctx->add_flags) & (1 << (i + 1)))) {
Mathias Nymanc5628a22017-06-15 11:55:42 +03002728 xhci_free_endpoint_ring(xhci, virt_dev, i);
Hans de Goededf613832013-10-04 00:29:45 +02002729 xhci_check_bw_drop_ep_streams(xhci, virt_dev, i);
2730 }
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002731 }
John Yound115b042009-07-27 12:05:15 -07002732 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002733 /*
2734 * Install any rings for completely new endpoints or changed endpoints,
Mathias Nymanc5628a22017-06-15 11:55:42 +03002735 * and free any old rings from changed endpoints.
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002736 */
Felipe Balbi98871e92017-01-23 14:20:04 +02002737 for (i = 1; i < 31; i++) {
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002738 if (!virt_dev->eps[i].new_ring)
2739 continue;
Mathias Nymanc5628a22017-06-15 11:55:42 +03002740 /* Only free the old ring if it exists.
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002741 * It may not if this is the first add of an endpoint.
2742 */
2743 if (virt_dev->eps[i].ring) {
Mathias Nymanc5628a22017-06-15 11:55:42 +03002744 xhci_free_endpoint_ring(xhci, virt_dev, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002745 }
Hans de Goededf613832013-10-04 00:29:45 +02002746 xhci_check_bw_drop_ep_streams(xhci, virt_dev, i);
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002747 virt_dev->eps[i].ring = virt_dev->eps[i].new_ring;
2748 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002749 }
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002750command_cleanup:
2751 kfree(command->completion);
2752 kfree(command);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002753
Sarah Sharpf94e01862009-04-27 19:58:38 -07002754 return ret;
2755}
2756
Lu Baolu39693842017-04-07 17:57:04 +03002757static void xhci_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharpf94e01862009-04-27 19:58:38 -07002758{
Sarah Sharpf94e01862009-04-27 19:58:38 -07002759 struct xhci_hcd *xhci;
2760 struct xhci_virt_device *virt_dev;
2761 int i, ret;
2762
Andiry Xu64927732010-10-14 07:22:45 -07002763 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002764 if (ret <= 0)
2765 return;
2766 xhci = hcd_to_xhci(hcd);
2767
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002768 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002769 virt_dev = xhci->devs[udev->slot_id];
2770 /* Free any rings allocated for added endpoints */
Felipe Balbi98871e92017-01-23 14:20:04 +02002771 for (i = 0; i < 31; i++) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002772 if (virt_dev->eps[i].new_ring) {
2773 xhci_ring_free(xhci, virt_dev->eps[i].new_ring);
2774 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002775 }
2776 }
John Yound115b042009-07-27 12:05:15 -07002777 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002778}
2779
Sarah Sharp5270b952009-09-04 10:53:11 -07002780static void xhci_setup_input_ctx_for_config_ep(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002781 struct xhci_container_ctx *in_ctx,
2782 struct xhci_container_ctx *out_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07002783 struct xhci_input_control_ctx *ctrl_ctx,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002784 u32 add_flags, u32 drop_flags)
Sarah Sharp5270b952009-09-04 10:53:11 -07002785{
Matt Evans28ccd292011-03-29 13:40:46 +11002786 ctrl_ctx->add_flags = cpu_to_le32(add_flags);
2787 ctrl_ctx->drop_flags = cpu_to_le32(drop_flags);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002788 xhci_slot_copy(xhci, in_ctx, out_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11002789 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharp5270b952009-09-04 10:53:11 -07002790}
2791
Dmitry Torokhov8212a492011-02-08 13:55:59 -08002792static void xhci_setup_input_ctx_for_quirk(struct xhci_hcd *xhci,
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002793 unsigned int slot_id, unsigned int ep_index,
2794 struct xhci_dequeue_state *deq_state)
2795{
Sarah Sharp92f8e762013-04-23 17:11:14 -07002796 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002797 struct xhci_container_ctx *in_ctx;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002798 struct xhci_ep_ctx *ep_ctx;
2799 u32 added_ctxs;
2800 dma_addr_t addr;
2801
Sarah Sharp92f8e762013-04-23 17:11:14 -07002802 in_ctx = xhci->devs[slot_id]->in_ctx;
Lin Wang4daf9df2015-01-09 16:06:31 +02002803 ctrl_ctx = xhci_get_input_control_ctx(in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002804 if (!ctrl_ctx) {
2805 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2806 __func__);
2807 return;
2808 }
2809
Sarah Sharp913a8a32009-09-04 10:53:13 -07002810 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
2811 xhci->devs[slot_id]->out_ctx, ep_index);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002812 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
2813 addr = xhci_trb_virt_to_dma(deq_state->new_deq_seg,
2814 deq_state->new_deq_ptr);
2815 if (addr == 0) {
2816 xhci_warn(xhci, "WARN Cannot submit config ep after "
2817 "reset ep command\n");
2818 xhci_warn(xhci, "WARN deq seg = %p, deq ptr = %p\n",
2819 deq_state->new_deq_seg,
2820 deq_state->new_deq_ptr);
2821 return;
2822 }
Matt Evans28ccd292011-03-29 13:40:46 +11002823 ep_ctx->deq = cpu_to_le64(addr | deq_state->new_cycle_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002824
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002825 added_ctxs = xhci_get_endpoint_flag_from_index(ep_index);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002826 xhci_setup_input_ctx_for_config_ep(xhci, xhci->devs[slot_id]->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07002827 xhci->devs[slot_id]->out_ctx, ctrl_ctx,
2828 added_ctxs, added_ctxs);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002829}
2830
Mathias Nymand36374f2017-06-15 11:55:47 +03002831void xhci_cleanup_stalled_ring(struct xhci_hcd *xhci, unsigned int ep_index,
2832 unsigned int stream_id, struct xhci_td *td)
Sarah Sharp82d10092009-08-07 14:04:52 -07002833{
2834 struct xhci_dequeue_state deq_state;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002835 struct xhci_virt_ep *ep;
Mathias Nymand97b4f82014-11-27 18:19:16 +02002836 struct usb_device *udev = td->urb->dev;
Sarah Sharp82d10092009-08-07 14:04:52 -07002837
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002838 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2839 "Cleaning up stalled endpoint ring");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002840 ep = &xhci->devs[udev->slot_id]->eps[ep_index];
Sarah Sharp82d10092009-08-07 14:04:52 -07002841 /* We need to move the HW's dequeue pointer past this TD,
2842 * or it will attempt to resend it on the next doorbell ring.
2843 */
2844 xhci_find_new_dequeue_state(xhci, udev->slot_id,
Mathias Nymand36374f2017-06-15 11:55:47 +03002845 ep_index, stream_id, td, &deq_state);
Sarah Sharp82d10092009-08-07 14:04:52 -07002846
Mathias Nyman365038d2014-08-19 15:17:58 +03002847 if (!deq_state.new_deq_ptr || !deq_state.new_deq_seg)
2848 return;
2849
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002850 /* HW with the reset endpoint quirk will use the saved dequeue state to
2851 * issue a configure endpoint command later.
2852 */
2853 if (!(xhci->quirks & XHCI_RESET_EP_QUIRK)) {
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002854 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2855 "Queueing new dequeue state");
Hans de Goede1e3452e2014-08-20 16:41:52 +03002856 xhci_queue_new_dequeue_state(xhci, udev->slot_id,
Mathias Nyman87907362017-06-02 16:36:23 +03002857 ep_index, &deq_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002858 } else {
2859 /* Better hope no one uses the input context between now and the
2860 * reset endpoint completion!
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002861 * XXX: No idea how this hardware will react when stream rings
2862 * are enabled.
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002863 */
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002864 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2865 "Setting up input context for "
2866 "configure endpoint command");
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002867 xhci_setup_input_ctx_for_quirk(xhci, udev->slot_id,
2868 ep_index, &deq_state);
2869 }
Sarah Sharp82d10092009-08-07 14:04:52 -07002870}
2871
Mathias Nymand0167ad2015-03-10 19:49:00 +02002872/* Called when clearing halted device. The core should have sent the control
Mathias Nyman8e71a322014-11-18 11:27:12 +02002873 * message to clear the device halt condition. The host side of the halt should
Mathias Nymand0167ad2015-03-10 19:49:00 +02002874 * already be cleared with a reset endpoint command issued when the STALL tx
2875 * event was received.
2876 *
2877 * Context: in_interrupt
Sarah Sharpa1587d92009-07-27 12:03:15 -07002878 */
Mathias Nyman8e71a322014-11-18 11:27:12 +02002879
Lu Baolu39693842017-04-07 17:57:04 +03002880static void xhci_endpoint_reset(struct usb_hcd *hcd,
Sarah Sharpa1587d92009-07-27 12:03:15 -07002881 struct usb_host_endpoint *ep)
2882{
2883 struct xhci_hcd *xhci;
Sarah Sharpa1587d92009-07-27 12:03:15 -07002884
2885 xhci = hcd_to_xhci(hcd);
Sarah Sharpa1587d92009-07-27 12:03:15 -07002886
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002887 /*
Mathias Nymand0167ad2015-03-10 19:49:00 +02002888 * We might need to implement the config ep cmd in xhci 4.8.1 note:
Mathias Nyman8e71a322014-11-18 11:27:12 +02002889 * The Reset Endpoint Command may only be issued to endpoints in the
2890 * Halted state. If software wishes reset the Data Toggle or Sequence
2891 * Number of an endpoint that isn't in the Halted state, then software
2892 * may issue a Configure Endpoint Command with the Drop and Add bits set
2893 * for the target endpoint. that is in the Stopped state.
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002894 */
Sarah Sharpa1587d92009-07-27 12:03:15 -07002895
Mathias Nymand0167ad2015-03-10 19:49:00 +02002896 /* For now just print debug to follow the situation */
2897 xhci_dbg(xhci, "Endpoint 0x%x ep reset callback called\n",
2898 ep->desc.bEndpointAddress);
Sarah Sharpa1587d92009-07-27 12:03:15 -07002899}
2900
Sarah Sharp8df75f42010-04-02 15:34:16 -07002901static int xhci_check_streams_endpoint(struct xhci_hcd *xhci,
2902 struct usb_device *udev, struct usb_host_endpoint *ep,
2903 unsigned int slot_id)
2904{
2905 int ret;
2906 unsigned int ep_index;
2907 unsigned int ep_state;
2908
2909 if (!ep)
2910 return -EINVAL;
Andiry Xu64927732010-10-14 07:22:45 -07002911 ret = xhci_check_args(xhci_to_hcd(xhci), udev, ep, 1, true, __func__);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002912 if (ret <= 0)
2913 return -EINVAL;
Hans de Goedea3901532013-10-04 17:05:55 +02002914 if (usb_ss_max_streams(&ep->ss_ep_comp) == 0) {
Sarah Sharp8df75f42010-04-02 15:34:16 -07002915 xhci_warn(xhci, "WARN: SuperSpeed Endpoint Companion"
2916 " descriptor for ep 0x%x does not support streams\n",
2917 ep->desc.bEndpointAddress);
2918 return -EINVAL;
2919 }
2920
2921 ep_index = xhci_get_endpoint_index(&ep->desc);
2922 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
2923 if (ep_state & EP_HAS_STREAMS ||
2924 ep_state & EP_GETTING_STREAMS) {
2925 xhci_warn(xhci, "WARN: SuperSpeed bulk endpoint 0x%x "
2926 "already has streams set up.\n",
2927 ep->desc.bEndpointAddress);
2928 xhci_warn(xhci, "Send email to xHCI maintainer and ask for "
2929 "dynamic stream context array reallocation.\n");
2930 return -EINVAL;
2931 }
2932 if (!list_empty(&xhci->devs[slot_id]->eps[ep_index].ring->td_list)) {
2933 xhci_warn(xhci, "Cannot setup streams for SuperSpeed bulk "
2934 "endpoint 0x%x; URBs are pending.\n",
2935 ep->desc.bEndpointAddress);
2936 return -EINVAL;
2937 }
2938 return 0;
2939}
2940
2941static void xhci_calculate_streams_entries(struct xhci_hcd *xhci,
2942 unsigned int *num_streams, unsigned int *num_stream_ctxs)
2943{
2944 unsigned int max_streams;
2945
2946 /* The stream context array size must be a power of two */
2947 *num_stream_ctxs = roundup_pow_of_two(*num_streams);
2948 /*
2949 * Find out how many primary stream array entries the host controller
2950 * supports. Later we may use secondary stream arrays (similar to 2nd
2951 * level page entries), but that's an optional feature for xHCI host
2952 * controllers. xHCs must support at least 4 stream IDs.
2953 */
2954 max_streams = HCC_MAX_PSA(xhci->hcc_params);
2955 if (*num_stream_ctxs > max_streams) {
2956 xhci_dbg(xhci, "xHCI HW only supports %u stream ctx entries.\n",
2957 max_streams);
2958 *num_stream_ctxs = max_streams;
2959 *num_streams = max_streams;
2960 }
2961}
2962
2963/* Returns an error code if one of the endpoint already has streams.
2964 * This does not change any data structures, it only checks and gathers
2965 * information.
2966 */
2967static int xhci_calculate_streams_and_bitmask(struct xhci_hcd *xhci,
2968 struct usb_device *udev,
2969 struct usb_host_endpoint **eps, unsigned int num_eps,
2970 unsigned int *num_streams, u32 *changed_ep_bitmask)
2971{
Sarah Sharp8df75f42010-04-02 15:34:16 -07002972 unsigned int max_streams;
2973 unsigned int endpoint_flag;
2974 int i;
2975 int ret;
2976
2977 for (i = 0; i < num_eps; i++) {
2978 ret = xhci_check_streams_endpoint(xhci, udev,
2979 eps[i], udev->slot_id);
2980 if (ret < 0)
2981 return ret;
2982
Felipe Balbi18b7ede2012-01-02 13:35:41 +02002983 max_streams = usb_ss_max_streams(&eps[i]->ss_ep_comp);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002984 if (max_streams < (*num_streams - 1)) {
2985 xhci_dbg(xhci, "Ep 0x%x only supports %u stream IDs.\n",
2986 eps[i]->desc.bEndpointAddress,
2987 max_streams);
2988 *num_streams = max_streams+1;
2989 }
2990
2991 endpoint_flag = xhci_get_endpoint_flag(&eps[i]->desc);
2992 if (*changed_ep_bitmask & endpoint_flag)
2993 return -EINVAL;
2994 *changed_ep_bitmask |= endpoint_flag;
2995 }
2996 return 0;
2997}
2998
2999static u32 xhci_calculate_no_streams_bitmask(struct xhci_hcd *xhci,
3000 struct usb_device *udev,
3001 struct usb_host_endpoint **eps, unsigned int num_eps)
3002{
3003 u32 changed_ep_bitmask = 0;
3004 unsigned int slot_id;
3005 unsigned int ep_index;
3006 unsigned int ep_state;
3007 int i;
3008
3009 slot_id = udev->slot_id;
3010 if (!xhci->devs[slot_id])
3011 return 0;
3012
3013 for (i = 0; i < num_eps; i++) {
3014 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3015 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
3016 /* Are streams already being freed for the endpoint? */
3017 if (ep_state & EP_GETTING_NO_STREAMS) {
3018 xhci_warn(xhci, "WARN Can't disable streams for "
Joe Perches03e64e92013-07-16 19:25:59 -07003019 "endpoint 0x%x, "
3020 "streams are being disabled already\n",
Sarah Sharp8df75f42010-04-02 15:34:16 -07003021 eps[i]->desc.bEndpointAddress);
3022 return 0;
3023 }
3024 /* Are there actually any streams to free? */
3025 if (!(ep_state & EP_HAS_STREAMS) &&
3026 !(ep_state & EP_GETTING_STREAMS)) {
3027 xhci_warn(xhci, "WARN Can't disable streams for "
Joe Perches03e64e92013-07-16 19:25:59 -07003028 "endpoint 0x%x, "
3029 "streams are already disabled!\n",
Sarah Sharp8df75f42010-04-02 15:34:16 -07003030 eps[i]->desc.bEndpointAddress);
3031 xhci_warn(xhci, "WARN xhci_free_streams() called "
3032 "with non-streams endpoint\n");
3033 return 0;
3034 }
3035 changed_ep_bitmask |= xhci_get_endpoint_flag(&eps[i]->desc);
3036 }
3037 return changed_ep_bitmask;
3038}
3039
3040/*
Luis de Bethencourtc2a298d2015-06-30 16:48:54 +02003041 * The USB device drivers use this function (through the HCD interface in USB
Sarah Sharp8df75f42010-04-02 15:34:16 -07003042 * core) to prepare a set of bulk endpoints to use streams. Streams are used to
3043 * coordinate mass storage command queueing across multiple endpoints (basically
3044 * a stream ID == a task ID).
3045 *
3046 * Setting up streams involves allocating the same size stream context array
3047 * for each endpoint and issuing a configure endpoint command for all endpoints.
3048 *
3049 * Don't allow the call to succeed if one endpoint only supports one stream
3050 * (which means it doesn't support streams at all).
3051 *
3052 * Drivers may get less stream IDs than they asked for, if the host controller
3053 * hardware or endpoints claim they can't support the number of requested
3054 * stream IDs.
3055 */
Lu Baolu39693842017-04-07 17:57:04 +03003056static int xhci_alloc_streams(struct usb_hcd *hcd, struct usb_device *udev,
Sarah Sharp8df75f42010-04-02 15:34:16 -07003057 struct usb_host_endpoint **eps, unsigned int num_eps,
3058 unsigned int num_streams, gfp_t mem_flags)
3059{
3060 int i, ret;
3061 struct xhci_hcd *xhci;
3062 struct xhci_virt_device *vdev;
3063 struct xhci_command *config_cmd;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003064 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003065 unsigned int ep_index;
3066 unsigned int num_stream_ctxs;
Mathias Nymanf9c589e2016-06-21 10:58:02 +03003067 unsigned int max_packet;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003068 unsigned long flags;
3069 u32 changed_ep_bitmask = 0;
3070
3071 if (!eps)
3072 return -EINVAL;
3073
3074 /* Add one to the number of streams requested to account for
3075 * stream 0 that is reserved for xHCI usage.
3076 */
3077 num_streams += 1;
3078 xhci = hcd_to_xhci(hcd);
3079 xhci_dbg(xhci, "Driver wants %u stream IDs (including stream 0).\n",
3080 num_streams);
3081
Hans de Goedef7920882013-11-15 12:14:38 +01003082 /* MaxPSASize value 0 (2 streams) means streams are not supported */
Hans de Goede8f873c12014-07-25 22:01:18 +02003083 if ((xhci->quirks & XHCI_BROKEN_STREAMS) ||
3084 HCC_MAX_PSA(xhci->hcc_params) < 4) {
Hans de Goedef7920882013-11-15 12:14:38 +01003085 xhci_dbg(xhci, "xHCI controller does not support streams.\n");
3086 return -ENOSYS;
3087 }
3088
Sarah Sharp8df75f42010-04-02 15:34:16 -07003089 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
Lu Baolu74e0b562017-04-07 17:57:05 +03003090 if (!config_cmd)
Sarah Sharp8df75f42010-04-02 15:34:16 -07003091 return -ENOMEM;
Lu Baolu74e0b562017-04-07 17:57:05 +03003092
Lin Wang4daf9df2015-01-09 16:06:31 +02003093 ctrl_ctx = xhci_get_input_control_ctx(config_cmd->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003094 if (!ctrl_ctx) {
3095 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3096 __func__);
3097 xhci_free_command(xhci, config_cmd);
3098 return -ENOMEM;
3099 }
Sarah Sharp8df75f42010-04-02 15:34:16 -07003100
3101 /* Check to make sure all endpoints are not already configured for
3102 * streams. While we're at it, find the maximum number of streams that
3103 * all the endpoints will support and check for duplicate endpoints.
3104 */
3105 spin_lock_irqsave(&xhci->lock, flags);
3106 ret = xhci_calculate_streams_and_bitmask(xhci, udev, eps,
3107 num_eps, &num_streams, &changed_ep_bitmask);
3108 if (ret < 0) {
3109 xhci_free_command(xhci, config_cmd);
3110 spin_unlock_irqrestore(&xhci->lock, flags);
3111 return ret;
3112 }
3113 if (num_streams <= 1) {
3114 xhci_warn(xhci, "WARN: endpoints can't handle "
3115 "more than one stream.\n");
3116 xhci_free_command(xhci, config_cmd);
3117 spin_unlock_irqrestore(&xhci->lock, flags);
3118 return -EINVAL;
3119 }
3120 vdev = xhci->devs[udev->slot_id];
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003121 /* Mark each endpoint as being in transition, so
Sarah Sharp8df75f42010-04-02 15:34:16 -07003122 * xhci_urb_enqueue() will reject all URBs.
3123 */
3124 for (i = 0; i < num_eps; i++) {
3125 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3126 vdev->eps[ep_index].ep_state |= EP_GETTING_STREAMS;
3127 }
3128 spin_unlock_irqrestore(&xhci->lock, flags);
3129
3130 /* Setup internal data structures and allocate HW data structures for
3131 * streams (but don't install the HW structures in the input context
3132 * until we're sure all memory allocation succeeded).
3133 */
3134 xhci_calculate_streams_entries(xhci, &num_streams, &num_stream_ctxs);
3135 xhci_dbg(xhci, "Need %u stream ctx entries for %u stream IDs.\n",
3136 num_stream_ctxs, num_streams);
3137
3138 for (i = 0; i < num_eps; i++) {
3139 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
Felipe Balbi734d3dd2016-09-28 13:46:37 +03003140 max_packet = usb_endpoint_maxp(&eps[i]->desc);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003141 vdev->eps[ep_index].stream_info = xhci_alloc_stream_info(xhci,
3142 num_stream_ctxs,
Mathias Nymanf9c589e2016-06-21 10:58:02 +03003143 num_streams,
3144 max_packet, mem_flags);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003145 if (!vdev->eps[ep_index].stream_info)
3146 goto cleanup;
3147 /* Set maxPstreams in endpoint context and update deq ptr to
3148 * point to stream context array. FIXME
3149 */
3150 }
3151
3152 /* Set up the input context for a configure endpoint command. */
3153 for (i = 0; i < num_eps; i++) {
3154 struct xhci_ep_ctx *ep_ctx;
3155
3156 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3157 ep_ctx = xhci_get_ep_ctx(xhci, config_cmd->in_ctx, ep_index);
3158
3159 xhci_endpoint_copy(xhci, config_cmd->in_ctx,
3160 vdev->out_ctx, ep_index);
3161 xhci_setup_streams_ep_input_ctx(xhci, ep_ctx,
3162 vdev->eps[ep_index].stream_info);
3163 }
3164 /* Tell the HW to drop its old copy of the endpoint context info
3165 * and add the updated copy from the input context.
3166 */
3167 xhci_setup_input_ctx_for_config_ep(xhci, config_cmd->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07003168 vdev->out_ctx, ctrl_ctx,
3169 changed_ep_bitmask, changed_ep_bitmask);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003170
3171 /* Issue and wait for the configure endpoint command */
3172 ret = xhci_configure_endpoint(xhci, udev, config_cmd,
3173 false, false);
3174
3175 /* xHC rejected the configure endpoint command for some reason, so we
3176 * leave the old ring intact and free our internal streams data
3177 * structure.
3178 */
3179 if (ret < 0)
3180 goto cleanup;
3181
3182 spin_lock_irqsave(&xhci->lock, flags);
3183 for (i = 0; i < num_eps; i++) {
3184 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3185 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3186 xhci_dbg(xhci, "Slot %u ep ctx %u now has streams.\n",
3187 udev->slot_id, ep_index);
3188 vdev->eps[ep_index].ep_state |= EP_HAS_STREAMS;
3189 }
3190 xhci_free_command(xhci, config_cmd);
3191 spin_unlock_irqrestore(&xhci->lock, flags);
3192
3193 /* Subtract 1 for stream 0, which drivers can't use */
3194 return num_streams - 1;
3195
3196cleanup:
3197 /* If it didn't work, free the streams! */
3198 for (i = 0; i < num_eps; i++) {
3199 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3200 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003201 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003202 /* FIXME Unset maxPstreams in endpoint context and
3203 * update deq ptr to point to normal string ring.
3204 */
3205 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3206 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3207 xhci_endpoint_zero(xhci, vdev, eps[i]);
3208 }
3209 xhci_free_command(xhci, config_cmd);
3210 return -ENOMEM;
3211}
3212
3213/* Transition the endpoint from using streams to being a "normal" endpoint
3214 * without streams.
3215 *
3216 * Modify the endpoint context state, submit a configure endpoint command,
3217 * and free all endpoint rings for streams if that completes successfully.
3218 */
Lu Baolu39693842017-04-07 17:57:04 +03003219static int xhci_free_streams(struct usb_hcd *hcd, struct usb_device *udev,
Sarah Sharp8df75f42010-04-02 15:34:16 -07003220 struct usb_host_endpoint **eps, unsigned int num_eps,
3221 gfp_t mem_flags)
3222{
3223 int i, ret;
3224 struct xhci_hcd *xhci;
3225 struct xhci_virt_device *vdev;
3226 struct xhci_command *command;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003227 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003228 unsigned int ep_index;
3229 unsigned long flags;
3230 u32 changed_ep_bitmask;
3231
3232 xhci = hcd_to_xhci(hcd);
3233 vdev = xhci->devs[udev->slot_id];
3234
3235 /* Set up a configure endpoint command to remove the streams rings */
3236 spin_lock_irqsave(&xhci->lock, flags);
3237 changed_ep_bitmask = xhci_calculate_no_streams_bitmask(xhci,
3238 udev, eps, num_eps);
3239 if (changed_ep_bitmask == 0) {
3240 spin_unlock_irqrestore(&xhci->lock, flags);
3241 return -EINVAL;
3242 }
3243
3244 /* Use the xhci_command structure from the first endpoint. We may have
3245 * allocated too many, but the driver may call xhci_free_streams() for
3246 * each endpoint it grouped into one call to xhci_alloc_streams().
3247 */
3248 ep_index = xhci_get_endpoint_index(&eps[0]->desc);
3249 command = vdev->eps[ep_index].stream_info->free_streams_command;
Lin Wang4daf9df2015-01-09 16:06:31 +02003250 ctrl_ctx = xhci_get_input_control_ctx(command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003251 if (!ctrl_ctx) {
Emil Goode1f215692013-06-25 15:49:36 -07003252 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003253 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3254 __func__);
3255 return -EINVAL;
3256 }
3257
Sarah Sharp8df75f42010-04-02 15:34:16 -07003258 for (i = 0; i < num_eps; i++) {
3259 struct xhci_ep_ctx *ep_ctx;
3260
3261 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3262 ep_ctx = xhci_get_ep_ctx(xhci, command->in_ctx, ep_index);
3263 xhci->devs[udev->slot_id]->eps[ep_index].ep_state |=
3264 EP_GETTING_NO_STREAMS;
3265
3266 xhci_endpoint_copy(xhci, command->in_ctx,
3267 vdev->out_ctx, ep_index);
Lin Wang4daf9df2015-01-09 16:06:31 +02003268 xhci_setup_no_streams_ep_input_ctx(ep_ctx,
Sarah Sharp8df75f42010-04-02 15:34:16 -07003269 &vdev->eps[ep_index]);
3270 }
3271 xhci_setup_input_ctx_for_config_ep(xhci, command->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07003272 vdev->out_ctx, ctrl_ctx,
3273 changed_ep_bitmask, changed_ep_bitmask);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003274 spin_unlock_irqrestore(&xhci->lock, flags);
3275
3276 /* Issue and wait for the configure endpoint command,
3277 * which must succeed.
3278 */
3279 ret = xhci_configure_endpoint(xhci, udev, command,
3280 false, true);
3281
3282 /* xHC rejected the configure endpoint command for some reason, so we
3283 * leave the streams rings intact.
3284 */
3285 if (ret < 0)
3286 return ret;
3287
3288 spin_lock_irqsave(&xhci->lock, flags);
3289 for (i = 0; i < num_eps; i++) {
3290 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3291 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003292 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003293 /* FIXME Unset maxPstreams in endpoint context and
3294 * update deq ptr to point to normal string ring.
3295 */
3296 vdev->eps[ep_index].ep_state &= ~EP_GETTING_NO_STREAMS;
3297 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3298 }
3299 spin_unlock_irqrestore(&xhci->lock, flags);
3300
3301 return 0;
3302}
3303
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003304/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003305 * Deletes endpoint resources for endpoints that were active before a Reset
3306 * Device command, or a Disable Slot command. The Reset Device command leaves
3307 * the control endpoint intact, whereas the Disable Slot command deletes it.
3308 *
3309 * Must be called with xhci->lock held.
3310 */
3311void xhci_free_device_endpoint_resources(struct xhci_hcd *xhci,
3312 struct xhci_virt_device *virt_dev, bool drop_control_ep)
3313{
3314 int i;
3315 unsigned int num_dropped_eps = 0;
3316 unsigned int drop_flags = 0;
3317
3318 for (i = (drop_control_ep ? 0 : 1); i < 31; i++) {
3319 if (virt_dev->eps[i].ring) {
3320 drop_flags |= 1 << i;
3321 num_dropped_eps++;
3322 }
3323 }
3324 xhci->num_active_eps -= num_dropped_eps;
3325 if (num_dropped_eps)
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003326 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3327 "Dropped %u ep ctxs, flags = 0x%x, "
3328 "%u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003329 num_dropped_eps, drop_flags,
3330 xhci->num_active_eps);
3331}
3332
3333/*
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003334 * This submits a Reset Device Command, which will set the device state to 0,
3335 * set the device address to 0, and disable all the endpoints except the default
3336 * control endpoint. The USB core should come back and call
3337 * xhci_address_device(), and then re-set up the configuration. If this is
3338 * called because of a usb_reset_and_verify_device(), then the old alternate
3339 * settings will be re-installed through the normal bandwidth allocation
3340 * functions.
3341 *
3342 * Wait for the Reset Device command to finish. Remove all structures
3343 * associated with the endpoints that were disabled. Clear the input device
Mathias Nymanc5628a22017-06-15 11:55:42 +03003344 * structure? Reset the control endpoint 0 max packet size?
Andiry Xuf0615c42010-10-14 07:22:48 -07003345 *
3346 * If the virt_dev to be reset does not exist or does not match the udev,
3347 * it means the device is lost, possibly due to the xHC restore error and
3348 * re-initialization during S3/S4. In this case, call xhci_alloc_dev() to
3349 * re-allocate the device.
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003350 */
Lu Baolu39693842017-04-07 17:57:04 +03003351static int xhci_discover_or_reset_device(struct usb_hcd *hcd,
3352 struct usb_device *udev)
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003353{
3354 int ret, i;
3355 unsigned long flags;
3356 struct xhci_hcd *xhci;
3357 unsigned int slot_id;
3358 struct xhci_virt_device *virt_dev;
3359 struct xhci_command *reset_device_cmd;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003360 int last_freed_endpoint;
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003361 struct xhci_slot_ctx *slot_ctx;
Sarah Sharp2e279802011-09-02 11:05:50 -07003362 int old_active_eps = 0;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003363
Andiry Xuf0615c42010-10-14 07:22:48 -07003364 ret = xhci_check_args(hcd, udev, NULL, 0, false, __func__);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003365 if (ret <= 0)
3366 return ret;
3367 xhci = hcd_to_xhci(hcd);
3368 slot_id = udev->slot_id;
3369 virt_dev = xhci->devs[slot_id];
Andiry Xuf0615c42010-10-14 07:22:48 -07003370 if (!virt_dev) {
3371 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3372 "not exist. Re-allocate the device\n", slot_id);
3373 ret = xhci_alloc_dev(hcd, udev);
3374 if (ret == 1)
3375 return 0;
3376 else
3377 return -EINVAL;
3378 }
3379
Brian Campbell326124a2015-07-21 17:20:28 +03003380 if (virt_dev->tt_info)
3381 old_active_eps = virt_dev->tt_info->active_eps;
3382
Andiry Xuf0615c42010-10-14 07:22:48 -07003383 if (virt_dev->udev != udev) {
3384 /* If the virt_dev and the udev does not match, this virt_dev
3385 * may belong to another udev.
3386 * Re-allocate the device.
3387 */
3388 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3389 "not match the udev. Re-allocate the device\n",
3390 slot_id);
3391 ret = xhci_alloc_dev(hcd, udev);
3392 if (ret == 1)
3393 return 0;
3394 else
3395 return -EINVAL;
3396 }
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003397
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003398 /* If device is not setup, there is no point in resetting it */
3399 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
3400 if (GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state)) ==
3401 SLOT_STATE_DISABLED)
3402 return 0;
3403
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003404 trace_xhci_discover_or_reset_device(slot_ctx);
3405
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003406 xhci_dbg(xhci, "Resetting device with slot ID %u\n", slot_id);
3407 /* Allocate the command structure that holds the struct completion.
3408 * Assume we're in process context, since the normal device reset
3409 * process has to wait for the device anyway. Storage devices are
3410 * reset as part of error handling, so use GFP_NOIO instead of
3411 * GFP_KERNEL.
3412 */
3413 reset_device_cmd = xhci_alloc_command(xhci, false, true, GFP_NOIO);
3414 if (!reset_device_cmd) {
3415 xhci_dbg(xhci, "Couldn't allocate command structure.\n");
3416 return -ENOMEM;
3417 }
3418
3419 /* Attempt to submit the Reset Device command to the command ring */
3420 spin_lock_irqsave(&xhci->lock, flags);
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08003421
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003422 ret = xhci_queue_reset_device(xhci, reset_device_cmd, slot_id);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003423 if (ret) {
3424 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003425 spin_unlock_irqrestore(&xhci->lock, flags);
3426 goto command_cleanup;
3427 }
3428 xhci_ring_cmd_db(xhci);
3429 spin_unlock_irqrestore(&xhci->lock, flags);
3430
3431 /* Wait for the Reset Device command to finish */
Mathias Nymanc311e392014-05-08 19:26:03 +03003432 wait_for_completion(reset_device_cmd->completion);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003433
3434 /* The Reset Device command can't fail, according to the 0.95/0.96 spec,
3435 * unless we tried to reset a slot ID that wasn't enabled,
3436 * or the device wasn't in the addressed or configured state.
3437 */
3438 ret = reset_device_cmd->status;
3439 switch (ret) {
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003440 case COMP_COMMAND_ABORTED:
Mathias Nyman604d02a2017-05-17 18:32:05 +03003441 case COMP_COMMAND_RING_STOPPED:
Mathias Nymanc311e392014-05-08 19:26:03 +03003442 xhci_warn(xhci, "Timeout waiting for reset device command\n");
3443 ret = -ETIME;
3444 goto command_cleanup;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003445 case COMP_SLOT_NOT_ENABLED_ERROR: /* 0.95 completion for bad slot ID */
3446 case COMP_CONTEXT_STATE_ERROR: /* 0.96 completion code for same thing */
Xenia Ragiadakou38a532a2013-07-02 17:49:25 +03003447 xhci_dbg(xhci, "Can't reset device (slot ID %u) in %s state\n",
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003448 slot_id,
3449 xhci_get_slot_state(xhci, virt_dev->out_ctx));
Xenia Ragiadakou38a532a2013-07-02 17:49:25 +03003450 xhci_dbg(xhci, "Not freeing device rings.\n");
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003451 /* Don't treat this as an error. May change my mind later. */
3452 ret = 0;
3453 goto command_cleanup;
3454 case COMP_SUCCESS:
3455 xhci_dbg(xhci, "Successful reset device command.\n");
3456 break;
3457 default:
3458 if (xhci_is_vendor_info_code(xhci, ret))
3459 break;
3460 xhci_warn(xhci, "Unknown completion code %u for "
3461 "reset device command.\n", ret);
3462 ret = -EINVAL;
3463 goto command_cleanup;
3464 }
3465
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003466 /* Free up host controller endpoint resources */
3467 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3468 spin_lock_irqsave(&xhci->lock, flags);
3469 /* Don't delete the default control endpoint resources */
3470 xhci_free_device_endpoint_resources(xhci, virt_dev, false);
3471 spin_unlock_irqrestore(&xhci->lock, flags);
3472 }
3473
Mathias Nymanc5628a22017-06-15 11:55:42 +03003474 /* Everything but endpoint 0 is disabled, so free the rings. */
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003475 last_freed_endpoint = 1;
Felipe Balbi98871e92017-01-23 14:20:04 +02003476 for (i = 1; i < 31; i++) {
Dmitry Torokhov2dea75d2011-04-12 23:06:28 -07003477 struct xhci_virt_ep *ep = &virt_dev->eps[i];
3478
3479 if (ep->ep_state & EP_HAS_STREAMS) {
Hans de Goededf613832013-10-04 00:29:45 +02003480 xhci_warn(xhci, "WARN: endpoint 0x%02x has streams on device reset, freeing streams.\n",
3481 xhci_get_endpoint_address(i));
Dmitry Torokhov2dea75d2011-04-12 23:06:28 -07003482 xhci_free_stream_info(xhci, ep->stream_info);
3483 ep->stream_info = NULL;
3484 ep->ep_state &= ~EP_HAS_STREAMS;
3485 }
3486
3487 if (ep->ring) {
Mathias Nymanc5628a22017-06-15 11:55:42 +03003488 xhci_free_endpoint_ring(xhci, virt_dev, i);
Dmitry Torokhov2dea75d2011-04-12 23:06:28 -07003489 last_freed_endpoint = i;
3490 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003491 if (!list_empty(&virt_dev->eps[i].bw_endpoint_list))
3492 xhci_drop_ep_from_interval_table(xhci,
3493 &virt_dev->eps[i].bw_info,
3494 virt_dev->bw_table,
3495 udev,
3496 &virt_dev->eps[i],
3497 virt_dev->tt_info);
Sarah Sharp9af5d712011-09-02 11:05:48 -07003498 xhci_clear_endpoint_bw_info(&virt_dev->eps[i].bw_info);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003499 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003500 /* If necessary, update the number of active TTs on this root port */
3501 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003502 ret = 0;
3503
3504command_cleanup:
3505 xhci_free_command(xhci, reset_device_cmd);
3506 return ret;
3507}
3508
3509/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003510 * At this point, the struct usb_device is about to go away, the device has
3511 * disconnected, and all traffic has been stopped and the endpoints have been
3512 * disabled. Free any HC data structures associated with that device.
3513 */
Lu Baolu39693842017-04-07 17:57:04 +03003514static void xhci_free_dev(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003515{
3516 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003517 struct xhci_virt_device *virt_dev;
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003518 struct xhci_slot_ctx *slot_ctx;
Andiry Xu64927732010-10-14 07:22:45 -07003519 int i, ret;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003520 struct xhci_command *command;
3521
3522 command = xhci_alloc_command(xhci, false, false, GFP_KERNEL);
3523 if (!command)
3524 return;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003525
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003526#ifndef CONFIG_USB_DEFAULT_PERSIST
3527 /*
3528 * We called pm_runtime_get_noresume when the device was attached.
3529 * Decrement the counter here to allow controller to runtime suspend
3530 * if no devices remain.
3531 */
3532 if (xhci->quirks & XHCI_RESET_ON_RESUME)
Sarah Sharpe7ecf062013-08-28 09:31:04 -07003533 pm_runtime_put_noidle(hcd->self.controller);
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003534#endif
3535
Andiry Xu64927732010-10-14 07:22:45 -07003536 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003537 /* If the host is halted due to driver unload, we still need to free the
3538 * device.
3539 */
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003540 if (ret <= 0 && ret != -ENODEV) {
3541 kfree(command);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003542 return;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003543 }
Andiry Xu64927732010-10-14 07:22:45 -07003544
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003545 virt_dev = xhci->devs[udev->slot_id];
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003546 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
3547 trace_xhci_free_dev(slot_ctx);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003548
3549 /* Stop any wayward timer functions (which may grab the lock) */
Felipe Balbi98871e92017-01-23 14:20:04 +02003550 for (i = 0; i < 31; i++) {
Mathias Nyman9983a5f2017-01-23 14:19:52 +02003551 virt_dev->eps[i].ep_state &= ~EP_STOP_CMD_PENDING;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003552 del_timer_sync(&virt_dev->eps[i].stop_cmd_timer);
3553 }
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003554
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003555 xhci_disable_slot(xhci, command, udev->slot_id);
3556 /*
3557 * Event command completion handler will free any data structures
3558 * associated with the slot. XXX Can free sleep?
3559 */
3560}
3561
3562int xhci_disable_slot(struct xhci_hcd *xhci, struct xhci_command *command,
3563 u32 slot_id)
3564{
3565 unsigned long flags;
3566 u32 state;
3567 int ret = 0;
3568 struct xhci_virt_device *virt_dev;
3569
3570 virt_dev = xhci->devs[slot_id];
3571 if (!virt_dev)
3572 return -EINVAL;
3573 if (!command)
3574 command = xhci_alloc_command(xhci, false, false, GFP_KERNEL);
3575 if (!command)
3576 return -ENOMEM;
3577
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003578 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003579 /* Don't disable the slot if the host controller is dead. */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02003580 state = readl(&xhci->op_regs->status);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003581 if (state == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING) ||
3582 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003583 xhci_free_virt_device(xhci, slot_id);
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003584 spin_unlock_irqrestore(&xhci->lock, flags);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003585 kfree(command);
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003586 return ret;
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003587 }
3588
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003589 ret = xhci_queue_slot_control(xhci, command, TRB_DISABLE_SLOT,
3590 slot_id);
3591 if (ret) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003592 spin_unlock_irqrestore(&xhci->lock, flags);
3593 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003594 return ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003595 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003596 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003597 spin_unlock_irqrestore(&xhci->lock, flags);
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003598 return ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003599}
3600
3601/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003602 * Checks if we have enough host controller resources for the default control
3603 * endpoint.
3604 *
3605 * Must be called with xhci->lock held.
3606 */
3607static int xhci_reserve_host_control_ep_resources(struct xhci_hcd *xhci)
3608{
3609 if (xhci->num_active_eps + 1 > xhci->limit_active_eps) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003610 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3611 "Not enough ep ctxs: "
3612 "%u active, need to add 1, limit is %u.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003613 xhci->num_active_eps, xhci->limit_active_eps);
3614 return -ENOMEM;
3615 }
3616 xhci->num_active_eps += 1;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003617 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3618 "Adding 1 ep ctx, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003619 xhci->num_active_eps);
3620 return 0;
3621}
3622
3623
3624/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003625 * Returns 0 if the xHC ran out of device slots, the Enable Slot command
3626 * timed out, or allocating memory failed. Returns 1 on success.
3627 */
3628int xhci_alloc_dev(struct usb_hcd *hcd, struct usb_device *udev)
3629{
3630 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003631 struct xhci_virt_device *vdev;
3632 struct xhci_slot_ctx *slot_ctx;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003633 unsigned long flags;
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003634 int ret, slot_id;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003635 struct xhci_command *command;
3636
Lu Baolu87e44f22016-11-11 15:13:30 +02003637 command = xhci_alloc_command(xhci, false, true, GFP_KERNEL);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003638 if (!command)
3639 return 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003640
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003641 /* xhci->slot_id and xhci->addr_dev are not thread-safe */
3642 mutex_lock(&xhci->mutex);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003643 spin_lock_irqsave(&xhci->lock, flags);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003644 ret = xhci_queue_slot_control(xhci, command, TRB_ENABLE_SLOT, 0);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003645 if (ret) {
3646 spin_unlock_irqrestore(&xhci->lock, flags);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003647 mutex_unlock(&xhci->mutex);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003648 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
Lu Baolu87e44f22016-11-11 15:13:30 +02003649 xhci_free_command(xhci, command);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003650 return 0;
3651 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003652 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003653 spin_unlock_irqrestore(&xhci->lock, flags);
3654
Mathias Nymanc311e392014-05-08 19:26:03 +03003655 wait_for_completion(command->completion);
Lu Baoluc2d3d492016-11-11 15:13:31 +02003656 slot_id = command->slot_id;
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003657 mutex_unlock(&xhci->mutex);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003658
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003659 if (!slot_id || command->status != COMP_SUCCESS) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003660 xhci_err(xhci, "Error while assigning device slot ID\n");
Sarah Sharpbe982032014-05-08 19:25:59 +03003661 xhci_err(xhci, "Max number of devices this xHCI host supports is %u.\n",
3662 HCS_MAX_SLOTS(
3663 readl(&xhci->cap_regs->hcs_params1)));
Lu Baolu87e44f22016-11-11 15:13:30 +02003664 xhci_free_command(xhci, command);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003665 return 0;
3666 }
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003667
3668 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3669 spin_lock_irqsave(&xhci->lock, flags);
3670 ret = xhci_reserve_host_control_ep_resources(xhci);
3671 if (ret) {
3672 spin_unlock_irqrestore(&xhci->lock, flags);
3673 xhci_warn(xhci, "Not enough host resources, "
3674 "active endpoint contexts = %u\n",
3675 xhci->num_active_eps);
3676 goto disable_slot;
3677 }
3678 spin_unlock_irqrestore(&xhci->lock, flags);
3679 }
3680 /* Use GFP_NOIO, since this function can be called from
Sarah Sharpa6d940d2010-12-28 13:08:42 -08003681 * xhci_discover_or_reset_device(), which may be called as part of
3682 * mass storage driver error handling.
3683 */
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003684 if (!xhci_alloc_virt_device(xhci, slot_id, udev, GFP_NOIO)) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003685 xhci_warn(xhci, "Could not allocate xHCI USB device data structures\n");
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003686 goto disable_slot;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003687 }
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003688 vdev = xhci->devs[slot_id];
3689 slot_ctx = xhci_get_slot_ctx(xhci, vdev->out_ctx);
3690 trace_xhci_alloc_dev(slot_ctx);
3691
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003692 udev->slot_id = slot_id;
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003693
3694#ifndef CONFIG_USB_DEFAULT_PERSIST
3695 /*
3696 * If resetting upon resume, we can't put the controller into runtime
3697 * suspend if there is a device attached.
3698 */
3699 if (xhci->quirks & XHCI_RESET_ON_RESUME)
Sarah Sharpe7ecf062013-08-28 09:31:04 -07003700 pm_runtime_get_noresume(hcd->self.controller);
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003701#endif
3702
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003703
Lu Baolu87e44f22016-11-11 15:13:30 +02003704 xhci_free_command(xhci, command);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003705 /* Is this a LS or FS device under a HS hub? */
3706 /* Hub or peripherial? */
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003707 return 1;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003708
3709disable_slot:
3710 /* Disable slot, if we can do it without mem alloc */
Lu Baolu87e44f22016-11-11 15:13:30 +02003711 kfree(command->completion);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003712 command->completion = NULL;
3713 command->status = 0;
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003714 return xhci_disable_slot(xhci, command, udev->slot_id);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003715}
3716
3717/*
Dan Williams48fc7db2013-12-05 17:07:27 -08003718 * Issue an Address Device command and optionally send a corresponding
3719 * SetAddress request to the device.
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003720 */
Dan Williams48fc7db2013-12-05 17:07:27 -08003721static int xhci_setup_device(struct usb_hcd *hcd, struct usb_device *udev,
3722 enum xhci_setup_dev setup)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003723{
Dan Williams6f8ffc02013-11-22 01:20:01 -08003724 const char *act = setup == SETUP_CONTEXT_ONLY ? "context" : "address";
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003725 unsigned long flags;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003726 struct xhci_virt_device *virt_dev;
3727 int ret = 0;
3728 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
John Yound115b042009-07-27 12:05:15 -07003729 struct xhci_slot_ctx *slot_ctx;
3730 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8e595a52009-07-27 12:03:31 -07003731 u64 temp_64;
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003732 struct xhci_command *command = NULL;
3733
3734 mutex_lock(&xhci->mutex);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003735
Lu Baolu90797ae2017-01-03 18:28:44 +02003736 if (xhci->xhc_state) { /* dying, removing or halted */
3737 ret = -ESHUTDOWN;
Roger Quadros448116b2015-09-21 17:46:15 +03003738 goto out;
Lu Baolu90797ae2017-01-03 18:28:44 +02003739 }
Roger Quadros448116b2015-09-21 17:46:15 +03003740
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003741 if (!udev->slot_id) {
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003742 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3743 "Bad Slot ID %d", udev->slot_id);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003744 ret = -EINVAL;
3745 goto out;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003746 }
3747
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003748 virt_dev = xhci->devs[udev->slot_id];
3749
Matt Evans7ed603e2011-03-29 13:40:56 +11003750 if (WARN_ON(!virt_dev)) {
3751 /*
3752 * In plug/unplug torture test with an NEC controller,
3753 * a zero-dereference was observed once due to virt_dev = 0.
3754 * Print useful debug rather than crash if it is observed again!
3755 */
3756 xhci_warn(xhci, "Virt dev invalid for slot_id 0x%x!\n",
3757 udev->slot_id);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003758 ret = -EINVAL;
3759 goto out;
Matt Evans7ed603e2011-03-29 13:40:56 +11003760 }
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003761 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
3762 trace_xhci_setup_device_slot(slot_ctx);
Matt Evans7ed603e2011-03-29 13:40:56 +11003763
Mathias Nymanf161ead2015-01-09 17:18:28 +02003764 if (setup == SETUP_CONTEXT_ONLY) {
Mathias Nymanf161ead2015-01-09 17:18:28 +02003765 if (GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state)) ==
3766 SLOT_STATE_DEFAULT) {
3767 xhci_dbg(xhci, "Slot already in default state\n");
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003768 goto out;
Mathias Nymanf161ead2015-01-09 17:18:28 +02003769 }
3770 }
3771
Lu Baolu87e44f22016-11-11 15:13:30 +02003772 command = xhci_alloc_command(xhci, false, true, GFP_KERNEL);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003773 if (!command) {
3774 ret = -ENOMEM;
3775 goto out;
3776 }
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003777
3778 command->in_ctx = virt_dev->in_ctx;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003779
Andiry Xuf0615c42010-10-14 07:22:48 -07003780 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Lin Wang4daf9df2015-01-09 16:06:31 +02003781 ctrl_ctx = xhci_get_input_control_ctx(virt_dev->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003782 if (!ctrl_ctx) {
3783 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3784 __func__);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003785 ret = -EINVAL;
3786 goto out;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003787 }
Andiry Xuf0615c42010-10-14 07:22:48 -07003788 /*
3789 * If this is the first Set Address since device plug-in or
3790 * virt_device realloaction after a resume with an xHCI power loss,
3791 * then set up the slot context.
3792 */
3793 if (!slot_ctx->dev_info)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003794 xhci_setup_addressable_virt_dev(xhci, udev);
Andiry Xuf0615c42010-10-14 07:22:48 -07003795 /* Otherwise, update the control endpoint ring enqueue pointer. */
Sarah Sharp2d1ee592010-07-09 17:08:54 +02003796 else
3797 xhci_copy_ep0_dequeue_into_input_ctx(xhci, udev);
Sarah Sharpd31c2852011-11-03 13:06:08 -07003798 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG | EP0_FLAG);
3799 ctrl_ctx->drop_flags = 0;
3800
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003801 trace_xhci_address_ctx(xhci, virt_dev->in_ctx,
Xenia Ragiadakou0c052aa2013-11-15 03:18:07 +02003802 le32_to_cpu(slot_ctx->dev_info) >> 27);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003803
Sarah Sharpf88ba782009-05-14 11:44:22 -07003804 spin_lock_irqsave(&xhci->lock, flags);
Felipe Balbia711ede2017-01-23 14:20:23 +02003805 trace_xhci_setup_device(virt_dev);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003806 ret = xhci_queue_address_device(xhci, command, virt_dev->in_ctx->dma,
Dan Williams48fc7db2013-12-05 17:07:27 -08003807 udev->slot_id, setup);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003808 if (ret) {
3809 spin_unlock_irqrestore(&xhci->lock, flags);
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003810 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3811 "FIXME: allocate a command ring segment");
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003812 goto out;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003813 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003814 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003815 spin_unlock_irqrestore(&xhci->lock, flags);
3816
3817 /* ctrl tx can take up to 5 sec; XXX: need more time for xHC? */
Mathias Nymanc311e392014-05-08 19:26:03 +03003818 wait_for_completion(command->completion);
3819
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003820 /* FIXME: From section 4.3.4: "Software shall be responsible for timing
3821 * the SetAddress() "recovery interval" required by USB and aborting the
3822 * command on a timeout.
3823 */
Mathias Nyman9ea18332014-05-08 19:26:02 +03003824 switch (command->status) {
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003825 case COMP_COMMAND_ABORTED:
Mathias Nyman604d02a2017-05-17 18:32:05 +03003826 case COMP_COMMAND_RING_STOPPED:
Mathias Nymanc311e392014-05-08 19:26:03 +03003827 xhci_warn(xhci, "Timeout while waiting for setup device command\n");
3828 ret = -ETIME;
3829 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003830 case COMP_CONTEXT_STATE_ERROR:
3831 case COMP_SLOT_NOT_ENABLED_ERROR:
Dan Williams6f8ffc02013-11-22 01:20:01 -08003832 xhci_err(xhci, "Setup ERROR: setup %s command for slot %d.\n",
3833 act, udev->slot_id);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003834 ret = -EINVAL;
3835 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003836 case COMP_USB_TRANSACTION_ERROR:
Dan Williams6f8ffc02013-11-22 01:20:01 -08003837 dev_warn(&udev->dev, "Device not responding to setup %s.\n", act);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003838 ret = -EPROTO;
3839 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003840 case COMP_INCOMPATIBLE_DEVICE_ERROR:
Dan Williams6f8ffc02013-11-22 01:20:01 -08003841 dev_warn(&udev->dev,
3842 "ERROR: Incompatible device for setup %s command\n", act);
Alex Hef6ba6fe2011-06-08 18:34:06 +08003843 ret = -ENODEV;
3844 break;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003845 case COMP_SUCCESS:
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003846 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
Dan Williams6f8ffc02013-11-22 01:20:01 -08003847 "Successful setup %s command", act);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003848 break;
3849 default:
Dan Williams6f8ffc02013-11-22 01:20:01 -08003850 xhci_err(xhci,
3851 "ERROR: unexpected setup %s command completion code 0x%x.\n",
Mathias Nyman9ea18332014-05-08 19:26:02 +03003852 act, command->status);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003853 trace_xhci_address_ctx(xhci, virt_dev->out_ctx, 1);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003854 ret = -EINVAL;
3855 break;
3856 }
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003857 if (ret)
3858 goto out;
Sarah Sharpf7b2e402014-01-30 13:27:49 -08003859 temp_64 = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003860 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3861 "Op regs DCBAA ptr = %#016llx", temp_64);
3862 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3863 "Slot ID %d dcbaa entry @%p = %#016llx",
3864 udev->slot_id,
3865 &xhci->dcbaa->dev_context_ptrs[udev->slot_id],
3866 (unsigned long long)
3867 le64_to_cpu(xhci->dcbaa->dev_context_ptrs[udev->slot_id]));
3868 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3869 "Output Context DMA address = %#08llx",
John Yound115b042009-07-27 12:05:15 -07003870 (unsigned long long)virt_dev->out_ctx->dma);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003871 trace_xhci_address_ctx(xhci, virt_dev->in_ctx,
Xenia Ragiadakou0c052aa2013-11-15 03:18:07 +02003872 le32_to_cpu(slot_ctx->dev_info) >> 27);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003873 /*
3874 * USB core uses address 1 for the roothubs, so we add one to the
3875 * address given back to us by the HC.
3876 */
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003877 trace_xhci_address_ctx(xhci, virt_dev->out_ctx,
Xenia Ragiadakou0c052aa2013-11-15 03:18:07 +02003878 le32_to_cpu(slot_ctx->dev_info) >> 27);
Sarah Sharpf94e01862009-04-27 19:58:38 -07003879 /* Zero the input context control for later use */
John Yound115b042009-07-27 12:05:15 -07003880 ctrl_ctx->add_flags = 0;
3881 ctrl_ctx->drop_flags = 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003882
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003883 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
Dan Williamsa2cdc342013-10-16 12:25:44 -07003884 "Internal device address = %d",
3885 le32_to_cpu(slot_ctx->dev_state) & DEV_ADDR_MASK);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003886out:
3887 mutex_unlock(&xhci->mutex);
Lu Baolu87e44f22016-11-11 15:13:30 +02003888 if (command) {
3889 kfree(command->completion);
3890 kfree(command);
3891 }
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003892 return ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003893}
3894
Lu Baolu39693842017-04-07 17:57:04 +03003895static int xhci_address_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_ADDRESS);
3898}
3899
Lu Baolu39693842017-04-07 17:57:04 +03003900static int xhci_enable_device(struct usb_hcd *hcd, struct usb_device *udev)
Dan Williams48fc7db2013-12-05 17:07:27 -08003901{
3902 return xhci_setup_device(hcd, udev, SETUP_CONTEXT_ONLY);
3903}
3904
Lan Tianyu3f5eb142013-03-19 16:48:12 +08003905/*
3906 * Transfer the port index into real index in the HW port status
3907 * registers. Caculate offset between the port's PORTSC register
3908 * and port status base. Divide the number of per port register
3909 * to get the real index. The raw port number bases 1.
3910 */
3911int xhci_find_raw_port_number(struct usb_hcd *hcd, int port1)
3912{
3913 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3914 __le32 __iomem *base_addr = &xhci->op_regs->port_status_base;
3915 __le32 __iomem *addr;
3916 int raw_port;
3917
Mathias Nymanb50107b2015-10-01 18:40:38 +03003918 if (hcd->speed < HCD_USB3)
Lan Tianyu3f5eb142013-03-19 16:48:12 +08003919 addr = xhci->usb2_ports[port1 - 1];
3920 else
3921 addr = xhci->usb3_ports[port1 - 1];
3922
3923 raw_port = (addr - base_addr)/NUM_PORT_REGS + 1;
3924 return raw_port;
3925}
3926
Mathias Nymana558ccd2013-05-23 17:14:30 +03003927/*
3928 * Issue an Evaluate Context command to change the Maximum Exit Latency in the
3929 * slot context. If that succeeds, store the new MEL in the xhci_virt_device.
3930 */
Olof Johanssond5c82fe2013-07-23 11:58:20 -07003931static int __maybe_unused xhci_change_max_exit_latency(struct xhci_hcd *xhci,
Mathias Nymana558ccd2013-05-23 17:14:30 +03003932 struct usb_device *udev, u16 max_exit_latency)
3933{
3934 struct xhci_virt_device *virt_dev;
3935 struct xhci_command *command;
3936 struct xhci_input_control_ctx *ctrl_ctx;
3937 struct xhci_slot_ctx *slot_ctx;
3938 unsigned long flags;
3939 int ret;
3940
3941 spin_lock_irqsave(&xhci->lock, flags);
Mathias Nyman96044692014-09-11 13:55:50 +03003942
3943 virt_dev = xhci->devs[udev->slot_id];
3944
3945 /*
3946 * virt_dev might not exists yet if xHC resumed from hibernate (S4) and
3947 * xHC was re-initialized. Exit latency will be set later after
3948 * hub_port_finish_reset() is done and xhci->devs[] are re-allocated
3949 */
3950
3951 if (!virt_dev || max_exit_latency == virt_dev->current_mel) {
Mathias Nymana558ccd2013-05-23 17:14:30 +03003952 spin_unlock_irqrestore(&xhci->lock, flags);
3953 return 0;
3954 }
3955
3956 /* Attempt to issue an Evaluate Context command to change the MEL. */
Mathias Nymana558ccd2013-05-23 17:14:30 +03003957 command = xhci->lpm_command;
Lin Wang4daf9df2015-01-09 16:06:31 +02003958 ctrl_ctx = xhci_get_input_control_ctx(command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003959 if (!ctrl_ctx) {
3960 spin_unlock_irqrestore(&xhci->lock, flags);
3961 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3962 __func__);
3963 return -ENOMEM;
3964 }
3965
Mathias Nymana558ccd2013-05-23 17:14:30 +03003966 xhci_slot_copy(xhci, command->in_ctx, virt_dev->out_ctx);
3967 spin_unlock_irqrestore(&xhci->lock, flags);
3968
Mathias Nymana558ccd2013-05-23 17:14:30 +03003969 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
3970 slot_ctx = xhci_get_slot_ctx(xhci, command->in_ctx);
3971 slot_ctx->dev_info2 &= cpu_to_le32(~((u32) MAX_EXIT));
3972 slot_ctx->dev_info2 |= cpu_to_le32(max_exit_latency);
Mathias Nyman4801d4ea2014-11-27 18:19:15 +02003973 slot_ctx->dev_state = 0;
Mathias Nymana558ccd2013-05-23 17:14:30 +03003974
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03003975 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
3976 "Set up evaluate context for LPM MEL change.");
Mathias Nymana558ccd2013-05-23 17:14:30 +03003977
3978 /* Issue and wait for the evaluate context command. */
3979 ret = xhci_configure_endpoint(xhci, udev, command,
3980 true, true);
Mathias Nymana558ccd2013-05-23 17:14:30 +03003981
3982 if (!ret) {
3983 spin_lock_irqsave(&xhci->lock, flags);
3984 virt_dev->current_mel = max_exit_latency;
3985 spin_unlock_irqrestore(&xhci->lock, flags);
3986 }
3987 return ret;
3988}
3989
Rafael J. Wysockiceb6c9c2014-11-29 23:47:05 +01003990#ifdef CONFIG_PM
Andiry Xu95743232011-09-23 14:19:51 -07003991
3992/* BESL to HIRD Encoding array for USB2 LPM */
3993static int xhci_besl_encoding[16] = {125, 150, 200, 300, 400, 500, 1000, 2000,
3994 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000};
3995
3996/* Calculate HIRD/BESL for USB2 PORTPMSC*/
Andiry Xuf99298b2011-12-12 16:45:28 +08003997static int xhci_calculate_hird_besl(struct xhci_hcd *xhci,
3998 struct usb_device *udev)
Andiry Xu95743232011-09-23 14:19:51 -07003999{
Andiry Xuf99298b2011-12-12 16:45:28 +08004000 int u2del, besl, besl_host;
4001 int besl_device = 0;
4002 u32 field;
Andiry Xu95743232011-09-23 14:19:51 -07004003
Andiry Xuf99298b2011-12-12 16:45:28 +08004004 u2del = HCS_U2_LATENCY(xhci->hcs_params3);
4005 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
4006
4007 if (field & USB_BESL_SUPPORT) {
4008 for (besl_host = 0; besl_host < 16; besl_host++) {
4009 if (xhci_besl_encoding[besl_host] >= u2del)
Andiry Xu95743232011-09-23 14:19:51 -07004010 break;
4011 }
Andiry Xuf99298b2011-12-12 16:45:28 +08004012 /* Use baseline BESL value as default */
4013 if (field & USB_BESL_BASELINE_VALID)
4014 besl_device = USB_GET_BESL_BASELINE(field);
4015 else if (field & USB_BESL_DEEP_VALID)
4016 besl_device = USB_GET_BESL_DEEP(field);
Andiry Xu95743232011-09-23 14:19:51 -07004017 } else {
4018 if (u2del <= 50)
Andiry Xuf99298b2011-12-12 16:45:28 +08004019 besl_host = 0;
Andiry Xu95743232011-09-23 14:19:51 -07004020 else
Andiry Xuf99298b2011-12-12 16:45:28 +08004021 besl_host = (u2del - 51) / 75 + 1;
Andiry Xu95743232011-09-23 14:19:51 -07004022 }
4023
Andiry Xuf99298b2011-12-12 16:45:28 +08004024 besl = besl_host + besl_device;
4025 if (besl > 15)
4026 besl = 15;
4027
4028 return besl;
Andiry Xu95743232011-09-23 14:19:51 -07004029}
4030
Mathias Nymana558ccd2013-05-23 17:14:30 +03004031/* Calculate BESLD, L1 timeout and HIRDM for USB2 PORTHLPMC */
4032static int xhci_calculate_usb2_hw_lpm_params(struct usb_device *udev)
4033{
4034 u32 field;
4035 int l1;
4036 int besld = 0;
4037 int hirdm = 0;
4038
4039 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
4040
4041 /* xHCI l1 is set in steps of 256us, xHCI 1.0 section 5.4.11.2 */
Mathias Nyman17f34862013-05-23 17:14:31 +03004042 l1 = udev->l1_params.timeout / 256;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004043
4044 /* device has preferred BESLD */
4045 if (field & USB_BESL_DEEP_VALID) {
4046 besld = USB_GET_BESL_DEEP(field);
4047 hirdm = 1;
4048 }
4049
4050 return PORT_BESLD(besld) | PORT_L1_TIMEOUT(l1) | PORT_HIRDM(hirdm);
4051}
4052
Lu Baolu39693842017-04-07 17:57:04 +03004053static int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
Andiry Xu65580b432011-09-23 14:19:52 -07004054 struct usb_device *udev, int enable)
4055{
4056 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4057 __le32 __iomem **port_array;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004058 __le32 __iomem *pm_addr, *hlpm_addr;
4059 u32 pm_val, hlpm_val, field;
Andiry Xu65580b432011-09-23 14:19:52 -07004060 unsigned int port_num;
4061 unsigned long flags;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004062 int hird, exit_latency;
4063 int ret;
Andiry Xu65580b432011-09-23 14:19:52 -07004064
Mathias Nymanb50107b2015-10-01 18:40:38 +03004065 if (hcd->speed >= HCD_USB3 || !xhci->hw_lpm_support ||
Andiry Xu65580b432011-09-23 14:19:52 -07004066 !udev->lpm_capable)
4067 return -EPERM;
4068
4069 if (!udev->parent || udev->parent->parent ||
4070 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
4071 return -EPERM;
4072
4073 if (udev->usb2_hw_lpm_capable != 1)
4074 return -EPERM;
4075
4076 spin_lock_irqsave(&xhci->lock, flags);
4077
4078 port_array = xhci->usb2_ports;
4079 port_num = udev->portnum - 1;
Mathias Nymanb6e76372013-05-23 17:14:29 +03004080 pm_addr = port_array[port_num] + PORTPMSC;
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004081 pm_val = readl(pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004082 hlpm_addr = port_array[port_num] + PORTHLPMC;
4083 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
Andiry Xu65580b432011-09-23 14:19:52 -07004084
4085 xhci_dbg(xhci, "%s port %d USB2 hardware LPM\n",
Lin Wang654a55d2014-05-08 19:25:54 +03004086 enable ? "enable" : "disable", port_num + 1);
Andiry Xu65580b432011-09-23 14:19:52 -07004087
Andiry Xu65580b432011-09-23 14:19:52 -07004088 if (enable) {
Mathias Nymana558ccd2013-05-23 17:14:30 +03004089 /* Host supports BESL timeout instead of HIRD */
4090 if (udev->usb2_hw_lpm_besl_capable) {
4091 /* if device doesn't have a preferred BESL value use a
4092 * default one which works with mixed HIRD and BESL
4093 * systems. See XHCI_DEFAULT_BESL definition in xhci.h
4094 */
4095 if ((field & USB_BESL_SUPPORT) &&
4096 (field & USB_BESL_BASELINE_VALID))
4097 hird = USB_GET_BESL_BASELINE(field);
4098 else
Mathias Nyman17f34862013-05-23 17:14:31 +03004099 hird = udev->l1_params.besl;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004100
4101 exit_latency = xhci_besl_encoding[hird];
4102 spin_unlock_irqrestore(&xhci->lock, flags);
4103
4104 /* USB 3.0 code dedicate one xhci->lpm_command->in_ctx
4105 * input context for link powermanagement evaluate
4106 * context commands. It is protected by hcd->bandwidth
4107 * mutex and is shared by all devices. We need to set
4108 * the max ext latency in USB 2 BESL LPM as well, so
4109 * use the same mutex and xhci_change_max_exit_latency()
4110 */
4111 mutex_lock(hcd->bandwidth_mutex);
4112 ret = xhci_change_max_exit_latency(xhci, udev,
4113 exit_latency);
4114 mutex_unlock(hcd->bandwidth_mutex);
4115
4116 if (ret < 0)
4117 return ret;
4118 spin_lock_irqsave(&xhci->lock, flags);
4119
4120 hlpm_val = xhci_calculate_usb2_hw_lpm_params(udev);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02004121 writel(hlpm_val, hlpm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004122 /* flush write */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004123 readl(hlpm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004124 } else {
4125 hird = xhci_calculate_hird_besl(xhci, udev);
4126 }
4127
4128 pm_val &= ~PORT_HIRD_MASK;
Sarah Sharp58e21f72013-10-07 17:17:20 -07004129 pm_val |= PORT_HIRD(hird) | PORT_RWE | PORT_L1DS(udev->slot_id);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02004130 writel(pm_val, pm_addr);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004131 pm_val = readl(pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004132 pm_val |= PORT_HLE;
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);
Andiry Xu65580b432011-09-23 14:19:52 -07004136 } else {
Sarah Sharp58e21f72013-10-07 17:17:20 -07004137 pm_val &= ~(PORT_HLE | PORT_RWE | PORT_HIRD_MASK | PORT_L1DS_MASK);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02004138 writel(pm_val, pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004139 /* flush write */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004140 readl(pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004141 if (udev->usb2_hw_lpm_besl_capable) {
4142 spin_unlock_irqrestore(&xhci->lock, flags);
4143 mutex_lock(hcd->bandwidth_mutex);
4144 xhci_change_max_exit_latency(xhci, udev, 0);
4145 mutex_unlock(hcd->bandwidth_mutex);
4146 return 0;
4147 }
Andiry Xu65580b432011-09-23 14:19:52 -07004148 }
4149
4150 spin_unlock_irqrestore(&xhci->lock, flags);
4151 return 0;
4152}
4153
Mathias Nymanb630d4b2013-05-23 17:14:28 +03004154/* check if a usb2 port supports a given extened capability protocol
4155 * only USB2 ports extended protocol capability values are cached.
4156 * Return 1 if capability is supported
4157 */
4158static int xhci_check_usb2_port_capability(struct xhci_hcd *xhci, int port,
4159 unsigned capability)
4160{
4161 u32 port_offset, port_count;
4162 int i;
4163
4164 for (i = 0; i < xhci->num_ext_caps; i++) {
4165 if (xhci->ext_caps[i] & capability) {
4166 /* port offsets starts at 1 */
4167 port_offset = XHCI_EXT_PORT_OFF(xhci->ext_caps[i]) - 1;
4168 port_count = XHCI_EXT_PORT_COUNT(xhci->ext_caps[i]);
4169 if (port >= port_offset &&
4170 port < port_offset + port_count)
4171 return 1;
4172 }
4173 }
4174 return 0;
4175}
4176
Lu Baolu39693842017-04-07 17:57:04 +03004177static int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004178{
4179 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Mathias Nymanb630d4b2013-05-23 17:14:28 +03004180 int portnum = udev->portnum - 1;
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004181
Mathias Nymanb50107b2015-10-01 18:40:38 +03004182 if (hcd->speed >= HCD_USB3 || !xhci->sw_lpm_support ||
Sarah Sharpde68bab2013-09-30 17:26:28 +03004183 !udev->lpm_capable)
4184 return 0;
4185
4186 /* we only support lpm for non-hub device connected to root hub yet */
4187 if (!udev->parent || udev->parent->parent ||
4188 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
4189 return 0;
4190
4191 if (xhci->hw_lpm_support == 1 &&
4192 xhci_check_usb2_port_capability(
4193 xhci, portnum, XHCI_HLC)) {
4194 udev->usb2_hw_lpm_capable = 1;
4195 udev->l1_params.timeout = XHCI_L1_TIMEOUT;
4196 udev->l1_params.besl = XHCI_DEFAULT_BESL;
4197 if (xhci_check_usb2_port_capability(xhci, portnum,
4198 XHCI_BLC))
4199 udev->usb2_hw_lpm_besl_capable = 1;
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004200 }
4201
4202 return 0;
4203}
4204
Sarah Sharp3b3db022012-05-09 10:55:03 -07004205/*---------------------- USB 3.0 Link PM functions ------------------------*/
4206
Sarah Sharpe3567d22012-05-16 13:36:24 -07004207/* Service interval in nanoseconds = 2^(bInterval - 1) * 125us * 1000ns / 1us */
4208static unsigned long long xhci_service_interval_to_ns(
4209 struct usb_endpoint_descriptor *desc)
4210{
Oliver Neukum16b45fd2012-10-17 10:16:16 +02004211 return (1ULL << (desc->bInterval - 1)) * 125 * 1000;
Sarah Sharpe3567d22012-05-16 13:36:24 -07004212}
4213
Sarah Sharp3b3db022012-05-09 10:55:03 -07004214static u16 xhci_get_timeout_no_hub_lpm(struct usb_device *udev,
4215 enum usb3_link_state state)
4216{
4217 unsigned long long sel;
4218 unsigned long long pel;
4219 unsigned int max_sel_pel;
4220 char *state_name;
4221
4222 switch (state) {
4223 case USB3_LPM_U1:
4224 /* Convert SEL and PEL stored in nanoseconds to microseconds */
4225 sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
4226 pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
4227 max_sel_pel = USB3_LPM_MAX_U1_SEL_PEL;
4228 state_name = "U1";
4229 break;
4230 case USB3_LPM_U2:
4231 sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
4232 pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
4233 max_sel_pel = USB3_LPM_MAX_U2_SEL_PEL;
4234 state_name = "U2";
4235 break;
4236 default:
4237 dev_warn(&udev->dev, "%s: Can't get timeout for non-U1 or U2 state.\n",
4238 __func__);
Sarah Sharpe25e62a2012-06-07 11:10:32 -07004239 return USB3_LPM_DISABLED;
Sarah Sharp3b3db022012-05-09 10:55:03 -07004240 }
4241
4242 if (sel <= max_sel_pel && pel <= max_sel_pel)
4243 return USB3_LPM_DEVICE_INITIATED;
4244
4245 if (sel > max_sel_pel)
4246 dev_dbg(&udev->dev, "Device-initiated %s disabled "
4247 "due to long SEL %llu ms\n",
4248 state_name, sel);
4249 else
4250 dev_dbg(&udev->dev, "Device-initiated %s disabled "
Joe Perches03e64e92013-07-16 19:25:59 -07004251 "due to long PEL %llu ms\n",
Sarah Sharp3b3db022012-05-09 10:55:03 -07004252 state_name, pel);
4253 return USB3_LPM_DISABLED;
4254}
4255
Pratyush Anand9502c462014-07-04 17:01:23 +03004256/* The U1 timeout should be the maximum of the following values:
Sarah Sharpe3567d22012-05-16 13:36:24 -07004257 * - For control endpoints, U1 system exit latency (SEL) * 3
4258 * - For bulk endpoints, U1 SEL * 5
4259 * - For interrupt endpoints:
4260 * - Notification EPs, U1 SEL * 3
4261 * - Periodic EPs, max(105% of bInterval, U1 SEL * 2)
4262 * - For isochronous endpoints, max(105% of bInterval, U1 SEL * 2)
4263 */
Pratyush Anand9502c462014-07-04 17:01:23 +03004264static unsigned long long xhci_calculate_intel_u1_timeout(
4265 struct usb_device *udev,
Sarah Sharpe3567d22012-05-16 13:36:24 -07004266 struct usb_endpoint_descriptor *desc)
4267{
4268 unsigned long long timeout_ns;
4269 int ep_type;
4270 int intr_type;
4271
4272 ep_type = usb_endpoint_type(desc);
4273 switch (ep_type) {
4274 case USB_ENDPOINT_XFER_CONTROL:
4275 timeout_ns = udev->u1_params.sel * 3;
4276 break;
4277 case USB_ENDPOINT_XFER_BULK:
4278 timeout_ns = udev->u1_params.sel * 5;
4279 break;
4280 case USB_ENDPOINT_XFER_INT:
4281 intr_type = usb_endpoint_interrupt_type(desc);
4282 if (intr_type == USB_ENDPOINT_INTR_NOTIFICATION) {
4283 timeout_ns = udev->u1_params.sel * 3;
4284 break;
4285 }
4286 /* Otherwise the calculation is the same as isoc eps */
4287 case USB_ENDPOINT_XFER_ISOC:
4288 timeout_ns = xhci_service_interval_to_ns(desc);
Sarah Sharpc88db162012-05-21 08:44:33 -07004289 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns * 105, 100);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004290 if (timeout_ns < udev->u1_params.sel * 2)
4291 timeout_ns = udev->u1_params.sel * 2;
4292 break;
4293 default:
4294 return 0;
4295 }
4296
Pratyush Anand9502c462014-07-04 17:01:23 +03004297 return timeout_ns;
4298}
4299
4300/* Returns the hub-encoded U1 timeout value. */
4301static u16 xhci_calculate_u1_timeout(struct xhci_hcd *xhci,
4302 struct usb_device *udev,
4303 struct usb_endpoint_descriptor *desc)
4304{
4305 unsigned long long timeout_ns;
4306
4307 if (xhci->quirks & XHCI_INTEL_HOST)
4308 timeout_ns = xhci_calculate_intel_u1_timeout(udev, desc);
4309 else
4310 timeout_ns = udev->u1_params.sel;
4311
4312 /* The U1 timeout is encoded in 1us intervals.
4313 * Don't return a timeout of zero, because that's USB3_LPM_DISABLED.
4314 */
Sarah Sharpe3567d22012-05-16 13:36:24 -07004315 if (timeout_ns == USB3_LPM_DISABLED)
Pratyush Anand9502c462014-07-04 17:01:23 +03004316 timeout_ns = 1;
4317 else
4318 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 1000);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004319
4320 /* If the necessary timeout value is bigger than what we can set in the
4321 * USB 3.0 hub, we have to disable hub-initiated U1.
4322 */
4323 if (timeout_ns <= USB3_LPM_U1_MAX_TIMEOUT)
4324 return timeout_ns;
4325 dev_dbg(&udev->dev, "Hub-initiated U1 disabled "
4326 "due to long timeout %llu ms\n", timeout_ns);
4327 return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U1);
4328}
4329
Pratyush Anand9502c462014-07-04 17:01:23 +03004330/* The U2 timeout should be the maximum of:
Sarah Sharpe3567d22012-05-16 13:36:24 -07004331 * - 10 ms (to avoid the bandwidth impact on the scheduler)
4332 * - largest bInterval of any active periodic endpoint (to avoid going
4333 * into lower power link states between intervals).
4334 * - the U2 Exit Latency of the device
4335 */
Pratyush Anand9502c462014-07-04 17:01:23 +03004336static unsigned long long xhci_calculate_intel_u2_timeout(
4337 struct usb_device *udev,
Sarah Sharpe3567d22012-05-16 13:36:24 -07004338 struct usb_endpoint_descriptor *desc)
4339{
4340 unsigned long long timeout_ns;
4341 unsigned long long u2_del_ns;
4342
4343 timeout_ns = 10 * 1000 * 1000;
4344
4345 if ((usb_endpoint_xfer_int(desc) || usb_endpoint_xfer_isoc(desc)) &&
4346 (xhci_service_interval_to_ns(desc) > timeout_ns))
4347 timeout_ns = xhci_service_interval_to_ns(desc);
4348
Oliver Neukum966e7a82012-10-17 12:17:50 +02004349 u2_del_ns = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat) * 1000ULL;
Sarah Sharpe3567d22012-05-16 13:36:24 -07004350 if (u2_del_ns > timeout_ns)
4351 timeout_ns = u2_del_ns;
4352
Pratyush Anand9502c462014-07-04 17:01:23 +03004353 return timeout_ns;
4354}
4355
4356/* Returns the hub-encoded U2 timeout value. */
4357static u16 xhci_calculate_u2_timeout(struct xhci_hcd *xhci,
4358 struct usb_device *udev,
4359 struct usb_endpoint_descriptor *desc)
4360{
4361 unsigned long long timeout_ns;
4362
4363 if (xhci->quirks & XHCI_INTEL_HOST)
4364 timeout_ns = xhci_calculate_intel_u2_timeout(udev, desc);
4365 else
4366 timeout_ns = udev->u2_params.sel;
4367
Sarah Sharpe3567d22012-05-16 13:36:24 -07004368 /* The U2 timeout is encoded in 256us intervals */
Sarah Sharpc88db162012-05-21 08:44:33 -07004369 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 256 * 1000);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004370 /* If the necessary timeout value is bigger than what we can set in the
4371 * USB 3.0 hub, we have to disable hub-initiated U2.
4372 */
4373 if (timeout_ns <= USB3_LPM_U2_MAX_TIMEOUT)
4374 return timeout_ns;
4375 dev_dbg(&udev->dev, "Hub-initiated U2 disabled "
4376 "due to long timeout %llu ms\n", timeout_ns);
4377 return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U2);
4378}
4379
Sarah Sharp3b3db022012-05-09 10:55:03 -07004380static u16 xhci_call_host_update_timeout_for_endpoint(struct xhci_hcd *xhci,
4381 struct usb_device *udev,
4382 struct usb_endpoint_descriptor *desc,
4383 enum usb3_link_state state,
4384 u16 *timeout)
4385{
Pratyush Anand9502c462014-07-04 17:01:23 +03004386 if (state == USB3_LPM_U1)
4387 return xhci_calculate_u1_timeout(xhci, udev, desc);
4388 else if (state == USB3_LPM_U2)
4389 return xhci_calculate_u2_timeout(xhci, udev, desc);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004390
Sarah Sharp3b3db022012-05-09 10:55:03 -07004391 return USB3_LPM_DISABLED;
4392}
4393
4394static int xhci_update_timeout_for_endpoint(struct xhci_hcd *xhci,
4395 struct usb_device *udev,
4396 struct usb_endpoint_descriptor *desc,
4397 enum usb3_link_state state,
4398 u16 *timeout)
4399{
4400 u16 alt_timeout;
4401
4402 alt_timeout = xhci_call_host_update_timeout_for_endpoint(xhci, udev,
4403 desc, state, timeout);
4404
4405 /* If we found we can't enable hub-initiated LPM, or
4406 * the U1 or U2 exit latency was too high to allow
4407 * device-initiated LPM as well, just stop searching.
4408 */
4409 if (alt_timeout == USB3_LPM_DISABLED ||
4410 alt_timeout == USB3_LPM_DEVICE_INITIATED) {
4411 *timeout = alt_timeout;
4412 return -E2BIG;
4413 }
4414 if (alt_timeout > *timeout)
4415 *timeout = alt_timeout;
4416 return 0;
4417}
4418
4419static int xhci_update_timeout_for_interface(struct xhci_hcd *xhci,
4420 struct usb_device *udev,
4421 struct usb_host_interface *alt,
4422 enum usb3_link_state state,
4423 u16 *timeout)
4424{
4425 int j;
4426
4427 for (j = 0; j < alt->desc.bNumEndpoints; j++) {
4428 if (xhci_update_timeout_for_endpoint(xhci, udev,
4429 &alt->endpoint[j].desc, state, timeout))
4430 return -E2BIG;
4431 continue;
4432 }
4433 return 0;
4434}
4435
Sarah Sharpe3567d22012-05-16 13:36:24 -07004436static int xhci_check_intel_tier_policy(struct usb_device *udev,
4437 enum usb3_link_state state)
4438{
4439 struct usb_device *parent;
4440 unsigned int num_hubs;
4441
4442 if (state == USB3_LPM_U2)
4443 return 0;
4444
4445 /* Don't enable U1 if the device is on a 2nd tier hub or lower. */
4446 for (parent = udev->parent, num_hubs = 0; parent->parent;
4447 parent = parent->parent)
4448 num_hubs++;
4449
4450 if (num_hubs < 2)
4451 return 0;
4452
4453 dev_dbg(&udev->dev, "Disabling U1 link state for device"
4454 " below second-tier hub.\n");
4455 dev_dbg(&udev->dev, "Plug device into first-tier hub "
4456 "to decrease power consumption.\n");
4457 return -E2BIG;
4458}
4459
Sarah Sharp3b3db022012-05-09 10:55:03 -07004460static int xhci_check_tier_policy(struct xhci_hcd *xhci,
4461 struct usb_device *udev,
4462 enum usb3_link_state state)
4463{
Sarah Sharpe3567d22012-05-16 13:36:24 -07004464 if (xhci->quirks & XHCI_INTEL_HOST)
4465 return xhci_check_intel_tier_policy(udev, state);
Pratyush Anand9502c462014-07-04 17:01:23 +03004466 else
4467 return 0;
Sarah Sharp3b3db022012-05-09 10:55:03 -07004468}
4469
4470/* Returns the U1 or U2 timeout that should be enabled.
4471 * If the tier check or timeout setting functions return with a non-zero exit
4472 * code, that means the timeout value has been finalized and we shouldn't look
4473 * at any more endpoints.
4474 */
4475static u16 xhci_calculate_lpm_timeout(struct usb_hcd *hcd,
4476 struct usb_device *udev, enum usb3_link_state state)
4477{
4478 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4479 struct usb_host_config *config;
4480 char *state_name;
4481 int i;
4482 u16 timeout = USB3_LPM_DISABLED;
4483
4484 if (state == USB3_LPM_U1)
4485 state_name = "U1";
4486 else if (state == USB3_LPM_U2)
4487 state_name = "U2";
4488 else {
4489 dev_warn(&udev->dev, "Can't enable unknown link state %i\n",
4490 state);
4491 return timeout;
4492 }
4493
4494 if (xhci_check_tier_policy(xhci, udev, state) < 0)
4495 return timeout;
4496
4497 /* Gather some information about the currently installed configuration
4498 * and alternate interface settings.
4499 */
4500 if (xhci_update_timeout_for_endpoint(xhci, udev, &udev->ep0.desc,
4501 state, &timeout))
4502 return timeout;
4503
4504 config = udev->actconfig;
4505 if (!config)
4506 return timeout;
4507
Xenia Ragiadakou64ba4192013-08-26 23:29:46 +03004508 for (i = 0; i < config->desc.bNumInterfaces; i++) {
Sarah Sharp3b3db022012-05-09 10:55:03 -07004509 struct usb_driver *driver;
4510 struct usb_interface *intf = config->interface[i];
4511
4512 if (!intf)
4513 continue;
4514
4515 /* Check if any currently bound drivers want hub-initiated LPM
4516 * disabled.
4517 */
4518 if (intf->dev.driver) {
4519 driver = to_usb_driver(intf->dev.driver);
4520 if (driver && driver->disable_hub_initiated_lpm) {
4521 dev_dbg(&udev->dev, "Hub-initiated %s disabled "
4522 "at request of driver %s\n",
4523 state_name, driver->name);
4524 return xhci_get_timeout_no_hub_lpm(udev, state);
4525 }
4526 }
4527
4528 /* Not sure how this could happen... */
4529 if (!intf->cur_altsetting)
4530 continue;
4531
4532 if (xhci_update_timeout_for_interface(xhci, udev,
4533 intf->cur_altsetting,
4534 state, &timeout))
4535 return timeout;
4536 }
4537 return timeout;
4538}
4539
Sarah Sharp3b3db022012-05-09 10:55:03 -07004540static int calculate_max_exit_latency(struct usb_device *udev,
4541 enum usb3_link_state state_changed,
4542 u16 hub_encoded_timeout)
4543{
4544 unsigned long long u1_mel_us = 0;
4545 unsigned long long u2_mel_us = 0;
4546 unsigned long long mel_us = 0;
4547 bool disabling_u1;
4548 bool disabling_u2;
4549 bool enabling_u1;
4550 bool enabling_u2;
4551
4552 disabling_u1 = (state_changed == USB3_LPM_U1 &&
4553 hub_encoded_timeout == USB3_LPM_DISABLED);
4554 disabling_u2 = (state_changed == USB3_LPM_U2 &&
4555 hub_encoded_timeout == USB3_LPM_DISABLED);
4556
4557 enabling_u1 = (state_changed == USB3_LPM_U1 &&
4558 hub_encoded_timeout != USB3_LPM_DISABLED);
4559 enabling_u2 = (state_changed == USB3_LPM_U2 &&
4560 hub_encoded_timeout != USB3_LPM_DISABLED);
4561
4562 /* If U1 was already enabled and we're not disabling it,
4563 * or we're going to enable U1, account for the U1 max exit latency.
4564 */
4565 if ((udev->u1_params.timeout != USB3_LPM_DISABLED && !disabling_u1) ||
4566 enabling_u1)
4567 u1_mel_us = DIV_ROUND_UP(udev->u1_params.mel, 1000);
4568 if ((udev->u2_params.timeout != USB3_LPM_DISABLED && !disabling_u2) ||
4569 enabling_u2)
4570 u2_mel_us = DIV_ROUND_UP(udev->u2_params.mel, 1000);
4571
4572 if (u1_mel_us > u2_mel_us)
4573 mel_us = u1_mel_us;
4574 else
4575 mel_us = u2_mel_us;
4576 /* xHCI host controller max exit latency field is only 16 bits wide. */
4577 if (mel_us > MAX_EXIT) {
4578 dev_warn(&udev->dev, "Link PM max exit latency of %lluus "
4579 "is too big.\n", mel_us);
4580 return -E2BIG;
4581 }
4582 return mel_us;
4583}
4584
4585/* Returns the USB3 hub-encoded value for the U1/U2 timeout. */
Lu Baolu39693842017-04-07 17:57:04 +03004586static int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd,
Sarah Sharp3b3db022012-05-09 10:55:03 -07004587 struct usb_device *udev, enum usb3_link_state state)
4588{
4589 struct xhci_hcd *xhci;
4590 u16 hub_encoded_timeout;
4591 int mel;
4592 int ret;
4593
4594 xhci = hcd_to_xhci(hcd);
4595 /* The LPM timeout values are pretty host-controller specific, so don't
4596 * enable hub-initiated timeouts unless the vendor has provided
4597 * information about their timeout algorithm.
4598 */
4599 if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) ||
4600 !xhci->devs[udev->slot_id])
4601 return USB3_LPM_DISABLED;
4602
4603 hub_encoded_timeout = xhci_calculate_lpm_timeout(hcd, udev, state);
4604 mel = calculate_max_exit_latency(udev, state, hub_encoded_timeout);
4605 if (mel < 0) {
4606 /* Max Exit Latency is too big, disable LPM. */
4607 hub_encoded_timeout = USB3_LPM_DISABLED;
4608 mel = 0;
4609 }
4610
4611 ret = xhci_change_max_exit_latency(xhci, udev, mel);
4612 if (ret)
4613 return ret;
4614 return hub_encoded_timeout;
4615}
4616
Lu Baolu39693842017-04-07 17:57:04 +03004617static int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
Sarah Sharp3b3db022012-05-09 10:55:03 -07004618 struct usb_device *udev, enum usb3_link_state state)
4619{
4620 struct xhci_hcd *xhci;
4621 u16 mel;
Sarah Sharp3b3db022012-05-09 10:55:03 -07004622
4623 xhci = hcd_to_xhci(hcd);
4624 if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) ||
4625 !xhci->devs[udev->slot_id])
4626 return 0;
4627
4628 mel = calculate_max_exit_latency(udev, state, USB3_LPM_DISABLED);
Saurabh Karajgaonkarf1cda542015-08-04 14:04:09 +00004629 return xhci_change_max_exit_latency(xhci, udev, mel);
Sarah Sharp3b3db022012-05-09 10:55:03 -07004630}
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004631#else /* CONFIG_PM */
4632
Lu Baolu39693842017-04-07 17:57:04 +03004633static int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
Rafael J. Wysockiceb6c9c2014-11-29 23:47:05 +01004634 struct usb_device *udev, int enable)
4635{
4636 return 0;
4637}
4638
Lu Baolu39693842017-04-07 17:57:04 +03004639static int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
Rafael J. Wysockiceb6c9c2014-11-29 23:47:05 +01004640{
4641 return 0;
4642}
4643
Lu Baolu39693842017-04-07 17:57:04 +03004644static int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd,
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004645 struct usb_device *udev, enum usb3_link_state state)
4646{
4647 return USB3_LPM_DISABLED;
4648}
4649
Lu Baolu39693842017-04-07 17:57:04 +03004650static int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004651 struct usb_device *udev, enum usb3_link_state state)
4652{
4653 return 0;
4654}
4655#endif /* CONFIG_PM */
4656
Sarah Sharp3b3db022012-05-09 10:55:03 -07004657/*-------------------------------------------------------------------------*/
4658
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004659/* Once a hub descriptor is fetched for a device, we need to update the xHC's
4660 * internal data structures for the device.
4661 */
Lu Baolu39693842017-04-07 17:57:04 +03004662static int xhci_update_hub_device(struct usb_hcd *hcd, struct usb_device *hdev,
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004663 struct usb_tt *tt, gfp_t mem_flags)
4664{
4665 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4666 struct xhci_virt_device *vdev;
4667 struct xhci_command *config_cmd;
4668 struct xhci_input_control_ctx *ctrl_ctx;
4669 struct xhci_slot_ctx *slot_ctx;
4670 unsigned long flags;
4671 unsigned think_time;
4672 int ret;
4673
4674 /* Ignore root hubs */
4675 if (!hdev->parent)
4676 return 0;
4677
4678 vdev = xhci->devs[hdev->slot_id];
4679 if (!vdev) {
4680 xhci_warn(xhci, "Cannot update hub desc for unknown device.\n");
4681 return -EINVAL;
4682 }
Lu Baolu74e0b562017-04-07 17:57:05 +03004683
Sarah Sharpa1d78c12009-12-09 15:59:03 -08004684 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
Lu Baolu74e0b562017-04-07 17:57:05 +03004685 if (!config_cmd)
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004686 return -ENOMEM;
Lu Baolu74e0b562017-04-07 17:57:05 +03004687
Lin Wang4daf9df2015-01-09 16:06:31 +02004688 ctrl_ctx = xhci_get_input_control_ctx(config_cmd->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07004689 if (!ctrl_ctx) {
4690 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
4691 __func__);
4692 xhci_free_command(xhci, config_cmd);
4693 return -ENOMEM;
4694 }
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004695
4696 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp839c8172011-09-02 11:05:47 -07004697 if (hdev->speed == USB_SPEED_HIGH &&
4698 xhci_alloc_tt_info(xhci, vdev, hdev, tt, GFP_ATOMIC)) {
4699 xhci_dbg(xhci, "Could not allocate xHCI TT structure.\n");
4700 xhci_free_command(xhci, config_cmd);
4701 spin_unlock_irqrestore(&xhci->lock, flags);
4702 return -ENOMEM;
4703 }
4704
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004705 xhci_slot_copy(xhci, config_cmd->in_ctx, vdev->out_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11004706 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004707 slot_ctx = xhci_get_slot_ctx(xhci, config_cmd->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11004708 slot_ctx->dev_info |= cpu_to_le32(DEV_HUB);
Chunfeng Yun096b1102015-12-04 15:53:43 +02004709 /*
4710 * refer to section 6.2.2: MTT should be 0 for full speed hub,
4711 * but it may be already set to 1 when setup an xHCI virtual
4712 * device, so clear it anyway.
4713 */
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004714 if (tt->multi)
Matt Evans28ccd292011-03-29 13:40:46 +11004715 slot_ctx->dev_info |= cpu_to_le32(DEV_MTT);
Chunfeng Yun096b1102015-12-04 15:53:43 +02004716 else if (hdev->speed == USB_SPEED_FULL)
4717 slot_ctx->dev_info &= cpu_to_le32(~DEV_MTT);
4718
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004719 if (xhci->hci_version > 0x95) {
4720 xhci_dbg(xhci, "xHCI version %x needs hub "
4721 "TT think time and number of ports\n",
4722 (unsigned int) xhci->hci_version);
Matt Evans28ccd292011-03-29 13:40:46 +11004723 slot_ctx->dev_info2 |= cpu_to_le32(XHCI_MAX_PORTS(hdev->maxchild));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004724 /* Set TT think time - convert from ns to FS bit times.
4725 * 0 = 8 FS bit times, 1 = 16 FS bit times,
4726 * 2 = 24 FS bit times, 3 = 32 FS bit times.
Andiry Xu700b4172011-05-05 18:14:05 +08004727 *
4728 * xHCI 1.0: this field shall be 0 if the device is not a
4729 * High-spped hub.
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004730 */
4731 think_time = tt->think_time;
4732 if (think_time != 0)
4733 think_time = (think_time / 666) - 1;
Andiry Xu700b4172011-05-05 18:14:05 +08004734 if (xhci->hci_version < 0x100 || hdev->speed == USB_SPEED_HIGH)
4735 slot_ctx->tt_info |=
4736 cpu_to_le32(TT_THINK_TIME(think_time));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004737 } else {
4738 xhci_dbg(xhci, "xHCI version %x doesn't need hub "
4739 "TT think time or number of ports\n",
4740 (unsigned int) xhci->hci_version);
4741 }
4742 slot_ctx->dev_state = 0;
4743 spin_unlock_irqrestore(&xhci->lock, flags);
4744
4745 xhci_dbg(xhci, "Set up %s for hub device.\n",
4746 (xhci->hci_version > 0x95) ?
4747 "configure endpoint" : "evaluate context");
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004748
4749 /* Issue and wait for the configure endpoint or
4750 * evaluate context command.
4751 */
4752 if (xhci->hci_version > 0x95)
4753 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
4754 false, false);
4755 else
4756 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
4757 true, false);
4758
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004759 xhci_free_command(xhci, config_cmd);
4760 return ret;
4761}
4762
Lu Baolu39693842017-04-07 17:57:04 +03004763static int xhci_get_frame(struct usb_hcd *hcd)
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004764{
4765 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4766 /* EHCI mods by the periodic size. Why? */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004767 return readl(&xhci->run_regs->microframe_index) >> 3;
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004768}
4769
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004770int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks)
4771{
4772 struct xhci_hcd *xhci;
Arnd Bergmann4c39d4b2017-03-13 10:18:44 +08004773 /*
4774 * TODO: Check with DWC3 clients for sysdev according to
4775 * quirks
4776 */
4777 struct device *dev = hcd->self.sysdev;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004778 int retval;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004779
Sarah Sharp1386ff72014-01-31 11:45:02 -08004780 /* Accept arbitrarily long scatter-gather lists */
4781 hcd->self.sg_tablesize = ~0;
Ming Leifc760512013-08-08 21:48:23 +08004782
Mathias Nymane2ed5112014-03-07 17:06:57 +02004783 /* support to build packet from discontinuous buffers */
4784 hcd->self.no_sg_constraint = 1;
4785
Hans de Goede19181bc2012-07-04 09:18:02 +02004786 /* XHCI controllers don't stop the ep queue on short packets :| */
4787 hcd->self.no_stop_on_short = 1;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004788
Mathias Nymanb50107b2015-10-01 18:40:38 +03004789 xhci = hcd_to_xhci(hcd);
4790
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004791 if (usb_hcd_is_primary_hcd(hcd)) {
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004792 xhci->main_hcd = hcd;
4793 /* Mark the first roothub as being USB 2.0.
4794 * The xHCI driver will register the USB 3.0 roothub.
4795 */
4796 hcd->speed = HCD_USB2;
4797 hcd->self.root_hub->speed = USB_SPEED_HIGH;
4798 /*
4799 * USB 2.0 roothub under xHCI has an integrated TT,
4800 * (rate matching hub) as opposed to having an OHCI/UHCI
4801 * companion controller.
4802 */
4803 hcd->has_tt = 1;
4804 } else {
Mathias Nymanb50107b2015-10-01 18:40:38 +03004805 if (xhci->sbrn == 0x31) {
4806 xhci_info(xhci, "Host supports USB 3.1 Enhanced SuperSpeed\n");
4807 hcd->speed = HCD_USB31;
Mathias Nyman2c0e06f2016-01-25 15:30:45 +02004808 hcd->self.root_hub->speed = USB_SPEED_SUPER_PLUS;
Mathias Nymanb50107b2015-10-01 18:40:38 +03004809 }
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004810 /* xHCI private pointer was set in xhci_pci_probe for the second
4811 * registered roothub.
4812 */
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004813 return 0;
4814 }
4815
Chris Bainbridgea00918d2015-05-19 16:30:51 +03004816 mutex_init(&xhci->mutex);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004817 xhci->cap_regs = hcd->regs;
4818 xhci->op_regs = hcd->regs +
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004819 HC_LENGTH(readl(&xhci->cap_regs->hc_capbase));
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004820 xhci->run_regs = hcd->regs +
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004821 (readl(&xhci->cap_regs->run_regs_off) & RTSOFF_MASK);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004822 /* Cache read-only capability registers */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004823 xhci->hcs_params1 = readl(&xhci->cap_regs->hcs_params1);
4824 xhci->hcs_params2 = readl(&xhci->cap_regs->hcs_params2);
4825 xhci->hcs_params3 = readl(&xhci->cap_regs->hcs_params3);
4826 xhci->hcc_params = readl(&xhci->cap_regs->hc_capbase);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004827 xhci->hci_version = HC_VERSION(xhci->hcc_params);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004828 xhci->hcc_params = readl(&xhci->cap_regs->hcc_params);
Lu Baolu04abb6d2015-10-01 18:40:31 +03004829 if (xhci->hci_version > 0x100)
4830 xhci->hcc_params2 = readl(&xhci->cap_regs->hcc_params2);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004831 xhci_print_registers(xhci);
4832
Mathias Nyman757de492016-06-01 18:09:10 +03004833 xhci->quirks |= quirks;
Takashi Iwai4e6a1ee2013-12-09 12:42:48 +01004834
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004835 get_quirks(dev, xhci);
4836
George Cherian07f3cb72013-07-01 10:59:12 +05304837 /* In xhci controllers which follow xhci 1.0 spec gives a spurious
4838 * success event after a short transfer. This quirk will ignore such
4839 * spurious event.
4840 */
4841 if (xhci->hci_version > 0x96)
4842 xhci->quirks |= XHCI_SPURIOUS_SUCCESS;
4843
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004844 /* Make sure the HC is halted. */
4845 retval = xhci_halt(xhci);
4846 if (retval)
Roger Quadroscd33a322015-05-29 17:01:46 +03004847 return retval;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004848
4849 xhci_dbg(xhci, "Resetting HCD\n");
4850 /* Reset the internal HC memory state and registers. */
4851 retval = xhci_reset(xhci);
4852 if (retval)
Roger Quadroscd33a322015-05-29 17:01:46 +03004853 return retval;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004854 xhci_dbg(xhci, "Reset complete\n");
4855
Yoshihiro Shimoda0a380be2016-04-08 16:25:07 +03004856 /*
4857 * On some xHCI controllers (e.g. R-Car SoCs), the AC64 bit (bit 0)
4858 * of HCCPARAMS1 is set to 1. However, the xHCs don't support 64-bit
4859 * address memory pointers actually. So, this driver clears the AC64
4860 * bit of xhci->hcc_params to call dma_set_coherent_mask(dev,
4861 * DMA_BIT_MASK(32)) in this xhci_gen_setup().
4862 */
4863 if (xhci->quirks & XHCI_NO_64BIT_SUPPORT)
4864 xhci->hcc_params &= ~BIT(0);
4865
Xenia Ragiadakouc10cf112013-08-14 05:55:19 +03004866 /* Set dma_mask and coherent_dma_mask to 64-bits,
4867 * if xHC supports 64-bit addressing */
4868 if (HCC_64BIT_ADDR(xhci->hcc_params) &&
4869 !dma_set_mask(dev, DMA_BIT_MASK(64))) {
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004870 xhci_dbg(xhci, "Enabling 64-bit DMA addresses.\n");
Xenia Ragiadakouc10cf112013-08-14 05:55:19 +03004871 dma_set_coherent_mask(dev, DMA_BIT_MASK(64));
Duc Dangfda182d2015-10-09 13:30:13 +03004872 } else {
4873 /*
4874 * This is to avoid error in cases where a 32-bit USB
4875 * controller is used on a 64-bit capable system.
4876 */
4877 retval = dma_set_mask(dev, DMA_BIT_MASK(32));
4878 if (retval)
4879 return retval;
4880 xhci_dbg(xhci, "Enabling 32-bit DMA addresses.\n");
4881 dma_set_coherent_mask(dev, DMA_BIT_MASK(32));
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004882 }
4883
4884 xhci_dbg(xhci, "Calling HCD init\n");
4885 /* Initialize HCD and host controller data structures. */
4886 retval = xhci_init(hcd);
4887 if (retval)
Roger Quadroscd33a322015-05-29 17:01:46 +03004888 return retval;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004889 xhci_dbg(xhci, "Called HCD init\n");
Hans de Goede99705092015-01-16 17:54:01 +02004890
4891 xhci_info(xhci, "hcc params 0x%08x hci version 0x%x quirks 0x%08x\n",
4892 xhci->hcc_params, xhci->hci_version, xhci->quirks);
4893
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004894 return 0;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004895}
Andrew Bresticker436e8c72014-10-03 11:35:28 +03004896EXPORT_SYMBOL_GPL(xhci_gen_setup);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004897
Andrew Bresticker1885d9a2014-10-03 11:35:26 +03004898static const struct hc_driver xhci_hc_driver = {
4899 .description = "xhci-hcd",
4900 .product_desc = "xHCI Host Controller",
Yoshihiro Shimoda32479d42015-11-24 13:09:47 +02004901 .hcd_priv_size = sizeof(struct xhci_hcd),
Andrew Bresticker1885d9a2014-10-03 11:35:26 +03004902
4903 /*
4904 * generic hardware linkage
4905 */
4906 .irq = xhci_irq,
4907 .flags = HCD_MEMORY | HCD_USB3 | HCD_SHARED,
4908
4909 /*
4910 * basic lifecycle operations
4911 */
4912 .reset = NULL, /* set in xhci_init_driver() */
4913 .start = xhci_run,
4914 .stop = xhci_stop,
4915 .shutdown = xhci_shutdown,
4916
4917 /*
4918 * managing i/o requests and associated device resources
4919 */
4920 .urb_enqueue = xhci_urb_enqueue,
4921 .urb_dequeue = xhci_urb_dequeue,
4922 .alloc_dev = xhci_alloc_dev,
4923 .free_dev = xhci_free_dev,
4924 .alloc_streams = xhci_alloc_streams,
4925 .free_streams = xhci_free_streams,
4926 .add_endpoint = xhci_add_endpoint,
4927 .drop_endpoint = xhci_drop_endpoint,
4928 .endpoint_reset = xhci_endpoint_reset,
4929 .check_bandwidth = xhci_check_bandwidth,
4930 .reset_bandwidth = xhci_reset_bandwidth,
4931 .address_device = xhci_address_device,
4932 .enable_device = xhci_enable_device,
4933 .update_hub_device = xhci_update_hub_device,
4934 .reset_device = xhci_discover_or_reset_device,
4935
4936 /*
4937 * scheduling support
4938 */
4939 .get_frame_number = xhci_get_frame,
4940
4941 /*
4942 * root hub support
4943 */
4944 .hub_control = xhci_hub_control,
4945 .hub_status_data = xhci_hub_status_data,
4946 .bus_suspend = xhci_bus_suspend,
4947 .bus_resume = xhci_bus_resume,
4948
4949 /*
4950 * call back when device connected and addressed
4951 */
4952 .update_device = xhci_update_device,
4953 .set_usb2_hw_lpm = xhci_set_usb2_hardware_lpm,
4954 .enable_usb3_lpm_timeout = xhci_enable_usb3_lpm_timeout,
4955 .disable_usb3_lpm_timeout = xhci_disable_usb3_lpm_timeout,
4956 .find_raw_port_number = xhci_find_raw_port_number,
4957};
4958
Roger Quadroscd33a322015-05-29 17:01:46 +03004959void xhci_init_driver(struct hc_driver *drv,
4960 const struct xhci_driver_overrides *over)
Andrew Bresticker1885d9a2014-10-03 11:35:26 +03004961{
Roger Quadroscd33a322015-05-29 17:01:46 +03004962 BUG_ON(!over);
4963
4964 /* Copy the generic table to drv then apply the overrides */
Andrew Bresticker1885d9a2014-10-03 11:35:26 +03004965 *drv = xhci_hc_driver;
Roger Quadroscd33a322015-05-29 17:01:46 +03004966
4967 if (over) {
4968 drv->hcd_priv_size += over->extra_priv_size;
4969 if (over->reset)
4970 drv->reset = over->reset;
4971 if (over->start)
4972 drv->start = over->start;
4973 }
Andrew Bresticker1885d9a2014-10-03 11:35:26 +03004974}
4975EXPORT_SYMBOL_GPL(xhci_init_driver);
4976
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004977MODULE_DESCRIPTION(DRIVER_DESC);
4978MODULE_AUTHOR(DRIVER_AUTHOR);
4979MODULE_LICENSE("GPL");
4980
4981static int __init xhci_hcd_init(void)
4982{
Sarah Sharp98441972009-05-14 11:44:18 -07004983 /*
4984 * Check the compiler generated sizes of structures that must be laid
4985 * out in specific ways for hardware access.
4986 */
4987 BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8);
4988 BUILD_BUG_ON(sizeof(struct xhci_slot_ctx) != 8*32/8);
4989 BUILD_BUG_ON(sizeof(struct xhci_ep_ctx) != 8*32/8);
4990 /* xhci_device_control has eight fields, and also
4991 * embeds one xhci_slot_ctx and 31 xhci_ep_ctx
4992 */
Sarah Sharp98441972009-05-14 11:44:18 -07004993 BUILD_BUG_ON(sizeof(struct xhci_stream_ctx) != 4*32/8);
4994 BUILD_BUG_ON(sizeof(union xhci_trb) != 4*32/8);
4995 BUILD_BUG_ON(sizeof(struct xhci_erst_entry) != 4*32/8);
Lu Baolu04abb6d2015-10-01 18:40:31 +03004996 BUILD_BUG_ON(sizeof(struct xhci_cap_regs) != 8*32/8);
Sarah Sharp98441972009-05-14 11:44:18 -07004997 BUILD_BUG_ON(sizeof(struct xhci_intr_reg) != 8*32/8);
4998 /* xhci_run_regs has eight fields and embeds 128 xhci_intr_regs */
4999 BUILD_BUG_ON(sizeof(struct xhci_run_regs) != (8+8*128)*32/8);
Oliver Neukum1eaf35e2015-12-03 15:03:34 +01005000
5001 if (usb_disabled())
5002 return -ENODEV;
5003
Sarah Sharp66d4ead2009-04-27 19:52:28 -07005004 return 0;
5005}
Arthur Demchenkovb04c8462015-05-19 16:30:50 +03005006
5007/*
5008 * If an init function is provided, an exit function must also be provided
5009 * to allow module unload.
5010 */
5011static void __exit xhci_hcd_fini(void) { }
5012
Sarah Sharp66d4ead2009-04-27 19:52:28 -07005013module_init(xhci_hcd_init);
Arthur Demchenkovb04c8462015-05-19 16:30:50 +03005014module_exit(xhci_hcd_fini);