blob: d3f6abbda67ecd07cd0dcabed9c1686c782f6a2c [file] [log] [blame]
Sarah Sharp66d4ead2009-04-27 19:52:28 -07001/*
2 * xHCI host controller driver
3 *
4 * Copyright (C) 2008 Intel Corp.
5 *
6 * Author: Sarah Sharp
7 * Some code borrowed from the Linux EHCI driver.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 * for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
Dong Nguyen43b86af2010-07-21 16:56:08 -070023#include <linux/pci.h>
Sarah Sharp66d4ead2009-04-27 19:52:28 -070024#include <linux/irq.h>
Sarah Sharp8df75f42010-04-02 15:34:16 -070025#include <linux/log2.h>
Sarah Sharp66d4ead2009-04-27 19:52:28 -070026#include <linux/module.h>
Sarah Sharpb0567b32009-08-07 14:04:36 -070027#include <linux/moduleparam.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Alexis R. Cortes71c731a2012-08-03 14:00:27 -050029#include <linux/dmi.h>
James Hogan008eb952013-07-26 13:34:43 +010030#include <linux/dma-mapping.h>
Sarah Sharp66d4ead2009-04-27 19:52:28 -070031
32#include "xhci.h"
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +030033#include "xhci-trace.h"
Sarah Sharp66d4ead2009-04-27 19:52:28 -070034
35#define DRIVER_AUTHOR "Sarah Sharp"
36#define DRIVER_DESC "'eXtensible' Host Controller (xHC) Driver"
37
Sarah Sharpb0567b32009-08-07 14:04:36 -070038/* Some 0.95 hardware can't handle the chain bit on a Link TRB being cleared */
39static int link_quirk;
40module_param(link_quirk, int, S_IRUGO | S_IWUSR);
41MODULE_PARM_DESC(link_quirk, "Don't clear the chain bit on a link TRB");
42
Sarah Sharp66d4ead2009-04-27 19:52:28 -070043/* TODO: copied from ehci-hcd.c - can this be refactored? */
44/*
Sarah Sharp2611bd182012-10-25 13:27:51 -070045 * xhci_handshake - spin reading hc until handshake completes or fails
Sarah Sharp66d4ead2009-04-27 19:52:28 -070046 * @ptr: address of hc register to be read
47 * @mask: bits to look at in result of read
48 * @done: value of those bits when handshake succeeds
49 * @usec: timeout in microseconds
50 *
51 * Returns negative errno, or zero on success
52 *
53 * Success happens when the "mask" bits have the specified value (hardware
54 * handshake done). There are two failure modes: "usec" have passed (major
55 * hardware flakeout), or the register reads as all-ones (hardware removed).
56 */
Sarah Sharp2611bd182012-10-25 13:27:51 -070057int xhci_handshake(struct xhci_hcd *xhci, void __iomem *ptr,
Sarah Sharp66d4ead2009-04-27 19:52:28 -070058 u32 mask, u32 done, int usec)
59{
60 u32 result;
61
62 do {
63 result = xhci_readl(xhci, ptr);
64 if (result == ~(u32)0) /* card removed */
65 return -ENODEV;
66 result &= mask;
67 if (result == done)
68 return 0;
69 udelay(1);
70 usec--;
71 } while (usec > 0);
72 return -ETIMEDOUT;
73}
74
75/*
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -070076 * Disable interrupts and begin the xHCI halting process.
77 */
78void xhci_quiesce(struct xhci_hcd *xhci)
79{
80 u32 halted;
81 u32 cmd;
82 u32 mask;
83
84 mask = ~(XHCI_IRQS);
85 halted = xhci_readl(xhci, &xhci->op_regs->status) & STS_HALT;
86 if (!halted)
87 mask &= ~CMD_RUN;
88
89 cmd = xhci_readl(xhci, &xhci->op_regs->command);
90 cmd &= mask;
91 xhci_writel(xhci, cmd, &xhci->op_regs->command);
92}
93
94/*
Sarah Sharp66d4ead2009-04-27 19:52:28 -070095 * Force HC into halt state.
96 *
97 * Disable any IRQs and clear the run/stop bit.
98 * HC will complete any current and actively pipelined transactions, and
Andiry Xubdfca502011-01-06 15:43:39 +080099 * should halt within 16 ms of the run/stop bit being cleared.
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700100 * Read HC Halted bit in the status register to see when the HC is finished.
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700101 */
102int xhci_halt(struct xhci_hcd *xhci)
103{
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800104 int ret;
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300105 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "// Halt the HC");
Sarah Sharp4f0f0ba2009-10-27 10:56:33 -0700106 xhci_quiesce(xhci);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700107
Sarah Sharp2611bd182012-10-25 13:27:51 -0700108 ret = xhci_handshake(xhci, &xhci->op_regs->status,
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700109 STS_HALT, STS_HALT, XHCI_MAX_HALT_USEC);
Elric Fuc181bc52012-06-27 16:30:57 +0800110 if (!ret) {
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800111 xhci->xhc_state |= XHCI_STATE_HALTED;
Elric Fuc181bc52012-06-27 16:30:57 +0800112 xhci->cmd_ring_state = CMD_RING_STATE_STOPPED;
113 } else
Sarah Sharp5af98bb2012-03-16 12:58:20 -0700114 xhci_warn(xhci, "Host not halted after %u microseconds.\n",
115 XHCI_MAX_HALT_USEC);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800116 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700117}
118
119/*
Sarah Sharped074532010-05-24 13:25:21 -0700120 * Set the run bit and wait for the host to be running.
121 */
Dmitry Torokhov8212a492011-02-08 13:55:59 -0800122static int xhci_start(struct xhci_hcd *xhci)
Sarah Sharped074532010-05-24 13:25:21 -0700123{
124 u32 temp;
125 int ret;
126
127 temp = xhci_readl(xhci, &xhci->op_regs->command);
128 temp |= (CMD_RUN);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300129 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "// Turn on HC, cmd = 0x%x.",
Sarah Sharped074532010-05-24 13:25:21 -0700130 temp);
131 xhci_writel(xhci, temp, &xhci->op_regs->command);
132
133 /*
134 * Wait for the HCHalted Status bit to be 0 to indicate the host is
135 * running.
136 */
Sarah Sharp2611bd182012-10-25 13:27:51 -0700137 ret = xhci_handshake(xhci, &xhci->op_regs->status,
Sarah Sharped074532010-05-24 13:25:21 -0700138 STS_HALT, 0, XHCI_MAX_HALT_USEC);
139 if (ret == -ETIMEDOUT)
140 xhci_err(xhci, "Host took too long to start, "
141 "waited %u microseconds.\n",
142 XHCI_MAX_HALT_USEC);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -0800143 if (!ret)
144 xhci->xhc_state &= ~XHCI_STATE_HALTED;
Sarah Sharped074532010-05-24 13:25:21 -0700145 return ret;
146}
147
148/*
Sarah Sharpac04e6f2011-03-11 08:47:33 -0800149 * Reset a halted HC.
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700150 *
151 * This resets pipelines, timers, counters, state machines, etc.
152 * Transactions will be terminated immediately, and operational registers
153 * will be set to their defaults.
154 */
155int xhci_reset(struct xhci_hcd *xhci)
156{
157 u32 command;
158 u32 state;
Andiry Xuf370b992012-04-14 02:54:30 +0800159 int ret, i;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700160
161 state = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharpd3512f62009-07-27 12:03:50 -0700162 if ((state & STS_HALT) == 0) {
163 xhci_warn(xhci, "Host controller not halted, aborting reset.\n");
164 return 0;
165 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700166
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300167 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "// Reset the HC");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700168 command = xhci_readl(xhci, &xhci->op_regs->command);
169 command |= CMD_RESET;
170 xhci_writel(xhci, command, &xhci->op_regs->command);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700171
Sarah Sharp2611bd182012-10-25 13:27:51 -0700172 ret = xhci_handshake(xhci, &xhci->op_regs->command,
Sarah Sharp22ceac12012-07-23 16:06:08 -0700173 CMD_RESET, 0, 10 * 1000 * 1000);
Sarah Sharp2d62f3e2010-05-24 13:25:15 -0700174 if (ret)
175 return ret;
176
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300177 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
178 "Wait for controller to be ready for doorbell rings");
Sarah Sharp2d62f3e2010-05-24 13:25:15 -0700179 /*
180 * xHCI cannot write to any doorbells or operational registers other
181 * than status until the "Controller Not Ready" flag is cleared.
182 */
Sarah Sharp2611bd182012-10-25 13:27:51 -0700183 ret = xhci_handshake(xhci, &xhci->op_regs->status,
Sarah Sharp22ceac12012-07-23 16:06:08 -0700184 STS_CNR, 0, 10 * 1000 * 1000);
Andiry Xuf370b992012-04-14 02:54:30 +0800185
186 for (i = 0; i < 2; ++i) {
187 xhci->bus_state[i].port_c_suspend = 0;
188 xhci->bus_state[i].suspended_ports = 0;
189 xhci->bus_state[i].resuming_ports = 0;
190 }
191
192 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700193}
194
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700195#ifdef CONFIG_PCI
196static int xhci_free_msi(struct xhci_hcd *xhci)
Dong Nguyen43b86af2010-07-21 16:56:08 -0700197{
198 int i;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700199
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700200 if (!xhci->msix_entries)
201 return -EINVAL;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700202
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700203 for (i = 0; i < xhci->msix_count; i++)
204 if (xhci->msix_entries[i].vector)
205 free_irq(xhci->msix_entries[i].vector,
206 xhci_to_hcd(xhci));
207 return 0;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700208}
209
210/*
211 * Set up MSI
212 */
213static int xhci_setup_msi(struct xhci_hcd *xhci)
214{
215 int ret;
216 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
217
218 ret = pci_enable_msi(pdev);
219 if (ret) {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300220 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
221 "failed to allocate MSI entry");
Dong Nguyen43b86af2010-07-21 16:56:08 -0700222 return ret;
223 }
224
Alex Shi851ec162013-05-24 10:54:19 +0800225 ret = request_irq(pdev->irq, xhci_msi_irq,
Dong Nguyen43b86af2010-07-21 16:56:08 -0700226 0, "xhci_hcd", xhci_to_hcd(xhci));
227 if (ret) {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300228 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
229 "disable MSI interrupt");
Dong Nguyen43b86af2010-07-21 16:56:08 -0700230 pci_disable_msi(pdev);
231 }
232
233 return ret;
234}
235
236/*
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700237 * Free IRQs
238 * free all IRQs request
239 */
240static void xhci_free_irq(struct xhci_hcd *xhci)
241{
242 struct pci_dev *pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
243 int ret;
244
245 /* return if using legacy interrupt */
Felipe Balbicd704692012-02-29 16:46:23 +0200246 if (xhci_to_hcd(xhci)->irq > 0)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700247 return;
248
249 ret = xhci_free_msi(xhci);
250 if (!ret)
251 return;
Felipe Balbicd704692012-02-29 16:46:23 +0200252 if (pdev->irq > 0)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700253 free_irq(pdev->irq, xhci_to_hcd(xhci));
254
255 return;
256}
257
258/*
Dong Nguyen43b86af2010-07-21 16:56:08 -0700259 * Set up MSI-X
260 */
261static int xhci_setup_msix(struct xhci_hcd *xhci)
262{
263 int i, ret = 0;
Andiry Xu00292272010-12-27 17:39:02 +0800264 struct usb_hcd *hcd = xhci_to_hcd(xhci);
265 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700266
267 /*
268 * calculate number of msi-x vectors supported.
269 * - HCS_MAX_INTRS: the max number of interrupts the host can handle,
270 * with max number of interrupters based on the xhci HCSPARAMS1.
271 * - num_online_cpus: maximum msi-x vectors per CPUs core.
272 * Add additional 1 vector to ensure always available interrupt.
273 */
274 xhci->msix_count = min(num_online_cpus() + 1,
275 HCS_MAX_INTRS(xhci->hcs_params1));
276
277 xhci->msix_entries =
278 kmalloc((sizeof(struct msix_entry))*xhci->msix_count,
Greg Kroah-Hartman86871972010-11-11 09:41:02 -0800279 GFP_KERNEL);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700280 if (!xhci->msix_entries) {
281 xhci_err(xhci, "Failed to allocate MSI-X entries\n");
282 return -ENOMEM;
283 }
Dong Nguyen43b86af2010-07-21 16:56:08 -0700284
285 for (i = 0; i < xhci->msix_count; i++) {
286 xhci->msix_entries[i].entry = i;
287 xhci->msix_entries[i].vector = 0;
288 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700289
290 ret = pci_enable_msix(pdev, xhci->msix_entries, xhci->msix_count);
291 if (ret) {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300292 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
293 "Failed to enable MSI-X");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700294 goto free_entries;
295 }
296
Dong Nguyen43b86af2010-07-21 16:56:08 -0700297 for (i = 0; i < xhci->msix_count; i++) {
298 ret = request_irq(xhci->msix_entries[i].vector,
Alex Shi851ec162013-05-24 10:54:19 +0800299 xhci_msi_irq,
Dong Nguyen43b86af2010-07-21 16:56:08 -0700300 0, "xhci_hcd", xhci_to_hcd(xhci));
301 if (ret)
302 goto disable_msix;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700303 }
Dong Nguyen43b86af2010-07-21 16:56:08 -0700304
Andiry Xu00292272010-12-27 17:39:02 +0800305 hcd->msix_enabled = 1;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700306 return ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700307
308disable_msix:
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300309 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "disable MSI-X interrupt");
Dong Nguyen43b86af2010-07-21 16:56:08 -0700310 xhci_free_irq(xhci);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700311 pci_disable_msix(pdev);
312free_entries:
313 kfree(xhci->msix_entries);
314 xhci->msix_entries = NULL;
315 return ret;
316}
317
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700318/* Free any IRQs and disable MSI-X */
319static void xhci_cleanup_msix(struct xhci_hcd *xhci)
320{
Andiry Xu00292272010-12-27 17:39:02 +0800321 struct usb_hcd *hcd = xhci_to_hcd(xhci);
322 struct pci_dev *pdev = to_pci_dev(hcd->self.controller);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700323
Dong Nguyen43b86af2010-07-21 16:56:08 -0700324 xhci_free_irq(xhci);
325
326 if (xhci->msix_entries) {
327 pci_disable_msix(pdev);
328 kfree(xhci->msix_entries);
329 xhci->msix_entries = NULL;
330 } else {
331 pci_disable_msi(pdev);
332 }
333
Andiry Xu00292272010-12-27 17:39:02 +0800334 hcd->msix_enabled = 0;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700335 return;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700336}
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700337
Olof Johanssond5c82fe2013-07-23 11:58:20 -0700338static void __maybe_unused xhci_msix_sync_irqs(struct xhci_hcd *xhci)
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700339{
340 int i;
341
342 if (xhci->msix_entries) {
343 for (i = 0; i < xhci->msix_count; i++)
344 synchronize_irq(xhci->msix_entries[i].vector);
345 }
346}
347
348static int xhci_try_enable_msi(struct usb_hcd *hcd)
349{
350 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp52fb6122013-08-08 10:08:34 -0700351 struct pci_dev *pdev;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700352 int ret;
353
Sarah Sharp52fb6122013-08-08 10:08:34 -0700354 /* The xhci platform device has set up IRQs through usb_add_hcd. */
355 if (xhci->quirks & XHCI_PLAT)
356 return 0;
357
358 pdev = to_pci_dev(xhci_to_hcd(xhci)->self.controller);
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700359 /*
360 * Some Fresco Logic host controllers advertise MSI, but fail to
361 * generate interrupts. Don't even try to enable MSI.
362 */
363 if (xhci->quirks & XHCI_BROKEN_MSI)
Hannes Reinecke00eed9c2013-03-04 17:14:43 +0100364 goto legacy_irq;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700365
366 /* unregister the legacy interrupt */
367 if (hcd->irq)
368 free_irq(hcd->irq, hcd);
Felipe Balbicd704692012-02-29 16:46:23 +0200369 hcd->irq = 0;
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700370
371 ret = xhci_setup_msix(xhci);
372 if (ret)
373 /* fall back to msi*/
374 ret = xhci_setup_msi(xhci);
375
376 if (!ret)
Felipe Balbicd704692012-02-29 16:46:23 +0200377 /* hcd->irq is 0, we have MSI */
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700378 return 0;
379
Sarah Sharp68d07f62012-02-13 16:25:57 -0800380 if (!pdev->irq) {
381 xhci_err(xhci, "No msi-x/msi found and no IRQ in BIOS\n");
382 return -EINVAL;
383 }
384
Hannes Reinecke00eed9c2013-03-04 17:14:43 +0100385 legacy_irq:
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700386 /* fall back to legacy interrupt*/
387 ret = request_irq(pdev->irq, &usb_hcd_irq, IRQF_SHARED,
388 hcd->irq_descr, hcd);
389 if (ret) {
390 xhci_err(xhci, "request interrupt %d failed\n",
391 pdev->irq);
392 return ret;
393 }
394 hcd->irq = pdev->irq;
395 return 0;
396}
397
398#else
399
400static int xhci_try_enable_msi(struct usb_hcd *hcd)
401{
402 return 0;
403}
404
405static void xhci_cleanup_msix(struct xhci_hcd *xhci)
406{
407}
408
409static void xhci_msix_sync_irqs(struct xhci_hcd *xhci)
410{
411}
412
413#endif
414
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500415static void compliance_mode_recovery(unsigned long arg)
416{
417 struct xhci_hcd *xhci;
418 struct usb_hcd *hcd;
419 u32 temp;
420 int i;
421
422 xhci = (struct xhci_hcd *)arg;
423
424 for (i = 0; i < xhci->num_usb3_ports; i++) {
425 temp = xhci_readl(xhci, xhci->usb3_ports[i]);
426 if ((temp & PORT_PLS_MASK) == USB_SS_PORT_LS_COMP_MOD) {
427 /*
428 * Compliance Mode Detected. Letting USB Core
429 * handle the Warm Reset
430 */
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300431 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
432 "Compliance mode detected->port %d",
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500433 i + 1);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300434 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
435 "Attempting compliance mode recovery");
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500436 hcd = xhci->shared_hcd;
437
438 if (hcd->state == HC_STATE_SUSPENDED)
439 usb_hcd_resume_root_hub(hcd);
440
441 usb_hcd_poll_rh_status(hcd);
442 }
443 }
444
445 if (xhci->port_status_u0 != ((1 << xhci->num_usb3_ports)-1))
446 mod_timer(&xhci->comp_mode_recovery_timer,
447 jiffies + msecs_to_jiffies(COMP_MODE_RCVRY_MSECS));
448}
449
450/*
451 * Quirk to work around issue generated by the SN65LVPE502CP USB3.0 re-driver
452 * that causes ports behind that hardware to enter compliance mode sometimes.
453 * The quirk creates a timer that polls every 2 seconds the link state of
454 * each host controller's port and recovers it by issuing a Warm reset
455 * if Compliance mode is detected, otherwise the port will become "dead" (no
456 * device connections or disconnections will be detected anymore). Becasue no
457 * status event is generated when entering compliance mode (per xhci spec),
458 * this quirk is needed on systems that have the failing hardware installed.
459 */
460static void compliance_mode_recovery_timer_init(struct xhci_hcd *xhci)
461{
462 xhci->port_status_u0 = 0;
463 init_timer(&xhci->comp_mode_recovery_timer);
464
465 xhci->comp_mode_recovery_timer.data = (unsigned long) xhci;
466 xhci->comp_mode_recovery_timer.function = compliance_mode_recovery;
467 xhci->comp_mode_recovery_timer.expires = jiffies +
468 msecs_to_jiffies(COMP_MODE_RCVRY_MSECS);
469
470 set_timer_slack(&xhci->comp_mode_recovery_timer,
471 msecs_to_jiffies(COMP_MODE_RCVRY_MSECS));
472 add_timer(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300473 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
474 "Compliance mode recovery timer initialized");
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500475}
476
477/*
478 * This function identifies the systems that have installed the SN65LVPE502CP
479 * USB3.0 re-driver and that need the Compliance Mode Quirk.
480 * Systems:
481 * Vendor: Hewlett-Packard -> System Models: Z420, Z620 and Z820
482 */
Sarah Sharpc3897aa2013-04-18 10:02:03 -0700483bool xhci_compliance_mode_recovery_timer_quirk_check(void)
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500484{
485 const char *dmi_product_name, *dmi_sys_vendor;
486
487 dmi_product_name = dmi_get_system_info(DMI_PRODUCT_NAME);
488 dmi_sys_vendor = dmi_get_system_info(DMI_SYS_VENDOR);
Vivek Gautam457a73d2012-09-22 18:11:19 +0530489 if (!dmi_product_name || !dmi_sys_vendor)
490 return false;
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500491
492 if (!(strstr(dmi_sys_vendor, "Hewlett-Packard")))
493 return false;
494
495 if (strstr(dmi_product_name, "Z420") ||
496 strstr(dmi_product_name, "Z620") ||
Alexis R. Cortes47080972012-10-17 14:09:12 -0500497 strstr(dmi_product_name, "Z820") ||
Alexis R. Cortesb0e4e602012-11-08 16:59:27 -0600498 strstr(dmi_product_name, "Z1 Workstation"))
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500499 return true;
500
501 return false;
502}
503
504static int xhci_all_ports_seen_u0(struct xhci_hcd *xhci)
505{
506 return (xhci->port_status_u0 == ((1 << xhci->num_usb3_ports)-1));
507}
508
509
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700510/*
511 * Initialize memory for HCD and xHC (one-time init).
512 *
513 * Program the PAGESIZE register, initialize the device context array, create
514 * device contexts (?), set up a command ring segment (or two?), create event
515 * ring (one for now).
516 */
517int xhci_init(struct usb_hcd *hcd)
518{
519 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
520 int retval = 0;
521
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300522 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "xhci_init");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700523 spin_lock_init(&xhci->lock);
Sebastian Andrzej Siewiord7826592011-09-13 16:41:10 -0700524 if (xhci->hci_version == 0x95 && link_quirk) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300525 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
526 "QUIRK: Not clearing Link TRB chain bits.");
Sarah Sharpb0567b32009-08-07 14:04:36 -0700527 xhci->quirks |= XHCI_LINK_TRB_QUIRK;
528 } else {
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300529 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
530 "xHCI doesn't need link TRB QUIRK");
Sarah Sharpb0567b32009-08-07 14:04:36 -0700531 }
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700532 retval = xhci_mem_init(xhci, GFP_KERNEL);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300533 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "Finished xhci_init");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700534
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500535 /* Initializing Compliance Mode Recovery Data If Needed */
Sarah Sharpc3897aa2013-04-18 10:02:03 -0700536 if (xhci_compliance_mode_recovery_timer_quirk_check()) {
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500537 xhci->quirks |= XHCI_COMP_MODE_QUIRK;
538 compliance_mode_recovery_timer_init(xhci);
539 }
540
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700541 return retval;
542}
543
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700544/*-------------------------------------------------------------------------*/
545
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700546
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800547static int xhci_run_finished(struct xhci_hcd *xhci)
548{
549 if (xhci_start(xhci)) {
550 xhci_halt(xhci);
551 return -ENODEV;
552 }
553 xhci->shared_hcd->state = HC_STATE_RUNNING;
Elric Fuc181bc52012-06-27 16:30:57 +0800554 xhci->cmd_ring_state = CMD_RING_STATE_RUNNING;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800555
556 if (xhci->quirks & XHCI_NEC_HOST)
557 xhci_ring_cmd_db(xhci);
558
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300559 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
560 "Finished xhci_run for USB3 roothub");
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800561 return 0;
562}
563
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700564/*
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700565 * Start the HC after it was halted.
566 *
567 * This function is called by the USB core when the HC driver is added.
568 * Its opposite is xhci_stop().
569 *
570 * xhci_init() must be called once before this function can be called.
571 * Reset the HC, enable device slot contexts, program DCBAAP, and
572 * set command ring pointer and event ring pointer.
573 *
574 * Setup MSI-X vectors and enable interrupts.
575 */
576int xhci_run(struct usb_hcd *hcd)
577{
578 u32 temp;
Sarah Sharp8e595a52009-07-27 12:03:31 -0700579 u64 temp_64;
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700580 int ret;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700581 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700582
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800583 /* Start the xHCI host controller running only after the USB 2.0 roothub
584 * is setup.
585 */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700586
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700587 hcd->uses_new_polling = 1;
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800588 if (!usb_hcd_is_primary_hcd(hcd))
589 return xhci_run_finished(xhci);
Sarah Sharp0f2a7932009-04-27 19:57:12 -0700590
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300591 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "xhci_run");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700592
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700593 ret = xhci_try_enable_msi(hcd);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700594 if (ret)
Sebastian Andrzej Siewior3fd1ec52011-09-23 14:19:57 -0700595 return ret;
Dong Nguyen43b86af2010-07-21 16:56:08 -0700596
Sarah Sharp66e49d82009-07-27 12:03:46 -0700597 xhci_dbg(xhci, "Command ring memory map follows:\n");
598 xhci_debug_ring(xhci, xhci->cmd_ring);
599 xhci_dbg_ring_ptrs(xhci, xhci->cmd_ring);
600 xhci_dbg_cmd_ptrs(xhci);
601
602 xhci_dbg(xhci, "ERST memory map follows:\n");
603 xhci_dbg_erst(xhci, &xhci->erst);
604 xhci_dbg(xhci, "Event ring:\n");
605 xhci_debug_ring(xhci, xhci->event_ring);
606 xhci_dbg_ring_ptrs(xhci, xhci->event_ring);
607 temp_64 = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
608 temp_64 &= ~ERST_PTR_MASK;
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300609 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
610 "ERST deq = 64'h%0lx", (long unsigned int) temp_64);
Sarah Sharp66e49d82009-07-27 12:03:46 -0700611
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300612 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
613 "// Set the interrupt modulation register");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700614 temp = xhci_readl(xhci, &xhci->ir_set->irq_control);
Sarah Sharpa4d88302009-05-14 11:44:26 -0700615 temp &= ~ER_IRQ_INTERVAL_MASK;
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700616 temp |= (u32) 160;
617 xhci_writel(xhci, temp, &xhci->ir_set->irq_control);
618
619 /* Set the HCD state before we enable the irqs */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700620 temp = xhci_readl(xhci, &xhci->op_regs->command);
621 temp |= (CMD_EIE);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300622 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
623 "// Enable interrupts, cmd = 0x%x.", temp);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700624 xhci_writel(xhci, temp, &xhci->op_regs->command);
625
626 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300627 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
628 "// Enabling event ring interrupter %p by writing 0x%x to irq_pending",
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -0700629 xhci->ir_set, (unsigned int) ER_IRQ_ENABLE(temp));
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700630 xhci_writel(xhci, ER_IRQ_ENABLE(temp),
631 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800632 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700633
Sarah Sharp02386342010-05-24 13:25:28 -0700634 if (xhci->quirks & XHCI_NEC_HOST)
635 xhci_queue_vendor_command(xhci, 0, 0, 0,
636 TRB_TYPE(TRB_NEC_GET_FW));
Sarah Sharp7f84eef2009-04-27 19:53:56 -0700637
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300638 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
639 "Finished xhci_run for USB2 roothub");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700640 return 0;
641}
642
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800643static void xhci_only_stop_hcd(struct usb_hcd *hcd)
644{
645 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
646
647 spin_lock_irq(&xhci->lock);
648 xhci_halt(xhci);
649
650 /* The shared_hcd is going to be deallocated shortly (the USB core only
651 * calls this function when allocation fails in usb_add_hcd(), or
652 * usb_remove_hcd() is called). So we need to unset xHCI's pointer.
653 */
654 xhci->shared_hcd = NULL;
655 spin_unlock_irq(&xhci->lock);
656}
657
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700658/*
659 * Stop xHCI driver.
660 *
661 * This function is called by the USB core when the HC driver is removed.
662 * Its opposite is xhci_run().
663 *
664 * Disable device contexts, disable IRQs, and quiesce the HC.
665 * Reset the HC, finish any completed transactions, and cleanup memory.
666 */
667void xhci_stop(struct usb_hcd *hcd)
668{
669 u32 temp;
670 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
671
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800672 if (!usb_hcd_is_primary_hcd(hcd)) {
673 xhci_only_stop_hcd(xhci->shared_hcd);
674 return;
675 }
676
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700677 spin_lock_irq(&xhci->lock);
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800678 /* Make sure the xHC is halted for a USB3 roothub
679 * (xhci_stop() could be called as part of failed init).
680 */
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700681 xhci_halt(xhci);
682 xhci_reset(xhci);
683 spin_unlock_irq(&xhci->lock);
684
Zhang Rui40a9fb12010-12-17 13:17:04 -0800685 xhci_cleanup_msix(xhci);
686
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500687 /* Deleting Compliance Mode Recovery Timer */
688 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
Tony Camuso58b1d792013-04-05 14:27:07 -0400689 (!(xhci_all_ports_seen_u0(xhci)))) {
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500690 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300691 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
692 "%s: compliance mode recovery timer deleted",
Tony Camuso58b1d792013-04-05 14:27:07 -0400693 __func__);
694 }
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500695
Andiry Xuc41136b2011-03-22 17:08:14 +0800696 if (xhci->quirks & XHCI_AMD_PLL_FIX)
697 usb_amd_dev_put();
698
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300699 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
700 "// Disabling event ring interrupts");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700701 temp = xhci_readl(xhci, &xhci->op_regs->status);
702 xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status);
703 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
704 xhci_writel(xhci, ER_IRQ_DISABLE(temp),
705 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800706 xhci_print_ir_set(xhci, 0);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700707
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300708 xhci_dbg_trace(xhci, trace_xhci_dbg_init, "cleaning up memory");
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700709 xhci_mem_cleanup(xhci);
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300710 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
711 "xhci_stop completed - status = %x",
712 xhci_readl(xhci, &xhci->op_regs->status));
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700713}
714
715/*
716 * Shutdown HC (not bus-specific)
717 *
718 * This is called when the machine is rebooting or halting. We assume that the
719 * machine will be powered off, and the HC's internal state will be reset.
720 * Don't bother to free memory.
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800721 *
722 * This will only ever be called with the main usb_hcd (the USB3 roothub).
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700723 */
724void xhci_shutdown(struct usb_hcd *hcd)
725{
726 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
727
Dan Carpenter052c7f92012-08-13 19:57:03 +0300728 if (xhci->quirks & XHCI_SPURIOUS_REBOOT)
Sarah Sharpe95829f2012-07-23 18:59:30 +0300729 usb_disable_xhci_ports(to_pci_dev(hcd->self.controller));
730
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700731 spin_lock_irq(&xhci->lock);
732 xhci_halt(xhci);
Dong Nguyen43b86af2010-07-21 16:56:08 -0700733 spin_unlock_irq(&xhci->lock);
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700734
Zhang Rui40a9fb12010-12-17 13:17:04 -0800735 xhci_cleanup_msix(xhci);
736
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300737 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
738 "xhci_shutdown completed - status = %x",
739 xhci_readl(xhci, &xhci->op_regs->status));
Sarah Sharp66d4ead2009-04-27 19:52:28 -0700740}
741
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -0700742#ifdef CONFIG_PM
Andiry Xu5535b1d2010-10-14 07:23:06 -0700743static void xhci_save_registers(struct xhci_hcd *xhci)
744{
745 xhci->s3.command = xhci_readl(xhci, &xhci->op_regs->command);
746 xhci->s3.dev_nt = xhci_readl(xhci, &xhci->op_regs->dev_notification);
747 xhci->s3.dcbaa_ptr = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
748 xhci->s3.config_reg = xhci_readl(xhci, &xhci->op_regs->config_reg);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700749 xhci->s3.erst_size = xhci_readl(xhci, &xhci->ir_set->erst_size);
750 xhci->s3.erst_base = xhci_read_64(xhci, &xhci->ir_set->erst_base);
751 xhci->s3.erst_dequeue = xhci_read_64(xhci, &xhci->ir_set->erst_dequeue);
Sarah Sharpc7713e72012-03-16 13:19:35 -0700752 xhci->s3.irq_pending = xhci_readl(xhci, &xhci->ir_set->irq_pending);
753 xhci->s3.irq_control = xhci_readl(xhci, &xhci->ir_set->irq_control);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700754}
755
756static void xhci_restore_registers(struct xhci_hcd *xhci)
757{
758 xhci_writel(xhci, xhci->s3.command, &xhci->op_regs->command);
759 xhci_writel(xhci, xhci->s3.dev_nt, &xhci->op_regs->dev_notification);
760 xhci_write_64(xhci, xhci->s3.dcbaa_ptr, &xhci->op_regs->dcbaa_ptr);
761 xhci_writel(xhci, xhci->s3.config_reg, &xhci->op_regs->config_reg);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700762 xhci_writel(xhci, xhci->s3.erst_size, &xhci->ir_set->erst_size);
763 xhci_write_64(xhci, xhci->s3.erst_base, &xhci->ir_set->erst_base);
Sarah Sharpfb3d85b2012-03-16 13:27:39 -0700764 xhci_write_64(xhci, xhci->s3.erst_dequeue, &xhci->ir_set->erst_dequeue);
Sarah Sharpc7713e72012-03-16 13:19:35 -0700765 xhci_writel(xhci, xhci->s3.irq_pending, &xhci->ir_set->irq_pending);
766 xhci_writel(xhci, xhci->s3.irq_control, &xhci->ir_set->irq_control);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700767}
768
Sarah Sharp89821322010-11-12 11:59:31 -0800769static void xhci_set_cmd_ring_deq(struct xhci_hcd *xhci)
770{
771 u64 val_64;
772
773 /* step 2: initialize command ring buffer */
774 val_64 = xhci_read_64(xhci, &xhci->op_regs->cmd_ring);
775 val_64 = (val_64 & (u64) CMD_RING_RSVD_BITS) |
776 (xhci_trb_virt_to_dma(xhci->cmd_ring->deq_seg,
777 xhci->cmd_ring->dequeue) &
778 (u64) ~CMD_RING_RSVD_BITS) |
779 xhci->cmd_ring->cycle_state;
Xenia Ragiadakoud195fcf2013-08-14 06:33:55 +0300780 xhci_dbg_trace(xhci, trace_xhci_dbg_init,
781 "// Setting command ring address to 0x%llx",
Sarah Sharp89821322010-11-12 11:59:31 -0800782 (long unsigned long) val_64);
783 xhci_write_64(xhci, val_64, &xhci->op_regs->cmd_ring);
784}
785
786/*
787 * The whole command ring must be cleared to zero when we suspend the host.
788 *
789 * The host doesn't save the command ring pointer in the suspend well, so we
790 * need to re-program it on resume. Unfortunately, the pointer must be 64-byte
791 * aligned, because of the reserved bits in the command ring dequeue pointer
792 * register. Therefore, we can't just set the dequeue pointer back in the
793 * middle of the ring (TRBs are 16-byte aligned).
794 */
795static void xhci_clear_command_ring(struct xhci_hcd *xhci)
796{
797 struct xhci_ring *ring;
798 struct xhci_segment *seg;
799
800 ring = xhci->cmd_ring;
801 seg = ring->deq_seg;
802 do {
Andiry Xu158886c2011-11-30 16:37:41 +0800803 memset(seg->trbs, 0,
804 sizeof(union xhci_trb) * (TRBS_PER_SEGMENT - 1));
805 seg->trbs[TRBS_PER_SEGMENT - 1].link.control &=
806 cpu_to_le32(~TRB_CYCLE);
Sarah Sharp89821322010-11-12 11:59:31 -0800807 seg = seg->next;
808 } while (seg != ring->deq_seg);
809
810 /* Reset the software enqueue and dequeue pointers */
811 ring->deq_seg = ring->first_seg;
812 ring->dequeue = ring->first_seg->trbs;
813 ring->enq_seg = ring->deq_seg;
814 ring->enqueue = ring->dequeue;
815
Andiry Xub008df62012-03-05 17:49:34 +0800816 ring->num_trbs_free = ring->num_segs * (TRBS_PER_SEGMENT - 1) - 1;
Sarah Sharp89821322010-11-12 11:59:31 -0800817 /*
818 * Ring is now zeroed, so the HW should look for change of ownership
819 * when the cycle bit is set to 1.
820 */
821 ring->cycle_state = 1;
822
823 /*
824 * Reset the hardware dequeue pointer.
825 * Yes, this will need to be re-written after resume, but we're paranoid
826 * and want to make sure the hardware doesn't access bogus memory
827 * because, say, the BIOS or an SMI started the host without changing
828 * the command ring pointers.
829 */
830 xhci_set_cmd_ring_deq(xhci);
831}
832
Andiry Xu5535b1d2010-10-14 07:23:06 -0700833/*
834 * Stop HC (not bus-specific)
835 *
836 * This is called when the machine transition into S3/S4 mode.
837 *
838 */
839int xhci_suspend(struct xhci_hcd *xhci)
840{
841 int rc = 0;
842 struct usb_hcd *hcd = xhci_to_hcd(xhci);
843 u32 command;
844
Felipe Balbi77b84762012-10-19 10:55:16 +0300845 if (hcd->state != HC_STATE_SUSPENDED ||
846 xhci->shared_hcd->state != HC_STATE_SUSPENDED)
847 return -EINVAL;
848
Sarah Sharpc52804a2012-11-27 12:30:23 -0800849 /* Don't poll the roothubs on bus suspend. */
850 xhci_dbg(xhci, "%s: stopping port polling.\n", __func__);
851 clear_bit(HCD_FLAG_POLL_RH, &hcd->flags);
852 del_timer_sync(&hcd->rh_timer);
853
Andiry Xu5535b1d2010-10-14 07:23:06 -0700854 spin_lock_irq(&xhci->lock);
855 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
Sarah Sharpb3209372011-03-07 11:24:07 -0800856 clear_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700857 /* step 1: stop endpoint */
858 /* skipped assuming that port suspend has done */
859
860 /* step 2: clear Run/Stop bit */
861 command = xhci_readl(xhci, &xhci->op_regs->command);
862 command &= ~CMD_RUN;
863 xhci_writel(xhci, command, &xhci->op_regs->command);
Sarah Sharp2611bd182012-10-25 13:27:51 -0700864 if (xhci_handshake(xhci, &xhci->op_regs->status,
Michael Spanga6e097d2012-09-14 13:05:49 -0400865 STS_HALT, STS_HALT, XHCI_MAX_HALT_USEC)) {
Andiry Xu5535b1d2010-10-14 07:23:06 -0700866 xhci_warn(xhci, "WARN: xHC CMD_RUN timeout\n");
867 spin_unlock_irq(&xhci->lock);
868 return -ETIMEDOUT;
869 }
Sarah Sharp89821322010-11-12 11:59:31 -0800870 xhci_clear_command_ring(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700871
872 /* step 3: save registers */
873 xhci_save_registers(xhci);
874
875 /* step 4: set CSS flag */
876 command = xhci_readl(xhci, &xhci->op_regs->command);
877 command |= CMD_CSS;
878 xhci_writel(xhci, command, &xhci->op_regs->command);
Sarah Sharp2611bd182012-10-25 13:27:51 -0700879 if (xhci_handshake(xhci, &xhci->op_regs->status,
880 STS_SAVE, 0, 10 * 1000)) {
Andiry Xu622eb782012-06-13 10:51:57 +0800881 xhci_warn(xhci, "WARN: xHC save state timeout\n");
Andiry Xu5535b1d2010-10-14 07:23:06 -0700882 spin_unlock_irq(&xhci->lock);
883 return -ETIMEDOUT;
884 }
Andiry Xu5535b1d2010-10-14 07:23:06 -0700885 spin_unlock_irq(&xhci->lock);
886
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500887 /*
888 * Deleting Compliance Mode Recovery Timer because the xHCI Host
889 * is about to be suspended.
890 */
891 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
892 (!(xhci_all_ports_seen_u0(xhci)))) {
893 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300894 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
895 "%s: compliance mode recovery timer deleted",
Tony Camuso58b1d792013-04-05 14:27:07 -0400896 __func__);
Alexis R. Cortes71c731a2012-08-03 14:00:27 -0500897 }
898
Andiry Xu00292272010-12-27 17:39:02 +0800899 /* step 5: remove core well power */
900 /* synchronize irq when using MSI-X */
Sebastian Andrzej Siewior421aa842011-09-23 14:19:58 -0700901 xhci_msix_sync_irqs(xhci);
Andiry Xu00292272010-12-27 17:39:02 +0800902
Andiry Xu5535b1d2010-10-14 07:23:06 -0700903 return rc;
904}
905
906/*
907 * start xHC (not bus-specific)
908 *
909 * This is called when the machine transition from S3/S4 mode.
910 *
911 */
912int xhci_resume(struct xhci_hcd *xhci, bool hibernated)
913{
914 u32 command, temp = 0;
915 struct usb_hcd *hcd = xhci_to_hcd(xhci);
Sarah Sharp65b22f92010-12-17 12:35:05 -0800916 struct usb_hcd *secondary_hcd;
Alan Sternf69e31202011-11-03 11:37:10 -0400917 int retval = 0;
Tony Camuso77df9e02013-02-21 16:11:27 -0500918 bool comp_timer_running = false;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700919
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800920 /* Wait a bit if either of the roothubs need to settle from the
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300921 * transition into bus suspend.
Sarah Sharp20b67cf2010-12-15 12:47:14 -0800922 */
Sarah Sharpf6ff0ac2010-12-16 11:21:10 -0800923 if (time_before(jiffies, xhci->bus_state[0].next_statechange) ||
924 time_before(jiffies,
925 xhci->bus_state[1].next_statechange))
Andiry Xu5535b1d2010-10-14 07:23:06 -0700926 msleep(100);
927
Alan Sternf69e31202011-11-03 11:37:10 -0400928 set_bit(HCD_FLAG_HW_ACCESSIBLE, &hcd->flags);
929 set_bit(HCD_FLAG_HW_ACCESSIBLE, &xhci->shared_hcd->flags);
930
Andiry Xu5535b1d2010-10-14 07:23:06 -0700931 spin_lock_irq(&xhci->lock);
Maarten Lankhorstc877b3b2011-06-15 23:47:21 +0200932 if (xhci->quirks & XHCI_RESET_ON_RESUME)
933 hibernated = true;
Andiry Xu5535b1d2010-10-14 07:23:06 -0700934
935 if (!hibernated) {
936 /* step 1: restore register */
937 xhci_restore_registers(xhci);
938 /* step 2: initialize command ring buffer */
Sarah Sharp89821322010-11-12 11:59:31 -0800939 xhci_set_cmd_ring_deq(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700940 /* step 3: restore state and start state*/
941 /* step 3: set CRS flag */
942 command = xhci_readl(xhci, &xhci->op_regs->command);
943 command |= CMD_CRS;
944 xhci_writel(xhci, command, &xhci->op_regs->command);
Sarah Sharp2611bd182012-10-25 13:27:51 -0700945 if (xhci_handshake(xhci, &xhci->op_regs->status,
Andiry Xu622eb782012-06-13 10:51:57 +0800946 STS_RESTORE, 0, 10 * 1000)) {
947 xhci_warn(xhci, "WARN: xHC restore state timeout\n");
Andiry Xu5535b1d2010-10-14 07:23:06 -0700948 spin_unlock_irq(&xhci->lock);
949 return -ETIMEDOUT;
950 }
951 temp = xhci_readl(xhci, &xhci->op_regs->status);
952 }
953
954 /* If restore operation fails, re-initialize the HC during resume */
955 if ((temp & STS_SRE) || hibernated) {
Tony Camuso77df9e02013-02-21 16:11:27 -0500956
957 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) &&
958 !(xhci_all_ports_seen_u0(xhci))) {
959 del_timer_sync(&xhci->comp_mode_recovery_timer);
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +0300960 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
961 "Compliance Mode Recovery Timer deleted!");
Tony Camuso77df9e02013-02-21 16:11:27 -0500962 }
963
Sarah Sharpfedd3832011-04-12 17:43:19 -0700964 /* Let the USB core know _both_ roothubs lost power. */
965 usb_root_hub_lost_power(xhci->main_hcd->self.root_hub);
966 usb_root_hub_lost_power(xhci->shared_hcd->self.root_hub);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700967
968 xhci_dbg(xhci, "Stop HCD\n");
969 xhci_halt(xhci);
970 xhci_reset(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700971 spin_unlock_irq(&xhci->lock);
Andiry Xu00292272010-12-27 17:39:02 +0800972 xhci_cleanup_msix(xhci);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700973
Andiry Xu5535b1d2010-10-14 07:23:06 -0700974 xhci_dbg(xhci, "// Disabling event ring interrupts\n");
975 temp = xhci_readl(xhci, &xhci->op_regs->status);
976 xhci_writel(xhci, temp & ~STS_EINT, &xhci->op_regs->status);
977 temp = xhci_readl(xhci, &xhci->ir_set->irq_pending);
978 xhci_writel(xhci, ER_IRQ_DISABLE(temp),
979 &xhci->ir_set->irq_pending);
Dmitry Torokhov09ece302011-02-08 16:29:33 -0800980 xhci_print_ir_set(xhci, 0);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700981
982 xhci_dbg(xhci, "cleaning up memory\n");
983 xhci_mem_cleanup(xhci);
984 xhci_dbg(xhci, "xhci_stop completed - status = %x\n",
985 xhci_readl(xhci, &xhci->op_regs->status));
986
Sarah Sharp65b22f92010-12-17 12:35:05 -0800987 /* USB core calls the PCI reinit and start functions twice:
988 * first with the primary HCD, and then with the secondary HCD.
989 * If we don't do the same, the host will never be started.
990 */
991 if (!usb_hcd_is_primary_hcd(hcd))
992 secondary_hcd = hcd;
993 else
994 secondary_hcd = xhci->shared_hcd;
995
996 xhci_dbg(xhci, "Initialize the xhci_hcd\n");
997 retval = xhci_init(hcd->primary_hcd);
Andiry Xu5535b1d2010-10-14 07:23:06 -0700998 if (retval)
999 return retval;
Tony Camuso77df9e02013-02-21 16:11:27 -05001000 comp_timer_running = true;
1001
Sarah Sharp65b22f92010-12-17 12:35:05 -08001002 xhci_dbg(xhci, "Start the primary HCD\n");
1003 retval = xhci_run(hcd->primary_hcd);
Sarah Sharpb3209372011-03-07 11:24:07 -08001004 if (!retval) {
Alan Sternf69e31202011-11-03 11:37:10 -04001005 xhci_dbg(xhci, "Start the secondary HCD\n");
1006 retval = xhci_run(secondary_hcd);
Sarah Sharpb3209372011-03-07 11:24:07 -08001007 }
Andiry Xu5535b1d2010-10-14 07:23:06 -07001008 hcd->state = HC_STATE_SUSPENDED;
Sarah Sharpb3209372011-03-07 11:24:07 -08001009 xhci->shared_hcd->state = HC_STATE_SUSPENDED;
Alan Sternf69e31202011-11-03 11:37:10 -04001010 goto done;
Andiry Xu5535b1d2010-10-14 07:23:06 -07001011 }
1012
Andiry Xu5535b1d2010-10-14 07:23:06 -07001013 /* step 4: set Run/Stop bit */
1014 command = xhci_readl(xhci, &xhci->op_regs->command);
1015 command |= CMD_RUN;
1016 xhci_writel(xhci, command, &xhci->op_regs->command);
Sarah Sharp2611bd182012-10-25 13:27:51 -07001017 xhci_handshake(xhci, &xhci->op_regs->status, STS_HALT,
Andiry Xu5535b1d2010-10-14 07:23:06 -07001018 0, 250 * 1000);
1019
1020 /* step 5: walk topology and initialize portsc,
1021 * portpmsc and portli
1022 */
1023 /* this is done in bus_resume */
1024
1025 /* step 6: restart each of the previously
1026 * Running endpoints by ringing their doorbells
1027 */
1028
Andiry Xu5535b1d2010-10-14 07:23:06 -07001029 spin_unlock_irq(&xhci->lock);
Alan Sternf69e31202011-11-03 11:37:10 -04001030
1031 done:
1032 if (retval == 0) {
1033 usb_hcd_resume_root_hub(hcd);
1034 usb_hcd_resume_root_hub(xhci->shared_hcd);
1035 }
Alexis R. Cortes71c731a2012-08-03 14:00:27 -05001036
1037 /*
1038 * If system is subject to the Quirk, Compliance Mode Timer needs to
1039 * be re-initialized Always after a system resume. Ports are subject
1040 * to suffer the Compliance Mode issue again. It doesn't matter if
1041 * ports have entered previously to U0 before system's suspension.
1042 */
Tony Camuso77df9e02013-02-21 16:11:27 -05001043 if ((xhci->quirks & XHCI_COMP_MODE_QUIRK) && !comp_timer_running)
Alexis R. Cortes71c731a2012-08-03 14:00:27 -05001044 compliance_mode_recovery_timer_init(xhci);
1045
Sarah Sharpc52804a2012-11-27 12:30:23 -08001046 /* Re-enable port polling. */
1047 xhci_dbg(xhci, "%s: starting port polling.\n", __func__);
1048 set_bit(HCD_FLAG_POLL_RH, &hcd->flags);
1049 usb_hcd_poll_rh_status(hcd);
1050
Alan Sternf69e31202011-11-03 11:37:10 -04001051 return retval;
Andiry Xu5535b1d2010-10-14 07:23:06 -07001052}
Sarah Sharpb5b5c3a2010-10-15 11:24:14 -07001053#endif /* CONFIG_PM */
1054
Sarah Sharp7f84eef2009-04-27 19:53:56 -07001055/*-------------------------------------------------------------------------*/
1056
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001057/**
1058 * xhci_get_endpoint_index - Used for passing endpoint bitmasks between the core and
1059 * HCDs. Find the index for an endpoint given its descriptor. Use the return
1060 * value to right shift 1 for the bitmask.
1061 *
1062 * Index = (epnum * 2) + direction - 1,
1063 * where direction = 0 for OUT, 1 for IN.
1064 * For control endpoints, the IN index is used (OUT index is unused), so
1065 * index = (epnum * 2) + direction - 1 = (epnum * 2) + 1 - 1 = (epnum * 2)
1066 */
1067unsigned int xhci_get_endpoint_index(struct usb_endpoint_descriptor *desc)
1068{
1069 unsigned int index;
1070 if (usb_endpoint_xfer_control(desc))
1071 index = (unsigned int) (usb_endpoint_num(desc)*2);
1072 else
1073 index = (unsigned int) (usb_endpoint_num(desc)*2) +
1074 (usb_endpoint_dir_in(desc) ? 1 : 0) - 1;
1075 return index;
1076}
1077
Julius Werner01c5f442013-04-15 15:55:04 -07001078/* The reverse operation to xhci_get_endpoint_index. Calculate the USB endpoint
1079 * address from the XHCI endpoint index.
1080 */
1081unsigned int xhci_get_endpoint_address(unsigned int ep_index)
1082{
1083 unsigned int number = DIV_ROUND_UP(ep_index, 2);
1084 unsigned int direction = ep_index % 2 ? USB_DIR_OUT : USB_DIR_IN;
1085 return direction | number;
1086}
1087
Sarah Sharpf94e01862009-04-27 19:58:38 -07001088/* Find the flag for this endpoint (for use in the control context). Use the
1089 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
1090 * bit 1, etc.
1091 */
1092unsigned int xhci_get_endpoint_flag(struct usb_endpoint_descriptor *desc)
1093{
1094 return 1 << (xhci_get_endpoint_index(desc) + 1);
1095}
1096
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001097/* Find the flag for this endpoint (for use in the control context). Use the
1098 * endpoint index to create a bitmask. The slot context is bit 0, endpoint 0 is
1099 * bit 1, etc.
1100 */
1101unsigned int xhci_get_endpoint_flag_from_index(unsigned int ep_index)
1102{
1103 return 1 << (ep_index + 1);
1104}
1105
Sarah Sharpf94e01862009-04-27 19:58:38 -07001106/* Compute the last valid endpoint context index. Basically, this is the
1107 * endpoint index plus one. For slot contexts with more than valid endpoint,
1108 * we find the most significant bit set in the added contexts flags.
1109 * e.g. ep 1 IN (with epnum 0x81) => added_ctxs = 0b1000
1110 * fls(0b1000) = 4, but the endpoint context index is 3, so subtract one.
1111 */
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07001112unsigned int xhci_last_valid_endpoint(u32 added_ctxs)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001113{
1114 return fls(added_ctxs) - 1;
1115}
1116
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001117/* Returns 1 if the arguments are OK;
1118 * returns 0 this is a root hub; returns -EINVAL for NULL pointers.
1119 */
Dmitry Torokhov8212a492011-02-08 13:55:59 -08001120static int xhci_check_args(struct usb_hcd *hcd, struct usb_device *udev,
Andiry Xu64927732010-10-14 07:22:45 -07001121 struct usb_host_endpoint *ep, int check_ep, bool check_virt_dev,
1122 const char *func) {
1123 struct xhci_hcd *xhci;
1124 struct xhci_virt_device *virt_dev;
1125
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001126 if (!hcd || (check_ep && !ep) || !udev) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001127 pr_debug("xHCI %s called with invalid args\n", func);
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001128 return -EINVAL;
1129 }
1130 if (!udev->parent) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001131 pr_debug("xHCI %s called for root hub\n", func);
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001132 return 0;
1133 }
Andiry Xu64927732010-10-14 07:22:45 -07001134
Sarah Sharp7bd89b42011-07-01 13:35:40 -07001135 xhci = hcd_to_xhci(hcd);
Andiry Xu64927732010-10-14 07:22:45 -07001136 if (check_virt_dev) {
sifram.rajas@gmail.com73ddc242011-09-02 11:06:00 -07001137 if (!udev->slot_id || !xhci->devs[udev->slot_id]) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001138 xhci_dbg(xhci, "xHCI %s called with unaddressed device\n",
1139 func);
Andiry Xu64927732010-10-14 07:22:45 -07001140 return -EINVAL;
1141 }
1142
1143 virt_dev = xhci->devs[udev->slot_id];
1144 if (virt_dev->udev != udev) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03001145 xhci_dbg(xhci, "xHCI %s called with udev and "
Andiry Xu64927732010-10-14 07:22:45 -07001146 "virt_dev does not match\n", func);
1147 return -EINVAL;
1148 }
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001149 }
Andiry Xu64927732010-10-14 07:22:45 -07001150
Sarah Sharp203a8662013-07-24 10:27:13 -07001151 if (xhci->xhc_state & XHCI_STATE_HALTED)
1152 return -ENODEV;
1153
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001154 return 1;
1155}
1156
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001157static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07001158 struct usb_device *udev, struct xhci_command *command,
1159 bool ctx_change, bool must_succeed);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001160
1161/*
1162 * Full speed devices may have a max packet size greater than 8 bytes, but the
1163 * USB core doesn't know that until it reads the first 8 bytes of the
1164 * descriptor. If the usb_device's max packet size changes after that point,
1165 * we need to issue an evaluate context command and wait on it.
1166 */
1167static int xhci_check_maxpacket(struct xhci_hcd *xhci, unsigned int slot_id,
1168 unsigned int ep_index, struct urb *urb)
1169{
1170 struct xhci_container_ctx *in_ctx;
1171 struct xhci_container_ctx *out_ctx;
1172 struct xhci_input_control_ctx *ctrl_ctx;
1173 struct xhci_ep_ctx *ep_ctx;
1174 int max_packet_size;
1175 int hw_max_packet_size;
1176 int ret = 0;
1177
1178 out_ctx = xhci->devs[slot_id]->out_ctx;
1179 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Matt Evans28ccd292011-03-29 13:40:46 +11001180 hw_max_packet_size = MAX_PACKET_DECODED(le32_to_cpu(ep_ctx->ep_info2));
Kuninori Morimoto29cc8892011-08-23 03:12:03 -07001181 max_packet_size = usb_endpoint_maxp(&urb->dev->ep0.desc);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001182 if (hw_max_packet_size != max_packet_size) {
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001183 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1184 "Max Packet Size for ep 0 changed.");
1185 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1186 "Max packet size in usb_device = %d",
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001187 max_packet_size);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001188 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1189 "Max packet size in xHCI HW = %d",
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001190 hw_max_packet_size);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001191 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1192 "Issuing evaluate context command.");
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001193
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001194 /* Set up the input context flags for the command */
1195 /* FIXME: This won't work if a non-default control endpoint
1196 * changes max packet sizes.
1197 */
Sarah Sharp92f8e762013-04-23 17:11:14 -07001198 in_ctx = xhci->devs[slot_id]->in_ctx;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001199 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001200 if (!ctrl_ctx) {
1201 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1202 __func__);
1203 return -ENOMEM;
1204 }
1205 /* Set up the modified control endpoint 0 */
1206 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
1207 xhci->devs[slot_id]->out_ctx, ep_index);
1208
1209 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
1210 ep_ctx->ep_info2 &= cpu_to_le32(~MAX_PACKET_MASK);
1211 ep_ctx->ep_info2 |= cpu_to_le32(MAX_PACKET(max_packet_size));
1212
Matt Evans28ccd292011-03-29 13:40:46 +11001213 ctrl_ctx->add_flags = cpu_to_le32(EP0_FLAG);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001214 ctrl_ctx->drop_flags = 0;
1215
1216 xhci_dbg(xhci, "Slot %d input context\n", slot_id);
1217 xhci_dbg_ctx(xhci, in_ctx, ep_index);
1218 xhci_dbg(xhci, "Slot %d output context\n", slot_id);
1219 xhci_dbg_ctx(xhci, out_ctx, ep_index);
1220
Sarah Sharp913a8a32009-09-04 10:53:13 -07001221 ret = xhci_configure_endpoint(xhci, urb->dev, NULL,
1222 true, false);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001223
1224 /* Clean up the input context for later use by bandwidth
1225 * functions.
1226 */
Matt Evans28ccd292011-03-29 13:40:46 +11001227 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001228 }
1229 return ret;
1230}
1231
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001232/*
1233 * non-error returns are a promise to giveback() the urb later
1234 * we drop ownership so next owner (or urb unlink) can get it
1235 */
1236int xhci_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, gfp_t mem_flags)
1237{
1238 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Andiry Xu2ffdea22011-09-02 11:05:57 -07001239 struct xhci_td *buffer;
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001240 unsigned long flags;
1241 int ret = 0;
1242 unsigned int slot_id, ep_index;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001243 struct urb_priv *urb_priv;
1244 int size, i;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001245
Andiry Xu64927732010-10-14 07:22:45 -07001246 if (!urb || xhci_check_args(hcd, urb->dev, urb->ep,
1247 true, true, __func__) <= 0)
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001248 return -EINVAL;
1249
1250 slot_id = urb->dev->slot_id;
1251 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001252
Alan Stern541c7d42010-06-22 16:39:10 -04001253 if (!HCD_HW_ACCESSIBLE(hcd)) {
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001254 if (!in_interrupt())
1255 xhci_dbg(xhci, "urb submitted during PCI suspend\n");
1256 ret = -ESHUTDOWN;
1257 goto exit;
1258 }
Andiry Xu8e51adc2010-07-22 15:23:31 -07001259
1260 if (usb_endpoint_xfer_isoc(&urb->ep->desc))
1261 size = urb->number_of_packets;
1262 else
1263 size = 1;
1264
1265 urb_priv = kzalloc(sizeof(struct urb_priv) +
1266 size * sizeof(struct xhci_td *), mem_flags);
1267 if (!urb_priv)
1268 return -ENOMEM;
1269
Andiry Xu2ffdea22011-09-02 11:05:57 -07001270 buffer = kzalloc(size * sizeof(struct xhci_td), mem_flags);
1271 if (!buffer) {
1272 kfree(urb_priv);
1273 return -ENOMEM;
1274 }
1275
Andiry Xu8e51adc2010-07-22 15:23:31 -07001276 for (i = 0; i < size; i++) {
Andiry Xu2ffdea22011-09-02 11:05:57 -07001277 urb_priv->td[i] = buffer;
1278 buffer++;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001279 }
1280
1281 urb_priv->length = size;
1282 urb_priv->td_cnt = 0;
1283 urb->hcpriv = urb_priv;
1284
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001285 if (usb_endpoint_xfer_control(&urb->ep->desc)) {
1286 /* Check to see if the max packet size for the default control
1287 * endpoint changed during FS device enumeration
1288 */
1289 if (urb->dev->speed == USB_SPEED_FULL) {
1290 ret = xhci_check_maxpacket(xhci, slot_id,
1291 ep_index, urb);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001292 if (ret < 0) {
1293 xhci_urb_free_priv(xhci, urb_priv);
1294 urb->hcpriv = NULL;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001295 return ret;
Sarah Sharpd13565c2011-07-22 14:34:34 -07001296 }
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001297 }
1298
Sarah Sharpb11069f2009-07-27 12:03:23 -07001299 /* We have a spinlock and interrupts disabled, so we must pass
1300 * atomic context to this function, which may allocate memory.
1301 */
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001302 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001303 if (xhci->xhc_state & XHCI_STATE_DYING)
1304 goto dying;
Sarah Sharpb11069f2009-07-27 12:03:23 -07001305 ret = xhci_queue_ctrl_tx(xhci, GFP_ATOMIC, urb,
Sarah Sharp23e3be12009-04-29 19:05:20 -07001306 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001307 if (ret)
1308 goto free_priv;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001309 spin_unlock_irqrestore(&xhci->lock, flags);
1310 } else if (usb_endpoint_xfer_bulk(&urb->ep->desc)) {
1311 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001312 if (xhci->xhc_state & XHCI_STATE_DYING)
1313 goto dying;
Sarah Sharp8df75f42010-04-02 15:34:16 -07001314 if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1315 EP_GETTING_STREAMS) {
1316 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1317 "is transitioning to using streams.\n");
1318 ret = -EINVAL;
1319 } else if (xhci->devs[slot_id]->eps[ep_index].ep_state &
1320 EP_GETTING_NO_STREAMS) {
1321 xhci_warn(xhci, "WARN: Can't enqueue URB while bulk ep "
1322 "is transitioning to "
1323 "not having streams.\n");
1324 ret = -EINVAL;
1325 } else {
1326 ret = xhci_queue_bulk_tx(xhci, GFP_ATOMIC, urb,
1327 slot_id, ep_index);
1328 }
Sarah Sharpd13565c2011-07-22 14:34:34 -07001329 if (ret)
1330 goto free_priv;
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001331 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp624defa2009-09-02 12:14:28 -07001332 } else if (usb_endpoint_xfer_int(&urb->ep->desc)) {
1333 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001334 if (xhci->xhc_state & XHCI_STATE_DYING)
1335 goto dying;
Sarah Sharp624defa2009-09-02 12:14:28 -07001336 ret = xhci_queue_intr_tx(xhci, GFP_ATOMIC, urb,
1337 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001338 if (ret)
1339 goto free_priv;
Sarah Sharp624defa2009-09-02 12:14:28 -07001340 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001341 } else {
Andiry Xu787f4e52010-07-22 15:23:52 -07001342 spin_lock_irqsave(&xhci->lock, flags);
1343 if (xhci->xhc_state & XHCI_STATE_DYING)
1344 goto dying;
1345 ret = xhci_queue_isoc_tx_prepare(xhci, GFP_ATOMIC, urb,
1346 slot_id, ep_index);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001347 if (ret)
1348 goto free_priv;
Andiry Xu787f4e52010-07-22 15:23:52 -07001349 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp2d3f1fa2009-08-07 14:04:49 -07001350 }
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001351exit:
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001352 return ret;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001353dying:
1354 xhci_dbg(xhci, "Ep 0x%x: URB %p submitted for "
1355 "non-responsive xHCI host.\n",
1356 urb->ep->desc.bEndpointAddress, urb);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001357 ret = -ESHUTDOWN;
1358free_priv:
1359 xhci_urb_free_priv(xhci, urb_priv);
1360 urb->hcpriv = NULL;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001361 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharpd13565c2011-07-22 14:34:34 -07001362 return ret;
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001363}
1364
Sarah Sharp021bff92010-07-29 22:12:20 -07001365/* Get the right ring for the given URB.
1366 * If the endpoint supports streams, boundary check the URB's stream ID.
1367 * If the endpoint doesn't support streams, return the singular endpoint ring.
1368 */
1369static struct xhci_ring *xhci_urb_to_transfer_ring(struct xhci_hcd *xhci,
1370 struct urb *urb)
1371{
1372 unsigned int slot_id;
1373 unsigned int ep_index;
1374 unsigned int stream_id;
1375 struct xhci_virt_ep *ep;
1376
1377 slot_id = urb->dev->slot_id;
1378 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
1379 stream_id = urb->stream_id;
1380 ep = &xhci->devs[slot_id]->eps[ep_index];
1381 /* Common case: no streams */
1382 if (!(ep->ep_state & EP_HAS_STREAMS))
1383 return ep->ring;
1384
1385 if (stream_id == 0) {
1386 xhci_warn(xhci,
1387 "WARN: Slot ID %u, ep index %u has streams, "
1388 "but URB has no stream ID.\n",
1389 slot_id, ep_index);
1390 return NULL;
1391 }
1392
1393 if (stream_id < ep->stream_info->num_streams)
1394 return ep->stream_info->stream_rings[stream_id];
1395
1396 xhci_warn(xhci,
1397 "WARN: Slot ID %u, ep index %u has "
1398 "stream IDs 1 to %u allocated, "
1399 "but stream ID %u is requested.\n",
1400 slot_id, ep_index,
1401 ep->stream_info->num_streams - 1,
1402 stream_id);
1403 return NULL;
1404}
1405
Sarah Sharpae636742009-04-29 19:02:31 -07001406/*
1407 * Remove the URB's TD from the endpoint ring. This may cause the HC to stop
1408 * USB transfers, potentially stopping in the middle of a TRB buffer. The HC
1409 * should pick up where it left off in the TD, unless a Set Transfer Ring
1410 * Dequeue Pointer is issued.
1411 *
1412 * The TRBs that make up the buffers for the canceled URB will be "removed" from
1413 * the ring. Since the ring is a contiguous structure, they can't be physically
1414 * removed. Instead, there are two options:
1415 *
1416 * 1) If the HC is in the middle of processing the URB to be canceled, we
1417 * simply move the ring's dequeue pointer past those TRBs using the Set
1418 * Transfer Ring Dequeue Pointer command. This will be the common case,
1419 * when drivers timeout on the last submitted URB and attempt to cancel.
1420 *
1421 * 2) If the HC is in the middle of a different TD, we turn the TRBs into a
1422 * series of 1-TRB transfer no-op TDs. (No-ops shouldn't be chained.) The
1423 * HC will need to invalidate the any TRBs it has cached after the stop
1424 * endpoint command, as noted in the xHCI 0.95 errata.
1425 *
1426 * 3) The TD may have completed by the time the Stop Endpoint Command
1427 * completes, so software needs to handle that case too.
1428 *
1429 * This function should protect against the TD enqueueing code ringing the
1430 * doorbell while this code is waiting for a Stop Endpoint command to complete.
1431 * It also needs to account for multiple cancellations on happening at the same
1432 * time for the same endpoint.
1433 *
1434 * Note that this function can be called in any context, or so says
1435 * usb_hcd_unlink_urb()
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001436 */
1437int xhci_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, int status)
1438{
Sarah Sharpae636742009-04-29 19:02:31 -07001439 unsigned long flags;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001440 int ret, i;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001441 u32 temp;
Sarah Sharpae636742009-04-29 19:02:31 -07001442 struct xhci_hcd *xhci;
Andiry Xu8e51adc2010-07-22 15:23:31 -07001443 struct urb_priv *urb_priv;
Sarah Sharpae636742009-04-29 19:02:31 -07001444 struct xhci_td *td;
1445 unsigned int ep_index;
1446 struct xhci_ring *ep_ring;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001447 struct xhci_virt_ep *ep;
Sarah Sharpae636742009-04-29 19:02:31 -07001448
1449 xhci = hcd_to_xhci(hcd);
1450 spin_lock_irqsave(&xhci->lock, flags);
1451 /* Make sure the URB hasn't completed or been unlinked already */
1452 ret = usb_hcd_check_unlink_urb(hcd, urb, status);
1453 if (ret || !urb->hcpriv)
1454 goto done;
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001455 temp = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharpc6cc27c2011-03-11 10:20:58 -08001456 if (temp == 0xffffffff || (xhci->xhc_state & XHCI_STATE_HALTED)) {
Xenia Ragiadakouaa50b292013-08-14 06:33:54 +03001457 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
1458 "HW died, freeing TD.");
Andiry Xu8e51adc2010-07-22 15:23:31 -07001459 urb_priv = urb->hcpriv;
Sarah Sharp585df1d2011-08-02 15:43:40 -07001460 for (i = urb_priv->td_cnt; i < urb_priv->length; i++) {
1461 td = urb_priv->td[i];
1462 if (!list_empty(&td->td_list))
1463 list_del_init(&td->td_list);
1464 if (!list_empty(&td->cancelled_td_list))
1465 list_del_init(&td->cancelled_td_list);
1466 }
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001467
1468 usb_hcd_unlink_urb_from_ep(hcd, urb);
1469 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp214f76f2010-10-26 11:22:02 -07001470 usb_hcd_giveback_urb(hcd, urb, -ESHUTDOWN);
Andiry Xu8e51adc2010-07-22 15:23:31 -07001471 xhci_urb_free_priv(xhci, urb_priv);
Sarah Sharpe34b2fb2009-09-28 17:21:37 -07001472 return ret;
1473 }
Sarah Sharp7bd89b42011-07-01 13:35:40 -07001474 if ((xhci->xhc_state & XHCI_STATE_DYING) ||
1475 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Xenia Ragiadakouaa50b292013-08-14 06:33:54 +03001476 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
1477 "Ep 0x%x: URB %p to be canceled on "
1478 "non-responsive xHCI host.",
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001479 urb->ep->desc.bEndpointAddress, urb);
1480 /* Let the stop endpoint command watchdog timer (which set this
1481 * state) finish cleaning up the endpoint TD lists. We must
1482 * have caught it in the middle of dropping a lock and giving
1483 * back an URB.
1484 */
1485 goto done;
1486 }
Sarah Sharpae636742009-04-29 19:02:31 -07001487
Sarah Sharpae636742009-04-29 19:02:31 -07001488 ep_index = xhci_get_endpoint_index(&urb->ep->desc);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07001489 ep = &xhci->devs[urb->dev->slot_id]->eps[ep_index];
Sarah Sharpe9df17e2010-04-02 15:34:43 -07001490 ep_ring = xhci_urb_to_transfer_ring(xhci, urb);
1491 if (!ep_ring) {
1492 ret = -EINVAL;
1493 goto done;
1494 }
1495
Andiry Xu8e51adc2010-07-22 15:23:31 -07001496 urb_priv = urb->hcpriv;
Sarah Sharp79688ac2011-12-19 16:56:04 -08001497 i = urb_priv->td_cnt;
1498 if (i < urb_priv->length)
Xenia Ragiadakouaa50b292013-08-14 06:33:54 +03001499 xhci_dbg_trace(xhci, trace_xhci_dbg_cancel_urb,
1500 "Cancel URB %p, dev %s, ep 0x%x, "
1501 "starting at offset 0x%llx",
Sarah Sharp79688ac2011-12-19 16:56:04 -08001502 urb, urb->dev->devpath,
1503 urb->ep->desc.bEndpointAddress,
1504 (unsigned long long) xhci_trb_virt_to_dma(
1505 urb_priv->td[i]->start_seg,
1506 urb_priv->td[i]->first_trb));
Andiry Xu8e51adc2010-07-22 15:23:31 -07001507
Sarah Sharp79688ac2011-12-19 16:56:04 -08001508 for (; i < urb_priv->length; i++) {
Andiry Xu8e51adc2010-07-22 15:23:31 -07001509 td = urb_priv->td[i];
1510 list_add_tail(&td->cancelled_td_list, &ep->cancelled_td_list);
1511 }
1512
Sarah Sharpae636742009-04-29 19:02:31 -07001513 /* Queue a stop endpoint command, but only if this is
1514 * the first cancellation to be handled.
1515 */
Sarah Sharp678539c2009-10-27 10:55:52 -07001516 if (!(ep->ep_state & EP_HALT_PENDING)) {
1517 ep->ep_state |= EP_HALT_PENDING;
Sarah Sharp6f5165c2009-10-27 10:57:01 -07001518 ep->stop_cmds_pending++;
1519 ep->stop_cmd_timer.expires = jiffies +
1520 XHCI_STOP_EP_CMD_TIMEOUT * HZ;
1521 add_timer(&ep->stop_cmd_timer);
Andiry Xube88fe42010-10-14 07:22:57 -07001522 xhci_queue_stop_endpoint(xhci, urb->dev->slot_id, ep_index, 0);
Sarah Sharp23e3be12009-04-29 19:05:20 -07001523 xhci_ring_cmd_db(xhci);
Sarah Sharpae636742009-04-29 19:02:31 -07001524 }
1525done:
1526 spin_unlock_irqrestore(&xhci->lock, flags);
1527 return ret;
Sarah Sharpd0e96f5a2009-04-27 19:58:01 -07001528}
1529
Sarah Sharpf94e01862009-04-27 19:58:38 -07001530/* Drop an endpoint from a new bandwidth configuration for this device.
1531 * Only one call to this function is allowed per endpoint before
1532 * check_bandwidth() or reset_bandwidth() must be called.
1533 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1534 * add the endpoint to the schedule with possibly new parameters denoted by a
1535 * different endpoint descriptor in usb_host_endpoint.
1536 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1537 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001538 *
1539 * The USB core will not allow URBs to be queued to an endpoint that is being
1540 * disabled, so there's no need for mutual exclusion to protect
1541 * the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001542 */
1543int xhci_drop_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1544 struct usb_host_endpoint *ep)
1545{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001546 struct xhci_hcd *xhci;
John Yound115b042009-07-27 12:05:15 -07001547 struct xhci_container_ctx *in_ctx, *out_ctx;
1548 struct xhci_input_control_ctx *ctrl_ctx;
1549 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001550 unsigned int last_ctx;
1551 unsigned int ep_index;
1552 struct xhci_ep_ctx *ep_ctx;
1553 u32 drop_flag;
1554 u32 new_add_flags, new_drop_flags, new_slot_info;
1555 int ret;
1556
Andiry Xu64927732010-10-14 07:22:45 -07001557 ret = xhci_check_args(hcd, udev, ep, 1, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001558 if (ret <= 0)
1559 return ret;
1560 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001561 if (xhci->xhc_state & XHCI_STATE_DYING)
1562 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001563
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07001564 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001565 drop_flag = xhci_get_endpoint_flag(&ep->desc);
1566 if (drop_flag == SLOT_FLAG || drop_flag == EP0_FLAG) {
1567 xhci_dbg(xhci, "xHCI %s - can't drop slot or ep 0 %#x\n",
1568 __func__, drop_flag);
1569 return 0;
1570 }
1571
Sarah Sharpf94e01862009-04-27 19:58:38 -07001572 in_ctx = xhci->devs[udev->slot_id]->in_ctx;
John Yound115b042009-07-27 12:05:15 -07001573 out_ctx = xhci->devs[udev->slot_id]->out_ctx;
1574 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001575 if (!ctrl_ctx) {
1576 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1577 __func__);
1578 return 0;
1579 }
1580
Sarah Sharpf94e01862009-04-27 19:58:38 -07001581 ep_index = xhci_get_endpoint_index(&ep->desc);
John Yound115b042009-07-27 12:05:15 -07001582 ep_ctx = xhci_get_ep_ctx(xhci, out_ctx, ep_index);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001583 /* If the HC already knows the endpoint is disabled,
1584 * or the HCD has noted it is disabled, ignore this request
1585 */
Matt Evansf5960b62011-06-01 10:22:55 +10001586 if (((ep_ctx->ep_info & cpu_to_le32(EP_STATE_MASK)) ==
1587 cpu_to_le32(EP_STATE_DISABLED)) ||
Matt Evans28ccd292011-03-29 13:40:46 +11001588 le32_to_cpu(ctrl_ctx->drop_flags) &
1589 xhci_get_endpoint_flag(&ep->desc)) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001590 xhci_warn(xhci, "xHCI %s called with disabled ep %p\n",
1591 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001592 return 0;
1593 }
1594
Matt Evans28ccd292011-03-29 13:40:46 +11001595 ctrl_ctx->drop_flags |= cpu_to_le32(drop_flag);
1596 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001597
Matt Evans28ccd292011-03-29 13:40:46 +11001598 ctrl_ctx->add_flags &= cpu_to_le32(~drop_flag);
1599 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001600
Matt Evans28ccd292011-03-29 13:40:46 +11001601 last_ctx = xhci_last_valid_endpoint(le32_to_cpu(ctrl_ctx->add_flags));
John Yound115b042009-07-27 12:05:15 -07001602 slot_ctx = xhci_get_slot_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001603 /* Update the last valid endpoint context, if we deleted the last one */
Matt Evans28ccd292011-03-29 13:40:46 +11001604 if ((le32_to_cpu(slot_ctx->dev_info) & LAST_CTX_MASK) >
1605 LAST_CTX(last_ctx)) {
1606 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
1607 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(last_ctx));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001608 }
Matt Evans28ccd292011-03-29 13:40:46 +11001609 new_slot_info = le32_to_cpu(slot_ctx->dev_info);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001610
1611 xhci_endpoint_zero(xhci, xhci->devs[udev->slot_id], ep);
1612
Sarah Sharpf94e01862009-04-27 19:58:38 -07001613 xhci_dbg(xhci, "drop ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n",
1614 (unsigned int) ep->desc.bEndpointAddress,
1615 udev->slot_id,
1616 (unsigned int) new_drop_flags,
1617 (unsigned int) new_add_flags,
1618 (unsigned int) new_slot_info);
1619 return 0;
1620}
1621
1622/* Add an endpoint to a new possible bandwidth configuration for this device.
1623 * Only one call to this function is allowed per endpoint before
1624 * check_bandwidth() or reset_bandwidth() must be called.
1625 * A call to xhci_drop_endpoint() followed by a call to xhci_add_endpoint() will
1626 * add the endpoint to the schedule with possibly new parameters denoted by a
1627 * different endpoint descriptor in usb_host_endpoint.
1628 * A call to xhci_add_endpoint() followed by a call to xhci_drop_endpoint() is
1629 * not allowed.
Sarah Sharpf88ba782009-05-14 11:44:22 -07001630 *
1631 * The USB core will not allow URBs to be queued to an endpoint until the
1632 * configuration or alt setting is installed in the device, so there's no need
1633 * for mutual exclusion to protect the xhci->devs[slot_id] structure.
Sarah Sharpf94e01862009-04-27 19:58:38 -07001634 */
1635int xhci_add_endpoint(struct usb_hcd *hcd, struct usb_device *udev,
1636 struct usb_host_endpoint *ep)
1637{
Sarah Sharpf94e01862009-04-27 19:58:38 -07001638 struct xhci_hcd *xhci;
John Yound115b042009-07-27 12:05:15 -07001639 struct xhci_container_ctx *in_ctx, *out_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001640 unsigned int ep_index;
John Yound115b042009-07-27 12:05:15 -07001641 struct xhci_slot_ctx *slot_ctx;
1642 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001643 u32 added_ctxs;
1644 unsigned int last_ctx;
1645 u32 new_add_flags, new_drop_flags, new_slot_info;
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);
1660 last_ctx = xhci_last_valid_endpoint(added_ctxs);
1661 if (added_ctxs == SLOT_FLAG || added_ctxs == EP0_FLAG) {
1662 /* FIXME when we have to issue an evaluate endpoint command to
1663 * deal with ep0 max packet size changing once we get the
1664 * descriptors
1665 */
1666 xhci_dbg(xhci, "xHCI %s - can't add slot or ep 0 %#x\n",
1667 __func__, added_ctxs);
1668 return 0;
1669 }
1670
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001671 virt_dev = xhci->devs[udev->slot_id];
1672 in_ctx = virt_dev->in_ctx;
1673 out_ctx = virt_dev->out_ctx;
John Yound115b042009-07-27 12:05:15 -07001674 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07001675 if (!ctrl_ctx) {
1676 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1677 __func__);
1678 return 0;
1679 }
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001680
Sarah Sharp92f8e762013-04-23 17:11:14 -07001681 ep_index = xhci_get_endpoint_index(&ep->desc);
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001682 /* If this endpoint is already in use, and the upper layers are trying
1683 * to add it again without dropping it, reject the addition.
1684 */
1685 if (virt_dev->eps[ep_index].ring &&
1686 !(le32_to_cpu(ctrl_ctx->drop_flags) &
1687 xhci_get_endpoint_flag(&ep->desc))) {
1688 xhci_warn(xhci, "Trying to add endpoint 0x%x "
1689 "without dropping it.\n",
1690 (unsigned int) ep->desc.bEndpointAddress);
1691 return -EINVAL;
1692 }
1693
Sarah Sharpf94e01862009-04-27 19:58:38 -07001694 /* If the HCD has already noted the endpoint is enabled,
1695 * ignore this request.
1696 */
Matt Evans28ccd292011-03-29 13:40:46 +11001697 if (le32_to_cpu(ctrl_ctx->add_flags) &
1698 xhci_get_endpoint_flag(&ep->desc)) {
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07001699 xhci_warn(xhci, "xHCI %s called with enabled ep %p\n",
1700 __func__, ep);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001701 return 0;
1702 }
1703
Sarah Sharpf88ba782009-05-14 11:44:22 -07001704 /*
1705 * Configuration and alternate setting changes must be done in
1706 * process context, not interrupt context (or so documenation
1707 * for usb_set_interface() and usb_set_configuration() claim).
1708 */
Sarah Sharpfa75ac32011-06-05 23:10:04 -07001709 if (xhci_endpoint_init(xhci, virt_dev, udev, ep, GFP_NOIO) < 0) {
Sarah Sharpf94e01862009-04-27 19:58:38 -07001710 dev_dbg(&udev->dev, "%s - could not initialize ep %#x\n",
1711 __func__, ep->desc.bEndpointAddress);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001712 return -ENOMEM;
1713 }
1714
Matt Evans28ccd292011-03-29 13:40:46 +11001715 ctrl_ctx->add_flags |= cpu_to_le32(added_ctxs);
1716 new_add_flags = le32_to_cpu(ctrl_ctx->add_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001717
1718 /* If xhci_endpoint_disable() was called for this endpoint, but the
1719 * xHC hasn't been notified yet through the check_bandwidth() call,
1720 * this re-adds a new state for the endpoint from the new endpoint
1721 * descriptors. We must drop and re-add this endpoint, so we leave the
1722 * drop flags alone.
1723 */
Matt Evans28ccd292011-03-29 13:40:46 +11001724 new_drop_flags = le32_to_cpu(ctrl_ctx->drop_flags);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001725
John Yound115b042009-07-27 12:05:15 -07001726 slot_ctx = xhci_get_slot_ctx(xhci, in_ctx);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001727 /* Update the last valid endpoint context, if we just added one past */
Matt Evans28ccd292011-03-29 13:40:46 +11001728 if ((le32_to_cpu(slot_ctx->dev_info) & LAST_CTX_MASK) <
1729 LAST_CTX(last_ctx)) {
1730 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
1731 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(last_ctx));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001732 }
Matt Evans28ccd292011-03-29 13:40:46 +11001733 new_slot_info = le32_to_cpu(slot_ctx->dev_info);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001734
Sarah Sharpa1587d92009-07-27 12:03:15 -07001735 /* Store the usb_device pointer for later use */
1736 ep->hcpriv = udev;
1737
Sarah Sharpf94e01862009-04-27 19:58:38 -07001738 xhci_dbg(xhci, "add ep 0x%x, slot id %d, new drop flags = %#x, new add flags = %#x, new slot info = %#x\n",
1739 (unsigned int) ep->desc.bEndpointAddress,
1740 udev->slot_id,
1741 (unsigned int) new_drop_flags,
1742 (unsigned int) new_add_flags,
1743 (unsigned int) new_slot_info);
1744 return 0;
1745}
1746
John Yound115b042009-07-27 12:05:15 -07001747static void xhci_zero_in_ctx(struct xhci_hcd *xhci, struct xhci_virt_device *virt_dev)
Sarah Sharpf94e01862009-04-27 19:58:38 -07001748{
John Yound115b042009-07-27 12:05:15 -07001749 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001750 struct xhci_ep_ctx *ep_ctx;
John Yound115b042009-07-27 12:05:15 -07001751 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001752 int i;
1753
Sarah Sharp92f8e762013-04-23 17:11:14 -07001754 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
1755 if (!ctrl_ctx) {
1756 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
1757 __func__);
1758 return;
1759 }
1760
Sarah Sharpf94e01862009-04-27 19:58:38 -07001761 /* When a device's add flag and drop flag are zero, any subsequent
1762 * configure endpoint command will leave that endpoint's state
1763 * untouched. Make sure we don't leave any old state in the input
1764 * endpoint contexts.
1765 */
John Yound115b042009-07-27 12:05:15 -07001766 ctrl_ctx->drop_flags = 0;
1767 ctrl_ctx->add_flags = 0;
1768 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11001769 slot_ctx->dev_info &= cpu_to_le32(~LAST_CTX_MASK);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001770 /* Endpoint 0 is always valid */
Matt Evans28ccd292011-03-29 13:40:46 +11001771 slot_ctx->dev_info |= cpu_to_le32(LAST_CTX(1));
Sarah Sharpf94e01862009-04-27 19:58:38 -07001772 for (i = 1; i < 31; ++i) {
John Yound115b042009-07-27 12:05:15 -07001773 ep_ctx = xhci_get_ep_ctx(xhci, virt_dev->in_ctx, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07001774 ep_ctx->ep_info = 0;
1775 ep_ctx->ep_info2 = 0;
Sarah Sharp8e595a52009-07-27 12:03:31 -07001776 ep_ctx->deq = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07001777 ep_ctx->tx_info = 0;
1778 }
1779}
1780
Sarah Sharpf2217e82009-08-07 14:04:43 -07001781static int xhci_configure_endpoint_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001782 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001783{
1784 int ret;
1785
Sarah Sharp913a8a32009-09-04 10:53:13 -07001786 switch (*cmd_status) {
Sarah Sharpf2217e82009-08-07 14:04:43 -07001787 case COMP_ENOMEM:
1788 dev_warn(&udev->dev, "Not enough host controller resources "
1789 "for new device state.\n");
1790 ret = -ENOMEM;
1791 /* FIXME: can we allocate more resources for the HC? */
1792 break;
1793 case COMP_BW_ERR:
Hans de Goede71d85722012-01-04 23:29:18 +01001794 case COMP_2ND_BW_ERR:
Sarah Sharpf2217e82009-08-07 14:04:43 -07001795 dev_warn(&udev->dev, "Not enough bandwidth "
1796 "for new device state.\n");
1797 ret = -ENOSPC;
1798 /* FIXME: can we go back to the old state? */
1799 break;
1800 case COMP_TRB_ERR:
1801 /* the HCD set up something wrong */
1802 dev_warn(&udev->dev, "ERROR: Endpoint drop flag = 0, "
1803 "add flag = 1, "
1804 "and endpoint is not disabled.\n");
1805 ret = -EINVAL;
1806 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08001807 case COMP_DEV_ERR:
1808 dev_warn(&udev->dev, "ERROR: Incompatible device for endpoint "
1809 "configure command.\n");
1810 ret = -ENODEV;
1811 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001812 case COMP_SUCCESS:
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001813 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1814 "Successful Endpoint Configure command");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001815 ret = 0;
1816 break;
1817 default:
1818 xhci_err(xhci, "ERROR: unexpected command completion "
Sarah Sharp913a8a32009-09-04 10:53:13 -07001819 "code 0x%x.\n", *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001820 ret = -EINVAL;
1821 break;
1822 }
1823 return ret;
1824}
1825
1826static int xhci_evaluate_context_result(struct xhci_hcd *xhci,
Sarah Sharp00161f72011-04-28 12:23:23 -07001827 struct usb_device *udev, u32 *cmd_status)
Sarah Sharpf2217e82009-08-07 14:04:43 -07001828{
1829 int ret;
Sarah Sharp913a8a32009-09-04 10:53:13 -07001830 struct xhci_virt_device *virt_dev = xhci->devs[udev->slot_id];
Sarah Sharpf2217e82009-08-07 14:04:43 -07001831
Sarah Sharp913a8a32009-09-04 10:53:13 -07001832 switch (*cmd_status) {
Sarah Sharpf2217e82009-08-07 14:04:43 -07001833 case COMP_EINVAL:
1834 dev_warn(&udev->dev, "WARN: xHCI driver setup invalid evaluate "
1835 "context command.\n");
1836 ret = -EINVAL;
1837 break;
1838 case COMP_EBADSLT:
1839 dev_warn(&udev->dev, "WARN: slot not enabled for"
1840 "evaluate context command.\n");
Sarah Sharpb8031342012-10-16 13:26:22 -07001841 ret = -EINVAL;
1842 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001843 case COMP_CTX_STATE:
1844 dev_warn(&udev->dev, "WARN: invalid context state for "
1845 "evaluate context command.\n");
1846 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 1);
1847 ret = -EINVAL;
1848 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08001849 case COMP_DEV_ERR:
1850 dev_warn(&udev->dev, "ERROR: Incompatible device for evaluate "
1851 "context command.\n");
1852 ret = -ENODEV;
1853 break;
Alex He1bb73a82011-05-05 18:14:12 +08001854 case COMP_MEL_ERR:
1855 /* Max Exit Latency too large error */
1856 dev_warn(&udev->dev, "WARN: Max Exit Latency too large\n");
1857 ret = -EINVAL;
1858 break;
Sarah Sharpf2217e82009-08-07 14:04:43 -07001859 case COMP_SUCCESS:
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03001860 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
1861 "Successful evaluate context command");
Sarah Sharpf2217e82009-08-07 14:04:43 -07001862 ret = 0;
1863 break;
1864 default:
1865 xhci_err(xhci, "ERROR: unexpected command completion "
Sarah Sharp913a8a32009-09-04 10:53:13 -07001866 "code 0x%x.\n", *cmd_status);
Sarah Sharpf2217e82009-08-07 14:04:43 -07001867 ret = -EINVAL;
1868 break;
1869 }
1870 return ret;
1871}
1872
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001873static u32 xhci_count_num_new_endpoints(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001874 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001875{
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001876 u32 valid_add_flags;
1877 u32 valid_drop_flags;
1878
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001879 /* Ignore the slot flag (bit 0), and the default control endpoint flag
1880 * (bit 1). The default control endpoint is added during the Address
1881 * Device command and is never removed until the slot is disabled.
1882 */
1883 valid_add_flags = ctrl_ctx->add_flags >> 2;
1884 valid_drop_flags = ctrl_ctx->drop_flags >> 2;
1885
1886 /* Use hweight32 to count the number of ones in the add flags, or
1887 * number of endpoints added. Don't count endpoints that are changed
1888 * (both added and dropped).
1889 */
1890 return hweight32(valid_add_flags) -
1891 hweight32(valid_add_flags & valid_drop_flags);
1892}
1893
1894static unsigned int xhci_count_num_dropped_endpoints(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001895 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001896{
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001897 u32 valid_add_flags;
1898 u32 valid_drop_flags;
1899
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001900 valid_add_flags = ctrl_ctx->add_flags >> 2;
1901 valid_drop_flags = ctrl_ctx->drop_flags >> 2;
1902
1903 return hweight32(valid_drop_flags) -
1904 hweight32(valid_add_flags & valid_drop_flags);
1905}
1906
1907/*
1908 * We need to reserve the new number of endpoints before the configure endpoint
1909 * command completes. We can't subtract the dropped endpoints from the number
1910 * of active endpoints until the command completes because we can oversubscribe
1911 * the host in this case:
1912 *
1913 * - the first configure endpoint command drops more endpoints than it adds
1914 * - a second configure endpoint command that adds more endpoints is queued
1915 * - the first configure endpoint command fails, so the config is unchanged
1916 * - the second command may succeed, even though there isn't enough resources
1917 *
1918 * Must be called with xhci->lock held.
1919 */
1920static int xhci_reserve_host_resources(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001921 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001922{
1923 u32 added_eps;
1924
Sarah Sharp92f8e762013-04-23 17:11:14 -07001925 added_eps = xhci_count_num_new_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001926 if (xhci->num_active_eps + added_eps > xhci->limit_active_eps) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001927 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1928 "Not enough ep ctxs: "
1929 "%u active, need to add %u, limit is %u.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001930 xhci->num_active_eps, added_eps,
1931 xhci->limit_active_eps);
1932 return -ENOMEM;
1933 }
1934 xhci->num_active_eps += added_eps;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001935 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1936 "Adding %u ep ctxs, %u now active.", added_eps,
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001937 xhci->num_active_eps);
1938 return 0;
1939}
1940
1941/*
1942 * The configure endpoint was failed by the xHC for some other reason, so we
1943 * need to revert the resources that failed configuration would have used.
1944 *
1945 * Must be called with xhci->lock held.
1946 */
1947static void xhci_free_host_resources(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001948 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001949{
1950 u32 num_failed_eps;
1951
Sarah Sharp92f8e762013-04-23 17:11:14 -07001952 num_failed_eps = xhci_count_num_new_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001953 xhci->num_active_eps -= num_failed_eps;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001954 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1955 "Removing %u failed ep ctxs, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001956 num_failed_eps,
1957 xhci->num_active_eps);
1958}
1959
1960/*
1961 * Now that the command has completed, clean up the active endpoint count by
1962 * subtracting out the endpoints that were dropped (but not changed).
1963 *
1964 * Must be called with xhci->lock held.
1965 */
1966static void xhci_finish_resource_reservation(struct xhci_hcd *xhci,
Sarah Sharp92f8e762013-04-23 17:11:14 -07001967 struct xhci_input_control_ctx *ctrl_ctx)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001968{
1969 u32 num_dropped_eps;
1970
Sarah Sharp92f8e762013-04-23 17:11:14 -07001971 num_dropped_eps = xhci_count_num_dropped_endpoints(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001972 xhci->num_active_eps -= num_dropped_eps;
1973 if (num_dropped_eps)
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03001974 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
1975 "Removing %u dropped ep ctxs, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07001976 num_dropped_eps,
1977 xhci->num_active_eps);
1978}
1979
Felipe Balbied384bd2012-08-07 14:10:03 +03001980static unsigned int xhci_get_block_size(struct usb_device *udev)
Sarah Sharpc29eea62011-09-02 11:05:52 -07001981{
1982 switch (udev->speed) {
1983 case USB_SPEED_LOW:
1984 case USB_SPEED_FULL:
1985 return FS_BLOCK;
1986 case USB_SPEED_HIGH:
1987 return HS_BLOCK;
1988 case USB_SPEED_SUPER:
1989 return SS_BLOCK;
1990 case USB_SPEED_UNKNOWN:
1991 case USB_SPEED_WIRELESS:
1992 default:
1993 /* Should never happen */
1994 return 1;
1995 }
1996}
1997
Felipe Balbied384bd2012-08-07 14:10:03 +03001998static unsigned int
1999xhci_get_largest_overhead(struct xhci_interval_bw *interval_bw)
Sarah Sharpc29eea62011-09-02 11:05:52 -07002000{
2001 if (interval_bw->overhead[LS_OVERHEAD_TYPE])
2002 return LS_OVERHEAD;
2003 if (interval_bw->overhead[FS_OVERHEAD_TYPE])
2004 return FS_OVERHEAD;
2005 return HS_OVERHEAD;
2006}
2007
2008/* If we are changing a LS/FS device under a HS hub,
2009 * make sure (if we are activating a new TT) that the HS bus has enough
2010 * bandwidth for this new TT.
2011 */
2012static int xhci_check_tt_bw_table(struct xhci_hcd *xhci,
2013 struct xhci_virt_device *virt_dev,
2014 int old_active_eps)
2015{
2016 struct xhci_interval_bw_table *bw_table;
2017 struct xhci_tt_bw_info *tt_info;
2018
2019 /* Find the bandwidth table for the root port this TT is attached to. */
2020 bw_table = &xhci->rh_bw[virt_dev->real_port - 1].bw_table;
2021 tt_info = virt_dev->tt_info;
2022 /* If this TT already had active endpoints, the bandwidth for this TT
2023 * has already been added. Removing all periodic endpoints (and thus
2024 * making the TT enactive) will only decrease the bandwidth used.
2025 */
2026 if (old_active_eps)
2027 return 0;
2028 if (old_active_eps == 0 && tt_info->active_eps != 0) {
2029 if (bw_table->bw_used + TT_HS_OVERHEAD > HS_BW_LIMIT)
2030 return -ENOMEM;
2031 return 0;
2032 }
2033 /* Not sure why we would have no new active endpoints...
2034 *
2035 * Maybe because of an Evaluate Context change for a hub update or a
2036 * control endpoint 0 max packet size change?
2037 * FIXME: skip the bandwidth calculation in that case.
2038 */
2039 return 0;
2040}
2041
Sarah Sharp2b698992011-09-13 16:41:13 -07002042static int xhci_check_ss_bw(struct xhci_hcd *xhci,
2043 struct xhci_virt_device *virt_dev)
2044{
2045 unsigned int bw_reserved;
2046
2047 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_IN, 100);
2048 if (virt_dev->bw_table->ss_bw_in > (SS_BW_LIMIT_IN - bw_reserved))
2049 return -ENOMEM;
2050
2051 bw_reserved = DIV_ROUND_UP(SS_BW_RESERVED*SS_BW_LIMIT_OUT, 100);
2052 if (virt_dev->bw_table->ss_bw_out > (SS_BW_LIMIT_OUT - bw_reserved))
2053 return -ENOMEM;
2054
2055 return 0;
2056}
2057
Sarah Sharpc29eea62011-09-02 11:05:52 -07002058/*
2059 * This algorithm is a very conservative estimate of the worst-case scheduling
2060 * scenario for any one interval. The hardware dynamically schedules the
2061 * packets, so we can't tell which microframe could be the limiting factor in
2062 * the bandwidth scheduling. This only takes into account periodic endpoints.
2063 *
2064 * Obviously, we can't solve an NP complete problem to find the minimum worst
2065 * case scenario. Instead, we come up with an estimate that is no less than
2066 * the worst case bandwidth used for any one microframe, but may be an
2067 * over-estimate.
2068 *
2069 * We walk the requirements for each endpoint by interval, starting with the
2070 * smallest interval, and place packets in the schedule where there is only one
2071 * possible way to schedule packets for that interval. In order to simplify
2072 * this algorithm, we record the largest max packet size for each interval, and
2073 * assume all packets will be that size.
2074 *
2075 * For interval 0, we obviously must schedule all packets for each interval.
2076 * The bandwidth for interval 0 is just the amount of data to be transmitted
2077 * (the sum of all max ESIT payload sizes, plus any overhead per packet times
2078 * the number of packets).
2079 *
2080 * For interval 1, we have two possible microframes to schedule those packets
2081 * in. For this algorithm, if we can schedule the same number of packets for
2082 * each possible scheduling opportunity (each microframe), we will do so. The
2083 * remaining number of packets will be saved to be transmitted in the gaps in
2084 * the next interval's scheduling sequence.
2085 *
2086 * As we move those remaining packets to be scheduled with interval 2 packets,
2087 * we have to double the number of remaining packets to transmit. This is
2088 * because the intervals are actually powers of 2, and we would be transmitting
2089 * the previous interval's packets twice in this interval. We also have to be
2090 * sure that when we look at the largest max packet size for this interval, we
2091 * also look at the largest max packet size for the remaining packets and take
2092 * the greater of the two.
2093 *
2094 * The algorithm continues to evenly distribute packets in each scheduling
2095 * opportunity, and push the remaining packets out, until we get to the last
2096 * interval. Then those packets and their associated overhead are just added
2097 * to the bandwidth used.
Sarah Sharp2e279802011-09-02 11:05:50 -07002098 */
2099static int xhci_check_bw_table(struct xhci_hcd *xhci,
2100 struct xhci_virt_device *virt_dev,
2101 int old_active_eps)
2102{
Sarah Sharpc29eea62011-09-02 11:05:52 -07002103 unsigned int bw_reserved;
2104 unsigned int max_bandwidth;
2105 unsigned int bw_used;
2106 unsigned int block_size;
2107 struct xhci_interval_bw_table *bw_table;
2108 unsigned int packet_size = 0;
2109 unsigned int overhead = 0;
2110 unsigned int packets_transmitted = 0;
2111 unsigned int packets_remaining = 0;
2112 unsigned int i;
2113
Sarah Sharp2b698992011-09-13 16:41:13 -07002114 if (virt_dev->udev->speed == USB_SPEED_SUPER)
2115 return xhci_check_ss_bw(xhci, virt_dev);
2116
Sarah Sharpc29eea62011-09-02 11:05:52 -07002117 if (virt_dev->udev->speed == USB_SPEED_HIGH) {
2118 max_bandwidth = HS_BW_LIMIT;
2119 /* Convert percent of bus BW reserved to blocks reserved */
2120 bw_reserved = DIV_ROUND_UP(HS_BW_RESERVED * max_bandwidth, 100);
2121 } else {
2122 max_bandwidth = FS_BW_LIMIT;
2123 bw_reserved = DIV_ROUND_UP(FS_BW_RESERVED * max_bandwidth, 100);
2124 }
2125
2126 bw_table = virt_dev->bw_table;
2127 /* We need to translate the max packet size and max ESIT payloads into
2128 * the units the hardware uses.
2129 */
2130 block_size = xhci_get_block_size(virt_dev->udev);
2131
2132 /* If we are manipulating a LS/FS device under a HS hub, double check
2133 * that the HS bus has enough bandwidth if we are activing a new TT.
2134 */
2135 if (virt_dev->tt_info) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002136 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2137 "Recalculating BW for rootport %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002138 virt_dev->real_port);
2139 if (xhci_check_tt_bw_table(xhci, virt_dev, old_active_eps)) {
2140 xhci_warn(xhci, "Not enough bandwidth on HS bus for "
2141 "newly activated TT.\n");
2142 return -ENOMEM;
2143 }
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002144 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2145 "Recalculating BW for TT slot %u port %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002146 virt_dev->tt_info->slot_id,
2147 virt_dev->tt_info->ttport);
2148 } else {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002149 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2150 "Recalculating BW for rootport %u",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002151 virt_dev->real_port);
2152 }
2153
2154 /* Add in how much bandwidth will be used for interval zero, or the
2155 * rounded max ESIT payload + number of packets * largest overhead.
2156 */
2157 bw_used = DIV_ROUND_UP(bw_table->interval0_esit_payload, block_size) +
2158 bw_table->interval_bw[0].num_packets *
2159 xhci_get_largest_overhead(&bw_table->interval_bw[0]);
2160
2161 for (i = 1; i < XHCI_MAX_INTERVAL; i++) {
2162 unsigned int bw_added;
2163 unsigned int largest_mps;
2164 unsigned int interval_overhead;
2165
2166 /*
2167 * How many packets could we transmit in this interval?
2168 * If packets didn't fit in the previous interval, we will need
2169 * to transmit that many packets twice within this interval.
2170 */
2171 packets_remaining = 2 * packets_remaining +
2172 bw_table->interval_bw[i].num_packets;
2173
2174 /* Find the largest max packet size of this or the previous
2175 * interval.
2176 */
2177 if (list_empty(&bw_table->interval_bw[i].endpoints))
2178 largest_mps = 0;
2179 else {
2180 struct xhci_virt_ep *virt_ep;
2181 struct list_head *ep_entry;
2182
2183 ep_entry = bw_table->interval_bw[i].endpoints.next;
2184 virt_ep = list_entry(ep_entry,
2185 struct xhci_virt_ep, bw_endpoint_list);
2186 /* Convert to blocks, rounding up */
2187 largest_mps = DIV_ROUND_UP(
2188 virt_ep->bw_info.max_packet_size,
2189 block_size);
2190 }
2191 if (largest_mps > packet_size)
2192 packet_size = largest_mps;
2193
2194 /* Use the larger overhead of this or the previous interval. */
2195 interval_overhead = xhci_get_largest_overhead(
2196 &bw_table->interval_bw[i]);
2197 if (interval_overhead > overhead)
2198 overhead = interval_overhead;
2199
2200 /* How many packets can we evenly distribute across
2201 * (1 << (i + 1)) possible scheduling opportunities?
2202 */
2203 packets_transmitted = packets_remaining >> (i + 1);
2204
2205 /* Add in the bandwidth used for those scheduled packets */
2206 bw_added = packets_transmitted * (overhead + packet_size);
2207
2208 /* How many packets do we have remaining to transmit? */
2209 packets_remaining = packets_remaining % (1 << (i + 1));
2210
2211 /* What largest max packet size should those packets have? */
2212 /* If we've transmitted all packets, don't carry over the
2213 * largest packet size.
2214 */
2215 if (packets_remaining == 0) {
2216 packet_size = 0;
2217 overhead = 0;
2218 } else if (packets_transmitted > 0) {
2219 /* Otherwise if we do have remaining packets, and we've
2220 * scheduled some packets in this interval, take the
2221 * largest max packet size from endpoints with this
2222 * interval.
2223 */
2224 packet_size = largest_mps;
2225 overhead = interval_overhead;
2226 }
2227 /* Otherwise carry over packet_size and overhead from the last
2228 * time we had a remainder.
2229 */
2230 bw_used += bw_added;
2231 if (bw_used > max_bandwidth) {
2232 xhci_warn(xhci, "Not enough bandwidth. "
2233 "Proposed: %u, Max: %u\n",
2234 bw_used, max_bandwidth);
2235 return -ENOMEM;
2236 }
2237 }
2238 /*
2239 * Ok, we know we have some packets left over after even-handedly
2240 * scheduling interval 15. We don't know which microframes they will
2241 * fit into, so we over-schedule and say they will be scheduled every
2242 * microframe.
2243 */
2244 if (packets_remaining > 0)
2245 bw_used += overhead + packet_size;
2246
2247 if (!virt_dev->tt_info && virt_dev->udev->speed == USB_SPEED_HIGH) {
2248 unsigned int port_index = virt_dev->real_port - 1;
2249
2250 /* OK, we're manipulating a HS device attached to a
2251 * root port bandwidth domain. Include the number of active TTs
2252 * in the bandwidth used.
2253 */
2254 bw_used += TT_HS_OVERHEAD *
2255 xhci->rh_bw[port_index].num_active_tts;
2256 }
2257
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002258 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2259 "Final bandwidth: %u, Limit: %u, Reserved: %u, "
2260 "Available: %u " "percent",
Sarah Sharpc29eea62011-09-02 11:05:52 -07002261 bw_used, max_bandwidth, bw_reserved,
2262 (max_bandwidth - bw_used - bw_reserved) * 100 /
2263 max_bandwidth);
2264
2265 bw_used += bw_reserved;
2266 if (bw_used > max_bandwidth) {
2267 xhci_warn(xhci, "Not enough bandwidth. Proposed: %u, Max: %u\n",
2268 bw_used, max_bandwidth);
2269 return -ENOMEM;
2270 }
2271
2272 bw_table->bw_used = bw_used;
Sarah Sharp2e279802011-09-02 11:05:50 -07002273 return 0;
2274}
2275
2276static bool xhci_is_async_ep(unsigned int ep_type)
2277{
2278 return (ep_type != ISOC_OUT_EP && ep_type != INT_OUT_EP &&
2279 ep_type != ISOC_IN_EP &&
2280 ep_type != INT_IN_EP);
2281}
2282
Sarah Sharp2b698992011-09-13 16:41:13 -07002283static bool xhci_is_sync_in_ep(unsigned int ep_type)
2284{
Sarah Sharp392a07a2012-10-25 13:44:12 -07002285 return (ep_type == ISOC_IN_EP || ep_type == INT_IN_EP);
Sarah Sharp2b698992011-09-13 16:41:13 -07002286}
2287
2288static unsigned int xhci_get_ss_bw_consumed(struct xhci_bw_info *ep_bw)
2289{
2290 unsigned int mps = DIV_ROUND_UP(ep_bw->max_packet_size, SS_BLOCK);
2291
2292 if (ep_bw->ep_interval == 0)
2293 return SS_OVERHEAD_BURST +
2294 (ep_bw->mult * ep_bw->num_packets *
2295 (SS_OVERHEAD + mps));
2296 return DIV_ROUND_UP(ep_bw->mult * ep_bw->num_packets *
2297 (SS_OVERHEAD + mps + SS_OVERHEAD_BURST),
2298 1 << ep_bw->ep_interval);
2299
2300}
2301
Sarah Sharp2e279802011-09-02 11:05:50 -07002302void xhci_drop_ep_from_interval_table(struct xhci_hcd *xhci,
2303 struct xhci_bw_info *ep_bw,
2304 struct xhci_interval_bw_table *bw_table,
2305 struct usb_device *udev,
2306 struct xhci_virt_ep *virt_ep,
2307 struct xhci_tt_bw_info *tt_info)
2308{
2309 struct xhci_interval_bw *interval_bw;
2310 int normalized_interval;
2311
Sarah Sharp2b698992011-09-13 16:41:13 -07002312 if (xhci_is_async_ep(ep_bw->type))
Sarah Sharp2e279802011-09-02 11:05:50 -07002313 return;
2314
Sarah Sharp2b698992011-09-13 16:41:13 -07002315 if (udev->speed == USB_SPEED_SUPER) {
2316 if (xhci_is_sync_in_ep(ep_bw->type))
2317 xhci->devs[udev->slot_id]->bw_table->ss_bw_in -=
2318 xhci_get_ss_bw_consumed(ep_bw);
2319 else
2320 xhci->devs[udev->slot_id]->bw_table->ss_bw_out -=
2321 xhci_get_ss_bw_consumed(ep_bw);
2322 return;
2323 }
2324
2325 /* SuperSpeed endpoints never get added to intervals in the table, so
2326 * this check is only valid for HS/FS/LS devices.
2327 */
2328 if (list_empty(&virt_ep->bw_endpoint_list))
2329 return;
Sarah Sharp2e279802011-09-02 11:05:50 -07002330 /* For LS/FS devices, we need to translate the interval expressed in
2331 * microframes to frames.
2332 */
2333 if (udev->speed == USB_SPEED_HIGH)
2334 normalized_interval = ep_bw->ep_interval;
2335 else
2336 normalized_interval = ep_bw->ep_interval - 3;
2337
2338 if (normalized_interval == 0)
2339 bw_table->interval0_esit_payload -= ep_bw->max_esit_payload;
2340 interval_bw = &bw_table->interval_bw[normalized_interval];
2341 interval_bw->num_packets -= ep_bw->num_packets;
2342 switch (udev->speed) {
2343 case USB_SPEED_LOW:
2344 interval_bw->overhead[LS_OVERHEAD_TYPE] -= 1;
2345 break;
2346 case USB_SPEED_FULL:
2347 interval_bw->overhead[FS_OVERHEAD_TYPE] -= 1;
2348 break;
2349 case USB_SPEED_HIGH:
2350 interval_bw->overhead[HS_OVERHEAD_TYPE] -= 1;
2351 break;
2352 case USB_SPEED_SUPER:
2353 case USB_SPEED_UNKNOWN:
2354 case USB_SPEED_WIRELESS:
2355 /* Should never happen because only LS/FS/HS endpoints will get
2356 * added to the endpoint list.
2357 */
2358 return;
2359 }
2360 if (tt_info)
2361 tt_info->active_eps -= 1;
2362 list_del_init(&virt_ep->bw_endpoint_list);
2363}
2364
2365static void xhci_add_ep_to_interval_table(struct xhci_hcd *xhci,
2366 struct xhci_bw_info *ep_bw,
2367 struct xhci_interval_bw_table *bw_table,
2368 struct usb_device *udev,
2369 struct xhci_virt_ep *virt_ep,
2370 struct xhci_tt_bw_info *tt_info)
2371{
2372 struct xhci_interval_bw *interval_bw;
2373 struct xhci_virt_ep *smaller_ep;
2374 int normalized_interval;
2375
2376 if (xhci_is_async_ep(ep_bw->type))
2377 return;
2378
Sarah Sharp2b698992011-09-13 16:41:13 -07002379 if (udev->speed == USB_SPEED_SUPER) {
2380 if (xhci_is_sync_in_ep(ep_bw->type))
2381 xhci->devs[udev->slot_id]->bw_table->ss_bw_in +=
2382 xhci_get_ss_bw_consumed(ep_bw);
2383 else
2384 xhci->devs[udev->slot_id]->bw_table->ss_bw_out +=
2385 xhci_get_ss_bw_consumed(ep_bw);
2386 return;
2387 }
2388
Sarah Sharp2e279802011-09-02 11:05:50 -07002389 /* For LS/FS devices, we need to translate the interval expressed in
2390 * microframes to frames.
2391 */
2392 if (udev->speed == USB_SPEED_HIGH)
2393 normalized_interval = ep_bw->ep_interval;
2394 else
2395 normalized_interval = ep_bw->ep_interval - 3;
2396
2397 if (normalized_interval == 0)
2398 bw_table->interval0_esit_payload += ep_bw->max_esit_payload;
2399 interval_bw = &bw_table->interval_bw[normalized_interval];
2400 interval_bw->num_packets += ep_bw->num_packets;
2401 switch (udev->speed) {
2402 case USB_SPEED_LOW:
2403 interval_bw->overhead[LS_OVERHEAD_TYPE] += 1;
2404 break;
2405 case USB_SPEED_FULL:
2406 interval_bw->overhead[FS_OVERHEAD_TYPE] += 1;
2407 break;
2408 case USB_SPEED_HIGH:
2409 interval_bw->overhead[HS_OVERHEAD_TYPE] += 1;
2410 break;
2411 case USB_SPEED_SUPER:
2412 case USB_SPEED_UNKNOWN:
2413 case USB_SPEED_WIRELESS:
2414 /* Should never happen because only LS/FS/HS endpoints will get
2415 * added to the endpoint list.
2416 */
2417 return;
2418 }
2419
2420 if (tt_info)
2421 tt_info->active_eps += 1;
2422 /* Insert the endpoint into the list, largest max packet size first. */
2423 list_for_each_entry(smaller_ep, &interval_bw->endpoints,
2424 bw_endpoint_list) {
2425 if (ep_bw->max_packet_size >=
2426 smaller_ep->bw_info.max_packet_size) {
2427 /* Add the new ep before the smaller endpoint */
2428 list_add_tail(&virt_ep->bw_endpoint_list,
2429 &smaller_ep->bw_endpoint_list);
2430 return;
2431 }
2432 }
2433 /* Add the new endpoint at the end of the list. */
2434 list_add_tail(&virt_ep->bw_endpoint_list,
2435 &interval_bw->endpoints);
2436}
2437
2438void xhci_update_tt_active_eps(struct xhci_hcd *xhci,
2439 struct xhci_virt_device *virt_dev,
2440 int old_active_eps)
2441{
2442 struct xhci_root_port_bw_info *rh_bw_info;
2443 if (!virt_dev->tt_info)
2444 return;
2445
2446 rh_bw_info = &xhci->rh_bw[virt_dev->real_port - 1];
2447 if (old_active_eps == 0 &&
2448 virt_dev->tt_info->active_eps != 0) {
2449 rh_bw_info->num_active_tts += 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002450 rh_bw_info->bw_table.bw_used += TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002451 } else if (old_active_eps != 0 &&
2452 virt_dev->tt_info->active_eps == 0) {
2453 rh_bw_info->num_active_tts -= 1;
Sarah Sharpc29eea62011-09-02 11:05:52 -07002454 rh_bw_info->bw_table.bw_used -= TT_HS_OVERHEAD;
Sarah Sharp2e279802011-09-02 11:05:50 -07002455 }
2456}
2457
2458static int xhci_reserve_bandwidth(struct xhci_hcd *xhci,
2459 struct xhci_virt_device *virt_dev,
2460 struct xhci_container_ctx *in_ctx)
2461{
2462 struct xhci_bw_info ep_bw_info[31];
2463 int i;
2464 struct xhci_input_control_ctx *ctrl_ctx;
2465 int old_active_eps = 0;
2466
Sarah Sharp2e279802011-09-02 11:05:50 -07002467 if (virt_dev->tt_info)
2468 old_active_eps = virt_dev->tt_info->active_eps;
2469
2470 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002471 if (!ctrl_ctx) {
2472 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2473 __func__);
2474 return -ENOMEM;
2475 }
Sarah Sharp2e279802011-09-02 11:05:50 -07002476
2477 for (i = 0; i < 31; i++) {
2478 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2479 continue;
2480
2481 /* Make a copy of the BW info in case we need to revert this */
2482 memcpy(&ep_bw_info[i], &virt_dev->eps[i].bw_info,
2483 sizeof(ep_bw_info[i]));
2484 /* Drop the endpoint from the interval table if the endpoint is
2485 * being dropped or changed.
2486 */
2487 if (EP_IS_DROPPED(ctrl_ctx, i))
2488 xhci_drop_ep_from_interval_table(xhci,
2489 &virt_dev->eps[i].bw_info,
2490 virt_dev->bw_table,
2491 virt_dev->udev,
2492 &virt_dev->eps[i],
2493 virt_dev->tt_info);
2494 }
2495 /* Overwrite the information stored in the endpoints' bw_info */
2496 xhci_update_bw_info(xhci, virt_dev->in_ctx, ctrl_ctx, virt_dev);
2497 for (i = 0; i < 31; i++) {
2498 /* Add any changed or added endpoints to the interval table */
2499 if (EP_IS_ADDED(ctrl_ctx, i))
2500 xhci_add_ep_to_interval_table(xhci,
2501 &virt_dev->eps[i].bw_info,
2502 virt_dev->bw_table,
2503 virt_dev->udev,
2504 &virt_dev->eps[i],
2505 virt_dev->tt_info);
2506 }
2507
2508 if (!xhci_check_bw_table(xhci, virt_dev, old_active_eps)) {
2509 /* Ok, this fits in the bandwidth we have.
2510 * Update the number of active TTs.
2511 */
2512 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
2513 return 0;
2514 }
2515
2516 /* We don't have enough bandwidth for this, revert the stored info. */
2517 for (i = 0; i < 31; i++) {
2518 if (!EP_IS_ADDED(ctrl_ctx, i) && !EP_IS_DROPPED(ctrl_ctx, i))
2519 continue;
2520
2521 /* Drop the new copies of any added or changed endpoints from
2522 * the interval table.
2523 */
2524 if (EP_IS_ADDED(ctrl_ctx, i)) {
2525 xhci_drop_ep_from_interval_table(xhci,
2526 &virt_dev->eps[i].bw_info,
2527 virt_dev->bw_table,
2528 virt_dev->udev,
2529 &virt_dev->eps[i],
2530 virt_dev->tt_info);
2531 }
2532 /* Revert the endpoint back to its old information */
2533 memcpy(&virt_dev->eps[i].bw_info, &ep_bw_info[i],
2534 sizeof(ep_bw_info[i]));
2535 /* Add any changed or dropped endpoints back into the table */
2536 if (EP_IS_DROPPED(ctrl_ctx, i))
2537 xhci_add_ep_to_interval_table(xhci,
2538 &virt_dev->eps[i].bw_info,
2539 virt_dev->bw_table,
2540 virt_dev->udev,
2541 &virt_dev->eps[i],
2542 virt_dev->tt_info);
2543 }
2544 return -ENOMEM;
2545}
2546
2547
Sarah Sharpf2217e82009-08-07 14:04:43 -07002548/* Issue a configure endpoint command or evaluate context command
2549 * and wait for it to finish.
2550 */
2551static int xhci_configure_endpoint(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002552 struct usb_device *udev,
2553 struct xhci_command *command,
2554 bool ctx_change, bool must_succeed)
Sarah Sharpf2217e82009-08-07 14:04:43 -07002555{
2556 int ret;
2557 int timeleft;
2558 unsigned long flags;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002559 struct xhci_container_ctx *in_ctx;
Sarah Sharp92f8e762013-04-23 17:11:14 -07002560 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002561 struct completion *cmd_completion;
Matt Evans28ccd292011-03-29 13:40:46 +11002562 u32 *cmd_status;
Sarah Sharp913a8a32009-09-04 10:53:13 -07002563 struct xhci_virt_device *virt_dev;
Elric Fu6e4468b2012-06-27 16:31:52 +08002564 union xhci_trb *cmd_trb;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002565
2566 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002567 virt_dev = xhci->devs[udev->slot_id];
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002568
Sarah Sharp750645f2011-09-02 11:05:43 -07002569 if (command)
2570 in_ctx = command->in_ctx;
2571 else
2572 in_ctx = virt_dev->in_ctx;
Sarah Sharp92f8e762013-04-23 17:11:14 -07002573 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
2574 if (!ctrl_ctx) {
Emil Goode1f215692013-06-25 15:49:36 -07002575 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002576 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2577 __func__);
2578 return -ENOMEM;
2579 }
Sarah Sharp750645f2011-09-02 11:05:43 -07002580
2581 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK) &&
Sarah Sharp92f8e762013-04-23 17:11:14 -07002582 xhci_reserve_host_resources(xhci, ctrl_ctx)) {
Sarah Sharp750645f2011-09-02 11:05:43 -07002583 spin_unlock_irqrestore(&xhci->lock, flags);
2584 xhci_warn(xhci, "Not enough host resources, "
2585 "active endpoint contexts = %u\n",
2586 xhci->num_active_eps);
2587 return -ENOMEM;
2588 }
Sarah Sharp2e279802011-09-02 11:05:50 -07002589 if ((xhci->quirks & XHCI_SW_BW_CHECKING) &&
2590 xhci_reserve_bandwidth(xhci, virt_dev, in_ctx)) {
2591 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
Sarah Sharp92f8e762013-04-23 17:11:14 -07002592 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharp2e279802011-09-02 11:05:50 -07002593 spin_unlock_irqrestore(&xhci->lock, flags);
2594 xhci_warn(xhci, "Not enough bandwidth\n");
2595 return -ENOMEM;
2596 }
Sarah Sharp750645f2011-09-02 11:05:43 -07002597
2598 if (command) {
Sarah Sharp913a8a32009-09-04 10:53:13 -07002599 cmd_completion = command->completion;
2600 cmd_status = &command->status;
Mathias Nymanec7e43e2013-08-30 18:25:49 +03002601 command->command_trb = xhci_find_next_enqueue(xhci->cmd_ring);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002602 list_add_tail(&command->cmd_list, &virt_dev->cmd_list);
2603 } else {
Sarah Sharp913a8a32009-09-04 10:53:13 -07002604 cmd_completion = &virt_dev->cmd_completion;
2605 cmd_status = &virt_dev->cmd_status;
2606 }
Andiry Xu1d680642010-03-12 17:10:04 +08002607 init_completion(cmd_completion);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002608
Mathias Nymanec7e43e2013-08-30 18:25:49 +03002609 cmd_trb = xhci_find_next_enqueue(xhci->cmd_ring);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002610 if (!ctx_change)
Sarah Sharp913a8a32009-09-04 10:53:13 -07002611 ret = xhci_queue_configure_endpoint(xhci, in_ctx->dma,
2612 udev->slot_id, must_succeed);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002613 else
Sarah Sharp913a8a32009-09-04 10:53:13 -07002614 ret = xhci_queue_evaluate_context(xhci, in_ctx->dma,
Sarah Sharp4b266542012-05-07 15:34:26 -07002615 udev->slot_id, must_succeed);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002616 if (ret < 0) {
Sarah Sharpc01591b2009-12-09 15:58:58 -08002617 if (command)
2618 list_del(&command->cmd_list);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002619 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK))
Sarah Sharp92f8e762013-04-23 17:11:14 -07002620 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002621 spin_unlock_irqrestore(&xhci->lock, flags);
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03002622 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
2623 "FIXME allocate a new ring segment");
Sarah Sharpf2217e82009-08-07 14:04:43 -07002624 return -ENOMEM;
2625 }
2626 xhci_ring_cmd_db(xhci);
2627 spin_unlock_irqrestore(&xhci->lock, flags);
2628
2629 /* Wait for the configure endpoint command to complete */
2630 timeleft = wait_for_completion_interruptible_timeout(
Sarah Sharp913a8a32009-09-04 10:53:13 -07002631 cmd_completion,
Elric Fu6e4468b2012-06-27 16:31:52 +08002632 XHCI_CMD_DEFAULT_TIMEOUT);
Sarah Sharpf2217e82009-08-07 14:04:43 -07002633 if (timeleft <= 0) {
2634 xhci_warn(xhci, "%s while waiting for %s command\n",
2635 timeleft == 0 ? "Timeout" : "Signal",
2636 ctx_change == 0 ?
2637 "configure endpoint" :
2638 "evaluate context");
Elric Fu6e4468b2012-06-27 16:31:52 +08002639 /* cancel the configure endpoint command */
2640 ret = xhci_cancel_cmd(xhci, command, cmd_trb);
2641 if (ret < 0)
2642 return ret;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002643 return -ETIME;
2644 }
2645
2646 if (!ctx_change)
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002647 ret = xhci_configure_endpoint_result(xhci, udev, cmd_status);
2648 else
2649 ret = xhci_evaluate_context_result(xhci, udev, cmd_status);
2650
2651 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
2652 spin_lock_irqsave(&xhci->lock, flags);
2653 /* If the command failed, remove the reserved resources.
2654 * Otherwise, clean up the estimate to include dropped eps.
2655 */
2656 if (ret)
Sarah Sharp92f8e762013-04-23 17:11:14 -07002657 xhci_free_host_resources(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002658 else
Sarah Sharp92f8e762013-04-23 17:11:14 -07002659 xhci_finish_resource_reservation(xhci, ctrl_ctx);
Sarah Sharp2cf95c12011-05-11 16:14:58 -07002660 spin_unlock_irqrestore(&xhci->lock, flags);
2661 }
2662 return ret;
Sarah Sharpf2217e82009-08-07 14:04:43 -07002663}
2664
Sarah Sharpf88ba782009-05-14 11:44:22 -07002665/* Called after one or more calls to xhci_add_endpoint() or
2666 * xhci_drop_endpoint(). If this call fails, the USB core is expected
2667 * to call xhci_reset_bandwidth().
2668 *
2669 * Since we are in the middle of changing either configuration or
2670 * installing a new alt setting, the USB core won't allow URBs to be
2671 * enqueued for any endpoint on the old config or interface. Nothing
2672 * else should be touching the xhci->devs[slot_id] structure, so we
2673 * don't need to take the xhci->lock for manipulating that.
2674 */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002675int xhci_check_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
2676{
2677 int i;
2678 int ret = 0;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002679 struct xhci_hcd *xhci;
2680 struct xhci_virt_device *virt_dev;
John Yound115b042009-07-27 12:05:15 -07002681 struct xhci_input_control_ctx *ctrl_ctx;
2682 struct xhci_slot_ctx *slot_ctx;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002683
Andiry Xu64927732010-10-14 07:22:45 -07002684 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002685 if (ret <= 0)
2686 return ret;
2687 xhci = hcd_to_xhci(hcd);
Sarah Sharpfe6c6c12011-05-23 16:41:17 -07002688 if (xhci->xhc_state & XHCI_STATE_DYING)
2689 return -ENODEV;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002690
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002691 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002692 virt_dev = xhci->devs[udev->slot_id];
2693
2694 /* See section 4.6.6 - A0 = 1; A1 = D0 = D1 = 0 */
John Yound115b042009-07-27 12:05:15 -07002695 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07002696 if (!ctrl_ctx) {
2697 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2698 __func__);
2699 return -ENOMEM;
2700 }
Matt Evans28ccd292011-03-29 13:40:46 +11002701 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
2702 ctrl_ctx->add_flags &= cpu_to_le32(~EP0_FLAG);
2703 ctrl_ctx->drop_flags &= cpu_to_le32(~(SLOT_FLAG | EP0_FLAG));
Sarah Sharp2dc37532011-09-02 11:05:40 -07002704
2705 /* Don't issue the command if there's no endpoints to update. */
2706 if (ctrl_ctx->add_flags == cpu_to_le32(SLOT_FLAG) &&
2707 ctrl_ctx->drop_flags == 0)
2708 return 0;
2709
Sarah Sharpf94e01862009-04-27 19:58:38 -07002710 xhci_dbg(xhci, "New Input Control Context:\n");
John Yound115b042009-07-27 12:05:15 -07002711 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
2712 xhci_dbg_ctx(xhci, virt_dev->in_ctx,
Matt Evans28ccd292011-03-29 13:40:46 +11002713 LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info)));
Sarah Sharpf94e01862009-04-27 19:58:38 -07002714
Sarah Sharp913a8a32009-09-04 10:53:13 -07002715 ret = xhci_configure_endpoint(xhci, udev, NULL,
2716 false, false);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002717 if (ret) {
2718 /* Callee should call reset_bandwidth() */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002719 return ret;
2720 }
2721
2722 xhci_dbg(xhci, "Output context after successful config ep cmd:\n");
John Yound115b042009-07-27 12:05:15 -07002723 xhci_dbg_ctx(xhci, virt_dev->out_ctx,
Matt Evans28ccd292011-03-29 13:40:46 +11002724 LAST_CTX_TO_EP_NUM(le32_to_cpu(slot_ctx->dev_info)));
Sarah Sharpf94e01862009-04-27 19:58:38 -07002725
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002726 /* Free any rings that were dropped, but not changed. */
2727 for (i = 1; i < 31; ++i) {
Matt Evans4819fef2011-06-01 13:01:07 +10002728 if ((le32_to_cpu(ctrl_ctx->drop_flags) & (1 << (i + 1))) &&
2729 !(le32_to_cpu(ctrl_ctx->add_flags) & (1 << (i + 1))))
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002730 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
2731 }
John Yound115b042009-07-27 12:05:15 -07002732 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharp834cb0f2011-05-12 18:06:37 -07002733 /*
2734 * Install any rings for completely new endpoints or changed endpoints,
2735 * and free or cache any old rings from changed endpoints.
2736 */
Sarah Sharpf94e01862009-04-27 19:58:38 -07002737 for (i = 1; i < 31; ++i) {
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002738 if (!virt_dev->eps[i].new_ring)
2739 continue;
2740 /* Only cache or free the old ring if it exists.
2741 * It may not if this is the first add of an endpoint.
2742 */
2743 if (virt_dev->eps[i].ring) {
Sarah Sharp412566b2009-12-09 15:59:01 -08002744 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002745 }
Sarah Sharp74f9fe22009-12-03 09:44:29 -08002746 virt_dev->eps[i].ring = virt_dev->eps[i].new_ring;
2747 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002748 }
2749
Sarah Sharpf94e01862009-04-27 19:58:38 -07002750 return ret;
2751}
2752
2753void xhci_reset_bandwidth(struct usb_hcd *hcd, struct usb_device *udev)
2754{
Sarah Sharpf94e01862009-04-27 19:58:38 -07002755 struct xhci_hcd *xhci;
2756 struct xhci_virt_device *virt_dev;
2757 int i, ret;
2758
Andiry Xu64927732010-10-14 07:22:45 -07002759 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002760 if (ret <= 0)
2761 return;
2762 xhci = hcd_to_xhci(hcd);
2763
Greg Kroah-Hartman700e2052009-04-29 19:14:08 -07002764 xhci_dbg(xhci, "%s called for udev %p\n", __func__, udev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002765 virt_dev = xhci->devs[udev->slot_id];
2766 /* Free any rings allocated for added endpoints */
2767 for (i = 0; i < 31; ++i) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002768 if (virt_dev->eps[i].new_ring) {
2769 xhci_ring_free(xhci, virt_dev->eps[i].new_ring);
2770 virt_dev->eps[i].new_ring = NULL;
Sarah Sharpf94e01862009-04-27 19:58:38 -07002771 }
2772 }
John Yound115b042009-07-27 12:05:15 -07002773 xhci_zero_in_ctx(xhci, virt_dev);
Sarah Sharpf94e01862009-04-27 19:58:38 -07002774}
2775
Sarah Sharp5270b952009-09-04 10:53:11 -07002776static void xhci_setup_input_ctx_for_config_ep(struct xhci_hcd *xhci,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002777 struct xhci_container_ctx *in_ctx,
2778 struct xhci_container_ctx *out_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07002779 struct xhci_input_control_ctx *ctrl_ctx,
Sarah Sharp913a8a32009-09-04 10:53:13 -07002780 u32 add_flags, u32 drop_flags)
Sarah Sharp5270b952009-09-04 10:53:11 -07002781{
Matt Evans28ccd292011-03-29 13:40:46 +11002782 ctrl_ctx->add_flags = cpu_to_le32(add_flags);
2783 ctrl_ctx->drop_flags = cpu_to_le32(drop_flags);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002784 xhci_slot_copy(xhci, in_ctx, out_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11002785 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharp5270b952009-09-04 10:53:11 -07002786
Sarah Sharp913a8a32009-09-04 10:53:13 -07002787 xhci_dbg(xhci, "Input Context:\n");
2788 xhci_dbg_ctx(xhci, in_ctx, xhci_last_valid_endpoint(add_flags));
Sarah Sharp5270b952009-09-04 10:53:11 -07002789}
2790
Dmitry Torokhov8212a492011-02-08 13:55:59 -08002791static void xhci_setup_input_ctx_for_quirk(struct xhci_hcd *xhci,
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002792 unsigned int slot_id, unsigned int ep_index,
2793 struct xhci_dequeue_state *deq_state)
2794{
Sarah Sharp92f8e762013-04-23 17:11:14 -07002795 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002796 struct xhci_container_ctx *in_ctx;
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002797 struct xhci_ep_ctx *ep_ctx;
2798 u32 added_ctxs;
2799 dma_addr_t addr;
2800
Sarah Sharp92f8e762013-04-23 17:11:14 -07002801 in_ctx = xhci->devs[slot_id]->in_ctx;
2802 ctrl_ctx = xhci_get_input_control_ctx(xhci, in_ctx);
2803 if (!ctrl_ctx) {
2804 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
2805 __func__);
2806 return;
2807 }
2808
Sarah Sharp913a8a32009-09-04 10:53:13 -07002809 xhci_endpoint_copy(xhci, xhci->devs[slot_id]->in_ctx,
2810 xhci->devs[slot_id]->out_ctx, ep_index);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002811 ep_ctx = xhci_get_ep_ctx(xhci, in_ctx, ep_index);
2812 addr = xhci_trb_virt_to_dma(deq_state->new_deq_seg,
2813 deq_state->new_deq_ptr);
2814 if (addr == 0) {
2815 xhci_warn(xhci, "WARN Cannot submit config ep after "
2816 "reset ep command\n");
2817 xhci_warn(xhci, "WARN deq seg = %p, deq ptr = %p\n",
2818 deq_state->new_deq_seg,
2819 deq_state->new_deq_ptr);
2820 return;
2821 }
Matt Evans28ccd292011-03-29 13:40:46 +11002822 ep_ctx->deq = cpu_to_le64(addr | deq_state->new_cycle_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002823
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002824 added_ctxs = xhci_get_endpoint_flag_from_index(ep_index);
Sarah Sharp913a8a32009-09-04 10:53:13 -07002825 xhci_setup_input_ctx_for_config_ep(xhci, xhci->devs[slot_id]->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07002826 xhci->devs[slot_id]->out_ctx, ctrl_ctx,
2827 added_ctxs, added_ctxs);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002828}
2829
Sarah Sharp82d10092009-08-07 14:04:52 -07002830void xhci_cleanup_stalled_ring(struct xhci_hcd *xhci,
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002831 struct usb_device *udev, unsigned int ep_index)
Sarah Sharp82d10092009-08-07 14:04:52 -07002832{
2833 struct xhci_dequeue_state deq_state;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002834 struct xhci_virt_ep *ep;
Sarah Sharp82d10092009-08-07 14:04:52 -07002835
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002836 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2837 "Cleaning up stalled endpoint ring");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002838 ep = &xhci->devs[udev->slot_id]->eps[ep_index];
Sarah Sharp82d10092009-08-07 14:04:52 -07002839 /* We need to move the HW's dequeue pointer past this TD,
2840 * or it will attempt to resend it on the next doorbell ring.
2841 */
2842 xhci_find_new_dequeue_state(xhci, udev->slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002843 ep_index, ep->stopped_stream, ep->stopped_td,
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002844 &deq_state);
Sarah Sharp82d10092009-08-07 14:04:52 -07002845
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002846 /* HW with the reset endpoint quirk will use the saved dequeue state to
2847 * issue a configure endpoint command later.
2848 */
2849 if (!(xhci->quirks & XHCI_RESET_EP_QUIRK)) {
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002850 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2851 "Queueing new dequeue state");
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002852 xhci_queue_new_dequeue_state(xhci, udev->slot_id,
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002853 ep_index, ep->stopped_stream, &deq_state);
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002854 } else {
2855 /* Better hope no one uses the input context between now and the
2856 * reset endpoint completion!
Sarah Sharpe9df17e2010-04-02 15:34:43 -07002857 * XXX: No idea how this hardware will react when stream rings
2858 * are enabled.
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002859 */
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03002860 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
2861 "Setting up input context for "
2862 "configure endpoint command");
Sarah Sharpac9d8fe2009-08-07 14:04:55 -07002863 xhci_setup_input_ctx_for_quirk(xhci, udev->slot_id,
2864 ep_index, &deq_state);
2865 }
Sarah Sharp82d10092009-08-07 14:04:52 -07002866}
2867
Sarah Sharpa1587d92009-07-27 12:03:15 -07002868/* Deal with stalled endpoints. The core should have sent the control message
2869 * to clear the halt condition. However, we need to make the xHCI hardware
2870 * reset its sequence number, since a device will expect a sequence number of
2871 * zero after the halt condition is cleared.
2872 * Context: in_interrupt
2873 */
2874void xhci_endpoint_reset(struct usb_hcd *hcd,
2875 struct usb_host_endpoint *ep)
2876{
2877 struct xhci_hcd *xhci;
2878 struct usb_device *udev;
2879 unsigned int ep_index;
2880 unsigned long flags;
2881 int ret;
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002882 struct xhci_virt_ep *virt_ep;
Sarah Sharpa1587d92009-07-27 12:03:15 -07002883
2884 xhci = hcd_to_xhci(hcd);
2885 udev = (struct usb_device *) ep->hcpriv;
2886 /* Called with a root hub endpoint (or an endpoint that wasn't added
2887 * with xhci_add_endpoint()
2888 */
2889 if (!ep->hcpriv)
2890 return;
2891 ep_index = xhci_get_endpoint_index(&ep->desc);
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002892 virt_ep = &xhci->devs[udev->slot_id]->eps[ep_index];
2893 if (!virt_ep->stopped_td) {
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002894 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2895 "Endpoint 0x%x not halted, refusing to reset.",
2896 ep->desc.bEndpointAddress);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002897 return;
2898 }
Sarah Sharp82d10092009-08-07 14:04:52 -07002899 if (usb_endpoint_xfer_control(&ep->desc)) {
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002900 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2901 "Control endpoint stall already handled.");
Sarah Sharp82d10092009-08-07 14:04:52 -07002902 return;
2903 }
Sarah Sharpa1587d92009-07-27 12:03:15 -07002904
Xenia Ragiadakoua0254322013-08-06 07:52:46 +03002905 xhci_dbg_trace(xhci, trace_xhci_dbg_reset_ep,
2906 "Queueing reset endpoint command");
Sarah Sharpa1587d92009-07-27 12:03:15 -07002907 spin_lock_irqsave(&xhci->lock, flags);
2908 ret = xhci_queue_reset_ep(xhci, udev->slot_id, ep_index);
Sarah Sharpc92bcfa2009-07-27 12:05:21 -07002909 /*
2910 * Can't change the ring dequeue pointer until it's transitioned to the
2911 * stopped state, which is only upon a successful reset endpoint
2912 * command. Better hope that last command worked!
2913 */
Sarah Sharpa1587d92009-07-27 12:03:15 -07002914 if (!ret) {
Sarah Sharp63a0d9a2009-09-04 10:53:09 -07002915 xhci_cleanup_stalled_ring(xhci, udev, ep_index);
2916 kfree(virt_ep->stopped_td);
Sarah Sharpa1587d92009-07-27 12:03:15 -07002917 xhci_ring_cmd_db(xhci);
2918 }
Sarah Sharp1624ae12010-05-06 13:40:08 -07002919 virt_ep->stopped_td = NULL;
2920 virt_ep->stopped_trb = NULL;
Sarah Sharp5e5cf6f2010-05-06 13:40:18 -07002921 virt_ep->stopped_stream = 0;
Sarah Sharpa1587d92009-07-27 12:03:15 -07002922 spin_unlock_irqrestore(&xhci->lock, flags);
2923
2924 if (ret)
2925 xhci_warn(xhci, "FIXME allocate a new ring segment\n");
2926}
2927
Sarah Sharp8df75f42010-04-02 15:34:16 -07002928static int xhci_check_streams_endpoint(struct xhci_hcd *xhci,
2929 struct usb_device *udev, struct usb_host_endpoint *ep,
2930 unsigned int slot_id)
2931{
2932 int ret;
2933 unsigned int ep_index;
2934 unsigned int ep_state;
2935
2936 if (!ep)
2937 return -EINVAL;
Andiry Xu64927732010-10-14 07:22:45 -07002938 ret = xhci_check_args(xhci_to_hcd(xhci), udev, ep, 1, true, __func__);
Sarah Sharp8df75f42010-04-02 15:34:16 -07002939 if (ret <= 0)
2940 return -EINVAL;
Alan Stern842f1692010-04-30 12:44:46 -04002941 if (ep->ss_ep_comp.bmAttributes == 0) {
Sarah Sharp8df75f42010-04-02 15:34:16 -07002942 xhci_warn(xhci, "WARN: SuperSpeed Endpoint Companion"
2943 " descriptor for ep 0x%x does not support streams\n",
2944 ep->desc.bEndpointAddress);
2945 return -EINVAL;
2946 }
2947
2948 ep_index = xhci_get_endpoint_index(&ep->desc);
2949 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
2950 if (ep_state & EP_HAS_STREAMS ||
2951 ep_state & EP_GETTING_STREAMS) {
2952 xhci_warn(xhci, "WARN: SuperSpeed bulk endpoint 0x%x "
2953 "already has streams set up.\n",
2954 ep->desc.bEndpointAddress);
2955 xhci_warn(xhci, "Send email to xHCI maintainer and ask for "
2956 "dynamic stream context array reallocation.\n");
2957 return -EINVAL;
2958 }
2959 if (!list_empty(&xhci->devs[slot_id]->eps[ep_index].ring->td_list)) {
2960 xhci_warn(xhci, "Cannot setup streams for SuperSpeed bulk "
2961 "endpoint 0x%x; URBs are pending.\n",
2962 ep->desc.bEndpointAddress);
2963 return -EINVAL;
2964 }
2965 return 0;
2966}
2967
2968static void xhci_calculate_streams_entries(struct xhci_hcd *xhci,
2969 unsigned int *num_streams, unsigned int *num_stream_ctxs)
2970{
2971 unsigned int max_streams;
2972
2973 /* The stream context array size must be a power of two */
2974 *num_stream_ctxs = roundup_pow_of_two(*num_streams);
2975 /*
2976 * Find out how many primary stream array entries the host controller
2977 * supports. Later we may use secondary stream arrays (similar to 2nd
2978 * level page entries), but that's an optional feature for xHCI host
2979 * controllers. xHCs must support at least 4 stream IDs.
2980 */
2981 max_streams = HCC_MAX_PSA(xhci->hcc_params);
2982 if (*num_stream_ctxs > max_streams) {
2983 xhci_dbg(xhci, "xHCI HW only supports %u stream ctx entries.\n",
2984 max_streams);
2985 *num_stream_ctxs = max_streams;
2986 *num_streams = max_streams;
2987 }
2988}
2989
2990/* Returns an error code if one of the endpoint already has streams.
2991 * This does not change any data structures, it only checks and gathers
2992 * information.
2993 */
2994static int xhci_calculate_streams_and_bitmask(struct xhci_hcd *xhci,
2995 struct usb_device *udev,
2996 struct usb_host_endpoint **eps, unsigned int num_eps,
2997 unsigned int *num_streams, u32 *changed_ep_bitmask)
2998{
Sarah Sharp8df75f42010-04-02 15:34:16 -07002999 unsigned int max_streams;
3000 unsigned int endpoint_flag;
3001 int i;
3002 int ret;
3003
3004 for (i = 0; i < num_eps; i++) {
3005 ret = xhci_check_streams_endpoint(xhci, udev,
3006 eps[i], udev->slot_id);
3007 if (ret < 0)
3008 return ret;
3009
Felipe Balbi18b7ede2012-01-02 13:35:41 +02003010 max_streams = usb_ss_max_streams(&eps[i]->ss_ep_comp);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003011 if (max_streams < (*num_streams - 1)) {
3012 xhci_dbg(xhci, "Ep 0x%x only supports %u stream IDs.\n",
3013 eps[i]->desc.bEndpointAddress,
3014 max_streams);
3015 *num_streams = max_streams+1;
3016 }
3017
3018 endpoint_flag = xhci_get_endpoint_flag(&eps[i]->desc);
3019 if (*changed_ep_bitmask & endpoint_flag)
3020 return -EINVAL;
3021 *changed_ep_bitmask |= endpoint_flag;
3022 }
3023 return 0;
3024}
3025
3026static u32 xhci_calculate_no_streams_bitmask(struct xhci_hcd *xhci,
3027 struct usb_device *udev,
3028 struct usb_host_endpoint **eps, unsigned int num_eps)
3029{
3030 u32 changed_ep_bitmask = 0;
3031 unsigned int slot_id;
3032 unsigned int ep_index;
3033 unsigned int ep_state;
3034 int i;
3035
3036 slot_id = udev->slot_id;
3037 if (!xhci->devs[slot_id])
3038 return 0;
3039
3040 for (i = 0; i < num_eps; i++) {
3041 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3042 ep_state = xhci->devs[slot_id]->eps[ep_index].ep_state;
3043 /* Are streams already being freed for the endpoint? */
3044 if (ep_state & EP_GETTING_NO_STREAMS) {
3045 xhci_warn(xhci, "WARN Can't disable streams for "
Joe Perches03e64e92013-07-16 19:25:59 -07003046 "endpoint 0x%x, "
3047 "streams are being disabled already\n",
Sarah Sharp8df75f42010-04-02 15:34:16 -07003048 eps[i]->desc.bEndpointAddress);
3049 return 0;
3050 }
3051 /* Are there actually any streams to free? */
3052 if (!(ep_state & EP_HAS_STREAMS) &&
3053 !(ep_state & EP_GETTING_STREAMS)) {
3054 xhci_warn(xhci, "WARN Can't disable streams for "
Joe Perches03e64e92013-07-16 19:25:59 -07003055 "endpoint 0x%x, "
3056 "streams are already disabled!\n",
Sarah Sharp8df75f42010-04-02 15:34:16 -07003057 eps[i]->desc.bEndpointAddress);
3058 xhci_warn(xhci, "WARN xhci_free_streams() called "
3059 "with non-streams endpoint\n");
3060 return 0;
3061 }
3062 changed_ep_bitmask |= xhci_get_endpoint_flag(&eps[i]->desc);
3063 }
3064 return changed_ep_bitmask;
3065}
3066
3067/*
3068 * The USB device drivers use this function (though the HCD interface in USB
3069 * core) to prepare a set of bulk endpoints to use streams. Streams are used to
3070 * coordinate mass storage command queueing across multiple endpoints (basically
3071 * a stream ID == a task ID).
3072 *
3073 * Setting up streams involves allocating the same size stream context array
3074 * for each endpoint and issuing a configure endpoint command for all endpoints.
3075 *
3076 * Don't allow the call to succeed if one endpoint only supports one stream
3077 * (which means it doesn't support streams at all).
3078 *
3079 * Drivers may get less stream IDs than they asked for, if the host controller
3080 * hardware or endpoints claim they can't support the number of requested
3081 * stream IDs.
3082 */
3083int xhci_alloc_streams(struct usb_hcd *hcd, struct usb_device *udev,
3084 struct usb_host_endpoint **eps, unsigned int num_eps,
3085 unsigned int num_streams, gfp_t mem_flags)
3086{
3087 int i, ret;
3088 struct xhci_hcd *xhci;
3089 struct xhci_virt_device *vdev;
3090 struct xhci_command *config_cmd;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003091 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003092 unsigned int ep_index;
3093 unsigned int num_stream_ctxs;
3094 unsigned long flags;
3095 u32 changed_ep_bitmask = 0;
3096
3097 if (!eps)
3098 return -EINVAL;
3099
3100 /* Add one to the number of streams requested to account for
3101 * stream 0 that is reserved for xHCI usage.
3102 */
3103 num_streams += 1;
3104 xhci = hcd_to_xhci(hcd);
3105 xhci_dbg(xhci, "Driver wants %u stream IDs (including stream 0).\n",
3106 num_streams);
3107
3108 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
3109 if (!config_cmd) {
3110 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
3111 return -ENOMEM;
3112 }
Sarah Sharp92f8e762013-04-23 17:11:14 -07003113 ctrl_ctx = xhci_get_input_control_ctx(xhci, config_cmd->in_ctx);
3114 if (!ctrl_ctx) {
3115 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3116 __func__);
3117 xhci_free_command(xhci, config_cmd);
3118 return -ENOMEM;
3119 }
Sarah Sharp8df75f42010-04-02 15:34:16 -07003120
3121 /* Check to make sure all endpoints are not already configured for
3122 * streams. While we're at it, find the maximum number of streams that
3123 * all the endpoints will support and check for duplicate endpoints.
3124 */
3125 spin_lock_irqsave(&xhci->lock, flags);
3126 ret = xhci_calculate_streams_and_bitmask(xhci, udev, eps,
3127 num_eps, &num_streams, &changed_ep_bitmask);
3128 if (ret < 0) {
3129 xhci_free_command(xhci, config_cmd);
3130 spin_unlock_irqrestore(&xhci->lock, flags);
3131 return ret;
3132 }
3133 if (num_streams <= 1) {
3134 xhci_warn(xhci, "WARN: endpoints can't handle "
3135 "more than one stream.\n");
3136 xhci_free_command(xhci, config_cmd);
3137 spin_unlock_irqrestore(&xhci->lock, flags);
3138 return -EINVAL;
3139 }
3140 vdev = xhci->devs[udev->slot_id];
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003141 /* Mark each endpoint as being in transition, so
Sarah Sharp8df75f42010-04-02 15:34:16 -07003142 * xhci_urb_enqueue() will reject all URBs.
3143 */
3144 for (i = 0; i < num_eps; i++) {
3145 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3146 vdev->eps[ep_index].ep_state |= EP_GETTING_STREAMS;
3147 }
3148 spin_unlock_irqrestore(&xhci->lock, flags);
3149
3150 /* Setup internal data structures and allocate HW data structures for
3151 * streams (but don't install the HW structures in the input context
3152 * until we're sure all memory allocation succeeded).
3153 */
3154 xhci_calculate_streams_entries(xhci, &num_streams, &num_stream_ctxs);
3155 xhci_dbg(xhci, "Need %u stream ctx entries for %u stream IDs.\n",
3156 num_stream_ctxs, num_streams);
3157
3158 for (i = 0; i < num_eps; i++) {
3159 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3160 vdev->eps[ep_index].stream_info = xhci_alloc_stream_info(xhci,
3161 num_stream_ctxs,
3162 num_streams, mem_flags);
3163 if (!vdev->eps[ep_index].stream_info)
3164 goto cleanup;
3165 /* Set maxPstreams in endpoint context and update deq ptr to
3166 * point to stream context array. FIXME
3167 */
3168 }
3169
3170 /* Set up the input context for a configure endpoint command. */
3171 for (i = 0; i < num_eps; i++) {
3172 struct xhci_ep_ctx *ep_ctx;
3173
3174 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3175 ep_ctx = xhci_get_ep_ctx(xhci, config_cmd->in_ctx, ep_index);
3176
3177 xhci_endpoint_copy(xhci, config_cmd->in_ctx,
3178 vdev->out_ctx, ep_index);
3179 xhci_setup_streams_ep_input_ctx(xhci, ep_ctx,
3180 vdev->eps[ep_index].stream_info);
3181 }
3182 /* Tell the HW to drop its old copy of the endpoint context info
3183 * and add the updated copy from the input context.
3184 */
3185 xhci_setup_input_ctx_for_config_ep(xhci, config_cmd->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07003186 vdev->out_ctx, ctrl_ctx,
3187 changed_ep_bitmask, changed_ep_bitmask);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003188
3189 /* Issue and wait for the configure endpoint command */
3190 ret = xhci_configure_endpoint(xhci, udev, config_cmd,
3191 false, false);
3192
3193 /* xHC rejected the configure endpoint command for some reason, so we
3194 * leave the old ring intact and free our internal streams data
3195 * structure.
3196 */
3197 if (ret < 0)
3198 goto cleanup;
3199
3200 spin_lock_irqsave(&xhci->lock, flags);
3201 for (i = 0; i < num_eps; i++) {
3202 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3203 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3204 xhci_dbg(xhci, "Slot %u ep ctx %u now has streams.\n",
3205 udev->slot_id, ep_index);
3206 vdev->eps[ep_index].ep_state |= EP_HAS_STREAMS;
3207 }
3208 xhci_free_command(xhci, config_cmd);
3209 spin_unlock_irqrestore(&xhci->lock, flags);
3210
3211 /* Subtract 1 for stream 0, which drivers can't use */
3212 return num_streams - 1;
3213
3214cleanup:
3215 /* If it didn't work, free the streams! */
3216 for (i = 0; i < num_eps; i++) {
3217 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3218 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003219 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003220 /* FIXME Unset maxPstreams in endpoint context and
3221 * update deq ptr to point to normal string ring.
3222 */
3223 vdev->eps[ep_index].ep_state &= ~EP_GETTING_STREAMS;
3224 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3225 xhci_endpoint_zero(xhci, vdev, eps[i]);
3226 }
3227 xhci_free_command(xhci, config_cmd);
3228 return -ENOMEM;
3229}
3230
3231/* Transition the endpoint from using streams to being a "normal" endpoint
3232 * without streams.
3233 *
3234 * Modify the endpoint context state, submit a configure endpoint command,
3235 * and free all endpoint rings for streams if that completes successfully.
3236 */
3237int xhci_free_streams(struct usb_hcd *hcd, struct usb_device *udev,
3238 struct usb_host_endpoint **eps, unsigned int num_eps,
3239 gfp_t mem_flags)
3240{
3241 int i, ret;
3242 struct xhci_hcd *xhci;
3243 struct xhci_virt_device *vdev;
3244 struct xhci_command *command;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003245 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003246 unsigned int ep_index;
3247 unsigned long flags;
3248 u32 changed_ep_bitmask;
3249
3250 xhci = hcd_to_xhci(hcd);
3251 vdev = xhci->devs[udev->slot_id];
3252
3253 /* Set up a configure endpoint command to remove the streams rings */
3254 spin_lock_irqsave(&xhci->lock, flags);
3255 changed_ep_bitmask = xhci_calculate_no_streams_bitmask(xhci,
3256 udev, eps, num_eps);
3257 if (changed_ep_bitmask == 0) {
3258 spin_unlock_irqrestore(&xhci->lock, flags);
3259 return -EINVAL;
3260 }
3261
3262 /* Use the xhci_command structure from the first endpoint. We may have
3263 * allocated too many, but the driver may call xhci_free_streams() for
3264 * each endpoint it grouped into one call to xhci_alloc_streams().
3265 */
3266 ep_index = xhci_get_endpoint_index(&eps[0]->desc);
3267 command = vdev->eps[ep_index].stream_info->free_streams_command;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003268 ctrl_ctx = xhci_get_input_control_ctx(xhci, command->in_ctx);
3269 if (!ctrl_ctx) {
Emil Goode1f215692013-06-25 15:49:36 -07003270 spin_unlock_irqrestore(&xhci->lock, flags);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003271 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3272 __func__);
3273 return -EINVAL;
3274 }
3275
Sarah Sharp8df75f42010-04-02 15:34:16 -07003276 for (i = 0; i < num_eps; i++) {
3277 struct xhci_ep_ctx *ep_ctx;
3278
3279 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3280 ep_ctx = xhci_get_ep_ctx(xhci, command->in_ctx, ep_index);
3281 xhci->devs[udev->slot_id]->eps[ep_index].ep_state |=
3282 EP_GETTING_NO_STREAMS;
3283
3284 xhci_endpoint_copy(xhci, command->in_ctx,
3285 vdev->out_ctx, ep_index);
3286 xhci_setup_no_streams_ep_input_ctx(xhci, ep_ctx,
3287 &vdev->eps[ep_index]);
3288 }
3289 xhci_setup_input_ctx_for_config_ep(xhci, command->in_ctx,
Sarah Sharp92f8e762013-04-23 17:11:14 -07003290 vdev->out_ctx, ctrl_ctx,
3291 changed_ep_bitmask, changed_ep_bitmask);
Sarah Sharp8df75f42010-04-02 15:34:16 -07003292 spin_unlock_irqrestore(&xhci->lock, flags);
3293
3294 /* Issue and wait for the configure endpoint command,
3295 * which must succeed.
3296 */
3297 ret = xhci_configure_endpoint(xhci, udev, command,
3298 false, true);
3299
3300 /* xHC rejected the configure endpoint command for some reason, so we
3301 * leave the streams rings intact.
3302 */
3303 if (ret < 0)
3304 return ret;
3305
3306 spin_lock_irqsave(&xhci->lock, flags);
3307 for (i = 0; i < num_eps; i++) {
3308 ep_index = xhci_get_endpoint_index(&eps[i]->desc);
3309 xhci_free_stream_info(xhci, vdev->eps[ep_index].stream_info);
Sarah Sharp8a007742010-04-30 15:37:56 -07003310 vdev->eps[ep_index].stream_info = NULL;
Sarah Sharp8df75f42010-04-02 15:34:16 -07003311 /* FIXME Unset maxPstreams in endpoint context and
3312 * update deq ptr to point to normal string ring.
3313 */
3314 vdev->eps[ep_index].ep_state &= ~EP_GETTING_NO_STREAMS;
3315 vdev->eps[ep_index].ep_state &= ~EP_HAS_STREAMS;
3316 }
3317 spin_unlock_irqrestore(&xhci->lock, flags);
3318
3319 return 0;
3320}
3321
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003322/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003323 * Deletes endpoint resources for endpoints that were active before a Reset
3324 * Device command, or a Disable Slot command. The Reset Device command leaves
3325 * the control endpoint intact, whereas the Disable Slot command deletes it.
3326 *
3327 * Must be called with xhci->lock held.
3328 */
3329void xhci_free_device_endpoint_resources(struct xhci_hcd *xhci,
3330 struct xhci_virt_device *virt_dev, bool drop_control_ep)
3331{
3332 int i;
3333 unsigned int num_dropped_eps = 0;
3334 unsigned int drop_flags = 0;
3335
3336 for (i = (drop_control_ep ? 0 : 1); i < 31; i++) {
3337 if (virt_dev->eps[i].ring) {
3338 drop_flags |= 1 << i;
3339 num_dropped_eps++;
3340 }
3341 }
3342 xhci->num_active_eps -= num_dropped_eps;
3343 if (num_dropped_eps)
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003344 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3345 "Dropped %u ep ctxs, flags = 0x%x, "
3346 "%u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003347 num_dropped_eps, drop_flags,
3348 xhci->num_active_eps);
3349}
3350
3351/*
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003352 * This submits a Reset Device Command, which will set the device state to 0,
3353 * set the device address to 0, and disable all the endpoints except the default
3354 * control endpoint. The USB core should come back and call
3355 * xhci_address_device(), and then re-set up the configuration. If this is
3356 * called because of a usb_reset_and_verify_device(), then the old alternate
3357 * settings will be re-installed through the normal bandwidth allocation
3358 * functions.
3359 *
3360 * Wait for the Reset Device command to finish. Remove all structures
3361 * associated with the endpoints that were disabled. Clear the input device
3362 * structure? Cache the rings? Reset the control endpoint 0 max packet size?
Andiry Xuf0615c42010-10-14 07:22:48 -07003363 *
3364 * If the virt_dev to be reset does not exist or does not match the udev,
3365 * it means the device is lost, possibly due to the xHC restore error and
3366 * re-initialization during S3/S4. In this case, call xhci_alloc_dev() to
3367 * re-allocate the device.
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003368 */
Andiry Xuf0615c42010-10-14 07:22:48 -07003369int xhci_discover_or_reset_device(struct usb_hcd *hcd, struct usb_device *udev)
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003370{
3371 int ret, i;
3372 unsigned long flags;
3373 struct xhci_hcd *xhci;
3374 unsigned int slot_id;
3375 struct xhci_virt_device *virt_dev;
3376 struct xhci_command *reset_device_cmd;
3377 int timeleft;
3378 int last_freed_endpoint;
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003379 struct xhci_slot_ctx *slot_ctx;
Sarah Sharp2e279802011-09-02 11:05:50 -07003380 int old_active_eps = 0;
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003381
Andiry Xuf0615c42010-10-14 07:22:48 -07003382 ret = xhci_check_args(hcd, udev, NULL, 0, false, __func__);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003383 if (ret <= 0)
3384 return ret;
3385 xhci = hcd_to_xhci(hcd);
3386 slot_id = udev->slot_id;
3387 virt_dev = xhci->devs[slot_id];
Andiry Xuf0615c42010-10-14 07:22:48 -07003388 if (!virt_dev) {
3389 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3390 "not exist. Re-allocate the device\n", slot_id);
3391 ret = xhci_alloc_dev(hcd, udev);
3392 if (ret == 1)
3393 return 0;
3394 else
3395 return -EINVAL;
3396 }
3397
3398 if (virt_dev->udev != udev) {
3399 /* If the virt_dev and the udev does not match, this virt_dev
3400 * may belong to another udev.
3401 * Re-allocate the device.
3402 */
3403 xhci_dbg(xhci, "The device to be reset with slot ID %u does "
3404 "not match the udev. Re-allocate the device\n",
3405 slot_id);
3406 ret = xhci_alloc_dev(hcd, udev);
3407 if (ret == 1)
3408 return 0;
3409 else
3410 return -EINVAL;
3411 }
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003412
Maarten Lankhorst001fd382011-06-01 23:27:50 +02003413 /* If device is not setup, there is no point in resetting it */
3414 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
3415 if (GET_SLOT_STATE(le32_to_cpu(slot_ctx->dev_state)) ==
3416 SLOT_STATE_DISABLED)
3417 return 0;
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);
Mathias Nymanec7e43e2013-08-30 18:25:49 +03003434 reset_device_cmd->command_trb = xhci_find_next_enqueue(xhci->cmd_ring);
Paul Zimmerman7a3783e2010-11-17 16:26:50 -08003435
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003436 list_add_tail(&reset_device_cmd->cmd_list, &virt_dev->cmd_list);
3437 ret = xhci_queue_reset_device(xhci, slot_id);
3438 if (ret) {
3439 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3440 list_del(&reset_device_cmd->cmd_list);
3441 spin_unlock_irqrestore(&xhci->lock, flags);
3442 goto command_cleanup;
3443 }
3444 xhci_ring_cmd_db(xhci);
3445 spin_unlock_irqrestore(&xhci->lock, flags);
3446
3447 /* Wait for the Reset Device command to finish */
3448 timeleft = wait_for_completion_interruptible_timeout(
3449 reset_device_cmd->completion,
xiao jind194c032013-10-11 08:57:03 +08003450 XHCI_CMD_DEFAULT_TIMEOUT);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003451 if (timeleft <= 0) {
3452 xhci_warn(xhci, "%s while waiting for reset device command\n",
3453 timeleft == 0 ? "Timeout" : "Signal");
3454 spin_lock_irqsave(&xhci->lock, flags);
3455 /* The timeout might have raced with the event ring handler, so
3456 * only delete from the list if the item isn't poisoned.
3457 */
3458 if (reset_device_cmd->cmd_list.next != LIST_POISON1)
3459 list_del(&reset_device_cmd->cmd_list);
3460 spin_unlock_irqrestore(&xhci->lock, flags);
3461 ret = -ETIME;
3462 goto command_cleanup;
3463 }
3464
3465 /* The Reset Device command can't fail, according to the 0.95/0.96 spec,
3466 * unless we tried to reset a slot ID that wasn't enabled,
3467 * or the device wasn't in the addressed or configured state.
3468 */
3469 ret = reset_device_cmd->status;
3470 switch (ret) {
3471 case COMP_EBADSLT: /* 0.95 completion code for bad slot ID */
3472 case COMP_CTX_STATE: /* 0.96 completion code for same thing */
Xenia Ragiadakou38a532a2013-07-02 17:49:25 +03003473 xhci_dbg(xhci, "Can't reset device (slot ID %u) in %s state\n",
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003474 slot_id,
3475 xhci_get_slot_state(xhci, virt_dev->out_ctx));
Xenia Ragiadakou38a532a2013-07-02 17:49:25 +03003476 xhci_dbg(xhci, "Not freeing device rings.\n");
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003477 /* Don't treat this as an error. May change my mind later. */
3478 ret = 0;
3479 goto command_cleanup;
3480 case COMP_SUCCESS:
3481 xhci_dbg(xhci, "Successful reset device command.\n");
3482 break;
3483 default:
3484 if (xhci_is_vendor_info_code(xhci, ret))
3485 break;
3486 xhci_warn(xhci, "Unknown completion code %u for "
3487 "reset device command.\n", ret);
3488 ret = -EINVAL;
3489 goto command_cleanup;
3490 }
3491
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003492 /* Free up host controller endpoint resources */
3493 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3494 spin_lock_irqsave(&xhci->lock, flags);
3495 /* Don't delete the default control endpoint resources */
3496 xhci_free_device_endpoint_resources(xhci, virt_dev, false);
3497 spin_unlock_irqrestore(&xhci->lock, flags);
3498 }
3499
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003500 /* Everything but endpoint 0 is disabled, so free or cache the rings. */
3501 last_freed_endpoint = 1;
3502 for (i = 1; i < 31; ++i) {
Dmitry Torokhov2dea75d2011-04-12 23:06:28 -07003503 struct xhci_virt_ep *ep = &virt_dev->eps[i];
3504
3505 if (ep->ep_state & EP_HAS_STREAMS) {
3506 xhci_free_stream_info(xhci, ep->stream_info);
3507 ep->stream_info = NULL;
3508 ep->ep_state &= ~EP_HAS_STREAMS;
3509 }
3510
3511 if (ep->ring) {
3512 xhci_free_or_cache_endpoint_ring(xhci, virt_dev, i);
3513 last_freed_endpoint = i;
3514 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003515 if (!list_empty(&virt_dev->eps[i].bw_endpoint_list))
3516 xhci_drop_ep_from_interval_table(xhci,
3517 &virt_dev->eps[i].bw_info,
3518 virt_dev->bw_table,
3519 udev,
3520 &virt_dev->eps[i],
3521 virt_dev->tt_info);
Sarah Sharp9af5d712011-09-02 11:05:48 -07003522 xhci_clear_endpoint_bw_info(&virt_dev->eps[i].bw_info);
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003523 }
Sarah Sharp2e279802011-09-02 11:05:50 -07003524 /* If necessary, update the number of active TTs on this root port */
3525 xhci_update_tt_active_eps(xhci, virt_dev, old_active_eps);
3526
Sarah Sharp2a8f82c2009-12-09 15:59:13 -08003527 xhci_dbg(xhci, "Output context after successful reset device cmd:\n");
3528 xhci_dbg_ctx(xhci, virt_dev->out_ctx, last_freed_endpoint);
3529 ret = 0;
3530
3531command_cleanup:
3532 xhci_free_command(xhci, reset_device_cmd);
3533 return ret;
3534}
3535
3536/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003537 * At this point, the struct usb_device is about to go away, the device has
3538 * disconnected, and all traffic has been stopped and the endpoints have been
3539 * disabled. Free any HC data structures associated with that device.
3540 */
3541void xhci_free_dev(struct usb_hcd *hcd, struct usb_device *udev)
3542{
3543 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003544 struct xhci_virt_device *virt_dev;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003545 unsigned long flags;
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003546 u32 state;
Andiry Xu64927732010-10-14 07:22:45 -07003547 int i, ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003548
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003549#ifndef CONFIG_USB_DEFAULT_PERSIST
3550 /*
3551 * We called pm_runtime_get_noresume when the device was attached.
3552 * Decrement the counter here to allow controller to runtime suspend
3553 * if no devices remain.
3554 */
3555 if (xhci->quirks & XHCI_RESET_ON_RESUME)
Sarah Sharpe7ecf062013-08-28 09:31:04 -07003556 pm_runtime_put_noidle(hcd->self.controller);
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003557#endif
3558
Andiry Xu64927732010-10-14 07:22:45 -07003559 ret = xhci_check_args(hcd, udev, NULL, 0, true, __func__);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003560 /* If the host is halted due to driver unload, we still need to free the
3561 * device.
3562 */
3563 if (ret <= 0 && ret != -ENODEV)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003564 return;
Andiry Xu64927732010-10-14 07:22:45 -07003565
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003566 virt_dev = xhci->devs[udev->slot_id];
Sarah Sharp6f5165c2009-10-27 10:57:01 -07003567
3568 /* Stop any wayward timer functions (which may grab the lock) */
3569 for (i = 0; i < 31; ++i) {
3570 virt_dev->eps[i].ep_state &= ~EP_HALT_PENDING;
3571 del_timer_sync(&virt_dev->eps[i].stop_cmd_timer);
3572 }
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003573
3574 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003575 /* Don't disable the slot if the host controller is dead. */
3576 state = xhci_readl(xhci, &xhci->op_regs->status);
Sarah Sharp7bd89b42011-07-01 13:35:40 -07003577 if (state == 0xffffffff || (xhci->xhc_state & XHCI_STATE_DYING) ||
3578 (xhci->xhc_state & XHCI_STATE_HALTED)) {
Sarah Sharpc526d0d2009-09-16 16:42:39 -07003579 xhci_free_virt_device(xhci, udev->slot_id);
3580 spin_unlock_irqrestore(&xhci->lock, flags);
3581 return;
3582 }
3583
Sarah Sharp23e3be12009-04-29 19:05:20 -07003584 if (xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id)) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003585 spin_unlock_irqrestore(&xhci->lock, flags);
3586 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3587 return;
3588 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003589 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003590 spin_unlock_irqrestore(&xhci->lock, flags);
3591 /*
3592 * Event command completion handler will free any data structures
Sarah Sharpf88ba782009-05-14 11:44:22 -07003593 * associated with the slot. XXX Can free sleep?
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003594 */
3595}
3596
3597/*
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003598 * Checks if we have enough host controller resources for the default control
3599 * endpoint.
3600 *
3601 * Must be called with xhci->lock held.
3602 */
3603static int xhci_reserve_host_control_ep_resources(struct xhci_hcd *xhci)
3604{
3605 if (xhci->num_active_eps + 1 > xhci->limit_active_eps) {
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003606 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3607 "Not enough ep ctxs: "
3608 "%u active, need to add 1, limit is %u.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003609 xhci->num_active_eps, xhci->limit_active_eps);
3610 return -ENOMEM;
3611 }
3612 xhci->num_active_eps += 1;
Xenia Ragiadakou4bdfe4c2013-08-06 07:52:45 +03003613 xhci_dbg_trace(xhci, trace_xhci_dbg_quirks,
3614 "Adding 1 ep ctx, %u now active.",
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003615 xhci->num_active_eps);
3616 return 0;
3617}
3618
3619
3620/*
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003621 * Returns 0 if the xHC ran out of device slots, the Enable Slot command
3622 * timed out, or allocating memory failed. Returns 1 on success.
3623 */
3624int xhci_alloc_dev(struct usb_hcd *hcd, struct usb_device *udev)
3625{
3626 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3627 unsigned long flags;
3628 int timeleft;
3629 int ret;
Elric Fu6e4468b2012-06-27 16:31:52 +08003630 union xhci_trb *cmd_trb;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003631
3632 spin_lock_irqsave(&xhci->lock, flags);
Mathias Nymanec7e43e2013-08-30 18:25:49 +03003633 cmd_trb = xhci_find_next_enqueue(xhci->cmd_ring);
Sarah Sharp23e3be12009-04-29 19:05:20 -07003634 ret = xhci_queue_slot_control(xhci, TRB_ENABLE_SLOT, 0);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003635 if (ret) {
3636 spin_unlock_irqrestore(&xhci->lock, flags);
3637 xhci_dbg(xhci, "FIXME: allocate a command ring segment\n");
3638 return 0;
3639 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003640 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003641 spin_unlock_irqrestore(&xhci->lock, flags);
3642
3643 /* XXX: how much time for xHC slot assignment? */
3644 timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev,
Elric Fu6e4468b2012-06-27 16:31:52 +08003645 XHCI_CMD_DEFAULT_TIMEOUT);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003646 if (timeleft <= 0) {
3647 xhci_warn(xhci, "%s while waiting for a slot\n",
3648 timeleft == 0 ? "Timeout" : "Signal");
Elric Fu6e4468b2012-06-27 16:31:52 +08003649 /* cancel the enable slot request */
3650 return xhci_cancel_cmd(xhci, NULL, cmd_trb);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003651 }
3652
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003653 if (!xhci->slot_id) {
3654 xhci_err(xhci, "Error while assigning device slot ID\n");
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003655 return 0;
3656 }
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003657
3658 if ((xhci->quirks & XHCI_EP_LIMIT_QUIRK)) {
3659 spin_lock_irqsave(&xhci->lock, flags);
3660 ret = xhci_reserve_host_control_ep_resources(xhci);
3661 if (ret) {
3662 spin_unlock_irqrestore(&xhci->lock, flags);
3663 xhci_warn(xhci, "Not enough host resources, "
3664 "active endpoint contexts = %u\n",
3665 xhci->num_active_eps);
3666 goto disable_slot;
3667 }
3668 spin_unlock_irqrestore(&xhci->lock, flags);
3669 }
3670 /* Use GFP_NOIO, since this function can be called from
Sarah Sharpa6d940d2010-12-28 13:08:42 -08003671 * xhci_discover_or_reset_device(), which may be called as part of
3672 * mass storage driver error handling.
3673 */
3674 if (!xhci_alloc_virt_device(xhci, xhci->slot_id, udev, GFP_NOIO)) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003675 xhci_warn(xhci, "Could not allocate xHCI USB device data structures\n");
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003676 goto disable_slot;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003677 }
3678 udev->slot_id = xhci->slot_id;
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003679
3680#ifndef CONFIG_USB_DEFAULT_PERSIST
3681 /*
3682 * If resetting upon resume, we can't put the controller into runtime
3683 * suspend if there is a device attached.
3684 */
3685 if (xhci->quirks & XHCI_RESET_ON_RESUME)
Sarah Sharpe7ecf062013-08-28 09:31:04 -07003686 pm_runtime_get_noresume(hcd->self.controller);
Shawn Nematbakhshc8476fb2013-08-19 10:36:13 -07003687#endif
3688
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003689 /* Is this a LS or FS device under a HS hub? */
3690 /* Hub or peripherial? */
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003691 return 1;
Sarah Sharp2cf95c12011-05-11 16:14:58 -07003692
3693disable_slot:
3694 /* Disable slot, if we can do it without mem alloc */
3695 spin_lock_irqsave(&xhci->lock, flags);
3696 if (!xhci_queue_slot_control(xhci, TRB_DISABLE_SLOT, udev->slot_id))
3697 xhci_ring_cmd_db(xhci);
3698 spin_unlock_irqrestore(&xhci->lock, flags);
3699 return 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003700}
3701
3702/*
3703 * Issue an Address Device command (which will issue a SetAddress request to
3704 * the device).
3705 * We should be protected by the usb_address0_mutex in khubd's hub_port_init, so
3706 * we should only issue and wait on one address command at the same time.
3707 *
3708 * We add one to the device address issued by the hardware because the USB core
3709 * uses address 1 for the root hubs (even though they're not really devices).
3710 */
3711int xhci_address_device(struct usb_hcd *hcd, struct usb_device *udev)
3712{
3713 unsigned long flags;
3714 int timeleft;
3715 struct xhci_virt_device *virt_dev;
3716 int ret = 0;
3717 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
John Yound115b042009-07-27 12:05:15 -07003718 struct xhci_slot_ctx *slot_ctx;
3719 struct xhci_input_control_ctx *ctrl_ctx;
Sarah Sharp8e595a52009-07-27 12:03:31 -07003720 u64 temp_64;
Elric Fu6e4468b2012-06-27 16:31:52 +08003721 union xhci_trb *cmd_trb;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003722
3723 if (!udev->slot_id) {
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003724 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3725 "Bad Slot ID %d", udev->slot_id);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003726 return -EINVAL;
3727 }
3728
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003729 virt_dev = xhci->devs[udev->slot_id];
3730
Matt Evans7ed603e2011-03-29 13:40:56 +11003731 if (WARN_ON(!virt_dev)) {
3732 /*
3733 * In plug/unplug torture test with an NEC controller,
3734 * a zero-dereference was observed once due to virt_dev = 0.
3735 * Print useful debug rather than crash if it is observed again!
3736 */
3737 xhci_warn(xhci, "Virt dev invalid for slot_id 0x%x!\n",
3738 udev->slot_id);
3739 return -EINVAL;
3740 }
3741
Andiry Xuf0615c42010-10-14 07:22:48 -07003742 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->in_ctx);
Sarah Sharp92f8e762013-04-23 17:11:14 -07003743 ctrl_ctx = xhci_get_input_control_ctx(xhci, virt_dev->in_ctx);
3744 if (!ctrl_ctx) {
3745 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3746 __func__);
3747 return -EINVAL;
3748 }
Andiry Xuf0615c42010-10-14 07:22:48 -07003749 /*
3750 * If this is the first Set Address since device plug-in or
3751 * virt_device realloaction after a resume with an xHCI power loss,
3752 * then set up the slot context.
3753 */
3754 if (!slot_ctx->dev_info)
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003755 xhci_setup_addressable_virt_dev(xhci, udev);
Andiry Xuf0615c42010-10-14 07:22:48 -07003756 /* Otherwise, update the control endpoint ring enqueue pointer. */
Sarah Sharp2d1ee592010-07-09 17:08:54 +02003757 else
3758 xhci_copy_ep0_dequeue_into_input_ctx(xhci, udev);
Sarah Sharpd31c2852011-11-03 13:06:08 -07003759 ctrl_ctx->add_flags = cpu_to_le32(SLOT_FLAG | EP0_FLAG);
3760 ctrl_ctx->drop_flags = 0;
3761
Sarah Sharp66e49d82009-07-27 12:03:46 -07003762 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003763 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003764 trace_xhci_address_ctx(xhci, virt_dev->in_ctx,
3765 slot_ctx->dev_info >> 27);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003766
Sarah Sharpf88ba782009-05-14 11:44:22 -07003767 spin_lock_irqsave(&xhci->lock, flags);
Mathias Nymanec7e43e2013-08-30 18:25:49 +03003768 cmd_trb = xhci_find_next_enqueue(xhci->cmd_ring);
John Yound115b042009-07-27 12:05:15 -07003769 ret = xhci_queue_address_device(xhci, virt_dev->in_ctx->dma,
3770 udev->slot_id);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003771 if (ret) {
3772 spin_unlock_irqrestore(&xhci->lock, flags);
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003773 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3774 "FIXME: allocate a command ring segment");
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003775 return ret;
3776 }
Sarah Sharp23e3be12009-04-29 19:05:20 -07003777 xhci_ring_cmd_db(xhci);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003778 spin_unlock_irqrestore(&xhci->lock, flags);
3779
3780 /* ctrl tx can take up to 5 sec; XXX: need more time for xHC? */
3781 timeleft = wait_for_completion_interruptible_timeout(&xhci->addr_dev,
Elric Fu6e4468b2012-06-27 16:31:52 +08003782 XHCI_CMD_DEFAULT_TIMEOUT);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003783 /* FIXME: From section 4.3.4: "Software shall be responsible for timing
3784 * the SetAddress() "recovery interval" required by USB and aborting the
3785 * command on a timeout.
3786 */
3787 if (timeleft <= 0) {
Andiry Xucd681762011-09-23 14:19:55 -07003788 xhci_warn(xhci, "%s while waiting for address device command\n",
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003789 timeleft == 0 ? "Timeout" : "Signal");
Elric Fu6e4468b2012-06-27 16:31:52 +08003790 /* cancel the address device command */
3791 ret = xhci_cancel_cmd(xhci, NULL, cmd_trb);
3792 if (ret < 0)
3793 return ret;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003794 return -ETIME;
3795 }
3796
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003797 switch (virt_dev->cmd_status) {
3798 case COMP_CTX_STATE:
3799 case COMP_EBADSLT:
3800 xhci_err(xhci, "Setup ERROR: address device command for slot %d.\n",
3801 udev->slot_id);
3802 ret = -EINVAL;
3803 break;
3804 case COMP_TX_ERR:
3805 dev_warn(&udev->dev, "Device not responding to set address.\n");
3806 ret = -EPROTO;
3807 break;
Alex Hef6ba6fe2011-06-08 18:34:06 +08003808 case COMP_DEV_ERR:
3809 dev_warn(&udev->dev, "ERROR: Incompatible device for address "
3810 "device command.\n");
3811 ret = -ENODEV;
3812 break;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003813 case COMP_SUCCESS:
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003814 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3815 "Successful Address Device command");
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003816 break;
3817 default:
3818 xhci_err(xhci, "ERROR: unexpected command completion "
3819 "code 0x%x.\n", virt_dev->cmd_status);
Sarah Sharp66e49d82009-07-27 12:03:46 -07003820 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003821 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003822 trace_xhci_address_ctx(xhci, virt_dev->out_ctx, 1);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003823 ret = -EINVAL;
3824 break;
3825 }
3826 if (ret) {
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003827 return ret;
3828 }
Sarah Sharp8e595a52009-07-27 12:03:31 -07003829 temp_64 = xhci_read_64(xhci, &xhci->op_regs->dcbaa_ptr);
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003830 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3831 "Op regs DCBAA ptr = %#016llx", temp_64);
3832 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3833 "Slot ID %d dcbaa entry @%p = %#016llx",
3834 udev->slot_id,
3835 &xhci->dcbaa->dev_context_ptrs[udev->slot_id],
3836 (unsigned long long)
3837 le64_to_cpu(xhci->dcbaa->dev_context_ptrs[udev->slot_id]));
3838 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3839 "Output Context DMA address = %#08llx",
John Yound115b042009-07-27 12:05:15 -07003840 (unsigned long long)virt_dev->out_ctx->dma);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003841 xhci_dbg(xhci, "Slot ID %d Input Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003842 xhci_dbg_ctx(xhci, virt_dev->in_ctx, 2);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003843 trace_xhci_address_ctx(xhci, virt_dev->in_ctx,
3844 slot_ctx->dev_info >> 27);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003845 xhci_dbg(xhci, "Slot ID %d Output Context:\n", udev->slot_id);
John Yound115b042009-07-27 12:05:15 -07003846 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 2);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003847 /*
3848 * USB core uses address 1 for the roothubs, so we add one to the
3849 * address given back to us by the HC.
3850 */
John Yound115b042009-07-27 12:05:15 -07003851 slot_ctx = xhci_get_slot_ctx(xhci, virt_dev->out_ctx);
Xenia Ragiadakou1d27fab2013-08-06 07:52:47 +03003852 trace_xhci_address_ctx(xhci, virt_dev->out_ctx,
3853 slot_ctx->dev_info >> 27);
Andiry Xuc8d4af82010-10-14 07:22:51 -07003854 /* Use kernel assigned address for devices; store xHC assigned
3855 * address locally. */
Matt Evans28ccd292011-03-29 13:40:46 +11003856 virt_dev->address = (le32_to_cpu(slot_ctx->dev_state) & DEV_ADDR_MASK)
3857 + 1;
Sarah Sharpf94e01862009-04-27 19:58:38 -07003858 /* Zero the input context control for later use */
John Yound115b042009-07-27 12:05:15 -07003859 ctrl_ctx->add_flags = 0;
3860 ctrl_ctx->drop_flags = 0;
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003861
Xenia Ragiadakou84a99f62013-08-06 00:22:15 +03003862 xhci_dbg_trace(xhci, trace_xhci_dbg_address,
3863 "Internal device address = %d", virt_dev->address);
Sarah Sharp3ffbba92009-04-27 19:57:38 -07003864
3865 return 0;
3866}
3867
Lan Tianyu3f5eb142013-03-19 16:48:12 +08003868/*
3869 * Transfer the port index into real index in the HW port status
3870 * registers. Caculate offset between the port's PORTSC register
3871 * and port status base. Divide the number of per port register
3872 * to get the real index. The raw port number bases 1.
3873 */
3874int xhci_find_raw_port_number(struct usb_hcd *hcd, int port1)
3875{
3876 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
3877 __le32 __iomem *base_addr = &xhci->op_regs->port_status_base;
3878 __le32 __iomem *addr;
3879 int raw_port;
3880
3881 if (hcd->speed != HCD_USB3)
3882 addr = xhci->usb2_ports[port1 - 1];
3883 else
3884 addr = xhci->usb3_ports[port1 - 1];
3885
3886 raw_port = (addr - base_addr)/NUM_PORT_REGS + 1;
3887 return raw_port;
3888}
3889
Mathias Nymana558ccd2013-05-23 17:14:30 +03003890/*
3891 * Issue an Evaluate Context command to change the Maximum Exit Latency in the
3892 * slot context. If that succeeds, store the new MEL in the xhci_virt_device.
3893 */
Olof Johanssond5c82fe2013-07-23 11:58:20 -07003894static int __maybe_unused xhci_change_max_exit_latency(struct xhci_hcd *xhci,
Mathias Nymana558ccd2013-05-23 17:14:30 +03003895 struct usb_device *udev, u16 max_exit_latency)
3896{
3897 struct xhci_virt_device *virt_dev;
3898 struct xhci_command *command;
3899 struct xhci_input_control_ctx *ctrl_ctx;
3900 struct xhci_slot_ctx *slot_ctx;
3901 unsigned long flags;
3902 int ret;
3903
3904 spin_lock_irqsave(&xhci->lock, flags);
3905 if (max_exit_latency == xhci->devs[udev->slot_id]->current_mel) {
3906 spin_unlock_irqrestore(&xhci->lock, flags);
3907 return 0;
3908 }
3909
3910 /* Attempt to issue an Evaluate Context command to change the MEL. */
3911 virt_dev = xhci->devs[udev->slot_id];
3912 command = xhci->lpm_command;
Sarah Sharp92f8e762013-04-23 17:11:14 -07003913 ctrl_ctx = xhci_get_input_control_ctx(xhci, command->in_ctx);
3914 if (!ctrl_ctx) {
3915 spin_unlock_irqrestore(&xhci->lock, flags);
3916 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
3917 __func__);
3918 return -ENOMEM;
3919 }
3920
Mathias Nymana558ccd2013-05-23 17:14:30 +03003921 xhci_slot_copy(xhci, command->in_ctx, virt_dev->out_ctx);
3922 spin_unlock_irqrestore(&xhci->lock, flags);
3923
Mathias Nymana558ccd2013-05-23 17:14:30 +03003924 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
3925 slot_ctx = xhci_get_slot_ctx(xhci, command->in_ctx);
3926 slot_ctx->dev_info2 &= cpu_to_le32(~((u32) MAX_EXIT));
3927 slot_ctx->dev_info2 |= cpu_to_le32(max_exit_latency);
3928
Xenia Ragiadakou3a7fa5b2013-07-31 07:35:27 +03003929 xhci_dbg_trace(xhci, trace_xhci_dbg_context_change,
3930 "Set up evaluate context for LPM MEL change.");
Mathias Nymana558ccd2013-05-23 17:14:30 +03003931 xhci_dbg(xhci, "Slot %u Input Context:\n", udev->slot_id);
3932 xhci_dbg_ctx(xhci, command->in_ctx, 0);
3933
3934 /* Issue and wait for the evaluate context command. */
3935 ret = xhci_configure_endpoint(xhci, udev, command,
3936 true, true);
3937 xhci_dbg(xhci, "Slot %u Output Context:\n", udev->slot_id);
3938 xhci_dbg_ctx(xhci, virt_dev->out_ctx, 0);
3939
3940 if (!ret) {
3941 spin_lock_irqsave(&xhci->lock, flags);
3942 virt_dev->current_mel = max_exit_latency;
3943 spin_unlock_irqrestore(&xhci->lock, flags);
3944 }
3945 return ret;
3946}
3947
Alan Stern84ebc102013-03-27 16:14:46 -04003948#ifdef CONFIG_PM_RUNTIME
Andiry Xu95743232011-09-23 14:19:51 -07003949
3950/* BESL to HIRD Encoding array for USB2 LPM */
3951static int xhci_besl_encoding[16] = {125, 150, 200, 300, 400, 500, 1000, 2000,
3952 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000};
3953
3954/* Calculate HIRD/BESL for USB2 PORTPMSC*/
Andiry Xuf99298b2011-12-12 16:45:28 +08003955static int xhci_calculate_hird_besl(struct xhci_hcd *xhci,
3956 struct usb_device *udev)
Andiry Xu95743232011-09-23 14:19:51 -07003957{
Andiry Xuf99298b2011-12-12 16:45:28 +08003958 int u2del, besl, besl_host;
3959 int besl_device = 0;
3960 u32 field;
Andiry Xu95743232011-09-23 14:19:51 -07003961
Andiry Xuf99298b2011-12-12 16:45:28 +08003962 u2del = HCS_U2_LATENCY(xhci->hcs_params3);
3963 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
3964
3965 if (field & USB_BESL_SUPPORT) {
3966 for (besl_host = 0; besl_host < 16; besl_host++) {
3967 if (xhci_besl_encoding[besl_host] >= u2del)
Andiry Xu95743232011-09-23 14:19:51 -07003968 break;
3969 }
Andiry Xuf99298b2011-12-12 16:45:28 +08003970 /* Use baseline BESL value as default */
3971 if (field & USB_BESL_BASELINE_VALID)
3972 besl_device = USB_GET_BESL_BASELINE(field);
3973 else if (field & USB_BESL_DEEP_VALID)
3974 besl_device = USB_GET_BESL_DEEP(field);
Andiry Xu95743232011-09-23 14:19:51 -07003975 } else {
3976 if (u2del <= 50)
Andiry Xuf99298b2011-12-12 16:45:28 +08003977 besl_host = 0;
Andiry Xu95743232011-09-23 14:19:51 -07003978 else
Andiry Xuf99298b2011-12-12 16:45:28 +08003979 besl_host = (u2del - 51) / 75 + 1;
Andiry Xu95743232011-09-23 14:19:51 -07003980 }
3981
Andiry Xuf99298b2011-12-12 16:45:28 +08003982 besl = besl_host + besl_device;
3983 if (besl > 15)
3984 besl = 15;
3985
3986 return besl;
Andiry Xu95743232011-09-23 14:19:51 -07003987}
3988
Mathias Nymana558ccd2013-05-23 17:14:30 +03003989/* Calculate BESLD, L1 timeout and HIRDM for USB2 PORTHLPMC */
3990static int xhci_calculate_usb2_hw_lpm_params(struct usb_device *udev)
3991{
3992 u32 field;
3993 int l1;
3994 int besld = 0;
3995 int hirdm = 0;
3996
3997 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
3998
3999 /* xHCI l1 is set in steps of 256us, xHCI 1.0 section 5.4.11.2 */
Mathias Nyman17f34862013-05-23 17:14:31 +03004000 l1 = udev->l1_params.timeout / 256;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004001
4002 /* device has preferred BESLD */
4003 if (field & USB_BESL_DEEP_VALID) {
4004 besld = USB_GET_BESL_DEEP(field);
4005 hirdm = 1;
4006 }
4007
4008 return PORT_BESLD(besld) | PORT_L1_TIMEOUT(l1) | PORT_HIRDM(hirdm);
4009}
4010
Andiry Xu65580b432011-09-23 14:19:52 -07004011int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
4012 struct usb_device *udev, int enable)
4013{
4014 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4015 __le32 __iomem **port_array;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004016 __le32 __iomem *pm_addr, *hlpm_addr;
4017 u32 pm_val, hlpm_val, field;
Andiry Xu65580b432011-09-23 14:19:52 -07004018 unsigned int port_num;
4019 unsigned long flags;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004020 int hird, exit_latency;
4021 int ret;
Andiry Xu65580b432011-09-23 14:19:52 -07004022
4023 if (hcd->speed == HCD_USB3 || !xhci->hw_lpm_support ||
4024 !udev->lpm_capable)
4025 return -EPERM;
4026
4027 if (!udev->parent || udev->parent->parent ||
4028 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
4029 return -EPERM;
4030
4031 if (udev->usb2_hw_lpm_capable != 1)
4032 return -EPERM;
4033
4034 spin_lock_irqsave(&xhci->lock, flags);
4035
4036 port_array = xhci->usb2_ports;
4037 port_num = udev->portnum - 1;
Mathias Nymanb6e76372013-05-23 17:14:29 +03004038 pm_addr = port_array[port_num] + PORTPMSC;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004039 pm_val = xhci_readl(xhci, pm_addr);
4040 hlpm_addr = port_array[port_num] + PORTHLPMC;
4041 field = le32_to_cpu(udev->bos->ext_cap->bmAttributes);
Andiry Xu65580b432011-09-23 14:19:52 -07004042
4043 xhci_dbg(xhci, "%s port %d USB2 hardware LPM\n",
4044 enable ? "enable" : "disable", port_num);
4045
Andiry Xu65580b432011-09-23 14:19:52 -07004046 if (enable) {
Mathias Nymana558ccd2013-05-23 17:14:30 +03004047 /* Host supports BESL timeout instead of HIRD */
4048 if (udev->usb2_hw_lpm_besl_capable) {
4049 /* if device doesn't have a preferred BESL value use a
4050 * default one which works with mixed HIRD and BESL
4051 * systems. See XHCI_DEFAULT_BESL definition in xhci.h
4052 */
4053 if ((field & USB_BESL_SUPPORT) &&
4054 (field & USB_BESL_BASELINE_VALID))
4055 hird = USB_GET_BESL_BASELINE(field);
4056 else
Mathias Nyman17f34862013-05-23 17:14:31 +03004057 hird = udev->l1_params.besl;
Mathias Nymana558ccd2013-05-23 17:14:30 +03004058
4059 exit_latency = xhci_besl_encoding[hird];
4060 spin_unlock_irqrestore(&xhci->lock, flags);
4061
4062 /* USB 3.0 code dedicate one xhci->lpm_command->in_ctx
4063 * input context for link powermanagement evaluate
4064 * context commands. It is protected by hcd->bandwidth
4065 * mutex and is shared by all devices. We need to set
4066 * the max ext latency in USB 2 BESL LPM as well, so
4067 * use the same mutex and xhci_change_max_exit_latency()
4068 */
4069 mutex_lock(hcd->bandwidth_mutex);
4070 ret = xhci_change_max_exit_latency(xhci, udev,
4071 exit_latency);
4072 mutex_unlock(hcd->bandwidth_mutex);
4073
4074 if (ret < 0)
4075 return ret;
4076 spin_lock_irqsave(&xhci->lock, flags);
4077
4078 hlpm_val = xhci_calculate_usb2_hw_lpm_params(udev);
4079 xhci_writel(xhci, hlpm_val, hlpm_addr);
4080 /* flush write */
4081 xhci_readl(xhci, hlpm_addr);
4082 } else {
4083 hird = xhci_calculate_hird_besl(xhci, udev);
4084 }
4085
4086 pm_val &= ~PORT_HIRD_MASK;
Sarah Sharp58e21f72013-10-07 17:17:20 -07004087 pm_val |= PORT_HIRD(hird) | PORT_RWE | PORT_L1DS(udev->slot_id);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004088 xhci_writel(xhci, pm_val, pm_addr);
4089 pm_val = xhci_readl(xhci, pm_addr);
4090 pm_val |= PORT_HLE;
4091 xhci_writel(xhci, pm_val, pm_addr);
4092 /* flush write */
4093 xhci_readl(xhci, pm_addr);
Andiry Xu65580b432011-09-23 14:19:52 -07004094 } else {
Sarah Sharp58e21f72013-10-07 17:17:20 -07004095 pm_val &= ~(PORT_HLE | PORT_RWE | PORT_HIRD_MASK | PORT_L1DS_MASK);
Mathias Nymana558ccd2013-05-23 17:14:30 +03004096 xhci_writel(xhci, pm_val, pm_addr);
4097 /* flush write */
4098 xhci_readl(xhci, pm_addr);
4099 if (udev->usb2_hw_lpm_besl_capable) {
4100 spin_unlock_irqrestore(&xhci->lock, flags);
4101 mutex_lock(hcd->bandwidth_mutex);
4102 xhci_change_max_exit_latency(xhci, udev, 0);
4103 mutex_unlock(hcd->bandwidth_mutex);
4104 return 0;
4105 }
Andiry Xu65580b432011-09-23 14:19:52 -07004106 }
4107
4108 spin_unlock_irqrestore(&xhci->lock, flags);
4109 return 0;
4110}
4111
Mathias Nymanb630d4b2013-05-23 17:14:28 +03004112/* check if a usb2 port supports a given extened capability protocol
4113 * only USB2 ports extended protocol capability values are cached.
4114 * Return 1 if capability is supported
4115 */
4116static int xhci_check_usb2_port_capability(struct xhci_hcd *xhci, int port,
4117 unsigned capability)
4118{
4119 u32 port_offset, port_count;
4120 int i;
4121
4122 for (i = 0; i < xhci->num_ext_caps; i++) {
4123 if (xhci->ext_caps[i] & capability) {
4124 /* port offsets starts at 1 */
4125 port_offset = XHCI_EXT_PORT_OFF(xhci->ext_caps[i]) - 1;
4126 port_count = XHCI_EXT_PORT_COUNT(xhci->ext_caps[i]);
4127 if (port >= port_offset &&
4128 port < port_offset + port_count)
4129 return 1;
4130 }
4131 }
4132 return 0;
4133}
4134
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004135int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
4136{
4137 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
Mathias Nymanb630d4b2013-05-23 17:14:28 +03004138 int portnum = udev->portnum - 1;
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004139
Sarah Sharpde68bab2013-09-30 17:26:28 +03004140 if (hcd->speed == HCD_USB3 || !xhci->sw_lpm_support ||
4141 !udev->lpm_capable)
4142 return 0;
4143
4144 /* we only support lpm for non-hub device connected to root hub yet */
4145 if (!udev->parent || udev->parent->parent ||
4146 udev->descriptor.bDeviceClass == USB_CLASS_HUB)
4147 return 0;
4148
4149 if (xhci->hw_lpm_support == 1 &&
4150 xhci_check_usb2_port_capability(
4151 xhci, portnum, XHCI_HLC)) {
4152 udev->usb2_hw_lpm_capable = 1;
4153 udev->l1_params.timeout = XHCI_L1_TIMEOUT;
4154 udev->l1_params.besl = XHCI_DEFAULT_BESL;
4155 if (xhci_check_usb2_port_capability(xhci, portnum,
4156 XHCI_BLC))
4157 udev->usb2_hw_lpm_besl_capable = 1;
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004158 }
4159
4160 return 0;
4161}
4162
4163#else
4164
4165int xhci_set_usb2_hardware_lpm(struct usb_hcd *hcd,
4166 struct usb_device *udev, int enable)
4167{
4168 return 0;
4169}
4170
4171int xhci_update_device(struct usb_hcd *hcd, struct usb_device *udev)
4172{
4173 return 0;
4174}
4175
Alan Stern84ebc102013-03-27 16:14:46 -04004176#endif /* CONFIG_PM_RUNTIME */
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004177
Sarah Sharp3b3db022012-05-09 10:55:03 -07004178/*---------------------- USB 3.0 Link PM functions ------------------------*/
4179
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004180#ifdef CONFIG_PM
Sarah Sharpe3567d22012-05-16 13:36:24 -07004181/* Service interval in nanoseconds = 2^(bInterval - 1) * 125us * 1000ns / 1us */
4182static unsigned long long xhci_service_interval_to_ns(
4183 struct usb_endpoint_descriptor *desc)
4184{
Oliver Neukum16b45fd2012-10-17 10:16:16 +02004185 return (1ULL << (desc->bInterval - 1)) * 125 * 1000;
Sarah Sharpe3567d22012-05-16 13:36:24 -07004186}
4187
Sarah Sharp3b3db022012-05-09 10:55:03 -07004188static u16 xhci_get_timeout_no_hub_lpm(struct usb_device *udev,
4189 enum usb3_link_state state)
4190{
4191 unsigned long long sel;
4192 unsigned long long pel;
4193 unsigned int max_sel_pel;
4194 char *state_name;
4195
4196 switch (state) {
4197 case USB3_LPM_U1:
4198 /* Convert SEL and PEL stored in nanoseconds to microseconds */
4199 sel = DIV_ROUND_UP(udev->u1_params.sel, 1000);
4200 pel = DIV_ROUND_UP(udev->u1_params.pel, 1000);
4201 max_sel_pel = USB3_LPM_MAX_U1_SEL_PEL;
4202 state_name = "U1";
4203 break;
4204 case USB3_LPM_U2:
4205 sel = DIV_ROUND_UP(udev->u2_params.sel, 1000);
4206 pel = DIV_ROUND_UP(udev->u2_params.pel, 1000);
4207 max_sel_pel = USB3_LPM_MAX_U2_SEL_PEL;
4208 state_name = "U2";
4209 break;
4210 default:
4211 dev_warn(&udev->dev, "%s: Can't get timeout for non-U1 or U2 state.\n",
4212 __func__);
Sarah Sharpe25e62a2012-06-07 11:10:32 -07004213 return USB3_LPM_DISABLED;
Sarah Sharp3b3db022012-05-09 10:55:03 -07004214 }
4215
4216 if (sel <= max_sel_pel && pel <= max_sel_pel)
4217 return USB3_LPM_DEVICE_INITIATED;
4218
4219 if (sel > max_sel_pel)
4220 dev_dbg(&udev->dev, "Device-initiated %s disabled "
4221 "due to long SEL %llu ms\n",
4222 state_name, sel);
4223 else
4224 dev_dbg(&udev->dev, "Device-initiated %s disabled "
Joe Perches03e64e92013-07-16 19:25:59 -07004225 "due to long PEL %llu ms\n",
Sarah Sharp3b3db022012-05-09 10:55:03 -07004226 state_name, pel);
4227 return USB3_LPM_DISABLED;
4228}
4229
Sarah Sharpe3567d22012-05-16 13:36:24 -07004230/* Returns the hub-encoded U1 timeout value.
4231 * The U1 timeout should be the maximum of the following values:
4232 * - For control endpoints, U1 system exit latency (SEL) * 3
4233 * - For bulk endpoints, U1 SEL * 5
4234 * - For interrupt endpoints:
4235 * - Notification EPs, U1 SEL * 3
4236 * - Periodic EPs, max(105% of bInterval, U1 SEL * 2)
4237 * - For isochronous endpoints, max(105% of bInterval, U1 SEL * 2)
4238 */
4239static u16 xhci_calculate_intel_u1_timeout(struct usb_device *udev,
4240 struct usb_endpoint_descriptor *desc)
4241{
4242 unsigned long long timeout_ns;
4243 int ep_type;
4244 int intr_type;
4245
4246 ep_type = usb_endpoint_type(desc);
4247 switch (ep_type) {
4248 case USB_ENDPOINT_XFER_CONTROL:
4249 timeout_ns = udev->u1_params.sel * 3;
4250 break;
4251 case USB_ENDPOINT_XFER_BULK:
4252 timeout_ns = udev->u1_params.sel * 5;
4253 break;
4254 case USB_ENDPOINT_XFER_INT:
4255 intr_type = usb_endpoint_interrupt_type(desc);
4256 if (intr_type == USB_ENDPOINT_INTR_NOTIFICATION) {
4257 timeout_ns = udev->u1_params.sel * 3;
4258 break;
4259 }
4260 /* Otherwise the calculation is the same as isoc eps */
4261 case USB_ENDPOINT_XFER_ISOC:
4262 timeout_ns = xhci_service_interval_to_ns(desc);
Sarah Sharpc88db162012-05-21 08:44:33 -07004263 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns * 105, 100);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004264 if (timeout_ns < udev->u1_params.sel * 2)
4265 timeout_ns = udev->u1_params.sel * 2;
4266 break;
4267 default:
4268 return 0;
4269 }
4270
4271 /* The U1 timeout is encoded in 1us intervals. */
Sarah Sharpc88db162012-05-21 08:44:33 -07004272 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 1000);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004273 /* Don't return a timeout of zero, because that's USB3_LPM_DISABLED. */
4274 if (timeout_ns == USB3_LPM_DISABLED)
4275 timeout_ns++;
4276
4277 /* If the necessary timeout value is bigger than what we can set in the
4278 * USB 3.0 hub, we have to disable hub-initiated U1.
4279 */
4280 if (timeout_ns <= USB3_LPM_U1_MAX_TIMEOUT)
4281 return timeout_ns;
4282 dev_dbg(&udev->dev, "Hub-initiated U1 disabled "
4283 "due to long timeout %llu ms\n", timeout_ns);
4284 return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U1);
4285}
4286
4287/* Returns the hub-encoded U2 timeout value.
4288 * The U2 timeout should be the maximum of:
4289 * - 10 ms (to avoid the bandwidth impact on the scheduler)
4290 * - largest bInterval of any active periodic endpoint (to avoid going
4291 * into lower power link states between intervals).
4292 * - the U2 Exit Latency of the device
4293 */
4294static u16 xhci_calculate_intel_u2_timeout(struct usb_device *udev,
4295 struct usb_endpoint_descriptor *desc)
4296{
4297 unsigned long long timeout_ns;
4298 unsigned long long u2_del_ns;
4299
4300 timeout_ns = 10 * 1000 * 1000;
4301
4302 if ((usb_endpoint_xfer_int(desc) || usb_endpoint_xfer_isoc(desc)) &&
4303 (xhci_service_interval_to_ns(desc) > timeout_ns))
4304 timeout_ns = xhci_service_interval_to_ns(desc);
4305
Oliver Neukum966e7a82012-10-17 12:17:50 +02004306 u2_del_ns = le16_to_cpu(udev->bos->ss_cap->bU2DevExitLat) * 1000ULL;
Sarah Sharpe3567d22012-05-16 13:36:24 -07004307 if (u2_del_ns > timeout_ns)
4308 timeout_ns = u2_del_ns;
4309
4310 /* The U2 timeout is encoded in 256us intervals */
Sarah Sharpc88db162012-05-21 08:44:33 -07004311 timeout_ns = DIV_ROUND_UP_ULL(timeout_ns, 256 * 1000);
Sarah Sharpe3567d22012-05-16 13:36:24 -07004312 /* If the necessary timeout value is bigger than what we can set in the
4313 * USB 3.0 hub, we have to disable hub-initiated U2.
4314 */
4315 if (timeout_ns <= USB3_LPM_U2_MAX_TIMEOUT)
4316 return timeout_ns;
4317 dev_dbg(&udev->dev, "Hub-initiated U2 disabled "
4318 "due to long timeout %llu ms\n", timeout_ns);
4319 return xhci_get_timeout_no_hub_lpm(udev, USB3_LPM_U2);
4320}
4321
Sarah Sharp3b3db022012-05-09 10:55:03 -07004322static u16 xhci_call_host_update_timeout_for_endpoint(struct xhci_hcd *xhci,
4323 struct usb_device *udev,
4324 struct usb_endpoint_descriptor *desc,
4325 enum usb3_link_state state,
4326 u16 *timeout)
4327{
Sarah Sharpe3567d22012-05-16 13:36:24 -07004328 if (state == USB3_LPM_U1) {
4329 if (xhci->quirks & XHCI_INTEL_HOST)
4330 return xhci_calculate_intel_u1_timeout(udev, desc);
4331 } else {
4332 if (xhci->quirks & XHCI_INTEL_HOST)
4333 return xhci_calculate_intel_u2_timeout(udev, desc);
4334 }
4335
Sarah Sharp3b3db022012-05-09 10:55:03 -07004336 return USB3_LPM_DISABLED;
4337}
4338
4339static int xhci_update_timeout_for_endpoint(struct xhci_hcd *xhci,
4340 struct usb_device *udev,
4341 struct usb_endpoint_descriptor *desc,
4342 enum usb3_link_state state,
4343 u16 *timeout)
4344{
4345 u16 alt_timeout;
4346
4347 alt_timeout = xhci_call_host_update_timeout_for_endpoint(xhci, udev,
4348 desc, state, timeout);
4349
4350 /* If we found we can't enable hub-initiated LPM, or
4351 * the U1 or U2 exit latency was too high to allow
4352 * device-initiated LPM as well, just stop searching.
4353 */
4354 if (alt_timeout == USB3_LPM_DISABLED ||
4355 alt_timeout == USB3_LPM_DEVICE_INITIATED) {
4356 *timeout = alt_timeout;
4357 return -E2BIG;
4358 }
4359 if (alt_timeout > *timeout)
4360 *timeout = alt_timeout;
4361 return 0;
4362}
4363
4364static int xhci_update_timeout_for_interface(struct xhci_hcd *xhci,
4365 struct usb_device *udev,
4366 struct usb_host_interface *alt,
4367 enum usb3_link_state state,
4368 u16 *timeout)
4369{
4370 int j;
4371
4372 for (j = 0; j < alt->desc.bNumEndpoints; j++) {
4373 if (xhci_update_timeout_for_endpoint(xhci, udev,
4374 &alt->endpoint[j].desc, state, timeout))
4375 return -E2BIG;
4376 continue;
4377 }
4378 return 0;
4379}
4380
Sarah Sharpe3567d22012-05-16 13:36:24 -07004381static int xhci_check_intel_tier_policy(struct usb_device *udev,
4382 enum usb3_link_state state)
4383{
4384 struct usb_device *parent;
4385 unsigned int num_hubs;
4386
4387 if (state == USB3_LPM_U2)
4388 return 0;
4389
4390 /* Don't enable U1 if the device is on a 2nd tier hub or lower. */
4391 for (parent = udev->parent, num_hubs = 0; parent->parent;
4392 parent = parent->parent)
4393 num_hubs++;
4394
4395 if (num_hubs < 2)
4396 return 0;
4397
4398 dev_dbg(&udev->dev, "Disabling U1 link state for device"
4399 " below second-tier hub.\n");
4400 dev_dbg(&udev->dev, "Plug device into first-tier hub "
4401 "to decrease power consumption.\n");
4402 return -E2BIG;
4403}
4404
Sarah Sharp3b3db022012-05-09 10:55:03 -07004405static int xhci_check_tier_policy(struct xhci_hcd *xhci,
4406 struct usb_device *udev,
4407 enum usb3_link_state state)
4408{
Sarah Sharpe3567d22012-05-16 13:36:24 -07004409 if (xhci->quirks & XHCI_INTEL_HOST)
4410 return xhci_check_intel_tier_policy(udev, state);
Sarah Sharp3b3db022012-05-09 10:55:03 -07004411 return -EINVAL;
4412}
4413
4414/* Returns the U1 or U2 timeout that should be enabled.
4415 * If the tier check or timeout setting functions return with a non-zero exit
4416 * code, that means the timeout value has been finalized and we shouldn't look
4417 * at any more endpoints.
4418 */
4419static u16 xhci_calculate_lpm_timeout(struct usb_hcd *hcd,
4420 struct usb_device *udev, enum usb3_link_state state)
4421{
4422 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4423 struct usb_host_config *config;
4424 char *state_name;
4425 int i;
4426 u16 timeout = USB3_LPM_DISABLED;
4427
4428 if (state == USB3_LPM_U1)
4429 state_name = "U1";
4430 else if (state == USB3_LPM_U2)
4431 state_name = "U2";
4432 else {
4433 dev_warn(&udev->dev, "Can't enable unknown link state %i\n",
4434 state);
4435 return timeout;
4436 }
4437
4438 if (xhci_check_tier_policy(xhci, udev, state) < 0)
4439 return timeout;
4440
4441 /* Gather some information about the currently installed configuration
4442 * and alternate interface settings.
4443 */
4444 if (xhci_update_timeout_for_endpoint(xhci, udev, &udev->ep0.desc,
4445 state, &timeout))
4446 return timeout;
4447
4448 config = udev->actconfig;
4449 if (!config)
4450 return timeout;
4451
4452 for (i = 0; i < USB_MAXINTERFACES; i++) {
4453 struct usb_driver *driver;
4454 struct usb_interface *intf = config->interface[i];
4455
4456 if (!intf)
4457 continue;
4458
4459 /* Check if any currently bound drivers want hub-initiated LPM
4460 * disabled.
4461 */
4462 if (intf->dev.driver) {
4463 driver = to_usb_driver(intf->dev.driver);
4464 if (driver && driver->disable_hub_initiated_lpm) {
4465 dev_dbg(&udev->dev, "Hub-initiated %s disabled "
4466 "at request of driver %s\n",
4467 state_name, driver->name);
4468 return xhci_get_timeout_no_hub_lpm(udev, state);
4469 }
4470 }
4471
4472 /* Not sure how this could happen... */
4473 if (!intf->cur_altsetting)
4474 continue;
4475
4476 if (xhci_update_timeout_for_interface(xhci, udev,
4477 intf->cur_altsetting,
4478 state, &timeout))
4479 return timeout;
4480 }
4481 return timeout;
4482}
4483
Sarah Sharp3b3db022012-05-09 10:55:03 -07004484static int calculate_max_exit_latency(struct usb_device *udev,
4485 enum usb3_link_state state_changed,
4486 u16 hub_encoded_timeout)
4487{
4488 unsigned long long u1_mel_us = 0;
4489 unsigned long long u2_mel_us = 0;
4490 unsigned long long mel_us = 0;
4491 bool disabling_u1;
4492 bool disabling_u2;
4493 bool enabling_u1;
4494 bool enabling_u2;
4495
4496 disabling_u1 = (state_changed == USB3_LPM_U1 &&
4497 hub_encoded_timeout == USB3_LPM_DISABLED);
4498 disabling_u2 = (state_changed == USB3_LPM_U2 &&
4499 hub_encoded_timeout == USB3_LPM_DISABLED);
4500
4501 enabling_u1 = (state_changed == USB3_LPM_U1 &&
4502 hub_encoded_timeout != USB3_LPM_DISABLED);
4503 enabling_u2 = (state_changed == USB3_LPM_U2 &&
4504 hub_encoded_timeout != USB3_LPM_DISABLED);
4505
4506 /* If U1 was already enabled and we're not disabling it,
4507 * or we're going to enable U1, account for the U1 max exit latency.
4508 */
4509 if ((udev->u1_params.timeout != USB3_LPM_DISABLED && !disabling_u1) ||
4510 enabling_u1)
4511 u1_mel_us = DIV_ROUND_UP(udev->u1_params.mel, 1000);
4512 if ((udev->u2_params.timeout != USB3_LPM_DISABLED && !disabling_u2) ||
4513 enabling_u2)
4514 u2_mel_us = DIV_ROUND_UP(udev->u2_params.mel, 1000);
4515
4516 if (u1_mel_us > u2_mel_us)
4517 mel_us = u1_mel_us;
4518 else
4519 mel_us = u2_mel_us;
4520 /* xHCI host controller max exit latency field is only 16 bits wide. */
4521 if (mel_us > MAX_EXIT) {
4522 dev_warn(&udev->dev, "Link PM max exit latency of %lluus "
4523 "is too big.\n", mel_us);
4524 return -E2BIG;
4525 }
4526 return mel_us;
4527}
4528
4529/* Returns the USB3 hub-encoded value for the U1/U2 timeout. */
4530int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd,
4531 struct usb_device *udev, enum usb3_link_state state)
4532{
4533 struct xhci_hcd *xhci;
4534 u16 hub_encoded_timeout;
4535 int mel;
4536 int ret;
4537
4538 xhci = hcd_to_xhci(hcd);
4539 /* The LPM timeout values are pretty host-controller specific, so don't
4540 * enable hub-initiated timeouts unless the vendor has provided
4541 * information about their timeout algorithm.
4542 */
4543 if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) ||
4544 !xhci->devs[udev->slot_id])
4545 return USB3_LPM_DISABLED;
4546
4547 hub_encoded_timeout = xhci_calculate_lpm_timeout(hcd, udev, state);
4548 mel = calculate_max_exit_latency(udev, state, hub_encoded_timeout);
4549 if (mel < 0) {
4550 /* Max Exit Latency is too big, disable LPM. */
4551 hub_encoded_timeout = USB3_LPM_DISABLED;
4552 mel = 0;
4553 }
4554
4555 ret = xhci_change_max_exit_latency(xhci, udev, mel);
4556 if (ret)
4557 return ret;
4558 return hub_encoded_timeout;
4559}
4560
4561int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
4562 struct usb_device *udev, enum usb3_link_state state)
4563{
4564 struct xhci_hcd *xhci;
4565 u16 mel;
4566 int ret;
4567
4568 xhci = hcd_to_xhci(hcd);
4569 if (!xhci || !(xhci->quirks & XHCI_LPM_SUPPORT) ||
4570 !xhci->devs[udev->slot_id])
4571 return 0;
4572
4573 mel = calculate_max_exit_latency(udev, state, USB3_LPM_DISABLED);
4574 ret = xhci_change_max_exit_latency(xhci, udev, mel);
4575 if (ret)
4576 return ret;
4577 return 0;
4578}
Sarah Sharpb01bcbf2012-05-21 07:54:42 -07004579#else /* CONFIG_PM */
4580
4581int xhci_enable_usb3_lpm_timeout(struct usb_hcd *hcd,
4582 struct usb_device *udev, enum usb3_link_state state)
4583{
4584 return USB3_LPM_DISABLED;
4585}
4586
4587int xhci_disable_usb3_lpm_timeout(struct usb_hcd *hcd,
4588 struct usb_device *udev, enum usb3_link_state state)
4589{
4590 return 0;
4591}
4592#endif /* CONFIG_PM */
4593
Sarah Sharp3b3db022012-05-09 10:55:03 -07004594/*-------------------------------------------------------------------------*/
4595
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004596/* Once a hub descriptor is fetched for a device, we need to update the xHC's
4597 * internal data structures for the device.
4598 */
4599int xhci_update_hub_device(struct usb_hcd *hcd, struct usb_device *hdev,
4600 struct usb_tt *tt, gfp_t mem_flags)
4601{
4602 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4603 struct xhci_virt_device *vdev;
4604 struct xhci_command *config_cmd;
4605 struct xhci_input_control_ctx *ctrl_ctx;
4606 struct xhci_slot_ctx *slot_ctx;
4607 unsigned long flags;
4608 unsigned think_time;
4609 int ret;
4610
4611 /* Ignore root hubs */
4612 if (!hdev->parent)
4613 return 0;
4614
4615 vdev = xhci->devs[hdev->slot_id];
4616 if (!vdev) {
4617 xhci_warn(xhci, "Cannot update hub desc for unknown device.\n");
4618 return -EINVAL;
4619 }
Sarah Sharpa1d78c12009-12-09 15:59:03 -08004620 config_cmd = xhci_alloc_command(xhci, true, true, mem_flags);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004621 if (!config_cmd) {
4622 xhci_dbg(xhci, "Could not allocate xHCI command structure.\n");
4623 return -ENOMEM;
4624 }
Sarah Sharp92f8e762013-04-23 17:11:14 -07004625 ctrl_ctx = xhci_get_input_control_ctx(xhci, config_cmd->in_ctx);
4626 if (!ctrl_ctx) {
4627 xhci_warn(xhci, "%s: Could not get input context, bad type.\n",
4628 __func__);
4629 xhci_free_command(xhci, config_cmd);
4630 return -ENOMEM;
4631 }
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004632
4633 spin_lock_irqsave(&xhci->lock, flags);
Sarah Sharp839c8172011-09-02 11:05:47 -07004634 if (hdev->speed == USB_SPEED_HIGH &&
4635 xhci_alloc_tt_info(xhci, vdev, hdev, tt, GFP_ATOMIC)) {
4636 xhci_dbg(xhci, "Could not allocate xHCI TT structure.\n");
4637 xhci_free_command(xhci, config_cmd);
4638 spin_unlock_irqrestore(&xhci->lock, flags);
4639 return -ENOMEM;
4640 }
4641
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004642 xhci_slot_copy(xhci, config_cmd->in_ctx, vdev->out_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11004643 ctrl_ctx->add_flags |= cpu_to_le32(SLOT_FLAG);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004644 slot_ctx = xhci_get_slot_ctx(xhci, config_cmd->in_ctx);
Matt Evans28ccd292011-03-29 13:40:46 +11004645 slot_ctx->dev_info |= cpu_to_le32(DEV_HUB);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004646 if (tt->multi)
Matt Evans28ccd292011-03-29 13:40:46 +11004647 slot_ctx->dev_info |= cpu_to_le32(DEV_MTT);
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004648 if (xhci->hci_version > 0x95) {
4649 xhci_dbg(xhci, "xHCI version %x needs hub "
4650 "TT think time and number of ports\n",
4651 (unsigned int) xhci->hci_version);
Matt Evans28ccd292011-03-29 13:40:46 +11004652 slot_ctx->dev_info2 |= cpu_to_le32(XHCI_MAX_PORTS(hdev->maxchild));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004653 /* Set TT think time - convert from ns to FS bit times.
4654 * 0 = 8 FS bit times, 1 = 16 FS bit times,
4655 * 2 = 24 FS bit times, 3 = 32 FS bit times.
Andiry Xu700b4172011-05-05 18:14:05 +08004656 *
4657 * xHCI 1.0: this field shall be 0 if the device is not a
4658 * High-spped hub.
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004659 */
4660 think_time = tt->think_time;
4661 if (think_time != 0)
4662 think_time = (think_time / 666) - 1;
Andiry Xu700b4172011-05-05 18:14:05 +08004663 if (xhci->hci_version < 0x100 || hdev->speed == USB_SPEED_HIGH)
4664 slot_ctx->tt_info |=
4665 cpu_to_le32(TT_THINK_TIME(think_time));
Sarah Sharpac1c1b72009-09-04 10:53:20 -07004666 } else {
4667 xhci_dbg(xhci, "xHCI version %x doesn't need hub "
4668 "TT think time or number of ports\n",
4669 (unsigned int) xhci->hci_version);
4670 }
4671 slot_ctx->dev_state = 0;
4672 spin_unlock_irqrestore(&xhci->lock, flags);
4673
4674 xhci_dbg(xhci, "Set up %s for hub device.\n",
4675 (xhci->hci_version > 0x95) ?
4676 "configure endpoint" : "evaluate context");
4677 xhci_dbg(xhci, "Slot %u Input Context:\n", hdev->slot_id);
4678 xhci_dbg_ctx(xhci, config_cmd->in_ctx, 0);
4679
4680 /* Issue and wait for the configure endpoint or
4681 * evaluate context command.
4682 */
4683 if (xhci->hci_version > 0x95)
4684 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
4685 false, false);
4686 else
4687 ret = xhci_configure_endpoint(xhci, hdev, config_cmd,
4688 true, false);
4689
4690 xhci_dbg(xhci, "Slot %u Output Context:\n", hdev->slot_id);
4691 xhci_dbg_ctx(xhci, vdev->out_ctx, 0);
4692
4693 xhci_free_command(xhci, config_cmd);
4694 return ret;
4695}
4696
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004697int xhci_get_frame(struct usb_hcd *hcd)
4698{
4699 struct xhci_hcd *xhci = hcd_to_xhci(hcd);
4700 /* EHCI mods by the periodic size. Why? */
4701 return xhci_readl(xhci, &xhci->run_regs->microframe_index) >> 3;
4702}
4703
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004704int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks)
4705{
4706 struct xhci_hcd *xhci;
4707 struct device *dev = hcd->self.controller;
4708 int retval;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004709
Andiry Xufdaf8b32012-03-05 17:49:38 +08004710 /* Accept arbitrarily long scatter-gather lists */
4711 hcd->self.sg_tablesize = ~0;
Ming Leifc760512013-08-08 21:48:23 +08004712
4713 /* support to build packet from discontinuous buffers */
4714 hcd->self.no_sg_constraint = 1;
4715
Hans de Goede19181bc2012-07-04 09:18:02 +02004716 /* XHCI controllers don't stop the ep queue on short packets :| */
4717 hcd->self.no_stop_on_short = 1;
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004718
4719 if (usb_hcd_is_primary_hcd(hcd)) {
4720 xhci = kzalloc(sizeof(struct xhci_hcd), GFP_KERNEL);
4721 if (!xhci)
4722 return -ENOMEM;
4723 *((struct xhci_hcd **) hcd->hcd_priv) = xhci;
4724 xhci->main_hcd = hcd;
4725 /* Mark the first roothub as being USB 2.0.
4726 * The xHCI driver will register the USB 3.0 roothub.
4727 */
4728 hcd->speed = HCD_USB2;
4729 hcd->self.root_hub->speed = USB_SPEED_HIGH;
4730 /*
4731 * USB 2.0 roothub under xHCI has an integrated TT,
4732 * (rate matching hub) as opposed to having an OHCI/UHCI
4733 * companion controller.
4734 */
4735 hcd->has_tt = 1;
4736 } else {
4737 /* xHCI private pointer was set in xhci_pci_probe for the second
4738 * registered roothub.
4739 */
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004740 return 0;
4741 }
4742
4743 xhci->cap_regs = hcd->regs;
4744 xhci->op_regs = hcd->regs +
4745 HC_LENGTH(xhci_readl(xhci, &xhci->cap_regs->hc_capbase));
4746 xhci->run_regs = hcd->regs +
4747 (xhci_readl(xhci, &xhci->cap_regs->run_regs_off) & RTSOFF_MASK);
4748 /* Cache read-only capability registers */
4749 xhci->hcs_params1 = xhci_readl(xhci, &xhci->cap_regs->hcs_params1);
4750 xhci->hcs_params2 = xhci_readl(xhci, &xhci->cap_regs->hcs_params2);
4751 xhci->hcs_params3 = xhci_readl(xhci, &xhci->cap_regs->hcs_params3);
4752 xhci->hcc_params = xhci_readl(xhci, &xhci->cap_regs->hc_capbase);
4753 xhci->hci_version = HC_VERSION(xhci->hcc_params);
4754 xhci->hcc_params = xhci_readl(xhci, &xhci->cap_regs->hcc_params);
4755 xhci_print_registers(xhci);
4756
4757 get_quirks(dev, xhci);
4758
George Cherian07f3cb72013-07-01 10:59:12 +05304759 /* In xhci controllers which follow xhci 1.0 spec gives a spurious
4760 * success event after a short transfer. This quirk will ignore such
4761 * spurious event.
4762 */
4763 if (xhci->hci_version > 0x96)
4764 xhci->quirks |= XHCI_SPURIOUS_SUCCESS;
4765
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004766 /* Make sure the HC is halted. */
4767 retval = xhci_halt(xhci);
4768 if (retval)
4769 goto error;
4770
4771 xhci_dbg(xhci, "Resetting HCD\n");
4772 /* Reset the internal HC memory state and registers. */
4773 retval = xhci_reset(xhci);
4774 if (retval)
4775 goto error;
4776 xhci_dbg(xhci, "Reset complete\n");
4777
Xenia Ragiadakouc10cf112013-08-14 05:55:19 +03004778 /* Set dma_mask and coherent_dma_mask to 64-bits,
4779 * if xHC supports 64-bit addressing */
4780 if (HCC_64BIT_ADDR(xhci->hcc_params) &&
4781 !dma_set_mask(dev, DMA_BIT_MASK(64))) {
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004782 xhci_dbg(xhci, "Enabling 64-bit DMA addresses.\n");
Xenia Ragiadakouc10cf112013-08-14 05:55:19 +03004783 dma_set_coherent_mask(dev, DMA_BIT_MASK(64));
Sebastian Andrzej Siewior552e0c42011-09-23 14:20:01 -07004784 }
4785
4786 xhci_dbg(xhci, "Calling HCD init\n");
4787 /* Initialize HCD and host controller data structures. */
4788 retval = xhci_init(hcd);
4789 if (retval)
4790 goto error;
4791 xhci_dbg(xhci, "Called HCD init\n");
4792 return 0;
4793error:
4794 kfree(xhci);
4795 return retval;
4796}
4797
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004798MODULE_DESCRIPTION(DRIVER_DESC);
4799MODULE_AUTHOR(DRIVER_AUTHOR);
4800MODULE_LICENSE("GPL");
4801
4802static int __init xhci_hcd_init(void)
4803{
Sebastian Andrzej Siewior0cc47d52011-09-23 14:20:02 -07004804 int retval;
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004805
4806 retval = xhci_register_pci();
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004807 if (retval < 0) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03004808 pr_debug("Problem registering PCI driver.\n");
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004809 return retval;
4810 }
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004811 retval = xhci_register_plat();
4812 if (retval < 0) {
Xenia Ragiadakou5c1127d2013-07-02 17:49:26 +03004813 pr_debug("Problem registering platform driver.\n");
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004814 goto unreg_pci;
4815 }
Sarah Sharp98441972009-05-14 11:44:18 -07004816 /*
4817 * Check the compiler generated sizes of structures that must be laid
4818 * out in specific ways for hardware access.
4819 */
4820 BUILD_BUG_ON(sizeof(struct xhci_doorbell_array) != 256*32/8);
4821 BUILD_BUG_ON(sizeof(struct xhci_slot_ctx) != 8*32/8);
4822 BUILD_BUG_ON(sizeof(struct xhci_ep_ctx) != 8*32/8);
4823 /* xhci_device_control has eight fields, and also
4824 * embeds one xhci_slot_ctx and 31 xhci_ep_ctx
4825 */
Sarah Sharp98441972009-05-14 11:44:18 -07004826 BUILD_BUG_ON(sizeof(struct xhci_stream_ctx) != 4*32/8);
4827 BUILD_BUG_ON(sizeof(union xhci_trb) != 4*32/8);
4828 BUILD_BUG_ON(sizeof(struct xhci_erst_entry) != 4*32/8);
4829 BUILD_BUG_ON(sizeof(struct xhci_cap_regs) != 7*32/8);
4830 BUILD_BUG_ON(sizeof(struct xhci_intr_reg) != 8*32/8);
4831 /* xhci_run_regs has eight fields and embeds 128 xhci_intr_regs */
4832 BUILD_BUG_ON(sizeof(struct xhci_run_regs) != (8+8*128)*32/8);
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004833 return 0;
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004834unreg_pci:
4835 xhci_unregister_pci();
4836 return retval;
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004837}
4838module_init(xhci_hcd_init);
4839
4840static void __exit xhci_hcd_cleanup(void)
4841{
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004842 xhci_unregister_pci();
Sebastian Andrzej Siewior3429e912012-03-13 16:57:41 +02004843 xhci_unregister_plat();
Sarah Sharp66d4ead2009-04-27 19:52:28 -07004844}
4845module_exit(xhci_hcd_cleanup);