blob: 23378f33142f16e2d9bc63e7483b524b085f4e11 [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"
Lu Baolu02b6fdc2017-10-05 11:21:39 +030035#include "xhci-debugfs.h"
Sarah Sharp66d4ead2009-04-27 19:52:28 -070036
37#define DRIVER_AUTHOR "Sarah Sharp"
38#define DRIVER_DESC "'eXtensible' Host Controller (xHC) Driver"
39
Lu Baolua1377e52014-11-18 11:27:14 +020040#define PORT_WAKE_BITS (PORT_WKOC_E | PORT_WKDISC_E | PORT_WKCONN_E)
41
Sarah Sharpb0567b32009-08-07 14:04:36 -070042/* Some 0.95 hardware can't handle the chain bit on a Link TRB being cleared */
43static int link_quirk;
44module_param(link_quirk, int, S_IRUGO | S_IWUSR);
45MODULE_PARM_DESC(link_quirk, "Don't clear the chain bit on a link TRB");
46
Takashi Iwai4e6a1ee2013-12-09 12:42:48 +010047static unsigned int quirks;
48module_param(quirks, uint, S_IRUGO);
49MODULE_PARM_DESC(quirks, "Bit flags for quirks to be enabled as default");
50
Sarah Sharp66d4ead2009-04-27 19:52:28 -070051/* TODO: copied from ehci-hcd.c - can this be refactored? */
52/*
Sarah Sharp2611bd182012-10-25 13:27:51 -070053 * xhci_handshake - spin reading hc until handshake completes or fails
Sarah Sharp66d4ead2009-04-27 19:52:28 -070054 * @ptr: address of hc register to be read
55 * @mask: bits to look at in result of read
56 * @done: value of those bits when handshake succeeds
57 * @usec: timeout in microseconds
58 *
59 * Returns negative errno, or zero on success
60 *
61 * Success happens when the "mask" bits have the specified value (hardware
62 * handshake done). There are two failure modes: "usec" have passed (major
63 * hardware flakeout), or the register reads as all-ones (hardware removed).
64 */
Lin Wangdc0b1772015-01-09 16:06:28 +020065int xhci_handshake(void __iomem *ptr, u32 mask, u32 done, int usec)
Sarah Sharp66d4ead2009-04-27 19:52:28 -070066{
67 u32 result;
68
69 do {
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +020070 result = readl(ptr);
Sarah Sharp66d4ead2009-04-27 19:52:28 -070071 if (result == ~(u32)0) /* card removed */
72 return -ENODEV;
73 result &= mask;
74 if (result == done)
75 return 0;
76 udelay(1);
77 usec--;
78 } while (usec > 0);
79 return -ETIMEDOUT;
80}
81
82/*
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -070083 * Disable interrupts and begin the xHCI halting process.
84 */
85void xhci_quiesce(struct xhci_hcd *xhci)
86{
87 u32 halted;
88 u32 cmd;
89 u32 mask;
90
91 mask = ~(XHCI_IRQS);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +020092 halted = readl(&xhci->op_regs->status) & STS_HALT;
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -070093 if (!halted)
94 mask &= ~CMD_RUN;
95
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +020096 cmd = readl(&xhci->op_regs->command);
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -070097 cmd &= mask;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +020098 writel(cmd, &xhci->op_regs->command);
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -070099}
100
101/*
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700102 * Force HC into halt state.
103 *
104 * Disable any IRQs and clear the run/stop bit.
105 * HC will complete any current and actively pipelined transactions, and
Andiry Xubdfca502011-01-06 15:43:39 +0800106 * should halt within 16 ms of the run/stop bit being cleared.
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700107 * Read HC Halted bit in the status register to see when the HC is finished.
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700108 */
109int xhci_halt(struct xhci_hcd *xhci)
110{
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800111 int ret;
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300112 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "// Halt the HC");
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -0700113 xhci_quiesce(xhci);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700114
Lin Wangdc0b1772015-01-09 16:06:28 +0200115 ret = xhci_handshake(&xhci->op_regs->status,
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700116 STS_HALT, STS_HALT, XHCI_MAX_HALT_USEC);
Mathias Nyman99154fd2016-11-11 15:13:11 +0200117 if (ret) {
118 xhci_warn(xhci, "Host halt failed, %d\n", ret);
119 return ret;
120 }
121 xhci->xhc_state |= XHCI_STATE_HALTED;
122 xhci->cmd_ring_state = CMD_RING_STATE_STOPPED;
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800123 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700124}
125
126/*
Sarah Sharped074532010-05-24 13:25:21 -0700127 * Set the run bit and wait for the host to be running.
128 */
Guoqing Zhang26bba5c2017-04-07 17:56:53 +0300129int xhci_start(struct xhci_hcd *xhci)
Sarah Sharped074532010-05-24 13:25:21 -0700130{
131 u32 temp;
132 int ret;
133
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200134 temp = readl(&xhci->op_regs->command);
Sarah Sharped074532010-05-24 13:25:21 -0700135 temp |= (CMD_RUN);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300136 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "// Turn on HC, cmd = 0x%x.",
Sarah Sharped074532010-05-24 13:25:21 -0700137 temp);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200138 writel(temp, &xhci->op_regs->command);
Sarah Sharped074532010-05-24 13:25:21 -0700139
140 /*
141 * Wait for the HCHalted Status bit to be 0 to indicate the host is
142 * running.
143 */
Lin Wangdc0b1772015-01-09 16:06:28 +0200144 ret = xhci_handshake(&xhci->op_regs->status,
Sarah Sharped074532010-05-24 13:25:21 -0700145 STS_HALT, 0, XHCI_MAX_HALT_USEC);
146 if (ret == -ETIMEDOUT)
147 xhci_err(xhci, "Host took too long to start, "
148 "waited %u microseconds.\n",
149 XHCI_MAX_HALT_USEC);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800150 if (!ret)
Mathias Nyman98d74f92016-04-08 16:25:10 +0300151 /* clear state flags. Including dying, halted or removing */
152 xhci->xhc_state = 0;
Roger Quadrose5bfeab2015-09-21 17:46:13 +0300153
Sarah Sharped074532010-05-24 13:25:21 -0700154 return ret;
155}
156
157/*
Sarah Sharpac04e6f2011-03-11 08:47:33 -0800158 * Reset a halted HC.
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700159 *
160 * This resets pipelines, timers, counters, state machines, etc.
161 * Transactions will be terminated immediately, and operational registers
162 * will be set to their defaults.
163 */
164int xhci_reset(struct xhci_hcd *xhci)
165{
166 u32 command;
167 u32 state;
Andiry Xuf370b992012-04-14 02:54:30 +0800168 int ret, i;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700169
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200170 state = readl(&xhci->op_regs->status);
Mathias Nymanc11ae032016-11-11 15:13:12 +0200171
172 if (state == ~(u32)0) {
173 xhci_warn(xhci, "Host not accessible, reset failed.\n");
174 return -ENODEV;
175 }
176
Sarah Sharpd3512f62009-07-27 12:03:50 -0700177 if ((state & STS_HALT) == 0) {
178 xhci_warn(xhci, "Host controller not halted, aborting reset.\n");
179 return 0;
180 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700181
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300182 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "// Reset the HC");
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200183 command = readl(&xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700184 command |= CMD_RESET;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200185 writel(command, &xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700186
Rajmohan Mania5964392015-11-18 10:48:20 +0200187 /* Existing Intel xHCI controllers require a delay of 1 mS,
188 * after setting the CMD_RESET bit, and before accessing any
189 * HC registers. This allows the HC to complete the
190 * reset operation and be ready for HC register access.
191 * Without this delay, the subsequent HC register access,
192 * may result in a system hang very rarely.
193 */
194 if (xhci->quirks & XHCI_INTEL_HOST)
195 udelay(1000);
196
Lin Wangdc0b1772015-01-09 16:06:28 +0200197 ret = xhci_handshake(&xhci->op_regs->command,
Sarah Sharp22ceac12012-07-23 16:06:08 -0700198 CMD_RESET, 0, 10 * 1000 * 1000);
Sarah Sharp2d62f3e2010-05-24 13:25:15 -0700199 if (ret)
200 return ret;
201
Jiahau Chang9da5a102017-07-20 14:48:27 +0300202 if (xhci->quirks & XHCI_ASMEDIA_MODIFY_FLOWCONTROL)
203 usb_asmedia_modifyflowcontrol(to_pci_dev(xhci_to_hcd(xhci)->self.controller));
204
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300205 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
206 "Wait for controller to be ready for doorbell rings");
Sarah Sharp2d62f3e2010-05-24 13:25:15 -0700207 /*
208 * xHCI cannot write to any doorbells or operational registers other
209 * than status until the "Controller Not Ready" flag is cleared.
210 */
Lin Wangdc0b1772015-01-09 16:06:28 +0200211 ret = xhci_handshake(&xhci->op_regs->status,
Sarah Sharp22ceac12012-07-23 16:06:08 -0700212 STS_CNR, 0, 10 * 1000 * 1000);
Andiry Xuf370b992012-04-14 02:54:30 +0800213
Felipe Balbi98871e92017-01-23 14:20:04 +0200214 for (i = 0; i < 2; i++) {
Andiry Xuf370b992012-04-14 02:54:30 +0800215 xhci->bus_state[i].port_c_suspend = 0;
216 xhci->bus_state[i].suspended_ports = 0;
217 xhci->bus_state[i].resuming_ports = 0;
218 }
219
220 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700221}
222
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300223
yuan linyu2c93e792017-02-25 19:20:55 +0800224#ifdef CONFIG_USB_PCI
Dong Nguyen43b86af2010-07-21 16:56:08 -0700225/*
226 * Set up MSI
227 */
228static int xhci_setup_msi(struct xhci_hcd *xhci)
229{
230 int ret;
Arnd Bergmann4c39d4b2017-03-13 10:18:44 +0800231 /*
232 * TODO:Check with MSI Soc for sysdev
233 */
Dong Nguyen43b86af2010-07-21 16:56:08 -0700234 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
235
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300236 ret = pci_alloc_irq_vectors(pdev, 1, 1, PCI_IRQ_MSI);
237 if (ret < 0) {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300238 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
239 "failed to allocate MSI entry");
Dong Nguyen43b86af2010-07-21 16:56:08 -0700240 return ret;
241 }
242
Alex Shi851ec162013-05-24 10:54:19 +0800243 ret = request_irq(pdev->irq, xhci_msi_irq,
Dong Nguyen43b86af2010-07-21 16:56:08 -0700244 0, "xhci_hcd", xhci_to_hcd(xhci));
245 if (ret) {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300246 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
247 "disable MSI interrupt");
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300248 pci_free_irq_vectors(pdev);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700249 }
250
251 return ret;
252}
253
254/*
255 * Set up MSI-X
256 */
257static int xhci_setup_msix(struct xhci_hcd *xhci)
258{
259 int i, ret = 0;
Andiry Xu00292272010-12-27 17:39:02 +0800260 struct usb_hcd *hcd = xhci_to_hcd(xhci);
261 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700262
263 /*
264 * calculate number of msi-x vectors supported.
265 * - HCS_MAX_INTRS: the max number of interrupts the host can handle,
266 * with max number of interrupters based on the xhci HCSPARAMS1.
267 * - num_online_cpus: maximum msi-x vectors per CPUs core.
268 * Add additional 1 vector to ensure always available interrupt.
269 */
270 xhci->msix_count = min(num_online_cpus() + 1,
271 HCS_MAX_INTRS(xhci->hcs_params1));
272
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300273 ret = pci_alloc_irq_vectors(pdev, xhci->msix_count, xhci->msix_count,
274 PCI_IRQ_MSIX);
275 if (ret < 0) {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300276 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
277 "Failed to enable MSI-X");
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300278 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700279 }
280
Dong Nguyen43b86af2010-07-21 16:56:08 -0700281 for (i = 0; i < xhci->msix_count; i++) {
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300282 ret = request_irq(pci_irq_vector(pdev, i), xhci_msi_irq, 0,
283 "xhci_hcd", xhci_to_hcd(xhci));
Dong Nguyen43b86af2010-07-21 16:56:08 -0700284 if (ret)
285 goto disable_msix;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700286 }
Dong Nguyen43b86af2010-07-21 16:56:08 -0700287
Andiry Xu00292272010-12-27 17:39:02 +0800288 hcd->msix_enabled = 1;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700289 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700290
291disable_msix:
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300292 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "disable MSI-X interrupt");
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300293 while (--i >= 0)
294 free_irq(pci_irq_vector(pdev, i), xhci_to_hcd(xhci));
295 pci_free_irq_vectors(pdev);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700296 return ret;
297}
298
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700299/* Free any IRQs and disable MSI-X */
300static void xhci_cleanup_msix(struct xhci_hcd *xhci)
301{
Andiry Xu00292272010-12-27 17:39:02 +0800302 struct usb_hcd *hcd = xhci_to_hcd(xhci);
303 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700304
Jack Pham90053552013-11-15 14:53:14 -0800305 if (xhci->quirks & XHCI_PLAT)
306 return;
307
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300308 /* return if using legacy interrupt */
309 if (hcd->irq > 0)
310 return;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700311
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300312 if (hcd->msix_enabled) {
313 int i;
314
315 for (i = 0; i < xhci->msix_count; i++)
316 free_irq(pci_irq_vector(pdev, i), xhci_to_hcd(xhci));
Dong Nguyen43b86af2010-07-21 16:56:08 -0700317 } else {
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300318 free_irq(pci_irq_vector(pdev, 0), xhci_to_hcd(xhci));
Dong Nguyen43b86af2010-07-21 16:56:08 -0700319 }
320
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300321 pci_free_irq_vectors(pdev);
Andiry Xu00292272010-12-27 17:39:02 +0800322 hcd->msix_enabled = 0;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700323}
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700324
Olof Johanssond5c82fe2013-07-23 11:58:20 -0700325static void __maybe_unused xhci_msix_sync_irqs(struct xhci_hcd *xhci)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700326{
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300327 struct usb_hcd *hcd = xhci_to_hcd(xhci);
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700328
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300329 if (hcd->msix_enabled) {
330 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
331 int i;
332
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700333 for (i = 0; i < xhci->msix_count; i++)
Christoph Hellwig77d45b42017-04-19 16:55:49 +0300334 synchronize_irq(pci_irq_vector(pdev, i));
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700335 }
336}
337
338static int xhci_try_enable_msi(struct usb_hcd *hcd)
339{
340 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp52fb6122013-08-08 10:08:34 -0700341 struct pci_dev *pdev;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700342 int ret;
343
Sarah Sharp52fb6122013-08-08 10:08:34 -0700344 /* The xhci platform device has set up IRQs through usb_add_hcd. */
345 if (xhci->quirks & XHCI_PLAT)
346 return 0;
347
348 pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700349 /*
350 * Some Fresco Logic host controllers advertise MSI, but fail to
351 * generate interrupts. Don't even try to enable MSI.
352 */
353 if (xhci->quirks & XHCI_BROKEN_MSI)
Hannes Reinecke00eed9c2013-03-04 17:14:43 +0100354 goto legacy_irq;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700355
356 /* unregister the legacy interrupt */
357 if (hcd->irq)
358 free_irq(hcd->irq, hcd);
Felipe Balbicd704692012-02-29 16:46:23 +0200359 hcd->irq = 0;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700360
361 ret = xhci_setup_msix(xhci);
362 if (ret)
363 /* fall back to msi*/
364 ret = xhci_setup_msi(xhci);
365
Peter Chen6a29bee2017-05-17 18:32:02 +0300366 if (!ret) {
367 hcd->msi_enabled = 1;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700368 return 0;
Peter Chen6a29bee2017-05-17 18:32:02 +0300369 }
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700370
Sarah Sharp68d07f62012-02-13 16:25:57 -0800371 if (!pdev->irq) {
372 xhci_err(xhci, "No msi-x/msi found and no IRQ in BIOS\n");
373 return -EINVAL;
374 }
375
Hannes Reinecke00eed9c2013-03-04 17:14:43 +0100376 legacy_irq:
Adrian Huang79699432014-02-27 11:26:03 +0000377 if (!strlen(hcd->irq_descr))
378 snprintf(hcd->irq_descr, sizeof(hcd->irq_descr), "%s:usb%d",
379 hcd->driver->description, hcd->self.busnum);
380
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700381 /* fall back to legacy interrupt*/
382 ret = request_irq(pdev->irq, &usb_hcd_irq, IRQF_SHARED,
383 hcd->irq_descr, hcd);
384 if (ret) {
385 xhci_err(xhci, "request interrupt %d failed\n",
386 pdev->irq);
387 return ret;
388 }
389 hcd->irq = pdev->irq;
390 return 0;
391}
392
393#else
394
David Cohen01bb59e2014-04-25 19:20:16 +0300395static inline int xhci_try_enable_msi(struct usb_hcd *hcd)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700396{
397 return 0;
398}
399
David Cohen01bb59e2014-04-25 19:20:16 +0300400static inline void xhci_cleanup_msix(struct xhci_hcd *xhci)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700401{
402}
403
David Cohen01bb59e2014-04-25 19:20:16 +0300404static inline void xhci_msix_sync_irqs(struct xhci_hcd *xhci)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700405{
406}
407
408#endif
409
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500410static void compliance_mode_recovery(unsigned long arg)
411{
412 struct xhci_hcd *xhci;
413 struct usb_hcd *hcd;
414 u32 temp;
415 int i;
416
417 xhci = (struct xhci_hcd *)arg;
418
419 for (i = 0; i < xhci->num_usb3_ports; i++) {
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200420 temp = readl(xhci->usb3_ports[i]);
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500421 if ((temp & PORT_PLS_MASK) == USB_SS_PORT_LS_COMP_MOD) {
422 /*
423 * Compliance Mode Detected. Letting USB Core
424 * handle the Warm Reset
425 */
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300426 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
427 "Compliance mode detected->port %d",
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500428 i + 1);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300429 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
430 "Attempting compliance mode recovery");
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500431 hcd = xhci->shared_hcd;
432
433 if (hcd->state == HC_STATE_SUSPENDED)
434 usb_hcd_resume_root_hub(hcd);
435
436 usb_hcd_poll_rh_status(hcd);
437 }
438 }
439
440 if (xhci->port_status_u0 != ((1 << xhci->num_usb3_ports)-1))
441 mod_timer(&xhci->comp_mode_recovery_timer,
442 jiffies + msecs_to_jiffies(COMP_MODE_RCVRY_MSECS));
443}
444
445/*
446 * Quirk to work around issue generated by the SN65LVPE502CP USB3.0 re-driver
447 * that causes ports behind that hardware to enter compliance mode sometimes.
448 * The quirk creates a timer that polls every 2 seconds the link state of
449 * each host controller's port and recovers it by issuing a Warm reset
450 * if Compliance mode is detected, otherwise the port will become "dead" (no
451 * device connections or disconnections will be detected anymore). Becasue no
452 * status event is generated when entering compliance mode (per xhci spec),
453 * this quirk is needed on systems that have the failing hardware installed.
454 */
455static void compliance_mode_recovery_timer_init(struct xhci_hcd *xhci)
456{
457 xhci->port_status_u0 = 0;
Julia Lawallfc8abe02015-01-09 16:06:29 +0200458 setup_timer(&xhci->comp_mode_recovery_timer,
459 compliance_mode_recovery, (unsigned long)xhci);
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500460 xhci->comp_mode_recovery_timer.expires = jiffies +
461 msecs_to_jiffies(COMP_MODE_RCVRY_MSECS);
462
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500463 add_timer(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300464 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
465 "Compliance mode recovery timer initialized");
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500466}
467
468/*
469 * This function identifies the systems that have installed the SN65LVPE502CP
470 * USB3.0 re-driver and that need the Compliance Mode Quirk.
471 * Systems:
472 * Vendor: Hewlett-Packard -> System Models: Z420, Z620 and Z820
473 */
Andrew Brestickere1cd9722014-10-03 11:35:27 +0300474static bool xhci_compliance_mode_recovery_timer_quirk_check(void)
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500475{
476 const char *dmi_product_name, *dmi_sys_vendor;
477
478 dmi_product_name = dmi_get_system_info(DMI_PRODUCT_NAME);
479 dmi_sys_vendor = dmi_get_system_info(DMI_SYS_VENDOR);
Vivek Gautam457a73d2012-09-22 18:11:19 +0530480 if (!dmi_product_name || !dmi_sys_vendor)
481 return false;
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500482
483 if (!(strstr(dmi_sys_vendor, "Hewlett-Packard")))
484 return false;
485
486 if (strstr(dmi_product_name, "Z420") ||
487 strstr(dmi_product_name, "Z620") ||
Alexis R. Cortes47080972012-10-17 14:09:12 -0500488 strstr(dmi_product_name, "Z820") ||
Alexis R. Cortesb0e4e602012-11-08 16:59:27 -0600489 strstr(dmi_product_name, "Z1 Workstation"))
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500490 return true;
491
492 return false;
493}
494
495static int xhci_all_ports_seen_u0(struct xhci_hcd *xhci)
496{
497 return (xhci->port_status_u0 == ((1 << xhci->num_usb3_ports)-1));
498}
499
500
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700501/*
502 * Initialize memory for HCD and xHC (one-time init).
503 *
504 * Program the PAGESIZE register, initialize the device context array, create
505 * device contexts (?), set up a command ring segment (or two?), create event
506 * ring (one for now).
507 */
Lu Baolu39693842017-04-07 17:57:04 +0300508static int xhci_init(struct usb_hcd *hcd)
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700509{
510 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
511 int retval = 0;
512
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300513 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "xhci_init");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700514 spin_lock_init(&xhci->lock);
Sebastian Andrzej Siewiord7826592011-09-13 16:41:10 -0700515 if (xhci->hci_version == 0x95 && link_quirk) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300516 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
517 "QUIRK: Not clearing Link TRB chain bits.");
Sarah Sharpb0567b32009-08-07 14:04:36 -0700518 xhci->quirks |= XHCI_LINK_TRB_QUIRK;
519 } else {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300520 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
521 "xHCI doesn't need link TRB QUIRK");
Sarah Sharpb0567b32009-08-07 14:04:36 -0700522 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700523 retval = xhci_mem_init(xhci, GFP_KERNEL);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300524 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "Finished xhci_init");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700525
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500526 /* Initializing Compliance Mode Recovery Data If Needed */
Sarah Sharpc3897aa2013-04-18 10:02:03 -0700527 if (xhci_compliance_mode_recovery_timer_quirk_check()) {
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500528 xhci->quirks |= XHCI_COMP_MODE_QUIRK;
529 compliance_mode_recovery_timer_init(xhci);
530 }
531
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700532 return retval;
533}
534
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700535/*-------------------------------------------------------------------------*/
536
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700537
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800538static int xhci_run_finished(struct xhci_hcd *xhci)
539{
540 if (xhci_start(xhci)) {
541 xhci_halt(xhci);
542 return -ENODEV;
543 }
544 xhci->shared_hcd->state = HC_STATE_RUNNING;
Elric Fuc181bc52012-06-27 16:30:57 +0800545 xhci->cmd_ring_state = CMD_RING_STATE_RUNNING;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800546
547 if (xhci->quirks & XHCI_NEC_HOST)
548 xhci_ring_cmd_db(xhci);
549
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300550 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
551 "Finished xhci_run for USB3 roothub");
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800552 return 0;
553}
554
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700555/*
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700556 * Start the HC after it was halted.
557 *
558 * This function is called by the USB core when the HC driver is added.
559 * Its opposite is xhci_stop().
560 *
561 * xhci_init() must be called once before this function can be called.
562 * Reset the HC, enable device slot contexts, program DCBAAP, and
563 * set command ring pointer and event ring pointer.
564 *
565 * Setup MSI-X vectors and enable interrupts.
566 */
567int xhci_run(struct usb_hcd *hcd)
568{
569 u32 temp;
Sarah Sharp8e595a52009-07-27 12:03:31 -0700570 u64 temp_64;
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700571 int ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700572 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700573
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800574 /* Start the xHCI host controller running only after the USB 2.0 roothub
575 * is setup.
576 */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700577
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700578 hcd->uses_new_polling = 1;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800579 if (!usb_hcd_is_primary_hcd(hcd))
580 return xhci_run_finished(xhci);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700581
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300582 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "xhci_run");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700583
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700584 ret = xhci_try_enable_msi(hcd);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700585 if (ret)
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700586 return ret;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700587
Sarah Sharp66e49d82009-07-27 12:03:46 -0700588 xhci_dbg_cmd_ptrs(xhci);
589
590 xhci_dbg(xhci, "ERST memory map follows:\n");
591 xhci_dbg_erst(xhci, &xhci->erst);
Sarah Sharpf7b2e402014-01-30 13:27:49 -0800592 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
Sarah Sharp66e49d82009-07-27 12:03:46 -0700593 temp_64 &= ~ERST_PTR_MASK;
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300594 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
595 "ERST deq = 64'h%0lx", (long unsigned int) temp_64);
Sarah Sharp66e49d82009-07-27 12:03:46 -0700596
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300597 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
598 "// Set the interrupt modulation register");
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200599 temp = readl(&xhci->ir_set->irq_control);
Sarah Sharpa4d88302009-05-14 11:44:26 -0700600 temp &= ~ER_IRQ_INTERVAL_MASK;
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +0200601 /*
602 * the increment interval is 8 times as much as that defined
603 * in xHCI spec on MTK's controller
604 */
605 temp |= (u32) ((xhci->quirks & XHCI_MTK_HOST) ? 20 : 160);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200606 writel(temp, &xhci->ir_set->irq_control);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700607
608 /* Set the HCD state before we enable the irqs */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200609 temp = readl(&xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700610 temp |= (CMD_EIE);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300611 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
612 "// Enable interrupts, cmd = 0x%x.", temp);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200613 writel(temp, &xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700614
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200615 temp = readl(&xhci->ir_set->irq_pending);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300616 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
617 "// Enabling event ring interrupter %p by writing 0x%x to irq_pending",
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700618 xhci->ir_set, (unsigned int) ER_IRQ_ENABLE(temp));
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200619 writel(ER_IRQ_ENABLE(temp), &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800620 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700621
Mathias Nymanddba5cd2014-05-08 19:26:00 +0300622 if (xhci->quirks & XHCI_NEC_HOST) {
623 struct xhci_command *command;
Lu Baolu74e0b562017-04-07 17:57:05 +0300624
Mathias Nymanddba5cd2014-05-08 19:26:00 +0300625 command = xhci_alloc_command(xhci, false, false, GFP_KERNEL);
626 if (!command)
627 return -ENOMEM;
Lu Baolu74e0b562017-04-07 17:57:05 +0300628
Shu Wangd6f5f072017-07-20 14:48:31 +0300629 ret = xhci_queue_vendor_command(xhci, command, 0, 0, 0,
Sarah Sharp02386342010-05-24 13:25:28 -0700630 TRB_TYPE(TRB_NEC_GET_FW));
Shu Wangd6f5f072017-07-20 14:48:31 +0300631 if (ret)
632 xhci_free_command(xhci, command);
Mathias Nymanddba5cd2014-05-08 19:26:00 +0300633 }
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300634 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
635 "Finished xhci_run for USB2 roothub");
Lu Baolu02b6fdc2017-10-05 11:21:39 +0300636
637 xhci_debugfs_init(xhci);
638
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700639 return 0;
640}
Andrew Bresticker436e8c72014-10-03 11:35:28 +0300641EXPORT_SYMBOL_GPL(xhci_run);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700642
643/*
644 * Stop xHCI driver.
645 *
646 * This function is called by the USB core when the HC driver is removed.
647 * Its opposite is xhci_run().
648 *
649 * Disable device contexts, disable IRQs, and quiesce the HC.
650 * Reset the HC, finish any completed transactions, and cleanup memory.
651 */
Lu Baolu39693842017-04-07 17:57:04 +0300652static void xhci_stop(struct usb_hcd *hcd)
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700653{
654 u32 temp;
655 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
656
Roger Quadros8c24d6d2015-09-21 17:46:14 +0300657 mutex_lock(&xhci->mutex);
Roger Quadros8c24d6d2015-09-21 17:46:14 +0300658
Joel Stanleyfe190ed2017-04-07 17:57:00 +0300659 /* Only halt host and free memory after both hcds are removed */
Gabriel Krisman Bertazi27a41a82016-06-01 18:09:07 +0300660 if (!usb_hcd_is_primary_hcd(hcd)) {
Joel Stanleyfe190ed2017-04-07 17:57:00 +0300661 /* usb core will free this hcd shortly, unset pointer */
662 xhci->shared_hcd = NULL;
Gabriel Krisman Bertazi27a41a82016-06-01 18:09:07 +0300663 mutex_unlock(&xhci->mutex);
664 return;
665 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700666
Lu Baolu02b6fdc2017-10-05 11:21:39 +0300667 xhci_debugfs_exit(xhci);
668
Joel Stanleyfe190ed2017-04-07 17:57:00 +0300669 spin_lock_irq(&xhci->lock);
670 xhci->xhc_state |= XHCI_STATE_HALTED;
671 xhci->cmd_ring_state = CMD_RING_STATE_STOPPED;
672 xhci_halt(xhci);
673 xhci_reset(xhci);
674 spin_unlock_irq(&xhci->lock);
675
Zhang Rui40a9fb12010-12-17 13:17:04 -0800676 xhci_cleanup_msix(xhci);
677
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500678 /* Deleting Compliance Mode Recovery Timer */
679 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
Tony Camuso58b1d792013-04-05 14:27:07 -0400680 (!(xhci_all_ports_seen_u0(xhci)))) {
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500681 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300682 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
683 "%s: compliance mode recovery timer deleted",
Tony Camuso58b1d792013-04-05 14:27:07 -0400684 __func__);
685 }
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500686
Andiry Xuc41136b2011-03-22 17:08:14 +0800687 if (xhci->quirks & XHCI_AMD_PLL_FIX)
688 usb_amd_dev_put();
689
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300690 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
691 "// Disabling event ring interrupts");
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200692 temp = readl(&xhci->op_regs->status);
Lu Baolud1001ab2017-04-07 17:56:50 +0300693 writel((temp & ~0x1fff) | STS_EINT, &xhci->op_regs->status);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200694 temp = readl(&xhci->ir_set->irq_pending);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200695 writel(ER_IRQ_DISABLE(temp), &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800696 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700697
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300698 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "cleaning up memory");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700699 xhci_mem_cleanup(xhci);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300700 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
701 "xhci_stop completed - status = %x",
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200702 readl(&xhci->op_regs->status));
Roger Quadros85ac90f2015-09-21 17:46:12 +0300703 mutex_unlock(&xhci->mutex);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700704}
705
706/*
707 * Shutdown HC (not bus-specific)
708 *
709 * This is called when the machine is rebooting or halting. We assume that the
710 * machine will be powered off, and the HC's internal state will be reset.
711 * Don't bother to free memory.
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800712 *
713 * This will only ever be called with the main usb_hcd (the USB3 roothub).
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700714 */
Lu Baolu39693842017-04-07 17:57:04 +0300715static void xhci_shutdown(struct usb_hcd *hcd)
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700716{
717 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
718
Dan Carpenter052c7f92012-08-13 19:57:03 +0300719 if (xhci->quirks & XHCI_SPURIOUS_REBOOT)
Arnd Bergmann4c39d4b2017-03-13 10:18:44 +0800720 usb_disable_xhci_ports(to_pci_dev(hcd->self.sysdev));
Sarah Sharpe95829f2012-07-23 18:59:30 +0300721
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700722 spin_lock_irq(&xhci->lock);
723 xhci_halt(xhci);
Takashi Iwai638298d2013-09-12 08:11:06 +0200724 /* Workaround for spurious wakeups at shutdown with HSW */
725 if (xhci->quirks & XHCI_SPURIOUS_WAKEUP)
726 xhci_reset(xhci);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700727 spin_unlock_irq(&xhci->lock);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700728
Zhang Rui40a9fb12010-12-17 13:17:04 -0800729 xhci_cleanup_msix(xhci);
730
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300731 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
732 "xhci_shutdown completed - status = %x",
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200733 readl(&xhci->op_regs->status));
Takashi Iwai638298d2013-09-12 08:11:06 +0200734
735 /* Yet another workaround for spurious wakeups at shutdown with HSW */
736 if (xhci->quirks & XHCI_SPURIOUS_WAKEUP)
Arnd Bergmann4c39d4b2017-03-13 10:18:44 +0800737 pci_set_power_state(to_pci_dev(hcd->self.sysdev), PCI_D3hot);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700738}
739
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -0700740#ifdef CONFIG_PM
Andiry Xu5535b1d52010-10-14 07:23:06 -0700741static void xhci_save_registers(struct xhci_hcd *xhci)
742{
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200743 xhci->s3.command = readl(&xhci->op_regs->command);
744 xhci->s3.dev_nt = readl(&xhci->op_regs->dev_notification);
Sarah Sharpf7b2e402014-01-30 13:27:49 -0800745 xhci->s3.dcbaa_ptr = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200746 xhci->s3.config_reg = readl(&xhci->op_regs->config_reg);
747 xhci->s3.erst_size = readl(&xhci->ir_set->erst_size);
Sarah Sharpf7b2e402014-01-30 13:27:49 -0800748 xhci->s3.erst_base = xhci_read_64(xhci, &xhci->ir_set->erst_base);
749 xhci->s3.erst_dequeue = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200750 xhci->s3.irq_pending = readl(&xhci->ir_set->irq_pending);
751 xhci->s3.irq_control = readl(&xhci->ir_set->irq_control);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700752}
753
754static void xhci_restore_registers(struct xhci_hcd *xhci)
755{
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200756 writel(xhci->s3.command, &xhci->op_regs->command);
757 writel(xhci->s3.dev_nt, &xhci->op_regs->dev_notification);
Sarah Sharp477632d2014-01-29 14:02:00 -0800758 xhci_write_64(xhci, xhci->s3.dcbaa_ptr, &xhci->op_regs->dcbaa_ptr);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200759 writel(xhci->s3.config_reg, &xhci->op_regs->config_reg);
760 writel(xhci->s3.erst_size, &xhci->ir_set->erst_size);
Sarah Sharp477632d2014-01-29 14:02:00 -0800761 xhci_write_64(xhci, xhci->s3.erst_base, &xhci->ir_set->erst_base);
762 xhci_write_64(xhci, xhci->s3.erst_dequeue, &xhci->ir_set->erst_dequeue);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200763 writel(xhci->s3.irq_pending, &xhci->ir_set->irq_pending);
764 writel(xhci->s3.irq_control, &xhci->ir_set->irq_control);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700765}
766
Sarah Sharp89821322010-11-12 11:59:31 -0800767static void xhci_set_cmd_ring_deq(struct xhci_hcd *xhci)
768{
769 u64 val_64;
770
771 /* step 2: initialize command ring buffer */
Sarah Sharpf7b2e402014-01-30 13:27:49 -0800772 val_64 = xhci_read_64(xhci, &xhci->op_regs->cmd_ring);
Sarah Sharp89821322010-11-12 11:59:31 -0800773 val_64 = (val_64 & (u64) CMD_RING_RSVD_BITS) |
774 (xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
775 xhci->cmd_ring->dequeue) &
776 (u64) ~CMD_RING_RSVD_BITS) |
777 xhci->cmd_ring->cycle_state;
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300778 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
779 "// Setting command ring address to 0x%llx",
Sarah Sharp89821322010-11-12 11:59:31 -0800780 (long unsigned long) val_64);
Sarah Sharp477632d2014-01-29 14:02:00 -0800781 xhci_write_64(xhci, val_64, &xhci->op_regs->cmd_ring);
Sarah Sharp89821322010-11-12 11:59:31 -0800782}
783
784/*
785 * The whole command ring must be cleared to zero when we suspend the host.
786 *
787 * The host doesn't save the command ring pointer in the suspend well, so we
788 * need to re-program it on resume. Unfortunately, the pointer must be 64-byte
789 * aligned, because of the reserved bits in the command ring dequeue pointer
790 * register. Therefore, we can't just set the dequeue pointer back in the
791 * middle of the ring (TRBs are 16-byte aligned).
792 */
793static void xhci_clear_command_ring(struct xhci_hcd *xhci)
794{
795 struct xhci_ring *ring;
796 struct xhci_segment *seg;
797
798 ring = xhci->cmd_ring;
799 seg = ring->deq_seg;
800 do {
Andiry Xu158886c2011-11-30 16:37:41 +0800801 memset(seg->trbs, 0,
802 sizeof(union xhci_trb) * (TRBS_PER_SEGMENT - 1));
803 seg->trbs[TRBS_PER_SEGMENT - 1].link.control &=
804 cpu_to_le32(~TRB_CYCLE);
Sarah Sharp89821322010-11-12 11:59:31 -0800805 seg = seg->next;
806 } while (seg != ring->deq_seg);
807
808 /* Reset the software enqueue and dequeue pointers */
809 ring->deq_seg = ring->first_seg;
810 ring->dequeue = ring->first_seg->trbs;
811 ring->enq_seg = ring->deq_seg;
812 ring->enqueue = ring->dequeue;
813
Andiry Xub008df62012-03-05 17:49:34 +0800814 ring->num_trbs_free = ring->num_segs * (TRBS_PER_SEGMENT - 1) - 1;
Sarah Sharp89821322010-11-12 11:59:31 -0800815 /*
816 * Ring is now zeroed, so the HW should look for change of ownership
817 * when the cycle bit is set to 1.
818 */
819 ring->cycle_state = 1;
820
821 /*
822 * Reset the hardware dequeue pointer.
823 * Yes, this will need to be re-written after resume, but we're paranoid
824 * and want to make sure the hardware doesn't access bogus memory
825 * because, say, the BIOS or an SMI started the host without changing
826 * the command ring pointers.
827 */
828 xhci_set_cmd_ring_deq(xhci);
829}
830
Lu Baolua1377e52014-11-18 11:27:14 +0200831static void xhci_disable_port_wake_on_bits(struct xhci_hcd *xhci)
832{
833 int port_index;
834 __le32 __iomem **port_array;
835 unsigned long flags;
836 u32 t1, t2;
837
838 spin_lock_irqsave(&xhci->lock, flags);
839
Masahiro Yamada8a1115f2017-03-09 16:16:31 -0800840 /* disable usb3 ports Wake bits */
Lu Baolua1377e52014-11-18 11:27:14 +0200841 port_index = xhci->num_usb3_ports;
842 port_array = xhci->usb3_ports;
843 while (port_index--) {
844 t1 = readl(port_array[port_index]);
845 t1 = xhci_port_state_to_neutral(t1);
846 t2 = t1 & ~PORT_WAKE_BITS;
847 if (t1 != t2)
848 writel(t2, port_array[port_index]);
849 }
850
Masahiro Yamada8a1115f2017-03-09 16:16:31 -0800851 /* disable usb2 ports Wake bits */
Lu Baolua1377e52014-11-18 11:27:14 +0200852 port_index = xhci->num_usb2_ports;
853 port_array = xhci->usb2_ports;
854 while (port_index--) {
855 t1 = readl(port_array[port_index]);
856 t1 = xhci_port_state_to_neutral(t1);
857 t2 = t1 & ~PORT_WAKE_BITS;
858 if (t1 != t2)
859 writel(t2, port_array[port_index]);
860 }
861
862 spin_unlock_irqrestore(&xhci->lock, flags);
863}
864
Andiry Xu5535b1d52010-10-14 07:23:06 -0700865/*
866 * Stop HC (not bus-specific)
867 *
868 * This is called when the machine transition into S3/S4 mode.
869 *
870 */
Lu Baolua1377e52014-11-18 11:27:14 +0200871int xhci_suspend(struct xhci_hcd *xhci, bool do_wakeup)
Andiry Xu5535b1d52010-10-14 07:23:06 -0700872{
873 int rc = 0;
Oliver Neukum455f5892013-09-30 15:50:54 +0200874 unsigned int delay = XHCI_MAX_HALT_USEC;
Andiry Xu5535b1d52010-10-14 07:23:06 -0700875 struct usb_hcd *hcd = xhci_to_hcd(xhci);
876 u32 command;
877
Roger Quadros9fa733f2015-05-29 17:01:50 +0300878 if (!hcd->state)
879 return 0;
880
Felipe Balbi77b84762012-10-19 10:55:16 +0300881 if (hcd->state != HC_STATE_SUSPENDED ||
882 xhci->shared_hcd->state != HC_STATE_SUSPENDED)
883 return -EINVAL;
884
Lu Baolua1377e52014-11-18 11:27:14 +0200885 /* Clear root port wake on bits if wakeup not allowed. */
886 if (!do_wakeup)
887 xhci_disable_port_wake_on_bits(xhci);
888
Sarah Sharpc52804a2012-11-27 12:30:23 -0800889 /* Don't poll the roothubs on bus suspend. */
890 xhci_dbg(xhci, "%s: stopping port polling.\n", __func__);
891 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
892 del_timer_sync(&hcd->rh_timer);
Al Cooper14e61a12014-08-20 16:41:57 +0300893 clear_bit(HCD_FLAG_POLL_RH, &xhci->shared_hcd->flags);
894 del_timer_sync(&xhci->shared_hcd->rh_timer);
Sarah Sharpc52804a2012-11-27 12:30:23 -0800895
Andiry Xu5535b1d52010-10-14 07:23:06 -0700896 spin_lock_irq(&xhci->lock);
897 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Sarah Sharpb32093792011-03-07 11:24:07 -0800898 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700899 /* step 1: stop endpoint */
900 /* skipped assuming that port suspend has done */
901
902 /* step 2: clear Run/Stop bit */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200903 command = readl(&xhci->op_regs->command);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700904 command &= ~CMD_RUN;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200905 writel(command, &xhci->op_regs->command);
Oliver Neukum455f5892013-09-30 15:50:54 +0200906
907 /* Some chips from Fresco Logic need an extraordinary delay */
908 delay *= (xhci->quirks & XHCI_SLOW_SUSPEND) ? 10 : 1;
909
Lin Wangdc0b1772015-01-09 16:06:28 +0200910 if (xhci_handshake(&xhci->op_regs->status,
Oliver Neukum455f5892013-09-30 15:50:54 +0200911 STS_HALT, STS_HALT, delay)) {
Andiry Xu5535b1d52010-10-14 07:23:06 -0700912 xhci_warn(xhci, "WARN: xHC CMD_RUN timeout\n");
913 spin_unlock_irq(&xhci->lock);
914 return -ETIMEDOUT;
915 }
Sarah Sharp89821322010-11-12 11:59:31 -0800916 xhci_clear_command_ring(xhci);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700917
918 /* step 3: save registers */
919 xhci_save_registers(xhci);
920
921 /* step 4: set CSS flag */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200922 command = readl(&xhci->op_regs->command);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700923 command |= CMD_CSS;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200924 writel(command, &xhci->op_regs->command);
Lin Wangdc0b1772015-01-09 16:06:28 +0200925 if (xhci_handshake(&xhci->op_regs->status,
Sarah Sharp2611bd182012-10-25 13:27:51 -0700926 STS_SAVE, 0, 10 * 1000)) {
Andiry Xu622eb782012-06-13 10:51:57 +0800927 xhci_warn(xhci, "WARN: xHC save state timeout\n");
Andiry Xu5535b1d52010-10-14 07:23:06 -0700928 spin_unlock_irq(&xhci->lock);
929 return -ETIMEDOUT;
930 }
Andiry Xu5535b1d52010-10-14 07:23:06 -0700931 spin_unlock_irq(&xhci->lock);
932
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500933 /*
934 * Deleting Compliance Mode Recovery Timer because the xHCI Host
935 * is about to be suspended.
936 */
937 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
938 (!(xhci_all_ports_seen_u0(xhci)))) {
939 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300940 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
941 "%s: compliance mode recovery timer deleted",
Tony Camuso58b1d792013-04-05 14:27:07 -0400942 __func__);
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500943 }
944
Andiry Xu00292272010-12-27 17:39:02 +0800945 /* step 5: remove core well power */
946 /* synchronize irq when using MSI-X */
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700947 xhci_msix_sync_irqs(xhci);
Andiry Xu00292272010-12-27 17:39:02 +0800948
Andiry Xu5535b1d52010-10-14 07:23:06 -0700949 return rc;
950}
Andrew Bresticker436e8c72014-10-03 11:35:28 +0300951EXPORT_SYMBOL_GPL(xhci_suspend);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700952
953/*
954 * start xHC (not bus-specific)
955 *
956 * This is called when the machine transition from S3/S4 mode.
957 *
958 */
959int xhci_resume(struct xhci_hcd *xhci, bool hibernated)
960{
Wang, Yud6236f62014-06-24 17:14:44 +0300961 u32 command, temp = 0, status;
Andiry Xu5535b1d52010-10-14 07:23:06 -0700962 struct usb_hcd *hcd = xhci_to_hcd(xhci);
Sarah Sharp65b22f92010-12-17 12:35:05 -0800963 struct usb_hcd *secondary_hcd;
Alan Sternf69e31202011-11-03 11:37:10 -0400964 int retval = 0;
Tony Camuso77df9e02013-02-21 16:11:27 -0500965 bool comp_timer_running = false;
Andiry Xu5535b1d52010-10-14 07:23:06 -0700966
Roger Quadros9fa733f2015-05-29 17:01:50 +0300967 if (!hcd->state)
968 return 0;
969
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800970 /* Wait a bit if either of the roothubs need to settle from the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300971 * transition into bus suspend.
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800972 */
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800973 if (time_before(jiffies, xhci->bus_state[0].next_statechange) ||
974 time_before(jiffies,
975 xhci->bus_state[1].next_statechange))
Andiry Xu5535b1d52010-10-14 07:23:06 -0700976 msleep(100);
977
Alan Sternf69e31202011-11-03 11:37:10 -0400978 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
979 set_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
980
Andiry Xu5535b1d52010-10-14 07:23:06 -0700981 spin_lock_irq(&xhci->lock);
Maarten Lankhorstc877b3b2011-06-15 23:47:21 +0200982 if (xhci->quirks & XHCI_RESET_ON_RESUME)
983 hibernated = true;
Andiry Xu5535b1d52010-10-14 07:23:06 -0700984
985 if (!hibernated) {
986 /* step 1: restore register */
987 xhci_restore_registers(xhci);
988 /* step 2: initialize command ring buffer */
Sarah Sharp89821322010-11-12 11:59:31 -0800989 xhci_set_cmd_ring_deq(xhci);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700990 /* step 3: restore state and start state*/
991 /* step 3: set CRS flag */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +0200992 command = readl(&xhci->op_regs->command);
Andiry Xu5535b1d52010-10-14 07:23:06 -0700993 command |= CMD_CRS;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +0200994 writel(command, &xhci->op_regs->command);
Lin Wangdc0b1772015-01-09 16:06:28 +0200995 if (xhci_handshake(&xhci->op_regs->status,
Andiry Xu622eb782012-06-13 10:51:57 +0800996 STS_RESTORE, 0, 10 * 1000)) {
997 xhci_warn(xhci, "WARN: xHC restore state timeout\n");
Andiry Xu5535b1d52010-10-14 07:23:06 -0700998 spin_unlock_irq(&xhci->lock);
999 return -ETIMEDOUT;
1000 }
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001001 temp = readl(&xhci->op_regs->status);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001002 }
1003
1004 /* If restore operation fails, re-initialize the HC during resume */
1005 if ((temp & STS_SRE) || hibernated) {
Tony Camuso77df9e02013-02-21 16:11:27 -05001006
1007 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
1008 !(xhci_all_ports_seen_u0(xhci))) {
1009 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001010 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1011 "Compliance Mode Recovery Timer deleted!");
Tony Camuso77df9e02013-02-21 16:11:27 -05001012 }
1013
Sarah Sharpfedd3832011-04-12 17:43:19 -07001014 /* Let the USB core know _both_ roothubs lost power. */
1015 usb_root_hub_lost_power(xhci->main_hcd->self.root_hub);
1016 usb_root_hub_lost_power(xhci->shared_hcd->self.root_hub);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001017
1018 xhci_dbg(xhci, "Stop HCD\n");
1019 xhci_halt(xhci);
1020 xhci_reset(xhci);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001021 spin_unlock_irq(&xhci->lock);
Andiry Xu00292272010-12-27 17:39:02 +08001022 xhci_cleanup_msix(xhci);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001023
Andiry Xu5535b1d52010-10-14 07:23:06 -07001024 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001025 temp = readl(&xhci->op_regs->status);
Lu Baolud1001ab2017-04-07 17:56:50 +03001026 writel((temp & ~0x1fff) | STS_EINT, &xhci->op_regs->status);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001027 temp = readl(&xhci->ir_set->irq_pending);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02001028 writel(ER_IRQ_DISABLE(temp), &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -08001029 xhci_print_ir_set(xhci, 0);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001030
1031 xhci_dbg(xhci, "cleaning up memory\n");
1032 xhci_mem_cleanup(xhci);
1033 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001034 readl(&xhci->op_regs->status));
Andiry Xu5535b1d52010-10-14 07:23:06 -07001035
Sarah Sharp65b22f92010-12-17 12:35:05 -08001036 /* USB core calls the PCI reinit and start functions twice:
1037 * first with the primary HCD, and then with the secondary HCD.
1038 * If we don't do the same, the host will never be started.
1039 */
1040 if (!usb_hcd_is_primary_hcd(hcd))
1041 secondary_hcd = hcd;
1042 else
1043 secondary_hcd = xhci->shared_hcd;
1044
1045 xhci_dbg(xhci, "Initialize the xhci_hcd\n");
1046 retval = xhci_init(hcd->primary_hcd);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001047 if (retval)
1048 return retval;
Tony Camuso77df9e02013-02-21 16:11:27 -05001049 comp_timer_running = true;
1050
Sarah Sharp65b22f92010-12-17 12:35:05 -08001051 xhci_dbg(xhci, "Start the primary HCD\n");
1052 retval = xhci_run(hcd->primary_hcd);
Sarah Sharpb32093792011-03-07 11:24:07 -08001053 if (!retval) {
Alan Sternf69e31202011-11-03 11:37:10 -04001054 xhci_dbg(xhci, "Start the secondary HCD\n");
1055 retval = xhci_run(secondary_hcd);
Sarah Sharpb32093792011-03-07 11:24:07 -08001056 }
Andiry Xu5535b1d52010-10-14 07:23:06 -07001057 hcd->state = HC_STATE_SUSPENDED;
Sarah Sharpb32093792011-03-07 11:24:07 -08001058 xhci->shared_hcd->state = HC_STATE_SUSPENDED;
Alan Sternf69e31202011-11-03 11:37:10 -04001059 goto done;
Andiry Xu5535b1d52010-10-14 07:23:06 -07001060 }
1061
Andiry Xu5535b1d52010-10-14 07:23:06 -07001062 /* step 4: set Run/Stop bit */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001063 command = readl(&xhci->op_regs->command);
Andiry Xu5535b1d52010-10-14 07:23:06 -07001064 command |= CMD_RUN;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02001065 writel(command, &xhci->op_regs->command);
Lin Wangdc0b1772015-01-09 16:06:28 +02001066 xhci_handshake(&xhci->op_regs->status, STS_HALT,
Andiry Xu5535b1d52010-10-14 07:23:06 -07001067 0, 250 * 1000);
1068
1069 /* step 5: walk topology and initialize portsc,
1070 * portpmsc and portli
1071 */
1072 /* this is done in bus_resume */
1073
1074 /* step 6: restart each of the previously
1075 * Running endpoints by ringing their doorbells
1076 */
1077
Andiry Xu5535b1d52010-10-14 07:23:06 -07001078 spin_unlock_irq(&xhci->lock);
Alan Sternf69e31202011-11-03 11:37:10 -04001079
1080 done:
1081 if (retval == 0) {
Wang, Yud6236f62014-06-24 17:14:44 +03001082 /* Resume root hubs only when have pending events. */
1083 status = readl(&xhci->op_regs->status);
1084 if (status & STS_EINT) {
Wang, Yud6236f62014-06-24 17:14:44 +03001085 usb_hcd_resume_root_hub(xhci->shared_hcd);
Mathias Nyman671ffdf2016-04-08 16:25:06 +03001086 usb_hcd_resume_root_hub(hcd);
Wang, Yud6236f62014-06-24 17:14:44 +03001087 }
Alan Sternf69e31202011-11-03 11:37:10 -04001088 }
Alexis R. Cortes71c731a2012-08-03 14:00:27 -05001089
1090 /*
1091 * If system is subject to the Quirk, Compliance Mode Timer needs to
1092 * be re-initialized Always after a system resume. Ports are subject
1093 * to suffer the Compliance Mode issue again. It doesn't matter if
1094 * ports have entered previously to U0 before system's suspension.
1095 */
Tony Camuso77df9e02013-02-21 16:11:27 -05001096 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) && !comp_timer_running)
Alexis R. Cortes71c731a2012-08-03 14:00:27 -05001097 compliance_mode_recovery_timer_init(xhci);
1098
Jiahau Chang9da5a102017-07-20 14:48:27 +03001099 if (xhci->quirks & XHCI_ASMEDIA_MODIFY_FLOWCONTROL)
1100 usb_asmedia_modifyflowcontrol(to_pci_dev(hcd->self.controller));
1101
Sarah Sharpc52804a2012-11-27 12:30:23 -08001102 /* Re-enable port polling. */
1103 xhci_dbg(xhci, "%s: starting port polling.\n", __func__);
Al Cooper14e61a12014-08-20 16:41:57 +03001104 set_bit(HCD_FLAG_POLL_RH, &xhci->shared_hcd->flags);
1105 usb_hcd_poll_rh_status(xhci->shared_hcd);
Mathias Nyman671ffdf2016-04-08 16:25:06 +03001106 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
1107 usb_hcd_poll_rh_status(hcd);
Sarah Sharpc52804a2012-11-27 12:30:23 -08001108
Alan Sternf69e31202011-11-03 11:37:10 -04001109 return retval;
Andiry Xu5535b1d52010-10-14 07:23:06 -07001110}
Andrew Bresticker436e8c72014-10-03 11:35:28 +03001111EXPORT_SYMBOL_GPL(xhci_resume);
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -07001112#endif /* CONFIG_PM */
1113
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001114/*-------------------------------------------------------------------------*/
1115
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001116/**
1117 * xhci_get_endpoint_index - Used for passing endpoint bitmasks between the core and
1118 * HCDs. Find the index for an endpoint given its descriptor. Use the return
1119 * value to right shift 1 for the bitmask.
1120 *
1121 * Index = (epnum * 2) + direction - 1,
1122 * where direction = 0 for OUT, 1 for IN.
1123 * For control endpoints, the IN index is used (OUT index is unused), so
1124 * index = (epnum * 2) + direction - 1 = (epnum * 2) + 1 - 1 = (epnum * 2)
1125 */
1126unsigned int xhci_get_endpoint_index(struct usb_endpoint_descriptor *desc)
1127{
1128 unsigned int index;
1129 if (usb_endpoint_xfer_control(desc))
1130 index = (unsigned int) (usb_endpoint_num(desc)*2);
1131 else
1132 index = (unsigned int) (usb_endpoint_num(desc)*2) +
1133 (usb_endpoint_dir_in(desc) ? 1 : 0) - 1;
1134 return index;
1135}
1136
Julius Werner01c5f442013-04-15 15:55:04 -07001137/* The reverse operation to xhci_get_endpoint_index. Calculate the USB endpoint
1138 * address from the XHCI endpoint index.
1139 */
1140unsigned int xhci_get_endpoint_address(unsigned int ep_index)
1141{
1142 unsigned int number = DIV_ROUND_UP(ep_index, 2);
1143 unsigned int direction = ep_index % 2 ? USB_DIR_OUT : USB_DIR_IN;
1144 return direction | number;
1145}
1146
Sarah Sharpf94e01862009-04-27 19:58:38 -07001147/* Find the flag for this endpoint (for use in the control context). Use the
1148 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
1149 * bit 1, etc.
1150 */
Lu Baolu39693842017-04-07 17:57:04 +03001151static unsigned int xhci_get_endpoint_flag(struct usb_endpoint_descriptor *desc)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001152{
1153 return 1 << (xhci_get_endpoint_index(desc) + 1);
1154}
1155
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001156/* Find the flag for this endpoint (for use in the control context). Use the
1157 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
1158 * bit 1, etc.
1159 */
Lu Baolu39693842017-04-07 17:57:04 +03001160static unsigned int xhci_get_endpoint_flag_from_index(unsigned int ep_index)
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001161{
1162 return 1 << (ep_index + 1);
1163}
1164
Sarah Sharpf94e01862009-04-27 19:58:38 -07001165/* Compute the last valid endpoint context index. Basically, this is the
1166 * endpoint index plus one. For slot contexts with more than valid endpoint,
1167 * we find the most significant bit set in the added contexts flags.
1168 * e.g. ep 1 IN (with epnum 0x81) => added_ctxs = 0b1000
1169 * fls(0b1000) = 4, but the endpoint context index is 3, so subtract one.
1170 */
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001171unsigned int xhci_last_valid_endpoint(u32 added_ctxs)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001172{
1173 return fls(added_ctxs) - 1;
1174}
1175
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001176/* Returns 1 if the arguments are OK;
1177 * returns 0 this is a root hub; returns -EINVAL for NULL pointers.
1178 */
Dmitry Torokhov8212a492011-02-08 13:55:59 -08001179static int xhci_check_args(struct usb_hcd *hcd, struct usb_device *udev,
Andiry Xu64927732010-10-14 07:22:45 -07001180 struct usb_host_endpoint *ep, int check_ep, bool check_virt_dev,
1181 const char *func) {
1182 struct xhci_hcd *xhci;
1183 struct xhci_virt_device *virt_dev;
1184
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001185 if (!hcd || (check_ep && !ep) || !udev) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001186 pr_debug("xHCI %s called with invalid args\n", func);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001187 return -EINVAL;
1188 }
1189 if (!udev->parent) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001190 pr_debug("xHCI %s called for root hub\n", func);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001191 return 0;
1192 }
Andiry Xu64927732010-10-14 07:22:45 -07001193
Sarah Sharp7bd89b42011-07-01 13:35:40 -07001194 xhci = hcd_to_xhci(hcd);
Andiry Xu64927732010-10-14 07:22:45 -07001195 if (check_virt_dev) {
sifram.rajas@gmail.com73ddc242011-09-02 11:06:00 -07001196 if (!udev->slot_id || !xhci->devs[udev->slot_id]) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001197 xhci_dbg(xhci, "xHCI %s called with unaddressed device\n",
1198 func);
Andiry Xu64927732010-10-14 07:22:45 -07001199 return -EINVAL;
1200 }
1201
1202 virt_dev = xhci->devs[udev->slot_id];
1203 if (virt_dev->udev != udev) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001204 xhci_dbg(xhci, "xHCI %s called with udev and "
Andiry Xu64927732010-10-14 07:22:45 -07001205 "virt_dev does not match\n", func);
1206 return -EINVAL;
1207 }
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001208 }
Andiry Xu64927732010-10-14 07:22:45 -07001209
Sarah Sharp203a8662013-07-24 10:27:13 -07001210 if (xhci->xhc_state & XHCI_STATE_HALTED)
1211 return -ENODEV;
1212
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001213 return 1;
1214}
1215
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001216static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001217 struct usb_device *udev, struct xhci_command *command,
1218 bool ctx_change, bool must_succeed);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001219
1220/*
1221 * Full speed devices may have a max packet size greater than 8 bytes, but the
1222 * USB core doesn't know that until it reads the first 8 bytes of the
1223 * descriptor. If the usb_device's max packet size changes after that point,
1224 * we need to issue an evaluate context command and wait on it.
1225 */
1226static int xhci_check_maxpacket(struct xhci_hcd *xhci, unsigned int slot_id,
1227 unsigned int ep_index, struct urb *urb)
1228{
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001229 struct xhci_container_ctx *out_ctx;
1230 struct xhci_input_control_ctx *ctrl_ctx;
1231 struct xhci_ep_ctx *ep_ctx;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001232 struct xhci_command *command;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001233 int max_packet_size;
1234 int hw_max_packet_size;
1235 int ret = 0;
1236
1237 out_ctx = xhci->devs[slot_id]->out_ctx;
1238 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Matt Evans28ccd292011-03-29 13:40:46 +11001239 hw_max_packet_size = MAX_PACKET_DECODED(le32_to_cpu(ep_ctx->ep_info2));
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001240 max_packet_size = usb_endpoint_maxp(&urb->dev->ep0.desc);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001241 if (hw_max_packet_size != max_packet_size) {
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001242 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1243 "Max Packet Size for ep 0 changed.");
1244 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1245 "Max packet size in usb_device = %d",
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001246 max_packet_size);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001247 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1248 "Max packet size in xHCI HW = %d",
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001249 hw_max_packet_size);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001250 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1251 "Issuing evaluate context command.");
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001252
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001253 /* Set up the input context flags for the command */
1254 /* FIXME: This won't work if a non-default control endpoint
1255 * changes max packet sizes.
1256 */
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001257
1258 command = xhci_alloc_command(xhci, false, true, GFP_KERNEL);
1259 if (!command)
1260 return -ENOMEM;
1261
1262 command->in_ctx = xhci->devs[slot_id]->in_ctx;
Lin Wang4daf9df2015-01-09 16:06:31 +02001263 ctrl_ctx = xhci_get_input_control_ctx(command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001264 if (!ctrl_ctx) {
1265 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1266 __func__);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001267 ret = -ENOMEM;
1268 goto command_cleanup;
Sarah Sharp92f8e762013-04-23 17:11:14 -07001269 }
1270 /* Set up the modified control endpoint 0 */
1271 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
1272 xhci->devs[slot_id]->out_ctx, ep_index);
1273
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001274 ep_ctx = xhci_get_ep_ctx(xhci, command->in_ctx, ep_index);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001275 ep_ctx->ep_info2 &= cpu_to_le32(~MAX_PACKET_MASK);
1276 ep_ctx->ep_info2 |= cpu_to_le32(MAX_PACKET(max_packet_size));
1277
Matt Evans28ccd292011-03-29 13:40:46 +11001278 ctrl_ctx->add_flags = cpu_to_le32(EP0_FLAG);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001279 ctrl_ctx->drop_flags = 0;
1280
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001281 ret = xhci_configure_endpoint(xhci, urb->dev, command,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001282 true, false);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001283
1284 /* Clean up the input context for later use by bandwidth
1285 * functions.
1286 */
Matt Evans28ccd292011-03-29 13:40:46 +11001287 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001288command_cleanup:
1289 kfree(command->completion);
1290 kfree(command);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001291 }
1292 return ret;
1293}
1294
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001295/*
1296 * non-error returns are a promise to giveback() the urb later
1297 * we drop ownership so next owner (or urb unlink) can get it
1298 */
Lu Baolu39693842017-04-07 17:57:04 +03001299static int xhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, gfp_t mem_flags)
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001300{
1301 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
1302 unsigned long flags;
1303 int ret = 0;
Mathias Nyman69694082017-01-23 14:20:27 +02001304 unsigned int slot_id, ep_index, ep_state;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001305 struct urb_priv *urb_priv;
Mathias Nyman7e64b032017-01-23 14:20:26 +02001306 int num_tds;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001307
Andiry Xu64927732010-10-14 07:22:45 -07001308 if (!urb || xhci_check_args(hcd, urb->dev, urb->ep,
1309 true, true, __func__) <= 0)
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001310 return -EINVAL;
1311
1312 slot_id = urb->dev->slot_id;
1313 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001314
Alan Stern541c7d42010-06-22 16:39:10 -04001315 if (!HCD_HW_ACCESSIBLE(hcd)) {
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001316 if (!in_interrupt())
1317 xhci_dbg(xhci, "urb submitted during PCI suspend\n");
Mathias Nyman69694082017-01-23 14:20:27 +02001318 return -ESHUTDOWN;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001319 }
Andiry Xu8e51adc2010-07-22 15:23:31 -07001320
1321 if (usb_endpoint_xfer_isoc(&urb->ep->desc))
Mathias Nymane6f7caa2017-01-23 14:20:24 +02001322 num_tds = urb->number_of_packets;
Reyad Attiyat4758dcd2015-08-06 19:23:58 +03001323 else if (usb_endpoint_is_bulk_out(&urb->ep->desc) &&
1324 urb->transfer_buffer_length > 0 &&
1325 urb->transfer_flags & URB_ZERO_PACKET &&
1326 !(urb->transfer_buffer_length % usb_endpoint_maxp(&urb->ep->desc)))
Mathias Nymane6f7caa2017-01-23 14:20:24 +02001327 num_tds = 2;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001328 else
Mathias Nymane6f7caa2017-01-23 14:20:24 +02001329 num_tds = 1;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001330
1331 urb_priv = kzalloc(sizeof(struct urb_priv) +
Mathias Nyman7e64b032017-01-23 14:20:26 +02001332 num_tds * sizeof(struct xhci_td), mem_flags);
Andiry Xu8e51adc2010-07-22 15:23:31 -07001333 if (!urb_priv)
1334 return -ENOMEM;
1335
Mathias Nyman9ef7fbb2017-01-23 14:20:25 +02001336 urb_priv->num_tds = num_tds;
1337 urb_priv->num_tds_done = 0;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001338 urb->hcpriv = urb_priv;
1339
Felipe Balbi5abdc2e2017-01-23 14:20:20 +02001340 trace_xhci_urb_enqueue(urb);
1341
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001342 if (usb_endpoint_xfer_control(&urb->ep->desc)) {
1343 /* Check to see if the max packet size for the default control
1344 * endpoint changed during FS device enumeration
1345 */
1346 if (urb->dev->speed == USB_SPEED_FULL) {
1347 ret = xhci_check_maxpacket(xhci, slot_id,
1348 ep_index, urb);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001349 if (ret < 0) {
Lin Wang4daf9df2015-01-09 16:06:31 +02001350 xhci_urb_free_priv(urb_priv);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001351 urb->hcpriv = NULL;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001352 return ret;
Sarah Sharpd13565c2011-07-22 14:34:34 -07001353 }
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001354 }
Mathias Nyman69694082017-01-23 14:20:27 +02001355 }
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001356
Mathias Nyman69694082017-01-23 14:20:27 +02001357 spin_lock_irqsave(&xhci->lock, flags);
1358
1359 if (xhci->xhc_state & XHCI_STATE_DYING) {
1360 xhci_dbg(xhci, "Ep 0x%x: URB %p submitted for non-responsive xHCI host.\n",
1361 urb->ep->desc.bEndpointAddress, urb);
1362 ret = -ESHUTDOWN;
1363 goto free_priv;
1364 }
1365
1366 switch (usb_endpoint_type(&urb->ep->desc)) {
1367
1368 case USB_ENDPOINT_XFER_CONTROL:
Sarah Sharpb11069f2009-07-27 12:03:23 -07001369 ret = xhci_queue_ctrl_tx(xhci, GFP_ATOMIC, urb,
Mathias Nyman69694082017-01-23 14:20:27 +02001370 slot_id, ep_index);
1371 break;
1372 case USB_ENDPOINT_XFER_BULK:
1373 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
1374 if (ep_state & (EP_GETTING_STREAMS | EP_GETTING_NO_STREAMS)) {
1375 xhci_warn(xhci, "WARN: Can't enqueue URB, ep in streams transition state %x\n",
1376 ep_state);
Sarah Sharp8df75f42010-04-02 15:34:16 -07001377 ret = -EINVAL;
Mathias Nyman69694082017-01-23 14:20:27 +02001378 break;
Sarah Sharp8df75f42010-04-02 15:34:16 -07001379 }
Mathias Nyman69694082017-01-23 14:20:27 +02001380 ret = xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb,
1381 slot_id, ep_index);
1382 break;
1383
1384
1385 case USB_ENDPOINT_XFER_INT:
Sarah Sharp624defa2009-09-02 12:14:28 -07001386 ret = xhci_queue_intr_tx(xhci, GFP_ATOMIC, urb,
1387 slot_id, ep_index);
Mathias Nyman69694082017-01-23 14:20:27 +02001388 break;
1389
1390 case USB_ENDPOINT_XFER_ISOC:
Andiry Xu787f4e52010-07-22 15:23:52 -07001391 ret = xhci_queue_isoc_tx_prepare(xhci, GFP_ATOMIC, urb,
1392 slot_id, ep_index);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001393 }
Mathias Nyman69694082017-01-23 14:20:27 +02001394
1395 if (ret) {
Sarah Sharpd13565c2011-07-22 14:34:34 -07001396free_priv:
Mathias Nyman69694082017-01-23 14:20:27 +02001397 xhci_urb_free_priv(urb_priv);
1398 urb->hcpriv = NULL;
1399 }
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001400 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001401 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001402}
1403
Sarah Sharpae636742009-04-29 19:02:31 -07001404/*
1405 * Remove the URB's TD from the endpoint ring. This may cause the HC to stop
1406 * USB transfers, potentially stopping in the middle of a TRB buffer. The HC
1407 * should pick up where it left off in the TD, unless a Set Transfer Ring
1408 * Dequeue Pointer is issued.
1409 *
1410 * The TRBs that make up the buffers for the canceled URB will be "removed" from
1411 * the ring. Since the ring is a contiguous structure, they can't be physically
1412 * removed. Instead, there are two options:
1413 *
1414 * 1) If the HC is in the middle of processing the URB to be canceled, we
1415 * simply move the ring's dequeue pointer past those TRBs using the Set
1416 * Transfer Ring Dequeue Pointer command. This will be the common case,
1417 * when drivers timeout on the last submitted URB and attempt to cancel.
1418 *
1419 * 2) If the HC is in the middle of a different TD, we turn the TRBs into a
1420 * series of 1-TRB transfer no-op TDs. (No-ops shouldn't be chained.) The
1421 * HC will need to invalidate the any TRBs it has cached after the stop
1422 * endpoint command, as noted in the xHCI 0.95 errata.
1423 *
1424 * 3) The TD may have completed by the time the Stop Endpoint Command
1425 * completes, so software needs to handle that case too.
1426 *
1427 * This function should protect against the TD enqueueing code ringing the
1428 * doorbell while this code is waiting for a Stop Endpoint command to complete.
1429 * It also needs to account for multiple cancellations on happening at the same
1430 * time for the same endpoint.
1431 *
1432 * Note that this function can be called in any context, or so says
1433 * usb_hcd_unlink_urb()
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001434 */
Lu Baolu39693842017-04-07 17:57:04 +03001435static int xhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001436{
Sarah Sharpae636742009-04-29 19:02:31 -07001437 unsigned long flags;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001438 int ret, i;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001439 u32 temp;
Sarah Sharpae636742009-04-29 19:02:31 -07001440 struct xhci_hcd *xhci;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001441 struct urb_priv *urb_priv;
Sarah Sharpae636742009-04-29 19:02:31 -07001442 struct xhci_td *td;
1443 unsigned int ep_index;
1444 struct xhci_ring *ep_ring;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001445 struct xhci_virt_ep *ep;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001446 struct xhci_command *command;
Mathias Nymand3519b92017-03-28 15:55:30 +03001447 struct xhci_virt_device *vdev;
Sarah Sharpae636742009-04-29 19:02:31 -07001448
1449 xhci = hcd_to_xhci(hcd);
1450 spin_lock_irqsave(&xhci->lock, flags);
Felipe Balbi5abdc2e2017-01-23 14:20:20 +02001451
1452 trace_xhci_urb_dequeue(urb);
1453
Sarah Sharpae636742009-04-29 19:02:31 -07001454 /* Make sure the URB hasn't completed or been unlinked already */
1455 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
Mathias Nymand3519b92017-03-28 15:55:30 +03001456 if (ret)
Sarah Sharpae636742009-04-29 19:02:31 -07001457 goto done;
Mathias Nymand3519b92017-03-28 15:55:30 +03001458
1459 /* give back URB now if we can't queue it for cancel */
1460 vdev = xhci->devs[urb->dev->slot_id];
1461 urb_priv = urb->hcpriv;
1462 if (!vdev || !urb_priv)
1463 goto err_giveback;
1464
1465 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
1466 ep = &vdev->eps[ep_index];
1467 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
1468 if (!ep || !ep_ring)
1469 goto err_giveback;
1470
Mathias Nymand9f11ba2017-04-07 17:57:01 +03001471 /* If xHC is dead take it down and return ALL URBs in xhci_hc_died() */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02001472 temp = readl(&xhci->op_regs->status);
Mathias Nymand9f11ba2017-04-07 17:57:01 +03001473 if (temp == ~(u32)0 || xhci->xhc_state & XHCI_STATE_DYING) {
1474 xhci_hc_died(xhci);
1475 goto done;
1476 }
1477
1478 if (xhci->xhc_state & XHCI_STATE_HALTED) {
Xenia Ragiadakouaa50b292013-08-14 06:33:54 +03001479 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
Mathias Nymand9f11ba2017-04-07 17:57:01 +03001480 "HC halted, freeing TD manually.");
Mathias Nyman9ef7fbb2017-01-23 14:20:25 +02001481 for (i = urb_priv->num_tds_done;
Mathias Nymand3519b92017-03-28 15:55:30 +03001482 i < urb_priv->num_tds;
Mathias Nyman5c821712016-01-26 17:50:12 +02001483 i++) {
Mathias Nyman7e64b032017-01-23 14:20:26 +02001484 td = &urb_priv->td[i];
Sarah Sharp585df1d2011-08-02 15:43:40 -07001485 if (!list_empty(&td->td_list))
1486 list_del_init(&td->td_list);
1487 if (!list_empty(&td->cancelled_td_list))
1488 list_del_init(&td->cancelled_td_list);
1489 }
Mathias Nymand3519b92017-03-28 15:55:30 +03001490 goto err_giveback;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001491 }
Sarah Sharpae636742009-04-29 19:02:31 -07001492
Mathias Nyman9ef7fbb2017-01-23 14:20:25 +02001493 i = urb_priv->num_tds_done;
1494 if (i < urb_priv->num_tds)
Xenia Ragiadakouaa50b292013-08-14 06:33:54 +03001495 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
1496 "Cancel URB %p, dev %s, ep 0x%x, "
1497 "starting at offset 0x%llx",
Sarah Sharp79688ac2011-12-19 16:56:04 -08001498 urb, urb->dev->devpath,
1499 urb->ep->desc.bEndpointAddress,
1500 (unsigned long long) xhci_trb_virt_to_dma(
Mathias Nyman7e64b032017-01-23 14:20:26 +02001501 urb_priv->td[i].start_seg,
1502 urb_priv->td[i].first_trb));
Andiry Xu8e51adc2010-07-22 15:23:31 -07001503
Mathias Nyman9ef7fbb2017-01-23 14:20:25 +02001504 for (; i < urb_priv->num_tds; i++) {
Mathias Nyman7e64b032017-01-23 14:20:26 +02001505 td = &urb_priv->td[i];
Andiry Xu8e51adc2010-07-22 15:23:31 -07001506 list_add_tail(&td->cancelled_td_list, &ep->cancelled_td_list);
1507 }
1508
Sarah Sharpae636742009-04-29 19:02:31 -07001509 /* Queue a stop endpoint command, but only if this is
1510 * the first cancellation to be handled.
1511 */
Mathias Nyman9983a5f2017-01-23 14:19:52 +02001512 if (!(ep->ep_state & EP_STOP_CMD_PENDING)) {
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001513 command = xhci_alloc_command(xhci, false, false, GFP_ATOMIC);
Hans de Goedea0ee6192014-07-25 22:01:21 +02001514 if (!command) {
1515 ret = -ENOMEM;
1516 goto done;
1517 }
Mathias Nyman9983a5f2017-01-23 14:19:52 +02001518 ep->ep_state |= EP_STOP_CMD_PENDING;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001519 ep->stop_cmd_timer.expires = jiffies +
1520 XHCI_STOP_EP_CMD_TIMEOUT * HZ;
1521 add_timer(&ep->stop_cmd_timer);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03001522 xhci_queue_stop_endpoint(xhci, command, urb->dev->slot_id,
1523 ep_index, 0);
Sarah Sharp23e3be12009-04-29 19:05:20 -07001524 xhci_ring_cmd_db(xhci);
Sarah Sharpae636742009-04-29 19:02:31 -07001525 }
1526done:
1527 spin_unlock_irqrestore(&xhci->lock, flags);
1528 return ret;
Mathias Nymand3519b92017-03-28 15:55:30 +03001529
1530err_giveback:
1531 if (urb_priv)
1532 xhci_urb_free_priv(urb_priv);
1533 usb_hcd_unlink_urb_from_ep(hcd, urb);
1534 spin_unlock_irqrestore(&xhci->lock, flags);
1535 usb_hcd_giveback_urb(hcd, urb, -ESHUTDOWN);
1536 return ret;
Sarah Sharpd0e96f52009-04-27 19:58:01 -07001537}
1538
Sarah Sharpf94e01862009-04-27 19:58:38 -07001539/* Drop an endpoint from a new bandwidth configuration for this device.
1540 * Only one call to this function is allowed per endpoint before
1541 * check_bandwidth() or reset_bandwidth() must be called.
1542 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1543 * add the endpoint to the schedule with possibly new parameters denoted by a
1544 * different endpoint descriptor in usb_host_endpoint.
1545 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1546 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001547 *
1548 * The USB core will not allow URBs to be queued to an endpoint that is being
1549 * disabled, so there's no need for mutual exclusion to protect
1550 * the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001551 */
Lu Baolu39693842017-04-07 17:57:04 +03001552static int xhci_drop_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
Sarah Sharpf94e01862009-04-27 19:58:38 -07001553 struct usb_host_endpoint *ep)
1554{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001555 struct xhci_hcd *xhci;
John Yound115b042009-07-27 12:05:15 -07001556 struct xhci_container_ctx *in_ctx, *out_ctx;
1557 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001558 unsigned int ep_index;
1559 struct xhci_ep_ctx *ep_ctx;
1560 u32 drop_flag;
Julius Wernerd6759132014-06-24 17:14:42 +03001561 u32 new_add_flags, new_drop_flags;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001562 int ret;
1563
Andiry Xu64927732010-10-14 07:22:45 -07001564 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001565 if (ret <= 0)
1566 return ret;
1567 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001568 if (xhci->xhc_state & XHCI_STATE_DYING)
1569 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001570
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001571 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001572 drop_flag = xhci_get_endpoint_flag(&ep->desc);
1573 if (drop_flag == SLOT_FLAG || drop_flag == EP0_FLAG) {
1574 xhci_dbg(xhci, "xHCI %s - can't drop slot or ep 0 %#x\n",
1575 __func__, drop_flag);
1576 return 0;
1577 }
1578
Sarah Sharpf94e01862009-04-27 19:58:38 -07001579 in_ctx = xhci->devs[udev->slot_id]->in_ctx;
John Yound115b042009-07-27 12:05:15 -07001580 out_ctx = xhci->devs[udev->slot_id]->out_ctx;
Lin Wang4daf9df2015-01-09 16:06:31 +02001581 ctrl_ctx = xhci_get_input_control_ctx(in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001582 if (!ctrl_ctx) {
1583 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1584 __func__);
1585 return 0;
1586 }
1587
Sarah Sharpf94e01862009-04-27 19:58:38 -07001588 ep_index = xhci_get_endpoint_index(&ep->desc);
John Yound115b042009-07-27 12:05:15 -07001589 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001590 /* If the HC already knows the endpoint is disabled,
1591 * or the HCD has noted it is disabled, ignore this request
1592 */
Mathias Nyman5071e6b2016-11-11 15:13:28 +02001593 if ((GET_EP_CTX_STATE(ep_ctx) == EP_STATE_DISABLED) ||
Matt Evans28ccd292011-03-29 13:40:46 +11001594 le32_to_cpu(ctrl_ctx->drop_flags) &
1595 xhci_get_endpoint_flag(&ep->desc)) {
Hans de Goedea6134132015-01-16 17:54:02 +02001596 /* Do not warn when called after a usb_device_reset */
1597 if (xhci->devs[udev->slot_id]->eps[ep_index].ring != NULL)
1598 xhci_warn(xhci, "xHCI %s called with disabled ep %p\n",
1599 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001600 return 0;
1601 }
1602
Matt Evans28ccd292011-03-29 13:40:46 +11001603 ctrl_ctx->drop_flags |= cpu_to_le32(drop_flag);
1604 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001605
Matt Evans28ccd292011-03-29 13:40:46 +11001606 ctrl_ctx->add_flags &= cpu_to_le32(~drop_flag);
1607 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001608
Lu Baolu02b6fdc2017-10-05 11:21:39 +03001609 xhci_debugfs_remove_endpoint(xhci, xhci->devs[udev->slot_id], ep_index);
1610
Sarah Sharpf94e01862009-04-27 19:58:38 -07001611 xhci_endpoint_zero(xhci, xhci->devs[udev->slot_id], ep);
1612
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +02001613 if (xhci->quirks & XHCI_MTK_HOST)
1614 xhci_mtk_drop_ep_quirk(hcd, udev, ep);
1615
Julius Wernerd6759132014-06-24 17:14:42 +03001616 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 -07001617 (unsigned int) ep->desc.bEndpointAddress,
1618 udev->slot_id,
1619 (unsigned int) new_drop_flags,
Julius Wernerd6759132014-06-24 17:14:42 +03001620 (unsigned int) new_add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001621 return 0;
1622}
1623
1624/* Add an endpoint to a new possible bandwidth configuration for this device.
1625 * Only one call to this function is allowed per endpoint before
1626 * check_bandwidth() or reset_bandwidth() must be called.
1627 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1628 * add the endpoint to the schedule with possibly new parameters denoted by a
1629 * different endpoint descriptor in usb_host_endpoint.
1630 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1631 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001632 *
1633 * The USB core will not allow URBs to be queued to an endpoint until the
1634 * configuration or alt setting is installed in the device, so there's no need
1635 * for mutual exclusion to protect the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001636 */
Lu Baolu39693842017-04-07 17:57:04 +03001637static int xhci_add_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
Sarah Sharpf94e01862009-04-27 19:58:38 -07001638 struct usb_host_endpoint *ep)
1639{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001640 struct xhci_hcd *xhci;
Lin Wang92c96912015-01-09 16:06:27 +02001641 struct xhci_container_ctx *in_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001642 unsigned int ep_index;
John Yound115b042009-07-27 12:05:15 -07001643 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001644 u32 added_ctxs;
Julius Wernerd6759132014-06-24 17:14:42 +03001645 u32 new_add_flags, new_drop_flags;
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001646 struct xhci_virt_device *virt_dev;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001647 int ret = 0;
1648
Andiry Xu64927732010-10-14 07:22:45 -07001649 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpa1587d92009-07-27 12:03:15 -07001650 if (ret <= 0) {
1651 /* So we won't queue a reset ep command for a root hub */
1652 ep->hcpriv = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001653 return ret;
Sarah Sharpa1587d92009-07-27 12:03:15 -07001654 }
Sarah Sharpf94e01862009-04-27 19:58:38 -07001655 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001656 if (xhci->xhc_state & XHCI_STATE_DYING)
1657 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001658
1659 added_ctxs = xhci_get_endpoint_flag(&ep->desc);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001660 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) {
1661 /* FIXME when we have to issue an evaluate endpoint command to
1662 * deal with ep0 max packet size changing once we get the
1663 * descriptors
1664 */
1665 xhci_dbg(xhci, "xHCI %s - can't add slot or ep 0 %#x\n",
1666 __func__, added_ctxs);
1667 return 0;
1668 }
1669
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001670 virt_dev = xhci->devs[udev->slot_id];
1671 in_ctx = virt_dev->in_ctx;
Lin Wang4daf9df2015-01-09 16:06:31 +02001672 ctrl_ctx = xhci_get_input_control_ctx(in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001673 if (!ctrl_ctx) {
1674 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1675 __func__);
1676 return 0;
1677 }
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001678
Sarah Sharp92f8e762013-04-23 17:11:14 -07001679 ep_index = xhci_get_endpoint_index(&ep->desc);
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001680 /* If this endpoint is already in use, and the upper layers are trying
1681 * to add it again without dropping it, reject the addition.
1682 */
1683 if (virt_dev->eps[ep_index].ring &&
Lin Wang92c96912015-01-09 16:06:27 +02001684 !(le32_to_cpu(ctrl_ctx->drop_flags) & added_ctxs)) {
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001685 xhci_warn(xhci, "Trying to add endpoint 0x%x "
1686 "without dropping it.\n",
1687 (unsigned int) ep->desc.bEndpointAddress);
1688 return -EINVAL;
1689 }
1690
Sarah Sharpf94e01862009-04-27 19:58:38 -07001691 /* If the HCD has already noted the endpoint is enabled,
1692 * ignore this request.
1693 */
Lin Wang92c96912015-01-09 16:06:27 +02001694 if (le32_to_cpu(ctrl_ctx->add_flags) & added_ctxs) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001695 xhci_warn(xhci, "xHCI %s called with enabled ep %p\n",
1696 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001697 return 0;
1698 }
1699
Sarah Sharpf88ba782009-05-14 11:44:22 -07001700 /*
1701 * Configuration and alternate setting changes must be done in
1702 * process context, not interrupt context (or so documenation
1703 * for usb_set_interface() and usb_set_configuration() claim).
1704 */
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001705 if (xhci_endpoint_init(xhci, virt_dev, udev, ep, GFP_NOIO) < 0) {
Sarah Sharpf94e01862009-04-27 19:58:38 -07001706 dev_dbg(&udev->dev, "%s - could not initialize ep %#x\n",
1707 __func__, ep->desc.bEndpointAddress);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001708 return -ENOMEM;
1709 }
1710
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +02001711 if (xhci->quirks & XHCI_MTK_HOST) {
1712 ret = xhci_mtk_add_ep_quirk(hcd, udev, ep);
1713 if (ret < 0) {
Mathias Nymanc5628a22017-06-15 11:55:42 +03001714 xhci_free_endpoint_ring(xhci, virt_dev, ep_index);
Chunfeng Yun0cbd4b32015-11-24 13:09:55 +02001715 return ret;
1716 }
1717 }
1718
Matt Evans28ccd292011-03-29 13:40:46 +11001719 ctrl_ctx->add_flags |= cpu_to_le32(added_ctxs);
1720 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001721
1722 /* If xhci_endpoint_disable() was called for this endpoint, but the
1723 * xHC hasn't been notified yet through the check_bandwidth() call,
1724 * this re-adds a new state for the endpoint from the new endpoint
1725 * descriptors. We must drop and re-add this endpoint, so we leave the
1726 * drop flags alone.
1727 */
Matt Evans28ccd292011-03-29 13:40:46 +11001728 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001729
Sarah Sharpa1587d92009-07-27 12:03:15 -07001730 /* Store the usb_device pointer for later use */
1731 ep->hcpriv = udev;
1732
Lu Baolu02b6fdc2017-10-05 11:21:39 +03001733 xhci_debugfs_create_endpoint(xhci, virt_dev, ep_index);
1734
Julius Wernerd6759132014-06-24 17:14:42 +03001735 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 -07001736 (unsigned int) ep->desc.bEndpointAddress,
1737 udev->slot_id,
1738 (unsigned int) new_drop_flags,
Julius Wernerd6759132014-06-24 17:14:42 +03001739 (unsigned int) new_add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001740 return 0;
1741}
1742
John Yound115b042009-07-27 12:05:15 -07001743static void xhci_zero_in_ctx(struct xhci_hcd *xhci, struct xhci_virt_device *virt_dev)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001744{
John Yound115b042009-07-27 12:05:15 -07001745 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001746 struct xhci_ep_ctx *ep_ctx;
John Yound115b042009-07-27 12:05:15 -07001747 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001748 int i;
1749
Lin Wang4daf9df2015-01-09 16:06:31 +02001750 ctrl_ctx = xhci_get_input_control_ctx(virt_dev->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001751 if (!ctrl_ctx) {
1752 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1753 __func__);
1754 return;
1755 }
1756
Sarah Sharpf94e01862009-04-27 19:58:38 -07001757 /* When a device's add flag and drop flag are zero, any subsequent
1758 * configure endpoint command will leave that endpoint's state
1759 * untouched. Make sure we don't leave any old state in the input
1760 * endpoint contexts.
1761 */
John Yound115b042009-07-27 12:05:15 -07001762 ctrl_ctx->drop_flags = 0;
1763 ctrl_ctx->add_flags = 0;
1764 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11001765 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001766 /* Endpoint 0 is always valid */
Matt Evans28ccd292011-03-29 13:40:46 +11001767 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(1));
Felipe Balbi98871e92017-01-23 14:20:04 +02001768 for (i = 1; i < 31; i++) {
John Yound115b042009-07-27 12:05:15 -07001769 ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->in_ctx, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001770 ep_ctx->ep_info = 0;
1771 ep_ctx->ep_info2 = 0;
Sarah Sharp8e595a52009-07-27 12:03:31 -07001772 ep_ctx->deq = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001773 ep_ctx->tx_info = 0;
1774 }
1775}
1776
Sarah Sharpf2217e82009-08-07 14:04:43 -07001777static int xhci_configure_endpoint_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001778 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001779{
1780 int ret;
1781
Sarah Sharp913a8a32009-09-04 10:53:13 -07001782 switch (*cmd_status) {
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001783 case COMP_COMMAND_ABORTED:
Mathias Nyman604d02a2017-05-17 18:32:05 +03001784 case COMP_COMMAND_RING_STOPPED:
Mathias Nymanc311e392014-05-08 19:26:03 +03001785 xhci_warn(xhci, "Timeout while waiting for configure endpoint command\n");
1786 ret = -ETIME;
1787 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001788 case COMP_RESOURCE_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001789 dev_warn(&udev->dev,
1790 "Not enough host controller resources for new device state.\n");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001791 ret = -ENOMEM;
1792 /* FIXME: can we allocate more resources for the HC? */
1793 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001794 case COMP_BANDWIDTH_ERROR:
1795 case COMP_SECONDARY_BANDWIDTH_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001796 dev_warn(&udev->dev,
1797 "Not enough bandwidth for new device state.\n");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001798 ret = -ENOSPC;
1799 /* FIXME: can we go back to the old state? */
1800 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001801 case COMP_TRB_ERROR:
Sarah Sharpf2217e82009-08-07 14:04:43 -07001802 /* the HCD set up something wrong */
1803 dev_warn(&udev->dev, "ERROR: Endpoint drop flag = 0, "
1804 "add flag = 1, "
1805 "and endpoint is not disabled.\n");
1806 ret = -EINVAL;
1807 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001808 case COMP_INCOMPATIBLE_DEVICE_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001809 dev_warn(&udev->dev,
1810 "ERROR: Incompatible device for endpoint configure command.\n");
Alex Hef6ba6fe2011-06-08 18:34:06 +08001811 ret = -ENODEV;
1812 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001813 case COMP_SUCCESS:
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001814 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1815 "Successful Endpoint Configure command");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001816 ret = 0;
1817 break;
1818 default:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001819 xhci_err(xhci, "ERROR: unexpected command completion code 0x%x.\n",
1820 *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001821 ret = -EINVAL;
1822 break;
1823 }
1824 return ret;
1825}
1826
1827static int xhci_evaluate_context_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001828 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001829{
1830 int ret;
1831
Sarah Sharp913a8a32009-09-04 10:53:13 -07001832 switch (*cmd_status) {
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001833 case COMP_COMMAND_ABORTED:
Mathias Nyman604d02a2017-05-17 18:32:05 +03001834 case COMP_COMMAND_RING_STOPPED:
Mathias Nymanc311e392014-05-08 19:26:03 +03001835 xhci_warn(xhci, "Timeout while waiting for evaluate context command\n");
1836 ret = -ETIME;
1837 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001838 case COMP_PARAMETER_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001839 dev_warn(&udev->dev,
1840 "WARN: xHCI driver setup invalid evaluate context command.\n");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001841 ret = -EINVAL;
1842 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001843 case COMP_SLOT_NOT_ENABLED_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001844 dev_warn(&udev->dev,
1845 "WARN: slot not enabled for evaluate context command.\n");
Sarah Sharpb8031342012-10-16 13:26:22 -07001846 ret = -EINVAL;
1847 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001848 case COMP_CONTEXT_STATE_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001849 dev_warn(&udev->dev,
1850 "WARN: invalid context state for evaluate context command.\n");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001851 ret = -EINVAL;
1852 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001853 case COMP_INCOMPATIBLE_DEVICE_ERROR:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001854 dev_warn(&udev->dev,
1855 "ERROR: Incompatible device for evaluate context command.\n");
Alex Hef6ba6fe2011-06-08 18:34:06 +08001856 ret = -ENODEV;
1857 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02001858 case COMP_MAX_EXIT_LATENCY_TOO_LARGE_ERROR:
Alex He1bb73a82011-05-05 18:14:12 +08001859 /* Max Exit Latency too large error */
1860 dev_warn(&udev->dev, "WARN: Max Exit Latency too large\n");
1861 ret = -EINVAL;
1862 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001863 case COMP_SUCCESS:
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001864 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1865 "Successful evaluate context command");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001866 ret = 0;
1867 break;
1868 default:
Oliver Neukum288c0f42014-06-02 15:25:17 +02001869 xhci_err(xhci, "ERROR: unexpected command completion code 0x%x.\n",
1870 *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001871 ret = -EINVAL;
1872 break;
1873 }
1874 return ret;
1875}
1876
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001877static u32 xhci_count_num_new_endpoints(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001878 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001879{
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001880 u32 valid_add_flags;
1881 u32 valid_drop_flags;
1882
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001883 /* Ignore the slot flag (bit 0), and the default control endpoint flag
1884 * (bit 1). The default control endpoint is added during the Address
1885 * Device command and is never removed until the slot is disabled.
1886 */
Xenia Ragiadakouef734002013-09-09 21:03:06 +03001887 valid_add_flags = le32_to_cpu(ctrl_ctx->add_flags) >> 2;
1888 valid_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags) >> 2;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001889
1890 /* Use hweight32 to count the number of ones in the add flags, or
1891 * number of endpoints added. Don't count endpoints that are changed
1892 * (both added and dropped).
1893 */
1894 return hweight32(valid_add_flags) -
1895 hweight32(valid_add_flags & valid_drop_flags);
1896}
1897
1898static unsigned int xhci_count_num_dropped_endpoints(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001899 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001900{
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001901 u32 valid_add_flags;
1902 u32 valid_drop_flags;
1903
Xenia Ragiadakou78d1ff02013-09-09 21:03:07 +03001904 valid_add_flags = le32_to_cpu(ctrl_ctx->add_flags) >> 2;
1905 valid_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags) >> 2;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001906
1907 return hweight32(valid_drop_flags) -
1908 hweight32(valid_add_flags & valid_drop_flags);
1909}
1910
1911/*
1912 * We need to reserve the new number of endpoints before the configure endpoint
1913 * command completes. We can't subtract the dropped endpoints from the number
1914 * of active endpoints until the command completes because we can oversubscribe
1915 * the host in this case:
1916 *
1917 * - the first configure endpoint command drops more endpoints than it adds
1918 * - a second configure endpoint command that adds more endpoints is queued
1919 * - the first configure endpoint command fails, so the config is unchanged
1920 * - the second command may succeed, even though there isn't enough resources
1921 *
1922 * Must be called with xhci->lock held.
1923 */
1924static int xhci_reserve_host_resources(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001925 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001926{
1927 u32 added_eps;
1928
Sarah Sharp92f8e762013-04-23 17:11:14 -07001929 added_eps = xhci_count_num_new_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001930 if (xhci->num_active_eps + added_eps > xhci->limit_active_eps) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001931 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1932 "Not enough ep ctxs: "
1933 "%u active, need to add %u, limit is %u.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001934 xhci->num_active_eps, added_eps,
1935 xhci->limit_active_eps);
1936 return -ENOMEM;
1937 }
1938 xhci->num_active_eps += added_eps;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001939 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1940 "Adding %u ep ctxs, %u now active.", added_eps,
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001941 xhci->num_active_eps);
1942 return 0;
1943}
1944
1945/*
1946 * The configure endpoint was failed by the xHC for some other reason, so we
1947 * need to revert the resources that failed configuration would have used.
1948 *
1949 * Must be called with xhci->lock held.
1950 */
1951static void xhci_free_host_resources(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001952 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001953{
1954 u32 num_failed_eps;
1955
Sarah Sharp92f8e762013-04-23 17:11:14 -07001956 num_failed_eps = xhci_count_num_new_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001957 xhci->num_active_eps -= num_failed_eps;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001958 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1959 "Removing %u failed ep ctxs, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001960 num_failed_eps,
1961 xhci->num_active_eps);
1962}
1963
1964/*
1965 * Now that the command has completed, clean up the active endpoint count by
1966 * subtracting out the endpoints that were dropped (but not changed).
1967 *
1968 * Must be called with xhci->lock held.
1969 */
1970static void xhci_finish_resource_reservation(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001971 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001972{
1973 u32 num_dropped_eps;
1974
Sarah Sharp92f8e762013-04-23 17:11:14 -07001975 num_dropped_eps = xhci_count_num_dropped_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001976 xhci->num_active_eps -= num_dropped_eps;
1977 if (num_dropped_eps)
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001978 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1979 "Removing %u dropped ep ctxs, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001980 num_dropped_eps,
1981 xhci->num_active_eps);
1982}
1983
Felipe Balbied384bd2012-08-07 14:10:03 +03001984static unsigned int xhci_get_block_size(struct usb_device *udev)
Sarah Sharpc29eea62011-09-02 11:05:52 -07001985{
1986 switch (udev->speed) {
1987 case USB_SPEED_LOW:
1988 case USB_SPEED_FULL:
1989 return FS_BLOCK;
1990 case USB_SPEED_HIGH:
1991 return HS_BLOCK;
1992 case USB_SPEED_SUPER:
Mathias Nyman0caf6b32016-01-25 15:30:44 +02001993 case USB_SPEED_SUPER_PLUS:
Sarah Sharpc29eea62011-09-02 11:05:52 -07001994 return SS_BLOCK;
1995 case USB_SPEED_UNKNOWN:
1996 case USB_SPEED_WIRELESS:
1997 default:
1998 /* Should never happen */
1999 return 1;
2000 }
2001}
2002
Felipe Balbied384bd2012-08-07 14:10:03 +03002003static unsigned int
2004xhci_get_largest_overhead(struct xhci_interval_bw *interval_bw)
Sarah Sharpc29eea62011-09-02 11:05:52 -07002005{
2006 if (interval_bw->overhead[LS_OVERHEAD_TYPE])
2007 return LS_OVERHEAD;
2008 if (interval_bw->overhead[FS_OVERHEAD_TYPE])
2009 return FS_OVERHEAD;
2010 return HS_OVERHEAD;
2011}
2012
2013/* If we are changing a LS/FS device under a HS hub,
2014 * make sure (if we are activating a new TT) that the HS bus has enough
2015 * bandwidth for this new TT.
2016 */
2017static int xhci_check_tt_bw_table(struct xhci_hcd *xhci,
2018 struct xhci_virt_device *virt_dev,
2019 int old_active_eps)
2020{
2021 struct xhci_interval_bw_table *bw_table;
2022 struct xhci_tt_bw_info *tt_info;
2023
2024 /* Find the bandwidth table for the root port this TT is attached to. */
2025 bw_table = &xhci->rh_bw[virt_dev->real_port - 1].bw_table;
2026 tt_info = virt_dev->tt_info;
2027 /* If this TT already had active endpoints, the bandwidth for this TT
2028 * has already been added. Removing all periodic endpoints (and thus
2029 * making the TT enactive) will only decrease the bandwidth used.
2030 */
2031 if (old_active_eps)
2032 return 0;
2033 if (old_active_eps == 0 && tt_info->active_eps != 0) {
2034 if (bw_table->bw_used + TT_HS_OVERHEAD > HS_BW_LIMIT)
2035 return -ENOMEM;
2036 return 0;
2037 }
2038 /* Not sure why we would have no new active endpoints...
2039 *
2040 * Maybe because of an Evaluate Context change for a hub update or a
2041 * control endpoint 0 max packet size change?
2042 * FIXME: skip the bandwidth calculation in that case.
2043 */
2044 return 0;
2045}
2046
Sarah Sharp2b698992011-09-13 16:41:13 -07002047static int xhci_check_ss_bw(struct xhci_hcd *xhci,
2048 struct xhci_virt_device *virt_dev)
2049{
2050 unsigned int bw_reserved;
2051
2052 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_IN, 100);
2053 if (virt_dev->bw_table->ss_bw_in > (SS_BW_LIMIT_IN - bw_reserved))
2054 return -ENOMEM;
2055
2056 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_OUT, 100);
2057 if (virt_dev->bw_table->ss_bw_out > (SS_BW_LIMIT_OUT - bw_reserved))
2058 return -ENOMEM;
2059
2060 return 0;
2061}
2062
Sarah Sharpc29eea62011-09-02 11:05:52 -07002063/*
2064 * This algorithm is a very conservative estimate of the worst-case scheduling
2065 * scenario for any one interval. The hardware dynamically schedules the
2066 * packets, so we can't tell which microframe could be the limiting factor in
2067 * the bandwidth scheduling. This only takes into account periodic endpoints.
2068 *
2069 * Obviously, we can't solve an NP complete problem to find the minimum worst
2070 * case scenario. Instead, we come up with an estimate that is no less than
2071 * the worst case bandwidth used for any one microframe, but may be an
2072 * over-estimate.
2073 *
2074 * We walk the requirements for each endpoint by interval, starting with the
2075 * smallest interval, and place packets in the schedule where there is only one
2076 * possible way to schedule packets for that interval. In order to simplify
2077 * this algorithm, we record the largest max packet size for each interval, and
2078 * assume all packets will be that size.
2079 *
2080 * For interval 0, we obviously must schedule all packets for each interval.
2081 * The bandwidth for interval 0 is just the amount of data to be transmitted
2082 * (the sum of all max ESIT payload sizes, plus any overhead per packet times
2083 * the number of packets).
2084 *
2085 * For interval 1, we have two possible microframes to schedule those packets
2086 * in. For this algorithm, if we can schedule the same number of packets for
2087 * each possible scheduling opportunity (each microframe), we will do so. The
2088 * remaining number of packets will be saved to be transmitted in the gaps in
2089 * the next interval's scheduling sequence.
2090 *
2091 * As we move those remaining packets to be scheduled with interval 2 packets,
2092 * we have to double the number of remaining packets to transmit. This is
2093 * because the intervals are actually powers of 2, and we would be transmitting
2094 * the previous interval's packets twice in this interval. We also have to be
2095 * sure that when we look at the largest max packet size for this interval, we
2096 * also look at the largest max packet size for the remaining packets and take
2097 * the greater of the two.
2098 *
2099 * The algorithm continues to evenly distribute packets in each scheduling
2100 * opportunity, and push the remaining packets out, until we get to the last
2101 * interval. Then those packets and their associated overhead are just added
2102 * to the bandwidth used.
Sarah Sharp2e279802011-09-02 11:05:50 -07002103 */
2104static int xhci_check_bw_table(struct xhci_hcd *xhci,
2105 struct xhci_virt_device *virt_dev,
2106 int old_active_eps)
2107{
Sarah Sharpc29eea62011-09-02 11:05:52 -07002108 unsigned int bw_reserved;
2109 unsigned int max_bandwidth;
2110 unsigned int bw_used;
2111 unsigned int block_size;
2112 struct xhci_interval_bw_table *bw_table;
2113 unsigned int packet_size = 0;
2114 unsigned int overhead = 0;
2115 unsigned int packets_transmitted = 0;
2116 unsigned int packets_remaining = 0;
2117 unsigned int i;
2118
Mathias Nyman0caf6b32016-01-25 15:30:44 +02002119 if (virt_dev->udev->speed >= USB_SPEED_SUPER)
Sarah Sharp2b698992011-09-13 16:41:13 -07002120 return xhci_check_ss_bw(xhci, virt_dev);
2121
Sarah Sharpc29eea62011-09-02 11:05:52 -07002122 if (virt_dev->udev->speed == USB_SPEED_HIGH) {
2123 max_bandwidth = HS_BW_LIMIT;
2124 /* Convert percent of bus BW reserved to blocks reserved */
2125 bw_reserved = DIV_ROUND_UP(HS_BW_RESERVED * max_bandwidth, 100);
2126 } else {
2127 max_bandwidth = FS_BW_LIMIT;
2128 bw_reserved = DIV_ROUND_UP(FS_BW_RESERVED * max_bandwidth, 100);
2129 }
2130
2131 bw_table = virt_dev->bw_table;
2132 /* We need to translate the max packet size and max ESIT payloads into
2133 * the units the hardware uses.
2134 */
2135 block_size = xhci_get_block_size(virt_dev->udev);
2136
2137 /* If we are manipulating a LS/FS device under a HS hub, double check
2138 * that the HS bus has enough bandwidth if we are activing a new TT.
2139 */
2140 if (virt_dev->tt_info) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002141 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2142 "Recalculating BW for rootport %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002143 virt_dev->real_port);
2144 if (xhci_check_tt_bw_table(xhci, virt_dev, old_active_eps)) {
2145 xhci_warn(xhci, "Not enough bandwidth on HS bus for "
2146 "newly activated TT.\n");
2147 return -ENOMEM;
2148 }
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002149 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2150 "Recalculating BW for TT slot %u port %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002151 virt_dev->tt_info->slot_id,
2152 virt_dev->tt_info->ttport);
2153 } else {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002154 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2155 "Recalculating BW for rootport %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002156 virt_dev->real_port);
2157 }
2158
2159 /* Add in how much bandwidth will be used for interval zero, or the
2160 * rounded max ESIT payload + number of packets * largest overhead.
2161 */
2162 bw_used = DIV_ROUND_UP(bw_table->interval0_esit_payload, block_size) +
2163 bw_table->interval_bw[0].num_packets *
2164 xhci_get_largest_overhead(&bw_table->interval_bw[0]);
2165
2166 for (i = 1; i < XHCI_MAX_INTERVAL; i++) {
2167 unsigned int bw_added;
2168 unsigned int largest_mps;
2169 unsigned int interval_overhead;
2170
2171 /*
2172 * How many packets could we transmit in this interval?
2173 * If packets didn't fit in the previous interval, we will need
2174 * to transmit that many packets twice within this interval.
2175 */
2176 packets_remaining = 2 * packets_remaining +
2177 bw_table->interval_bw[i].num_packets;
2178
2179 /* Find the largest max packet size of this or the previous
2180 * interval.
2181 */
2182 if (list_empty(&bw_table->interval_bw[i].endpoints))
2183 largest_mps = 0;
2184 else {
2185 struct xhci_virt_ep *virt_ep;
2186 struct list_head *ep_entry;
2187
2188 ep_entry = bw_table->interval_bw[i].endpoints.next;
2189 virt_ep = list_entry(ep_entry,
2190 struct xhci_virt_ep, bw_endpoint_list);
2191 /* Convert to blocks, rounding up */
2192 largest_mps = DIV_ROUND_UP(
2193 virt_ep->bw_info.max_packet_size,
2194 block_size);
2195 }
2196 if (largest_mps > packet_size)
2197 packet_size = largest_mps;
2198
2199 /* Use the larger overhead of this or the previous interval. */
2200 interval_overhead = xhci_get_largest_overhead(
2201 &bw_table->interval_bw[i]);
2202 if (interval_overhead > overhead)
2203 overhead = interval_overhead;
2204
2205 /* How many packets can we evenly distribute across
2206 * (1 << (i + 1)) possible scheduling opportunities?
2207 */
2208 packets_transmitted = packets_remaining >> (i + 1);
2209
2210 /* Add in the bandwidth used for those scheduled packets */
2211 bw_added = packets_transmitted * (overhead + packet_size);
2212
2213 /* How many packets do we have remaining to transmit? */
2214 packets_remaining = packets_remaining % (1 << (i + 1));
2215
2216 /* What largest max packet size should those packets have? */
2217 /* If we've transmitted all packets, don't carry over the
2218 * largest packet size.
2219 */
2220 if (packets_remaining == 0) {
2221 packet_size = 0;
2222 overhead = 0;
2223 } else if (packets_transmitted > 0) {
2224 /* Otherwise if we do have remaining packets, and we've
2225 * scheduled some packets in this interval, take the
2226 * largest max packet size from endpoints with this
2227 * interval.
2228 */
2229 packet_size = largest_mps;
2230 overhead = interval_overhead;
2231 }
2232 /* Otherwise carry over packet_size and overhead from the last
2233 * time we had a remainder.
2234 */
2235 bw_used += bw_added;
2236 if (bw_used > max_bandwidth) {
2237 xhci_warn(xhci, "Not enough bandwidth. "
2238 "Proposed: %u, Max: %u\n",
2239 bw_used, max_bandwidth);
2240 return -ENOMEM;
2241 }
2242 }
2243 /*
2244 * Ok, we know we have some packets left over after even-handedly
2245 * scheduling interval 15. We don't know which microframes they will
2246 * fit into, so we over-schedule and say they will be scheduled every
2247 * microframe.
2248 */
2249 if (packets_remaining > 0)
2250 bw_used += overhead + packet_size;
2251
2252 if (!virt_dev->tt_info && virt_dev->udev->speed == USB_SPEED_HIGH) {
2253 unsigned int port_index = virt_dev->real_port - 1;
2254
2255 /* OK, we're manipulating a HS device attached to a
2256 * root port bandwidth domain. Include the number of active TTs
2257 * in the bandwidth used.
2258 */
2259 bw_used += TT_HS_OVERHEAD *
2260 xhci->rh_bw[port_index].num_active_tts;
2261 }
2262
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002263 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2264 "Final bandwidth: %u, Limit: %u, Reserved: %u, "
2265 "Available: %u " "percent",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002266 bw_used, max_bandwidth, bw_reserved,
2267 (max_bandwidth - bw_used - bw_reserved) * 100 /
2268 max_bandwidth);
2269
2270 bw_used += bw_reserved;
2271 if (bw_used > max_bandwidth) {
2272 xhci_warn(xhci, "Not enough bandwidth. Proposed: %u, Max: %u\n",
2273 bw_used, max_bandwidth);
2274 return -ENOMEM;
2275 }
2276
2277 bw_table->bw_used = bw_used;
Sarah Sharp2e279802011-09-02 11:05:50 -07002278 return 0;
2279}
2280
2281static bool xhci_is_async_ep(unsigned int ep_type)
2282{
2283 return (ep_type != ISOC_OUT_EP && ep_type != INT_OUT_EP &&
2284 ep_type != ISOC_IN_EP &&
2285 ep_type != INT_IN_EP);
2286}
2287
Sarah Sharp2b698992011-09-13 16:41:13 -07002288static bool xhci_is_sync_in_ep(unsigned int ep_type)
2289{
Sarah Sharp392a07a2012-10-25 13:44:12 -07002290 return (ep_type == ISOC_IN_EP || ep_type == INT_IN_EP);
Sarah Sharp2b698992011-09-13 16:41:13 -07002291}
2292
2293static unsigned int xhci_get_ss_bw_consumed(struct xhci_bw_info *ep_bw)
2294{
2295 unsigned int mps = DIV_ROUND_UP(ep_bw->max_packet_size, SS_BLOCK);
2296
2297 if (ep_bw->ep_interval == 0)
2298 return SS_OVERHEAD_BURST +
2299 (ep_bw->mult * ep_bw->num_packets *
2300 (SS_OVERHEAD + mps));
2301 return DIV_ROUND_UP(ep_bw->mult * ep_bw->num_packets *
2302 (SS_OVERHEAD + mps + SS_OVERHEAD_BURST),
2303 1 << ep_bw->ep_interval);
2304
2305}
2306
Lu Baolu39693842017-04-07 17:57:04 +03002307static void xhci_drop_ep_from_interval_table(struct xhci_hcd *xhci,
Sarah Sharp2e279802011-09-02 11:05:50 -07002308 struct xhci_bw_info *ep_bw,
2309 struct xhci_interval_bw_table *bw_table,
2310 struct usb_device *udev,
2311 struct xhci_virt_ep *virt_ep,
2312 struct xhci_tt_bw_info *tt_info)
2313{
2314 struct xhci_interval_bw *interval_bw;
2315 int normalized_interval;
2316
Sarah Sharp2b698992011-09-13 16:41:13 -07002317 if (xhci_is_async_ep(ep_bw->type))
Sarah Sharp2e279802011-09-02 11:05:50 -07002318 return;
2319
Mathias Nyman0caf6b32016-01-25 15:30:44 +02002320 if (udev->speed >= USB_SPEED_SUPER) {
Sarah Sharp2b698992011-09-13 16:41:13 -07002321 if (xhci_is_sync_in_ep(ep_bw->type))
2322 xhci->devs[udev->slot_id]->bw_table->ss_bw_in -=
2323 xhci_get_ss_bw_consumed(ep_bw);
2324 else
2325 xhci->devs[udev->slot_id]->bw_table->ss_bw_out -=
2326 xhci_get_ss_bw_consumed(ep_bw);
2327 return;
2328 }
2329
2330 /* SuperSpeed endpoints never get added to intervals in the table, so
2331 * this check is only valid for HS/FS/LS devices.
2332 */
2333 if (list_empty(&virt_ep->bw_endpoint_list))
2334 return;
Sarah Sharp2e279802011-09-02 11:05:50 -07002335 /* For LS/FS devices, we need to translate the interval expressed in
2336 * microframes to frames.
2337 */
2338 if (udev->speed == USB_SPEED_HIGH)
2339 normalized_interval = ep_bw->ep_interval;
2340 else
2341 normalized_interval = ep_bw->ep_interval - 3;
2342
2343 if (normalized_interval == 0)
2344 bw_table->interval0_esit_payload -= ep_bw->max_esit_payload;
2345 interval_bw = &bw_table->interval_bw[normalized_interval];
2346 interval_bw->num_packets -= ep_bw->num_packets;
2347 switch (udev->speed) {
2348 case USB_SPEED_LOW:
2349 interval_bw->overhead[LS_OVERHEAD_TYPE] -= 1;
2350 break;
2351 case USB_SPEED_FULL:
2352 interval_bw->overhead[FS_OVERHEAD_TYPE] -= 1;
2353 break;
2354 case USB_SPEED_HIGH:
2355 interval_bw->overhead[HS_OVERHEAD_TYPE] -= 1;
2356 break;
2357 case USB_SPEED_SUPER:
Mathias Nyman0caf6b32016-01-25 15:30:44 +02002358 case USB_SPEED_SUPER_PLUS:
Sarah Sharp2e279802011-09-02 11:05:50 -07002359 case USB_SPEED_UNKNOWN:
2360 case USB_SPEED_WIRELESS:
2361 /* Should never happen because only LS/FS/HS endpoints will get
2362 * added to the endpoint list.
2363 */
2364 return;
2365 }
2366 if (tt_info)
2367 tt_info->active_eps -= 1;
2368 list_del_init(&virt_ep->bw_endpoint_list);
2369}
2370
2371static void xhci_add_ep_to_interval_table(struct xhci_hcd *xhci,
2372 struct xhci_bw_info *ep_bw,
2373 struct xhci_interval_bw_table *bw_table,
2374 struct usb_device *udev,
2375 struct xhci_virt_ep *virt_ep,
2376 struct xhci_tt_bw_info *tt_info)
2377{
2378 struct xhci_interval_bw *interval_bw;
2379 struct xhci_virt_ep *smaller_ep;
2380 int normalized_interval;
2381
2382 if (xhci_is_async_ep(ep_bw->type))
2383 return;
2384
Sarah Sharp2b698992011-09-13 16:41:13 -07002385 if (udev->speed == USB_SPEED_SUPER) {
2386 if (xhci_is_sync_in_ep(ep_bw->type))
2387 xhci->devs[udev->slot_id]->bw_table->ss_bw_in +=
2388 xhci_get_ss_bw_consumed(ep_bw);
2389 else
2390 xhci->devs[udev->slot_id]->bw_table->ss_bw_out +=
2391 xhci_get_ss_bw_consumed(ep_bw);
2392 return;
2393 }
2394
Sarah Sharp2e279802011-09-02 11:05:50 -07002395 /* For LS/FS devices, we need to translate the interval expressed in
2396 * microframes to frames.
2397 */
2398 if (udev->speed == USB_SPEED_HIGH)
2399 normalized_interval = ep_bw->ep_interval;
2400 else
2401 normalized_interval = ep_bw->ep_interval - 3;
2402
2403 if (normalized_interval == 0)
2404 bw_table->interval0_esit_payload += ep_bw->max_esit_payload;
2405 interval_bw = &bw_table->interval_bw[normalized_interval];
2406 interval_bw->num_packets += ep_bw->num_packets;
2407 switch (udev->speed) {
2408 case USB_SPEED_LOW:
2409 interval_bw->overhead[LS_OVERHEAD_TYPE] += 1;
2410 break;
2411 case USB_SPEED_FULL:
2412 interval_bw->overhead[FS_OVERHEAD_TYPE] += 1;
2413 break;
2414 case USB_SPEED_HIGH:
2415 interval_bw->overhead[HS_OVERHEAD_TYPE] += 1;
2416 break;
2417 case USB_SPEED_SUPER:
Mathias Nyman0caf6b32016-01-25 15:30:44 +02002418 case USB_SPEED_SUPER_PLUS:
Sarah Sharp2e279802011-09-02 11:05:50 -07002419 case USB_SPEED_UNKNOWN:
2420 case USB_SPEED_WIRELESS:
2421 /* Should never happen because only LS/FS/HS endpoints will get
2422 * added to the endpoint list.
2423 */
2424 return;
2425 }
2426
2427 if (tt_info)
2428 tt_info->active_eps += 1;
2429 /* Insert the endpoint into the list, largest max packet size first. */
2430 list_for_each_entry(smaller_ep, &interval_bw->endpoints,
2431 bw_endpoint_list) {
2432 if (ep_bw->max_packet_size >=
2433 smaller_ep->bw_info.max_packet_size) {
2434 /* Add the new ep before the smaller endpoint */
2435 list_add_tail(&virt_ep->bw_endpoint_list,
2436 &smaller_ep->bw_endpoint_list);
2437 return;
2438 }
2439 }
2440 /* Add the new endpoint at the end of the list. */
2441 list_add_tail(&virt_ep->bw_endpoint_list,
2442 &interval_bw->endpoints);
2443}
2444
2445void xhci_update_tt_active_eps(struct xhci_hcd *xhci,
2446 struct xhci_virt_device *virt_dev,
2447 int old_active_eps)
2448{
2449 struct xhci_root_port_bw_info *rh_bw_info;
2450 if (!virt_dev->tt_info)
2451 return;
2452
2453 rh_bw_info = &xhci->rh_bw[virt_dev->real_port - 1];
2454 if (old_active_eps == 0 &&
2455 virt_dev->tt_info->active_eps != 0) {
2456 rh_bw_info->num_active_tts += 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002457 rh_bw_info->bw_table.bw_used += TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002458 } else if (old_active_eps != 0 &&
2459 virt_dev->tt_info->active_eps == 0) {
2460 rh_bw_info->num_active_tts -= 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002461 rh_bw_info->bw_table.bw_used -= TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002462 }
2463}
2464
2465static int xhci_reserve_bandwidth(struct xhci_hcd *xhci,
2466 struct xhci_virt_device *virt_dev,
2467 struct xhci_container_ctx *in_ctx)
2468{
2469 struct xhci_bw_info ep_bw_info[31];
2470 int i;
2471 struct xhci_input_control_ctx *ctrl_ctx;
2472 int old_active_eps = 0;
2473
Sarah Sharp2e279802011-09-02 11:05:50 -07002474 if (virt_dev->tt_info)
2475 old_active_eps = virt_dev->tt_info->active_eps;
2476
Lin Wang4daf9df2015-01-09 16:06:31 +02002477 ctrl_ctx = xhci_get_input_control_ctx(in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002478 if (!ctrl_ctx) {
2479 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2480 __func__);
2481 return -ENOMEM;
2482 }
Sarah Sharp2e279802011-09-02 11:05:50 -07002483
2484 for (i = 0; i < 31; i++) {
2485 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2486 continue;
2487
2488 /* Make a copy of the BW info in case we need to revert this */
2489 memcpy(&ep_bw_info[i], &virt_dev->eps[i].bw_info,
2490 sizeof(ep_bw_info[i]));
2491 /* Drop the endpoint from the interval table if the endpoint is
2492 * being dropped or changed.
2493 */
2494 if (EP_IS_DROPPED(ctrl_ctx, i))
2495 xhci_drop_ep_from_interval_table(xhci,
2496 &virt_dev->eps[i].bw_info,
2497 virt_dev->bw_table,
2498 virt_dev->udev,
2499 &virt_dev->eps[i],
2500 virt_dev->tt_info);
2501 }
2502 /* Overwrite the information stored in the endpoints' bw_info */
2503 xhci_update_bw_info(xhci, virt_dev->in_ctx, ctrl_ctx, virt_dev);
2504 for (i = 0; i < 31; i++) {
2505 /* Add any changed or added endpoints to the interval table */
2506 if (EP_IS_ADDED(ctrl_ctx, i))
2507 xhci_add_ep_to_interval_table(xhci,
2508 &virt_dev->eps[i].bw_info,
2509 virt_dev->bw_table,
2510 virt_dev->udev,
2511 &virt_dev->eps[i],
2512 virt_dev->tt_info);
2513 }
2514
2515 if (!xhci_check_bw_table(xhci, virt_dev, old_active_eps)) {
2516 /* Ok, this fits in the bandwidth we have.
2517 * Update the number of active TTs.
2518 */
2519 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
2520 return 0;
2521 }
2522
2523 /* We don't have enough bandwidth for this, revert the stored info. */
2524 for (i = 0; i < 31; i++) {
2525 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2526 continue;
2527
2528 /* Drop the new copies of any added or changed endpoints from
2529 * the interval table.
2530 */
2531 if (EP_IS_ADDED(ctrl_ctx, i)) {
2532 xhci_drop_ep_from_interval_table(xhci,
2533 &virt_dev->eps[i].bw_info,
2534 virt_dev->bw_table,
2535 virt_dev->udev,
2536 &virt_dev->eps[i],
2537 virt_dev->tt_info);
2538 }
2539 /* Revert the endpoint back to its old information */
2540 memcpy(&virt_dev->eps[i].bw_info, &ep_bw_info[i],
2541 sizeof(ep_bw_info[i]));
2542 /* Add any changed or dropped endpoints back into the table */
2543 if (EP_IS_DROPPED(ctrl_ctx, i))
2544 xhci_add_ep_to_interval_table(xhci,
2545 &virt_dev->eps[i].bw_info,
2546 virt_dev->bw_table,
2547 virt_dev->udev,
2548 &virt_dev->eps[i],
2549 virt_dev->tt_info);
2550 }
2551 return -ENOMEM;
2552}
2553
2554
Sarah Sharpf2217e82009-08-07 14:04:43 -07002555/* Issue a configure endpoint command or evaluate context command
2556 * and wait for it to finish.
2557 */
2558static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002559 struct usb_device *udev,
2560 struct xhci_command *command,
2561 bool ctx_change, bool must_succeed)
Sarah Sharpf2217e82009-08-07 14:04:43 -07002562{
2563 int ret;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002564 unsigned long flags;
Sarah Sharp92f8e762013-04-23 17:11:14 -07002565 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002566 struct xhci_virt_device *virt_dev;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002567
2568 if (!command)
2569 return -EINVAL;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002570
2571 spin_lock_irqsave(&xhci->lock, flags);
Mathias Nymand9f11ba2017-04-07 17:57:01 +03002572
2573 if (xhci->xhc_state & XHCI_STATE_DYING) {
2574 spin_unlock_irqrestore(&xhci->lock, flags);
2575 return -ESHUTDOWN;
2576 }
2577
Sarah Sharp913a8a32009-09-04 10:53:13 -07002578 virt_dev = xhci->devs[udev->slot_id];
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002579
Lin Wang4daf9df2015-01-09 16:06:31 +02002580 ctrl_ctx = xhci_get_input_control_ctx(command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002581 if (!ctrl_ctx) {
Emil Goode1f215692013-06-25 15:49:36 -07002582 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002583 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2584 __func__);
2585 return -ENOMEM;
2586 }
Sarah Sharp750645f2011-09-02 11:05:43 -07002587
2588 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK) &&
Sarah Sharp92f8e762013-04-23 17:11:14 -07002589 xhci_reserve_host_resources(xhci, ctrl_ctx)) {
Sarah Sharp750645f2011-09-02 11:05:43 -07002590 spin_unlock_irqrestore(&xhci->lock, flags);
2591 xhci_warn(xhci, "Not enough host resources, "
2592 "active endpoint contexts = %u\n",
2593 xhci->num_active_eps);
2594 return -ENOMEM;
2595 }
Sarah Sharp2e279802011-09-02 11:05:50 -07002596 if ((xhci->quirks & XHCI_SW_BW_CHECKING) &&
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002597 xhci_reserve_bandwidth(xhci, virt_dev, command->in_ctx)) {
Sarah Sharp2e279802011-09-02 11:05:50 -07002598 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
Sarah Sharp92f8e762013-04-23 17:11:14 -07002599 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharp2e279802011-09-02 11:05:50 -07002600 spin_unlock_irqrestore(&xhci->lock, flags);
2601 xhci_warn(xhci, "Not enough bandwidth\n");
2602 return -ENOMEM;
2603 }
Sarah Sharp750645f2011-09-02 11:05:43 -07002604
Sarah Sharpf2217e82009-08-07 14:04:43 -07002605 if (!ctx_change)
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002606 ret = xhci_queue_configure_endpoint(xhci, command,
2607 command->in_ctx->dma,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002608 udev->slot_id, must_succeed);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002609 else
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002610 ret = xhci_queue_evaluate_context(xhci, command,
2611 command->in_ctx->dma,
Sarah Sharp4b266542012-05-07 15:34:26 -07002612 udev->slot_id, must_succeed);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002613 if (ret < 0) {
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002614 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
Sarah Sharp92f8e762013-04-23 17:11:14 -07002615 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002616 spin_unlock_irqrestore(&xhci->lock, flags);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03002617 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
2618 "FIXME allocate a new ring segment");
Sarah Sharpf2217e82009-08-07 14:04:43 -07002619 return -ENOMEM;
2620 }
2621 xhci_ring_cmd_db(xhci);
2622 spin_unlock_irqrestore(&xhci->lock, flags);
2623
2624 /* Wait for the configure endpoint command to complete */
Mathias Nymanc311e392014-05-08 19:26:03 +03002625 wait_for_completion(command->completion);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002626
2627 if (!ctx_change)
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002628 ret = xhci_configure_endpoint_result(xhci, udev,
2629 &command->status);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002630 else
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002631 ret = xhci_evaluate_context_result(xhci, udev,
2632 &command->status);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002633
2634 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
2635 spin_lock_irqsave(&xhci->lock, flags);
2636 /* If the command failed, remove the reserved resources.
2637 * Otherwise, clean up the estimate to include dropped eps.
2638 */
2639 if (ret)
Sarah Sharp92f8e762013-04-23 17:11:14 -07002640 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002641 else
Sarah Sharp92f8e762013-04-23 17:11:14 -07002642 xhci_finish_resource_reservation(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002643 spin_unlock_irqrestore(&xhci->lock, flags);
2644 }
2645 return ret;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002646}
2647
Hans de Goededf613832013-10-04 00:29:45 +02002648static void xhci_check_bw_drop_ep_streams(struct xhci_hcd *xhci,
2649 struct xhci_virt_device *vdev, int i)
2650{
2651 struct xhci_virt_ep *ep = &vdev->eps[i];
2652
2653 if (ep->ep_state & EP_HAS_STREAMS) {
2654 xhci_warn(xhci, "WARN: endpoint 0x%02x has streams on set_interface, freeing streams.\n",
2655 xhci_get_endpoint_address(i));
2656 xhci_free_stream_info(xhci, ep->stream_info);
2657 ep->stream_info = NULL;
2658 ep->ep_state &= ~EP_HAS_STREAMS;
2659 }
2660}
2661
Sarah Sharpf88ba782009-05-14 11:44:22 -07002662/* Called after one or more calls to xhci_add_endpoint() or
2663 * xhci_drop_endpoint(). If this call fails, the USB core is expected
2664 * to call xhci_reset_bandwidth().
2665 *
2666 * Since we are in the middle of changing either configuration or
2667 * installing a new alt setting, the USB core won't allow URBs to be
2668 * enqueued for any endpoint on the old config or interface. Nothing
2669 * else should be touching the xhci->devs[slot_id] structure, so we
2670 * don't need to take the xhci->lock for manipulating that.
2671 */
Lu Baolu39693842017-04-07 17:57:04 +03002672static int xhci_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharpf94e01862009-04-27 19:58:38 -07002673{
2674 int i;
2675 int ret = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002676 struct xhci_hcd *xhci;
2677 struct xhci_virt_device *virt_dev;
John Yound115b042009-07-27 12:05:15 -07002678 struct xhci_input_control_ctx *ctrl_ctx;
2679 struct xhci_slot_ctx *slot_ctx;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002680 struct xhci_command *command;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002681
Andiry Xu64927732010-10-14 07:22:45 -07002682 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002683 if (ret <= 0)
2684 return ret;
2685 xhci = hcd_to_xhci(hcd);
Mathias Nyman98d74f92016-04-08 16:25:10 +03002686 if ((xhci->xhc_state & XHCI_STATE_DYING) ||
2687 (xhci->xhc_state & XHCI_STATE_REMOVING))
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07002688 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002689
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002690 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002691 virt_dev = xhci->devs[udev->slot_id];
2692
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002693 command = xhci_alloc_command(xhci, false, true, GFP_KERNEL);
2694 if (!command)
2695 return -ENOMEM;
2696
2697 command->in_ctx = virt_dev->in_ctx;
2698
Sarah Sharpf94e01862009-04-27 19:58:38 -07002699 /* See section 4.6.6 - A0 = 1; A1 = D0 = D1 = 0 */
Lin Wang4daf9df2015-01-09 16:06:31 +02002700 ctrl_ctx = xhci_get_input_control_ctx(command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002701 if (!ctrl_ctx) {
2702 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2703 __func__);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002704 ret = -ENOMEM;
2705 goto command_cleanup;
Sarah Sharp92f8e762013-04-23 17:11:14 -07002706 }
Matt Evans28ccd292011-03-29 13:40:46 +11002707 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
2708 ctrl_ctx->add_flags &= cpu_to_le32(~EP0_FLAG);
2709 ctrl_ctx->drop_flags &= cpu_to_le32(~(SLOT_FLAG | EP0_FLAG));
Sarah Sharp2dc37532011-09-02 11:05:40 -07002710
2711 /* Don't issue the command if there's no endpoints to update. */
2712 if (ctrl_ctx->add_flags == cpu_to_le32(SLOT_FLAG) &&
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002713 ctrl_ctx->drop_flags == 0) {
2714 ret = 0;
2715 goto command_cleanup;
2716 }
Julius Wernerd6759132014-06-24 17:14:42 +03002717 /* Fix up Context Entries field. Minimum value is EP0 == BIT(1). */
John Yound115b042009-07-27 12:05:15 -07002718 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Julius Wernerd6759132014-06-24 17:14:42 +03002719 for (i = 31; i >= 1; i--) {
2720 __le32 le32 = cpu_to_le32(BIT(i));
2721
2722 if ((virt_dev->eps[i-1].ring && !(ctrl_ctx->drop_flags & le32))
2723 || (ctrl_ctx->add_flags & le32) || i == 1) {
2724 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
2725 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(i));
2726 break;
2727 }
2728 }
Sarah Sharpf94e01862009-04-27 19:58:38 -07002729
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002730 ret = xhci_configure_endpoint(xhci, udev, command,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002731 false, false);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002732 if (ret)
Sarah Sharpf94e01862009-04-27 19:58:38 -07002733 /* Callee should call reset_bandwidth() */
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002734 goto command_cleanup;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002735
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002736 /* Free any rings that were dropped, but not changed. */
Felipe Balbi98871e92017-01-23 14:20:04 +02002737 for (i = 1; i < 31; i++) {
Matt Evans4819fef2011-06-01 13:01:07 +10002738 if ((le32_to_cpu(ctrl_ctx->drop_flags) & (1 << (i + 1))) &&
Hans de Goededf613832013-10-04 00:29:45 +02002739 !(le32_to_cpu(ctrl_ctx->add_flags) & (1 << (i + 1)))) {
Mathias Nymanc5628a22017-06-15 11:55:42 +03002740 xhci_free_endpoint_ring(xhci, virt_dev, i);
Hans de Goededf613832013-10-04 00:29:45 +02002741 xhci_check_bw_drop_ep_streams(xhci, virt_dev, i);
2742 }
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002743 }
John Yound115b042009-07-27 12:05:15 -07002744 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002745 /*
2746 * Install any rings for completely new endpoints or changed endpoints,
Mathias Nymanc5628a22017-06-15 11:55:42 +03002747 * and free any old rings from changed endpoints.
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002748 */
Felipe Balbi98871e92017-01-23 14:20:04 +02002749 for (i = 1; i < 31; i++) {
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002750 if (!virt_dev->eps[i].new_ring)
2751 continue;
Mathias Nymanc5628a22017-06-15 11:55:42 +03002752 /* Only free the old ring if it exists.
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002753 * It may not if this is the first add of an endpoint.
2754 */
2755 if (virt_dev->eps[i].ring) {
Mathias Nymanc5628a22017-06-15 11:55:42 +03002756 xhci_free_endpoint_ring(xhci, virt_dev, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002757 }
Hans de Goededf613832013-10-04 00:29:45 +02002758 xhci_check_bw_drop_ep_streams(xhci, virt_dev, i);
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002759 virt_dev->eps[i].ring = virt_dev->eps[i].new_ring;
2760 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002761 }
Mathias Nymanddba5cd2014-05-08 19:26:00 +03002762command_cleanup:
2763 kfree(command->completion);
2764 kfree(command);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002765
Sarah Sharpf94e01862009-04-27 19:58:38 -07002766 return ret;
2767}
2768
Lu Baolu39693842017-04-07 17:57:04 +03002769static void xhci_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharpf94e01862009-04-27 19:58:38 -07002770{
Sarah Sharpf94e01862009-04-27 19:58:38 -07002771 struct xhci_hcd *xhci;
2772 struct xhci_virt_device *virt_dev;
2773 int i, ret;
2774
Andiry Xu64927732010-10-14 07:22:45 -07002775 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002776 if (ret <= 0)
2777 return;
2778 xhci = hcd_to_xhci(hcd);
2779
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002780 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002781 virt_dev = xhci->devs[udev->slot_id];
2782 /* Free any rings allocated for added endpoints */
Felipe Balbi98871e92017-01-23 14:20:04 +02002783 for (i = 0; i < 31; i++) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002784 if (virt_dev->eps[i].new_ring) {
Lu Baolu02b6fdc2017-10-05 11:21:39 +03002785 xhci_debugfs_remove_endpoint(xhci, virt_dev, i);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002786 xhci_ring_free(xhci, virt_dev->eps[i].new_ring);
2787 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002788 }
2789 }
John Yound115b042009-07-27 12:05:15 -07002790 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002791}
2792
Sarah Sharp5270b952009-09-04 10:53:11 -07002793static void xhci_setup_input_ctx_for_config_ep(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002794 struct xhci_container_ctx *in_ctx,
2795 struct xhci_container_ctx *out_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07002796 struct xhci_input_control_ctx *ctrl_ctx,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002797 u32 add_flags, u32 drop_flags)
Sarah Sharp5270b952009-09-04 10:53:11 -07002798{
Matt Evans28ccd292011-03-29 13:40:46 +11002799 ctrl_ctx->add_flags = cpu_to_le32(add_flags);
2800 ctrl_ctx->drop_flags = cpu_to_le32(drop_flags);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002801 xhci_slot_copy(xhci, in_ctx, out_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11002802 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharp5270b952009-09-04 10:53:11 -07002803}
2804
Dmitry Torokhov8212a492011-02-08 13:55:59 -08002805static void xhci_setup_input_ctx_for_quirk(struct xhci_hcd *xhci,
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002806 unsigned int slot_id, unsigned int ep_index,
2807 struct xhci_dequeue_state *deq_state)
2808{
Sarah Sharp92f8e762013-04-23 17:11:14 -07002809 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002810 struct xhci_container_ctx *in_ctx;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002811 struct xhci_ep_ctx *ep_ctx;
2812 u32 added_ctxs;
2813 dma_addr_t addr;
2814
Sarah Sharp92f8e762013-04-23 17:11:14 -07002815 in_ctx = xhci->devs[slot_id]->in_ctx;
Lin Wang4daf9df2015-01-09 16:06:31 +02002816 ctrl_ctx = xhci_get_input_control_ctx(in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002817 if (!ctrl_ctx) {
2818 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2819 __func__);
2820 return;
2821 }
2822
Sarah Sharp913a8a32009-09-04 10:53:13 -07002823 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
2824 xhci->devs[slot_id]->out_ctx, ep_index);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002825 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
2826 addr = xhci_trb_virt_to_dma(deq_state->new_deq_seg,
2827 deq_state->new_deq_ptr);
2828 if (addr == 0) {
2829 xhci_warn(xhci, "WARN Cannot submit config ep after "
2830 "reset ep command\n");
2831 xhci_warn(xhci, "WARN deq seg = %p, deq ptr = %p\n",
2832 deq_state->new_deq_seg,
2833 deq_state->new_deq_ptr);
2834 return;
2835 }
Matt Evans28ccd292011-03-29 13:40:46 +11002836 ep_ctx->deq = cpu_to_le64(addr | deq_state->new_cycle_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002837
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002838 added_ctxs = xhci_get_endpoint_flag_from_index(ep_index);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002839 xhci_setup_input_ctx_for_config_ep(xhci, xhci->devs[slot_id]->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07002840 xhci->devs[slot_id]->out_ctx, ctrl_ctx,
2841 added_ctxs, added_ctxs);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002842}
2843
Mathias Nymand36374f2017-06-15 11:55:47 +03002844void xhci_cleanup_stalled_ring(struct xhci_hcd *xhci, unsigned int ep_index,
2845 unsigned int stream_id, struct xhci_td *td)
Sarah Sharp82d10092009-08-07 14:04:52 -07002846{
2847 struct xhci_dequeue_state deq_state;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002848 struct xhci_virt_ep *ep;
Mathias Nymand97b4f82014-11-27 18:19:16 +02002849 struct usb_device *udev = td->urb->dev;
Sarah Sharp82d10092009-08-07 14:04:52 -07002850
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002851 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2852 "Cleaning up stalled endpoint ring");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002853 ep = &xhci->devs[udev->slot_id]->eps[ep_index];
Sarah Sharp82d10092009-08-07 14:04:52 -07002854 /* We need to move the HW's dequeue pointer past this TD,
2855 * or it will attempt to resend it on the next doorbell ring.
2856 */
2857 xhci_find_new_dequeue_state(xhci, udev->slot_id,
Mathias Nymand36374f2017-06-15 11:55:47 +03002858 ep_index, stream_id, td, &deq_state);
Sarah Sharp82d10092009-08-07 14:04:52 -07002859
Mathias Nyman365038d2014-08-19 15:17:58 +03002860 if (!deq_state.new_deq_ptr || !deq_state.new_deq_seg)
2861 return;
2862
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002863 /* HW with the reset endpoint quirk will use the saved dequeue state to
2864 * issue a configure endpoint command later.
2865 */
2866 if (!(xhci->quirks & XHCI_RESET_EP_QUIRK)) {
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002867 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2868 "Queueing new dequeue state");
Hans de Goede1e3452e2014-08-20 16:41:52 +03002869 xhci_queue_new_dequeue_state(xhci, udev->slot_id,
Mathias Nyman87907362017-06-02 16:36:23 +03002870 ep_index, &deq_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002871 } else {
2872 /* Better hope no one uses the input context between now and the
2873 * reset endpoint completion!
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002874 * XXX: No idea how this hardware will react when stream rings
2875 * are enabled.
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002876 */
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002877 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2878 "Setting up input context for "
2879 "configure endpoint command");
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002880 xhci_setup_input_ctx_for_quirk(xhci, udev->slot_id,
2881 ep_index, &deq_state);
2882 }
Sarah Sharp82d10092009-08-07 14:04:52 -07002883}
2884
Mathias Nymand0167ad2015-03-10 19:49:00 +02002885/* Called when clearing halted device. The core should have sent the control
Mathias Nyman8e71a322014-11-18 11:27:12 +02002886 * message to clear the device halt condition. The host side of the halt should
Mathias Nymand0167ad2015-03-10 19:49:00 +02002887 * already be cleared with a reset endpoint command issued when the STALL tx
2888 * event was received.
2889 *
2890 * Context: in_interrupt
Sarah Sharpa1587d92009-07-27 12:03:15 -07002891 */
Mathias Nyman8e71a322014-11-18 11:27:12 +02002892
Lu Baolu39693842017-04-07 17:57:04 +03002893static void xhci_endpoint_reset(struct usb_hcd *hcd,
Sarah Sharpa1587d92009-07-27 12:03:15 -07002894 struct usb_host_endpoint *ep)
2895{
2896 struct xhci_hcd *xhci;
Sarah Sharpa1587d92009-07-27 12:03:15 -07002897
2898 xhci = hcd_to_xhci(hcd);
Sarah Sharpa1587d92009-07-27 12:03:15 -07002899
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002900 /*
Mathias Nymand0167ad2015-03-10 19:49:00 +02002901 * We might need to implement the config ep cmd in xhci 4.8.1 note:
Mathias Nyman8e71a322014-11-18 11:27:12 +02002902 * The Reset Endpoint Command may only be issued to endpoints in the
2903 * Halted state. If software wishes reset the Data Toggle or Sequence
2904 * Number of an endpoint that isn't in the Halted state, then software
2905 * may issue a Configure Endpoint Command with the Drop and Add bits set
2906 * for the target endpoint. that is in the Stopped state.
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002907 */
Sarah Sharpa1587d92009-07-27 12:03:15 -07002908
Mathias Nymand0167ad2015-03-10 19:49:00 +02002909 /* For now just print debug to follow the situation */
2910 xhci_dbg(xhci, "Endpoint 0x%x ep reset callback called\n",
2911 ep->desc.bEndpointAddress);
Sarah Sharpa1587d92009-07-27 12:03:15 -07002912}
2913
Sarah Sharp8df75f42010-04-02 15:34:16 -07002914static int xhci_check_streams_endpoint(struct xhci_hcd *xhci,
2915 struct usb_device *udev, struct usb_host_endpoint *ep,
2916 unsigned int slot_id)
2917{
2918 int ret;
2919 unsigned int ep_index;
2920 unsigned int ep_state;
2921
2922 if (!ep)
2923 return -EINVAL;
Andiry Xu64927732010-10-14 07:22:45 -07002924 ret = xhci_check_args(xhci_to_hcd(xhci), udev, ep, 1, true, __func__);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002925 if (ret <= 0)
2926 return -EINVAL;
Hans de Goedea3901532013-10-04 17:05:55 +02002927 if (usb_ss_max_streams(&ep->ss_ep_comp) == 0) {
Sarah Sharp8df75f42010-04-02 15:34:16 -07002928 xhci_warn(xhci, "WARN: SuperSpeed Endpoint Companion"
2929 " descriptor for ep 0x%x does not support streams\n",
2930 ep->desc.bEndpointAddress);
2931 return -EINVAL;
2932 }
2933
2934 ep_index = xhci_get_endpoint_index(&ep->desc);
2935 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
2936 if (ep_state & EP_HAS_STREAMS ||
2937 ep_state & EP_GETTING_STREAMS) {
2938 xhci_warn(xhci, "WARN: SuperSpeed bulk endpoint 0x%x "
2939 "already has streams set up.\n",
2940 ep->desc.bEndpointAddress);
2941 xhci_warn(xhci, "Send email to xHCI maintainer and ask for "
2942 "dynamic stream context array reallocation.\n");
2943 return -EINVAL;
2944 }
2945 if (!list_empty(&xhci->devs[slot_id]->eps[ep_index].ring->td_list)) {
2946 xhci_warn(xhci, "Cannot setup streams for SuperSpeed bulk "
2947 "endpoint 0x%x; URBs are pending.\n",
2948 ep->desc.bEndpointAddress);
2949 return -EINVAL;
2950 }
2951 return 0;
2952}
2953
2954static void xhci_calculate_streams_entries(struct xhci_hcd *xhci,
2955 unsigned int *num_streams, unsigned int *num_stream_ctxs)
2956{
2957 unsigned int max_streams;
2958
2959 /* The stream context array size must be a power of two */
2960 *num_stream_ctxs = roundup_pow_of_two(*num_streams);
2961 /*
2962 * Find out how many primary stream array entries the host controller
2963 * supports. Later we may use secondary stream arrays (similar to 2nd
2964 * level page entries), but that's an optional feature for xHCI host
2965 * controllers. xHCs must support at least 4 stream IDs.
2966 */
2967 max_streams = HCC_MAX_PSA(xhci->hcc_params);
2968 if (*num_stream_ctxs > max_streams) {
2969 xhci_dbg(xhci, "xHCI HW only supports %u stream ctx entries.\n",
2970 max_streams);
2971 *num_stream_ctxs = max_streams;
2972 *num_streams = max_streams;
2973 }
2974}
2975
2976/* Returns an error code if one of the endpoint already has streams.
2977 * This does not change any data structures, it only checks and gathers
2978 * information.
2979 */
2980static int xhci_calculate_streams_and_bitmask(struct xhci_hcd *xhci,
2981 struct usb_device *udev,
2982 struct usb_host_endpoint **eps, unsigned int num_eps,
2983 unsigned int *num_streams, u32 *changed_ep_bitmask)
2984{
Sarah Sharp8df75f42010-04-02 15:34:16 -07002985 unsigned int max_streams;
2986 unsigned int endpoint_flag;
2987 int i;
2988 int ret;
2989
2990 for (i = 0; i < num_eps; i++) {
2991 ret = xhci_check_streams_endpoint(xhci, udev,
2992 eps[i], udev->slot_id);
2993 if (ret < 0)
2994 return ret;
2995
Felipe Balbi18b7ede2012-01-02 13:35:41 +02002996 max_streams = usb_ss_max_streams(&eps[i]->ss_ep_comp);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002997 if (max_streams < (*num_streams - 1)) {
2998 xhci_dbg(xhci, "Ep 0x%x only supports %u stream IDs.\n",
2999 eps[i]->desc.bEndpointAddress,
3000 max_streams);
3001 *num_streams = max_streams+1;
3002 }
3003
3004 endpoint_flag = xhci_get_endpoint_flag(&eps[i]->desc);
3005 if (*changed_ep_bitmask & endpoint_flag)
3006 return -EINVAL;
3007 *changed_ep_bitmask |= endpoint_flag;
3008 }
3009 return 0;
3010}
3011
3012static u32 xhci_calculate_no_streams_bitmask(struct xhci_hcd *xhci,
3013 struct usb_device *udev,
3014 struct usb_host_endpoint **eps, unsigned int num_eps)
3015{
3016 u32 changed_ep_bitmask = 0;
3017 unsigned int slot_id;
3018 unsigned int ep_index;
3019 unsigned int ep_state;
3020 int i;
3021
3022 slot_id = udev->slot_id;
3023 if (!xhci->devs[slot_id])
3024 return 0;
3025
3026 for (i = 0; i < num_eps; i++) {
3027 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3028 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
3029 /* Are streams already being freed for the endpoint? */
3030 if (ep_state & EP_GETTING_NO_STREAMS) {
3031 xhci_warn(xhci, "WARN Can't disable streams for "
Joe Perches03e64e92013-07-16 19:25:59 -07003032 "endpoint 0x%x, "
3033 "streams are being disabled already\n",
Sarah Sharp8df75f42010-04-02 15:34:16 -07003034 eps[i]->desc.bEndpointAddress);
3035 return 0;
3036 }
3037 /* Are there actually any streams to free? */
3038 if (!(ep_state & EP_HAS_STREAMS) &&
3039 !(ep_state & EP_GETTING_STREAMS)) {
3040 xhci_warn(xhci, "WARN Can't disable streams for "
Joe Perches03e64e92013-07-16 19:25:59 -07003041 "endpoint 0x%x, "
3042 "streams are already disabled!\n",
Sarah Sharp8df75f42010-04-02 15:34:16 -07003043 eps[i]->desc.bEndpointAddress);
3044 xhci_warn(xhci, "WARN xhci_free_streams() called "
3045 "with non-streams endpoint\n");
3046 return 0;
3047 }
3048 changed_ep_bitmask |= xhci_get_endpoint_flag(&eps[i]->desc);
3049 }
3050 return changed_ep_bitmask;
3051}
3052
3053/*
Luis de Bethencourtc2a298d2015-06-30 16:48:54 +02003054 * The USB device drivers use this function (through the HCD interface in USB
Sarah Sharp8df75f42010-04-02 15:34:16 -07003055 * core) to prepare a set of bulk endpoints to use streams. Streams are used to
3056 * coordinate mass storage command queueing across multiple endpoints (basically
3057 * a stream ID == a task ID).
3058 *
3059 * Setting up streams involves allocating the same size stream context array
3060 * for each endpoint and issuing a configure endpoint command for all endpoints.
3061 *
3062 * Don't allow the call to succeed if one endpoint only supports one stream
3063 * (which means it doesn't support streams at all).
3064 *
3065 * Drivers may get less stream IDs than they asked for, if the host controller
3066 * hardware or endpoints claim they can't support the number of requested
3067 * stream IDs.
3068 */
Lu Baolu39693842017-04-07 17:57:04 +03003069static int xhci_alloc_streams(struct usb_hcd *hcd, struct usb_device *udev,
Sarah Sharp8df75f42010-04-02 15:34:16 -07003070 struct usb_host_endpoint **eps, unsigned int num_eps,
3071 unsigned int num_streams, gfp_t mem_flags)
3072{
3073 int i, ret;
3074 struct xhci_hcd *xhci;
3075 struct xhci_virt_device *vdev;
3076 struct xhci_command *config_cmd;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003077 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003078 unsigned int ep_index;
3079 unsigned int num_stream_ctxs;
Mathias Nymanf9c589e2016-06-21 10:58:02 +03003080 unsigned int max_packet;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003081 unsigned long flags;
3082 u32 changed_ep_bitmask = 0;
3083
3084 if (!eps)
3085 return -EINVAL;
3086
3087 /* Add one to the number of streams requested to account for
3088 * stream 0 that is reserved for xHCI usage.
3089 */
3090 num_streams += 1;
3091 xhci = hcd_to_xhci(hcd);
3092 xhci_dbg(xhci, "Driver wants %u stream IDs (including stream 0).\n",
3093 num_streams);
3094
Hans de Goedef7920882013-11-15 12:14:38 +01003095 /* MaxPSASize value 0 (2 streams) means streams are not supported */
Hans de Goede8f873c12014-07-25 22:01:18 +02003096 if ((xhci->quirks & XHCI_BROKEN_STREAMS) ||
3097 HCC_MAX_PSA(xhci->hcc_params) < 4) {
Hans de Goedef7920882013-11-15 12:14:38 +01003098 xhci_dbg(xhci, "xHCI controller does not support streams.\n");
3099 return -ENOSYS;
3100 }
3101
Sarah Sharp8df75f42010-04-02 15:34:16 -07003102 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
Lu Baolu74e0b562017-04-07 17:57:05 +03003103 if (!config_cmd)
Sarah Sharp8df75f42010-04-02 15:34:16 -07003104 return -ENOMEM;
Lu Baolu74e0b562017-04-07 17:57:05 +03003105
Lin Wang4daf9df2015-01-09 16:06:31 +02003106 ctrl_ctx = xhci_get_input_control_ctx(config_cmd->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003107 if (!ctrl_ctx) {
3108 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3109 __func__);
3110 xhci_free_command(xhci, config_cmd);
3111 return -ENOMEM;
3112 }
Sarah Sharp8df75f42010-04-02 15:34:16 -07003113
3114 /* Check to make sure all endpoints are not already configured for
3115 * streams. While we're at it, find the maximum number of streams that
3116 * all the endpoints will support and check for duplicate endpoints.
3117 */
3118 spin_lock_irqsave(&xhci->lock, flags);
3119 ret = xhci_calculate_streams_and_bitmask(xhci, udev, eps,
3120 num_eps, &num_streams, &changed_ep_bitmask);
3121 if (ret < 0) {
3122 xhci_free_command(xhci, config_cmd);
3123 spin_unlock_irqrestore(&xhci->lock, flags);
3124 return ret;
3125 }
3126 if (num_streams <= 1) {
3127 xhci_warn(xhci, "WARN: endpoints can't handle "
3128 "more than one stream.\n");
3129 xhci_free_command(xhci, config_cmd);
3130 spin_unlock_irqrestore(&xhci->lock, flags);
3131 return -EINVAL;
3132 }
3133 vdev = xhci->devs[udev->slot_id];
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003134 /* Mark each endpoint as being in transition, so
Sarah Sharp8df75f42010-04-02 15:34:16 -07003135 * xhci_urb_enqueue() will reject all URBs.
3136 */
3137 for (i = 0; i < num_eps; i++) {
3138 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3139 vdev->eps[ep_index].ep_state |= EP_GETTING_STREAMS;
3140 }
3141 spin_unlock_irqrestore(&xhci->lock, flags);
3142
3143 /* Setup internal data structures and allocate HW data structures for
3144 * streams (but don't install the HW structures in the input context
3145 * until we're sure all memory allocation succeeded).
3146 */
3147 xhci_calculate_streams_entries(xhci, &num_streams, &num_stream_ctxs);
3148 xhci_dbg(xhci, "Need %u stream ctx entries for %u stream IDs.\n",
3149 num_stream_ctxs, num_streams);
3150
3151 for (i = 0; i < num_eps; i++) {
3152 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
Felipe Balbi734d3dd2016-09-28 13:46:37 +03003153 max_packet = usb_endpoint_maxp(&eps[i]->desc);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003154 vdev->eps[ep_index].stream_info = xhci_alloc_stream_info(xhci,
3155 num_stream_ctxs,
Mathias Nymanf9c589e2016-06-21 10:58:02 +03003156 num_streams,
3157 max_packet, mem_flags);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003158 if (!vdev->eps[ep_index].stream_info)
3159 goto cleanup;
3160 /* Set maxPstreams in endpoint context and update deq ptr to
3161 * point to stream context array. FIXME
3162 */
3163 }
3164
3165 /* Set up the input context for a configure endpoint command. */
3166 for (i = 0; i < num_eps; i++) {
3167 struct xhci_ep_ctx *ep_ctx;
3168
3169 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3170 ep_ctx = xhci_get_ep_ctx(xhci, config_cmd->in_ctx, ep_index);
3171
3172 xhci_endpoint_copy(xhci, config_cmd->in_ctx,
3173 vdev->out_ctx, ep_index);
3174 xhci_setup_streams_ep_input_ctx(xhci, ep_ctx,
3175 vdev->eps[ep_index].stream_info);
3176 }
3177 /* Tell the HW to drop its old copy of the endpoint context info
3178 * and add the updated copy from the input context.
3179 */
3180 xhci_setup_input_ctx_for_config_ep(xhci, config_cmd->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07003181 vdev->out_ctx, ctrl_ctx,
3182 changed_ep_bitmask, changed_ep_bitmask);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003183
3184 /* Issue and wait for the configure endpoint command */
3185 ret = xhci_configure_endpoint(xhci, udev, config_cmd,
3186 false, false);
3187
3188 /* xHC rejected the configure endpoint command for some reason, so we
3189 * leave the old ring intact and free our internal streams data
3190 * structure.
3191 */
3192 if (ret < 0)
3193 goto cleanup;
3194
3195 spin_lock_irqsave(&xhci->lock, flags);
3196 for (i = 0; i < num_eps; i++) {
3197 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3198 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3199 xhci_dbg(xhci, "Slot %u ep ctx %u now has streams.\n",
3200 udev->slot_id, ep_index);
3201 vdev->eps[ep_index].ep_state |= EP_HAS_STREAMS;
3202 }
3203 xhci_free_command(xhci, config_cmd);
3204 spin_unlock_irqrestore(&xhci->lock, flags);
3205
3206 /* Subtract 1 for stream 0, which drivers can't use */
3207 return num_streams - 1;
3208
3209cleanup:
3210 /* If it didn't work, free the streams! */
3211 for (i = 0; i < num_eps; i++) {
3212 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3213 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003214 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003215 /* FIXME Unset maxPstreams in endpoint context and
3216 * update deq ptr to point to normal string ring.
3217 */
3218 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3219 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3220 xhci_endpoint_zero(xhci, vdev, eps[i]);
3221 }
3222 xhci_free_command(xhci, config_cmd);
3223 return -ENOMEM;
3224}
3225
3226/* Transition the endpoint from using streams to being a "normal" endpoint
3227 * without streams.
3228 *
3229 * Modify the endpoint context state, submit a configure endpoint command,
3230 * and free all endpoint rings for streams if that completes successfully.
3231 */
Lu Baolu39693842017-04-07 17:57:04 +03003232static int xhci_free_streams(struct usb_hcd *hcd, struct usb_device *udev,
Sarah Sharp8df75f42010-04-02 15:34:16 -07003233 struct usb_host_endpoint **eps, unsigned int num_eps,
3234 gfp_t mem_flags)
3235{
3236 int i, ret;
3237 struct xhci_hcd *xhci;
3238 struct xhci_virt_device *vdev;
3239 struct xhci_command *command;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003240 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003241 unsigned int ep_index;
3242 unsigned long flags;
3243 u32 changed_ep_bitmask;
3244
3245 xhci = hcd_to_xhci(hcd);
3246 vdev = xhci->devs[udev->slot_id];
3247
3248 /* Set up a configure endpoint command to remove the streams rings */
3249 spin_lock_irqsave(&xhci->lock, flags);
3250 changed_ep_bitmask = xhci_calculate_no_streams_bitmask(xhci,
3251 udev, eps, num_eps);
3252 if (changed_ep_bitmask == 0) {
3253 spin_unlock_irqrestore(&xhci->lock, flags);
3254 return -EINVAL;
3255 }
3256
3257 /* Use the xhci_command structure from the first endpoint. We may have
3258 * allocated too many, but the driver may call xhci_free_streams() for
3259 * each endpoint it grouped into one call to xhci_alloc_streams().
3260 */
3261 ep_index = xhci_get_endpoint_index(&eps[0]->desc);
3262 command = vdev->eps[ep_index].stream_info->free_streams_command;
Lin Wang4daf9df2015-01-09 16:06:31 +02003263 ctrl_ctx = xhci_get_input_control_ctx(command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003264 if (!ctrl_ctx) {
Emil Goode1f215692013-06-25 15:49:36 -07003265 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003266 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3267 __func__);
3268 return -EINVAL;
3269 }
3270
Sarah Sharp8df75f42010-04-02 15:34:16 -07003271 for (i = 0; i < num_eps; i++) {
3272 struct xhci_ep_ctx *ep_ctx;
3273
3274 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3275 ep_ctx = xhci_get_ep_ctx(xhci, command->in_ctx, ep_index);
3276 xhci->devs[udev->slot_id]->eps[ep_index].ep_state |=
3277 EP_GETTING_NO_STREAMS;
3278
3279 xhci_endpoint_copy(xhci, command->in_ctx,
3280 vdev->out_ctx, ep_index);
Lin Wang4daf9df2015-01-09 16:06:31 +02003281 xhci_setup_no_streams_ep_input_ctx(ep_ctx,
Sarah Sharp8df75f42010-04-02 15:34:16 -07003282 &vdev->eps[ep_index]);
3283 }
3284 xhci_setup_input_ctx_for_config_ep(xhci, command->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07003285 vdev->out_ctx, ctrl_ctx,
3286 changed_ep_bitmask, changed_ep_bitmask);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003287 spin_unlock_irqrestore(&xhci->lock, flags);
3288
3289 /* Issue and wait for the configure endpoint command,
3290 * which must succeed.
3291 */
3292 ret = xhci_configure_endpoint(xhci, udev, command,
3293 false, true);
3294
3295 /* xHC rejected the configure endpoint command for some reason, so we
3296 * leave the streams rings intact.
3297 */
3298 if (ret < 0)
3299 return ret;
3300
3301 spin_lock_irqsave(&xhci->lock, flags);
3302 for (i = 0; i < num_eps; i++) {
3303 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3304 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003305 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003306 /* FIXME Unset maxPstreams in endpoint context and
3307 * update deq ptr to point to normal string ring.
3308 */
3309 vdev->eps[ep_index].ep_state &= ~EP_GETTING_NO_STREAMS;
3310 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3311 }
3312 spin_unlock_irqrestore(&xhci->lock, flags);
3313
3314 return 0;
3315}
3316
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003317/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003318 * Deletes endpoint resources for endpoints that were active before a Reset
3319 * Device command, or a Disable Slot command. The Reset Device command leaves
3320 * the control endpoint intact, whereas the Disable Slot command deletes it.
3321 *
3322 * Must be called with xhci->lock held.
3323 */
3324void xhci_free_device_endpoint_resources(struct xhci_hcd *xhci,
3325 struct xhci_virt_device *virt_dev, bool drop_control_ep)
3326{
3327 int i;
3328 unsigned int num_dropped_eps = 0;
3329 unsigned int drop_flags = 0;
3330
3331 for (i = (drop_control_ep ? 0 : 1); i < 31; i++) {
3332 if (virt_dev->eps[i].ring) {
3333 drop_flags |= 1 << i;
3334 num_dropped_eps++;
3335 }
3336 }
3337 xhci->num_active_eps -= num_dropped_eps;
3338 if (num_dropped_eps)
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003339 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3340 "Dropped %u ep ctxs, flags = 0x%x, "
3341 "%u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003342 num_dropped_eps, drop_flags,
3343 xhci->num_active_eps);
3344}
3345
3346/*
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003347 * This submits a Reset Device Command, which will set the device state to 0,
3348 * set the device address to 0, and disable all the endpoints except the default
3349 * control endpoint. The USB core should come back and call
3350 * xhci_address_device(), and then re-set up the configuration. If this is
3351 * called because of a usb_reset_and_verify_device(), then the old alternate
3352 * settings will be re-installed through the normal bandwidth allocation
3353 * functions.
3354 *
3355 * Wait for the Reset Device command to finish. Remove all structures
3356 * associated with the endpoints that were disabled. Clear the input device
Mathias Nymanc5628a22017-06-15 11:55:42 +03003357 * structure? Reset the control endpoint 0 max packet size?
Andiry Xuf0615c42010-10-14 07:22:48 -07003358 *
3359 * If the virt_dev to be reset does not exist or does not match the udev,
3360 * it means the device is lost, possibly due to the xHC restore error and
3361 * re-initialization during S3/S4. In this case, call xhci_alloc_dev() to
3362 * re-allocate the device.
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003363 */
Lu Baolu39693842017-04-07 17:57:04 +03003364static int xhci_discover_or_reset_device(struct usb_hcd *hcd,
3365 struct usb_device *udev)
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003366{
3367 int ret, i;
3368 unsigned long flags;
3369 struct xhci_hcd *xhci;
3370 unsigned int slot_id;
3371 struct xhci_virt_device *virt_dev;
3372 struct xhci_command *reset_device_cmd;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003373 int last_freed_endpoint;
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003374 struct xhci_slot_ctx *slot_ctx;
Sarah Sharp2e279802011-09-02 11:05:50 -07003375 int old_active_eps = 0;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003376
Andiry Xuf0615c42010-10-14 07:22:48 -07003377 ret = xhci_check_args(hcd, udev, NULL, 0, false, __func__);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003378 if (ret <= 0)
3379 return ret;
3380 xhci = hcd_to_xhci(hcd);
3381 slot_id = udev->slot_id;
3382 virt_dev = xhci->devs[slot_id];
Andiry Xuf0615c42010-10-14 07:22:48 -07003383 if (!virt_dev) {
3384 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3385 "not exist. Re-allocate the device\n", slot_id);
3386 ret = xhci_alloc_dev(hcd, udev);
3387 if (ret == 1)
3388 return 0;
3389 else
3390 return -EINVAL;
3391 }
3392
Brian Campbell326124a2015-07-21 17:20:28 +03003393 if (virt_dev->tt_info)
3394 old_active_eps = virt_dev->tt_info->active_eps;
3395
Andiry Xuf0615c42010-10-14 07:22:48 -07003396 if (virt_dev->udev != udev) {
3397 /* If the virt_dev and the udev does not match, this virt_dev
3398 * may belong to another udev.
3399 * Re-allocate the device.
3400 */
3401 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3402 "not match the udev. Re-allocate the device\n",
3403 slot_id);
3404 ret = xhci_alloc_dev(hcd, udev);
3405 if (ret == 1)
3406 return 0;
3407 else
3408 return -EINVAL;
3409 }
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003410
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003411 /* If device is not setup, there is no point in resetting it */
3412 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
3413 if (GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state)) ==
3414 SLOT_STATE_DISABLED)
3415 return 0;
3416
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003417 trace_xhci_discover_or_reset_device(slot_ctx);
3418
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003419 xhci_dbg(xhci, "Resetting device with slot ID %u\n", slot_id);
3420 /* Allocate the command structure that holds the struct completion.
3421 * Assume we're in process context, since the normal device reset
3422 * process has to wait for the device anyway. Storage devices are
3423 * reset as part of error handling, so use GFP_NOIO instead of
3424 * GFP_KERNEL.
3425 */
3426 reset_device_cmd = xhci_alloc_command(xhci, false, true, GFP_NOIO);
3427 if (!reset_device_cmd) {
3428 xhci_dbg(xhci, "Couldn't allocate command structure.\n");
3429 return -ENOMEM;
3430 }
3431
3432 /* Attempt to submit the Reset Device command to the command ring */
3433 spin_lock_irqsave(&xhci->lock, flags);
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08003434
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003435 ret = xhci_queue_reset_device(xhci, reset_device_cmd, slot_id);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003436 if (ret) {
3437 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003438 spin_unlock_irqrestore(&xhci->lock, flags);
3439 goto command_cleanup;
3440 }
3441 xhci_ring_cmd_db(xhci);
3442 spin_unlock_irqrestore(&xhci->lock, flags);
3443
3444 /* Wait for the Reset Device command to finish */
Mathias Nymanc311e392014-05-08 19:26:03 +03003445 wait_for_completion(reset_device_cmd->completion);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003446
3447 /* The Reset Device command can't fail, according to the 0.95/0.96 spec,
3448 * unless we tried to reset a slot ID that wasn't enabled,
3449 * or the device wasn't in the addressed or configured state.
3450 */
3451 ret = reset_device_cmd->status;
3452 switch (ret) {
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003453 case COMP_COMMAND_ABORTED:
Mathias Nyman604d02a2017-05-17 18:32:05 +03003454 case COMP_COMMAND_RING_STOPPED:
Mathias Nymanc311e392014-05-08 19:26:03 +03003455 xhci_warn(xhci, "Timeout waiting for reset device command\n");
3456 ret = -ETIME;
3457 goto command_cleanup;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003458 case COMP_SLOT_NOT_ENABLED_ERROR: /* 0.95 completion for bad slot ID */
3459 case COMP_CONTEXT_STATE_ERROR: /* 0.96 completion code for same thing */
Xenia Ragiadakou38a532a2013-07-02 17:49:25 +03003460 xhci_dbg(xhci, "Can't reset device (slot ID %u) in %s state\n",
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003461 slot_id,
3462 xhci_get_slot_state(xhci, virt_dev->out_ctx));
Xenia Ragiadakou38a532a2013-07-02 17:49:25 +03003463 xhci_dbg(xhci, "Not freeing device rings.\n");
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003464 /* Don't treat this as an error. May change my mind later. */
3465 ret = 0;
3466 goto command_cleanup;
3467 case COMP_SUCCESS:
3468 xhci_dbg(xhci, "Successful reset device command.\n");
3469 break;
3470 default:
3471 if (xhci_is_vendor_info_code(xhci, ret))
3472 break;
3473 xhci_warn(xhci, "Unknown completion code %u for "
3474 "reset device command.\n", ret);
3475 ret = -EINVAL;
3476 goto command_cleanup;
3477 }
3478
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003479 /* Free up host controller endpoint resources */
3480 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3481 spin_lock_irqsave(&xhci->lock, flags);
3482 /* Don't delete the default control endpoint resources */
3483 xhci_free_device_endpoint_resources(xhci, virt_dev, false);
3484 spin_unlock_irqrestore(&xhci->lock, flags);
3485 }
3486
Mathias Nymanc5628a22017-06-15 11:55:42 +03003487 /* Everything but endpoint 0 is disabled, so free the rings. */
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003488 last_freed_endpoint = 1;
Felipe Balbi98871e92017-01-23 14:20:04 +02003489 for (i = 1; i < 31; i++) {
Dmitry Torokhov2dea75d2011-04-12 23:06:28 -07003490 struct xhci_virt_ep *ep = &virt_dev->eps[i];
3491
3492 if (ep->ep_state & EP_HAS_STREAMS) {
Hans de Goededf613832013-10-04 00:29:45 +02003493 xhci_warn(xhci, "WARN: endpoint 0x%02x has streams on device reset, freeing streams.\n",
3494 xhci_get_endpoint_address(i));
Dmitry Torokhov2dea75d2011-04-12 23:06:28 -07003495 xhci_free_stream_info(xhci, ep->stream_info);
3496 ep->stream_info = NULL;
3497 ep->ep_state &= ~EP_HAS_STREAMS;
3498 }
3499
3500 if (ep->ring) {
Lu Baolu02b6fdc2017-10-05 11:21:39 +03003501 xhci_debugfs_remove_endpoint(xhci, virt_dev, i);
Mathias Nymanc5628a22017-06-15 11:55:42 +03003502 xhci_free_endpoint_ring(xhci, virt_dev, i);
Dmitry Torokhov2dea75d2011-04-12 23:06:28 -07003503 last_freed_endpoint = i;
3504 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003505 if (!list_empty(&virt_dev->eps[i].bw_endpoint_list))
3506 xhci_drop_ep_from_interval_table(xhci,
3507 &virt_dev->eps[i].bw_info,
3508 virt_dev->bw_table,
3509 udev,
3510 &virt_dev->eps[i],
3511 virt_dev->tt_info);
Sarah Sharp9af5d712011-09-02 11:05:48 -07003512 xhci_clear_endpoint_bw_info(&virt_dev->eps[i].bw_info);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003513 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003514 /* If necessary, update the number of active TTs on this root port */
3515 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003516 ret = 0;
3517
3518command_cleanup:
3519 xhci_free_command(xhci, reset_device_cmd);
3520 return ret;
3521}
3522
3523/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003524 * At this point, the struct usb_device is about to go away, the device has
3525 * disconnected, and all traffic has been stopped and the endpoints have been
3526 * disabled. Free any HC data structures associated with that device.
3527 */
Lu Baolu39693842017-04-07 17:57:04 +03003528static void xhci_free_dev(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003529{
3530 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003531 struct xhci_virt_device *virt_dev;
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003532 struct xhci_slot_ctx *slot_ctx;
Andiry Xu64927732010-10-14 07:22:45 -07003533 int i, ret;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003534
Lu Baolu02b6fdc2017-10-05 11:21:39 +03003535 xhci_debugfs_remove_slot(xhci, udev->slot_id);
3536
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003537#ifndef CONFIG_USB_DEFAULT_PERSIST
3538 /*
3539 * We called pm_runtime_get_noresume when the device was attached.
3540 * Decrement the counter here to allow controller to runtime suspend
3541 * if no devices remain.
3542 */
3543 if (xhci->quirks & XHCI_RESET_ON_RESUME)
Sarah Sharpe7ecf062013-08-28 09:31:04 -07003544 pm_runtime_put_noidle(hcd->self.controller);
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003545#endif
3546
Andiry Xu64927732010-10-14 07:22:45 -07003547 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003548 /* If the host is halted due to driver unload, we still need to free the
3549 * device.
3550 */
Lu Baolucd3f1792017-10-05 11:21:41 +03003551 if (ret <= 0 && ret != -ENODEV)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003552 return;
Andiry Xu64927732010-10-14 07:22:45 -07003553
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003554 virt_dev = xhci->devs[udev->slot_id];
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003555 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
3556 trace_xhci_free_dev(slot_ctx);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003557
3558 /* Stop any wayward timer functions (which may grab the lock) */
Felipe Balbi98871e92017-01-23 14:20:04 +02003559 for (i = 0; i < 31; i++) {
Mathias Nyman9983a5f2017-01-23 14:19:52 +02003560 virt_dev->eps[i].ep_state &= ~EP_STOP_CMD_PENDING;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003561 del_timer_sync(&virt_dev->eps[i].stop_cmd_timer);
3562 }
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003563
Lu Baolu11ec7582017-10-05 11:21:42 +03003564 ret = xhci_disable_slot(xhci, udev->slot_id);
3565 if (ret)
3566 xhci_free_virt_device(xhci, udev->slot_id);
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003567}
3568
Lu Baolucd3f1792017-10-05 11:21:41 +03003569int xhci_disable_slot(struct xhci_hcd *xhci, u32 slot_id)
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003570{
Lu Baolucd3f1792017-10-05 11:21:41 +03003571 struct xhci_command *command;
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003572 unsigned long flags;
3573 u32 state;
3574 int ret = 0;
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003575
Lu Baolucd3f1792017-10-05 11:21:41 +03003576 command = xhci_alloc_command(xhci, false, false, GFP_KERNEL);
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003577 if (!command)
3578 return -ENOMEM;
3579
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003580 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003581 /* Don't disable the slot if the host controller is dead. */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02003582 state = readl(&xhci->op_regs->status);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003583 if (state == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING) ||
3584 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003585 xhci_free_virt_device(xhci, slot_id);
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003586 spin_unlock_irqrestore(&xhci->lock, flags);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003587 kfree(command);
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003588 return ret;
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003589 }
3590
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003591 ret = xhci_queue_slot_control(xhci, command, TRB_DISABLE_SLOT,
3592 slot_id);
3593 if (ret) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003594 spin_unlock_irqrestore(&xhci->lock, flags);
Lu Baolucd3f1792017-10-05 11:21:41 +03003595 kfree(command);
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003596 return ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003597 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003598 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003599 spin_unlock_irqrestore(&xhci->lock, flags);
Guoqing Zhangf9e609b2017-04-07 17:56:52 +03003600 return ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003601}
3602
3603/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003604 * Checks if we have enough host controller resources for the default control
3605 * endpoint.
3606 *
3607 * Must be called with xhci->lock held.
3608 */
3609static int xhci_reserve_host_control_ep_resources(struct xhci_hcd *xhci)
3610{
3611 if (xhci->num_active_eps + 1 > xhci->limit_active_eps) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003612 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3613 "Not enough ep ctxs: "
3614 "%u active, need to add 1, limit is %u.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003615 xhci->num_active_eps, xhci->limit_active_eps);
3616 return -ENOMEM;
3617 }
3618 xhci->num_active_eps += 1;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003619 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3620 "Adding 1 ep ctx, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003621 xhci->num_active_eps);
3622 return 0;
3623}
3624
3625
3626/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003627 * Returns 0 if the xHC ran out of device slots, the Enable Slot command
3628 * timed out, or allocating memory failed. Returns 1 on success.
3629 */
3630int xhci_alloc_dev(struct usb_hcd *hcd, struct usb_device *udev)
3631{
3632 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003633 struct xhci_virt_device *vdev;
3634 struct xhci_slot_ctx *slot_ctx;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003635 unsigned long flags;
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003636 int ret, slot_id;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003637 struct xhci_command *command;
3638
Lu Baolu87e44f22016-11-11 15:13:30 +02003639 command = xhci_alloc_command(xhci, false, true, GFP_KERNEL);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003640 if (!command)
3641 return 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003642
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003643 /* xhci->slot_id and xhci->addr_dev are not thread-safe */
3644 mutex_lock(&xhci->mutex);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003645 spin_lock_irqsave(&xhci->lock, flags);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003646 ret = xhci_queue_slot_control(xhci, command, TRB_ENABLE_SLOT, 0);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003647 if (ret) {
3648 spin_unlock_irqrestore(&xhci->lock, flags);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003649 mutex_unlock(&xhci->mutex);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003650 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
Lu Baolu87e44f22016-11-11 15:13:30 +02003651 xhci_free_command(xhci, command);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003652 return 0;
3653 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003654 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003655 spin_unlock_irqrestore(&xhci->lock, flags);
3656
Mathias Nymanc311e392014-05-08 19:26:03 +03003657 wait_for_completion(command->completion);
Lu Baoluc2d3d492016-11-11 15:13:31 +02003658 slot_id = command->slot_id;
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003659 mutex_unlock(&xhci->mutex);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003660
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003661 if (!slot_id || command->status != COMP_SUCCESS) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003662 xhci_err(xhci, "Error while assigning device slot ID\n");
Sarah Sharpbe982032014-05-08 19:25:59 +03003663 xhci_err(xhci, "Max number of devices this xHCI host supports is %u.\n",
3664 HCS_MAX_SLOTS(
3665 readl(&xhci->cap_regs->hcs_params1)));
Lu Baolu87e44f22016-11-11 15:13:30 +02003666 xhci_free_command(xhci, command);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003667 return 0;
3668 }
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003669
Lu Baolucd3f1792017-10-05 11:21:41 +03003670 xhci_free_command(xhci, command);
3671
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003672 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3673 spin_lock_irqsave(&xhci->lock, flags);
3674 ret = xhci_reserve_host_control_ep_resources(xhci);
3675 if (ret) {
3676 spin_unlock_irqrestore(&xhci->lock, flags);
3677 xhci_warn(xhci, "Not enough host resources, "
3678 "active endpoint contexts = %u\n",
3679 xhci->num_active_eps);
3680 goto disable_slot;
3681 }
3682 spin_unlock_irqrestore(&xhci->lock, flags);
3683 }
3684 /* Use GFP_NOIO, since this function can be called from
Sarah Sharpa6d940d2010-12-28 13:08:42 -08003685 * xhci_discover_or_reset_device(), which may be called as part of
3686 * mass storage driver error handling.
3687 */
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003688 if (!xhci_alloc_virt_device(xhci, slot_id, udev, GFP_NOIO)) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003689 xhci_warn(xhci, "Could not allocate xHCI USB device data structures\n");
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003690 goto disable_slot;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003691 }
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003692 vdev = xhci->devs[slot_id];
3693 slot_ctx = xhci_get_slot_ctx(xhci, vdev->out_ctx);
3694 trace_xhci_alloc_dev(slot_ctx);
3695
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003696 udev->slot_id = slot_id;
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003697
Lu Baolu02b6fdc2017-10-05 11:21:39 +03003698 xhci_debugfs_create_slot(xhci, slot_id);
3699
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003700#ifndef CONFIG_USB_DEFAULT_PERSIST
3701 /*
3702 * If resetting upon resume, we can't put the controller into runtime
3703 * suspend if there is a device attached.
3704 */
3705 if (xhci->quirks & XHCI_RESET_ON_RESUME)
Sarah Sharpe7ecf062013-08-28 09:31:04 -07003706 pm_runtime_get_noresume(hcd->self.controller);
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003707#endif
3708
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003709 /* Is this a LS or FS device under a HS hub? */
3710 /* Hub or peripherial? */
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003711 return 1;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003712
3713disable_slot:
Lu Baolu11ec7582017-10-05 11:21:42 +03003714 ret = xhci_disable_slot(xhci, udev->slot_id);
3715 if (ret)
3716 xhci_free_virt_device(xhci, udev->slot_id);
3717
3718 return 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003719}
3720
3721/*
Dan Williams48fc7db2013-12-05 17:07:27 -08003722 * Issue an Address Device command and optionally send a corresponding
3723 * SetAddress request to the device.
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003724 */
Dan Williams48fc7db2013-12-05 17:07:27 -08003725static int xhci_setup_device(struct usb_hcd *hcd, struct usb_device *udev,
3726 enum xhci_setup_dev setup)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003727{
Dan Williams6f8ffc02013-11-22 01:20:01 -08003728 const char *act = setup == SETUP_CONTEXT_ONLY ? "context" : "address";
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003729 unsigned long flags;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003730 struct xhci_virt_device *virt_dev;
3731 int ret = 0;
3732 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
John Yound115b042009-07-27 12:05:15 -07003733 struct xhci_slot_ctx *slot_ctx;
3734 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8e595a52009-07-27 12:03:31 -07003735 u64 temp_64;
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003736 struct xhci_command *command = NULL;
3737
3738 mutex_lock(&xhci->mutex);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003739
Lu Baolu90797ae2017-01-03 18:28:44 +02003740 if (xhci->xhc_state) { /* dying, removing or halted */
3741 ret = -ESHUTDOWN;
Roger Quadros448116b2015-09-21 17:46:15 +03003742 goto out;
Lu Baolu90797ae2017-01-03 18:28:44 +02003743 }
Roger Quadros448116b2015-09-21 17:46:15 +03003744
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003745 if (!udev->slot_id) {
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003746 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3747 "Bad Slot ID %d", udev->slot_id);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003748 ret = -EINVAL;
3749 goto out;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003750 }
3751
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003752 virt_dev = xhci->devs[udev->slot_id];
3753
Matt Evans7ed603e2011-03-29 13:40:56 +11003754 if (WARN_ON(!virt_dev)) {
3755 /*
3756 * In plug/unplug torture test with an NEC controller,
3757 * a zero-dereference was observed once due to virt_dev = 0.
3758 * Print useful debug rather than crash if it is observed again!
3759 */
3760 xhci_warn(xhci, "Virt dev invalid for slot_id 0x%x!\n",
3761 udev->slot_id);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003762 ret = -EINVAL;
3763 goto out;
Matt Evans7ed603e2011-03-29 13:40:56 +11003764 }
Felipe Balbi19a7d0d2017-04-07 17:56:57 +03003765 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
3766 trace_xhci_setup_device_slot(slot_ctx);
Matt Evans7ed603e2011-03-29 13:40:56 +11003767
Mathias Nymanf161ead2015-01-09 17:18:28 +02003768 if (setup == SETUP_CONTEXT_ONLY) {
Mathias Nymanf161ead2015-01-09 17:18:28 +02003769 if (GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state)) ==
3770 SLOT_STATE_DEFAULT) {
3771 xhci_dbg(xhci, "Slot already in default state\n");
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003772 goto out;
Mathias Nymanf161ead2015-01-09 17:18:28 +02003773 }
3774 }
3775
Lu Baolu87e44f22016-11-11 15:13:30 +02003776 command = xhci_alloc_command(xhci, false, true, GFP_KERNEL);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003777 if (!command) {
3778 ret = -ENOMEM;
3779 goto out;
3780 }
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003781
3782 command->in_ctx = virt_dev->in_ctx;
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003783
Andiry Xuf0615c42010-10-14 07:22:48 -07003784 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Lin Wang4daf9df2015-01-09 16:06:31 +02003785 ctrl_ctx = xhci_get_input_control_ctx(virt_dev->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003786 if (!ctrl_ctx) {
3787 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3788 __func__);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003789 ret = -EINVAL;
3790 goto out;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003791 }
Andiry Xuf0615c42010-10-14 07:22:48 -07003792 /*
3793 * If this is the first Set Address since device plug-in or
3794 * virt_device realloaction after a resume with an xHCI power loss,
3795 * then set up the slot context.
3796 */
3797 if (!slot_ctx->dev_info)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003798 xhci_setup_addressable_virt_dev(xhci, udev);
Andiry Xuf0615c42010-10-14 07:22:48 -07003799 /* Otherwise, update the control endpoint ring enqueue pointer. */
Sarah Sharp2d1ee592010-07-09 17:08:54 +02003800 else
3801 xhci_copy_ep0_dequeue_into_input_ctx(xhci, udev);
Sarah Sharpd31c2852011-11-03 13:06:08 -07003802 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG | EP0_FLAG);
3803 ctrl_ctx->drop_flags = 0;
3804
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003805 trace_xhci_address_ctx(xhci, virt_dev->in_ctx,
Xenia Ragiadakou0c052aa2013-11-15 03:18:07 +02003806 le32_to_cpu(slot_ctx->dev_info) >> 27);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003807
Sarah Sharpf88ba782009-05-14 11:44:22 -07003808 spin_lock_irqsave(&xhci->lock, flags);
Felipe Balbia711ede2017-01-23 14:20:23 +02003809 trace_xhci_setup_device(virt_dev);
Mathias Nymanddba5cd2014-05-08 19:26:00 +03003810 ret = xhci_queue_address_device(xhci, command, virt_dev->in_ctx->dma,
Dan Williams48fc7db2013-12-05 17:07:27 -08003811 udev->slot_id, setup);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003812 if (ret) {
3813 spin_unlock_irqrestore(&xhci->lock, flags);
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003814 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3815 "FIXME: allocate a command ring segment");
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003816 goto out;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003817 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003818 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003819 spin_unlock_irqrestore(&xhci->lock, flags);
3820
3821 /* ctrl tx can take up to 5 sec; XXX: need more time for xHC? */
Mathias Nymanc311e392014-05-08 19:26:03 +03003822 wait_for_completion(command->completion);
3823
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003824 /* FIXME: From section 4.3.4: "Software shall be responsible for timing
3825 * the SetAddress() "recovery interval" required by USB and aborting the
3826 * command on a timeout.
3827 */
Mathias Nyman9ea18332014-05-08 19:26:02 +03003828 switch (command->status) {
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003829 case COMP_COMMAND_ABORTED:
Mathias Nyman604d02a2017-05-17 18:32:05 +03003830 case COMP_COMMAND_RING_STOPPED:
Mathias Nymanc311e392014-05-08 19:26:03 +03003831 xhci_warn(xhci, "Timeout while waiting for setup device command\n");
3832 ret = -ETIME;
3833 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003834 case COMP_CONTEXT_STATE_ERROR:
3835 case COMP_SLOT_NOT_ENABLED_ERROR:
Dan Williams6f8ffc02013-11-22 01:20:01 -08003836 xhci_err(xhci, "Setup ERROR: setup %s command for slot %d.\n",
3837 act, udev->slot_id);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003838 ret = -EINVAL;
3839 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003840 case COMP_USB_TRANSACTION_ERROR:
Dan Williams6f8ffc02013-11-22 01:20:01 -08003841 dev_warn(&udev->dev, "Device not responding to setup %s.\n", act);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003842 ret = -EPROTO;
3843 break;
Felipe Balbi0b7c1052017-01-23 14:20:06 +02003844 case COMP_INCOMPATIBLE_DEVICE_ERROR:
Dan Williams6f8ffc02013-11-22 01:20:01 -08003845 dev_warn(&udev->dev,
3846 "ERROR: Incompatible device for setup %s command\n", act);
Alex Hef6ba6fe2011-06-08 18:34:06 +08003847 ret = -ENODEV;
3848 break;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003849 case COMP_SUCCESS:
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003850 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
Dan Williams6f8ffc02013-11-22 01:20:01 -08003851 "Successful setup %s command", act);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003852 break;
3853 default:
Dan Williams6f8ffc02013-11-22 01:20:01 -08003854 xhci_err(xhci,
3855 "ERROR: unexpected setup %s command completion code 0x%x.\n",
Mathias Nyman9ea18332014-05-08 19:26:02 +03003856 act, command->status);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003857 trace_xhci_address_ctx(xhci, virt_dev->out_ctx, 1);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003858 ret = -EINVAL;
3859 break;
3860 }
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003861 if (ret)
3862 goto out;
Sarah Sharpf7b2e402014-01-30 13:27:49 -08003863 temp_64 = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003864 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3865 "Op regs DCBAA ptr = %#016llx", temp_64);
3866 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3867 "Slot ID %d dcbaa entry @%p = %#016llx",
3868 udev->slot_id,
3869 &xhci->dcbaa->dev_context_ptrs[udev->slot_id],
3870 (unsigned long long)
3871 le64_to_cpu(xhci->dcbaa->dev_context_ptrs[udev->slot_id]));
3872 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3873 "Output Context DMA address = %#08llx",
John Yound115b042009-07-27 12:05:15 -07003874 (unsigned long long)virt_dev->out_ctx->dma);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003875 trace_xhci_address_ctx(xhci, virt_dev->in_ctx,
Xenia Ragiadakou0c052aa2013-11-15 03:18:07 +02003876 le32_to_cpu(slot_ctx->dev_info) >> 27);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003877 /*
3878 * USB core uses address 1 for the roothubs, so we add one to the
3879 * address given back to us by the HC.
3880 */
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003881 trace_xhci_address_ctx(xhci, virt_dev->out_ctx,
Xenia Ragiadakou0c052aa2013-11-15 03:18:07 +02003882 le32_to_cpu(slot_ctx->dev_info) >> 27);
Sarah Sharpf94e01862009-04-27 19:58:38 -07003883 /* Zero the input context control for later use */
John Yound115b042009-07-27 12:05:15 -07003884 ctrl_ctx->add_flags = 0;
3885 ctrl_ctx->drop_flags = 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003886
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003887 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
Dan Williamsa2cdc342013-10-16 12:25:44 -07003888 "Internal device address = %d",
3889 le32_to_cpu(slot_ctx->dev_state) & DEV_ADDR_MASK);
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003890out:
3891 mutex_unlock(&xhci->mutex);
Lu Baolu87e44f22016-11-11 15:13:30 +02003892 if (command) {
3893 kfree(command->completion);
3894 kfree(command);
3895 }
Chris Bainbridgea00918d2015-05-19 16:30:51 +03003896 return ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003897}
3898
Lu Baolu39693842017-04-07 17:57:04 +03003899static int xhci_address_device(struct usb_hcd *hcd, struct usb_device *udev)
Dan Williams48fc7db2013-12-05 17:07:27 -08003900{
3901 return xhci_setup_device(hcd, udev, SETUP_CONTEXT_ADDRESS);
3902}
3903
Lu Baolu39693842017-04-07 17:57:04 +03003904static int xhci_enable_device(struct usb_hcd *hcd, struct usb_device *udev)
Dan Williams48fc7db2013-12-05 17:07:27 -08003905{
3906 return xhci_setup_device(hcd, udev, SETUP_CONTEXT_ONLY);
3907}
3908
Lan Tianyu3f5eb142013-03-19 16:48:12 +08003909/*
3910 * Transfer the port index into real index in the HW port status
3911 * registers. Caculate offset between the port's PORTSC register
3912 * and port status base. Divide the number of per port register
3913 * to get the real index. The raw port number bases 1.
3914 */
3915int xhci_find_raw_port_number(struct usb_hcd *hcd, int port1)
3916{
3917 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3918 __le32 __iomem *base_addr = &xhci->op_regs->port_status_base;
3919 __le32 __iomem *addr;
3920 int raw_port;
3921
Mathias Nymanb50107b2015-10-01 18:40:38 +03003922 if (hcd->speed < HCD_USB3)
Lan Tianyu3f5eb142013-03-19 16:48:12 +08003923 addr = xhci->usb2_ports[port1 - 1];
3924 else
3925 addr = xhci->usb3_ports[port1 - 1];
3926
3927 raw_port = (addr - base_addr)/NUM_PORT_REGS + 1;
3928 return raw_port;
3929}
3930
Mathias Nymana558ccd2013-05-23 17:14:30 +03003931/*
3932 * Issue an Evaluate Context command to change the Maximum Exit Latency in the
3933 * slot context. If that succeeds, store the new MEL in the xhci_virt_device.
3934 */
Olof Johanssond5c82fe2013-07-23 11:58:20 -07003935static int __maybe_unused xhci_change_max_exit_latency(struct xhci_hcd *xhci,
Mathias Nymana558ccd2013-05-23 17:14:30 +03003936 struct usb_device *udev, u16 max_exit_latency)
3937{
3938 struct xhci_virt_device *virt_dev;
3939 struct xhci_command *command;
3940 struct xhci_input_control_ctx *ctrl_ctx;
3941 struct xhci_slot_ctx *slot_ctx;
3942 unsigned long flags;
3943 int ret;
3944
3945 spin_lock_irqsave(&xhci->lock, flags);
Mathias Nyman96044692014-09-11 13:55:50 +03003946
3947 virt_dev = xhci->devs[udev->slot_id];
3948
3949 /*
3950 * virt_dev might not exists yet if xHC resumed from hibernate (S4) and
3951 * xHC was re-initialized. Exit latency will be set later after
3952 * hub_port_finish_reset() is done and xhci->devs[] are re-allocated
3953 */
3954
3955 if (!virt_dev || max_exit_latency == virt_dev->current_mel) {
Mathias Nymana558ccd2013-05-23 17:14:30 +03003956 spin_unlock_irqrestore(&xhci->lock, flags);
3957 return 0;
3958 }
3959
3960 /* Attempt to issue an Evaluate Context command to change the MEL. */
Mathias Nymana558ccd2013-05-23 17:14:30 +03003961 command = xhci->lpm_command;
Lin Wang4daf9df2015-01-09 16:06:31 +02003962 ctrl_ctx = xhci_get_input_control_ctx(command->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003963 if (!ctrl_ctx) {
3964 spin_unlock_irqrestore(&xhci->lock, flags);
3965 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3966 __func__);
3967 return -ENOMEM;
3968 }
3969
Mathias Nymana558ccd2013-05-23 17:14:30 +03003970 xhci_slot_copy(xhci, command->in_ctx, virt_dev->out_ctx);
3971 spin_unlock_irqrestore(&xhci->lock, flags);
3972
Mathias Nymana558ccd2013-05-23 17:14:30 +03003973 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
3974 slot_ctx = xhci_get_slot_ctx(xhci, command->in_ctx);
3975 slot_ctx->dev_info2 &= cpu_to_le32(~((u32) MAX_EXIT));
3976 slot_ctx->dev_info2 |= cpu_to_le32(max_exit_latency);
Mathias Nyman4801d4ea2014-11-27 18:19:15 +02003977 slot_ctx->dev_state = 0;
Mathias Nymana558ccd2013-05-23 17:14:30 +03003978
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03003979 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
3980 "Set up evaluate context for LPM MEL change.");
Mathias Nymana558ccd2013-05-23 17:14:30 +03003981
3982 /* Issue and wait for the evaluate context command. */
3983 ret = xhci_configure_endpoint(xhci, udev, command,
3984 true, true);
Mathias Nymana558ccd2013-05-23 17:14:30 +03003985
3986 if (!ret) {
3987 spin_lock_irqsave(&xhci->lock, flags);
3988 virt_dev->current_mel = max_exit_latency;
3989 spin_unlock_irqrestore(&xhci->lock, flags);
3990 }
3991 return ret;
3992}
3993
Rafael J. Wysockiceb6c9c2014-11-29 23:47:05 +01003994#ifdef CONFIG_PM
Andiry Xu95743232011-09-23 14:19:51 -07003995
3996/* BESL to HIRD Encoding array for USB2 LPM */
3997static int xhci_besl_encoding[16] = {125, 150, 200, 300, 400, 500, 1000, 2000,
3998 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000};
3999
4000/* Calculate HIRD/BESL for USB2 PORTPMSC*/
Andiry Xuf99298b2011-12-12 16:45:28 +08004001static int xhci_calculate_hird_besl(struct xhci_hcd *xhci,
4002 struct usb_device *udev)
Andiry Xu95743232011-09-23 14:19:51 -07004003{
Andiry Xuf99298b2011-12-12 16:45:28 +08004004 int u2del, besl, besl_host;
4005 int besl_device = 0;
4006 u32 field;
Andiry Xu95743232011-09-23 14:19:51 -07004007
Andiry Xuf99298b2011-12-12 16:45:28 +08004008 u2del = HCS_U2_LATENCY(xhci->hcs_params3);
4009 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
4010
4011 if (field & USB_BESL_SUPPORT) {
4012 for (besl_host = 0; besl_host < 16; besl_host++) {
4013 if (xhci_besl_encoding[besl_host] >= u2del)
Andiry Xu95743232011-09-23 14:19:51 -07004014 break;
4015 }
Andiry Xuf99298b2011-12-12 16:45:28 +08004016 /* Use baseline BESL value as default */
4017 if (field & USB_BESL_BASELINE_VALID)
4018 besl_device = USB_GET_BESL_BASELINE(field);
4019 else if (field & USB_BESL_DEEP_VALID)
4020 besl_device = USB_GET_BESL_DEEP(field);
Andiry Xu95743232011-09-23 14:19:51 -07004021 } else {
4022 if (u2del <= 50)
Andiry Xuf99298b2011-12-12 16:45:28 +08004023 besl_host = 0;
Andiry Xu95743232011-09-23 14:19:51 -07004024 else
Andiry Xuf99298b2011-12-12 16:45:28 +08004025 besl_host = (u2del - 51) / 75 + 1;
Andiry Xu95743232011-09-23 14:19:51 -07004026 }
4027
Andiry Xuf99298b2011-12-12 16:45:28 +08004028 besl = besl_host + besl_device;
4029 if (besl > 15)
4030 besl = 15;
4031
4032 return besl;
Andiry Xu95743232011-09-23 14:19:51 -07004033}
4034
Mathias Nymana558ccd2013-05-23 17:14:30 +03004035/* Calculate BESLD, L1 timeout and HIRDM for USB2 PORTHLPMC */
4036static int xhci_calculate_usb2_hw_lpm_params(struct usb_device *udev)
4037{
4038 u32 field;
4039 int l1;
4040 int besld = 0;
4041 int hirdm = 0;
4042
4043 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
4044
4045 /* xHCI l1 is set in steps of 256us, xHCI 1.0 section 5.4.11.2 */
Mathias Nyman17f34862013-05-23 17:14:31 +03004046 l1 = udev->l1_params.timeout / 256;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004047
4048 /* device has preferred BESLD */
4049 if (field & USB_BESL_DEEP_VALID) {
4050 besld = USB_GET_BESL_DEEP(field);
4051 hirdm = 1;
4052 }
4053
4054 return PORT_BESLD(besld) | PORT_L1_TIMEOUT(l1) | PORT_HIRDM(hirdm);
4055}
4056
Lu Baolu39693842017-04-07 17:57:04 +03004057static int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
Andiry Xu65580b432011-09-23 14:19:52 -07004058 struct usb_device *udev, int enable)
4059{
4060 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4061 __le32 __iomem **port_array;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004062 __le32 __iomem *pm_addr, *hlpm_addr;
4063 u32 pm_val, hlpm_val, field;
Andiry Xu65580b432011-09-23 14:19:52 -07004064 unsigned int port_num;
4065 unsigned long flags;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004066 int hird, exit_latency;
4067 int ret;
Andiry Xu65580b432011-09-23 14:19:52 -07004068
Mathias Nymanb50107b2015-10-01 18:40:38 +03004069 if (hcd->speed >= HCD_USB3 || !xhci->hw_lpm_support ||
Andiry Xu65580b432011-09-23 14:19:52 -07004070 !udev->lpm_capable)
4071 return -EPERM;
4072
4073 if (!udev->parent || udev->parent->parent ||
4074 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
4075 return -EPERM;
4076
4077 if (udev->usb2_hw_lpm_capable != 1)
4078 return -EPERM;
4079
4080 spin_lock_irqsave(&xhci->lock, flags);
4081
4082 port_array = xhci->usb2_ports;
4083 port_num = udev->portnum - 1;
Mathias Nymanb6e76372013-05-23 17:14:29 +03004084 pm_addr = port_array[port_num] + PORTPMSC;
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004085 pm_val = readl(pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004086 hlpm_addr = port_array[port_num] + PORTHLPMC;
4087 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
Andiry Xu65580b432011-09-23 14:19:52 -07004088
4089 xhci_dbg(xhci, "%s port %d USB2 hardware LPM\n",
Lin Wang654a55d2014-05-08 19:25:54 +03004090 enable ? "enable" : "disable", port_num + 1);
Andiry Xu65580b432011-09-23 14:19:52 -07004091
Thang Q. Nguyen4750bc72017-10-05 11:21:37 +03004092 if (enable && !(xhci->quirks & XHCI_HW_LPM_DISABLE)) {
Mathias Nymana558ccd2013-05-23 17:14:30 +03004093 /* Host supports BESL timeout instead of HIRD */
4094 if (udev->usb2_hw_lpm_besl_capable) {
4095 /* if device doesn't have a preferred BESL value use a
4096 * default one which works with mixed HIRD and BESL
4097 * systems. See XHCI_DEFAULT_BESL definition in xhci.h
4098 */
4099 if ((field & USB_BESL_SUPPORT) &&
4100 (field & USB_BESL_BASELINE_VALID))
4101 hird = USB_GET_BESL_BASELINE(field);
4102 else
Mathias Nyman17f34862013-05-23 17:14:31 +03004103 hird = udev->l1_params.besl;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004104
4105 exit_latency = xhci_besl_encoding[hird];
4106 spin_unlock_irqrestore(&xhci->lock, flags);
4107
4108 /* USB 3.0 code dedicate one xhci->lpm_command->in_ctx
4109 * input context for link powermanagement evaluate
4110 * context commands. It is protected by hcd->bandwidth
4111 * mutex and is shared by all devices. We need to set
4112 * the max ext latency in USB 2 BESL LPM as well, so
4113 * use the same mutex and xhci_change_max_exit_latency()
4114 */
4115 mutex_lock(hcd->bandwidth_mutex);
4116 ret = xhci_change_max_exit_latency(xhci, udev,
4117 exit_latency);
4118 mutex_unlock(hcd->bandwidth_mutex);
4119
4120 if (ret < 0)
4121 return ret;
4122 spin_lock_irqsave(&xhci->lock, flags);
4123
4124 hlpm_val = xhci_calculate_usb2_hw_lpm_params(udev);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02004125 writel(hlpm_val, hlpm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004126 /* flush write */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004127 readl(hlpm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004128 } else {
4129 hird = xhci_calculate_hird_besl(xhci, udev);
4130 }
4131
4132 pm_val &= ~PORT_HIRD_MASK;
Sarah Sharp58e21f72013-10-07 17:17:20 -07004133 pm_val |= PORT_HIRD(hird) | PORT_RWE | PORT_L1DS(udev->slot_id);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02004134 writel(pm_val, pm_addr);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004135 pm_val = readl(pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004136 pm_val |= PORT_HLE;
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02004137 writel(pm_val, pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004138 /* flush write */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004139 readl(pm_addr);
Andiry Xu65580b432011-09-23 14:19:52 -07004140 } else {
Sarah Sharp58e21f72013-10-07 17:17:20 -07004141 pm_val &= ~(PORT_HLE | PORT_RWE | PORT_HIRD_MASK | PORT_L1DS_MASK);
Xenia Ragiadakou204b7792013-11-15 05:34:07 +02004142 writel(pm_val, pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004143 /* flush write */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004144 readl(pm_addr);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004145 if (udev->usb2_hw_lpm_besl_capable) {
4146 spin_unlock_irqrestore(&xhci->lock, flags);
4147 mutex_lock(hcd->bandwidth_mutex);
4148 xhci_change_max_exit_latency(xhci, udev, 0);
4149 mutex_unlock(hcd->bandwidth_mutex);
4150 return 0;
4151 }
Andiry Xu65580b432011-09-23 14:19:52 -07004152 }
4153
4154 spin_unlock_irqrestore(&xhci->lock, flags);
4155 return 0;
4156}
4157
Mathias Nymanb630d4b2013-05-23 17:14:28 +03004158/* check if a usb2 port supports a given extened capability protocol
4159 * only USB2 ports extended protocol capability values are cached.
4160 * Return 1 if capability is supported
4161 */
4162static int xhci_check_usb2_port_capability(struct xhci_hcd *xhci, int port,
4163 unsigned capability)
4164{
4165 u32 port_offset, port_count;
4166 int i;
4167
4168 for (i = 0; i < xhci->num_ext_caps; i++) {
4169 if (xhci->ext_caps[i] & capability) {
4170 /* port offsets starts at 1 */
4171 port_offset = XHCI_EXT_PORT_OFF(xhci->ext_caps[i]) - 1;
4172 port_count = XHCI_EXT_PORT_COUNT(xhci->ext_caps[i]);
4173 if (port >= port_offset &&
4174 port < port_offset + port_count)
4175 return 1;
4176 }
4177 }
4178 return 0;
4179}
4180
Lu Baolu39693842017-04-07 17:57:04 +03004181static int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004182{
4183 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Mathias Nymanb630d4b2013-05-23 17:14:28 +03004184 int portnum = udev->portnum - 1;
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004185
Mathias Nymanb50107b2015-10-01 18:40:38 +03004186 if (hcd->speed >= HCD_USB3 || !xhci->sw_lpm_support ||
Sarah Sharpde68bab2013-09-30 17:26:28 +03004187 !udev->lpm_capable)
4188 return 0;
4189
4190 /* we only support lpm for non-hub device connected to root hub yet */
4191 if (!udev->parent || udev->parent->parent ||
4192 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
4193 return 0;
4194
4195 if (xhci->hw_lpm_support == 1 &&
4196 xhci_check_usb2_port_capability(
4197 xhci, portnum, XHCI_HLC)) {
4198 udev->usb2_hw_lpm_capable = 1;
4199 udev->l1_params.timeout = XHCI_L1_TIMEOUT;
4200 udev->l1_params.besl = XHCI_DEFAULT_BESL;
4201 if (xhci_check_usb2_port_capability(xhci, portnum,
4202 XHCI_BLC))
4203 udev->usb2_hw_lpm_besl_capable = 1;
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004204 }
4205
4206 return 0;
4207}
4208
Sarah Sharp3b3db022012-05-09 10:55:03 -07004209/*---------------------- USB 3.0 Link PM functions ------------------------*/
4210
Sarah Sharpe3567d22012-05-16 13:36:24 -07004211/* Service interval in nanoseconds = 2^(bInterval - 1) * 125us * 1000ns / 1us */
4212static unsigned long long xhci_service_interval_to_ns(
4213 struct usb_endpoint_descriptor *desc)
4214{
Oliver Neukum16b45fd2012-10-17 10:16:16 +02004215 return (1ULL << (desc->bInterval - 1)) * 125 * 1000;
Sarah Sharpe3567d22012-05-16 13:36:24 -07004216}
4217
Sarah Sharp3b3db022012-05-09 10:55:03 -07004218static u16 xhci_get_timeout_no_hub_lpm(struct usb_device *udev,
4219 enum usb3_link_state state)
4220{
4221 unsigned long long sel;
4222 unsigned long long pel;
4223 unsigned int max_sel_pel;
4224 char *state_name;
4225
4226 switch (state) {
4227 case USB3_LPM_U1:
4228 /* Convert SEL and PEL stored in nanoseconds to microseconds */
4229 sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
4230 pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
4231 max_sel_pel = USB3_LPM_MAX_U1_SEL_PEL;
4232 state_name = "U1";
4233 break;
4234 case USB3_LPM_U2:
4235 sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
4236 pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
4237 max_sel_pel = USB3_LPM_MAX_U2_SEL_PEL;
4238 state_name = "U2";
4239 break;
4240 default:
4241 dev_warn(&udev->dev, "%s: Can't get timeout for non-U1 or U2 state.\n",
4242 __func__);
Sarah Sharpe25e62a2012-06-07 11:10:32 -07004243 return USB3_LPM_DISABLED;
Sarah Sharp3b3db022012-05-09 10:55:03 -07004244 }
4245
4246 if (sel <= max_sel_pel && pel <= max_sel_pel)
4247 return USB3_LPM_DEVICE_INITIATED;
4248
4249 if (sel > max_sel_pel)
4250 dev_dbg(&udev->dev, "Device-initiated %s disabled "
4251 "due to long SEL %llu ms\n",
4252 state_name, sel);
4253 else
4254 dev_dbg(&udev->dev, "Device-initiated %s disabled "
Joe Perches03e64e92013-07-16 19:25:59 -07004255 "due to long PEL %llu ms\n",
Sarah Sharp3b3db022012-05-09 10:55:03 -07004256 state_name, pel);
4257 return USB3_LPM_DISABLED;
4258}
4259
Pratyush Anand9502c462014-07-04 17:01:23 +03004260/* The U1 timeout should be the maximum of the following values:
Sarah Sharpe3567d22012-05-16 13:36:24 -07004261 * - For control endpoints, U1 system exit latency (SEL) * 3
4262 * - For bulk endpoints, U1 SEL * 5
4263 * - For interrupt endpoints:
4264 * - Notification EPs, U1 SEL * 3
4265 * - Periodic EPs, max(105% of bInterval, U1 SEL * 2)
4266 * - For isochronous endpoints, max(105% of bInterval, U1 SEL * 2)
4267 */
Pratyush Anand9502c462014-07-04 17:01:23 +03004268static unsigned long long xhci_calculate_intel_u1_timeout(
4269 struct usb_device *udev,
Sarah Sharpe3567d22012-05-16 13:36:24 -07004270 struct usb_endpoint_descriptor *desc)
4271{
4272 unsigned long long timeout_ns;
4273 int ep_type;
4274 int intr_type;
4275
4276 ep_type = usb_endpoint_type(desc);
4277 switch (ep_type) {
4278 case USB_ENDPOINT_XFER_CONTROL:
4279 timeout_ns = udev->u1_params.sel * 3;
4280 break;
4281 case USB_ENDPOINT_XFER_BULK:
4282 timeout_ns = udev->u1_params.sel * 5;
4283 break;
4284 case USB_ENDPOINT_XFER_INT:
4285 intr_type = usb_endpoint_interrupt_type(desc);
4286 if (intr_type == USB_ENDPOINT_INTR_NOTIFICATION) {
4287 timeout_ns = udev->u1_params.sel * 3;
4288 break;
4289 }
4290 /* Otherwise the calculation is the same as isoc eps */
4291 case USB_ENDPOINT_XFER_ISOC:
4292 timeout_ns = xhci_service_interval_to_ns(desc);
Sarah Sharpc88db162012-05-21 08:44:33 -07004293 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns * 105, 100);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004294 if (timeout_ns < udev->u1_params.sel * 2)
4295 timeout_ns = udev->u1_params.sel * 2;
4296 break;
4297 default:
4298 return 0;
4299 }
4300
Pratyush Anand9502c462014-07-04 17:01:23 +03004301 return timeout_ns;
4302}
4303
4304/* Returns the hub-encoded U1 timeout value. */
4305static u16 xhci_calculate_u1_timeout(struct xhci_hcd *xhci,
4306 struct usb_device *udev,
4307 struct usb_endpoint_descriptor *desc)
4308{
4309 unsigned long long timeout_ns;
4310
4311 if (xhci->quirks & XHCI_INTEL_HOST)
4312 timeout_ns = xhci_calculate_intel_u1_timeout(udev, desc);
4313 else
4314 timeout_ns = udev->u1_params.sel;
4315
4316 /* The U1 timeout is encoded in 1us intervals.
4317 * Don't return a timeout of zero, because that's USB3_LPM_DISABLED.
4318 */
Sarah Sharpe3567d22012-05-16 13:36:24 -07004319 if (timeout_ns == USB3_LPM_DISABLED)
Pratyush Anand9502c462014-07-04 17:01:23 +03004320 timeout_ns = 1;
4321 else
4322 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 1000);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004323
4324 /* If the necessary timeout value is bigger than what we can set in the
4325 * USB 3.0 hub, we have to disable hub-initiated U1.
4326 */
4327 if (timeout_ns <= USB3_LPM_U1_MAX_TIMEOUT)
4328 return timeout_ns;
4329 dev_dbg(&udev->dev, "Hub-initiated U1 disabled "
4330 "due to long timeout %llu ms\n", timeout_ns);
4331 return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U1);
4332}
4333
Pratyush Anand9502c462014-07-04 17:01:23 +03004334/* The U2 timeout should be the maximum of:
Sarah Sharpe3567d22012-05-16 13:36:24 -07004335 * - 10 ms (to avoid the bandwidth impact on the scheduler)
4336 * - largest bInterval of any active periodic endpoint (to avoid going
4337 * into lower power link states between intervals).
4338 * - the U2 Exit Latency of the device
4339 */
Pratyush Anand9502c462014-07-04 17:01:23 +03004340static unsigned long long xhci_calculate_intel_u2_timeout(
4341 struct usb_device *udev,
Sarah Sharpe3567d22012-05-16 13:36:24 -07004342 struct usb_endpoint_descriptor *desc)
4343{
4344 unsigned long long timeout_ns;
4345 unsigned long long u2_del_ns;
4346
4347 timeout_ns = 10 * 1000 * 1000;
4348
4349 if ((usb_endpoint_xfer_int(desc) || usb_endpoint_xfer_isoc(desc)) &&
4350 (xhci_service_interval_to_ns(desc) > timeout_ns))
4351 timeout_ns = xhci_service_interval_to_ns(desc);
4352
Oliver Neukum966e7a82012-10-17 12:17:50 +02004353 u2_del_ns = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat) * 1000ULL;
Sarah Sharpe3567d22012-05-16 13:36:24 -07004354 if (u2_del_ns > timeout_ns)
4355 timeout_ns = u2_del_ns;
4356
Pratyush Anand9502c462014-07-04 17:01:23 +03004357 return timeout_ns;
4358}
4359
4360/* Returns the hub-encoded U2 timeout value. */
4361static u16 xhci_calculate_u2_timeout(struct xhci_hcd *xhci,
4362 struct usb_device *udev,
4363 struct usb_endpoint_descriptor *desc)
4364{
4365 unsigned long long timeout_ns;
4366
4367 if (xhci->quirks & XHCI_INTEL_HOST)
4368 timeout_ns = xhci_calculate_intel_u2_timeout(udev, desc);
4369 else
4370 timeout_ns = udev->u2_params.sel;
4371
Sarah Sharpe3567d22012-05-16 13:36:24 -07004372 /* The U2 timeout is encoded in 256us intervals */
Sarah Sharpc88db162012-05-21 08:44:33 -07004373 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 256 * 1000);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004374 /* If the necessary timeout value is bigger than what we can set in the
4375 * USB 3.0 hub, we have to disable hub-initiated U2.
4376 */
4377 if (timeout_ns <= USB3_LPM_U2_MAX_TIMEOUT)
4378 return timeout_ns;
4379 dev_dbg(&udev->dev, "Hub-initiated U2 disabled "
4380 "due to long timeout %llu ms\n", timeout_ns);
4381 return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U2);
4382}
4383
Sarah Sharp3b3db022012-05-09 10:55:03 -07004384static u16 xhci_call_host_update_timeout_for_endpoint(struct xhci_hcd *xhci,
4385 struct usb_device *udev,
4386 struct usb_endpoint_descriptor *desc,
4387 enum usb3_link_state state,
4388 u16 *timeout)
4389{
Pratyush Anand9502c462014-07-04 17:01:23 +03004390 if (state == USB3_LPM_U1)
4391 return xhci_calculate_u1_timeout(xhci, udev, desc);
4392 else if (state == USB3_LPM_U2)
4393 return xhci_calculate_u2_timeout(xhci, udev, desc);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004394
Sarah Sharp3b3db022012-05-09 10:55:03 -07004395 return USB3_LPM_DISABLED;
4396}
4397
4398static int xhci_update_timeout_for_endpoint(struct xhci_hcd *xhci,
4399 struct usb_device *udev,
4400 struct usb_endpoint_descriptor *desc,
4401 enum usb3_link_state state,
4402 u16 *timeout)
4403{
4404 u16 alt_timeout;
4405
4406 alt_timeout = xhci_call_host_update_timeout_for_endpoint(xhci, udev,
4407 desc, state, timeout);
4408
4409 /* If we found we can't enable hub-initiated LPM, or
4410 * the U1 or U2 exit latency was too high to allow
4411 * device-initiated LPM as well, just stop searching.
4412 */
4413 if (alt_timeout == USB3_LPM_DISABLED ||
4414 alt_timeout == USB3_LPM_DEVICE_INITIATED) {
4415 *timeout = alt_timeout;
4416 return -E2BIG;
4417 }
4418 if (alt_timeout > *timeout)
4419 *timeout = alt_timeout;
4420 return 0;
4421}
4422
4423static int xhci_update_timeout_for_interface(struct xhci_hcd *xhci,
4424 struct usb_device *udev,
4425 struct usb_host_interface *alt,
4426 enum usb3_link_state state,
4427 u16 *timeout)
4428{
4429 int j;
4430
4431 for (j = 0; j < alt->desc.bNumEndpoints; j++) {
4432 if (xhci_update_timeout_for_endpoint(xhci, udev,
4433 &alt->endpoint[j].desc, state, timeout))
4434 return -E2BIG;
4435 continue;
4436 }
4437 return 0;
4438}
4439
Sarah Sharpe3567d22012-05-16 13:36:24 -07004440static int xhci_check_intel_tier_policy(struct usb_device *udev,
4441 enum usb3_link_state state)
4442{
4443 struct usb_device *parent;
4444 unsigned int num_hubs;
4445
4446 if (state == USB3_LPM_U2)
4447 return 0;
4448
4449 /* Don't enable U1 if the device is on a 2nd tier hub or lower. */
4450 for (parent = udev->parent, num_hubs = 0; parent->parent;
4451 parent = parent->parent)
4452 num_hubs++;
4453
4454 if (num_hubs < 2)
4455 return 0;
4456
4457 dev_dbg(&udev->dev, "Disabling U1 link state for device"
4458 " below second-tier hub.\n");
4459 dev_dbg(&udev->dev, "Plug device into first-tier hub "
4460 "to decrease power consumption.\n");
4461 return -E2BIG;
4462}
4463
Sarah Sharp3b3db022012-05-09 10:55:03 -07004464static int xhci_check_tier_policy(struct xhci_hcd *xhci,
4465 struct usb_device *udev,
4466 enum usb3_link_state state)
4467{
Sarah Sharpe3567d22012-05-16 13:36:24 -07004468 if (xhci->quirks & XHCI_INTEL_HOST)
4469 return xhci_check_intel_tier_policy(udev, state);
Pratyush Anand9502c462014-07-04 17:01:23 +03004470 else
4471 return 0;
Sarah Sharp3b3db022012-05-09 10:55:03 -07004472}
4473
4474/* Returns the U1 or U2 timeout that should be enabled.
4475 * If the tier check or timeout setting functions return with a non-zero exit
4476 * code, that means the timeout value has been finalized and we shouldn't look
4477 * at any more endpoints.
4478 */
4479static u16 xhci_calculate_lpm_timeout(struct usb_hcd *hcd,
4480 struct usb_device *udev, enum usb3_link_state state)
4481{
4482 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4483 struct usb_host_config *config;
4484 char *state_name;
4485 int i;
4486 u16 timeout = USB3_LPM_DISABLED;
4487
4488 if (state == USB3_LPM_U1)
4489 state_name = "U1";
4490 else if (state == USB3_LPM_U2)
4491 state_name = "U2";
4492 else {
4493 dev_warn(&udev->dev, "Can't enable unknown link state %i\n",
4494 state);
4495 return timeout;
4496 }
4497
4498 if (xhci_check_tier_policy(xhci, udev, state) < 0)
4499 return timeout;
4500
4501 /* Gather some information about the currently installed configuration
4502 * and alternate interface settings.
4503 */
4504 if (xhci_update_timeout_for_endpoint(xhci, udev, &udev->ep0.desc,
4505 state, &timeout))
4506 return timeout;
4507
4508 config = udev->actconfig;
4509 if (!config)
4510 return timeout;
4511
Xenia Ragiadakou64ba4192013-08-26 23:29:46 +03004512 for (i = 0; i < config->desc.bNumInterfaces; i++) {
Sarah Sharp3b3db022012-05-09 10:55:03 -07004513 struct usb_driver *driver;
4514 struct usb_interface *intf = config->interface[i];
4515
4516 if (!intf)
4517 continue;
4518
4519 /* Check if any currently bound drivers want hub-initiated LPM
4520 * disabled.
4521 */
4522 if (intf->dev.driver) {
4523 driver = to_usb_driver(intf->dev.driver);
4524 if (driver && driver->disable_hub_initiated_lpm) {
4525 dev_dbg(&udev->dev, "Hub-initiated %s disabled "
4526 "at request of driver %s\n",
4527 state_name, driver->name);
4528 return xhci_get_timeout_no_hub_lpm(udev, state);
4529 }
4530 }
4531
4532 /* Not sure how this could happen... */
4533 if (!intf->cur_altsetting)
4534 continue;
4535
4536 if (xhci_update_timeout_for_interface(xhci, udev,
4537 intf->cur_altsetting,
4538 state, &timeout))
4539 return timeout;
4540 }
4541 return timeout;
4542}
4543
Sarah Sharp3b3db022012-05-09 10:55:03 -07004544static int calculate_max_exit_latency(struct usb_device *udev,
4545 enum usb3_link_state state_changed,
4546 u16 hub_encoded_timeout)
4547{
4548 unsigned long long u1_mel_us = 0;
4549 unsigned long long u2_mel_us = 0;
4550 unsigned long long mel_us = 0;
4551 bool disabling_u1;
4552 bool disabling_u2;
4553 bool enabling_u1;
4554 bool enabling_u2;
4555
4556 disabling_u1 = (state_changed == USB3_LPM_U1 &&
4557 hub_encoded_timeout == USB3_LPM_DISABLED);
4558 disabling_u2 = (state_changed == USB3_LPM_U2 &&
4559 hub_encoded_timeout == USB3_LPM_DISABLED);
4560
4561 enabling_u1 = (state_changed == USB3_LPM_U1 &&
4562 hub_encoded_timeout != USB3_LPM_DISABLED);
4563 enabling_u2 = (state_changed == USB3_LPM_U2 &&
4564 hub_encoded_timeout != USB3_LPM_DISABLED);
4565
4566 /* If U1 was already enabled and we're not disabling it,
4567 * or we're going to enable U1, account for the U1 max exit latency.
4568 */
4569 if ((udev->u1_params.timeout != USB3_LPM_DISABLED && !disabling_u1) ||
4570 enabling_u1)
4571 u1_mel_us = DIV_ROUND_UP(udev->u1_params.mel, 1000);
4572 if ((udev->u2_params.timeout != USB3_LPM_DISABLED && !disabling_u2) ||
4573 enabling_u2)
4574 u2_mel_us = DIV_ROUND_UP(udev->u2_params.mel, 1000);
4575
4576 if (u1_mel_us > u2_mel_us)
4577 mel_us = u1_mel_us;
4578 else
4579 mel_us = u2_mel_us;
4580 /* xHCI host controller max exit latency field is only 16 bits wide. */
4581 if (mel_us > MAX_EXIT) {
4582 dev_warn(&udev->dev, "Link PM max exit latency of %lluus "
4583 "is too big.\n", mel_us);
4584 return -E2BIG;
4585 }
4586 return mel_us;
4587}
4588
4589/* Returns the USB3 hub-encoded value for the U1/U2 timeout. */
Lu Baolu39693842017-04-07 17:57:04 +03004590static int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd,
Sarah Sharp3b3db022012-05-09 10:55:03 -07004591 struct usb_device *udev, enum usb3_link_state state)
4592{
4593 struct xhci_hcd *xhci;
4594 u16 hub_encoded_timeout;
4595 int mel;
4596 int ret;
4597
4598 xhci = hcd_to_xhci(hcd);
4599 /* The LPM timeout values are pretty host-controller specific, so don't
4600 * enable hub-initiated timeouts unless the vendor has provided
4601 * information about their timeout algorithm.
4602 */
4603 if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) ||
4604 !xhci->devs[udev->slot_id])
4605 return USB3_LPM_DISABLED;
4606
4607 hub_encoded_timeout = xhci_calculate_lpm_timeout(hcd, udev, state);
4608 mel = calculate_max_exit_latency(udev, state, hub_encoded_timeout);
4609 if (mel < 0) {
4610 /* Max Exit Latency is too big, disable LPM. */
4611 hub_encoded_timeout = USB3_LPM_DISABLED;
4612 mel = 0;
4613 }
4614
4615 ret = xhci_change_max_exit_latency(xhci, udev, mel);
4616 if (ret)
4617 return ret;
4618 return hub_encoded_timeout;
4619}
4620
Lu Baolu39693842017-04-07 17:57:04 +03004621static int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
Sarah Sharp3b3db022012-05-09 10:55:03 -07004622 struct usb_device *udev, enum usb3_link_state state)
4623{
4624 struct xhci_hcd *xhci;
4625 u16 mel;
Sarah Sharp3b3db022012-05-09 10:55:03 -07004626
4627 xhci = hcd_to_xhci(hcd);
4628 if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) ||
4629 !xhci->devs[udev->slot_id])
4630 return 0;
4631
4632 mel = calculate_max_exit_latency(udev, state, USB3_LPM_DISABLED);
Saurabh Karajgaonkarf1cda542015-08-04 14:04:09 +00004633 return xhci_change_max_exit_latency(xhci, udev, mel);
Sarah Sharp3b3db022012-05-09 10:55:03 -07004634}
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004635#else /* CONFIG_PM */
4636
Lu Baolu39693842017-04-07 17:57:04 +03004637static int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
Rafael J. Wysockiceb6c9c2014-11-29 23:47:05 +01004638 struct usb_device *udev, int enable)
4639{
4640 return 0;
4641}
4642
Lu Baolu39693842017-04-07 17:57:04 +03004643static int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
Rafael J. Wysockiceb6c9c2014-11-29 23:47:05 +01004644{
4645 return 0;
4646}
4647
Lu Baolu39693842017-04-07 17:57:04 +03004648static int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd,
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004649 struct usb_device *udev, enum usb3_link_state state)
4650{
4651 return USB3_LPM_DISABLED;
4652}
4653
Lu Baolu39693842017-04-07 17:57:04 +03004654static int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004655 struct usb_device *udev, enum usb3_link_state state)
4656{
4657 return 0;
4658}
4659#endif /* CONFIG_PM */
4660
Sarah Sharp3b3db022012-05-09 10:55:03 -07004661/*-------------------------------------------------------------------------*/
4662
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004663/* Once a hub descriptor is fetched for a device, we need to update the xHC's
4664 * internal data structures for the device.
4665 */
Lu Baolu39693842017-04-07 17:57:04 +03004666static int xhci_update_hub_device(struct usb_hcd *hcd, struct usb_device *hdev,
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004667 struct usb_tt *tt, gfp_t mem_flags)
4668{
4669 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4670 struct xhci_virt_device *vdev;
4671 struct xhci_command *config_cmd;
4672 struct xhci_input_control_ctx *ctrl_ctx;
4673 struct xhci_slot_ctx *slot_ctx;
4674 unsigned long flags;
4675 unsigned think_time;
4676 int ret;
4677
4678 /* Ignore root hubs */
4679 if (!hdev->parent)
4680 return 0;
4681
4682 vdev = xhci->devs[hdev->slot_id];
4683 if (!vdev) {
4684 xhci_warn(xhci, "Cannot update hub desc for unknown device.\n");
4685 return -EINVAL;
4686 }
Lu Baolu74e0b562017-04-07 17:57:05 +03004687
Sarah Sharpa1d78c12009-12-09 15:59:03 -08004688 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
Lu Baolu74e0b562017-04-07 17:57:05 +03004689 if (!config_cmd)
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004690 return -ENOMEM;
Lu Baolu74e0b562017-04-07 17:57:05 +03004691
Lin Wang4daf9df2015-01-09 16:06:31 +02004692 ctrl_ctx = xhci_get_input_control_ctx(config_cmd->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07004693 if (!ctrl_ctx) {
4694 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
4695 __func__);
4696 xhci_free_command(xhci, config_cmd);
4697 return -ENOMEM;
4698 }
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004699
4700 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp839c8172011-09-02 11:05:47 -07004701 if (hdev->speed == USB_SPEED_HIGH &&
4702 xhci_alloc_tt_info(xhci, vdev, hdev, tt, GFP_ATOMIC)) {
4703 xhci_dbg(xhci, "Could not allocate xHCI TT structure.\n");
4704 xhci_free_command(xhci, config_cmd);
4705 spin_unlock_irqrestore(&xhci->lock, flags);
4706 return -ENOMEM;
4707 }
4708
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004709 xhci_slot_copy(xhci, config_cmd->in_ctx, vdev->out_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11004710 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004711 slot_ctx = xhci_get_slot_ctx(xhci, config_cmd->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11004712 slot_ctx->dev_info |= cpu_to_le32(DEV_HUB);
Chunfeng Yun096b1102015-12-04 15:53:43 +02004713 /*
4714 * refer to section 6.2.2: MTT should be 0 for full speed hub,
4715 * but it may be already set to 1 when setup an xHCI virtual
4716 * device, so clear it anyway.
4717 */
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004718 if (tt->multi)
Matt Evans28ccd292011-03-29 13:40:46 +11004719 slot_ctx->dev_info |= cpu_to_le32(DEV_MTT);
Chunfeng Yun096b1102015-12-04 15:53:43 +02004720 else if (hdev->speed == USB_SPEED_FULL)
4721 slot_ctx->dev_info &= cpu_to_le32(~DEV_MTT);
4722
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004723 if (xhci->hci_version > 0x95) {
4724 xhci_dbg(xhci, "xHCI version %x needs hub "
4725 "TT think time and number of ports\n",
4726 (unsigned int) xhci->hci_version);
Matt Evans28ccd292011-03-29 13:40:46 +11004727 slot_ctx->dev_info2 |= cpu_to_le32(XHCI_MAX_PORTS(hdev->maxchild));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004728 /* Set TT think time - convert from ns to FS bit times.
4729 * 0 = 8 FS bit times, 1 = 16 FS bit times,
4730 * 2 = 24 FS bit times, 3 = 32 FS bit times.
Andiry Xu700b4172011-05-05 18:14:05 +08004731 *
4732 * xHCI 1.0: this field shall be 0 if the device is not a
4733 * High-spped hub.
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004734 */
4735 think_time = tt->think_time;
4736 if (think_time != 0)
4737 think_time = (think_time / 666) - 1;
Andiry Xu700b4172011-05-05 18:14:05 +08004738 if (xhci->hci_version < 0x100 || hdev->speed == USB_SPEED_HIGH)
4739 slot_ctx->tt_info |=
4740 cpu_to_le32(TT_THINK_TIME(think_time));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004741 } else {
4742 xhci_dbg(xhci, "xHCI version %x doesn't need hub "
4743 "TT think time or number of ports\n",
4744 (unsigned int) xhci->hci_version);
4745 }
4746 slot_ctx->dev_state = 0;
4747 spin_unlock_irqrestore(&xhci->lock, flags);
4748
4749 xhci_dbg(xhci, "Set up %s for hub device.\n",
4750 (xhci->hci_version > 0x95) ?
4751 "configure endpoint" : "evaluate context");
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004752
4753 /* Issue and wait for the configure endpoint or
4754 * evaluate context command.
4755 */
4756 if (xhci->hci_version > 0x95)
4757 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
4758 false, false);
4759 else
4760 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
4761 true, false);
4762
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004763 xhci_free_command(xhci, config_cmd);
4764 return ret;
4765}
4766
Lu Baolu39693842017-04-07 17:57:04 +03004767static int xhci_get_frame(struct usb_hcd *hcd)
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004768{
4769 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4770 /* EHCI mods by the periodic size. Why? */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004771 return readl(&xhci->run_regs->microframe_index) >> 3;
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004772}
4773
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004774int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks)
4775{
4776 struct xhci_hcd *xhci;
Arnd Bergmann4c39d4b2017-03-13 10:18:44 +08004777 /*
4778 * TODO: Check with DWC3 clients for sysdev according to
4779 * quirks
4780 */
4781 struct device *dev = hcd->self.sysdev;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004782 int retval;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004783
Sarah Sharp1386ff72014-01-31 11:45:02 -08004784 /* Accept arbitrarily long scatter-gather lists */
4785 hcd->self.sg_tablesize = ~0;
Ming Leifc760512013-08-08 21:48:23 +08004786
Mathias Nymane2ed5112014-03-07 17:06:57 +02004787 /* support to build packet from discontinuous buffers */
4788 hcd->self.no_sg_constraint = 1;
4789
Hans de Goede19181bc2012-07-04 09:18:02 +02004790 /* XHCI controllers don't stop the ep queue on short packets :| */
4791 hcd->self.no_stop_on_short = 1;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004792
Mathias Nymanb50107b2015-10-01 18:40:38 +03004793 xhci = hcd_to_xhci(hcd);
4794
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004795 if (usb_hcd_is_primary_hcd(hcd)) {
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004796 xhci->main_hcd = hcd;
4797 /* Mark the first roothub as being USB 2.0.
4798 * The xHCI driver will register the USB 3.0 roothub.
4799 */
4800 hcd->speed = HCD_USB2;
4801 hcd->self.root_hub->speed = USB_SPEED_HIGH;
4802 /*
4803 * USB 2.0 roothub under xHCI has an integrated TT,
4804 * (rate matching hub) as opposed to having an OHCI/UHCI
4805 * companion controller.
4806 */
4807 hcd->has_tt = 1;
4808 } else {
Mathias Nymanb50107b2015-10-01 18:40:38 +03004809 if (xhci->sbrn == 0x31) {
4810 xhci_info(xhci, "Host supports USB 3.1 Enhanced SuperSpeed\n");
4811 hcd->speed = HCD_USB31;
Mathias Nyman2c0e06f2016-01-25 15:30:45 +02004812 hcd->self.root_hub->speed = USB_SPEED_SUPER_PLUS;
Mathias Nymanb50107b2015-10-01 18:40:38 +03004813 }
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004814 /* xHCI private pointer was set in xhci_pci_probe for the second
4815 * registered roothub.
4816 */
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004817 return 0;
4818 }
4819
Chris Bainbridgea00918d2015-05-19 16:30:51 +03004820 mutex_init(&xhci->mutex);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004821 xhci->cap_regs = hcd->regs;
4822 xhci->op_regs = hcd->regs +
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004823 HC_LENGTH(readl(&xhci->cap_regs->hc_capbase));
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004824 xhci->run_regs = hcd->regs +
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004825 (readl(&xhci->cap_regs->run_regs_off) & RTSOFF_MASK);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004826 /* Cache read-only capability registers */
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004827 xhci->hcs_params1 = readl(&xhci->cap_regs->hcs_params1);
4828 xhci->hcs_params2 = readl(&xhci->cap_regs->hcs_params2);
4829 xhci->hcs_params3 = readl(&xhci->cap_regs->hcs_params3);
4830 xhci->hcc_params = readl(&xhci->cap_regs->hc_capbase);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004831 xhci->hci_version = HC_VERSION(xhci->hcc_params);
Xenia Ragiadakoub0ba9722013-11-15 05:34:06 +02004832 xhci->hcc_params = readl(&xhci->cap_regs->hcc_params);
Lu Baolu04abb6d2015-10-01 18:40:31 +03004833 if (xhci->hci_version > 0x100)
4834 xhci->hcc_params2 = readl(&xhci->cap_regs->hcc_params2);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004835 xhci_print_registers(xhci);
4836
Mathias Nyman757de492016-06-01 18:09:10 +03004837 xhci->quirks |= quirks;
Takashi Iwai4e6a1ee2013-12-09 12:42:48 +01004838
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004839 get_quirks(dev, xhci);
4840
George Cherian07f3cb72013-07-01 10:59:12 +05304841 /* In xhci controllers which follow xhci 1.0 spec gives a spurious
4842 * success event after a short transfer. This quirk will ignore such
4843 * spurious event.
4844 */
4845 if (xhci->hci_version > 0x96)
4846 xhci->quirks |= XHCI_SPURIOUS_SUCCESS;
4847
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004848 /* Make sure the HC is halted. */
4849 retval = xhci_halt(xhci);
4850 if (retval)
Roger Quadroscd33a322015-05-29 17:01:46 +03004851 return retval;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004852
4853 xhci_dbg(xhci, "Resetting HCD\n");
4854 /* Reset the internal HC memory state and registers. */
4855 retval = xhci_reset(xhci);
4856 if (retval)
Roger Quadroscd33a322015-05-29 17:01:46 +03004857 return retval;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004858 xhci_dbg(xhci, "Reset complete\n");
4859
Yoshihiro Shimoda0a380be2016-04-08 16:25:07 +03004860 /*
4861 * On some xHCI controllers (e.g. R-Car SoCs), the AC64 bit (bit 0)
4862 * of HCCPARAMS1 is set to 1. However, the xHCs don't support 64-bit
4863 * address memory pointers actually. So, this driver clears the AC64
4864 * bit of xhci->hcc_params to call dma_set_coherent_mask(dev,
4865 * DMA_BIT_MASK(32)) in this xhci_gen_setup().
4866 */
4867 if (xhci->quirks & XHCI_NO_64BIT_SUPPORT)
4868 xhci->hcc_params &= ~BIT(0);
4869
Xenia Ragiadakouc10cf112013-08-14 05:55:19 +03004870 /* Set dma_mask and coherent_dma_mask to 64-bits,
4871 * if xHC supports 64-bit addressing */
4872 if (HCC_64BIT_ADDR(xhci->hcc_params) &&
4873 !dma_set_mask(dev, DMA_BIT_MASK(64))) {
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004874 xhci_dbg(xhci, "Enabling 64-bit DMA addresses.\n");
Xenia Ragiadakouc10cf112013-08-14 05:55:19 +03004875 dma_set_coherent_mask(dev, DMA_BIT_MASK(64));
Duc Dangfda182d2015-10-09 13:30:13 +03004876 } else {
4877 /*
4878 * This is to avoid error in cases where a 32-bit USB
4879 * controller is used on a 64-bit capable system.
4880 */
4881 retval = dma_set_mask(dev, DMA_BIT_MASK(32));
4882 if (retval)
4883 return retval;
4884 xhci_dbg(xhci, "Enabling 32-bit DMA addresses.\n");
4885 dma_set_coherent_mask(dev, DMA_BIT_MASK(32));
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004886 }
4887
4888 xhci_dbg(xhci, "Calling HCD init\n");
4889 /* Initialize HCD and host controller data structures. */
4890 retval = xhci_init(hcd);
4891 if (retval)
Roger Quadroscd33a322015-05-29 17:01:46 +03004892 return retval;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004893 xhci_dbg(xhci, "Called HCD init\n");
Hans de Goede99705092015-01-16 17:54:01 +02004894
4895 xhci_info(xhci, "hcc params 0x%08x hci version 0x%x quirks 0x%08x\n",
4896 xhci->hcc_params, xhci->hci_version, xhci->quirks);
4897
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004898 return 0;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004899}
Andrew Bresticker436e8c72014-10-03 11:35:28 +03004900EXPORT_SYMBOL_GPL(xhci_gen_setup);
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004901
Andrew Bresticker1885d9a2014-10-03 11:35:26 +03004902static const struct hc_driver xhci_hc_driver = {
4903 .description = "xhci-hcd",
4904 .product_desc = "xHCI Host Controller",
Yoshihiro Shimoda32479d42015-11-24 13:09:47 +02004905 .hcd_priv_size = sizeof(struct xhci_hcd),
Andrew Bresticker1885d9a2014-10-03 11:35:26 +03004906
4907 /*
4908 * generic hardware linkage
4909 */
4910 .irq = xhci_irq,
4911 .flags = HCD_MEMORY | HCD_USB3 | HCD_SHARED,
4912
4913 /*
4914 * basic lifecycle operations
4915 */
4916 .reset = NULL, /* set in xhci_init_driver() */
4917 .start = xhci_run,
4918 .stop = xhci_stop,
4919 .shutdown = xhci_shutdown,
4920
4921 /*
4922 * managing i/o requests and associated device resources
4923 */
4924 .urb_enqueue = xhci_urb_enqueue,
4925 .urb_dequeue = xhci_urb_dequeue,
4926 .alloc_dev = xhci_alloc_dev,
4927 .free_dev = xhci_free_dev,
4928 .alloc_streams = xhci_alloc_streams,
4929 .free_streams = xhci_free_streams,
4930 .add_endpoint = xhci_add_endpoint,
4931 .drop_endpoint = xhci_drop_endpoint,
4932 .endpoint_reset = xhci_endpoint_reset,
4933 .check_bandwidth = xhci_check_bandwidth,
4934 .reset_bandwidth = xhci_reset_bandwidth,
4935 .address_device = xhci_address_device,
4936 .enable_device = xhci_enable_device,
4937 .update_hub_device = xhci_update_hub_device,
4938 .reset_device = xhci_discover_or_reset_device,
4939
4940 /*
4941 * scheduling support
4942 */
4943 .get_frame_number = xhci_get_frame,
4944
4945 /*
4946 * root hub support
4947 */
4948 .hub_control = xhci_hub_control,
4949 .hub_status_data = xhci_hub_status_data,
4950 .bus_suspend = xhci_bus_suspend,
4951 .bus_resume = xhci_bus_resume,
4952
4953 /*
4954 * call back when device connected and addressed
4955 */
4956 .update_device = xhci_update_device,
4957 .set_usb2_hw_lpm = xhci_set_usb2_hardware_lpm,
4958 .enable_usb3_lpm_timeout = xhci_enable_usb3_lpm_timeout,
4959 .disable_usb3_lpm_timeout = xhci_disable_usb3_lpm_timeout,
4960 .find_raw_port_number = xhci_find_raw_port_number,
4961};
4962
Roger Quadroscd33a322015-05-29 17:01:46 +03004963void xhci_init_driver(struct hc_driver *drv,
4964 const struct xhci_driver_overrides *over)
Andrew Bresticker1885d9a2014-10-03 11:35:26 +03004965{
Roger Quadroscd33a322015-05-29 17:01:46 +03004966 BUG_ON(!over);
4967
4968 /* Copy the generic table to drv then apply the overrides */
Andrew Bresticker1885d9a2014-10-03 11:35:26 +03004969 *drv = xhci_hc_driver;
Roger Quadroscd33a322015-05-29 17:01:46 +03004970
4971 if (over) {
4972 drv->hcd_priv_size += over->extra_priv_size;
4973 if (over->reset)
4974 drv->reset = over->reset;
4975 if (over->start)
4976 drv->start = over->start;
4977 }
Andrew Bresticker1885d9a2014-10-03 11:35:26 +03004978}
4979EXPORT_SYMBOL_GPL(xhci_init_driver);
4980
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004981MODULE_DESCRIPTION(DRIVER_DESC);
4982MODULE_AUTHOR(DRIVER_AUTHOR);
4983MODULE_LICENSE("GPL");
4984
4985static int __init xhci_hcd_init(void)
4986{
Sarah Sharp98441972009-05-14 11:44:18 -07004987 /*
4988 * Check the compiler generated sizes of structures that must be laid
4989 * out in specific ways for hardware access.
4990 */
4991 BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8);
4992 BUILD_BUG_ON(sizeof(struct xhci_slot_ctx) != 8*32/8);
4993 BUILD_BUG_ON(sizeof(struct xhci_ep_ctx) != 8*32/8);
4994 /* xhci_device_control has eight fields, and also
4995 * embeds one xhci_slot_ctx and 31 xhci_ep_ctx
4996 */
Sarah Sharp98441972009-05-14 11:44:18 -07004997 BUILD_BUG_ON(sizeof(struct xhci_stream_ctx) != 4*32/8);
4998 BUILD_BUG_ON(sizeof(union xhci_trb) != 4*32/8);
4999 BUILD_BUG_ON(sizeof(struct xhci_erst_entry) != 4*32/8);
Lu Baolu04abb6d2015-10-01 18:40:31 +03005000 BUILD_BUG_ON(sizeof(struct xhci_cap_regs) != 8*32/8);
Sarah Sharp98441972009-05-14 11:44:18 -07005001 BUILD_BUG_ON(sizeof(struct xhci_intr_reg) != 8*32/8);
5002 /* xhci_run_regs has eight fields and embeds 128 xhci_intr_regs */
5003 BUILD_BUG_ON(sizeof(struct xhci_run_regs) != (8+8*128)*32/8);
Oliver Neukum1eaf35e2015-12-03 15:03:34 +01005004
5005 if (usb_disabled())
5006 return -ENODEV;
5007
Lu Baolu02b6fdc2017-10-05 11:21:39 +03005008 xhci_debugfs_create_root();
5009
Sarah Sharp66d4ead2009-04-27 19:52:28 -07005010 return 0;
5011}
Arthur Demchenkovb04c8462015-05-19 16:30:50 +03005012
5013/*
5014 * If an init function is provided, an exit function must also be provided
5015 * to allow module unload.
5016 */
Lu Baolu02b6fdc2017-10-05 11:21:39 +03005017static void __exit xhci_hcd_fini(void)
5018{
5019 xhci_debugfs_remove_root();
5020}
Arthur Demchenkovb04c8462015-05-19 16:30:50 +03005021
Sarah Sharp66d4ead2009-04-27 19:52:28 -07005022module_init(xhci_hcd_init);
Arthur Demchenkovb04c8462015-05-19 16:30:50 +03005023module_exit(xhci_hcd_fini);